diff --git a/.devcontainer/.install_utils/bashrc_ext b/.devcontainer/.install_utils/bashrc_ext new file mode 100644 index 0000000..677a438 --- /dev/null +++ b/.devcontainer/.install_utils/bashrc_ext @@ -0,0 +1,20 @@ +ros_env_setup="/opt/ros/$ROS_DISTRO/setup.bash" +echo "sourcing $ros_env_setup" +source "$ros_env_setup" +source "/home/$USER/catkin_ws/devel/setup.bash" +alias sauce='source /opt/ros/noetic/setup.bash && source /home/${USER}/catkin_ws/devel/setup.bash' +alias scripz='cd /home/${USER}/catkin_ws/src/race_stack/stack_master/scripts' +alias switch_map='/home/${USER}/catkin_ws/src/race_stack/stack_master/scripts/switch_map.sh $1' + +echo "ROS_ROOT $ROS_ROOT" +echo "ROS_DISTRO $ROS_DISTRO" + +# automatically get zerotier IP. Be careful! it does not work if do not have an ip assigned with the correct prefix, "192.168.192" in this case, and it might not work if you have multiple ips with the same prefix +# export ROS_HOSTNAME=$( ifconfig | awk '/inet 192.168.192/ {print $2}' ) + +# check if ros hostname is empty +if [ -z "$ROS_HOSTNAME" ]; then + echo "ROS_HOSTNAME is empty, setting it to default" + export ROS_HOSTNAME=localhost +fi +export ROS_MASTER_URI="http://${ROS_HOSTNAME}:11311" diff --git a/.devcontainer/.install_utils/cartographer_dep.sh b/.devcontainer/.install_utils/cartographer_dep.sh new file mode 100644 index 0000000..0c0ca2f --- /dev/null +++ b/.devcontainer/.install_utils/cartographer_dep.sh @@ -0,0 +1,7 @@ +#! /bin/bash + +# merge cartographer ws with ours +rm /etc/ros/rosdep/sources.list.d/20-default.list +rosdep init +rosdep update +rosdep install --from-paths src --ignore-src --rosdistro=${ROS_DISTRO} -y diff --git a/.devcontainer/.install_utils/cartographer_req.sh b/.devcontainer/.install_utils/cartographer_req.sh new file mode 100644 index 0000000..0599919 --- /dev/null +++ b/.devcontainer/.install_utils/cartographer_req.sh @@ -0,0 +1,27 @@ +#! /bin/bash + +# install dep +apt-get install -y python3-wstool \ + python3-rosdep \ + ninja-build \ + stow \ + clang \ + cmake \ + g++ \ + git \ + google-mock \ + libboost-all-dev \ + libcairo2-dev \ + libceres-dev \ + libcurl4-openssl-dev \ + libeigen3-dev \ + libgflags-dev \ + libgoogle-glog-dev \ + liblua5.2-dev \ + libsuitesparse-dev \ + lsb-release \ + python3-sphinx \ + libgmock-dev \ + protobuf-compiler + + diff --git a/.devcontainer/.install_utils/cartographer_setup.sh b/.devcontainer/.install_utils/cartographer_setup.sh new file mode 100755 index 0000000..ed781d0 --- /dev/null +++ b/.devcontainer/.install_utils/cartographer_setup.sh @@ -0,0 +1,34 @@ +#! /bin/bash + +# install dep +apt-get install -y python3-wstool \ + python3-rosdep \ + ninja-build \ + stow \ + clang \ + cmake \ + g++ \ + git \ + google-mock \ + libboost-all-dev \ + libcairo2-dev \ + libceres-dev \ + libcurl4-openssl-dev \ + libeigen3-dev \ + libgflags-dev \ + libgoogle-glog-dev \ + liblua5.2-dev \ + libsuitesparse-dev \ + lsb-release \ + python3-sphinx \ + libgmock-dev \ + protobuf-compiler + +# merge cartographer ws with ours +rm /etc/ros/rosdep/sources.list.d/20-default.list +rosdep init +rosdep update +rosdep install --from-paths src --ignore-src --rosdistro=${ROS_DISTRO} -y + +# install abseil +./state_estimation/cartographer_pbl/cartographer/scripts/install_abseil.sh diff --git a/.devcontainer/.install_utils/catkin_skiplist_car.sh b/.devcontainer/.install_utils/catkin_skiplist_car.sh new file mode 100755 index 0000000..c646460 --- /dev/null +++ b/.devcontainer/.install_utils/catkin_skiplist_car.sh @@ -0,0 +1,21 @@ +#! /bin/bash + +# list can be manually obtained by ``catkin list --directory `` +# list of packages only for the car + +catkin config --skiplist cartographer\ + ackermann_cmd_mux\ + joy\ + joystick_drivers\ + racecar\ + serial\ + vesc\ + vesc_msgs\ + vesc_ackermann\ + vesc_driver\ + waypoint_logger\ + cartographer\ + cartographer_ros_msgs\ + cartographer_ros\ + cartographer_rviz\ + particle_filter diff --git a/.devcontainer/.install_utils/catkin_skiplist_sim.sh b/.devcontainer/.install_utils/catkin_skiplist_sim.sh new file mode 100644 index 0000000..f2ade68 --- /dev/null +++ b/.devcontainer/.install_utils/catkin_skiplist_sim.sh @@ -0,0 +1,6 @@ +#! /bin/bash + +# list can be manually obtained by ``catkin list --directory `` +# list of packages only for the sim + +catkin config --skiplist f1tenth_simulator diff --git a/.devcontainer/.install_utils/dev_pf_setup.sh b/.devcontainer/.install_utils/dev_pf_setup.sh new file mode 100755 index 0000000..6e13eab --- /dev/null +++ b/.devcontainer/.install_utils/dev_pf_setup.sh @@ -0,0 +1,10 @@ +#! /bin/bash + +apt-get update + +pip install cython +# downloading a branch of a fork because they fixed python3 stuff in there +git clone --branch python3 https://github.com/pmusau17/range_libc.git +cd ./range_libc/pywrapper + +python3 setup.py install diff --git a/.devcontainer/.install_utils/install_abseil.sh b/.devcontainer/.install_utils/install_abseil.sh new file mode 100755 index 0000000..4962d6e --- /dev/null +++ b/.devcontainer/.install_utils/install_abseil.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +# Copyright 2019 The Cartographer Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -o errexit +set -o verbose + +git clone https://github.com/abseil/abseil-cpp.git +cd abseil-cpp +git checkout d902eb869bcfacc1bad14933ed9af4bed006d481 +mkdir build +cd build +cmake -G Ninja \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_POSITION_INDEPENDENT_CODE=ON \ + -DCMAKE_INSTALL_PREFIX=/usr/local/stow/absl \ + .. +ninja +sudo ninja install +cd /usr/local/stow +sudo stow absl diff --git a/.devcontainer/.install_utils/linux_req_car.txt b/.devcontainer/.install_utils/linux_req_car.txt new file mode 100644 index 0000000..78224c7 --- /dev/null +++ b/.devcontainer/.install_utils/linux_req_car.txt @@ -0,0 +1,38 @@ +wget +apt-utils +git +net-tools +libgl1 +python3-pip +ros-noetic-tf +ros-noetic-joy +ros-noetic-rqt +ros-noetic-rviz +ros-noetic-amcl +ros-noetic-rospy +ros-noetic-roslint +ros-noetic-pcl-ros +ros-noetic-nav-msgs +ros-noetic-map-server +ros-noetic-urg-node +ros-noetic-slam-toolbox +ros-noetic-ackermann-msgs +ros-noetic-slam-toolbox-msgs +ros-noetic-slam-toolbox-rviz +ros-noetic-tf2-sensor-msgs +ros-noetic-tf2-geometry-msgs +ros-noetic-realsense2-camera +ros-noetic-robot-localization +ros-noetic-interactive-markers +ros-noetic-rosbridge-server +ros-noetic-rosserial +ros-noetic-rosserial-python +ros-noetic-rospy-message-converter +ros-noetic-realsense2-camera +ros-noetic-tf2-sensor-msgs +ros-noetic-imu-tools +ros-noetic-imu-complementary-filter +ros-noetic-imu-filter-madgwick +qt5-default +libeigen3-dev +ros-noetic-rqt-common-plugins diff --git a/.devcontainer/.install_utils/linux_req_sim.txt b/.devcontainer/.install_utils/linux_req_sim.txt new file mode 100644 index 0000000..bed6681 --- /dev/null +++ b/.devcontainer/.install_utils/linux_req_sim.txt @@ -0,0 +1,30 @@ +wget +apt-utils +git +libgl1 +ros-noetic-map-server +python3-pip +ros-noetic-tf +ros-noetic-joy +ros-noetic-rqt +ros-noetic-rviz +ros-noetic-amcl +ros-noetic-rospy +ros-noetic-roslint +ros-noetic-nav-msgs +ros-noetic-slam-toolbox +ros-noetic-ackermann-msgs +ros-noetic-slam-toolbox-rviz +ros-noetic-tf2-geometry-msgs +ros-noetic-tf2-sensor-msgs +ros-noetic-realsense2-camera +ros-noetic-robot-localization +ros-noetic-interactive-markers +ros-noetic-rosbridge-server +ros-noetic-rosserial +ros-noetic-rosserial-python +ros-noetic-rospy-message-converter +ros-noetic-realsense2-camera +ros-noetic-tf2-sensor-msgs +qt5-default +libeigen3-dev diff --git a/.devcontainer/.install_utils/pf_setup.sh b/.devcontainer/.install_utils/pf_setup.sh new file mode 100755 index 0000000..5440449 --- /dev/null +++ b/.devcontainer/.install_utils/pf_setup.sh @@ -0,0 +1,10 @@ +#! /bin/bash + +sudo apt-get update +rosdep install -r --from-paths src --ignore-src --rosdistro noetic -y + +sudo pip install cython +# downloading a branch of a fork because they fixed python3 stuff in there +git clone --branch python3 https://github.com/pmusau17/range_libc.git +cd ./range_libc/pywrapper +python3 setup.py install diff --git a/.devcontainer/.install_utils/post_installation.sh b/.devcontainer/.install_utils/post_installation.sh new file mode 100755 index 0000000..45bbde3 --- /dev/null +++ b/.devcontainer/.install_utils/post_installation.sh @@ -0,0 +1,11 @@ +#! /bin/bash + +# extend .bashrc +cat /home/${USER}/catkin_ws/src/race_stack/.devcontainer/.install_utils/bashrc_ext >> ~/.bashrc + +# source +source /opt/ros/noetic/setup.bash && source /home/${USER}/catkin_ws/devel/setup.bash + +# build +cd /home/${USER}/catkin_ws +catkin build diff --git a/.devcontainer/.install_utils/requirements.txt b/.devcontainer/.install_utils/requirements.txt new file mode 100644 index 0000000..561981f --- /dev/null +++ b/.devcontainer/.install_utils/requirements.txt @@ -0,0 +1,24 @@ +cython<3 +scipy==1.6.3 +rospkg +tqdm +scikit-learn +scikit-image==0.19.2 +opencv-python>=4.5.2 +trajectory_planning_helpers==0.76 +PyYAML +pynput +pandas +matplotlib~=3.5.1 +numba +filterpy +torch>=1.7 +botorch==0.5.0 +pytest>=6.2 +sphinx +sphinx-rtd-theme +gpytorch==1.8.1 +roslibpy==1.6.0 +twisted==23.10.0 +pyOpenSSL==23.3.0 +psutil diff --git a/.devcontainer/.install_utils/ros_entrypoint.sh b/.devcontainer/.install_utils/ros_entrypoint.sh new file mode 100755 index 0000000..fc188a3 --- /dev/null +++ b/.devcontainer/.install_utils/ros_entrypoint.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +set -e + +exec "$@" diff --git a/.devcontainer/.install_utils/setup_user.sh b/.devcontainer/.install_utils/setup_user.sh new file mode 100644 index 0000000..11f3a98 --- /dev/null +++ b/.devcontainer/.install_utils/setup_user.sh @@ -0,0 +1,4 @@ +!# /bin/bash + +useradd -ms /bin/bash -u ${UID} -G sudo ${USER} +groupadd -fg ${GID} ${USER} diff --git a/.devcontainer/.install_utils/xauth_setup.sh b/.devcontainer/.install_utils/xauth_setup.sh new file mode 100755 index 0000000..5c84493 --- /dev/null +++ b/.devcontainer/.install_utils/xauth_setup.sh @@ -0,0 +1,8 @@ +#! /bin/bash + +# Script to create a Xauthority file for the docker container +XAUTH=$HOME/.Xauthority +export XAUTH_LOC=$XAUTH +xhost +local:$USER + +touch $XAUTH diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..280c08b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,43 @@ +{ + "name": "ForzaETH ROS Development Container", + "containerUser": "${localEnv:USER}", + "privileged": true, + "initializeCommand": "/bin/bash -c 'source ${localWorkspaceFolder}/.devcontainer/.install_utils/xauth_setup.sh'", + "image": "race_stack_sim_x86", // change name in case you are working on arm/on the car + "workspaceFolder": "/home/${localEnv:USER}/catkin_ws", + "workspaceMount": "source=${localWorkspaceFolder},target=/home/${localEnv:USER}/catkin_ws/src/race_stack,type=bind", + "customizations": { + "vscode": { + "extensions":[ + "ms-vscode.cpptools", + "ms-vscode.cpptools-themes", + "twxs.cmake", + "donjayamanne.python-extension-pack", + "eamodio.gitlens", + "ms-iot.vscode-ros", + "redhat.vscode-xml", + "ms-python.autopep8" + ] + } + }, + "containerEnv": { + "DISPLAY": "${localEnv:DISPLAY}", + "USER" : "${localEnv:USER}", + "XAUTHORITY" : "/tmp/.Xauthority", + "ROS_HOSTNAME" : "${localEnv:ROS_HOSTNAME}" + }, + "runArgs": [ + "--name", "forzaeth_devcontainer", + "--net", "host", + "--privileged" + ], + "mounts": [ + "source=/home/${localEnv:USER}/.Xauthority,target=/tmp/.Xauthority,type=bind,consistency=cached", + "source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached", + "source=/dev,target=/dev,type=bind,consistency=cached", + "source=${localWorkspaceFolder}/../cache/noetic/build,target=/home/${localEnv:USER}/catkin_ws/build,type=bind", + "source=${localWorkspaceFolder}/../cache/noetic/devel,target=/home/${localEnv:USER}/catkin_ws/devel,type=bind", + "source=${localWorkspaceFolder}/../cache/noetic/logs,target=/home/${localEnv:USER}/catkin_ws/logs,type=bind" + ], + "postCreateCommand": "/bin/bash /home/${localEnv:USER}/catkin_ws/src/race_stack/.devcontainer/.install_utils/post_installation.sh" +} diff --git a/.docker_utils/Dockerfile.base_arm b/.docker_utils/Dockerfile.base_arm new file mode 100644 index 0000000..3092713 --- /dev/null +++ b/.docker_utils/Dockerfile.base_arm @@ -0,0 +1,33 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +# use ROS Noetic image +FROM ros:noetic-robot +SHELL [ "/bin/bash", "-c" ] + +ADD ./.devcontainer/.install_utils /.install_utils + +# install ros packages +ARG DEBIAN_FRONTEND=noninteractive +RUN apt-get update && xargs apt-get install -y < /.install_utils/linux_req_car.txt + +# install python packages +RUN pip3 install -r /.install_utils/requirements.txt && \ + pip3 install numpy==1.18.1 --no-build-isolation && \ + pip3 install casadi + + +# install catkin build tools +RUN sh -c 'echo "deb http://packages.ros.org/ros/ubuntu `lsb_release -sc` main" \ + > /etc/apt/sources.list.d/ros-latest.list' && \ + wget http://packages.ros.org/ros.key -O - | sudo apt-key add - && \ + apt-get update && apt-get install -y python3-catkin-tools + +# install cartographer +RUN . /.install_utils/cartographer_req.sh && . /.install_utils/install_abseil.sh + +# install particle filter +RUN . /.install_utils/dev_pf_setup.sh + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/Dockerfile.base_x86 b/.docker_utils/Dockerfile.base_x86 new file mode 100644 index 0000000..2be170a --- /dev/null +++ b/.docker_utils/Dockerfile.base_x86 @@ -0,0 +1,32 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +# use ROS Noetic image +FROM ros:noetic-robot +SHELL [ "/bin/bash", "-c" ] + +ADD ./.devcontainer/.install_utils /.install_utils + +# install ros packages +ARG DEBIAN_FRONTEND=noninteractive +RUN apt-get update && xargs apt-get install -y < /.install_utils/linux_req_car.txt + +# install python packages +RUN --mount=type=cache,target=/root/.cache/pip pip3 install -r /.install_utils/requirements.txt && \ + pip3 install numpy casadi + + +# install catkin build tools +RUN sh -c 'echo "deb http://packages.ros.org/ros/ubuntu `lsb_release -sc` main" \ + > /etc/apt/sources.list.d/ros-latest.list' && \ + wget http://packages.ros.org/ros.key -O - | sudo apt-key add - && \ + apt-get update && apt-get install -y python3-catkin-tools + +# install cartographer +RUN . /.install_utils/cartographer_req.sh && . /.install_utils/install_abseil.sh + +# install particle filter +RUN . /.install_utils/dev_pf_setup.sh + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/Dockerfile.jet b/.docker_utils/Dockerfile.jet new file mode 100644 index 0000000..881ef4c --- /dev/null +++ b/.docker_utils/Dockerfile.jet @@ -0,0 +1,29 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +FROM base_arm:latest + + +# initial user setup +ARG USER +ARG UID +ARG GID + +RUN /bin/bash /.install_utils/setup_user.sh + +USER $USER +WORKDIR /home/${USER}/catkin_ws +RUN mkdir -p /home/${USER}/catkin_ws/src + +# initialize workspace and make sure no sim packages are built +RUN catkin init && . /opt/ros/noetic/setup.bash && . /.install_utils/catkin_skiplist_sim.sh + +# complete cartographer installation and rosdeps +RUN . /.install_utils/cartographer_dep.sh + +USER root +RUN chown -R ${USER}:${USER} /home/${USER} +USER $USER + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/Dockerfile.nuc b/.docker_utils/Dockerfile.nuc new file mode 100644 index 0000000..80401bc --- /dev/null +++ b/.docker_utils/Dockerfile.nuc @@ -0,0 +1,30 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +FROM base_x86:latest + + +# initial user setup +ARG USER +ARG UID +ARG GID + +RUN /bin/bash /.install_utils/setup_user.sh + +USER $USER +WORKDIR /home/${USER}/catkin_ws +RUN mkdir -p /home/${USER}/catkin_ws/src + +# initialize workspace and make sure no sim packages are built +RUN catkin init && . /opt/ros/noetic/setup.bash && . /.install_utils/catkin_skiplist_sim.sh + +# complete cartographer installation and rosdeps +RUN . /.install_utils/cartographer_dep.sh + +USER root +RUN chown -R ${USER}:${USER} /home/${USER} +RUN echo "${USER}:password" | chpasswd +USER $USER + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/Dockerfile.sim_arm b/.docker_utils/Dockerfile.sim_arm new file mode 100644 index 0000000..954d67f --- /dev/null +++ b/.docker_utils/Dockerfile.sim_arm @@ -0,0 +1,26 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +FROM base_arm:latest + + +# initial user setup +ARG USER +ARG UID +ARG GID + +RUN /bin/bash /.install_utils/setup_user.sh + +USER $USER +WORKDIR /home/${USER}/catkin_ws +RUN mkdir -p /home/${USER}/catkin_ws/src + +# initialize workspace and make sure no car packages are built +RUN catkin init && . /opt/ros/noetic/setup.bash && . /.install_utils/catkin_skiplist_car.sh + +USER root +RUN chown -R ${USER}:${USER} /home/${USER} +USER $USER + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/Dockerfile.sim_x86 b/.docker_utils/Dockerfile.sim_x86 new file mode 100644 index 0000000..42b25ac --- /dev/null +++ b/.docker_utils/Dockerfile.sim_x86 @@ -0,0 +1,27 @@ +# +# Container Creation for the F110 race-stack at Center for Project Based Learning, ETH +# + +FROM base_x86:latest + + +# initial user setup +ARG USER +ARG UID +ARG GID + +RUN /bin/bash /.install_utils/setup_user.sh + +USER $USER +WORKDIR /home/${USER}/catkin_ws +RUN mkdir -p /home/${USER}/catkin_ws/src + +# initialize workspace and make sure no car packages are built +RUN catkin init && . /opt/ros/noetic/setup.bash && . /.install_utils/catkin_skiplist_car.sh + +USER root +RUN chown -R ${USER}:${USER} /home/${USER} +RUN echo "${USER}:password" | chpasswd +USER $USER + +ENTRYPOINT [ "bash", "/.install_utils/ros_entrypoint.sh" ] diff --git a/.docker_utils/README.md b/.docker_utils/README.md new file mode 100644 index 0000000..af448c9 --- /dev/null +++ b/.docker_utils/README.md @@ -0,0 +1,122 @@ +# Docker Structure and Guidelines + +## Structure +First, a base docker image is defined through the [base Dockerfile](./Dockerfile.base_x86). This can be extended then for development with the simulator, with the [sim dockerfile](./Dockerfile.sim_x86) or for development on the physical car with the [nuc dockerfile](./Dockerfile.nuc). +While the previously linked docker files are meant for x86 platforms, there are parallel dockerfiles defined for arm platforms ([base](./Dockerfile.base_arm), [sim](./Dockerfile.sim_arm), [car](./Dockerfile.jet)). + +They are meant to be built through the [docker-compose.yaml](../docker-compose.yaml), and they are either meant to be used in a VS Code devcontainer ([devcontainer.json](../.devcontainer/devcontainer.json) here) or with the accompanying scripts ([main](./main_dock.sh), [secondary](./sec_dock.sh), [main attach](./main_attach_dock.sh)). + +**NOTE**: it is suggested to set a static IP for the robot with the ROS_HOSTNAME environment variable, so that the IP of the robot is always the same, as from [networking structure](../stack_master/checklists/networking.md). +Setting up a static ip at this moment will allow you to set extra computers (that can ping such IP) to listen to the ROS messags on the robot, enabling fast and quick development. + + +## How to use (simulator) +**Note**: this following tutorial assumes you are using an x86 platform (e.g. Intel CPU). In case you have an ARM platform (e.g. NVIDIA Jetson) use the dockerfiles substituting `_x86` with `_arm`. + +**Note 2**: docker is assumed to be installed and runnable without sudo (e.g. on Linux see [Post-Installation steps](https://docs.docker.com/engine/install/linux-postinstall/)). + +**Step 1/4**: First build the base docker image with `docker compose`: +```bash +docker compose build base_x86 +``` +For an x86 build on a 8th-gen i7 CPU, this took roughly 45 minutes (though it depends also on connection speed). So sit back and have a coffee! ☕ + +**Step 2/4**: Then export the needed environment variables and build the simulator container: +```bash +export UID=$(id -u) +export GID=$(id -g) +docker compose build sim_x86 +``` +This should take much less time, less than 1 minute. + +**Step 3/4**: Create folder structure that resembles the following. Note that it is two folders up from the position of the `race_stack`. + +```bash +/../../ +... +├── cache +│   └── noetic +│   ├── build +│   ├── devel +│   └── logs +└ ... +``` + +It can be done with the following command: +```bash +cd +mkdir -p ../../cache/noetic/build ../../cache/noetic/devel ../../cache/noetic/logs +``` + +**Note**: In case it is particularly problematic to create such a folder structure two parent directories up, it can also be created just one directoy up, but the cache mounting point must be changed in the devcontainer.json for the build, devel and log folder. + +**Step 4/4**: Launch the VS Code devcontainer. This can be done by opening the race_stack folder in VS Code, launching the command palette with the shortcut `Ctrl`+`Shift`+`p`, and selecting `Dev Containers: Rebuild and Reopen in Container`. Make sure that the field `image` has the correct name of the simulator docker image that you want to use, name that can be found in the [`docker-compose.yaml`](../docker-compose.yaml) in the field `image`. In this case, it is `race_stack_sim_x86` . + +## How to use (car) +**Note**: this following tutorial assumes you are using an x86 platform (e.g. Intel CPU). In case you have an ARM platform (e.g. NVIDIA Jetson) use the dockerfiles substituting `_x86` with `_arm` and change `_nuc` to `_jet`. + + +**Note 2**: docker is assumed to be installed and runnable without sudo (e.g. on Linux see [Post-Installation steps](https://docs.docker.com/engine/install/linux-postinstall/)). + +**Step 1/4**: First build the base docker image with `docker compose`: +```bash +docker compose build base_x86 +``` + +**Step 2/4**: Then export the needed environment variables and build the car container: +```bash +export UID=$(id -u) +export GID=$(id -g) +docker compose build nuc +``` + +**Step 3/4**: Create folder structure that resembles the following. Note that it is two folders up from the position of the `race_stack`. + +```bash +/../../ +... +├── cache +│   └── noetic +│   ├── build +│   ├── devel +│   └── logs +└ ... +``` + +It can be done with the following command: +```bash +cd +mkdir -p ../../cache/noetic/build ../../cache/noetic/devel ../../cache/noetic/logs +``` + +**Note**: In case it is particularly problematic to create such a folder structure two parent directories up, it can also be created just one directoy up, but the cache mounting point must be changed in the devcontainer.json for the build, devel and log folder. + +**Step 4/4**: +Since we prefer to not launch the car nodes with a VS Code session attached to them, we will in this case use the scripts present in the folder [.docker_utils](../.docker_utils). First make sure that the environment variable `IMAGE` in the [`main_dock.sh`](./main_dock.sh) has the correct name of the car docker image that you want to use, name that can be found in the [`docker-compose.yaml`](../docker-compose.yaml) in the field `image`. In this case, it is `race_stack_nuc`. +Then, for the first time launching the setup, use the [`main_dock.sh`](./main_dock.sh) file: +```bash +cd +export RACE_STACK_ROOT=$(pwd) +source ./.devcontainer/.install_utils/xauth_setup.sh +./.docker_utils/main_dock.sh +``` + +Then, **in the new terminal inside the container**, run the post installation script, that will allso build your system: +```bash +cd +./.devcontainer/.install_utils/post_installation.sh +``` +You are now good to go, you can also exit the container (with `Ctrl`+`D` or exit). + +To restart and attach to the container, use the attaching script [`main_attach_dock.sh`](./main_attach_dock.sh) and to obtain multiple terminals in this same container you can use [`sec_dock.sh`](./sec_dock.sh) (or terminal multiplexers). +```bash +cd +# in case main dock is not on +./.docker_utils/main_attach_dock.sh + +# in case you want additional terminals +./.docker_utils/sec_dock.sh +``` + +--- +[Go back to the main README](../README.md) \ No newline at end of file diff --git a/.docker_utils/main_attach_dock.sh b/.docker_utils/main_attach_dock.sh new file mode 100755 index 0000000..7d1d491 --- /dev/null +++ b/.docker_utils/main_attach_dock.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +# Script to launch the main docker instance for the pblf110 car when the container was already created +docker start forzaeth_devcontainer +docker attach forzaeth_devcontainer diff --git a/.docker_utils/main_dock.sh b/.docker_utils/main_dock.sh new file mode 100755 index 0000000..8a8bb23 --- /dev/null +++ b/.docker_utils/main_dock.sh @@ -0,0 +1,23 @@ +#! /bin/bash + +# Script to launch the main docker instance for the pblf110 car +IMAGE=race_stack_sim_x86 + +docker run --tty \ + --interactive \ + --network=host \ + --env DISPLAY=$DISPLAY \ + --env USER=$USER \ + --env XAUTHORITY=/home/$USER/.Xauthority \ + --env ROS_HOSTNAME=$ROS_HOSTNAME \ + --volume $XAUTH_LOC:/home/$USER/.Xauthority \ + --volume /dev:/dev \ + --volume /tmp/.X11-unix:/tmp/.X11-unix \ + --volume $RACE_STACK_ROOT:/home/$USER/catkin_ws/src/race_stack \ + --volume $RACE_STACK_ROOT/../../cache/noetic/build:/home/$USER/catkin_ws/build \ + --volume $RACE_STACK_ROOT/../../cache/noetic/devel:/home/$USER/catkin_ws/devel \ + --volume $RACE_STACK_ROOT/../../cache/noetic/logs:/home/$USER/catkin_ws/logs \ + --privileged \ + --name forzaeth_devcontainer \ + --entrypoint /bin/bash \ + ${IMAGE}:latest diff --git a/.docker_utils/sec_dock.sh b/.docker_utils/sec_dock.sh new file mode 100755 index 0000000..a2f95a5 --- /dev/null +++ b/.docker_utils/sec_dock.sh @@ -0,0 +1,8 @@ +#! /bin/bash + +# Script to launch the main docker instance for the pblf110 car + +docker exec --tty \ + --interactive \ + forzaeth_devcontainer \ + /bin/bash diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e1731fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,61 @@ +# rosbags +*.bag +bags/ + +# JSON files for waypoints +*/maps/*/*.json +# but not the test ones +!*/maps/test_map/*.json + +# vscode +.vscode/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# packages +*.egg-info + +# C extensions +*.so + +# Jupyter Notebook +.ipynb_checkpoints + +# VS Code +.vscode/* + +# packages +*.egg-info + +#no lapanalyser maps +f110_utils/nodes/lap_analyser/maps/* + +#no map_editor maps +f110_utils/nodes/map_editor/maps/* + +#no slam_tuner maps +f110_utils/nodes/slam_tuner/maps/* + +#no realsense logs +perception/logs/* + +# ot yamls +f110_utils/nodes/overtaking_sector_tuner/cfg/ot_sectors.yaml +# scaler yamls +f110_utils/nodes/sector_tuner/cfg/speed_scaling.yaml +# no changes to sector yamls +stack_master/maps/*/ot_sectors.yaml +stack_master/maps/*/speed_scaling.yaml + +# Bayesian optimization +stack_master/config/BayesOpt_MAP/ +f110_utils/nodes/param_optimizer/logs/* + +# Test artifacts +stack_master/test/artifacts/* + +# Range Libc +range_libc/ diff --git a/.gitlab/.gitlab-ci.yml b/.gitlab/.gitlab-ci.yml new file mode 100644 index 0000000..e65f109 --- /dev/null +++ b/.gitlab/.gitlab-ci.yml @@ -0,0 +1,200 @@ +# +# pbl f110 ci/cd pipeline +# +# upon commits on `master` it builds the system in two versions in two docker container, one for the simulator, one for the real car +# it then tests the simulator +# +# upon commits on `test` it + +docker-build-base-x86: + rules: + - if: $CI_COMMIT_BRANCH == "master" + - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" + stage: build + variables: + DOCKER_TLS_CERTDIR: "/certs" + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_FORCE_HTTPS: "true" + # Use the official docker image. + image: docker:latest + services: + - docker:dind + before_script: + - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" + # Default branch leaves tag empty (= latest tag) + # All other branches are tagged with the escaped branch name (commit ref slug) + script: + - docker compose build --pull base_x86 + - docker compose push base_x86 + tags: + - "build" + - "x86" + +# docker-build-base-arm: +# rules: +# - if: $CI_COMMIT_BRANCH == "master" +# - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" +# stage: build +# variables: +# DOCKER_TLS_CERTDIR: "/certs" +# GIT_SUBMODULE_STRATEGY: recursive +# GIT_SUBMODULE_FORCE_HTTPS: "true" +# # Use the official docker image. +# image: docker:latest +# services: +# - docker:dind +# before_script: +# - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" +# # Default branch leaves tag empty (= latest tag) +# # All other branches are tagged with the escaped branch name (commit ref slug) +# script: +# - docker compose build --pull base_arm +# - docker compose push base_arm +# tags: +# - "build" +# - "arm" + +docker-build-nuc: + rules: + - if: $CI_COMMIT_BRANCH == "master" + - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" + stage: build + variables: + DOCKER_TLS_CERTDIR: "/certs" + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_FORCE_HTTPS: "true" + # Use the official docker image. + image: docker:latest + services: + - docker:dind + before_script: + - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" + # Default branch leaves tag empty (= latest tag) + # All other branches are tagged with the escaped branch name (commit ref slug) + script: + - export USER=$(whoami) + - export UID=$(id -u) + - export GID=$(id -g) + - docker compose build --pull nuc + - docker compose push nuc + tags: + - "build" + - "x86" + +docker-build-sim-x86: + rules: + - if: $CI_COMMIT_BRANCH == "master" + - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" + stage: build + variables: + DOCKER_TLS_CERTDIR: "/certs" + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_FORCE_HTTPS: "true" + # Use the official docker image. + image: docker:latest + services: + - docker:dind + before_script: + - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" + # Default branch leaves tag empty (= latest tag) + # All other branches are tagged with the escaped branch name (commit ref slug) + script: + - export USER=$(whoami) + - export UID=$(id -u) + - export GID=$(id -g) + - docker compose build --pull sim_x86 + - docker compose push sim_x86 + tags: + - "build" + - "x86" + +# docker-build-jet: +# rules: +# - if: $CI_COMMIT_BRANCH == "master" +# - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" +# stage: build +# variables: +# DOCKER_TLS_CERTDIR: "/certs" +# GIT_SUBMODULE_STRATEGY: recursive +# GIT_SUBMODULE_FORCE_HTTPS: "true" +# # Use the official docker image. +# image: docker:latest +# services: +# - docker:dind +# before_script: +# - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" +# # Default branch leaves tag empty (= latest tag) +# # All other branches are tagged with the escaped branch name (commit ref slug) +# script: +# - export USER=$(whoami) +# - export UID=$(id -u) +# - export GID=$(id -g) +# - docker compose build --pull jet +# - docker compose push jet +# tags: +# - "build" +# - "arm" + +# docker-build-sim-arm: +# rules: +# - if: $CI_COMMIT_BRANCH == "master" +# - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" +# stage: build +# variables: +# DOCKER_TLS_CERTDIR: "/certs" +# GIT_SUBMODULE_STRATEGY: recursive +# GIT_SUBMODULE_FORCE_HTTPS: "true" +# # Use the official docker image. +# image: docker:latest +# services: +# - docker:dind +# before_script: +# - docker login registry.git.ee.ethz.ch -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" +# # Default branch leaves tag empty (= latest tag) +# # All other branches are tagged with the escaped branch name (commit ref slug) +# script: +# - export USER=$(whoami) +# - export UID=$(id -u) +# - export GID=$(id -g) +# - docker compose build --pull sim_arm +# - docker compose push sim_arm +# tags: +# - "build" +# - "arm" + +#USE THE LINTER FOR THE OPENSOURCING +#lint-python: +# stage: test +# image: python:3.8 +# script: +# - pip install pylint +# - git diff --name-only HEAD^ | grep '\.py$' | xargs -r pylint --disable=C0111,R0903,W0511,R0801,C0301 --fail-under=6.9 +# rules: +# - if: $CI_COMMIT_BRANCH == "develop" +# - if: $CI_COMMIT_BRANCH == "master" +# - if: $CI_PIPELINE_SOURCE == "merge_request_event" +# tags: +# - "lint" + +test-sim: + rules: + - if: $CI_COMMIT_BRANCH == "develop" + - if: $CI_COMMIT_BRANCH == "master" + - if: $CI_PIPELINE_SOURCE == "merge_request_event" + stage: test + variables: + DOCKER_TLS_CERTDIR: "/certs" + # Use the built pbl f110 image + image: "${CI_REGISTRY_IMAGE}/race_stack_sim_x86" + script: + - export USER=$(whoami) + - cp -rf /builds/pbl/research/f1tenth/race_stack/ /home/${USER}/catkin_ws/src/race_stack/ + - cd /home/${USER}/catkin_ws + - /bin/bash /home/${USER}/catkin_ws/src/race_stack/.devcontainer/.install_utils/post_installation.sh + - source /opt/ros/noetic/setup.bash && source /home/${USER}/catkin_ws/devel/setup.bash && catkin test stack_master + - cp -rf /home/${USER}/catkin_ws/src/race_stack/stack_master/test/artifacts/ ${CI_PROJECT_DIR}/test_artifacts/ + artifacts: + paths: + - test_artifacts/*.md + tags: + - "test" diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..22600e0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,27 @@ +[submodule "f110_utils/nodes/bayesopt4ros"] + path = f110_utils/nodes/bayesopt4ros + url = https://github.com/IntelligentControlSystems/bayesopt4ros +[submodule "f110_utils/nodes/cpu_monitor"] + path = f110_utils/nodes/cpu_monitor + url = https://github.com/alspitz/cpu_monitor.git +[submodule "state_estimation/cartographer_pbl/cartographer"] + path = state_estimation/cartographer_pbl/cartographer + url = https://github.com/cartographer-project/cartographer +[submodule "state_estimation/cartographer_pbl/cartographer_ros"] + path = state_estimation/cartographer_pbl/cartographer_ros + url = https://github.com/cartographer-project/cartographer_ros +[submodule "base_system/f1tenth_system"] + path = base_system/f1tenth_system + url = https://github.com/ForzaETH/f1tenth_system.git +[submodule "sensors/vesc"] + path = sensors/vesc + url = https://github.com/ForzaETH/vesc.git +[submodule "state_estimation/particle_filter"] + path = state_estimation/particle_filter + url = https://github.com/ForzaETH/particle_filter.git +[submodule "planner/gb_optimizer/src/global_racetrajectory_optimization"] + path = planner/gb_optimizer/src/global_racetrajectory_optimization + url = https://github.com/ForzaETH/global_racetrajectory_optimization.git +[submodule "base_system/f110-simulator"] + path = base_system/f110-simulator + url = https://github.com/ForzaETH/f1tenth_simulator.git diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..e4b85eb --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,39 @@ +# Contributing + +## We welcome contributions from the community and are happy to have them. Please follow this guide when logging issues or making changes. + +## ROS Packages + +### Package Structure +TODO: should we encourage more packages, or keep the current structure? + +### General Code guidelines +- Add TODO when a minor code smell is found, e.g. a hard-coded number that should be a parameter. (You are then welcome to fix them and propose the fixes in a pull request!). +- Add docstrings to the code. To ease the setup in VSCode you can use the `Python Docstring Generator` extension (https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring). +- Add comments expecially for the parts of the code that are not straightforward, or to explain why a certain approach was chosen. +- In Python, use type-hinting for the parameters and the return values of the functions, when it's not obvious (e.g. init function and callback functions). +- remove all commented code! Also unused imports and variables should be removed. + +### ROS nodes +- use a global parameter from the context list below to specify the context in which the node is running instead of hard-coding it. If a new context is needed, open a PR to add it to the list. +- Context list: + - `/sim`: the node is running in the simulator (if `False`, the node is running on the car) + - `/measure`: the node is running with additional measurements + - `/from_bag`: the node is running from a rosbag + - `/racecar_version`: the node is assuming the racecar to be +- Use ROS logging functions to log messages, with the default logging level set to `INFO`. + + +An example is in the [`planner/spliner/src/spliner_node.py`](./planner/spliner/src/spliner_node.py) file. + +### ROS launch files +- document the arguments of the launch file with the `doc` attribute of the `arg` tag where reasonabele (e.g. when the arguments are limited to a set of few values) +- keep formatting consistent, by using the VSCode plugin for `XML` (https://marketplace.visualstudio.com/items?itemName=redhat.vscode-xml) + +### README.md +Make sure the readme of a package/core node is up to date and contains the following sections: +- Description +- Parameters +- Input/Output Topic Signature + +An example is in the [`planner/spliner/README.md`](./planner/spliner/README.md) file. diff --git a/INSTALLATION.md b/INSTALLATION.md new file mode 100644 index 0000000..fae4f0b --- /dev/null +++ b/INSTALLATION.md @@ -0,0 +1,154 @@ +# ForzaETH Race Stack Installation +After following the [prerequisites](#prerequisites) you will need to choose either [Car installation](#car-installation) or [Sim installation](#sim-installation). We recommend the use of [Docker](#docker) for either installation. + +## Prerequisites +To run the ForzaETH race stack make sure that you have assembled and setup a car following the [official F1TENTH instructions](https://f1tenth.org/build). Follow the instructions up to the point *Install F1TENTH Driver Stack » 3. F1TENTH Driver Stack Setup » 1. udev Rules Setup*. + +For both the car and the sim installation, be sure to have installed: + - [ROS Noetic](http://wiki.ros.org/noetic/Installation/Ubuntu) + - [Catkin Build Tools](https://catkin-tools.readthedocs.io/en/latest/installing.html) + +**Note**: +The two installations are not needed in the case of the [Docker](#docker) setup. + +**Note**: +Be sure to have included the sourcing lines in your `~/.bashrc` file, in order to properly setup ROS in every terminal you open. +The two lines to be added are (if you are using `bash`) +``` +source /opt/ros/noetic/setup.bash +source /devel/setup.bash +``` + + +## Docker +For quick deployment, a docker image can be used. +The full docker structure and guidelines on how to use both in simulation and in the real platform can be found in the [Docker Guidelines README](./.docker_utils/README.md). + +For a quick example of the race stack in action, first build the base docker image with `docker compose`: +```bash +docker compose build base_x86 +``` + +Then export the needed environment variables and build the simulator container: +```bash +export UID=$(id -u) +export GID=$(id -g) +docker compose build sim_x86 +``` + +Then check that the following folder structure is existing: +```bash +/../../ +... +├── cache +│   └── noetic +│   ├── build +│   ├── devel +│   └── logs +└ ... +``` +It can be created from the command line, for example: +```bash +cd +mkdir -p ../../cache/noetic/build ../../cache/noetic/devel ../../cache/noetic/logs +``` +Then launch the devcontainer from VS Code + +To now test the simulator, launch the simulator with base system with the following command: +```bash +roslaunch stack_master base_system.launch sim:=true map_name:=test_map +``` + +and then, in a new terminal, launch the timetrials system with the following command: +```bash +roslaunch stack_master time_trials.launch racecar_version:=NUC2 +``` +For more information on how to run the different modules on the car, refer to the [`stack_master`](./stack_master/README.md) README or to the READMEs in the [checklist](./stack_master/checklists/) directory. + +If you want a native source installation follow the installation steps below. + +## Native installation +The following steps assume you have a catkin workspace set up and are working from within the ```src``` folder. For example: +``` +cd ~/catkin_ws/src +``` +### Car installation +#### [Step 1 of 5] +First you'll have to clone the repository with all the submodules in it +``` +git clone --recurse-submodules git@github.com:ForzaETH/race_stack.git +cd race_stack +``` +From now on the installation assumes you are in the `race_stack` folder. + +#### [Step 2 of 5] +Install all the dependencies +``` +# ubuntu packages dependencies +xargs sudo apt-get install -y < ./.install_utils/linux_req_car.txt + +# python dependencies +pip install -r ./.devcontainer/.install_utils/requirements.txt +``` + + +#### [Step 3 of 5] +Then you will need to install the cartographer version which we modified (and which was just downloaded as submodule) +``` +chmod +x ./.devcontainer/.install_utils/cartographer_setup.sh +sudo ./.devcontainer/.install_utils/cartographer_setup.sh +``` +#### [Step 4 of 5] +Similarly you will need to install the SynPF particle filter (which was just downloaded as submodule) +``` +chmod +x ./.devcontainer/.install_utils/pf_setup.sh +sudo ./.devcontainer/.install_utils/pf_setup.sh +``` +#### [Step 5 of 5] + +**Optional**: if you want you can erase the simulator folder, so to not install it on the car too. +It can be done with the following command +``` +# Optional +rm -rf ./base_system/f110-simulator +``` + +Then build the whole system! +``` +catkin build +``` + +The car is now ready to be tested. For examples on how to run the different modules on the car, refer to the [`stack_master` README](./stack_master/README.md). As a further example, the [time-trials](./stack_master/checklists/TimeTrials.md) or the [head-to-head](./stack_master/checklists/HeadToHead.md) checklists are a good starting point. + +### Sim installation +#### [Step 1 of 2] +First you'll have to clone the repository +``` +git clone --recurse-submodules git@github.com:ForzaETH/race_stack.git +cd race_stack +``` +From now on the installation assumes you are in the `race_stack` folder. + +#### [Step 2 of 3] +Install all the dependencies +``` +# ubuntu packages dependencies +xargs sudo apt-get install -y < ./.devcontainer/.install_utils/linux_req_sim.txt + +# python dependencies +pip install -r ./.devcontainer/.install_utils/requirements.txt +``` +#### [Step 3 of 3] +**Optional**: if you want you can erase the simulator folder, so to not install it on the car too. +It can be done with the following command +``` +# Optional +rm -rf ./base_system/f1tenth_system +``` + +Then build the whole system! +``` +catkin build +``` + +After installation you can test simulation functionalities, for example running the [time-trials](./stack_master/checklists/TimeTrials.md) or the [head-to-head](./stack_master/checklists/HeadToHead.md) checklists. For a more general overview of how to use the `race_stack` refer to the [`stack_master` README](./stack_master/README.md). diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2fb1424 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 ForzaETH + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..2dd25b9 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# ForzaETH Race Stack at Center for Project Based Learning + + + arXiv e-print Badge + + +ForzaETH Race Stack by the [D-ITET Center for Project Based Learning (PBL)](https://pbl.ee.ethz.ch/) at ETH Zurich. + +Accompanying this repository, a paper titled *ForzaETH Race Stack - Scaled Autonomous Head-to-Head Racing on Fully Commercial off-the-Shelf Hardware* is available on [arXiv](https://arxiv.org/abs/2403.11784), detailing the system's architecture, algorithms, and performance benchmarks. + +## Installation + +We provide an installation guide [here](./INSTALLATION.md). + +## Getting started + +After installation, the car (or the simulation environment) is ready to be tested. For examples on how to run the different modules on the car, refer to the [`stack_master` README](./stack_master/README.md). As a further example, the [time-trials](./stack_master/checklists/TimeTrials.md) or the [head-to-head](./stack_master/checklists/HeadToHead.md) checklists are a good starting point. + +## Contributing + +In case you find our package helpful and want to contribute, please either raise an issue or directly make a pull request. To create pull request please follow the guidelines in [CONTRIBUTING](./CONTRIBUTING.md). + +## Acknowledgement +This project would not be possible without the use of multiple great open-sourced code bases as listed below: + +- [f1tenth_system](https://github.com/f1tenth/f1tenth_system) +- [F1TENTH Racecar Simulator](https://github.com/f1tenth/f1tenth_simulator) +- [Veddar VESC Interface](https://github.com/f1tenth/vesc) +- [Cartographer](https://github.com/cartographer-project/cartographer) +- [Cartographer ROS Integration](https://github.com/cartographer-project/cartographer_ros) +- [global_racetrajectory_optimization](https://github.com/TUMFTM/global_racetrajectory_optimization) +- [RangeLibc](https://github.com/kctess5/range_libc) +- [BayesOpt4ROS](https://github.com/IntelligentControlSystems/bayesopt4ros) +- [cpu_monitor](https://github.com/alspitz/cpu_monitor) + + +## Citing ForzaETH Race Stack + +If you found our race stack helpful in your research, we would appreciate if you cite it as follows: +``` +@misc{baumann2024forzaeth, + title={ForzaETH Race Stack - Scaled Autonomous Head-to-Head Racing on Fully Commercial off-the-Shelf Hardware}, + author={Nicolas Baumann and Edoardo Ghignone and Jonas Kühne and Niklas Bastuck and Jonathan Becker and Nadine Imholz and Tobias Kränzlin and Tian Yi Lim and Michael Lötscher and Luca Schwarzenbach and Luca Tognoni and Christian Vogt and Andrea Carron and Michele Magno}, + year={2024}, + eprint={2403.11784} +} +``` diff --git a/TROUBLESHOOTING.md b/TROUBLESHOOTING.md new file mode 100644 index 0000000..07190df --- /dev/null +++ b/TROUBLESHOOTING.md @@ -0,0 +1,12 @@ +# TROUBLESHOOTING + +## `catkin clean` fails in the docker cointainer setup +As the `build`, `devel`, and `logs` foder are mounted from outside, trying to run `catkin clean` will fail. This however is not a problem, as only the deletion of the actul folders is prevented. The packages are anyway actually cleaned by the command `catkin clean`. + +## Running `./main_dock.sh` returns error `Error response from daemon: Conflict. The container name "/forzaeth_devcontainer" is already in use by container ...` +The container is already running, if you want to attach to it you can use the [`./main_attach_dock.sh`](.docker_utils/main_attach_dock.sh) script. If you want to completely remove it and restart it you can do it by removing it with the command `docker rm forzaeth_devcontainer` and then running the [`./main_dock.sh`](.docker_utils/main_dock.sh) script. +This error might also happen when trying to run the `.devcontainer`, in that case the removing solution explained above is still valid. + +## Running `./sec_dock.sh` returns error `Error response from daemon: Container ... is not running` +The container is not running, if already run you can restart it with the [`./main_attach.sh`](.docker_utils/main_attach_dock.sh) otherwise you can start it with the [`./main_dock.sh`](.docker_utils/main_dock.sh) script. + diff --git a/base_system/README.md b/base_system/README.md new file mode 100644 index 0000000..22eab93 --- /dev/null +++ b/base_system/README.md @@ -0,0 +1,6 @@ +# base_system +![System Architecture](./misc/sys_arch_with_sim.png) + +In the base system you can use either the sim or the physical system. Both base systems have the same interfacing (i.e. topics) as can be further understood in [here](./f1tenth_system/README.md). + + diff --git a/base_system/f110-simulator b/base_system/f110-simulator new file mode 160000 index 0000000..8b7edeb --- /dev/null +++ b/base_system/f110-simulator @@ -0,0 +1 @@ +Subproject commit 8b7edeb6e45240efbd15e1c525c752232efe6dc8 diff --git a/base_system/f1tenth_system b/base_system/f1tenth_system new file mode 160000 index 0000000..19b0da8 --- /dev/null +++ b/base_system/f1tenth_system @@ -0,0 +1 @@ +Subproject commit 19b0da8a54af96f6c39b9ddf830a1b45603f1c43 diff --git a/base_system/misc/sys_arch_with_sim.png b/base_system/misc/sys_arch_with_sim.png new file mode 100644 index 0000000..c86a4b5 Binary files /dev/null and b/base_system/misc/sys_arch_with_sim.png differ diff --git a/controller/CMakeLists.txt b/controller/CMakeLists.txt new file mode 100644 index 0000000..62f1bf8 --- /dev/null +++ b/controller/CMakeLists.txt @@ -0,0 +1,206 @@ +cmake_minimum_required(VERSION 3.0.2) +project(controller) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + dynamic_reconfigure +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +generate_dynamic_reconfigure_options( + cfg/dyn_l1_params_tuner.cfg +) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES f110_controller +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/f110_controller.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/f110_controller_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +# Mark executable scripts (Python etc.) for installation +# in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# map/src/L1_controller.py +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executa bles for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_f110_controller.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/controller/README.md b/controller/README.md new file mode 100644 index 0000000..ed5ca82 --- /dev/null +++ b/controller/README.md @@ -0,0 +1,32 @@ +# Controller +![Controller Architecture](./misc/controller_arch.png) + +This controller package implements the following controllers, with more details in the respective READMEs: +- [MAP controller](./map/README.md) +- [Pure Pursuit controller](./pp/README.md) +- [Follow the Gap controller](./ftg/README.md) + +The `control_node` implemented in `controller_manager.py` initializes the needed controllers. It runs at a specified loop rate where in each cycle the next control inputs are calculated via the choosen controller. + +## Input/Output Topic Signature +This nodes subscribes to: +- `/perception/obstacles`: Subscribes to the obstacle array. +- `/car_state/odom`: Reads the car's state +- `/car_state/pose`: Reads the car's state +- `/car_state/odom_frenet`: Reads the car's state +- `/local_waypoints`: Subscribes to local waypoints. +- `/vesc/sensors/imu/raw`: Reads the IMU measurements. +- `/scan`: Reads the LiDAR scans. +- `/state_machine`: Listens to the state of the state machine. +- `/l1_param_tuner/parameter_updates`: Listens to the L1 parameters. + + +The node publishes to: +- `/vesc/high_level/ackermann_cmd_mux/input/nav_1`: Publishes the control commands. +- `/lookahead_point`: Publishes lookahead point marker. +- `/trailing_opponent_marker`: Published trailing opponend marker. +- `/my_waypoints`: Publishes marker array of the received waypoints. +- `/l1_distance`: Publishes the L1 distance. +- `/trailing/gap_data`: Publishes the PID data for trailing. +- `/controller/latency`: Publishes the latency of the controller. + diff --git a/controller/cfg/dyn_l1_params_tuner.cfg b/controller/cfg/dyn_l1_params_tuner.cfg new file mode 100644 index 0000000..1f4eff1 --- /dev/null +++ b/controller/cfg/dyn_l1_params_tuner.cfg @@ -0,0 +1,32 @@ +#!/usr/bin/env python3 +PACKAGE = "controller" +import rospkg +import yaml, os +import rospy +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +#L1 Parameters (Lateral Controller) +gen.add("t_clip_min", double_t, 0, "minimum l1 distance", 0.3, 0, 1.5) +gen.add("t_clip_max", double_t, 0, "maximum l1 distance", 5, 0, 10) +gen.add("m_l1", double_t, 0, "slope l1/velocity relation", 0.3, 0, 1.0) # default = 0.583 +gen.add("q_l1", double_t, 0, "intercept of l1/velocity relation", 0.1569, -1, 1) +gen.add("speed_lookahead", double_t, 0, "time of forward propagation with constant velocity", 0, 0, 1) +gen.add("lat_err_coeff", double_t, 0, "0 means no account for lateral error, 1 means maximum accounting", 1.0, 0, 1.0) +gen.add("acc_scaler_for_steer", double_t, 0, "acceleration scaler for steer", 1.0, 0, 1.5) +gen.add("dec_scaler_for_steer", double_t, 0, "deceleration scaler for steer", 1.0, 0, 1.5) +gen.add("start_scale_speed", double_t, 0, "up to this speed the steer is normal", 7.0, 0, 10.0) +gen.add("end_scale_speed", double_t, 0, "from this speed on the speed is (1-downscale_factor) and between it linearly goes down", 8.0, 0, 10.0) +gen.add("downscale_factor", double_t, 0, "downscale factor", 0.2, 0, 0.5) +gen.add("speed_lookahead_for_steer", double_t, 0, "time of forward propagation", 0.0, 0, 0.2) +# Trailing Controller Parameters + +gen.add("prioritize_dyn", bool_t, 0, "Always prioritize Dynamic obstacle, even if Static is closer") +gen.add("trailing_gap", double_t, 0, "Gap to the Opponent in Meters or Seconds", 0.0, 0, 3) +gen.add("trailing_p_gain", double_t, 0, "P-Gain of Trailing Controller", 0.0, 0, 3) +gen.add("trailing_i_gain", double_t, 0, "I-Gain of Trailing Controller", 0.0, 0, 0.5) +gen.add("trailing_d_gain", double_t, 0, "D-Gain of Trailing Controller", 0.0, 0, 1) +gen.add("blind_trailing_speed", double_t, 0, "Minimal Speed of Trailing when not seeing the opponent", 1.5, 0, 3) + +exit(gen.generate(PACKAGE, "dynamic_l1_params", "dyn_l1_params_tuner")) diff --git a/controller/controller_manager.py b/controller/controller_manager.py new file mode 100755 index 0000000..b972be0 --- /dev/null +++ b/controller/controller_manager.py @@ -0,0 +1,630 @@ +#!/usr/bin/env python3 + +import threading +import time + +import numpy as np +import rospy +from ackermann_msgs.msg import AckermannDriveStamped +from dynamic_reconfigure.msg import Config +from f110_msgs.msg import ObstacleArray, PidData, WpntArray +from sensor_msgs.msg import LaserScan +from frenet_converter.frenet_converter import FrenetConverter +from geometry_msgs.msg import Point, PoseStamped +from nav_msgs.msg import Odometry +from sensor_msgs.msg import Imu +from std_msgs.msg import Float64, String, Float32 +from tf.transformations import euler_from_quaternion, quaternion_from_euler +from visualization_msgs.msg import Marker, MarkerArray +from map.src.MAP_Controller import MAP_Controller +from pp.src.PP_Controller import PP_Controller +from ftg.ftg import FTG + +class Controller_manager: + """This class is the main controller manager for the car. It is responsible for selecting the correct controller $ + and publishing the corresponding commands to the actuators. + + It subscribes to the following topics: + - /car_state/odom: get ego car speed + - /car_state/pose: get ego car position (x, y, theta) + - /local_waypoints: get waypoints starting at car's position in map frame + - /vesc/sensors/imu/raw: get acceleration for steer scaling + - /car_state/odom_frenet: get ego car frenet coordinates + - /perception/obstacles: get opponent information (position, speed, static/dynamic) + - /state_machine: get state of the car + - /scan: get lidar scan data + + It publishes the following topics: + - /lookahead_point: publish the lookahead point for visualization + - /trailing_opponent_marker: publish the trailing opponent marker for visualization + - /my_waypoints: publish the waypoints for visualization + - /l1_distance: publish the l1 distance from the MAP Controller for visualization + - /trailing/gap_data: publish the PID data of the Trailing controller for tuning if flag1 is True + - /vesc/high_level/ackermann_cmd_mux/input/nav_1: publish the steering and speed command + - /controller/latency: publish the latency of the controller for measuring if launched with measure:=true + + """ + def __init__(self): + self.name = "control_node" + rospy.init_node(self.name, anonymous=True) + self.lock = threading.Lock() + self.loop_rate = 40 # rate in hertz + self.ros_time = rospy.Time() + self.scan = None + + self.mapping = rospy.get_param('controller_manager/mapping', False) + if self.mapping: + self.init_mapping() + else: + self.init_controller() + + + def init_controller(self): + self.racecar_version = rospy.get_param('/racecar_version') # NUCX + self.LUT_name = rospy.get_param('controller_manager/LU_table') # name of lookup table + self.ctrl_algo = rospy.get_param('controller_manager/ctrl_algo', 'MAP') # default controller + self.l1_params = rospy.get_param('L1_controller') + self.use_sim = rospy.get_param('/sim') + self.wheelbase = rospy.get_param('/model_params/l_wb', 0.35) # NUCX + rospy.loginfo(f"[{self.name}] Using {self.LUT_name}") + self.measuring = rospy.get_param('/measure', False) + + self.state_machine_rate = rospy.get_param('state_machine/rate') #rate in hertz + self.position_in_map = [] # current position in map frame + self.position_in_map_frenet = [] # current position in frenet coordinates + self.waypoint_list_in_map = [] # waypoints starting at car's position in map frame + self.speed_now = 0 # current speed + self.acc_now = np.zeros(5) # last 5 accleration values + self.waypoint_safety_counter = 0 + + # Trailing related variables + self.opponent = [0,0,0,False, True] #s, d, vs, is_static + self.state = "" + self.gap_actual = None + self.trailing_command = 2 + self.i_gap = 0 + + self.converter = None + + # initializing l1 parameter + # This step could be removed with rospy.wait_for_message() in control loop + self.t_clip_min = 1 + self.t_clip_max = 5 + self.m_l1 = 0.3 + self.q_l1 = 0.15 + self.speed_lookahead = 0 + self.lat_err_coeff = 1 + self.acc_scaler_for_steer = 1.0 + self.dec_scaler_for_steer = 1.0 + self.start_scale_speed = 7.0 + self.end_scale_speed = 8.0 + self.downscale_factor = 0.2 + self.speed_lookahead_for_steer = 0 + + self.prioritize_dyn = True + + self.trailing_gap = 1.5 + self.trailing_p_gain = 0.5 + self.trailing_i_gain = 0.001 + self.trailing_d_gain = 0.2 + self.blind_trailing_speed = 1.5 + + # buffers for improved computation + self.waypoint_array_buf = MarkerArray() + self.markers_buf = [Marker() for _ in range(1000)] + + + # Parameters + for i in range(5): + # waiting for this message twice, as the republisher needs it first to compute the wanted param + waypoints = rospy.wait_for_message('/global_waypoints', WpntArray) + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in waypoints.wpnts]) + + self.track_length = rospy.get_param("/global_republisher/track_length") + + + # FTG + self.ftg_controller = FTG() + # initialize MAP controller + self.map_controller = MAP_Controller( + self.t_clip_min, + self.t_clip_max, + self.m_l1, + self.q_l1, + self.speed_lookahead, + self.lat_err_coeff, + self.acc_scaler_for_steer, + self.dec_scaler_for_steer, + self.start_scale_speed, + self.end_scale_speed, + self.downscale_factor, + self.speed_lookahead_for_steer, + + self.prioritize_dyn, + self.trailing_gap, + self.trailing_p_gain, + self.trailing_i_gain, + self.trailing_d_gain, + self.blind_trailing_speed, + + self.loop_rate, + self.LUT_name, + self.state_machine_rate, + + logger_info=rospy.loginfo, + logger_warn=rospy.logwarn + ) + + # initialize PP controller + self.pp_controller = PP_Controller( + self.t_clip_min, + self.t_clip_max, + self.m_l1, + self.q_l1, + self.speed_lookahead, + self.lat_err_coeff, + self.acc_scaler_for_steer, + self.dec_scaler_for_steer, + self.start_scale_speed, + self.end_scale_speed, + self.downscale_factor, + self.speed_lookahead_for_steer, + + self.prioritize_dyn, + self.trailing_gap, + self.trailing_p_gain, + self.trailing_i_gain, + self.trailing_d_gain, + self.blind_trailing_speed, + + self.loop_rate, + self.wheelbase, + self.state_machine_rate, + + logger_info=rospy.loginfo, + logger_warn=rospy.logwarn + ) + + + # Publishers to view data + self.lookahead_pub = rospy.Publisher('lookahead_point', Marker, queue_size=10) + self.trailing_pub = rospy.Publisher('trailing_opponent_marker', Marker, queue_size=10) + self.waypoint_pub = rospy.Publisher('my_waypoints', MarkerArray, queue_size=10) + self.l1_pub = rospy.Publisher('l1_distance', Point, queue_size=10) + self.gap_data = rospy.Publisher('/trailing/gap_data', PidData, queue_size=10) + # Publisher for steering and speed command + self.publish_topic = '/vesc/high_level/ackermann_cmd_mux/input/nav_1' + self.drive_pub = rospy.Publisher(self.publish_topic, AckermannDriveStamped, queue_size=10) + if self.measuring: + self.measure_pub = rospy.Publisher('/controller/latency', Float32, queue_size=10) + + + # Subscribers + rospy.Subscriber('/car_state/odom', Odometry, self.odom_cb) # car speed + rospy.Subscriber('/car_state/pose', PoseStamped, self.car_state_cb) # car position (x, y, theta) + rospy.Subscriber('/local_waypoints', WpntArray, self.local_waypoint_cb) # waypoints (x, y, v, norm trackbound, s, kappa) + rospy.Subscriber('/vesc/sensors/imu/raw', Imu, self.imu_cb) # acceleration subscriber for steer change + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.car_state_frenet_cb) # car frenet coordinates + rospy.Subscriber("/l1_param_tuner/parameter_updates", Config, self.l1_params_cb) #l1 param tuning/updating + rospy.Subscriber("/perception/obstacles", ObstacleArray, self.obstacle_cb) + rospy.Subscriber("/state_machine", String, self.state_cb) + rospy.Subscriber("/scan", LaserScan, self.scan_cb) + + self.converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo(f"[{self.name}] initialized FrenetConverter object") + + def init_mapping(self): + rospy.logwarn(f"[{self.name}] Initializing for mapping") + # Use FTG for mapping + self.ftg_controller = FTG(mapping=False) + + # Publisher + self.publish_topic = '/vesc/high_level/ackermann_cmd_mux/input/nav_1' + self.drive_pub = rospy.Publisher(self.publish_topic, AckermannDriveStamped, queue_size=10) + + # Subscribers + rospy.Subscriber('/car_state/odom', Odometry, self.odom_mapping_cb) # car speed + rospy.Subscriber("/scan", LaserScan, self.scan_cb) + + + rospy.loginfo(f"[{self.name}] initialized for mapping") + + ############################################CALLBACKS############################################ + def scan_cb(self, data: LaserScan): + self.scan = data + + def obstacle_cb(self, data:ObstacleArray): + if len(data.obstacles) > 0 and len(self.position_in_map_frenet): + self.opponent_s = None + static_flag = False # If we have a Static and a Dynamic obstacle we prefer the dynamic + closest_opp = self.track_length + for obstacle in data.obstacles: + opponent_dist = (obstacle.s_start - self.position_in_map_frenet[0]) % self.track_length + if opponent_dist < closest_opp or (static_flag and not obstacle.is_static): + closest_opp = opponent_dist + opponent_static = obstacle.is_static + opponent_s = obstacle.s_center + opponent_d = obstacle.d_center + opponent_vs = obstacle.vs + opponent_visible = obstacle.is_visible + if opponent_static: + static_flag = self.prioritize_dyn # Chosen Obstacle is static + else: + static_flag = False # Chosen obstacle is dynamic + self.opponent = [opponent_s, opponent_d, opponent_vs, opponent_static, opponent_visible] + else: + self.opponent = None + + def state_cb(self, data): + self.state = data.data + + def l1_params_cb(self, params:Config): + """ + Here the l1 parameters are updated if changed with rqt (dyn reconfigure) + Values from .yaml file are set in l1_params_server.py + """ + + ## Updating params for map and pp controller + ## Lateral Control Parameters + self.map_controller.t_clip_min = params.doubles[0].value + self.map_controller.t_clip_max = params.doubles[1].value + self.map_controller.m_l1 = params.doubles[2].value + self.map_controller.q_l1 = params.doubles[3].value + self.map_controller.speed_lookahead = params.doubles[4].value + self.map_controller.lat_err_coeff = params.doubles[5].value + self.map_controller.acc_scaler_for_steer = params.doubles[6].value + self.map_controller.dec_scaler_for_steer = params.doubles[7].value + self.map_controller.start_scale_speed = params.doubles[8].value + self.map_controller.end_scale_speed = params.doubles[9].value + self.map_controller.downscale_factor = params.doubles[10].value + self.map_controller.speed_lookahead_for_steer = params.doubles[11].value + + self.pp_controller.t_clip_min = params.doubles[0].value + self.pp_controller.t_clip_max = params.doubles[1].value + self.pp_controller.m_l1 = params.doubles[2].value + self.pp_controller.q_l1 = params.doubles[3].value + self.pp_controller.speed_lookahead = params.doubles[4].value + self.pp_controller.lat_err_coeff = params.doubles[5].value + self.pp_controller.acc_scaler_for_steer = params.doubles[6].value + self.pp_controller.dec_scaler_for_steer = params.doubles[7].value + self.pp_controller.start_scale_speed = params.doubles[8].value + self.pp_controller.end_scale_speed = params.doubles[9].value + self.pp_controller.downscale_factor = params.doubles[10].value + self.pp_controller.speed_lookahead_for_steer = params.doubles[11].value + ## Trailing Control Parameters + self.map_controller.prioritize_dyn = params.bools[0].value #True, prioritize dynamic obstacles always + self.map_controller.trailing_gap = params.doubles[12].value # Distance in meters + self.map_controller.trailing_p_gain = params.doubles[13].value + self.map_controller.trailing_i_gain = params.doubles[14].value + self.map_controller.trailing_d_gain = params.doubles[15].value + self.map_controller.blind_trailing_speed = params.doubles[16].value + + self.pp_controller.prioritize_dyn = params.bools[0].value #True, prioritize dynamic obstacles always + self.pp_controller.trailing_gap = params.doubles[12].value # Distance in meters + self.pp_controller.trailing_p_gain = params.doubles[13].value + self.pp_controller.trailing_i_gain = params.doubles[14].value + self.pp_controller.trailing_d_gain = params.doubles[15].value + self.pp_controller.blind_trailing_speed = params.doubles[16].value + + def odom_mapping_cb(self, data: Odometry): + # velocity for follow the gap (needed to set gap radius) + self.ftg_controller.set_vel(data.twist.twist.linear.x) + + def odom_cb(self, data: Odometry): + self.speed_now = data.twist.twist.linear.x + self.map_controller.speed_now = self.speed_now + self.pp_controller.speed_now = self.speed_now + + # velocity for follow the gap (needed to set gap radius) + self.ftg_controller.set_vel(data.twist.twist.linear.x) + + def car_state_cb(self, data: PoseStamped): + x = data.pose.position.x + y = data.pose.position.y + theta = euler_from_quaternion([data.pose.orientation.x, data.pose.orientation.y, + data.pose.orientation.z, data.pose.orientation.w])[2] + self.position_in_map = np.array([x, y, theta])[np.newaxis] + + # This function is currently not used + def car_state_frenet_cb(self, data: Odometry): + s = data.pose.pose.position.x + d = data.pose.pose.position.y + vs = data.twist.twist.linear.x + vd = data.twist.twist.linear.y + self.position_in_map_frenet = np.array([s,d,vs,vd]) + + def local_waypoint_cb(self, data: WpntArray): + self.waypoint_list_in_map = [] + for waypoint in data.wpnts: + waypoint_in_map = [waypoint.x_m, waypoint.y_m] + speed = waypoint.vx_mps + if waypoint.d_right + waypoint.d_left != 0: + self.waypoint_list_in_map.append([waypoint_in_map[0], + waypoint_in_map[1], + speed, + min(waypoint.d_left, waypoint.d_right)/(waypoint.d_right + waypoint.d_left), + waypoint.s_m, waypoint.kappa_radpm, waypoint.psi_rad, waypoint.ax_mps2] + ) + else: + self.waypoint_list_in_map.append([waypoint_in_map[0], waypoint_in_map[1], speed, 0, waypoint.s_m, waypoint.kappa_radpm, waypoint.psi_rad, waypoint.ax_mps2]) + self.waypoint_array_in_map = np.array(self.waypoint_list_in_map) + self.waypoint_safety_counter = 0 + + def imu_cb(self, data): + self.acc_now[1:] = self.acc_now[:-1] + self.acc_now[0] = -data.linear_acceleration.y # vesc is rotated 90 deg, so (-acc_y) == (long_acc) + + ############################################MAIN LOOP############################################ + + def control_loop(self): + rate = rospy.Rate(self.loop_rate) + + if self.mapping: + self.mapping_loop(rate) + else: + self.controller_loop(rate) + + def mapping_loop(self, rate: rospy.Rate): + rospy.wait_for_message('/scan', LaserScan) + rospy.wait_for_message('/car_state/odom', Odometry) + rospy.loginfo(f"[{self.name}] Ready for mapping!") + + while not rospy.is_shutdown(): + speed, acceleration, jerk, steering_angle = 0, 0, 0, 0 + speed, steering_angle = self.ftg_controller.process_lidar(self.scan.ranges) + ack_msg = self.create_ack_msg(speed, acceleration, jerk, steering_angle) + self.drive_pub.publish(ack_msg) + rate.sleep() + + def controller_loop(self, rate: rospy.Rate): + rospy.loginfo(f"[{self.name}] Waiting for local Waypoints") + rospy.wait_for_message('/local_waypoints', WpntArray) + rospy.wait_for_message('/global_waypoints', WpntArray) + rospy.wait_for_message('/car_state/odom', Odometry) + rospy.wait_for_service("convert_glob2frenet_service") + rospy.loginfo(f"[{self.name}] Local Waypoints received") + rospy.loginfo(f"[{self.name}] Waiting for car_state/pose") + rospy.wait_for_message('/car_state/pose', PoseStamped) + self.track_length = rospy.get_param("/global_republisher/track_length") + rospy.loginfo(f"[{self.name}] Ready!") + + while not rospy.is_shutdown(): + if self.measuring: + start = time.perf_counter() + #lock wpnts to not get changed trough loop + with self.lock: + self.set_waypoint_markers(self.waypoint_array_in_map) + #initializing ackermann variables + speed, acceleration, jerk, steering_angle = 0, 0, 0, 0 + + #Logic to select controller + if self.state != "FTGONLY" and self.ctrl_algo == "MAP": + speed, acceleration, jerk, steering_angle = self.map_cycle() + + elif self.state != "FTGONLY" and self.ctrl_algo == "PP": + speed, acceleration, jerk, steering_angle = self.pp_cycle() + + elif self.state == "FTGONLY": + speed, steering_angle = self.ftg_cycle() + + else: + rospy.logwarn(f"[{self.name}] No valid controller selected") + + if self.measuring: + end = time.perf_counter() + self.measure_pub.publish(end-start) + ack_msg = self.create_ack_msg(speed, acceleration, jerk, steering_angle) + self.drive_pub.publish(ack_msg) + rate.sleep() + + +############################################HELPERS############################################ + def map_cycle(self): + speed, acceleration, jerk, steering_angle, L1_point, L1_distance, idx_nearest_waypoint = self.map_controller.main_loop(self.state, + self.position_in_map, + self.waypoint_array_in_map, + self.speed_now, + self.opponent, + self.position_in_map_frenet, + self.acc_now, + self.track_length) + + self.set_lookahead_marker(L1_point, 100) + self.visualize_steering(steering_angle) + self.visualize_trailing_opponent() + self.l1_pub.publish(Point(x=idx_nearest_waypoint, y=L1_distance)) + + + self.waypoint_safety_counter += 1 + if self.waypoint_safety_counter >= self.loop_rate/self.state_machine_rate* 10: #we can use the same waypoints for 5 cycles + rospy.logerr_throttle(0.5, f"[{self.name}] Received no local wpnts. STOPPING!!") + speed = 0 + steering_angle = 0 + self.map_controller.flag1 = False + + # Publish PID data of the Trailing controller for tuning + if self.map_controller.flag1 == True: + pid_msg = self.create_pid_msg(self.map_controller.gap_should, + self.map_controller.gap, + self.map_controller.gap_error, + self.map_controller.v_diff, + self.map_controller.i_gap, + self.map_controller.trailing_command) + self.gap_data.publish(pid_msg) + + return speed, acceleration, jerk, steering_angle + + def pp_cycle(self): + speed, acceleration, jerk, steering_angle, L1_point, L1_distance, idx_nearest_waypoint = self.pp_controller.main_loop(self.state, + self.position_in_map, + self.waypoint_array_in_map, + self.speed_now, + self.opponent, + self.position_in_map_frenet, + self.acc_now, + self.track_length) + + self.set_lookahead_marker(L1_point, 100) + self.visualize_steering(steering_angle) + self.visualize_trailing_opponent() + self.l1_pub.publish(Point(x=idx_nearest_waypoint, y=L1_distance)) + + + self.waypoint_safety_counter += 1 + if self.waypoint_safety_counter >= self.loop_rate/self.state_machine_rate* 10: #we can use the same waypoints for 5 cycles + rospy.logerr_throttle(0.5, f"[{self.name}] Received no local wpnts. STOPPING!!") + speed = 0 + steering_angle = 0 + self.pp_controller.flag1 = False + + # Publish PID data of the Trailing controller for tuning + if self.pp_controller.flag1 == True: + pid_msg = self.create_pid_msg(self.pp_controller.gap_should, + self.pp_controller.gap, + self.pp_controller.gap_error, + self.pp_controller.v_diff, + self.pp_controller.i_gap, + self.pp_controller.trailing_command) + self.gap_data.publish(pid_msg) + + return speed, acceleration, jerk, steering_angle + + def ftg_cycle(self): + speed, steer = self.ftg_controller.process_lidar(self.scan.ranges) + rospy.logwarn(f"[{self.name}] FTGONLY!!!") + return speed, steer + + def create_pid_msg(self, should, actual, error, d_value, i_value, input): + pid_msg = PidData() + pid_msg.header.stamp = rospy.Time.now() + pid_msg.should = should + pid_msg.actual = actual + pid_msg.error = error + pid_msg.d_value = d_value + pid_msg.i_value = i_value + pid_msg.input = input + return pid_msg + + def create_ack_msg(self, speed, acceleration, jerk, steering_angle): + ack_msg = AckermannDriveStamped() + ack_msg.header.stamp = self.ros_time.now() + ack_msg.header.frame_id = 'base_link' + ack_msg.drive.steering_angle = steering_angle + ack_msg.drive.speed = speed + ack_msg.drive.jerk = jerk + ack_msg.drive.acceleration = acceleration + return ack_msg + +############################################MSG CREATION############################################ +# visualization utilities + def visualize_steering(self, theta): + + quaternions = quaternion_from_euler(0, 0, theta) + + lookahead_marker = Marker() + lookahead_marker.header.frame_id = "base_link" + lookahead_marker.header.stamp = self.ros_time.now() + lookahead_marker.type = Marker.ARROW + lookahead_marker.id = 50 + lookahead_marker.scale.x = 0.6 + lookahead_marker.scale.y = 0.05 + lookahead_marker.scale.z = 0 + lookahead_marker.color.r = 1.0 + lookahead_marker.color.g = 0.0 + lookahead_marker.color.b = 0.0 + lookahead_marker.color.a = 1.0 + lookahead_marker.lifetime = rospy.Duration() + lookahead_marker.pose.position.x = 0 + lookahead_marker.pose.position.y = 0 + lookahead_marker.pose.position.z = 0 + lookahead_marker.pose.orientation.x = quaternions[0] + lookahead_marker.pose.orientation.y = quaternions[1] + lookahead_marker.pose.orientation.z = quaternions[2] + lookahead_marker.pose.orientation.w = quaternions[3] + self.lookahead_pub.publish(lookahead_marker) + + def set_waypoint_markers(self, waypoints): + wpnt_id = 0 + + for waypoint in waypoints: + waypoint_marker = self.markers_buf[wpnt_id] + waypoint_marker.header.frame_id = "map" + waypoint_marker.header.stamp = self.ros_time.now() + waypoint_marker.type = 2 + waypoint_marker.scale.x = 0.1 + waypoint_marker.scale.y = 0.1 + waypoint_marker.scale.z = 0.1 + waypoint_marker.color.r = 0.0 + waypoint_marker.color.g = 0.0 + waypoint_marker.color.b = 1.0 + waypoint_marker.color.a = 1.0 + waypoint_marker.pose.position.x = waypoint[0] + waypoint_marker.pose.position.y = waypoint[1] + waypoint_marker.pose.position.z = 0 + waypoint_marker.pose.orientation.x = 0 + waypoint_marker.pose.orientation.y = 0 + waypoint_marker.pose.orientation.z = 0 + waypoint_marker.pose.orientation.w = 1 + waypoint_marker.id = wpnt_id + 1 + wpnt_id += 1 + self.waypoint_array_buf.markers = self.markers_buf[:wpnt_id] + self.waypoint_pub.publish(self.waypoint_array_buf) + + def set_lookahead_marker(self, lookahead_point, id): + lookahead_marker = Marker() + lookahead_marker.header.frame_id = "map" + lookahead_marker.header.stamp = self.ros_time.now() + lookahead_marker.type = 2 + lookahead_marker.id = id + lookahead_marker.scale.x = 0.15 + lookahead_marker.scale.y = 0.15 + lookahead_marker.scale.z = 0.15 + lookahead_marker.color.r = 1.0 + lookahead_marker.color.g = 0.0 + lookahead_marker.color.b = 0.0 + lookahead_marker.color.a = 1.0 + lookahead_marker.pose.position.x = lookahead_point[0] + lookahead_marker.pose.position.y = lookahead_point[1] + lookahead_marker.pose.position.z = 0 + lookahead_marker.pose.orientation.x = 0 + lookahead_marker.pose.orientation.y = 0 + lookahead_marker.pose.orientation.z = 0 + lookahead_marker.pose.orientation.w = 1 + self.lookahead_pub.publish(lookahead_marker) + + def visualize_trailing_opponent(self): + if(self.state == "TRAILING" and (self.opponent is not None)): + on = True + else: + on = False + opponent_marker = Marker() + opponent_marker.header.frame_id = "map" + opponent_marker.header.stamp = self.ros_time.now() + opponent_marker.type = 2 + opponent_marker.scale.x = 0.3 + opponent_marker.scale.y = 0.3 + opponent_marker.scale.z = 0.3 + opponent_marker.color.r = 1.0 + opponent_marker.color.g = 0.0 + opponent_marker.color.b = 0.0 + opponent_marker.color.a = 1.0 + if self.opponent is not None: + pos = self.converter.get_cartesian([self.opponent[0]], [self.opponent[1]]) + opponent_marker.pose.position.x = pos[0] + opponent_marker.pose.position.y = pos[1] + opponent_marker.pose.position.z = 0 + + opponent_marker.pose.orientation.x = 0 + opponent_marker.pose.orientation.y = 0 + opponent_marker.pose.orientation.z = 0 + opponent_marker.pose.orientation.w = 1 + if on == False: + opponent_marker.action = Marker.DELETE + self.trailing_pub.publish(opponent_marker) + + +if __name__ == "__main__": + # client = dynamic_reconfigure.client.Client("MAP params", timeout=30, config_callback=callback) + controller_manager = Controller_manager() + controller_manager.control_loop() + diff --git a/controller/ftg/README.md b/controller/ftg/README.md new file mode 100644 index 0000000..01a7848 --- /dev/null +++ b/controller/ftg/README.md @@ -0,0 +1,12 @@ +# Follow The Gap + +## Description +The Follow-The-Gap (FTG) Controller is a simple reactive controller which uses directly the LiDAR scans and the car's pose to compute and publish the velocity and steering angle of the car. In our race stack, the FTG controller is mainly used for mapping, so that we do not have to drive manually around the track. However, even though never used in practice anymore, there is the possibility to set a sector in the state machine as `FTGONLY` and then the FTG controller managed by `controller_manager.py` is used during these sectors. + + ## Parameters + - `track_width`: Approximate width of the track. + - `max_speed`: Maximum speed allowed. + - `safety_radius`: Safety radius to reduce cutting corners. + - `max_lidar_dist`: Maximum possible scan distance of the LiDAR. + - `range_offset`: Range of LiDAR points to be considered, only consider `[range_offset,-range_offset]`. + - `debug`: If set to `True`, the best gap, best point and preprocessed LiDAR scans are published as Markers. diff --git a/controller/ftg/ftg.py b/controller/ftg/ftg.py new file mode 100755 index 0000000..6b19bab --- /dev/null +++ b/controller/ftg/ftg.py @@ -0,0 +1,310 @@ +#!/usr/bin/env python3 +import math +import numpy as np +import rospy +from visualization_msgs.msg import Marker, MarkerArray + + +class FTG: + DEBUG = rospy.get_param('/state_machine/debug') + #Lidar processing params + PREPROCESS_CONV_SIZE = 3 + SAFETY_RADIUS = rospy.get_param('/state_machine/safety_radius') + MAX_LIDAR_DIST = rospy.get_param('/state_machine/max_lidar_dist') + + # Speed params + MAX_SPEED = rospy.get_param('/state_machine/max_speed', 1.5) + scale = 0.6 # .575 is max + CORNERS_SPEED = 0.3 * MAX_SPEED * scale + MILD_CORNERS_SPEED = 0.45 * MAX_SPEED * scale + STRAIGHTS_SPEED = 0.8 * MAX_SPEED * scale + ULTRASTRAIGHTS_SPEED = MAX_SPEED * scale + + #Steering params + STRAIGHTS_STEERING_ANGLE = np.pi / 18 # 10 degrees + MILD_CURVE_ANGLE = np.pi / 6 # 30 degrees + ULTRASTRAIGHTS_ANGLE = np.pi / 60 # 3 deg + + def __init__(self, mapping=False) -> None: + """ + Initialize the FTG controller. + + Parameters: + mapping (bool): Flag indicating whether FTG is used for mapping or not. + """ + self.mapping = mapping + + self.radians_per_elem = None # used when calculating the angles of the LiDAR data + self.range_offset = rospy.get_param('/state_machine/range_offset') + self.track_width = rospy.get_param('/state_machine/track_width', 2.0) + + self.velocity = 0 + self.scan = None + + self.best_pnt = rospy.Publisher('/best_points/marker', Marker, queue_size=10) + self.scan_pub = rospy.Publisher('/scan_proc/markers', MarkerArray, queue_size=10) + self.best_gap = rospy.Publisher('/best_gap/markers', MarkerArray, queue_size=10) + + def _preprocess_lidar(self, ranges) -> np.ndarray: + """ + Preprocess the LiDAR scan array. + + This method performs preprocessing on the LiDAR scan array. The preprocessing steps include: + 1. Setting each value to the mean over a specified window. + 2. Rejecting high values (e.g., values greater than 3m). + + Parameters: + ranges (numpy.ndarray): The LiDAR scan array. + + Returns: + numpy.ndarray: The preprocessed LiDAR scan array. + """ + self.radians_per_elem = (1.5 * np.pi) / len(ranges) + # we won't use the LiDAR data from directly behind us + # full angle is -135 135 + # every point in the array is + proc_ranges = np.array(ranges[self.range_offset:-self.range_offset]) + # sets each value to the mean over a given window to smoothen the signal + proc_ranges = np.convolve(proc_ranges, np.ones(self.PREPROCESS_CONV_SIZE)/self.PREPROCESS_CONV_SIZE, 'valid') + # clip the ranges between 0 and your maximum lidar distance + proc_ranges = np.clip(proc_ranges, 0, self.MAX_LIDAR_DIST) + # reverse lidar because it is right to left + return proc_ranges[::-1] + + def _get_steer_angle(self, point_x, point_y) -> float: + """ + Get the angle of a particular element in the LiDAR data and + transform it into an appropriate steering angle. + + Parameters: + point_x (float): The x-coordinate of the LiDAR data point + point_y (float): The y-coordinate of the LiDAR data point + + Returns: + float: The transformed steering angle + + """ + steering_angle = math.atan2(point_y, point_x) + return np.clip(steering_angle, -0.4, 0.4) + + def _get_best_range_point(self, proc_ranges) -> tuple: + """ + Find the best point i.e. the middle of the largest gap within the bubble radius. + + Parameters: + proc_ranges (list): List of processed ranges. + + Returns: + tuple: The x and y coordinates of the best point. + """ + #Get the bubble radius + radius = self._get_radius() + + #Find the largest gap + gap_left, gap_right = self._find_largest_gap(ranges=proc_ranges, radius=radius) + gap_left += self.range_offset - 180 + gap_right += self.range_offset - 180 + gap_middle = int((gap_right + gap_left) / 2) + #Calculate cartesian point of the best point position from the lidar measurements in laser frame + best_y = np.cos(gap_middle * self.radians_per_elem) * radius + best_x = np.sin(gap_middle * self.radians_per_elem) * radius + + if self.DEBUG: + #Delete old gaps from RVIZ + self._delete_gap_markers() + + #Visualise the gap + gap_markers = MarkerArray() + for i in range(gap_left, gap_right): + mrk = Marker() + mrk.header.frame_id = 'laser' + mrk.header.stamp = rospy.Time.now() + mrk.type = mrk.SPHERE + mrk.scale.x = 0.05 + mrk.scale.y = 0.05 + mrk.scale.z = 0.05 + mrk.color.a = 1.0 + mrk.color.r = 1.0 + mrk.color.g = 1.0 + mrk.id = i - gap_left + #Calculate cartesian point of the gap marker position from the lidar measurements in laser frame + mrk.pose.position.y = math.cos(i * self.radians_per_elem) * radius + mrk.pose.position.x = math.sin(i * self.radians_per_elem) * radius + mrk.pose.orientation.w = 1 + gap_markers.markers.append(mrk) + self.best_gap.publish(gap_markers) + + # visualize best point aka middle of the gap + best_mrk = Marker() + best_mrk.header.frame_id = 'laser' + best_mrk.header.stamp = rospy.Time.now() + best_mrk.type = best_mrk.SPHERE + best_mrk.scale.x = 0.2 + best_mrk.scale.y = 0.2 + best_mrk.scale.z = 0.2 + best_mrk.color.a = 1.0 + best_mrk.color.b = 1.0 + best_mrk.color.g = 1.0 + best_mrk.id = 0 + best_mrk.pose.position.y = best_y + best_mrk.pose.position.x = best_x + best_mrk.pose.orientation.w = 1 + self.best_pnt.publish(best_mrk) + + return best_x, best_y + + def process_lidar(self, ranges) -> tuple: + """ + Process each LiDAR scan as per the Follow Gap algorithm & + calculate the speed and steering angle. + + Parameters: + ranges (list): List of LiDAR scan ranges + + Returns: + tuple: A tuple containing the speed and steering angle + """ + #Preprocess the LiDAR to smoothen it + proc_ranges = self._preprocess_lidar(ranges) + + proc_ranges = self._safety_border(proc_ranges) + + if self.DEBUG: + scan_markers = MarkerArray() + for i, scan in enumerate(proc_ranges): + mrk = Marker() + mrk.header.frame_id = 'laser' + mrk.header.stamp = rospy.Time.now() + mrk.type = mrk.SPHERE + mrk.scale.x = 0.05 + mrk.scale.y = 0.05 + mrk.scale.z = 0.05 + mrk.color.a = 1.0 + mrk.color.r = 1.0 + mrk.color.b = 1.0 + + mrk.id = i + mrk.pose.position.x = math.sin(i* self.radians_per_elem) * scan + mrk.pose.position.y = math.cos(i* self.radians_per_elem) * scan + mrk.pose.orientation.w = 1 + scan_markers.markers.append(mrk) + self.scan_pub.publish(scan_markers) + + #Get best point to target aka middle of the largest gap + best_x, best_y = self._get_best_range_point(proc_ranges) + + #Get steer angle from best points + steering_angle = self._get_steer_angle(point_x=best_x, point_y=best_y) + + if self.mapping: + speed = 1.5 + else: + if abs(steering_angle) > self.MILD_CURVE_ANGLE: + speed = self.CORNERS_SPEED + elif abs(steering_angle) > self.STRAIGHTS_STEERING_ANGLE: + speed = self.MILD_CORNERS_SPEED + elif abs(steering_angle) > self.ULTRASTRAIGHTS_ANGLE: + speed = self.STRAIGHTS_SPEED + else: + speed = self.ULTRASTRAIGHTS_SPEED + + return speed, steering_angle + + def _find_largest_gap(self, ranges, radius) -> tuple: + """ + Find the index of the starting and ending of the largest gap and its width + + Parameters: + ranges (numpy.ndarray): Array of range values + radius (float): Threshold radius value + + Returns: + tuple: A tuple containing the index of the starting of the largest gap, + the index of the ending of the largest gap, and the width of the largest gap. + + """ + #Binarise the ranges in zeros for values under the radius threshold and ones for above and equal + bin_ranges = np.where(ranges >= radius, 1, 0) + + #Get largest gap from binary ranges + bin_diffs = np.abs(np.diff(bin_ranges)) + bin_diffs[0] = 1 + bin_diffs[-1] = 1 + + diff_idxs = bin_diffs.nonzero()[0] + #Check that binarised ranges are positive + high_gaps = [] + for i in range(len(diff_idxs)-1): + low = diff_idxs[i] + high = diff_idxs[i+1] + high_gaps.append(np.mean(bin_ranges[low:high]) > 0.5) + + gap_left = diff_idxs[np.argmax(high_gaps * np.diff(diff_idxs))] + gap_width = np.max(high_gaps * np.diff(diff_idxs)) + gap_right = gap_left + gap_width + + return gap_left, gap_right + + def _get_radius(self) -> float: + """ + Calculate the radius based on the track width and velocity. + + Returns: + float: The calculated radius. + """ + # Empirically determined that this radius choosing makes sense + return min(5., self.track_width / 2 + 2 * (self.velocity / self.MAX_SPEED)) + + def set_vel(self, velocity) -> None: + """ + Set the velocity of the car. + + Parameters: + velocity (float): The desired velocity value. + """ + self.velocity = velocity + + def _safety_border(self, ranges) -> np.ndarray: + """ + Add a safety bubble if there is a big increase in the range between two points. + + Parameters: + ranges (list): List of range values. + + Returns: + np.ndarray: Array of filtered range values. + """ + filtered = list(ranges) + ranges_len = len(ranges) + i = 0 + while i < ranges_len - 1: + if ranges[i + 1] - ranges[i] > 0.5: + for j in range(self.SAFETY_RADIUS): + if i + j < ranges_len: + filtered[i + j] = ranges[i] + i += self.SAFETY_RADIUS - 2 + i += 1 + # in other direction + i = ranges_len - 1 + while i > 0: + if ranges[i - 1] - ranges[i] > 0.5: + for j in range(self.SAFETY_RADIUS): + if i - j >= 0: + filtered[i - j] = ranges[i] + i = i - self.SAFETY_RADIUS + 2 + i -= 1 + return np.array(filtered) + + def _delete_gap_markers(self) -> None: + """ + Delete marker for rviz when not needed + """ + del_mrk_array = MarkerArray() + for i in range(1): + del_mrk = Marker() + del_mrk.header.frame_id = 'laser' + del_mrk.header.stamp = rospy.Time.now() + del_mrk.action = del_mrk.DELETEALL + del_mrk.id = i + del_mrk_array.markers.append(del_mrk) + self.best_gap.publish(del_mrk_array) diff --git a/controller/map/README.md b/controller/map/README.md new file mode 100644 index 0000000..e8e4531 --- /dev/null +++ b/controller/map/README.md @@ -0,0 +1,58 @@ +# Model- and Acceleration-based Pursuit (MAP) controller +The MAP Controller based on [Model- and Acceleration-based Pursuit Controller for High-Performance Autonomous Racing](https://arxiv.org/pdf/2209.04346.pdf) calculates and publishes the optimal steering angle based on a vehicle model and velocity to track a given trajectory. It is managed by the `controller_manager.py` node. + +## Longitudinal controller +The speed from the global optimizer is propagated to compensate for the delay and scaled according to the lateral error and the curvature of the waypoints. + + +``: description [minimum, maximum, tuned] + +- `speed_lookahead`: Lookahead time in seconds to account for actuation and computation delay [0, ∞, 0.25] +- `lat_err_coeff`: How much of the lateral error is taken into account to smoothly rejoin the trajectory. Higher values increase the dependence of the lateral error on the speed reduction. [0, 1, 1] + + +### Trailing Controller + +- `trailing_gap`: reference gap to the to-be-trailed opponent in meters[0, ∞, 1.5] +- `trailing_p_gain`: P-Gain of trailing controller [0, ∞, 1] +- `trailing_i_gain`: I-Gain of trailing controller [0, ∞, 0] +- `trailing_d_gain`: D-Gain of trailing controller [0, ∞, 0.2] +- `blind_trailing_speed`: Minimal Trailing speed when opponent not in line-of-sight [0, ∞, 1.5] +- `prioritize_dyn`: Ignore static obstacles, when a dynamic obstacle is present [False, True, True] + + +## Lateral controller +It uses the L1 guidance described in this paper: [Model- and Acceleration-based Pursuit Controller for High-Performance Autonomous Racing](https://arxiv.org/abs/2209.04346). + +The idea is to compute the lateral acceleration and covert this with a lookup table into steering angles. +To prevent oscillations when driving fast and to be able to track small curvatures, the L1 is scaled with delay compensated speed. For the lookup, the speed is propagated to compensate for the steering delay. +When accelerating faster then 1 m/s^2, the steering is reduced and for deacceleration higher than -1m/s^2 the steering is increased. + + +- `m_l1`: Proportional term for the affine mapping of the velocity to the lookahead distance +for the MAP controller [0, ∞, 0.6] +- `q_l1`: Offset term for the affine mapping of the velocity to the lookahead distance. [−∞, ∞, -0.18] +- `t_clip_min`: clipping value for minimal L1 distance [0, ∞, 0.8] +- `t_clip_max`: clipping value for maximal L1 distance [0, ∞, 5] + +![visualisation of L1 distance calculation](README_IMG/l1_dist.png) + +At high speeds the steering is downscaled by a factor to reduce tire slipping +- `start_scale_speed`: start of downscaling speed range [0, ∞, 7] +- `end_scale_speed`: end of downscaling speed range [0, ∞, 8] +- `downscale_factor`: percent of steer downscaling [0, 100, 20] + +![visualisation of speed scaling](README_IMG/speed_scaling.png) +- `acc_scaler_for_steer`: when accelerating stronger than 1m/s^2 the steering is increased by this factor [1, ∞, 1.2] +- `dec_scaler_for_steer`: when accelerating stronger than -1m/s^2 the steering is reduced by this factor [0, 1, 0.9] +- `speed_lookahead_for_steer`: Lookahead time in seconds propagate velocity, for steering lookup. Can increase laptime by cutting more corners [0, 0.2, 0] + + +## Basic Use + +The controller can be started by using the following command: +``` +rosrun controller L1_controller.py +``` + +However we suggest to use the launch files present in the `stack_master package`. diff --git a/controller/map/README_IMG/l1_dist.png b/controller/map/README_IMG/l1_dist.png new file mode 100644 index 0000000..e263e09 Binary files /dev/null and b/controller/map/README_IMG/l1_dist.png differ diff --git a/controller/map/README_IMG/speed_scaling.png b/controller/map/README_IMG/speed_scaling.png new file mode 100644 index 0000000..1f7192e Binary files /dev/null and b/controller/map/README_IMG/speed_scaling.png differ diff --git a/controller/map/src/MAP_Controller.py b/controller/map/src/MAP_Controller.py new file mode 100755 index 0000000..ec79539 --- /dev/null +++ b/controller/map/src/MAP_Controller.py @@ -0,0 +1,396 @@ +#!/usr/bin/env python3 + +import logging + +import numpy as np +from steering_lookup.lookup_steer_angle import LookupSteerAngle + + +class MAP_Controller: + """This class implements a MAP controller for autonomous driving. + Input and output topics are managed by the controller manager + """ + + def __init__(self, + t_clip_min, + t_clip_max, + m_l1, + q_l1, + speed_lookahead, + lat_err_coeff, + acc_scaler_for_steer, + dec_scaler_for_steer, + start_scale_speed, + end_scale_speed, + downscale_factor, + speed_lookahead_for_steer, + + prioritize_dyn, + trailing_gap, + trailing_p_gain, + trailing_i_gain, + trailing_d_gain, + blind_trailing_speed, + + loop_rate, + LUT_name, + state_machine_rate, + + logger_info = logging.info, + logger_warn = logging.warn + ): + # Parameters from manager + self.t_clip_min = t_clip_min + self.t_clip_max = t_clip_max + self.m_l1 = m_l1 + self.q_l1 = q_l1 + self.speed_lookahead = speed_lookahead + self.lat_err_coeff = lat_err_coeff + self.acc_scaler_for_steer = acc_scaler_for_steer + self.dec_scaler_for_steer = dec_scaler_for_steer + self.start_scale_speed = start_scale_speed + self.end_scale_speed = end_scale_speed + self.downscale_factor = downscale_factor + self.speed_lookahead_for_steer = speed_lookahead_for_steer + + self.prioritize_dyn = prioritize_dyn + self.trailing_gap = trailing_gap + self.trailing_p_gain = trailing_p_gain + self.trailing_i_gain = trailing_i_gain + self.trailing_d_gain = trailing_d_gain + self.blind_trailing_speed = blind_trailing_speed + + self.loop_rate = loop_rate + self.LUT_name = LUT_name + self.state_machine_rate = state_machine_rate + + # Parameters in the controller + self.lateral_error_list = [] # list of squared lateral error + self.curr_steering_angle = 0 + self.idx_nearest_waypoint = None # index of nearest waypoint to car + self.track_length = None + + self.gap = None + self.gap_should = None + self.gap_error = None + self.gap_actual = None + self.v_diff = None + self.i_gap = 0 + self.trailing_command = 2 + self.speed_command = None + self.curvature_waypoints = 0 + self.d_vs = np.zeros(10) + self.acceleration_command = 0 + + self.logger_info = logger_info + self.logger_warn = logger_warn + + self.steer_lookup = LookupSteerAngle(self.LUT_name, logger_info) + # main loop + def main_loop(self, state, position_in_map, waypoint_array_in_map, speed_now, opponent, position_in_map_frenet, acc_now, track_length): + # Updating parameters from manager + self.state = state + self.position_in_map = position_in_map + self.waypoint_array_in_map = waypoint_array_in_map + self.speed_now = speed_now + self.opponent = opponent + self.position_in_map_frenet = position_in_map_frenet + self.acc_now = acc_now + self.track_length = track_length + ## PREPROCESS ## + # speed vector + yaw = self.position_in_map[0, 2] + v = [np.cos(yaw)*self.speed_now, np.sin(yaw)*self.speed_now] + + # calculate lateral error and lateral error norm (lateral_error, self.lateral_error_list, self.lat_e_norm) + lat_e_norm, lateral_error = self.calc_lateral_error_norm() + + ### LONGITUDINAL CONTROL ### + self.speed_command = self.calc_speed_command(v, lat_e_norm) + + # POSTPROCESS for acceleration/speed decision + if self.speed_command is not None: + speed = np.max(self.speed_command, 0) + acceleration = 0 + jerk = 0 + else: + speed = 0 + jerk = 0 + acceleration = 0 + self.logger_warn("[Controller] speed was none") + + ### LATERAL CONTROL ### + steering_angle = None + L1_point, L1_distance = self.calc_L1_point(lateral_error) + + if L1_point.any() is not None: + steering_angle = self.calc_steering_angle(L1_point, L1_distance, yaw, lat_e_norm, v) + else: + raise Exception("L1_point is None") + + return speed, acceleration, jerk, steering_angle, L1_point, L1_distance, self.idx_nearest_waypoint + + def calc_steering_angle(self, L1_point, L1_distance, yaw, lat_e_norm, v): + """ + The purpose of this function is to calculate the steering angle based on the L1 point, desired lateral acceleration and velocity + + Inputs: + L1_point: point in frenet coordinates at L1 distance in front of the car + L1_distance: distance of the L1 point to the car + yaw: yaw angle of the car + lat_e_norm: normed lateral error + v : speed vector + + Returns: + steering_angle: calculated steering angle + + + """ + # lookahead for steer (steering delay incorporation by propagating position) + if self.state == "TRAILING" and (self.opponent is not None): + speed_la_for_lu = self.speed_now + else: + adv_ts_st = self.speed_lookahead_for_steer + la_position_steer = [self.position_in_map[0, 0] + v[0]*adv_ts_st, self.position_in_map[0, 1] + v[1]*adv_ts_st] + idx_la_steer = self.nearest_waypoint(la_position_steer, self.waypoint_array_in_map[:, :2]) + speed_la_for_lu = self.waypoint_array_in_map[idx_la_steer, 2] + speed_for_lu = self.speed_adjust_lat_err(speed_la_for_lu, lat_e_norm) + + L1_vector = np.array([L1_point[0] - self.position_in_map[0, 0], L1_point[1] - self.position_in_map[0, 1]]) + if np.linalg.norm(L1_vector) == 0: + self.logger_warn("[Controller] norm of L1 vector was 0, eta is set to 0") + eta = 0 + else: + eta = np.arcsin(np.dot([-np.sin(yaw), np.cos(yaw)], L1_vector)/np.linalg.norm(L1_vector)) + + if L1_distance == 0 or np.sin(eta) == 0: + lat_acc = 0 + self.logger_warn("[Controller] L1 * np.sin(eta), lat_acc is set to 0") + else: + lat_acc = 2*speed_for_lu**2 / L1_distance * np.sin(eta) + + steering_angle = self.steer_lookup.lookup_steer_angle(lat_acc, speed_for_lu) + + # modifying steer based on acceleration + steering_angle = self.acc_scaling(steering_angle) + # modifying steer based on speed + steering_angle = self.speed_steer_scaling(steering_angle, speed_for_lu) + + # modifying steer based on velocity + steering_angle *= np.clip(1 + (self.speed_now/10), 1, 1.25) + + # limit change of steering angle + threshold = 0.4 + if abs(steering_angle - self.curr_steering_angle) > threshold: + self.logger_info(f"[MAP Controller] steering angle clipped") + steering_angle = np.clip(steering_angle, self.curr_steering_angle - threshold, self.curr_steering_angle + threshold) + self.curr_steering_angle = steering_angle + return steering_angle + + def calc_L1_point(self, lateral_error): + """ + The purpose of this function is to calculate the L1 point and distance + + Inputs: + lateral_error: frenet d distance from car's position to nearest waypoint + Returns: + L1_point: point in frenet coordinates at L1 distance in front of the car + L1_distance: distance of the L1 point to the car + """ + + self.idx_nearest_waypoint = self.nearest_waypoint(self.position_in_map[0, :2], self.waypoint_array_in_map[:, :2]) + + # if all waypoints are equal set self.idx_nearest_waypoint to 0 + if np.isnan(self.idx_nearest_waypoint): + self.idx_nearest_waypoint = 0 + + if len(self.waypoint_array_in_map[self.idx_nearest_waypoint:]) > 2: + # calculate curvature of global optimizer waypoints + self.curvature_waypoints = np.mean(abs(self.waypoint_array_in_map[self.idx_nearest_waypoint:,5])) + + # calculate L1 guidance + L1_distance = self.q_l1 + self.speed_now *self.m_l1 + + # clip lower bound to avoid ultraswerve when far away from mincurv + lower_bound = max(self.t_clip_min, np.sqrt(2)*lateral_error) + L1_distance = np.clip(L1_distance, lower_bound, self.t_clip_max) + + L1_point = self.waypoint_at_distance_before_car(L1_distance, self.waypoint_array_in_map[:,:2], self.idx_nearest_waypoint) + return L1_point, L1_distance + + + def calc_speed_command(self, v, lat_e_norm): + """ + The purpose of this function is to isolate the speed calculation from the main control_loop + + Inputs: + v: speed vector + lat_e_norm: normed lateral error + curvature_waypoints: - + Returns: + speed_command: calculated and adjusted speed, which can be sent to mux + """ + + # lookahead for speed (speed delay incorporation by propagating position) + adv_ts_sp = self.speed_lookahead + la_position = [self.position_in_map[0, 0] + v[0]*adv_ts_sp, self.position_in_map[0, 1] + v[1]*adv_ts_sp] + idx_la_position = self.nearest_waypoint(la_position, self.waypoint_array_in_map[:, :2]) + global_speed = self.waypoint_array_in_map[idx_la_position, 2] + if(self.state == "TRAILING" and (self.opponent is not None)): #Trailing controller + speed_command = self.trailing_controller(global_speed) + else: + self.trailing_speed = global_speed + self.i_gap = 0 + speed_command = global_speed + + speed_command = self.speed_adjust_lat_err(speed_command, lat_e_norm) + + return speed_command + + def trailing_controller(self, global_speed): + """ + Adjust the speed of the ego car to trail the opponent at a fixed distance + Inputs: + speed_command: velocity of global raceline + self.opponent: frenet s position and vs velocity of opponent + self.position_in_map_frenet: frenet s position and vs veloctz of ego car + Returns: + trailing_command: reference velocity for trailing + """ + + self.gap = (self.opponent[0] - self.position_in_map_frenet[0])%self.track_length # gap to opponent + self.gap_actual = self.gap + self.gap_should = self.trailing_gap + self.gap_error = self.gap_should - self.gap_actual + self.v_diff = self.position_in_map_frenet[2] - self.opponent[2] + self.i_gap = np.clip(self.i_gap + self.gap_error/self.loop_rate, -10, 10) + + p_value = self.gap_error * self.trailing_p_gain + d_value = self.v_diff * self.trailing_d_gain + i_value = self.i_gap * self.trailing_i_gain + + + self.trailing_command = np.clip(self.opponent[2] - p_value - i_value - d_value, 0, global_speed) + if not self.opponent[4] and self.gap_actual > self.gap_should: + self.trailing_command = max(self.blind_trailing_speed, self.trailing_command) + + return self.trailing_command + + + def distance(self, point1, point2): + return np.linalg.norm(point2 - point1) + + def acc_scaling(self, steer): + """ + Steer scaling based on acceleration + increase steer when accelerating + decrease steer when decelerating + + Returns: + steer: scaled steering angle based on acceleration + """ + if np.mean(self.acc_now) >= 1: + steer *= self.acc_scaler_for_steer + elif np.mean(self.acc_now) <= -1: + steer *= self.dec_scaler_for_steer + return steer + + def speed_steer_scaling(self, steer, speed): + """ + Steer scaling based on speed + decrease steer when driving fast + + Returns: + steer: scaled steering angle based on speed + """ + speed_diff = max(0.1,self.end_scale_speed-self.start_scale_speed) # to prevent division by zero + factor = 1 - np.clip((speed - self.start_scale_speed)/(speed_diff), 0.0, 1.0) * self.downscale_factor + steer *= factor + return steer + + def calc_lateral_error_norm(self): + """ + Calculates lateral error + + Returns: + lat_e_norm: normalization of the lateral error + lateral_error: distance from car's position to nearest waypoint + """ + # DONE rename function and adapt + lateral_error = abs(self.position_in_map_frenet[1]) # frenet coordinates d + + max_lat_e = 0.5 + min_lat_e = 0. + lat_e_clip = np.clip(lateral_error, a_min=min_lat_e, a_max=max_lat_e) + lat_e_norm = 0.5 * ((lat_e_clip - min_lat_e) / (max_lat_e - min_lat_e)) + return lat_e_norm, lateral_error + + def speed_adjust_lat_err(self, global_speed, lat_e_norm): + """ + Reduce speed from the global_speed based on the lateral error + and curvature of the track. lat_e_coeff scales the speed reduction: + lat_e_coeff = 0: no account for lateral error + lat_e_coaff = 1: maximum accounting + + Returns: + global_speed: the speed we want to follow + """ + # scaling down global speed with lateral error and curvature + lat_e_coeff = self.lat_err_coeff # must be in [0, 1] + lat_e_norm *= 2 + curv = np.clip(2*(np.mean(self.curvature_waypoints)/0.8) - 2, a_min = 0, a_max = 1) # 0.8 ca. max curvature mean + + global_speed *= (1 - lat_e_coeff + lat_e_coeff*np.exp(-lat_e_norm*curv)) + return global_speed + + def speed_adjust_heading(self, speed_command): + """ + Reduce speed from the global_speed based on the heading error. + If the difference between the map heading and the actual heading + is larger than 20 degrees, the speed gets scaled down linearly up to 0.5x + + Returns: + global_speed: the speed we want to follow + """ + + heading = self.position_in_map[0,2] + map_heading = self.waypoint_array_in_map[self.idx_nearest_waypoint, 6] + if abs(heading - map_heading) > np.pi: # resolves wrapping issues + heading_error = 2*np.pi - abs(heading- map_heading) + else: + heading_error = abs(heading - map_heading) + + if heading_error < np.pi/9: # 20 degrees error is okay + return speed_command + elif heading_error < np.pi/2: + scaler = 1 - 0.5* heading_error/(np.pi/2) # scale linearly to 0.5x + else: + scaler = 0.5 + self.logger_info(f"[MAP Controller] heading error decreasing velocity by {scaler}") + return speed_command * scaler + + def nearest_waypoint(self, position, waypoints): + """ + Calculates index of nearest waypoint to the car + + Returns: + index of nearest waypoint to the car + """ + position_array = np.array([position]*len(waypoints)) + distances_to_position = np.linalg.norm(abs(position_array - waypoints), axis=1) + return np.argmin(distances_to_position) + + def waypoint_at_distance_before_car(self, distance, waypoints, idx_waypoint_behind_car): + """ + Calculates the waypoint at a certain frenet distance in front of the car + + Returns: + waypoint as numpy array at a ceratin distance in front of the car + """ + if distance is None: + distance = self.t_clip_min + d_distance = distance + waypoints_distance = 0.1 + d_index= int(d_distance/waypoints_distance + 0.5) + + return np.array(waypoints[min(len(waypoints) -1, idx_waypoint_behind_car + d_index)]) \ No newline at end of file diff --git a/controller/map/src/l1_params_server.py b/controller/map/src/l1_params_server.py new file mode 100755 index 0000000..9042b33 --- /dev/null +++ b/controller/map/src/l1_params_server.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 +import rospy +import rospkg +import yaml +from dynamic_reconfigure.server import Server +from controller.cfg import dyn_l1_params_tunerConfig + +def get_racecar_version(): + racecar_version = rospy.get_param('/racecar_version') # NUCX or SIM + return racecar_version + +def get_yaml_values(): + # Get corresponding yaml file path + yaml_path = rospkg.RosPack().get_path("stack_master") + # Get and return data + with open(yaml_path + "/config/" + get_racecar_version() + "/l1_params.yaml", "r") as file: + data = yaml.safe_load(file) + return data + +def callback(config, level): + rospy.loginfo("L1 Parameter Updated") + # Ensuring nice rounding by 0.05 + config.t_clip_min = round(config.t_clip_min * 200) / 200 # round to 0.005 + config.t_clip_max = round(config.t_clip_max * 200) / 200 + config.m_l1 = round(config.m_l1 * 200) / 200 + config.q_l1 = round(config.q_l1 * 200) / 200 + config.speed_lookahead = round(config.speed_lookahead * 20) / 20 + config.lat_err_coeff = round(config.lat_err_coeff * 20) / 20 + config.acc_scaler_for_steer = round(config.acc_scaler_for_steer * 20) / 20 + config.dec_scaler_for_steer = round(config.dec_scaler_for_steer * 20) / 20 + config.start_scale_speed = round(config.start_scale_speed * 20) / 20 + config.end_scale_speed = round(config.end_scale_speed * 20) / 20 + config.downscale_factor = round(config.downscale_factor * 20) / 20 + config.speed_lookahead_for_steer = round(config.speed_lookahead_for_steer * 20) / 20 + #Trailing Controller + config.prioritize_dyn = config.prioritize_dyn + config.trailing_gap = round(config.trailing_gap * 20) / 20 + config.trailing_p_gain = round(config.trailing_p_gain * 100) / 100 + config.trailing_i_gain = round(config.trailing_i_gain * 100) / 100 + config.trailing_d_gain = round(config.trailing_d_gain * 100) / 100 + config.blind_trailing_speed = round(config.blind_trailing_speed * 10) / 10 + + return config + +if __name__ == "__main__": + rospy.init_node("dyn_l1_params_tuner_server", anonymous=False) + server = Server(dyn_l1_params_tunerConfig, callback) + + yaml_data = get_yaml_values() + + # Set l1 parameter values to the values of the corresponding .yaml file + # float() is need as we want to ensure its type to access it in L1_controller with "params.doubles[idx].value" + default_config = { + ## L1 Controller Parameters + "t_clip_min": float(yaml_data["t_clip_min"]), + "t_clip_max": float(yaml_data["t_clip_max"]), + "m_l1": float(yaml_data["m_l1"]), + "q_l1": float(yaml_data["q_l1"]), + "speed_lookahead": float(yaml_data["speed_lookahead"]), + "lat_err_coeff": float(yaml_data["lat_err_coeff"]), + "acc_scaler_for_steer": float(yaml_data["acc_scaler_for_steer"]), + "dec_scaler_for_steer": float(yaml_data["dec_scaler_for_steer"]), + "start_scale_speed": float(yaml_data["start_scale_speed"]), + "end_scale_speed": float(yaml_data["end_scale_speed"]), + "downscale_factor": float(yaml_data["downscale_factor"]), + "speed_lookahead_for_steer": float(yaml_data["speed_lookahead_for_steer"]), + ## Trailing Controller Parameters + "prioritize_dyn": bool(yaml_data["prioritize_dyn"]), + "trailing_gap": float(yaml_data["trailing_gap"]), + "trailing_p_gain": float(yaml_data["trailing_p_gain"]), + "trailing_i_gain": float(yaml_data["trailing_i_gain"]), + "trailing_d_gain": float(yaml_data["trailing_d_gain"]), + "blind_trailing_speed": float(yaml_data["blind_trailing_speed"]) + } + + server.update_configuration(default_config) + rospy.spin() + + diff --git a/controller/map/src/plotter.py b/controller/map/src/plotter.py new file mode 100644 index 0000000..4c899c2 --- /dev/null +++ b/controller/map/src/plotter.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +import time +import csv +import rospy +import os + +class Plotter: + def __init__(self): + home_dir = os.environ["HOME"] + home_dir += '/plot_datas/plot_data_{}.csv'.format(int(time.time())) + try: + self.file = open(home_dir, 'w+') + self.writer = csv.writer(self.file, delimiter=';') + headers = ['goal_speed', 'car_speed', 'calculated_speed', 'curvature', 'trackbounds_avg', 'lateral_error', 'position_on_path', 'lookahead_distance', 'steering_angle'] + self.writer.writerow(headers) + except: + rospy.logwarn('>>>>>>>>>> DID YOU CREATE A FOLDER CALLED plot_datas IN THE HOME DIRECTORY? <<<<<<<<<<<<<<<<<<') + + def __del__(self): + self.file.close() + + def add_values(self, goal_speed, car_speed, calculated_speed, curvature, trackbounds_avg, lateral_error, position_on_path, lookahead_distance, steering_angle): + data = [goal_speed, car_speed, calculated_speed, curvature, trackbounds_avg, lateral_error, position_on_path, lookahead_distance, steering_angle] + self.writer.writerow(data) + + def flush(self): + self.file.flush() diff --git a/controller/misc/controller_arch.png b/controller/misc/controller_arch.png new file mode 100644 index 0000000..1705e8f Binary files /dev/null and b/controller/misc/controller_arch.png differ diff --git a/controller/package.xml b/controller/package.xml new file mode 100644 index 0000000..75ba402 --- /dev/null +++ b/controller/package.xml @@ -0,0 +1,72 @@ + + + controller + 0.0.0 + The f110_controller package + + + + + icra_crew + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + dynamic_reconfigure + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + + + + + + + + + diff --git a/controller/pp/README.md b/controller/pp/README.md new file mode 100644 index 0000000..3192cd6 --- /dev/null +++ b/controller/pp/README.md @@ -0,0 +1,75 @@ +# Pure Pursuit (PP) controller +The goal of the Control module within the ForzaETH Race Stack is to enable performant, safe, and consistent lap completions by accurately tracking a trajectory provided by the local planner. +The velocity and steering commands are managed, respectively, by the longitudinal and lateral controllers. + +## Longitudinal controller +The longitudinal controller computes the desired velocity of the racecar. This velocity is either obtained directly from the velocity of the local trajectory or computed by the trailing controller if the car is trailing an opponent and therefore in the Trailing state. + +The speed from the local trajectory is propagated to compensate for the delay and scaled according to the lateral error and the curvature of the waypoints. + + +### Parameters +- ``: description [minimum, maximum, tuned] + +- `speed_lookahead`: Lookahead time in seconds to account for actuation and computation delay [0, ∞, 0.25] + +- `lat_err_coeff`: How much of the lateral error is taken into account to smoothly rejoin the trajectory. Higher values increase the dependence of the lateral error on the speed reduction. [0, 1, 1] + + +### Trailing Controller Parameters + + +- `trailing_gap`: reference gap to the to-be-trailed opponent in meters[0, ∞, 1.5] + +- `trailing_p_gain`: P-Gain of trailing controller [0, ∞, 1] + +- `trailing_i_gain`: I-Gain of trailing controller [0, ∞, 0] + +- `trailing_d_gain`: D-Gain of trailing controller [0, ∞, 0.2] + +- `blind_trailing_speed`: Minimal Trailing speed when opponent not in line-of-sight [0, ∞, 1.5] + +- `prioritize_dyn`: Ignore static obstacles, when a dynamic obstacle is present [False, True, True] + + +## Lateral controller +The Pure Pursuit controller computes the steering angle via geometric considerations. +To prevent oscillations when driving fast and to be able to track small curvatures, the L1 is scaled with delay compensated speed. For the steering angle caculations, the speed is propagated to compensate for the steering delay. +When accelerating faster then 1 m/s^2, the steering is reduced and for deacceleration higher than -1m/s^2 the steering is increased. + +### Parameters + +- `m_l1`: Proportional term for the affine mapping of the velocity to the lookahead distance +for the PP controller [0, ∞, 0.6] + +- `q_l1`: Offset term for the affine mapping of the velocity to the lookahead distance. [−∞, ∞, -0.18] + +- `t_clip_min`: clipping value for minimal L1 distance [0, ∞, 0.8] + +- `t_clip_max`: clipping value for maximal L1 distance [0, ∞, 5] + +![visualisation of L1 distance calculation](README_IMG/l1_dist.png) + +At high speeds the steering is downscaled by a factor to reduce tire slipping + +- `start_scale_speed`: start of downscaling speed range [0, ∞, 7] + +- `end_scale_speed`: end of downscaling speed range [0, ∞, 8] + +- `downscale_factor`: percent of steer downscaling [0, 100, 20] + +![visualisation of speed scaling](README_IMG/speed_scaling.png) + +- `acc_scaler_for_steer`: when accelerating stronger than 1m/s^2 the steering is increased by this factor [1, ∞, 1.2] + +- `dec_scaler_for_steer`: when accelerating stronger than -1m/s^2 the steering is reduced by this factor [0, 1, 0.9] + +- `speed_lookahead_for_steer`: Lookahead time in seconds propagate velocity, for steering lookup. Can increase laptime by cutting more corners [0, 0.2, 0] + + +## Basic Use + +The controller can be started by using the following command: +``` +roslaunch stack_master time_trials.launch ctrl_algo:=PP +``` diff --git a/controller/pp/README_IMG/l1_dist.png b/controller/pp/README_IMG/l1_dist.png new file mode 100644 index 0000000..e263e09 Binary files /dev/null and b/controller/pp/README_IMG/l1_dist.png differ diff --git a/controller/pp/README_IMG/speed_scaling.png b/controller/pp/README_IMG/speed_scaling.png new file mode 100644 index 0000000..1f7192e Binary files /dev/null and b/controller/pp/README_IMG/speed_scaling.png differ diff --git a/controller/pp/src/PP_Controller.py b/controller/pp/src/PP_Controller.py new file mode 100755 index 0000000..733a9dc --- /dev/null +++ b/controller/pp/src/PP_Controller.py @@ -0,0 +1,387 @@ +#!/usr/bin/env python3 + +import logging +import numpy as np + +class PP_Controller: + """This class implements a Pure Pursuit controller for autonomous driving. + Input and output topics are managed by the controller manager + """ + + def __init__(self, + t_clip_min, + t_clip_max, + m_l1, + q_l1, + speed_lookahead, + lat_err_coeff, + acc_scaler_for_steer, + dec_scaler_for_steer, + start_scale_speed, + end_scale_speed, + downscale_factor, + speed_lookahead_for_steer, + + prioritize_dyn, + trailing_gap, + trailing_p_gain, + trailing_i_gain, + trailing_d_gain, + blind_trailing_speed, + + loop_rate, + wheelbase, + state_machine_rate, + + logger_info = logging.info, + logger_warn = logging.warn + ): + + # Parameters from manager + self.t_clip_min = t_clip_min + self.t_clip_max = t_clip_max + self.m_l1 = m_l1 + self.q_l1 = q_l1 + self.speed_lookahead = speed_lookahead + self.lat_err_coeff = lat_err_coeff + self.acc_scaler_for_steer = acc_scaler_for_steer + self.dec_scaler_for_steer = dec_scaler_for_steer + self.start_scale_speed = start_scale_speed + self.end_scale_speed = end_scale_speed + self.downscale_factor = downscale_factor + self.speed_lookahead_for_steer = speed_lookahead_for_steer + + self.prioritize_dyn = prioritize_dyn + self.trailing_gap = trailing_gap + self.trailing_p_gain = trailing_p_gain + self.trailing_i_gain = trailing_i_gain + self.trailing_d_gain = trailing_d_gain + self.blind_trailing_speed = blind_trailing_speed + + self.loop_rate = loop_rate + self.wheelbase = wheelbase + self.state_machine_rate = state_machine_rate + + # Parameters in the controller + self.lateral_error_list = [] # list of squared lateral error + self.curr_steering_angle = 0 + self.idx_nearest_waypoint = None # index of nearest waypoint to car + self.track_length = None + + self.gap = None + self.gap_should = None + self.gap_error = None + self.gap_actual = None + self.v_diff = None + self.i_gap = 0 + self.trailing_command = 2 + self.speed_command = None + self.curvature_waypoints = 0 + self.d_vs = np.zeros(10) + self.acceleration_command = 0 + + self.logger_info = logger_info + self.logger_warn = logger_warn + + # main loop + def main_loop(self, state, position_in_map, waypoint_array_in_map, speed_now, opponent, position_in_map_frenet, acc_now, track_length): + # Updating parameters from manager + self.state = state + self.position_in_map = position_in_map + self.waypoint_array_in_map = waypoint_array_in_map + self.speed_now = speed_now + self.opponent = opponent + self.position_in_map_frenet = position_in_map_frenet + self.acc_now = acc_now + self.track_length = track_length + ## PREPROCESS ## + # speed vector + yaw = self.position_in_map[0, 2] + v = [np.cos(yaw)*self.speed_now, np.sin(yaw)*self.speed_now] + + # calculate lateral error and lateral error norm (lateral_error, self.lateral_error_list, self.lat_e_norm) + lat_e_norm, lateral_error = self.calc_lateral_error_norm() + + ### LONGITUDINAL CONTROL ### + self.speed_command = self.calc_speed_command(v, lat_e_norm) + + # POSTPROCESS for acceleration/speed decision + if self.speed_command is not None: + speed = np.max(self.speed_command, 0) + acceleration = 0 + jerk = 0 + else: + speed = 0 + jerk = 0 + acceleration = 0 + self.logger_warn("[Controller] speed was none") + + ### LATERAL CONTROL ### + steering_angle = None + L1_point, L1_distance = self.calc_L1_point(lateral_error) + + if L1_point.any() is not None: + steering_angle = self.calc_steering_angle(L1_point, L1_distance, yaw, lat_e_norm, v) + else: + raise Exception("L1_point is None") + + return speed, acceleration, jerk, steering_angle, L1_point, L1_distance, self.idx_nearest_waypoint + + def calc_steering_angle(self, L1_point, L1_distance, yaw, lat_e_norm, v): + """ + The purpose of this function is to calculate the steering angle based on the L1 point, desired lateral acceleration and velocity + + Inputs: + L1_point: point in frenet coordinates at L1 distance in front of the car + L1_distance: distance of the L1 point to the car + yaw: yaw angle of the car + lat_e_norm: normed lateral error + v : speed vector + + Returns: + steering_angle: calculated steering angle + + + """ + # lookahead for steer (steering delay incorporation by propagating position) + if self.state == "TRAILING" and (self.opponent is not None): + speed_la_for_lu = self.speed_now + else: + adv_ts_st = self.speed_lookahead_for_steer + la_position_steer = [self.position_in_map[0, 0] + v[0]*adv_ts_st, self.position_in_map[0, 1] + v[1]*adv_ts_st] + idx_la_steer = self.nearest_waypoint(la_position_steer, self.waypoint_array_in_map[:, :2]) + speed_la_for_lu = self.waypoint_array_in_map[idx_la_steer, 2] + speed_for_lu = self.speed_adjust_lat_err(speed_la_for_lu, lat_e_norm) + + L1_vector = np.array([L1_point[0] - self.position_in_map[0, 0], L1_point[1] - self.position_in_map[0, 1]]) + if np.linalg.norm(L1_vector) == 0: + self.logger_warn("[Controller] norm of L1 vector was 0, eta is set to 0") + eta = 0 + else: + eta = np.arcsin(np.dot([-np.sin(yaw), np.cos(yaw)], L1_vector)/np.linalg.norm(L1_vector)) + + steering_angle = np.arctan(2*self.wheelbase*np.sin(eta)/L1_distance) + + # modifying steer based on acceleration + steering_angle = self.acc_scaling(steering_angle) + # modifying steer based on speed + steering_angle = self.speed_steer_scaling(steering_angle, speed_for_lu) + + # modifying steer based on velocity + steering_angle *= np.clip(1 + (self.speed_now/10), 1, 1.25) + + # limit change of steering angle + threshold = 0.4 + if abs(steering_angle - self.curr_steering_angle) > threshold: + self.logger_info(f"[PP Controller] steering angle clipped") + steering_angle = np.clip(steering_angle, self.curr_steering_angle - threshold, self.curr_steering_angle + threshold) + self.curr_steering_angle = steering_angle + return steering_angle + + def calc_L1_point(self, lateral_error): + """ + The purpose of this function is to calculate the L1 point and distance + + Inputs: + lateral_error: frenet d distance from car's position to nearest waypoint + Returns: + L1_point: point in frenet coordinates at L1 distance in front of the car + L1_distance: distance of the L1 point to the car + """ + + self.idx_nearest_waypoint = self.nearest_waypoint(self.position_in_map[0, :2], self.waypoint_array_in_map[:, :2]) + + # if all waypoints are equal set self.idx_nearest_waypoint to 0 + if np.isnan(self.idx_nearest_waypoint): + self.idx_nearest_waypoint = 0 + + if len(self.waypoint_array_in_map[self.idx_nearest_waypoint:]) > 2: + # calculate curvature of global optimizer waypoints + self.curvature_waypoints = np.mean(abs(self.waypoint_array_in_map[self.idx_nearest_waypoint:,5])) + + # calculate L1 guidance + L1_distance = self.q_l1 + self.speed_now *self.m_l1 + + # clip lower bound to avoid ultraswerve when far away from mincurv + lower_bound = max(self.t_clip_min, np.sqrt(2)*lateral_error) + L1_distance = np.clip(L1_distance, lower_bound, self.t_clip_max) + + L1_point = self.waypoint_at_distance_before_car(L1_distance, self.waypoint_array_in_map[:,:2], self.idx_nearest_waypoint) + return L1_point, L1_distance + + + def calc_speed_command(self, v, lat_e_norm): + """ + The purpose of this function is to isolate the speed calculation from the main control_loop + + Inputs: + v: speed vector + lat_e_norm: normed lateral error + curvature_waypoints: - + Returns: + speed_command: calculated and adjusted speed, which can be sent to mux + """ + + # lookahead for speed (speed delay incorporation by propagating position) + adv_ts_sp = self.speed_lookahead + la_position = [self.position_in_map[0, 0] + v[0]*adv_ts_sp, self.position_in_map[0, 1] + v[1]*adv_ts_sp] + idx_la_position = self.nearest_waypoint(la_position, self.waypoint_array_in_map[:, :2]) + global_speed = self.waypoint_array_in_map[idx_la_position, 2] + if(self.state == "TRAILING" and (self.opponent is not None)): #Trailing controller + speed_command = self.trailing_controller(global_speed) + else: + self.trailing_speed = global_speed + self.i_gap = 0 + speed_command = global_speed + + speed_command = self.speed_adjust_lat_err(speed_command, lat_e_norm) + + return speed_command + + def trailing_controller(self, global_speed): + """ + Adjust the speed of the ego car to trail the opponent at a fixed distance + Inputs: + speed_command: velocity of global raceline + self.opponent: frenet s position and vs velocity of opponent + self.position_in_map_frenet: frenet s position and vs veloctz of ego car + Returns: + trailing_command: reference velocity for trailing + """ + + self.gap = (self.opponent[0] - self.position_in_map_frenet[0])%self.track_length # gap to opponent + self.gap_actual = self.gap + self.gap_should = self.trailing_gap + self.gap_error = self.gap_should - self.gap_actual + self.v_diff = self.position_in_map_frenet[2] - self.opponent[2] + self.i_gap = np.clip(self.i_gap + self.gap_error/self.loop_rate, -10, 10) + + p_value = self.gap_error * self.trailing_p_gain + d_value = self.v_diff * self.trailing_d_gain + i_value = self.i_gap * self.trailing_i_gain + + + self.trailing_command = np.clip(self.opponent[2] - p_value - i_value - d_value, 0, global_speed) + if not self.opponent[4] and self.gap_actual > self.gap_should: + self.trailing_command = max(self.blind_trailing_speed, self.trailing_command) + + return self.trailing_command + + + def distance(self, point1, point2): + return np.linalg.norm(point2 - point1) + + def acc_scaling(self, steer): + """ + Steer scaling based on acceleration + increase steer when accelerating + decrease steer when decelerating + + Returns: + steer: scaled steering angle based on acceleration + """ + if np.mean(self.acc_now) >= 1: + steer *= self.acc_scaler_for_steer + elif np.mean(self.acc_now) <= -1: + steer *= self.dec_scaler_for_steer + return steer + + def speed_steer_scaling(self, steer, speed): + """ + Steer scaling based on speed + decrease steer when driving fast + + Returns: + steer: scaled steering angle based on speed + """ + speed_diff = max(0.1,self.end_scale_speed-self.start_scale_speed) # to prevent division by zero + factor = 1 - np.clip((speed - self.start_scale_speed)/(speed_diff), 0.0, 1.0) * self.downscale_factor + steer *= factor + return steer + + def calc_lateral_error_norm(self): + """ + Calculates lateral error + + Returns: + lat_e_norm: normalization of the lateral error + lateral_error: distance from car's position to nearest waypoint + """ + # DONE rename function and adapt + lateral_error = abs(self.position_in_map_frenet[1]) # frenet coordinates d + + max_lat_e = 0.5 + min_lat_e = 0. + lat_e_clip = np.clip(lateral_error, a_min=min_lat_e, a_max=max_lat_e) + lat_e_norm = 0.5 * ((lat_e_clip - min_lat_e) / (max_lat_e - min_lat_e)) + return lat_e_norm, lateral_error + + def speed_adjust_lat_err(self, global_speed, lat_e_norm): + """ + Reduce speed from the global_speed based on the lateral error + and curvature of the track. lat_e_coeff scales the speed reduction: + lat_e_coeff = 0: no account for lateral error + lat_e_coaff = 1: maximum accounting + + Returns: + global_speed: the speed we want to follow + """ + # scaling down global speed with lateral error and curvature + lat_e_coeff = self.lat_err_coeff # must be in [0, 1] + lat_e_norm *= 2 + curv = np.clip(2*(np.mean(self.curvature_waypoints)/0.8) - 2, a_min = 0, a_max = 1) # 0.8 ca. max curvature mean + + global_speed *= (1 - lat_e_coeff + lat_e_coeff*np.exp(-lat_e_norm*curv)) + return global_speed + + def speed_adjust_heading(self, speed_command): + """ + Reduce speed from the global_speed based on the heading error. + If the difference between the map heading and the actual heading + is larger than 20 degrees, the speed gets scaled down linearly up to 0.5x + + Returns: + global_speed: the speed we want to follow + """ + + heading = self.position_in_map[0,2] + map_heading = self.waypoint_array_in_map[self.idx_nearest_waypoint, 6] + if abs(heading - map_heading) > np.pi: # resolves wrapping issues + heading_error = 2*np.pi - abs(heading- map_heading) + else: + heading_error = abs(heading - map_heading) + + if heading_error < np.pi/9: # 20 degrees error is okay + return speed_command + elif heading_error < np.pi/2: + scaler = 1 - 0.5* heading_error/(np.pi/2) # scale linearly to 0.5x + else: + scaler = 0.5 + self.logger_info(f"[MAP Controller] heading error decreasing velocity by {scaler}") + return speed_command * scaler + + def nearest_waypoint(self, position, waypoints): + """ + Calculates index of nearest waypoint to the car + + Returns: + index of nearest waypoint to the car + """ + position_array = np.array([position]*len(waypoints)) + distances_to_position = np.linalg.norm(abs(position_array - waypoints), axis=1) + return np.argmin(distances_to_position) + + def waypoint_at_distance_before_car(self, distance, waypoints, idx_waypoint_behind_car): + """ + Calculates the waypoint at a certain frenet distance in front of the car + + Returns: + waypoint as numpy array at a ceratin distance in front of the car + """ + if distance is None: + distance = self.t_clip_min + d_distance = distance + waypoints_distance = 0.1 + d_index= int(d_distance/waypoints_distance + 0.5) + + return np.array(waypoints[min(len(waypoints) -1, idx_waypoint_behind_car + d_index)]) \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..97dc2aa --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,62 @@ +version: "3.8" +services: + base_arm: + build: + context: . + dockerfile: .docker_utils/Dockerfile.base_arm + image: base_arm + + sim_arm: + build: + context: . + dockerfile: .docker_utils/Dockerfile.sim_arm + args: + - USER=${USER} + - UID=${UID} # user id must be saved to an environment variable, can be done with `export UID=$(id -u)` + - GID=${GID} # group id must be saved to an environment variable, can be done with `export GID=$(id -g)` + image: race_stack_sim_arm + depends_on: + - base_arm + + jet: + build: + context: . + dockerfile: .docker_utils/Dockerfile.jet + args: + - USER=${USER} + - UID=${UID} # user id must be saved to an environment variable, can be done with `export UID=$(id -u)` + - GID=${GID} # group id must be saved to an environment variable, can be done with `export GID=$(id -g)` + image: race_stack_jet + depends_on: + - base_arm + + base_x86: + build: + context: . + dockerfile: .docker_utils/Dockerfile.base_x86 + image: base_x86 + + sim_x86: + build: + context: . + dockerfile: .docker_utils/Dockerfile.sim_x86 + args: + - USER=${USER} + - UID=${UID} # user id must be saved to an environment variable, can be done with `export UID=$(id -u)` + - GID=${GID} # group id must be saved to an environment variable, can be done with `export GID=$(id -g)` + image: race_stack_sim_x86 + # container_name: race_stack_sim_x86 + depends_on: + - base_x86 + + nuc: + build: + context: . + dockerfile: .docker_utils/Dockerfile.nuc + args: + - USER=${USER} + - UID=${UID} # user id must be saved to an environment variable, can be done with `export UID=$(id -u)` + - GID=${GID} # group id must be saved to an environment variable, can be done with `export GID=$(id -g)` + image: race_stack_nuc + depends_on: + - base_x86 diff --git a/f110_utils/README.md b/f110_utils/README.md new file mode 100644 index 0000000..133b9b0 --- /dev/null +++ b/f110_utils/README.md @@ -0,0 +1,30 @@ +# F110_Utils + +Utils repo for PBL F110. Messages, services and library functions are located inside `/libs`, rosnodes are located inside `/nodes`, and scripts are located inside `/scripts`. + +## Current structure + - `libs` + - [`f110_msgs`](./libs/f110_msgs/README.md) + - [`frenet_conversion`](./libs/frenet_conversion/README.md) + - `nodes` + - [`bayesopt4ros`](./nodes/bayesopt4ros/README.md): external submodules for bayesian optimization in ROS. + - [`car_to_car_sync`](./nodes/car_to_car_sync/README.md): contains the node and instructions to stream one car's state estimate to the other. + - [`frenet_conversion_server`](./nodes/frenet_conversion_server/README.md) + - [`frenet_odom_republisher`](./nodes/frenet_odom_republisher/README.md): contains the node and instructions to publish the position and velocity of the racecar in frenet coordinates. + - [`gb_traj_publisher`](./nodes/gb_traj_publisher/README.md): contains the node and instructions to publish the trajectory of the car. + - [`lap_analyser`](./nodes/lap_analyser/README.md): contains the node and instructions to analyse the lap times and the performance of the car. + - [`map_editor`](./nodes/map_editor/README.md): contains the node and instructions to map when an map defined by physical boundaries is not availble. + - [`obstacle_publisher`](./nodes/obstacle_publisher/README.md): contains the node and instructions to publish fictitious obstacles in the simulator. + - [`overtaking_sector_tuner`](./nodes/overtaking_sector_tuner/README.md): describes the overtaking sector slicer and server, used to define the overtaking sectors and the corresponding scaling factors. + - [`param_optimizer`](./nodes/param_optimizer/README.md): contains the node and instructions to use bayesian optimization (with the `bayesopt4ros` package) to get optimal MAP parameters and/or sector scalers. + - [`random_obstacle_publisher`](./nodes/random_obstacle_publisher/README.md) + - [`sector_tuner`](./nodes/sector_tuner/README.md): contains the node and instructions to slice the racing line in sectors and then publishes the sectors and the corresponding scaled trajectories and scaling parameters once the system is running. + - [`set_pose`](./nodes/set_pose/README.md): contains the node and instructions to set the pose of the car in the simulator. + - [`slam_tuner`](./nodes/slam_tuner/README.md): contains a node and instructions to tune the localization algorithms. + - [`tf_transformer`](./nodes/tf_transformer/README.md) + - [`transform_broadcaster`](./nodes/transform_broadcaster/README.md) + - `scripts` + - [`pit_starter`](./scripts/pit_starter/README.md): contains the script and instructions to source the NUCX and runs the rviz with the correct config. + +--- +[Go back to the main README](../README.md) diff --git a/f110_utils/libs/f110_msgs/CMakeLists.txt b/f110_utils/libs/f110_msgs/CMakeLists.txt new file mode 100644 index 0000000..2bc6932 --- /dev/null +++ b/f110_utils/libs/f110_msgs/CMakeLists.txt @@ -0,0 +1,89 @@ +cmake_minimum_required(VERSION 3.0.2) +project(f110_msgs) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + std_msgs + message_generation +) + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder + add_message_files( + FILES + CarState.msg + CarStateStamped.msg + LapData.msg + Wpnt.msg + WpntArray.msg + Obstacle.msg + ObstacleArray.msg + OTWpntArray.msg + GapData.msg + PidData.msg + OpponentTrajectory.msg + OppWpnt.msg + ProjOppPoint.msg + ProjOppTraj.msg + ) + +## Generate added messages and services with any dependencies listed here + generate_messages( + DEPENDENCIES + std_msgs + geometry_msgs + ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need + +catkin_package( + CATKIN_DEPENDS message_runtime std_msgs geometry_msgs +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations + +include_directories( + ${catkin_INCLUDE_DIRS} +) diff --git a/f110_utils/libs/f110_msgs/README.md b/f110_utils/libs/f110_msgs/README.md new file mode 100644 index 0000000..c69dc11 --- /dev/null +++ b/f110_utils/libs/f110_msgs/README.md @@ -0,0 +1,8 @@ +# F110 Msgs + +Contains customs messages used by the F110 group at PBL. + +Message structure can be found in the every `.msg` file. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/CarState.msg b/f110_utils/libs/f110_msgs/msg/CarState.msg new file mode 100644 index 0000000..febb056 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/CarState.msg @@ -0,0 +1,2 @@ +geometry_msgs/Pose slam_pose +geometry_msgs/Twist ekf_twist diff --git a/f110_utils/libs/f110_msgs/msg/CarStateStamped.msg b/f110_utils/libs/f110_msgs/msg/CarStateStamped.msg new file mode 100644 index 0000000..6645b12 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/CarStateStamped.msg @@ -0,0 +1,2 @@ +std_msgs/Header header +CarState state diff --git a/f110_utils/libs/f110_msgs/msg/GapData.msg b/f110_utils/libs/f110_msgs/msg/GapData.msg new file mode 100644 index 0000000..f7f865d --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/GapData.msg @@ -0,0 +1,5 @@ +std_msgs/Header header + +float64 gap_diff +float64 vs_diff +float64 gap_int \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/LapData.msg b/f110_utils/libs/f110_msgs/msg/LapData.msg new file mode 100644 index 0000000..1edd824 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/LapData.msg @@ -0,0 +1,6 @@ +std_msgs/Header header + +int32 lap_count +float64 lap_time +float64 average_lateral_error_to_global_waypoints +float64 max_lateral_error_to_global_waypoints \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/OTWpntArray.msg b/f110_utils/libs/f110_msgs/msg/OTWpntArray.msg new file mode 100644 index 0000000..5fb53bb --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/OTWpntArray.msg @@ -0,0 +1,7 @@ +std_msgs/Header header +time last_switch_time +bool side_switch +string ot_side +string ot_line +Wpnt[] wpnts + diff --git a/f110_utils/libs/f110_msgs/msg/Obstacle.msg b/f110_utils/libs/f110_msgs/msg/Obstacle.msg new file mode 100644 index 0000000..3c64712 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/Obstacle.msg @@ -0,0 +1,18 @@ +int32 id + +float64 s_start +float64 s_end +float64 d_right # defined as right bound of the obstacle +float64 d_left # defined as left bound of the obstacle +bool is_actually_a_gap # used by the frenet planner to choos points through which we want to go +float64 s_center +float64 d_center +float64 size +float64 vs +float64 vd +float64 s_var +float64 d_var +float64 vs_var +float64 vd_var +bool is_static +bool is_visible \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/ObstacleArray.msg b/f110_utils/libs/f110_msgs/msg/ObstacleArray.msg new file mode 100644 index 0000000..8f9bd1f --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/ObstacleArray.msg @@ -0,0 +1,2 @@ +std_msgs/Header header +Obstacle[] obstacles \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/OppWpnt.msg b/f110_utils/libs/f110_msgs/msg/OppWpnt.msg new file mode 100644 index 0000000..306090d --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/OppWpnt.msg @@ -0,0 +1,18 @@ +int32 id + +# frenet coordinates +float64 s_m +float64 d_m + +# map coordinates +float64 x_m +float64 y_m + +# track information +float64 proj_vs_mps +float64 vd_mps + +#variance +float64 d_var +float64 vs_var + diff --git a/f110_utils/libs/f110_msgs/msg/OpponentTrajectory.msg b/f110_utils/libs/f110_msgs/msg/OpponentTrajectory.msg new file mode 100644 index 0000000..2180a96 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/OpponentTrajectory.msg @@ -0,0 +1,4 @@ +std_msgs/Header header +float64 lap_count +bool opp_is_on_trajectory +OppWpnt[] oppwpnts \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/PidData.msg b/f110_utils/libs/f110_msgs/msg/PidData.msg new file mode 100644 index 0000000..19ce79c --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/PidData.msg @@ -0,0 +1,8 @@ +std_msgs/Header header + +float64 should +float64 actual +float64 error +float64 d_value +float64 i_value +float64 input \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/ProjOppPoint.msg b/f110_utils/libs/f110_msgs/msg/ProjOppPoint.msg new file mode 100644 index 0000000..5a357f2 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/ProjOppPoint.msg @@ -0,0 +1,13 @@ +#Velocities are projected onto ego race line + +float64 s +float64 d +float64 vs +float64 vd +bool is_static +bool is_visible +float64 time +float64 s_var +float64 d_var +float64 vs_var +float64 vd_var \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/ProjOppTraj.msg b/f110_utils/libs/f110_msgs/msg/ProjOppTraj.msg new file mode 100644 index 0000000..e01aa0d --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/ProjOppTraj.msg @@ -0,0 +1,4 @@ +float64 lapcount +float64 nrofpoints +bool opp_is_on_trajectory +ProjOppPoint[] detections \ No newline at end of file diff --git a/f110_utils/libs/f110_msgs/msg/Wpnt.msg b/f110_utils/libs/f110_msgs/msg/Wpnt.msg new file mode 100644 index 0000000..ec7a8e7 --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/Wpnt.msg @@ -0,0 +1,20 @@ +int32 id + +# frenet coordinates +float64 s_m +float64 d_m + +# map coordinates +float64 x_m +float64 y_m + +# track bound distance +float64 d_right +float64 d_left + +# track information +float64 psi_rad +float64 kappa_radpm +float64 vx_mps +float64 ax_mps2 + diff --git a/f110_utils/libs/f110_msgs/msg/WpntArray.msg b/f110_utils/libs/f110_msgs/msg/WpntArray.msg new file mode 100644 index 0000000..6af21df --- /dev/null +++ b/f110_utils/libs/f110_msgs/msg/WpntArray.msg @@ -0,0 +1,3 @@ +std_msgs/Header header +Wpnt[] wpnts + diff --git a/f110_utils/libs/f110_msgs/package.xml b/f110_utils/libs/f110_msgs/package.xml new file mode 100644 index 0000000..55d1d63 --- /dev/null +++ b/f110_utils/libs/f110_msgs/package.xml @@ -0,0 +1,64 @@ + + + f110_msgs + 0.0.0 + The f110_msgs package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + message_generation + message_runtime + geometry_msgs + std_msgs + + + + + + + + + diff --git a/f110_utils/libs/frenet_conversion/CMakeLists.txt b/f110_utils/libs/frenet_conversion/CMakeLists.txt new file mode 100644 index 0000000..e0dd1e0 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/CMakeLists.txt @@ -0,0 +1,45 @@ +cmake_minimum_required(VERSION 3.10) +project(frenet_conversion) + +find_package(catkin REQUIRED COMPONENTS + roscpp + f110_msgs + std_msgs + message_generation +) + +add_service_files( + FILES + Frenet2Glob.srv + Frenet2GlobArr.srv + Glob2Frenet.srv + Glob2FrenetArr.srv +) + +catkin_python_setup() + +generate_messages() + +catkin_package( + INCLUDE_DIRS include + CATKIN_DEPENDS roscpp f110_msgs + LIBRARIES ${PROJECT_NAME} +) + +include_directories(include + ${catkin_INCLUDE_DIRS}) + +add_library(${PROJECT_NAME} src/frenet_conversion.cc) + +target_link_libraries(${PROJECT_NAME} + ${catkin_LIBRARIES}) + +install(DIRECTORY include + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +) + + +catkin_install_python(PROGRAMS + src/frenet_converter/frenet_converter.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) \ No newline at end of file diff --git a/f110_utils/libs/frenet_conversion/README.md b/f110_utils/libs/frenet_conversion/README.md new file mode 100644 index 0000000..d273d55 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/README.md @@ -0,0 +1,15 @@ +# Frenet Conversion Library + +It constitutes a C library to compute the frenet conversion. +It furthermore contains the definition of the frenet conversion service, which is instead at `/f110_utils/nodes/frenet_conversion_server`. + +## Basic usage + +### C++ +An example of the usage of the frenet conversion library can be seen in the Frenet Odometry Republisher. It basically imports the library in the header file (`/f110_utils/nodes/frenet_odom_republisher/include/frenet_odom_republisher_node.h`, line 11) then it instantiates the converter object in line 32. + +### Python +TODO: We should write a wrapper/version of the converter in python + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/libs/frenet_conversion/__init__.py b/f110_utils/libs/frenet_conversion/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/libs/frenet_conversion/helpers/frenet_debugerino.ipynb b/f110_utils/libs/frenet_conversion/helpers/frenet_debugerino.ipynb new file mode 100644 index 0000000..831ae28 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/helpers/frenet_debugerino.ipynb @@ -0,0 +1,175 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import bagpy\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import rosbag" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from frenet_converter import frenet_converter" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "bag_name = \"/home/gnone/rosbags/frenet_bug.bag\"\n", + "\n", + "boundaries_topic_name = \"/trackbounds/markers\"\n", + "laserscan_topic_name = \"/scan\"\n", + "carstate_pose_topic_name = \"/car_state/pose\"\n", + "opponent_topic = \"/perception/obstacles\"\n", + "raceline_topic = \"/global_waypoints\"\n", + "map_topic_name = \"/map\"\n", + "\n", + "bag = bagpy.bagreader(bag_name)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# proper IEEE sizes \n", + "\n", + "# 1 column\n", + "COLWIDTH = 3.5 # in inches\n", + "FONTSIZE = 8 # in pt" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "bag_obj = rosbag.Bag(bag_name)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#get the raceline\n", + "raceline = None\n", + "for topic, msg, t in bag_obj.read_messages(topics=[raceline_topic]):\n", + " raceline = msg.wpnts\n", + " break\n", + "\n", + "raceline_x = np.array([p.x_m for p in raceline])\n", + "raceline_y = np.array([p.y_m for p in raceline])\n", + "\n", + "#Frenet converter\n", + "fc = frenet_converter.FrenetConverter(raceline_x, raceline_y)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "x = 10.281317029280368\n", + "y = 18.758460617419132\n", + "\n", + "x1 = 8.550580978393555\n", + "y1 = 14.897018432617188\n", + "\n", + "x2 = 8.650595664978027\n", + "y2 = 15.354464530944824\n", + "\n", + "resp = fc.get_frenet([x, x1, x2], [y, y1, y2])\n", + "print(resp)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# print(resp[0], resp[1])\n", + "cart = fc.get_cartesian(resp[0], resp[1])\n", + "print([f\"Reprojection error: {num:.3f} [m]\" for num in (np.linalg.norm(cart, axis=0) - np.linalg.norm([[x, x1, x2], [y, y1, y2]], axis=0))])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "spline_x, spline_y = fc.get_splines()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "space = np.linspace(20, 21, 2000)\n", + "# set aspect equal \n", + "fig, ax = plt.subplots(figsize=(COLWIDTH, COLWIDTH))\n", + "ax.set_aspect('equal')\n", + "ax.plot(spline_x(space), spline_y(space))\n", + "\n", + "ax.plot(x,y,'x')\n", + "# print tangent \n", + "for i in np.linspace(20.6, 20.59, 3):\n", + " tangent = [spline_x(i, 1), spline_y(i, 1)]\n", + " # tangent = [-tangent[1], tangent[0]]\n", + " # normalize \n", + " tangent = tangent / np.linalg.norm(tangent, axis=0)\n", + " # print(tangent)\n", + " second_guy = np.array([x-spline_x(i), y-spline_y(i)])\n", + " # print(second_guy)\n", + " proj = np.clip(np.dot(tangent, second_guy), -1.66666667e-02, 1.66666667e-02)\n", + " print(proj)\n", + " print(np.einsum('ij,ij->i', [tangent], [second_guy])-proj)\n", + "\n", + "ax.plot(spline_x([20.5, 20.6]), spline_y([20.5, 20.6]), 'o')\n", + "ax.plot([spline_x(20.6), spline_x(20.6) + tangent[0]], [spline_y(20.6), spline_y(20.6) + tangent[1]], 'r')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "f1tenth", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.13" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/f110_utils/libs/frenet_conversion/include/frenet_conversion.h b/f110_utils/libs/frenet_conversion/include/frenet_conversion.h new file mode 100644 index 0000000..4d4c6b4 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/include/frenet_conversion.h @@ -0,0 +1,147 @@ +#ifndef FRENET_CONVERSION_H_ +#define FRENET_CONVERSION_H_ + +#include +#include +#include +#include + +namespace frenet_conversion{ + +class FrenetConverter { + public: + FrenetConverter(); + ~FrenetConverter(); + + /** + * @brief Initializes the frenet converter with the global trajectory + * + * @param wptns pointer to vector containing the waypoints describing the + * global trajectory, the last and first waypoints should overlap if the + * trajectory is wrapping around + * + */ + void SetGlobalTrajectory(const std::vector *wptns, + const bool is_closed_contour); + + /** + * @brief Returns the frenet point corresponding to the given position + * + * @param x input x position + * @param y input y position + * @param s returns the frenet s coordinate + * @param d returns the frenet d coordinate + * @param idx returns the index of the closest waypoint + * + */ + void GetFrenetPoint(const double x, const double y, double* s, double* d, + int* idx, bool full_search); + + /** + * @brief Returns the global point corresponding to the frenet position + * + * @param s input frenet s coordinate + * @param d input frenet d coordinate + * @param x output x position + * @param y output y position + * + */ + void GetGlobalPoint(const double s, const double d, double* x, double* y); + + /** + * @brief Get the Closest Index on the global trajectory to the given position + * + * @param x input + * @param y input + * @param idx returns the index of the closest waypoint + */ + void GetClosestIndex(const double x, const double y, int* idx); + + /** + * @brief Get the Closest Index on the global trajectory to track advancement + * + * @param s input track advancement + * @param idx returns the index of the closest waypoint + */ + void GetClosestIndex(const double s, int* idx); + + /** + * @brief Returns the frenet point and locally projected velocity + * corresponding to the given position and velocity + * + * @param x input x position + * @param y input y position + * @param theta car heading angle + * @param v_x input x velocity, in body frame + * @param v_y input y velocity, in body frame + * @param s returns the frenet s coordinate + * @param d returns the frenet d coordinate + * @param v_s returns the frenet s velocity + * @param v_d returns the frenet d velocity + * @param idx returns the index of the closest waypoint + */ + void GetFrenetOdometry(const double x, const double y, const double theta, + const double v_x, const double v_y, double* s, + double* d, double* v_s, double* v_d, int* idx); + + private: + /** + * @brief Calculates the frenet coordinates of the given position + * + * @param x input x position + * @param y input y position + * @param s returns the frenet s coordinate + * @param d returns the frenet d coordinate + */ + void CalcFrenetPoint(const double x, const double y, double* s, double* d); + + /** + * @brief Calculates the global position based on the frenet position + * + * @param s input track advancement + * @param d input track offset + * @param x output x position + * @param y output y position + */ + void CalcGlobalPoint(const double s, const double d, double* x, double* y); + + /** + * @brief Projects the velocities into local frenet frame + * + * @param v_x input x velocity, in body frame + * @param v_y input y velocity, in body frame + * @param theta car heading angle + * @param v_s returns the frenet s velocity + * @param v_d returns the frenet d velocity + */ + void CalcFrenetVelocity(const double v_x, const double v_y, const double theta, + double* v_s, double* v_d); + + /** + * @brief Updates the closest index of waypoint array to the given position + * + * @param x input x position + * @param y input y position + */ + void UpdateClosestIndex(const double x, const double y, int* idx, bool full_search); + + /** + * @brief Updates the closest index of waypoint array to the given + * track advancement + * + * @param s + */ + void UpdateClosestIndex(const double s); + + int closest_idx_; + std::vector wpt_array_; + bool has_global_trajectory_{false}; + double global_trajectory_length_; + bool is_closed_contour_; + std::mutex mutexGlobalTrajectory_; + +}; + +}// end namespace frenet_conversion + +#endif /* FRENET_CONVERSION_H_ */ \ No newline at end of file diff --git a/f110_utils/libs/frenet_conversion/package.xml b/f110_utils/libs/frenet_conversion/package.xml new file mode 100644 index 0000000..8f69232 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/package.xml @@ -0,0 +1,21 @@ + + + frenet_conversion + 0.0.0 + + + Transformation to and from frenet frame to global frame + + + Jonathan Becker + Apache License 2.0 + + catkin + + roscpp + f110_msgs + message_generation + message_runtime + + + diff --git a/f110_utils/libs/frenet_conversion/setup.py b/f110_utils/libs/frenet_conversion/setup.py new file mode 100644 index 0000000..1ec3342 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/setup.py @@ -0,0 +1,11 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from setuptools import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['frenet_converter'], + package_dir={'': 'src'}) + +setup(**setup_args) diff --git a/f110_utils/libs/frenet_conversion/src/__init__.py b/f110_utils/libs/frenet_conversion/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/libs/frenet_conversion/src/frenet_conversion.cc b/f110_utils/libs/frenet_conversion/src/frenet_conversion.cc new file mode 100644 index 0000000..bbf8a64 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/src/frenet_conversion.cc @@ -0,0 +1,206 @@ +#include "frenet_conversion.h" +#include +#include + +namespace frenet_conversion{ + + FrenetConverter::FrenetConverter() {} + + FrenetConverter::~FrenetConverter() {} + + /*** -------------- PUBLIC ----------------- ***/ + + void FrenetConverter::SetGlobalTrajectory( + const std::vector *wptns, + const bool is_closed_contour) { + // deep copy wptns + wpt_array_ = *wptns; + global_trajectory_length_ = wpt_array_.back().s_m; + is_closed_contour_ = is_closed_contour; + // remove the first element -> no negative s + if (is_closed_contour_) { + wpt_array_.erase(wpt_array_.begin()); + } + has_global_trajectory_ = true; + } + + void FrenetConverter::GetFrenetPoint(const double x, const double y, + double* s, double* d, int* idx, bool full_search) { + + if (!has_global_trajectory_) { + ROS_ERROR("[FrenetConverter] No global trajectory set!"); + return; + } + + UpdateClosestIndex(x, y, idx, full_search); + + + // calculate frenet point + CalcFrenetPoint(x, y, s, d); + } + + void FrenetConverter::GetFrenetOdometry(const double x, const double y, + const double theta, const double v_x, + const double v_y, double* s, + double* d, double* v_s, double* v_d, + int* idx) { + + if (!has_global_trajectory_) { + ROS_ERROR("[FrenetConverter] No global trajectory set!"); + return; + } + std::unique_lock lock(mutexGlobalTrajectory_); + + UpdateClosestIndex(x, y, idx, false); + + CalcFrenetPoint(x, y, s, d); + + CalcFrenetVelocity(v_x, v_y, theta, v_s, v_d); + lock.unlock(); + } + + void FrenetConverter::GetGlobalPoint(const double s, const double d, + double* x, double* y) { + + if (!has_global_trajectory_) { + ROS_ERROR("[FrenetConverter] No global trajectory set!"); + return; + } + std::unique_lock lock(mutexGlobalTrajectory_); + + UpdateClosestIndex(s); + + // calculate frenet point + CalcGlobalPoint(s, d, x, y); + lock.unlock(); + } + + void FrenetConverter::GetClosestIndex(const double s, int* idx) { + if (!has_global_trajectory_) { + ROS_ERROR("[FrenetConverter] No global trajectory set!"); + return; + } + UpdateClosestIndex(s); + *idx = (closest_idx_ + 1); // account for removing the first element + } + + void FrenetConverter::GetClosestIndex(const double x, const double y, + int* idx) { + if (!has_global_trajectory_) { + ROS_ERROR("[FrenetConverter] No global trajectory set!"); + return; + } + UpdateClosestIndex(x, y, idx, false); + } + + /*** -------------- PRIVATE ----------------- ***/ + + void FrenetConverter::CalcFrenetPoint(const double x, const double y, + double* s, double* d) { + // project current position onto trajectory: + // s = s_wp + cos(phi)*dx + sin(phi)*dy + double d_x = x - wpt_array_.at(closest_idx_).x_m; + double d_y = y - wpt_array_.at(closest_idx_).y_m; + + *s = d_x * std::cos(wpt_array_.at(closest_idx_).psi_rad) + + d_y * std::sin(wpt_array_.at(closest_idx_).psi_rad) + + wpt_array_.at(closest_idx_).s_m; + if (is_closed_contour_) { + // limit to length of global trajectory + *s = std::fmod(*s, global_trajectory_length_); + } + *d = - d_x * std::sin(wpt_array_.at(closest_idx_).psi_rad) + + d_y * std::cos(wpt_array_.at(closest_idx_).psi_rad); + } + + void FrenetConverter::CalcGlobalPoint(const double s, const double d, + double* x, double* y) { + double d_s = s - wpt_array_.at(closest_idx_).s_m; + *x = wpt_array_.at(closest_idx_).x_m + + d_s * std::cos(wpt_array_.at(closest_idx_).psi_rad) + - d * std::sin(wpt_array_.at(closest_idx_).psi_rad); + *y = wpt_array_.at(closest_idx_).y_m + + d * std::cos(wpt_array_.at(closest_idx_).psi_rad) + + d_s * std::sin(wpt_array_.at(closest_idx_).psi_rad); + } + + void FrenetConverter::CalcFrenetVelocity(const double v_x, const double v_y, + const double theta, double* v_s, + double* v_d) { + double delta_psi = theta - wpt_array_.at(closest_idx_).psi_rad; + *v_s = v_x * std::cos(delta_psi) - v_y * std::sin(delta_psi); + *v_d = v_x * std::sin(delta_psi) + v_y * std::cos(delta_psi); + } + + // TODO speed up by using intelligent search (binary search) + void FrenetConverter::UpdateClosestIndex(const double x, const double y, + int* idx, bool full_search) { + // get the closest waypoint + double min_dist = INFINITY; + int search_ahead_radius = 20; // TODO don't hardcode this + int start = (wpt_array_.size() + *idx - 1) % wpt_array_.size(); + int end_idx = (start + search_ahead_radius) % wpt_array_.size(); + + // -- proximity search: -- + if (!full_search) { + if (end_idx < start) { + // search end of array + for (int i = start; i < wpt_array_.size(); i++) { + double d_squared = std::pow(x - wpt_array_[i].x_m, 2) + + std::pow(y - wpt_array_[i].y_m, 2); + if (d_squared < min_dist) { + min_dist = d_squared; + closest_idx_ = i; + } + } + for (int i = 0; i < end_idx; i++) { + double d_squared = std::pow(x - wpt_array_[i].x_m, 2) + + std::pow(y - wpt_array_[i].y_m, 2); + if (d_squared < min_dist) { + min_dist = d_squared; + closest_idx_ = i; + } + } + } else { + for (int i = start; i < end_idx; i++) { + double d_squared = std::pow(x - wpt_array_[i].x_m, 2) + + std::pow(y - wpt_array_[i].y_m, 2); + if (d_squared < min_dist) { + min_dist = d_squared; + closest_idx_ = i; + } + } + } + } + // if we didn't find anything good in proximity, search the whole array + if (min_dist > 4 || full_search) { // TODO don't hardcode this + //ROS_WARN_STREAM("[Converter] Searching Entire Array"); + for (int i = 0; i < wpt_array_.size(); i++) { + double d_squared = std::pow(x - wpt_array_[i].x_m, 2) + + std::pow(y - wpt_array_[i].y_m, 2); + if (d_squared < min_dist) { + min_dist = d_squared; + closest_idx_ = i; + } + } + } + *idx = (closest_idx_ + 1); // account for removing the first element + } + + void FrenetConverter::UpdateClosestIndex(const double s) { + closest_idx_ = wpt_array_.size() - 1; // lazy don't handle wrapping + for (int i = 1; i < wpt_array_.size(); i++) { + // find first waypoint with s > s + if (wpt_array_[i].s_m > s) { + if (wpt_array_[i].s_m - s > s - wpt_array_[i-1].s_m) { + closest_idx_ = i - 1; + break; + } else { + closest_idx_ = i; + break; + } + } + } + } + +} // end of namespace frenet_conversion diff --git a/f110_utils/libs/frenet_conversion/src/frenet_converter/__init__.py b/f110_utils/libs/frenet_conversion/src/frenet_converter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/libs/frenet_conversion/src/frenet_converter/frenet_converter.py b/f110_utils/libs/frenet_conversion/src/frenet_converter/frenet_converter.py new file mode 100644 index 0000000..28be783 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/src/frenet_converter/frenet_converter.py @@ -0,0 +1,148 @@ +from typing import Union +import numpy as np +from scipy.interpolate import CubicSpline + +class FrenetConverter: + def __init__(self, waypoints_x: np.array, waypoints_y: np.array): + self.waypoints_x = waypoints_x + self.waypoints_y = waypoints_y + self.waypoints_s = None + self.spline_x = None + self.spline_y = None + self.raceline_length = None + self.waypoints_distance_m = 0.1 # [m] + self.iter_max = 3 + + self.build_raceline() + + def build_raceline(self): + self.waypoints_s = [0.0] + prev_wpnt_x = self.waypoints_x[0] + prev_wpnt_y = self.waypoints_y[0] + for wpnt_x, wpnt_y in zip(self.waypoints_x[1:], self.waypoints_y[1:]): + dist = np.linalg.norm([wpnt_x - prev_wpnt_x, wpnt_y - prev_wpnt_y]) + prev_wpnt_x = wpnt_x + prev_wpnt_y = wpnt_y + self.waypoints_s.append(self.waypoints_s[-1] + dist) + self.spline_x = CubicSpline(self.waypoints_s, self.waypoints_x) + self.spline_y = CubicSpline(self.waypoints_s, self.waypoints_y) + self.raceline_length = self.waypoints_s[-1] + + def get_frenet(self, x, y, s=None) -> np.array: + # Compute Frenet coordinates for a given (x, y) point + if s is None: + s = self.get_approx_s(x, y) + s, d = self.get_frenet_coord(x, y, s) + else: + s, d = self.get_frenet_coord(x, y, s) + + return np.array([s, d]) + + def get_approx_s(self, x, y) -> float: + """ + Finds the s-coordinate of the given point by finding the nearest waypoint. + """ + # get distance with broadcasting multiple arrays + lenx = len(x) + dist_x = x - np.tile(self.waypoints_x, (lenx, 1)).T + dist_y = y - np.tile(self.waypoints_y, (lenx, 1)).T + return np.argmin(np.linalg.norm([dist_x.T, dist_y.T], axis=0), axis=1)*self.waypoints_distance_m + + def get_frenet_coord(self, x, y, s, eps_m=0.01) -> float: + """ + Finds the s-coordinate of the given point, considering the perpendicular + projection of the point on the track. + + Args: + x (float): x-coordinate of the point + y (float): y-coordinate of the point + s (float): estimated s-coordinate of the point + eps_m (float): maximum error tolerance for the projection. Default is 0.01. + + Returns: + The s-coordinate of the point on the track. + """ + # Check if point is on the estimated s perpendicular to the track + + _, projection, d = self.check_perpendicular(x, y, s, eps_m) + for i in range(self.iter_max): + cand_s = (s + projection)%self.raceline_length + _, cand_projection, cand_d = self.check_perpendicular(x, y, cand_s, eps_m) + #print(f"candidate projection: {cand_projection}; projection: {projection}; d: {d} cand_d: {cand_d}") + cand_projection = np.clip(cand_projection, -self.waypoints_distance_m/(2*self.iter_max), self.waypoints_distance_m/(2*self.iter_max)) + updated_idxs = np.abs(cand_projection) <= np.abs(projection) + d[updated_idxs] = cand_d[updated_idxs] + s[updated_idxs] = cand_s[updated_idxs] + projection[updated_idxs] = cand_projection[updated_idxs] + + return s, d + + def check_perpendicular(self, x, y, s, eps_m=0.01) -> Union[bool, float]: + # obtain unit vector parallel to the track + dx_ds, dy_ds = self.get_derivative(s) + tangent = np.array([dx_ds, dy_ds]) + if np.any(np.isnan(s)): + raise ValueError("BUB FRENET CONVERTER: S is nan") + tangent /= np.linalg.norm(tangent, axis=0) + + # obtain vector from the track to the point + x_vec = x - self.spline_x(s) + y_vec = y - self.spline_y(s) + point_to_track = np.array([x_vec, y_vec]) + + # check if the vectors are perpendicular + # computes the projection of point_to_track on tangent + proj = np.einsum('ij,ij->j', tangent, point_to_track) + perps = np.array([-tangent[1, :], tangent[0, :]]) + d = np.einsum('ij,ij->j', perps, point_to_track) + + # TODO commented out because of computational efficiency + # eps_m * point_to_track_norm is needed to make it scale invariant + # check_perpendicular becomes effectively cos(angle) <= eps_m + + # point_to_track_norm = np.linalg.norm(point_to_track, axis=0) + # check_perpendicular = np.abs(proj) <= eps_m * point_to_track_norm + check_perpendicular = None + + return check_perpendicular, proj, d + + def get_derivative(self, s) -> np.array: + """ + Returns the derivative of the point corresponding to s on the chosen line. + + Args: + s: parameter which is used to evaluate the spline + line: argument used to choose the line. Can be 'int', 'mid', 'out'. Default is 'mid'. + + Returns: + der: dx/ds, dy/ds + """ + s = s%self.raceline_length + + der = [self.spline_x(s, 1), self.spline_y(s, 1)] + + return der + + + def get_cartesian(self, s: float, d: float) -> np.array: + """ + Convert Frenet coordinates to Cartesian coordinates + + Args: + s (float): longitudinal coordinate + d (float): lateral coordinate + + Returns: + np.array: [x, y] Cartesian coordinates + """ + x = self.spline_x(s) + y = self.spline_y(s) + psi = self.get_derivative(s) + psi = np.arctan2(psi[1], psi[0]) + x += d * np.cos(psi + np.pi / 2) + y += d * np.sin(psi + np.pi / 2) + + return np.array([x, y]) + + + diff --git a/f110_utils/libs/frenet_conversion/src/tester.py b/f110_utils/libs/frenet_conversion/src/tester.py new file mode 100755 index 0000000..3531865 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/src/tester.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 + +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import rospy +from f110_msgs.msg import Wpnt, WpntArray +from frenet_converter.frenet_converter import FrenetConverter +from geometry_msgs.msg import PoseStamped +from nav_msgs.msg import Odometry + + +class FrenetTester: + def __init__(self) -> None: + """ + A class to test the `frenet_converter` python library + + """ + rospy.init_node("frenet_tester", anonymous=True) + rospy.on_shutdown(self.on_shutdown) + + self.waypoints = None + self.init = False + self.s_new = None + self.d_new = None + self.s_old = None + self.d_old = None + + # Subscriptions + rospy.Subscriber("/global_waypoints", WpntArray, self.global_waypoints_cb) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.car_frenet_cb) + rospy.Subscriber("/car_state/pose", PoseStamped, self.car_pose_cb) + + # Publishers + self.car_frenet = rospy.Publisher("/car_frenet", Wpnt, queue_size=1) + + # Initialize node + self.init = self.initialize_converter() + rospy.loginfo("[Frenet tester] initialized") + + def global_waypoints_cb(self, msg: WpntArray) -> None: + """ + Callback for the global waypoints topic + + Args: + msg (WpntArray): the global waypoints + + """ + + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in msg.wpnts]) + + def car_pose_cb(self, msg: PoseStamped) -> None: + """ + Callback for the car pose topic + + Args: + msg (PoseStamped): the car pose + + """ + + if self.waypoints is not None and self.init: + self.cart_x = msg.pose.position.x + self.cart_y = msg.pose.position.y + # Get the Frenet coordinates of the car + car_frenet = self.converter.get_frenet(np.array([msg.pose.position.x]), np.array([msg.pose.position.y])) + car_frenet_msg = Wpnt() + car_frenet_msg.x_m = car_frenet[0] + car_frenet_msg.y_m = car_frenet[1] + self.s_new = car_frenet[0] + self.d_new = car_frenet[1] + self.car_frenet.publish(car_frenet_msg) + + def car_frenet_cb(self, msg: Odometry) -> None: + """ + Get current Frenet estimate + """ + self.s_old = msg.pose.pose.position.x + self.d_old = msg.pose.pose.position.y + + def initialize_converter(self) -> bool: + """ + Initialize the FrenetConverter object""" + rospy.wait_for_message("/global_waypoints", WpntArray) + + # Initialize the FrenetConverter object + self.converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo("[Frenet tester] initialized FrenetConverter object") + + return True + + def on_shutdown(self): + # save the dataframe to a csv file + self.df.to_csv("frenet_statistics.csv") + rospy.loginfo("[Frenet tester] saved frenet statistics to frenet_statistics.csv") + + # plot the s_diff and the d_diff statistics in a histogram, and save the image + self.df["s_diff"].hist() + plt.savefig("frenet_statistics_s.png") + + # clear s_diff plot + plt.clf() + self.df["d_diff"].hist() + plt.savefig("frenet_statistics_d.png") + + rospy.loginfo("[Frenet tester] plotted frenet statistics to frenet_statistics.png") + + def loop(self): + # print difference between the old estimate and the new one + rate = rospy.Rate(10) + rospy.wait_for_message("/car_state/odom_frenet", Odometry) + rospy.wait_for_message("/car_state/pose", PoseStamped) + + # create statitics dataframe + self.df = pd.DataFrame(columns=["s_old", "d_old", "s_new", "d_new", "s_diff", "d_diff"]) + + while not rospy.is_shutdown(): + # compute the difference between the old and the new estimate + s_diff_front = (self.s_new - self.s_old) % self.converter.raceline_length + s_diff_back = (self.s_old - self.s_new) % self.converter.raceline_length + + s_diff = min(s_diff_front, s_diff_back) + d_diff = self.d_new - self.d_old + + # save statistics to a dataframe, with concat + self.df = pd.concat( + [ + self.df, + pd.DataFrame( + [[self.s_old, self.d_old, self.s_new, self.d_new, s_diff, d_diff]], + columns=["s_old", "d_old", "s_new", "d_new", "s_diff", "d_diff"], + ), + ] + ) + + # If the difference is too much, trow a loud error + if abs(s_diff) > 1 or abs(d_diff) > 1: + print(f"Old s:{self.s_old}, d:{self.d_old}") + print(f"New s:{self.s_new}, d:{self.d_new}") + print(f"Diff s:{s_diff}, d:{d_diff}") + rospy.logerr("[Frenet tester] Frenet conversion is not working properly") + raise ValueError("[Frenet tester] Frenet conversion is not working properly") + + cart_new = self.converter.get_cartesian(self.s_old, self.d_old) + print( + f"Difference between old and new cartesian coordinates: {np.linalg.norm([cart_new[0] - self.cart_x, cart_new[1] - self.cart_y])}" + ) + + rate.sleep() + + +if __name__ == "__main__": + frenet_tester = FrenetTester() + frenet_tester.loop() diff --git a/f110_utils/libs/frenet_conversion/srv/Frenet2Glob.srv b/f110_utils/libs/frenet_conversion/srv/Frenet2Glob.srv new file mode 100644 index 0000000..1a3271e --- /dev/null +++ b/f110_utils/libs/frenet_conversion/srv/Frenet2Glob.srv @@ -0,0 +1,5 @@ +float64 s +float64 d +--- +float64 x +float64 y diff --git a/f110_utils/libs/frenet_conversion/srv/Frenet2GlobArr.srv b/f110_utils/libs/frenet_conversion/srv/Frenet2GlobArr.srv new file mode 100644 index 0000000..b1c2c1a --- /dev/null +++ b/f110_utils/libs/frenet_conversion/srv/Frenet2GlobArr.srv @@ -0,0 +1,5 @@ +float64[] s +float64[] d +--- +float64[] x +float64[] y diff --git a/f110_utils/libs/frenet_conversion/srv/Glob2Frenet.srv b/f110_utils/libs/frenet_conversion/srv/Glob2Frenet.srv new file mode 100644 index 0000000..35991a5 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/srv/Glob2Frenet.srv @@ -0,0 +1,6 @@ +float64 x +float64 y +--- +float64 s +float64 d +int32 idx diff --git a/f110_utils/libs/frenet_conversion/srv/Glob2FrenetArr.srv b/f110_utils/libs/frenet_conversion/srv/Glob2FrenetArr.srv new file mode 100644 index 0000000..92085f0 --- /dev/null +++ b/f110_utils/libs/frenet_conversion/srv/Glob2FrenetArr.srv @@ -0,0 +1,6 @@ +float64[] x +float64[] y +--- +float64[] s +float64[] d +int32[] idx diff --git a/f110_utils/nodes/bayesopt4ros b/f110_utils/nodes/bayesopt4ros new file mode 160000 index 0000000..4f697d6 --- /dev/null +++ b/f110_utils/nodes/bayesopt4ros @@ -0,0 +1 @@ +Subproject commit 4f697d63cf9b575e73135f0c93ce343ff713428f diff --git a/f110_utils/nodes/car_to_car_sync/CMakeLists.txt b/f110_utils/nodes/car_to_car_sync/CMakeLists.txt new file mode 100644 index 0000000..d45e831 --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(car_to_car_sync) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES car_to_car_sync +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/car_to_car_sync.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/car_to_car_sync_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_car_to_car_sync.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/car_to_car_sync/README.md b/f110_utils/nodes/car_to_car_sync/README.md new file mode 100644 index 0000000..4cd2697 --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/README.md @@ -0,0 +1,52 @@ +# car_to_car_sync Package + +The `car_to_car_sync` package provides a solution for redirecting ROS topics from one robot to another, enabling seamless communication and data sharing between the two robots. This is particularly useful when you want to use one (PhD) car as GND Truth for the main car (Professor). + +## Overview + +The package contains a Python script, `car2car_redirect_topic.py`, which subscribes to specified topics on Robot B, and republishes the data to corresponding topics on Robot A. + +## Configuration + +1. Update the `topics_to_redirect.yaml` file located in the `config` directory to list the topics you want to redirect. The file should follow this format: + + ```yaml + car2car_topics: + - subname: "/car_state/odom" + pubname: "/opp/car_state/odom" + type: "nav_msgs/msg/Odometry" + - subname: "/car_state/odom_frenet" + pubname: "/opp/car_state/odom_frenet" + type: "nav_msgs/msg/Odometry" + ``` + +2. In the `launch/car_to_car_redirect.launch` file, update the `professor_car_ip` parameter to match the IP address of Robot A. + +## Running the Node + +1. On **Professor Robot**, make sure the `roscore` is running and the `rosbridge_server` is launched: + + ```bash + roslaunch rosbridge_server rosbridge_websocket.launch + ``` + +2. On **PhD Robot**, launch the `car_to_car_sync` node: + + ```bash + roslaunch car_to_car_sync car_to_car_redirect.launch professor_car_ip:= + ``` + +3. The node will now start redirecting the topics as configured in the `topics_to_redirect.yaml` file. + +## Shutting Down + +To safely shut down the node, you can press `Ctrl+C` in the terminal where the node is running. The node has a shutdown hook to ensure that the ROS bridge connection is properly terminated. + + +## Video Guide + +[Watch the Video](https://drive.google.com/file/d/14uEygiFRnf24SA8sSyoOl4IOcJMX3Sf7/view?usp=sharing) + + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/car_to_car_sync/config/topics_to_redirect.yaml b/f110_utils/nodes/car_to_car_sync/config/topics_to_redirect.yaml new file mode 100644 index 0000000..ea67b2d --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/config/topics_to_redirect.yaml @@ -0,0 +1,7 @@ +car2car_topics: + - subname: "/car_state/odom" + pubname: "/opp/car_state/odom" + type: "nav_msgs/msg/Odometry" + - subname: "/car_state/odom_frenet" + pubname: "/opp/car_state/odom_frenet" + type: "nav_msgs/msg/Odometry" diff --git a/f110_utils/nodes/car_to_car_sync/launch/car_to_car_redirect.launch b/f110_utils/nodes/car_to_car_sync/launch/car_to_car_redirect.launch new file mode 100644 index 0000000..8e66afa --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/launch/car_to_car_redirect.launch @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/f110_utils/nodes/car_to_car_sync/package.xml b/f110_utils/nodes/car_to_car_sync/package.xml new file mode 100644 index 0000000..2c18c5d --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/package.xml @@ -0,0 +1,59 @@ + + + car_to_car_sync + 0.0.0 + The car_to_car_sync package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/f110_utils/nodes/car_to_car_sync/src/car2car_redirect_topic.py b/f110_utils/nodes/car_to_car_sync/src/car2car_redirect_topic.py new file mode 100755 index 0000000..de2fe67 --- /dev/null +++ b/f110_utils/nodes/car_to_car_sync/src/car2car_redirect_topic.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +import threading +import roslibpy +import rospy +from twisted.internet import reactor +from nav_msgs.msg import Odometry +from rospy_message_converter import message_converter + + +def start_roslibpy(): + reactor.run(installSignalHandlers=0) + +def callback(data, args): + topic_name, topic_type = args + publisher = roslibpy.Topic(client, topic_name, topic_type) + + # Convert the ROS message to a dictionary + message_dict = message_converter.convert_ros_message_to_dictionary(data) + + # Publish the message + publisher.publish(roslibpy.Message(message_dict)) + +def redirector(): + rospy.init_node('car2car_sync_topic_redirector', anonymous=True) + professor_ip = rospy.get_param('~professor_car_ip', '192.168.192.1') #NUC1 IP default + topics = rospy.get_param('/car2car_topics') + + global client + client = roslibpy.Ros(host=professor_ip, port=9090) + global roslibpy_thread + roslibpy_thread = threading.Thread(target=start_roslibpy) + roslibpy_thread.start() + + for topic in topics: + if topic['type'] == "nav_msgs/msg/Odometry": + rospy.Subscriber(topic['subname'], Odometry, callback, (topic['pubname'], Odometry)) # Update the topic type here + publisher = roslibpy.Topic(client, topic['pubname'], "nav_msgs/Odometry") + publisher.advertise() + else: + rospy.logwarn("[Car to Car Redirect] Unsupported message type: " + topic['type'] + "Please adjust in car2car_sync_topic_redirector.py") + + rospy.spin() + +def shutdown_hook(): + print("[Car to Car Redirect] Shutting down...") + client.terminate() + reactor.callFromThread(reactor.stop) + roslibpy_thread.join() + print("[Car to Car Redirect] Shutdown complete.") + +if __name__ == '__main__': + try: + rospy.on_shutdown(shutdown_hook) + redirector() + except rospy.ROSInterruptException: + pass diff --git a/f110_utils/nodes/cpu_monitor b/f110_utils/nodes/cpu_monitor new file mode 160000 index 0000000..2d20d26 --- /dev/null +++ b/f110_utils/nodes/cpu_monitor @@ -0,0 +1 @@ +Subproject commit 2d20d2617c61cad60fd2873ea197800ff46eebc8 diff --git a/f110_utils/nodes/frenet_conversion_server/CMakeLists.txt b/f110_utils/nodes/frenet_conversion_server/CMakeLists.txt new file mode 100644 index 0000000..6b14170 --- /dev/null +++ b/f110_utils/nodes/frenet_conversion_server/CMakeLists.txt @@ -0,0 +1,203 @@ +cmake_minimum_required(VERSION 3.0.2) +project(frenet_conversion_server) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED + roscpp + frenet_conversion + f110_msgs +) +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( + INCLUDE_DIRS include + CATKIN_DEPENDS roscpp f110_msgs frenet_conversion +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( + include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/frenet_conversion_server.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +add_executable(${PROJECT_NAME}_node src/frenet_conversion_server_node.cc) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +target_link_libraries(${PROJECT_NAME}_node + ${catkin_LIBRARIES} +) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +install(TARGETS ${PROJECT_NAME}_node + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} + FILES_MATCHING PATTERN "*.h" + PATTERN ".svn" EXCLUDE +) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_frenet_conversion_server.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/frenet_conversion_server/README.md b/f110_utils/nodes/frenet_conversion_server/README.md new file mode 100644 index 0000000..2abd630 --- /dev/null +++ b/f110_utils/nodes/frenet_conversion_server/README.md @@ -0,0 +1,70 @@ +# Frenet Conversion Server + +This is a `rosservice` that can be used to convert coordinates from the frenet frame (in terms of `\global_waypoints`) to global cartesian coordinates and viceversa. + +To launch the service, run: +``` +rosrun frenet_conversion_server frenet_conversion_server_node +``` + +To test the service from the command line, one can do +``` +rosservice call /convert_glob2frenetarr_service "x: 1.1 y: 2.1" +``` +And the return message will be something like the following, depending on the `/global_trajectory`: +``` +s: +d: +idx: +``` + +The other service available is `/convert_frenet2globarr_service`. + +## Service structure + - Glob2FrenetArr + ``` + # request + float64[] x + float64[] y + --- + # response + float64[] s + float64[] d + int32[] idx + ``` + - Frenet2GlobArr + ``` + # request + float64[] s + float64[] d + --- + # response + float64[] x + float64[] y + ``` + +## Example Python usage +An example of using the service can be found in `/perception/obstacle-detection/objectdetect.py`. + +The service is imported in line 14: +```python +from frenet_conversion.srv import Glob2FrenetArr +``` + +Then the service proxy is initialised (lines 80-82): +```python +# --- Frenet Conversion Service --- +rospy.wait_for_service('convert_glob2frenetarr_service') +self.glob2frenet = rospy.ServiceProxy('convert_glob2frenetarr_service', Glob2FrenetArr) +``` + +And the proxy is used for instance in lines 170-173 +```python +# Do frenet conversion from (x,y) [map] -> (s,d) [frenet wrt min curv] via conversion service where x, y, s and d are arrays of arbitrary length +resp = self.glob2frenet([x1, x2], [y1, y2]) +s_points = resp.s +d_points = resp.d +``` + +--- +[Go back to the utils list](../../README.md) diff --git a/f110_utils/nodes/frenet_conversion_server/include/frenet_conversion_server.h b/f110_utils/nodes/frenet_conversion_server/include/frenet_conversion_server.h new file mode 100644 index 0000000..e6f66f5 --- /dev/null +++ b/f110_utils/nodes/frenet_conversion_server/include/frenet_conversion_server.h @@ -0,0 +1,55 @@ +#ifndef FRENET_CONVERSION_SERVER_H_ +#define FRENET_CONVERSION_SERVER_H_ + +#include +#include +#include "frenet_conversion.h" +#include "frenet_conversion/Frenet2Glob.h" +#include "frenet_conversion/Frenet2GlobArr.h" +#include "frenet_conversion/Glob2Frenet.h" +#include "frenet_conversion/Glob2FrenetArr.h" + + +namespace frenet_conversion_server +{ + + class FrenetConversionServer + { + public: + FrenetConversionServer(ros::NodeHandle &nh, bool PerceptionOnly); + ~FrenetConversionServer(); + bool PerceptionOnly_; + + private: + void InitSubscribersPublishers(); + void GlobalTrajectoryCallback(const f110_msgs::WpntArrayConstPtr &wpt_array); + bool Glob2FrenetConversionCallback( + frenet_conversion::Glob2Frenet::Request &req, + frenet_conversion::Glob2Frenet::Response &res); + bool Frenet2GlobConversionCallback( + frenet_conversion::Frenet2Glob::Request &req, + frenet_conversion::Frenet2Glob::Response &res); + bool Glob2FrenetArrConversionCallback( + frenet_conversion::Glob2FrenetArr::Request &req, + frenet_conversion::Glob2FrenetArr::Response &res); + bool Frenet2GlobArrConversionCallback( + frenet_conversion::Frenet2GlobArr::Request &req, + frenet_conversion::Frenet2GlobArr::Response &res); + + ros::NodeHandle nh_; + ros::Subscriber global_trajectory_sub_; + ros::ServiceServer convert_glob2frenet_server_; + ros::ServiceServer convert_glob2frenetarr_server_; + ros::ServiceServer convert_frenet2glob_server_; + ros::ServiceServer convert_frenet2globarr_server_; + + std::vector wpt_array_; + + frenet_conversion::FrenetConverter frenet_converter_; + + bool has_global_trajectory_{false}; + }; + +} // end namespace frenet_conversion_server + +#endif /* FRENET_CONVERSION_SERVER_H_ */ \ No newline at end of file diff --git a/f110_utils/nodes/frenet_conversion_server/package.xml b/f110_utils/nodes/frenet_conversion_server/package.xml new file mode 100644 index 0000000..cf385c8 --- /dev/null +++ b/f110_utils/nodes/frenet_conversion_server/package.xml @@ -0,0 +1,62 @@ + + + frenet_conversion_server + 0.0.0 + The frenet_conversion_server package + + + + + gnone + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + roscpp + f110_msgs + frenet_conversion + + + + + + + diff --git a/f110_utils/nodes/frenet_conversion_server/src/frenet_conversion_server_node.cc b/f110_utils/nodes/frenet_conversion_server/src/frenet_conversion_server_node.cc new file mode 100644 index 0000000..ac078bc --- /dev/null +++ b/f110_utils/nodes/frenet_conversion_server/src/frenet_conversion_server_node.cc @@ -0,0 +1,140 @@ +#include "frenet_conversion_server.h" + +namespace frenet_conversion_server +{ + + FrenetConversionServer::FrenetConversionServer(ros::NodeHandle &nh, bool PerceptionOnly) : nh_(nh), PerceptionOnly_(PerceptionOnly) { + InitSubscribersPublishers(); + ROS_INFO("[Frenet Conversion] Waiting for global waypoints..."); + ros::topic::waitForMessage("/global_waypoints"); + ROS_INFO("[Frenet Conversion] Frenet Conversion Server ready."); + ros::spin(); + } + + FrenetConversionServer::~FrenetConversionServer() {} + + void FrenetConversionServer::InitSubscribersPublishers() + { + global_trajectory_sub_ = nh_.subscribe("/global_waypoints", 10, &FrenetConversionServer::GlobalTrajectoryCallback, this); + ROS_INFO("[Frenet Conversion] PERCEPTION ONLY: %d", PerceptionOnly_); + if(!PerceptionOnly_){ + convert_glob2frenet_server_ = nh_.advertiseService( + "convert_glob2frenet_service", + &FrenetConversionServer::Glob2FrenetConversionCallback, this); + convert_glob2frenetarr_server_ = nh_.advertiseService( + "convert_glob2frenetarr_service", + &FrenetConversionServer::Glob2FrenetArrConversionCallback, this); + convert_frenet2glob_server_ = nh_.advertiseService( + "convert_frenet2glob_service", + &FrenetConversionServer::Frenet2GlobConversionCallback, this); + convert_frenet2globarr_server_ = nh_.advertiseService( + "convert_frenet2globarr_service", + &FrenetConversionServer::Frenet2GlobArrConversionCallback, this); + } + else{ + convert_glob2frenet_server_ = nh_.advertiseService( + "convert_glob2frenet_perception_service", + &FrenetConversionServer::Glob2FrenetConversionCallback, this); + convert_glob2frenetarr_server_ = nh_.advertiseService( + "convert_glob2frenetarr_perception_service", + &FrenetConversionServer::Glob2FrenetArrConversionCallback, this); + convert_frenet2glob_server_ = nh_.advertiseService( + "convert_frenet2glob_perception_service", + &FrenetConversionServer::Frenet2GlobConversionCallback, this); + convert_frenet2globarr_server_ = nh_.advertiseService( + "convert_frenet2globarr_perception_service", + &FrenetConversionServer::Frenet2GlobArrConversionCallback, this); + } + } + + bool FrenetConversionServer::Glob2FrenetConversionCallback( + frenet_conversion::Glob2Frenet::Request &req, + frenet_conversion::Glob2Frenet::Response &res) + { + frenet_converter_.GetFrenetPoint( + req.x, req.y, &res.s, &res.d, &res.idx, true); + return true; + } + + bool FrenetConversionServer::Glob2FrenetArrConversionCallback( + frenet_conversion::Glob2FrenetArr::Request &req, + frenet_conversion::Glob2FrenetArr::Response &res) + { + std::vector s,d; + std::vector idx; + for (int i = 0; i < req.x.size(); i++) + { + double s_i,d_i; + int idx_i; + frenet_converter_.GetFrenetPoint(req.x[i], req.y[i], &s_i, &d_i, &idx_i, true); + s.push_back(s_i); + d.push_back(d_i); + idx.push_back(idx_i); + } + res.s = s; + res.d = d; + res.idx = idx; + return true; + } + + + bool FrenetConversionServer::Frenet2GlobConversionCallback( + frenet_conversion::Frenet2Glob::Request &req, + frenet_conversion::Frenet2Glob::Response &res) + { + frenet_converter_.GetGlobalPoint( + req.s, req.d, &res.x, &res.y); + return true; + } + + bool FrenetConversionServer::Frenet2GlobArrConversionCallback( + frenet_conversion::Frenet2GlobArr::Request &req, + frenet_conversion::Frenet2GlobArr::Response &res) + { + std::vector x,y; + for (int i = 0; i < req.s.size(); i++) + { + double x_i,y_i; + frenet_converter_.GetGlobalPoint(req.s[i], req.d[i], &x_i, &y_i); + x.push_back(x_i); + y.push_back(y_i); + } + res.x = x; + res.y = y; + return true; + } + + void FrenetConversionServer::GlobalTrajectoryCallback( + const f110_msgs::WpntArrayConstPtr &wpt_array) + { + wpt_array_ = wpt_array->wpnts; + bool enable_wrapping = true; + frenet_converter_.SetGlobalTrajectory(&wpt_array_, enable_wrapping); + if (!has_global_trajectory_) + { + ROS_INFO("Global waypoints received."); + } + has_global_trajectory_ = true; + } +} // end namespace frenet_conversion_server + +// launch node +int main(int argc, char **argv) +{ + ros::init(argc, argv, "frenet_conversion_server"); + ros::NodeHandle nh; + ros::NodeHandle private_nh("~"); + + bool PerceptionOnly; + if (!private_nh.getParam("PerceptionOnly", PerceptionOnly)) + { + PerceptionOnly = false; + } + else + { + private_nh.getParam("PerceptionOnly", PerceptionOnly); + } + + frenet_conversion_server::FrenetConversionServer node(nh, PerceptionOnly); + return 0; +} diff --git a/f110_utils/nodes/frenet_odom_republisher/CMakeLists.txt b/f110_utils/nodes/frenet_odom_republisher/CMakeLists.txt new file mode 100644 index 0000000..db2efa5 --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/CMakeLists.txt @@ -0,0 +1,39 @@ +cmake_minimum_required(VERSION 3.10) +project(frenet_odom_republisher) + +find_package(catkin REQUIRED COMPONENTS + roscpp + frenet_conversion + nav_msgs + f110_msgs + tf +) + +catkin_package( + INCLUDE_DIRS include + CATKIN_DEPENDS roscpp nav_msgs f110_msgs frenet_conversion tf + LIBRARIES ${PROJECT_NAME} +) + +include_directories(include + ${catkin_INCLUDE_DIRS} + ${CUSTOM_EIGEN_INCLUDE_DIR} + ${Threads_INCLUDE_DIRS}) + +add_executable(frenet_odom_republisher_node + src/frenet_odom_republisher_node.cc + ) + +target_link_libraries(frenet_odom_republisher_node + ${catkin_LIBRARIES} + ) + +install(DIRECTORY include + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +) +install(DIRECTORY launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) +install(DIRECTORY cfg + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) \ No newline at end of file diff --git a/f110_utils/nodes/frenet_odom_republisher/README.md b/f110_utils/nodes/frenet_odom_republisher/README.md new file mode 100644 index 0000000..bf1125f --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/README.md @@ -0,0 +1,13 @@ +# Frenet Odom Republisher + +This nodes publishes the position and velocity of the racecar in frenet coordinates at the topic `/car_state/odom_frenet`. +The topic is of type `nav_msgs/Odometry`, and the specific Frenet information is encoded in this way: + - s, or advancemente on the reference line is in `pose.pose.position.x` + - d, or lateral deviation from the reference line is in `pose.pose.position.y` + - longitudinal velocity is in `twist.twist.linear.x` + - lateral velocity is in `twist.twist.linear.y` + +NOTE: yaw is currently NOT relative to the trajectory + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/frenet_odom_republisher/include/frenet_odom_republisher_node.h b/f110_utils/nodes/frenet_odom_republisher/include/frenet_odom_republisher_node.h new file mode 100644 index 0000000..70e8861 --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/include/frenet_odom_republisher_node.h @@ -0,0 +1,39 @@ +#ifndef FRENET_ODOM_REPUBLISHER_H_ +#define FRENET_ODOM_REPUBLISHER_H_ + +#include +#include + +#include +#include +#include + +#include "frenet_conversion.h" + +namespace frenet_odom_republisher{ + +class FrenetRepublisher { + public: + FrenetRepublisher(ros::NodeHandle& nh); + ~FrenetRepublisher(); + private: + void InitSubscribersPublishers(); + void GlobalTrajectoryCallback(const f110_msgs::WpntArrayConstPtr &wpt_array); + void OdomCallback(const nav_msgs::OdometryConstPtr &msg); + + ros::NodeHandle nh_; + ros::Subscriber global_trajectory_sub_; + ros::Subscriber odom_sub_; + ros::Publisher frenet_odom_pub_; + + std::vector wpt_array_; + int closest_wpt_index_{0}; + + frenet_conversion::FrenetConverter frenet_converter_; + + bool has_global_trajectory_{false}; +}; + +}// end namespace frenet_odom_republisher + +#endif /* FRENET_ODOM_REPUBLISHER_H_ */ \ No newline at end of file diff --git a/f110_utils/nodes/frenet_odom_republisher/launch/frenet_odom_republisher.launch b/f110_utils/nodes/frenet_odom_republisher/launch/frenet_odom_republisher.launch new file mode 100644 index 0000000..5405968 --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/launch/frenet_odom_republisher.launch @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/frenet_odom_republisher/package.xml b/f110_utils/nodes/frenet_odom_republisher/package.xml new file mode 100644 index 0000000..62035d0 --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/package.xml @@ -0,0 +1,22 @@ + + + frenet_odom_republisher + 0.0.0 + + + Republishing odemtry in frenet frame + + + Jonathan Becker + Apache License 2.0 + + catkin + + roscpp + nav_msgs + f110_msgs + frenet_conversion + tf + + + diff --git a/f110_utils/nodes/frenet_odom_republisher/src/frenet_odom_republisher_node.cc b/f110_utils/nodes/frenet_odom_republisher/src/frenet_odom_republisher_node.cc new file mode 100644 index 0000000..806e6f5 --- /dev/null +++ b/f110_utils/nodes/frenet_odom_republisher/src/frenet_odom_republisher_node.cc @@ -0,0 +1,72 @@ +#include +#include +#include + +namespace frenet_odom_republisher{ + +FrenetRepublisher::FrenetRepublisher(ros::NodeHandle& nh): + nh_(nh){ + InitSubscribersPublishers(); + ros::spin(); +} + +FrenetRepublisher::~FrenetRepublisher() {} + +void FrenetRepublisher::InitSubscribersPublishers() { + global_trajectory_sub_ = nh_.subscribe + ("/global_waypoints", 10, &FrenetRepublisher::GlobalTrajectoryCallback, this); + + odom_sub_ = nh_.subscribe + ("/odom", 10, &FrenetRepublisher::OdomCallback, this); + + frenet_odom_pub_ = nh_.advertise + ("/odom_frenet", 1); +} + +void FrenetRepublisher::GlobalTrajectoryCallback( + const f110_msgs::WpntArrayConstPtr &wpt_array){ + wpt_array_ = wpt_array->wpnts; + bool enable_wrapping = true; + frenet_converter_.SetGlobalTrajectory(&wpt_array_, enable_wrapping); + has_global_trajectory_ = true; +} + +void FrenetRepublisher::OdomCallback(const nav_msgs::OdometryConstPtr &msg){ + if (!has_global_trajectory_) { + return; + } else { + nav_msgs::Odometry frenet_odom = *msg; + tf::Quaternion q( + msg->pose.pose.orientation.x, + msg->pose.pose.orientation.y, + msg->pose.pose.orientation.z, + msg->pose.pose.orientation.w); + tf::Matrix3x3 m(q); + double roll, pitch, yaw; + m.getRPY(roll, pitch, yaw); + frenet_converter_.GetFrenetOdometry(msg->pose.pose.position.x, + msg->pose.pose.position.y, + yaw, msg->twist.twist.linear.x, + msg->twist.twist.linear.y, + &frenet_odom.pose.pose.position.x, + &frenet_odom.pose.pose.position.y, + &frenet_odom.twist.twist.linear.x, + &frenet_odom.twist.twist.linear.y, + &closest_wpt_index_); + // abuse child frame id to pass closest wapoint index + frenet_odom.child_frame_id = std::to_string(closest_wpt_index_); + frenet_odom_pub_.publish(frenet_odom); + } +} + +}// end namespace frenet_odom_republisher + +// launch node +int main(int argc, char** argv) +{ + ros::init(argc, argv, "frenet_odom_republisher"); + ros::NodeHandle nh; + + frenet_odom_republisher::FrenetRepublisher node(nh); + return 0; +} \ No newline at end of file diff --git a/f110_utils/nodes/gb_traj_publisher/CMakeLists.txt b/f110_utils/nodes/gb_traj_publisher/CMakeLists.txt new file mode 100644 index 0000000..32f3a3a --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/CMakeLists.txt @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 3.0.2) +project(gb_traj_publisher) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + rospy + std_msgs + f110_msgs +) + +# call setup.py +catkin_python_setup() + +# add_executable(gb_traj_publisher src/gb_traj_publisher.py) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +# catkin_package( +# INCLUDE_DIRS include +# LIBRARIES f110_planner +# CATKIN_DEPENDS rospy geometry_msgs f110_msgs std_msgs +# DEPENDS system_lib +# ) diff --git a/f110_utils/nodes/gb_traj_publisher/README.md b/f110_utils/nodes/gb_traj_publisher/README.md new file mode 100644 index 0000000..13f99b7 --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/README.md @@ -0,0 +1,20 @@ +# Global Trajectory Republisher +This package contains the global trajectory republisher which currently plays the central role of providing the trajectory to the racing system. + +Currently the trajectory is the re-published in the following way: + 1. During mapping, a rosbag is recorded, so that when the trajectory is computed it will be recorded with the bag + 2. When the `base_system` is launched, the rosbag is played and the `global_trajectory_publisher` is launched. This node reads the trajectory and then periodically republishes the trajectory even after the bag stops playing. + +How to use the ellipse map for experiments: + 1. SSH into the car and launch teleop with `roslaunch racecar pbl_teleop.launch racecar_version:=NUC2`. + 2. Launch `roslaunch gb_traj_publisher gb_traj.launch exp:=ellipse` to get the ellipse trajectory. Also open rviz via the pitstarter script. + 3. Add the topic `/gb_traj_markers` to see the ellipse. + 4. Place some objects arround the ellipse such that SLAM locilisation works. + 5. Create a folder at `~/catkin_ws/src/race_stack/stack_master/maps`. + 6. Drive one lap to map. + 7. Call `./finish_map.sh ~/catkin_ws/src/race_stack/stack_master/maps/test/test.pbstream` with the right path to the above created folder. + 8. Now the pbstream is saved. We now run `roslaunch racecar pbl_teleop.launch racecar_version:=NUC2 loc_only:=True map_name:=test`. You might have to copy existing ot_sector and speed_scaling yaml files to make it work. + 9. Relaunch the `roslaunch gb_traj_publisher gb_traj.launch exp:=ellipse` to publish the trajectory. Take this trajectory for the controller. + + --- +[Go back to the utils list](../../README.md) diff --git a/f110_utils/nodes/gb_traj_publisher/launch/gb_traj.launch b/f110_utils/nodes/gb_traj_publisher/launch/gb_traj.launch new file mode 100644 index 0000000..6bba081 --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/launch/gb_traj.launch @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/gb_traj_publisher/package.xml b/f110_utils/nodes/gb_traj_publisher/package.xml new file mode 100644 index 0000000..690c703 --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/package.xml @@ -0,0 +1,63 @@ + + + gb_traj_publisher + 0.0.0 + The gb_traj_publisher package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + rospy + f110_msgs + std_msgs + + + + + + + + diff --git a/f110_utils/nodes/gb_traj_publisher/setup.py b/f110_utils/nodes/gb_traj_publisher/setup.py new file mode 100644 index 0000000..08b4ad7 --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['gb_traj_publisher'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/f110_utils/nodes/gb_traj_publisher/src/gb_traj_publisher.py b/f110_utils/nodes/gb_traj_publisher/src/gb_traj_publisher.py new file mode 100755 index 0000000..ac10e71 --- /dev/null +++ b/f110_utils/nodes/gb_traj_publisher/src/gb_traj_publisher.py @@ -0,0 +1,295 @@ +#!/usr/bin/env python3 +import tf +import rospy +import math, sys +from f110_msgs.msg import Wpnt, WpntArray +from visualization_msgs.msg import Marker, MarkerArray +import numpy as np +from copy import deepcopy + + +class GBPubNode(): + #circle center (x_o, y_o) and radius r in meters and number of discretised circle + def __init__(self): + rospy.init_node('gbpub_node', anonymous=True) + self.pub_gb = rospy.Publisher('global_waypoints_scaled', WpntArray, queue_size=10) + self.pub_markers = rospy.Publisher('gb_traj_markers', MarkerArray, queue_size=10) + + #Get params + exp = rospy.get_param("/gb_traj_pub/experiment") + self.speed = rospy.get_param("/gb_traj_pub/speed") + if exp == 'circle' or exp == 'circle_reverse': + print('Circle center (x_o, y_o) and radius r in meters and number of discretised circle') + x_o = rospy.get_param("/gb_traj_pub/x_o") + y_o = rospy.get_param("/gb_traj_pub/y_o") + r = rospy.get_param("/gb_traj_pub/r") + nb = rospy.get_param("/gb_traj_pub/nb") + if exp == 'circle': + self.circle_loop(center=(x_o, y_o), r=r, nb_points=int(nb)) + elif exp == 'circle_reverse': + self.circle_loop_reverse(center=(x_o, y_o), r=r, nb_points=int(nb)) + + + elif exp == 'ellipse': + print('Ellipse center (x_o, y_o) and x/y radius a/b in meters and number of discretised circle') + x_o = rospy.get_param("/gb_traj_pub/x_o") + y_o = rospy.get_param("/gb_traj_pub/y_o") + a = rospy.get_param("/gb_traj_pub/a") + b = rospy.get_param("/gb_traj_pub/b") + nb = rospy.get_param("/gb_traj_pub/nb") + + self.ellipse_loop(center=(x_o, y_o), a=a, b=b, nb_points=int(nb)) + + elif exp == 'line': + print('Line center (x_o, y_o) and length a in meters and number of discretised line') + x_o = rospy.get_param("/gb_traj_pub/x_o") + y_o = rospy.get_param("/gb_traj_pub/y_o") + a = rospy.get_param("/gb_traj_pub/a") + nb = rospy.get_param("/gb_traj_pub/nb") + + self.line_loop(center=(x_o, y_o), l=a, nb_points=int(nb)) + + def line_loop(self, center=(0,0), l=100, nb_points=10): + rate = rospy.Rate(5) + pos = [i*l/nb_points for i in range(nb_points+1)] + gb_wpnts = WpntArray() + gb_markers = MarkerArray() + + for i, pos in enumerate(pos): + # Pass Wpnts + wpnt = Wpnt() + wpnt.id = i + wpnt.x_m = pos #+ 0.3*(-1)**i + wpnt.y_m = pos #0.2*(-1)**i + wpnt.s_m = np.sqrt(2)*pos + wpnt.psi_rad = math.pi/4 + wpnt.vx_mps = self.speed + wpnt.d_left = 0.5 + wpnt.d_right = 1 + gb_wpnts.wpnts.append(wpnt) + + #Pass Markers + marker = Marker() + marker.header.frame_id = 'map' + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 1.0 + marker.color.r = 1.0 + marker.pose.orientation.w = 1 + + marker.id = i*3 + marker.color.r = 1.0 + marker.pose.position.x = wpnt.x_m + wpnt.d_right * math.cos(angle) + marker.pose.position.y = wpnt.y_m + wpnt.d_right * math.sin(angle) + right_bound = deepcopy(marker) + gb_markers.markers.append(right_bound) + + marker.id = i*3 + 1 + marker.color.g = 1.0 + marker.pose.position.x = wpnt.x_m - wpnt.d_left * math.cos(angle) + marker.pose.position.y = wpnt.y_m - wpnt.d_left * math.sin(angle) + left_bound = deepcopy(marker) + gb_markers.markers.append(left_bound) + + marker.id = i*3 + 2 + marker.color.b = 1.0 + marker.pose.position.x = wpnt.x_m + marker.pose.position.y = wpnt.y_m + middle = deepcopy(marker) + gb_markers.markers.append(middle) + + # Publish stuff + while not rospy.is_shutdown(): + gb_wpnts.header.stamp = rospy.Time.now() + self.pub_gb.publish(gb_wpnts) + self.pub_markers.publish(gb_markers) + rate.sleep() + + def circle_loop(self, center=(0,0), r=3, nb_points=10): + rate = rospy.Rate(5) # rate in hertz + + angles = [i*2*math.pi/nb_points for i in range(nb_points+1)] + gb_wpnts = WpntArray() + gb_markers = MarkerArray() + + + for i, angle in enumerate(angles): + # Pass Wpnts + wpnt = Wpnt() + wpnt.id = i + wpnt.x_m = r * math.cos(angle) + center[0] + wpnt.y_m = r * math.sin(angle) + center[1] + wpnt.s_m = r * angle + wpnt.psi_rad = (angle + math.pi/2) % (2*math.pi) + wpnt.vx_mps = self.speed + wpnt.d_left = abs(2 * math.cos(angle)) - 1 + wpnt.d_right = 3 + gb_wpnts.wpnts.append(wpnt) + + #Pass Markers + marker = Marker() + marker.header.frame_id = 'map' + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 1.0 + marker.pose.orientation.w = 1 + + marker.id = i*3 + marker.color.r = 1.0 + marker.pose.position.x = wpnt.x_m + wpnt.d_right * math.cos(angle) + marker.pose.position.y = wpnt.y_m + wpnt.d_right * math.sin(angle) + right_bound = deepcopy(marker) + gb_markers.markers.append(right_bound) + + marker.id = i*3 + 1 + marker.color.g = 1.0 + marker.pose.position.x = wpnt.x_m - wpnt.d_left * math.cos(angle) + marker.pose.position.y = wpnt.y_m - wpnt.d_left * math.sin(angle) + left_bound = deepcopy(marker) + gb_markers.markers.append(left_bound) + + marker.id = i*3 + 2 + marker.color.b = 1.0 + marker.pose.position.x = wpnt.x_m + marker.pose.position.y = wpnt.y_m + middle = deepcopy(marker) + gb_markers.markers.append(middle) + + # Publish stuff + while not rospy.is_shutdown(): + gb_wpnts.header.stamp = rospy.Time.now() + self.pub_gb.publish(gb_wpnts) + self.pub_markers.publish(gb_markers) + rate.sleep() + + def circle_loop_reverse(self, center=(0,0), r=3, nb_points=10): + rate = rospy.Rate(5) # rate in hertz + + angles = [i*2*math.pi/nb_points for i in range(nb_points+1)] + gb_wpnts = WpntArray() + gb_markers = MarkerArray() + + + for i, angle in enumerate(angles): + # Pass Wpnts + wpnt = Wpnt() + wpnt.id = i + wpnt.x_m = r * math.cos(-angle) + center[0] + wpnt.y_m = r * math.sin(-angle) + center[1] + wpnt.s_m = r * angle + wpnt.psi_rad = (-angle + 3*math.pi/2) % (2*math.pi) + wpnt.vx_mps = self.speed + wpnt.d_left = 3 + wpnt.d_right = abs(2 * math.cos(angle)) - 1 + gb_wpnts.wpnts.append(wpnt) + + #Pass Markers + marker = Marker() + marker.header.frame_id = 'map' + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 1.0 + marker.pose.orientation.w = 1 + + marker.id = i*3 + marker.color.r = 1.0 + marker.pose.position.x = wpnt.x_m - wpnt.d_right * math.cos(-angle) + marker.pose.position.y = wpnt.y_m - wpnt.d_right * math.sin(-angle) + right_bound = deepcopy(marker) + gb_markers.markers.append(right_bound) + + marker.id = i*3 + 1 + marker.color.g = 1.0 + marker.pose.position.x = wpnt.x_m + wpnt.d_left * math.cos(-angle) + marker.pose.position.y = wpnt.y_m + wpnt.d_left * math.sin(-angle) + left_bound = deepcopy(marker) + gb_markers.markers.append(left_bound) + + marker.id = i*3 + 2 + marker.color.b = 1.0 + marker.pose.position.x = wpnt.x_m + marker.pose.position.y = wpnt.y_m + middle = deepcopy(marker) + gb_markers.markers.append(middle) + + # Publish stuff + while not rospy.is_shutdown(): + gb_wpnts.header.stamp = rospy.Time.now() + self.pub_gb.publish(gb_wpnts) + self.pub_markers.publish(gb_markers) + rate.sleep() + + def ellipse_loop(self, center=(0,0), a=3, b=5, nb_points=10): + rate = rospy.Rate(5) # rate in hertz + + angles = [i*2*math.pi/nb_points for i in range(nb_points+1)] + gb_wpnts = WpntArray() + gb_markers = MarkerArray() + s = 0 + prev_angle = 0 + + + for i, angle in enumerate(angles): + # Pass Wpnts + wpnt = Wpnt() + wpnt.id = i + wpnt.x_m = a * math.cos(angle) + center[0] + wpnt.y_m = b * math.sin(angle) + center[1] + # TODO: s_m is approximated + s += a*(angle-prev_angle)*np.sqrt(1 - (a**2 - b**2)/(a**2) * math.sin(angle)**2) + wpnt.s_m = s + prev_angle = angle + wpnt.psi_rad = (angle + math.pi/2) % (2*math.pi) + wpnt.vx_mps = self.speed + wpnt.d_left = 2 + wpnt.d_right = 2 + gb_wpnts.wpnts.append(wpnt) + + #Pass Markers + marker = Marker() + marker.header.frame_id = 'map' + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 1.0 + marker.color.r = 1.0 + marker.pose.orientation.w = 1 + + marker.id = i*3 + marker.color.r = 1.0 + marker.pose.position.x = wpnt.x_m + wpnt.d_right * math.cos(angle) + marker.pose.position.y = wpnt.y_m + wpnt.d_right * math.sin(angle) + right_bound = deepcopy(marker) + gb_markers.markers.append(right_bound) + + marker.id = i*3 + 1 + marker.color.g = 1.0 + marker.pose.position.x = wpnt.x_m - wpnt.d_left * math.cos(angle) + marker.pose.position.y = wpnt.y_m - wpnt.d_left * math.sin(angle) + left_bound = deepcopy(marker) + gb_markers.markers.append(left_bound) + + marker.id = i*3 + 2 + marker.color.b = 1.0 + marker.pose.position.x = wpnt.x_m + marker.pose.position.y = wpnt.y_m + middle = deepcopy(marker) + gb_markers.markers.append(middle) + + + # Publish stuff + while not rospy.is_shutdown(): + gb_wpnts.header.stamp = rospy.Time.now() + self.pub_gb.publish(gb_wpnts) + self.pub_markers.publish(gb_markers) + rate.sleep() + +if __name__ == "__main__": + gbnode = GBPubNode() diff --git a/f110_utils/nodes/lap_analyser/.gitignore b/f110_utils/nodes/lap_analyser/.gitignore new file mode 100644 index 0000000..07f43b8 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/.gitignore @@ -0,0 +1 @@ +data/* \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/CMakeLists.txt b/f110_utils/nodes/lap_analyser/CMakeLists.txt new file mode 100644 index 0000000..510c486 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/CMakeLists.txt @@ -0,0 +1,37 @@ +cmake_minimum_required(VERSION 3.0.2) +project(lap_analyser) + +## Compile as C++11, supported in ROS Kinetic and newer +add_compile_options(-std=c++11 -g) + +## Find catkin macros and libraries +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + roscpp + rospy + std_msgs + f110_msgs + tf + tf_conversions + visualization_msgs +) + +# Find Eigen3 +find_package(Eigen3 REQUIRED) + + +catkin_package( + INCLUDE_DIRS include + CATKIN_DEPENDS geometry_msgs roscpp rospy std_msgs f110_msgs tf visualization_msgs + DEPENDS EIGEN3 +) + +include_directories( + include + ${catkin_INCLUDE_DIRS} + ${EIGEN3_INCLUDE_DIR} +) + +add_executable(scan_align_analyzer_cppnode src/lap_analyser/ScanAlignAnalyzer.cpp) +target_link_libraries(scan_align_analyzer_cppnode ${catkin_LIBRARIES}) + diff --git a/f110_utils/nodes/lap_analyser/README.md b/f110_utils/nodes/lap_analyser/README.md new file mode 100644 index 0000000..d076c88 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/README.md @@ -0,0 +1,83 @@ +# Lap Analyser +This package contains a couple of feature to analyze laps. + +There are currently two main analyzers: + - LapAnalyser + - VelAnalyser + +They are put together in the data_analyser, which can be launched with its launch file: +``` +roslaunch lap_analyser data_analyser.launch +``` + +## Analyzer info +### Lap Analyzer +It provides information about completed laps. +Specifically it provides the information in the custom message `f110_msgs/LapData`on the topic `lap_data`. +The (self-explanatory) structure of the message is as follows: +``` +std_msgs/Header header + +int32 lap_count +float64 lap_time +float64 average_lateral_error_to_global_waypoints +float64 max_lateral_error_to_global_waypoints +``` + +It can be launched with the `lap_analyser.launch`. + +The car distance to the track boundary is calculated inside `lap_analyser.py` . Each lap the minimum recorded distance is published as well in a topic called `/min_car_distance_to_boundary`. +*Comment*: In the future it would make sense to integrate this into the `/lap_data` topic. The minimum car distance to the track boundary can be used as a measure of how likely is the car to crash/touch the boundary. This is currently used to optimize sector scalers and l1 parameter. + +### VelAnalyser +It provides information about the current velocity of the car and the target velocity of the trajectory. The message type is `geometry_msgs/Point` and the topic is `velocity/current`. +The target veolcity is published at the `velocity/trajectory` topic. + +This node also provides information about the current steering input and the target one, respectively at `steering_input` and `steering/trajectory`. The message type is the same the velocity one. + +### Longitudinal Analyser +It provides information about the Acceleration based Velocity Controller and the Trailing controller. +Every lap the average as well as the maximal Velocity error or Trailing error respectively. +It is launched with `longitudinal_analyser.launch` +## Plotting features + +There are some basic plotting feature to obtain live plots of important measures for tuning. + +### Prerequisites +Install plotjuggler and all the ros plugins with the single command: +``` +sudo apt install ros-noetic-plotjuggler-ros +``` + +Run the base system and a controller as usual. + + +### Usage + 1. Launch the data analyser with `roslaunch lap_analyser data_analyser.launch` + + 2. Launch the data plotter with `roslaunch lap_analyser data_plotter.launch` + + 3. Press yes when the following popup appears (it appears twice): + ![image.png](./data/image.png) + + 4. When the "Select ROS messages" popup appears, check that the following topics are selected: + - `/car_state/odom_frenet` + - `/data_analyser/*` (should be five in total) + - `/vesc/sensors/imu/raw` + + Then press ok + 5. Press OK on the warning popup that might appear. Two `plotjuggler` screens will appear. Most likely not all the curves will be correctly visualised. + 6. Reload the config files by pressing the "load data and windows/plot layout" button as in the picture + ![image-1.png](./data/image-1.png) + + and by choosing the files `config/lapplot_pj.xml`, `config/tracking_plot_pj.xml` or `config/long_ana_pj.xml`, depending on the features you want do analyse + + 1. now all the plots should be working. For a better visualization experience set the buffer of the tracking plot to the first integer value larger than the lap time and set the lap plot buffer to roughly ten times that value. Buffer is set up in the upper left of plot juggler: + ![image-2.png](./data/image-2.png) + + +*Note* : This setup was only tested in simulation. + + +--- +[Go back to the utils list](../../README.md) diff --git a/f110_utils/nodes/lap_analyser/config/lapplot_pj.xml b/f110_utils/nodes/lap_analyser/config/lapplot_pj.xml new file mode 100644 index 0000000..a8ba27e --- /dev/null +++ b/f110_utils/nodes/lap_analyser/config/lapplot_pj.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/lap_analyser/config/long_ana_pj.xml b/f110_utils/nodes/lap_analyser/config/long_ana_pj.xml new file mode 100644 index 0000000..a371ff9 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/config/long_ana_pj.xml @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/lap_analyser/config/rqt_multiplot.xml b/f110_utils/nodes/lap_analyser/config/rqt_multiplot.xml new file mode 100644 index 0000000..8bc861d --- /dev/null +++ b/f110_utils/nodes/lap_analyser/config/rqt_multiplot.xml @@ -0,0 +1,164 @@ + + + + #ffffff + #000000 + false + false + + + + + + + Untitled Axis + 0 + true + + + Untitled Axis + 0 + true + + + + + + + + lap_count + 0 + + 1000 + 0 + 0 + -1000 + 0 + + /data_analyser/lap_data + f110_msgs/LapData + + + lap_count + 0 + + 15 + 0 + 0 + -1000 + 1 + + /data_analyser/lap_data + f110_msgs/LapData + + + + #3465a4 + 1 + + + 10 + 10 + 3 + + + 100 + Laptimes + + + + true + + 30 + Ultra Plots + + + + + + + + Untitled Axis + 0 + true + + + Untitled Axis + 0 + true + + + + + + + + x + 0 + + 1000 + 0 + 0 + -1000 + 0 + + /data_analyser/velocity/trajectory + geometry_msgs/Point + + + y + 0 + + 1000 + 0 + 0 + -1000 + 0 + + /data_analyser/velocity/trajectory + geometry_msgs/Point + + + + #000000 + 0 + + + 240 + 10 + 2 + + + 240 + Untitled Curve + + + + true + + 30 + Velocity plot + + + + false +
+
diff --git a/f110_utils/nodes/lap_analyser/config/tracking_plot_pj.xml b/f110_utils/nodes/lap_analyser/config/tracking_plot_pj.xml new file mode 100644 index 0000000..d86a587 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/config/tracking_plot_pj.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/lap_analyser/include/ScanAlignAnalyzer.hpp b/f110_utils/nodes/lap_analyser/include/ScanAlignAnalyzer.hpp new file mode 100644 index 0000000..92fcb00 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/include/ScanAlignAnalyzer.hpp @@ -0,0 +1,69 @@ +#ifndef LASER_MAP_OVERLAP_CHECKER_H +#define LASER_MAP_OVERLAP_CHECKER_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +class LaserMapOverlapChecker { +public: + LaserMapOverlapChecker(); + ~LaserMapOverlapChecker() = default; + + void mapCallback(const nav_msgs::OccupancyGrid& data); + void laserCallback(const sensor_msgs::LaserScan& data); + void trackboundsCallback(const visualization_msgs::MarkerArray& data); + void glbWpntsCallback(const f110_msgs::WpntArray& data); + + void loop(); + +private: + Eigen::MatrixXd laser2mapConversion(const sensor_msgs::LaserScan& laser); + double computeScanAlignment(const Eigen::MatrixXd& scan_in_map, const visualization_msgs::MarkerArray& trackbounds); + + // ROS NodeHandle + ros::NodeHandle nh_; + + // ROS Subscribers + ros::Subscriber map_sub_; + ros::Subscriber laser_sub_; + ros::Subscriber trackbounds_sub_; + ros::Subscriber gb_sub_; + + // ROS Publishers + ros::Publisher debug_lidar_pub_; + ros::Publisher alignment_score_pub_; + ros::Publisher alignment_textmrk_pub_; + + // ROS tf listener + tf::TransformListener tf_listener_; + + // Parameters + bool debug_flag_; + int downsample_factor_; + double threshold_; + int frequency_; + + // Data + nav_msgs::OccupancyGrid map_; + sensor_msgs::LaserScan scan_; + visualization_msgs::MarkerArray trackbounds_; + f110_msgs::WpntArray glb_wpnts_; + + // Misc + ros::Rate rate_; + bool first_visualization_; + double x_viz_; + double y_viz_; + bool scan_initialized_; + bool trackbounds_initialized_; +}; + +#endif // LASER_MAP_OVERLAP_CHECKER_H diff --git a/f110_utils/nodes/lap_analyser/launch/data_analyser.launch b/f110_utils/nodes/lap_analyser/launch/data_analyser.launch new file mode 100644 index 0000000..9dc027b --- /dev/null +++ b/f110_utils/nodes/lap_analyser/launch/data_analyser.launch @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/launch/data_plotter.launch b/f110_utils/nodes/lap_analyser/launch/data_plotter.launch new file mode 100644 index 0000000..07c4dc6 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/launch/data_plotter.launch @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/launch/lap_analyser.launch b/f110_utils/nodes/lap_analyser/launch/lap_analyser.launch new file mode 100644 index 0000000..869dee5 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/launch/lap_analyser.launch @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/launch/longitudinal_analyser.launch b/f110_utils/nodes/lap_analyser/launch/longitudinal_analyser.launch new file mode 100644 index 0000000..e218282 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/launch/longitudinal_analyser.launch @@ -0,0 +1,6 @@ + + + + + + diff --git a/f110_utils/nodes/lap_analyser/package.xml b/f110_utils/nodes/lap_analyser/package.xml new file mode 100644 index 0000000..4b7e5fc --- /dev/null +++ b/f110_utils/nodes/lap_analyser/package.xml @@ -0,0 +1,32 @@ + + + lap_analyser + 0.0.0 + The lap_analyser package + + Edoardo Ghignone + + TODO + + catkin + pcl_ros + pcl_ros + libpcl-all-dev + libpcl-all + + + geometry_msgs + rospy + roscpp + f110_msgs + std_msgs + tf + tf_conversions + visualization_msgs + + + + + + + diff --git a/f110_utils/nodes/lap_analyser/setup.py b/f110_utils/nodes/lap_analyser/setup.py new file mode 100644 index 0000000..57e1418 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['lap_analyser'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/ScanAlignAnalyzer.cpp b/f110_utils/nodes/lap_analyser/src/lap_analyser/ScanAlignAnalyzer.cpp new file mode 100644 index 0000000..6aed6b9 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/ScanAlignAnalyzer.cpp @@ -0,0 +1,289 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +class LaserMapOverlapChecker { +private: + ros::NodeHandle nh_; + ros::Subscriber map_sub_, laser_sub_, trackbounds_sub_, gb_sub_; + ros::Publisher debug_lidar_pub_, alignment_score_pub_, alignment_textmrk_pub_; + tf::TransformListener tf_listener_; + nav_msgs::OccupancyGrid map_; + visualization_msgs::MarkerArray trackbounds_; + geometry_msgs::Point start_pos_; + sensor_msgs::LaserScan scan_; + bool debug_flag_; + int downsample_factor_; + double threshold_; + int frequency_; + bool scan_initialized_; + bool trackbounds_initialized_; + bool start_pos_initialized_; + +public: + LaserMapOverlapChecker() : nh_("~") { + // Initialize parameters + nh_.param("debug", debug_flag_, true); + nh_.param("downsample_factor", downsample_factor_, 20); + nh_.param("threshold", threshold_, 0.1); + nh_.param("frequency", frequency_, 5); + + // Subscribers + map_sub_ = nh_.subscribe("/map", 10, &LaserMapOverlapChecker::mapCallback, this); + laser_sub_ = nh_.subscribe("/scan", 10, &LaserMapOverlapChecker::laserCallback, this); + trackbounds_sub_ = nh_.subscribe("/trackbounds/markers", 10, &LaserMapOverlapChecker::trackboundsCallback, this); + gb_sub_ = nh_.subscribe("/global_waypoints", 10, &LaserMapOverlapChecker::glbWpntsCallback, this); + + // Publishers + debug_lidar_pub_ = nh_.advertise("/scanalign/debug_lidar", 1); + alignment_score_pub_ = nh_.advertise("/scanalign/alignment_score", 1); + alignment_textmrk_pub_ = nh_.advertise("/scanalign/alignment_textmrk", 1); + + //misc + scan_initialized_ = false; + trackbounds_initialized_ = false; + start_pos_initialized_ = false; + + // Main loop + loop(); + } + + void mapCallback(const nav_msgs::OccupancyGrid::ConstPtr& msg) { + map_ = *msg; + } + + void laserCallback(const sensor_msgs::LaserScan::ConstPtr& msg) { + scan_ = *msg; + scan_initialized_ = true; + } + + void trackboundsCallback(const visualization_msgs::MarkerArray::ConstPtr& msg) { + trackbounds_ = *msg; + trackbounds_initialized_ = true; + } + + void glbWpntsCallback(const f110_msgs::WpntArray::ConstPtr& msg) { + std::vector glb_wpnts = msg->wpnts; + if (!start_pos_initialized_) { + geometry_msgs::Point p0; + p0.x = glb_wpnts[0].x_m; + p0.y = glb_wpnts[0].y_m; + + geometry_msgs::Point p1; + p1.x = glb_wpnts[1].x_m; + p1.y = glb_wpnts[1].y_m; + + // Compute a vector from p0 to p1 + double dx = p1.x - p0.x; + double dy = p1.y - p0.y; + + // Compute a normal vector, rotated 90 degrees counter-clockwise + double nx = -dy; + double ny = dx; + + // Normalize the normal vector + double norm = std::sqrt(nx*nx + ny*ny); + nx /= norm; + ny /= norm; + + // Compute the position of the text marker, 1.5 units to the left of the first waypoint + start_pos_.x = p0.x + 1.5 * nx; + start_pos_.y = p0.y + 1.5 * ny; + start_pos_.z = 0.0; + start_pos_initialized_ = true; + } + else{ + // Do nothing + } + } + + + //Main Loop + void loop() { + ROS_INFO("[Scan Analyzer] Starting scan alignment analyzer"); + ros::Rate rate(frequency_); + while (ros::ok()) { + //measure time for loop + //ros::Time start = ros::Time::now(); + + if (scan_initialized_ && trackbounds_initialized_) { + Eigen::MatrixXd xyz_mf = laser2mapConversion(scan_); + double alignment = computeScanAlignment(xyz_mf, trackbounds_); + + //ROS_INFO("Alignment score: %f", alignment); + std_msgs::Float32 alignment_msg; + alignment_msg.data = alignment; + alignment_score_pub_.publish(alignment_msg); + + //Publish the marker + if (start_pos_initialized_){ + publishAlignmentScoreText(alignment); + } + + // Publish the debug markers if wanted + if (debug_flag_) { + publishDebugLidarPoints(xyz_mf, scan_.header.stamp); + } + } + else{ + ROS_INFO("[Scan Analyzer] Scan alignment analyzer not initialized"); + } + + //measure time for loop + // ros::Time end = ros::Time::now(); + // ros::Duration elapsed = end - start; + // float frequency = 1.0 / elapsed.toSec(); + // ROS_INFO("[Scan Analyzer] Loop time: %f, Possible Frequency: %f", elapsed.toSec(), frequency); + + ros::spinOnce(); + rate.sleep(); + } + } + + Eigen::MatrixXd laser2mapConversion(const sensor_msgs::LaserScan& laser) { + tf::StampedTransform transform; + try { + tf_listener_.lookupTransform("/map", "/laser", ros::Time(0), transform); + } catch (tf::TransformException& ex) { + ROS_ERROR("%s", ex.what()); + return Eigen::MatrixXd(); // Return an empty matrix + } + + Eigen::Affine3d T; + tf::transformTFToEigen(transform, T); + + // Parameters for Gaussian distribution + const int num_points_to_select = laser.ranges.size() / downsample_factor_; + int middle_index = laser.ranges.size() / 2; + double std_dev = 0.68 * num_points_to_select; // Standard deviation for the normal distribution + + // Random engine and normal distribution + std::default_random_engine generator; + std::normal_distribution distribution(middle_index, std_dev); + + std::vector valid_ranges; + std::vector valid_angles; + + for (int i = 0; i < num_points_to_select; ++i) { + int index = static_cast(distribution(generator)); + + // Ensure index is within valid bounds + index = std::max(0, std::min(static_cast(laser.ranges.size()) - 1, index)); + + if (laser.ranges[index] > 0.1) { // Filtering out ranges that are under 0.1 meters + valid_ranges.push_back(laser.ranges[index]); + valid_angles.push_back(laser.angle_min + index * laser.angle_increment); + } + } + + // Convert laser polar coordinates to Cartesian + Eigen::MatrixXd cartesian_points(4, valid_ranges.size()); // 4xN matrix + for (size_t i = 0; i < valid_ranges.size(); ++i) { + double angle = valid_angles[i]; + cartesian_points(0, i) = valid_ranges[i] * cos(angle); // x-coordinate + cartesian_points(1, i) = valid_ranges[i] * sin(angle); // y-coordinate + cartesian_points(2, i) = 0.0; // z-coordinate + cartesian_points(3, i) = 1.0; // homogeneous coordinate + } + + // Apply the transformation + Eigen::MatrixXd transformed_points = T.matrix() * cartesian_points; + return transformed_points.topRows(3); // Return only the x, y, z coordinates + } + + double computeScanAlignment(const Eigen::MatrixXd& scan_in_map, const visualization_msgs::MarkerArray& trackbounds) { + Eigen::MatrixXd boundary_positions(trackbounds.markers.size(), 3); + for (size_t i = 0; i < trackbounds.markers.size(); ++i) { + boundary_positions(i, 0) = trackbounds.markers[i].pose.position.x; + boundary_positions(i, 1) = trackbounds.markers[i].pose.position.y; + boundary_positions(i, 2) = 0.0; + } + + int align_cnt = 0; + double threshold_squared = threshold_ * threshold_; + + for (int i = 0; i < scan_in_map.cols(); ++i) { + Eigen::VectorXd scan_point = scan_in_map.col(i); + for (int j = 0; j < boundary_positions.rows(); ++j) { + Eigen::VectorXd boundary_point = boundary_positions.row(j); + double distance_squared = (scan_point - boundary_point).squaredNorm(); + + if (distance_squared < threshold_squared) { + align_cnt++; + break; + } + } + } + + double align_score = static_cast(align_cnt) / (1080.0/downsample_factor_) * 100.0; + return align_score; + } + + // MISC Functions + void publishDebugLidarPoints(const Eigen::MatrixXd& points, const ros::Time& timestamp) { + visualization_msgs::MarkerArray markers; + for (int i = 0; i < points.cols(); ++i) { + visualization_msgs::Marker marker; + marker.header.frame_id = "map"; + marker.header.stamp = timestamp; + marker.id = i; + marker.type = visualization_msgs::Marker::SPHERE; + marker.action = visualization_msgs::Marker::ADD; + marker.pose.position.x = points(0, i); + marker.pose.position.y = points(1, i); + marker.pose.position.z = points(2, i); + marker.pose.orientation.w = 1.0; + marker.scale.x = 0.1; + marker.scale.y = 0.1; + marker.scale.z = 0.1; + marker.color.a = 1.0; + marker.color.r = 0.0; + marker.color.g = 1.0; + marker.color.b = 0.6; + markers.markers.push_back(marker); + } + debug_lidar_pub_.publish(markers); +} + + void publishAlignmentScoreText(double score) { + visualization_msgs::Marker marker; + marker.header.frame_id = "map"; + marker.header.stamp = ros::Time::now(); + marker.id = 0; + marker.type = visualization_msgs::Marker::TEXT_VIEW_FACING; + marker.action = visualization_msgs::Marker::ADD; + marker.pose.position.x = start_pos_.x; + marker.pose.position.y = start_pos_.y; + marker.pose.position.z = 1.0; + marker.pose.orientation.w = 1.0; + marker.scale.z = 0.5; // Text size + marker.color.a = 1.0; + marker.color.r = 0.5; + marker.color.g = 0.5; + marker.color.b = 0.5; + + // Create a string stream and use fixed and setprecision to format the score + std::ostringstream stream; + stream << std::fixed << std::setprecision(2) << score; + marker.text = "Scan Alignment Score: " + stream.str() + " [%]"; + + alignment_textmrk_pub_.publish(marker); + } + + +}; + +int main(int argc, char** argv) { + ros::init(argc, argv, "scan_alignment_analyzer"); + LaserMapOverlapChecker checker; + return 0; +} diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/__init__.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/data_analyser.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/data_analyser.py new file mode 100755 index 0000000..7677ed9 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/data_analyser.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +import rospy +from lap_analyser import LapAnalyser +from vel_analyser import VelAnalyser + +if __name__ == "__main__": + """ + ROS node that modularly handles the data anlysis + """ + + rospy.init_node("data_analyser") + + # add new data analysers here + lap_analyser = LapAnalyser() + vel_analyser = VelAnalyser() + # TODO actually remove this weird thing and just do separate launch files that can be joined together + + rate = rospy.Rate(0.1) + while not rospy.is_shutdown(): + vel_analyser.loop() + rate.sleep() \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/lap_analyser.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/lap_analyser.py new file mode 100755 index 0000000..aedec9e --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/lap_analyser.py @@ -0,0 +1,239 @@ +#!/usr/bin/env python3 + +import rospy +from f110_msgs.msg import LapData, WpntArray +from std_msgs.msg import Float32, Empty +from nav_msgs.msg import Odometry +from geometry_msgs.msg import Pose +from visualization_msgs.msg import Marker + +from collections import deque +import numpy as np + +import subprocess # save map +from rospkg import RosPack +from datetime import datetime +import os + +class LapAnalyser: + def __init__(self): + + # Wait for state machine to start to figure out where to place the visualization message + self.vis_pos = Pose + msg: Marker = rospy.wait_for_message("/state_marker", Marker, timeout=None) + if msg is not None: + self.vis_pos = msg.pose + self.vis_pos.position.z += 1.5 # appear on top of the state marker + rospy.loginfo(f"LapAnalyser will be centered at {self.vis_pos.position.x}, {self.vis_pos.position.y}, {self.vis_pos.position.z}") + + # stuff for min distance to track boundary + self.wp_flag = False + self.car_distance_to_boundary = [] + self.global_lateral_waypoints = None + rospy.loginfo("[LapAnalyser] Waiting for /global_waypoints topic") + rospy.wait_for_message('/global_waypoints', WpntArray) + rospy.loginfo("[LapAnalyser] Ready to go") + rospy.Subscriber('/global_waypoints', WpntArray, self.waypoints_cb) # TODO maybe add wait for topic/timeout? + + while self.global_lateral_waypoints is None: + print("[Lap Analyzer] Waiting for global lateral waypoints") + rospy.sleep(0.1) + + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.frenet_odom_cb) # car odom in frenet frame + + rospy.Subscriber('/lap_analyser/start', Empty, self.start_log_cb) + + # publishes once when a lap is completed + self.lap_data_pub = rospy.Publisher('lap_data', LapData, queue_size=10) + self.min_car_distance_to_boundary_pub = rospy.Publisher('min_car_distance_to_boundary', Float32, queue_size=10) # publishes every time a new car position is received + self.lap_start_time = rospy.Time.now() + self.last_s = 0 + self.accumulated_error = 0 + self.max_error = 0 + self.n_datapoints = 0 + self.lap_count = -1 + + self.NUM_LAPS_ANALYSED = 10 + '''The number of laps to analyse and compute statistics for''' + self.lap_time_acc = deque(maxlen=self.NUM_LAPS_ANALYSED) + self.lat_err_acc = deque(maxlen=self.NUM_LAPS_ANALYSED) + self.max_lat_err_acc = deque(maxlen=self.NUM_LAPS_ANALYSED) + + self.LOC_METHOD = rospy.get_param("~loc_algo", default="slam") + + # Publish stuff to RViz + self.lap_data_vis = rospy.Publisher('lap_data_vis', Marker, queue_size=5) + + # Open up logfile + self.logfile_name = f"lap_analyzer_{datetime.now().strftime('%d%m_%H%M')}.txt" + self.logfile_dir = os.path.join(RosPack().get_path('lap_analyser'), 'data', self.logfile_name) + with open(self.logfile_dir, 'w') as f: + f.write(f"Laps done on " + datetime.now().strftime('%d %b %H:%M:%S') + '\n') + + + def waypoints_cb(self, data: WpntArray): + """ + Callback function of /global_waypoints subscriber. + + Parameters + ---------- + data + Data received from /global_waypoints topic + """ + if not self.wp_flag: + # Store original waypoint array + self.global_lateral_waypoints = np.array([ + [w.s_m, w.d_right, w.d_left] for w in data.wpnts + ]) + self.wp_flag = True + else: + pass + + def frenet_odom_cb(self, msg): + if not self.wp_flag: + return + + current_s = msg.pose.pose.position.x + current_d = msg.pose.pose.position.y + if self.check_for_finish_line_pass(current_s): + if (self.lap_count == -1): + self.lap_start_time = rospy.Time.now() + rospy.loginfo("LapAnalyser: started first lap") + self.lap_count = 0 + else: + self.lap_count += 1 + self.publish_lap_info() + self.publish_min_distance() + self.car_distance_to_boundary = [] + self.lap_start_time = rospy.Time.now() + self.max_error = abs(current_d) + self.accumulated_error = abs(current_d) + self.n_datapoints = 1 + + # Compute and publish statistics. Perhaps publish to a file? + if self.lap_count > 0 and self.lap_count % self.NUM_LAPS_ANALYSED == 0: + lap_time_str = f"Lap time over the past {self.NUM_LAPS_ANALYSED} laps: Mean: {np.mean(self.lap_time_acc):.4f}, Std: {np.std(self.lap_time_acc):.4f}" + avg_err_str = f"Avg Lat Error over the past {self.NUM_LAPS_ANALYSED} laps: Mean: {np.mean(self.lat_err_acc):.4f}, Std: {np.std(self.lat_err_acc):.4f}" + max_err_str = f"Max Lat Error over the past {self.NUM_LAPS_ANALYSED} laps: Mean: {np.mean(self.max_lat_err_acc):.4f}, Std: {np.std(self.max_lat_err_acc):.4f}" + rospy.logwarn(lap_time_str) + rospy.logwarn(avg_err_str) + rospy.logwarn(max_err_str) + + with open(self.logfile_dir, 'a') as f: + f.write(lap_time_str+'\n') + f.write(avg_err_str+'\n') + f.write(max_err_str+'\n') + + # // This was to check for map shift during SE/Loc/Sensor experiments. Not needed during the race. + # if self.LOC_METHOD == "slam": + # # Create map folder + # self.map_name = f"map_{datetime.now().strftime('%d%m_%H%M')}" + # self.map_dir = os.path.join(RosPack().get_path('lap_analyser'), 'maps', self.map_name) + # os.makedirs(self.map_dir) + # rospy.loginfo(f"LapAnalyser: Saving map to {self.map_dir}") + + # subprocess.run(f"rosrun map_server map_saver -f {self.map_name} map:=/map_new", cwd=f"{self.map_dir}", shell=True) + else: + self.accumulated_error += abs(current_d) + self.n_datapoints += 1 + if self.max_error < abs(current_d): + self.max_error = abs(current_d) + self.last_s = current_s + + # search for closest s value: s values of global waypoints do not match the s values of car position exactly + s_ref_line_values = np.array(self.global_lateral_waypoints)[:, 0] + index_of_interest = np.argmin(np.abs(s_ref_line_values - current_s)) # index where s car state value is closest to s ref line + + d_right = self.global_lateral_waypoints[index_of_interest, 1] # [w.s_m, w.d_right, w.d_left] + d_left = self.global_lateral_waypoints[index_of_interest, 2] + + dist_to_bound = self.get_distance_to_boundary(current_d, d_left, d_right) + self.car_distance_to_boundary.append(dist_to_bound) + + def start_log_cb(self, _): + '''Start logging. Reset all metrics.''' + rospy.loginfo( + f"LapAnalyser: Start logging statistics for {self.NUM_LAPS_ANALYSED} laps.") + self.accumulated_error = 0 + self.max_error = 0 + self.lap_count = -1 + self.n_datapoints = 0 + + def check_for_finish_line_pass(self, current_s): + # detect wrapping of the track, should happen exactly once per round + if (self.last_s - current_s) > 1.0: + return True + else: + return False + + # ? Future extension: would be cool to check for sector times... + + def publish_lap_info(self): + msg = LapData() + msg.lap_time = (rospy.Time.now() - self.lap_start_time).to_sec() + rospy.loginfo( + f"LapAnalyser: completed lap #{self.lap_count} in {msg.lap_time}") + + with open(self.logfile_dir, 'a') as f: + f.write(f"Lap #{self.lap_count}: {msg.lap_time:.4f}" + '\n') + + msg.header.stamp = rospy.Time.now() + msg.lap_count = self.lap_count + msg.average_lateral_error_to_global_waypoints = self.accumulated_error / self.n_datapoints + msg.max_lateral_error_to_global_waypoints = self.max_error + self.lap_data_pub.publish(msg) + + # append to deques for statistics + self.lap_time_acc.append(msg.lap_time) + self.lat_err_acc.append(msg.average_lateral_error_to_global_waypoints) + self.max_lat_err_acc.append(msg.max_lateral_error_to_global_waypoints) + + mark = Marker() + mark.header.stamp = rospy.Time.now() + mark.header.frame_id = 'map' + mark.id = 0 + mark.ns = 'lap_info' + mark.type = Marker.TEXT_VIEW_FACING + mark.action = Marker.ADD + mark.pose = self.vis_pos + mark.scale.x = 0.0 + mark.scale.y = 0.0 + mark.scale.z = 0.5 # Upper case A + mark.color.a = 1.0 + mark.color.r = 0.2 + mark.color.g = 0.2 + mark.color.b = 0.2 + mark.text = f"Lap {self.lap_count:02d} {msg.lap_time:.3f}s" + self.lap_data_vis.publish(mark) + + def publish_min_distance(self): + self.min_car_distance_to_boundary = np.min(self.car_distance_to_boundary) + self.min_car_distance_to_boundary_pub.publish(self.min_car_distance_to_boundary) + + def get_distance_to_boundary(self, current_d, d_left, d_right): + """ + comment this function + ---------- + Input: + current_d: lateral distance to reference line + d_left: distance from ref. line to left track boundary + d_right: distance from ref. line to right track boundary + Output: + distance: critical distance to track boundary (whichever is smaller, to the right or left) + """ + # calculate distance from car to boundary + car_dist_to_bound_left = d_left - current_d + car_dist_to_bound_right = d_right + current_d + + # select whichever distance is smaller (to the right or left) + if car_dist_to_bound_left > car_dist_to_bound_right: # car is closer to right boundary + return car_dist_to_bound_right + else: + return car_dist_to_bound_left + + +if __name__ == '__main__': + rospy.init_node('lap_analyser') + analyser = LapAnalyser() + while not rospy.is_shutdown(): + rospy.spin() diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/longitudinal_analyser.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/longitudinal_analyser.py new file mode 100755 index 0000000..06d2670 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/longitudinal_analyser.py @@ -0,0 +1,107 @@ +#!/usr/bin/env python3 + +import rospy +from f110_msgs.msg import LapData, PidData +from nav_msgs.msg import Odometry + +class LongAnalyser: + def __init__(self): + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.frenet_odom_cb) # car odom in frenet frame + rospy.Subscriber('/velocity_pid', PidData, self.velocity_cb) + rospy.Subscriber('/trailing/gap_data', PidData, self.trailing_cb) + + + self.trailing_data_pub = rospy.Publisher('/tlap_data/trailing', LapData, queue_size=10) # publishes once when a lap is completed + self.vel_data_pub = rospy.Publisher('/lap_data/vel_ctr', LapData, queue_size=10) # publishes once when a lap is completed + + self.lap_start_time = rospy.Time.now() + self.last_s = 0 + + self.accumulated_vel_error = 0 + self.max_vel_error = 0 + self.vel_datapoints = 0 + + self.accumulated_trailing_error = 0 + self.trailing_datapoints = 0 + self.max_trailing_error = 0 + + self.lap_count = -1 + + + def frenet_odom_cb(self, msg): + current_s = msg.pose.pose.position.x + current_d = msg.pose.pose.position.y + if self.check_for_finish_line_pass(current_s): + if (self.lap_count == -1): + self.lap_start_time = rospy.Time.now() + rospy.loginfo("LapAnalyser: started first lap") + self.lap_count = 0 + else: + self.lap_count += 1 + self.publish_lap_info() + self.lap_start_time = rospy.Time.now() + self.last_s = current_s + + def velocity_cb(self, data: PidData): + error = abs(data.error) + if error > self.max_vel_error: + self.max_vel_error = error + self.vel_datapoints += 1 + self.accumulated_vel_error += error + + def trailing_cb(self, data: PidData): + error = abs(data.error) + if error > self.max_trailing_error: + self.max_trailing_error = error + self.trailing_datapoints += 1 + self.accumulated_trailing_error += error + + def check_for_finish_line_pass(self, current_s): + # detect wrapping of the track, should happen exactly once per round + if (self.last_s - current_s) > 1.0: + return True + else: + return False + + def publish_lap_info(self): + lap_time = (rospy.Time.now() - self.lap_start_time).to_sec() + rospy.loginfo(f"LapAnalyser: completed lap #{self.lap_count} in {lap_time}") + + if self.vel_datapoints != 0: + average_vel_error = self.accumulated_vel_error / self.vel_datapoints + print("Average Velocity Error: ", average_vel_error) + print("Max Velocity Error: ", self.max_vel_error) + + vel_msg = LapData() + vel_msg.header.stamp = rospy.Time.now() + vel_msg.lap_count = self.lap_count + vel_msg.lap_time = lap_time + vel_msg.average_lateral_error_to_global_waypoints = average_vel_error + vel_msg.max_lateral_error_to_global_waypoints = self.max_vel_error + self.vel_data_pub.publish(vel_msg) + + self.vel_datapoints = 0 + self.max_vel_error = 0 + self.accumulated_vel_error = 0 + + if self.trailing_datapoints != 0: + average_trailing_error = self.accumulated_trailing_error / self.trailing_datapoints + print("Average Trailing Error: ", average_trailing_error) + print("Max Trailing Error: ", self.max_trailing_error) + trailing_msg = LapData() + trailing_msg.header.stamp = rospy.Time.now() + trailing_msg.lap_count = self.lap_count + trailing_msg.lap_time = lap_time + trailing_msg.average_lateral_error_to_global_waypoints = average_trailing_error + trailing_msg.max_lateral_error_to_global_waypoints = self.max_trailing_error + self.trailing_data_pub.publish(trailing_msg) + + self.trailing_datapoints = 0 + self.max_trailing_error = 0 + self.accumulated_trailing_error = 0 + +if __name__ == '__main__': + rospy.init_node('longitudinal_analyser') + analyser = LongAnalyser() + while not rospy.is_shutdown(): + rospy.spin() \ No newline at end of file diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/scan_align_analyser.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/scan_align_analyser.py new file mode 100755 index 0000000..0a38523 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/scan_align_analyser.py @@ -0,0 +1,275 @@ +#!/usr/bin/env python3 + +import rospy, tf +import time +from nav_msgs.msg import OccupancyGrid +from visualization_msgs.msg import MarkerArray, Marker +from sensor_msgs.msg import LaserScan +from f110_msgs.msg import WpntArray +from std_msgs.msg import Float32 +import numpy as np + +class LaserMapOverlapChecker: + """ + A node that checks if laser scan points overlap with the Track boundaries. + """ + + def __init__(self): + """ + Constructor for the LaserMapOverlapChecker class. + Initializes the node, subscribers, and class variables. + """ + # Initialize the node + rospy.init_node('laser_map_overlap_checker', anonymous=True) + + # Rosparams + self.debug_flag = rospy.get_param('~debug', default=False) + self.downsample_factor = rospy.get_param('~downsample_factor', default=54) + self.threshold = rospy.get_param('~threshold', default=0.1) + self.frequency = rospy.get_param('~frequency', default=5) + + # Subscriber for the map and laser scan + self.map_sub = rospy.Subscriber('/map', OccupancyGrid, self.map_callback) + self.laser_sub = rospy.Subscriber('/scan', LaserScan, self.laser_callback) + self.trackbounds_sub = rospy.Subscriber('/trackbounds/markers', MarkerArray, self.trackbounds_callback) + self.gb_sub = rospy.Subscriber("/global_waypoints", WpntArray, self.glb_wpnts_cb) # from og wpnts + + # Publishers + self.debug_lidar_pub = rospy.Publisher('/scanalign/debug_lidar', MarkerArray, queue_size=1) + self.alignment_score_pub = rospy.Publisher('/scanalign/alignment_score', Float32, queue_size=1) + self.alignment_textmrk_pub = rospy.Publisher('/scanalign/alignment_textmrk', Marker, queue_size=1) + + # Map data + self.map = None + self.trackbounds = None + self.glb_wpnts = None + + # Laser scan data + self.scan = None + + #misc + self.rate = rospy.Rate(5) # 5 Hz + self.tf_listener = tf.TransformListener() + self.first_visualization = True + self.x_viz = None + self.y_viz = None + + #Keep on going + self.loop() + + def map_callback(self, data): + """ + Callback function for the map topic. + Stores the map data and metadata. + + Args: + - data (OccupancyGrid): The received map. + """ + self.map = data + + def laser_callback(self, data): + """ + Callback function for the laser scan topic. + + Args: + - data (LaserScan): The received laser scan. + """ + self.scan = data + + def trackbounds_callback(self, data): + """ + Callback function for the track bounds topic. + + Args: + - data (MarkerArray): The received track bounds. + """ + self.trackbounds = data + + def glb_wpnts_cb(self, data): + """ + Callback function for the global waypoints topic. + ONLY USED FOR VISUALIZATION OF TEXT MARKER. + + Args: + - data (WpntArray): The received global waypoints. + """ + self.glb_wpnts = data.wpnts[:-1] + + ############END OF CALLBACKS############ + + def compute_scan_alignment(self, scan_in_map, trackbounds: MarkerArray): + """ + Compute the alignment between the laser scan and the map. + Checks if the laser scan points overlap with the map. + + Args: + - scan_in_map (np Array): scan points in map frame. + - trackbounds (Markerarray): MarkerArray of the track boundaries. + """ + + # Extract boundary positions from the MarkerArray + boundary_positions = np.array([[marker.pose.position.x, marker.pose.position.y, marker.pose.position.z] for marker in trackbounds.markers]) + + overlaps = np.zeros(scan_in_map.shape[1], dtype=bool) + + # For each scan point, check if it's close to any boundary marker + for i in range(scan_in_map.shape[1]): + distances = np.linalg.norm(boundary_positions - scan_in_map[:3, i][:, np.newaxis].T, axis=1) + # Check if any distance is less than the 5X marker's radius (assuming all markers have the same scale) + if np.any(distances < self.threshold): + overlaps[i] = True + + # Compute the alignment score in percentage + align_cnt = np.sum(overlaps) + align_score = (align_cnt / (1080/self.downsample_factor)) * 100 + + return align_score + + def laser2map_conversion(self, laser: LaserScan): + # Get Transform between laser and radar + t_laser_map = self.tf_listener.getLatestCommonTime("map", "laser") + trans, quat = self.tf_listener.lookupTransform('/map', '/laser', t_laser_map) + T = np.array(trans) + R = tf.transformations.quaternion_matrix(quat) + + # Filter out ranges that are under 0.1 meters + valid_indices = np.array(laser.ranges) > 0.1 + valid_ranges = np.array(laser.ranges)[valid_indices] + + # Transform laser points to map frame + angles = np.linspace(laser.angle_min, laser.angle_max, len(laser.ranges))[valid_indices] + x_lf = (valid_ranges * np.cos(angles)).flatten() + y_lf = (valid_ranges * np.sin(angles)).flatten() + z_lf = (-T[-1] * np.ones(len(valid_ranges))).flatten() + xyz_lf = np.vstack((x_lf, y_lf, z_lf, np.ones(len(valid_ranges)))) + + # Build homogenous transform from laser to map frame + H_l2m = R + H_l2m[0:3, -1] = T + + # Apply transform to the xyz points s.t. the points are transformed into map frame + xyz_mf = H_l2m @ xyz_lf + + #Downsample the points for compute but in a normal distribution around the middle + # Define parameters + center_index = len(xyz_mf[0]) // 2 + num_samples = int(1080/self.downsample_factor) + std_dev = int(0.68*num_samples) # Standard deviation for the normal distribution + + # Generate random indices based on a normal distribution + indices = np.random.normal(center_index, std_dev, num_samples).astype(int) + + # Clip indices to ensure they are within valid bounds + indices = np.clip(indices, 0, len(xyz_mf[0]) - 1) + + # Sample the array using the generated indices + sampled_xyz_mf = xyz_mf[:, indices] + + return sampled_xyz_mf + + + def loop(self): + """ + Main loop of the node. + """ + rospy.loginfo("[Scan Alignment] Waiting for scan, and track bounds...") + rospy.wait_for_message('/scan', LaserScan) + rospy.wait_for_message('/trackbounds/markers', MarkerArray) + rospy.loginfo("[Scan Alignment] Ready!") + while not rospy.is_shutdown(): + start_time = time.time() + + #sample data + scan = self.scan + tb = self.trackbounds + + #Convert laser scan to map frame + xyz_mf = self.laser2map_conversion(laser=scan) + + #Debug publish laser points in map frame + if self.debug_flag: + self._pub_map_lidarpoints(points=xyz_mf, timestamp=scan.header.stamp) + + #Compute alignment score + alignment = self.compute_scan_alignment(scan_in_map=xyz_mf, trackbounds=tb) + self.alignment_score_pub.publish(alignment) + self._pub_alignscore_txt(score=alignment) + + #print('[Scan Align] Scan alignment score: {} [%]'.format(alignment)) + #print('[Scan Align] Loop time: {} [s], Possible Frequency: {} [Hz]'.format(time.time() - start_time, 1/(time.time() - start_time))) + + self.rate.sleep() + + + #########HELPERS######### + def _pub_map_lidarpoints(self, points: np.ndarray, timestamp: rospy.Time): + # Publish points in radar frame + mrks = MarkerArray() + + # Only use every 1th point + laser = points[:, ::1] + + for i in range(laser.shape[1]): + mrk = Marker() + mrk.header.frame_id = "map" + mrk.header.stamp = timestamp + mrk.id = i + mrk.type = mrk.SPHERE + mrk.action = mrk.ADD + mrk.pose.position.x = laser[0, i] + mrk.pose.position.y = laser[1, i] + mrk.pose.position.z = laser[2, i] + mrk.pose.orientation.w = 1 + mrk.scale.x = 0.1 + mrk.scale.y = 0.1 + mrk.scale.z = 0.1 + mrk.color.a = 1 + mrk.color.r = 0.0 + mrk.color.g = 1 + mrk.color.b = 0.6 + mrks.markers.append(mrk) + self.debug_lidar_pub.publish(mrks) + + def _pub_alignscore_txt(self, score: float): + # Publish alignment score as text marker + if self.first_visualization: + self.first_visualization = False + x0 = self.glb_wpnts[0].x_m + y0 = self.glb_wpnts[0].y_m + x1 = self.glb_wpnts[1].x_m + y1 = self.glb_wpnts[1].y_m + # compute normal vector of 150% length of trackboundary but to the left of the trajectory + xy_norm = ( + -np.array([y1 - y0, x0 - x1]) / np.linalg.norm([y1 - y0, x0 - x1]) * 1.5 * self.glb_wpnts[0].d_left + ) + + self.x_viz = x0 + xy_norm[0] + self.y_viz = y0 + xy_norm[1] + + mrk = Marker() + mrk.header.frame_id = "map" + mrk.header.stamp = rospy.Time.now() + mrk.id = 0 + mrk.type = mrk.TEXT_VIEW_FACING + mrk.action = mrk.ADD + mrk.pose.position.x = self.x_viz + mrk.pose.position.y = self.y_viz + mrk.pose.position.z = 1.0 + mrk.pose.orientation.w = 1 + mrk.scale.x = 0.5 + mrk.scale.y = 0.5 + mrk.scale.z = 0.5 + mrk.color.a = 1 + mrk.color.r = 1 + mrk.color.g = 0 + mrk.color.b = 0 + mrk.text = "Scan Alignment Score: {:.2f} [%]".format(score) + self.alignment_textmrk_pub.publish(mrk) + + + +if __name__ == '__main__': + """ + Main execution point. Instantiates the LaserMapOverlapChecker class. + """ + checker = LaserMapOverlapChecker() diff --git a/f110_utils/nodes/lap_analyser/src/lap_analyser/vel_analyser.py b/f110_utils/nodes/lap_analyser/src/lap_analyser/vel_analyser.py new file mode 100644 index 0000000..3e92e12 --- /dev/null +++ b/f110_utils/nodes/lap_analyser/src/lap_analyser/vel_analyser.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 + +import rospy +import numpy as np +from nav_msgs.msg import Odometry +from f110_msgs.msg import WpntArray +from geometry_msgs.msg import Point +from geometry_msgs.msg import Pose +from ackermann_msgs.msg import AckermannDriveStamped +from dynamic_reconfigure.msg import Config + + +class VelAnalyser: + def __init__(self) -> None: + # attributes + self.gb_wpnt_sc = None + self.frenet_odom = None + self.pub_cur_vel_flag = True + self.wheelbase = ( + rospy.get_param("/behavior_controller/l_cg2front") + + rospy.get_param("/behavior_controller/l_cg2rear") + ) + + # subscribers + rospy.Subscriber("/global_waypoints_scaled", WpntArray, self.gb_wpnt_sc_cb) + rospy.Subscriber( + "/dyn_sector_server/parameter_updates", Config, self.dyn_par_cb + ) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.frenet_odom_cb) + rospy.Subscriber( + "/vesc/high_level/ackermann_cmd_mux/input/nav_1", + AckermannDriveStamped, + self.ctrl_cb, + ) + + # publishers + self.vel_traj_pub = rospy.Publisher( + "velocity/trajectory", Point, queue_size=1000 + ) + self.steer_traj_pub = rospy.Publisher( + "steering/trajectory", Point, queue_size=1000 + ) + self.vel_cur_pub = rospy.Publisher("velocity/current", Point, queue_size=10) + self.steer_cur_pub = rospy.Publisher("steering_input", Point, queue_size=10) + + self.dyn_par_cb(None) + + def frenet_odom_cb(self, data: Odometry): + self.frenet_odom = data + + cur_s = self.frenet_odom.pose.pose.position.x + cur_v = self.frenet_odom.twist.twist.linear.x + if np.round(cur_s / 0.05, 1) % 1 == 0.0: # take points at 0.05 m distance + if self.pub_cur_vel_flag: + self.vel_cur_pub.publish(Point(x=cur_s, y=cur_v)) + self.steer_cur_pub.publish(Point(x=cur_s, y=self.steer_input)) + self.pub_cur_vel_flag = False + else: + if not self.pub_cur_vel_flag: + self.pub_cur_vel_flag = True + + def gb_wpnt_sc_cb(self, data: WpntArray): + self.gb_wpnt_sc = data.wpnts + + def dyn_par_cb(self, data: Config): + rospy.wait_for_message("/global_waypoints_scaled", WpntArray) + + rate = rospy.Rate(2000) + for wpnt in self.gb_wpnt_sc: + self.vel_traj_pub.publish(Point(x=wpnt.s_m, y=wpnt.vx_mps)) + self.steer_traj_pub.publish( + Point(x=wpnt.s_m, y=np.arctan(self.wheelbase*wpnt.kappa_radpm)) + ) + rate.sleep() # needed for publishing correctly all the points + + def ctrl_cb(self, data: AckermannDriveStamped): + self.steer_input = data.drive.steering_angle + + def loop(self): + # this is not the loop of the node + # the sleep is only needed to not avoid misses in publishing the messages + rate = rospy.Rate(2000) + for wpnt in self.gb_wpnt_sc: + self.vel_traj_pub.publish(Point(x=wpnt.s_m, y=wpnt.vx_mps)) + self.steer_traj_pub.publish( + Point(x=wpnt.s_m, y=np.arctan(self.wheelbase*wpnt.kappa_radpm)) + ) + rate.sleep() diff --git a/f110_utils/nodes/map_editor/CMakeLists.txt b/f110_utils/nodes/map_editor/CMakeLists.txt new file mode 100644 index 0000000..98856a2 --- /dev/null +++ b/f110_utils/nodes/map_editor/CMakeLists.txt @@ -0,0 +1,206 @@ +cmake_minimum_required(VERSION 3.0.2) +project(map_editor) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + f110_msgs + rospy + std_msgs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# f110_msgs# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES map_editor +# CATKIN_DEPENDS f110_msgs rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/map_editor.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/map_editor_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_map_editor.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/map_editor/README.md b/f110_utils/nodes/map_editor/README.md new file mode 100644 index 0000000..2d75a2a --- /dev/null +++ b/f110_utils/nodes/map_editor/README.md @@ -0,0 +1,107 @@ +# Map Editor + + + +## Editing on your local PC +1. Launch mapping **on the car** with: + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=True + ``` + We follow this convention when naming maps, but in principle any reasonable string name without whitespace should work. + + - Replace `PLACE` with the place where the track is, e.g. icra or hangar + - Replace `DATE` with the zero-padded current day, e.g. 2805 if it is the 28th of May + - Replace `VN` with the version of the map, e.g. v0 if it is the first version of the map on that day + + Drive until the map is sufficiently explored (clear trackbounds, no shifts). You can stop anywhere + + Press `y`. This will save a baseline map (png, yaml) and pbstream file **on the car** at the directory `race_stack/f110_utils/nodes/map_editor/maps`. + +2. Copy map **from the car to your PC**: + ```bash + pitX # source ros_master_ip for the relevant remote car + bash stack_master/scripts/download_map.sh $MAP_NAME # fill in map_name accordingly + ``` + Note that `pitX` is an alias for convenience, defined [here](../../../stack_master/checklists/PitUsage.md). + + If you've somehow forgotten what maps there are, calling `download_map.sh` without arguments lists the maps in the map_editor folder **on the car**. + + This downloads the previously-created map folder **from the car to your PC** in the directory `race_stack/f110_utils/nodes/map_editor/maps`. + + You may be prompted to login on the car. To save time, ensure that the [networking setup](../../../stack_master/checklists/networking.md) here is done. + +3. Open up the map **on your PC** and manually edit the `.png` file in GIMP or similar. It **should be overwritten** and not be renamed. + + If `pf_map.png` needs to be edited, do so as well. Remember that `pf_map` **must look like the real track!** This ensures that localization for *SynPF* remains accurate. + +4. Call the map_editor program **on your PC**: + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=False + ``` + + Now a window with the map should be prompted. Inspect that it makes sense. To proceed that window needs to be closed. + + Next the windows should be prompted that let you select the speed and overtaking sectors. + + Note: In the global trajectory window an arrow is appearing that sets the driving direction. If it is not in the intended direction, add the flag `reverse:=True` to the previous used command. + + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=False reverse:=True + ``` + + This command will create the `speed_scaler.yaml`, `ot_sectors.yaml`, and `global_waypoints.json` files. + +5. Copy map with additional information **from your PC to the car**: + ```bash + pitX # source ros_master_ip for the relevant remote car + bash stack_master/scripts/transfer_map.sh $MAP_NAME # fill in map_name accordingly + ``` + This uploads the map folder with the additional metadata **from your PC to the car** in the directory `race_stack/stack_master/maps`. + + This will also copy over the speed scaler and overtaking sector YAML files, and perform an auto-catkin build. + +6. Congrats, you should be done. Verify by running base_system **on the car** with the new map. + +## Editing on the car + +1. Launch mapping **on the car** with: + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=True + ``` + For `PLACE_DATE_VN`, follow the same naming conventions as above. Mapping also follows the same steps. + +2. Open up the map and manually edit the `.png` file in GIMP or similar. It **should be overwritten** and not be renamed. + + You can still run GIMP **locally** and access the file using `sftp://race_crew@car_IP` with Files in Ubuntu. + + If `pf_map.png` needs to be edited, do so as well. Remember that `pf_map` **must look like the real track!** + +3. Call the map_editor program **on the car**: + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=False + ``` + + Now a window with the map should be prompted. Inspect that it makes sense. To proceed that window needs to be closed. + + Next the windows should be prompted that let you select the speed and overtaking sectors. + + Note: In the global trajectory window an arrow is appearing that sets the driving direction. If it is not in the intended direction, add the flag `reverse:=True` to the previous used command. + + ```bash + roslaunch map_editor map_editor.launch map_name:=PLACE_DATE_VN map_editor_mapping:=False reverse:=True + ``` + + This command will create the `speed_scaler.yaml`, `ot_sectors.yaml`, and `global_waypoints.json` files. + +4. Copy map with additional information **from the `map_editor` folder to the `stack_master` folder**: + ```bash + bash stack_master/scripts/transfer_map.sh $MAP_NAME # fill in map_name accordingly + ``` + This transfers the map folder with the additional metadata **from the `map_editor` folder to the `stack_master` folder** in the directory `race_stack/stack_master/maps`. + + This will also copy over the speed scaler and overtaking sector YAML files, and perform an auto-catkin build. + +5. Congrats, you should be done. Verify by running base_system **on the car** with the new map. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/map_editor/launch/map_editor.launch b/f110_utils/nodes/map_editor/launch/map_editor.launch new file mode 100644 index 0000000..74cbda7 --- /dev/null +++ b/f110_utils/nodes/map_editor/launch/map_editor.launch @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/map_editor/maps/hangar/global_waypoints.json b/f110_utils/nodes/map_editor/maps/hangar/global_waypoints.json new file mode 100644 index 0000000..1f989be --- /dev/null +++ b/f110_utils/nodes/map_editor/maps/hangar/global_waypoints.json @@ -0,0 +1 @@ +{"map_info_str": {"data": "IQP estimated lap time: 6.8903s; IQP maximum speed: 10.0718m/s; SP estimated lap time: 7.1099s; SP maximum speed: 9.7986m/s; "}, "centerline_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -5.071371237098264, "y": -17.02166268438441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -5.170995934474189, "y": -17.01407877095848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -5.270468211834222, "y": -17.004691737702224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -5.369654057312193, "y": -16.992663723051642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -5.468084829518509, "y": -16.975712816884048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -5.565542907900958, "y": -16.953782316083732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -5.66184147016339, "y": -16.927191942783793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -5.756801142981709, "y": -16.89617411531763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -5.849761399713116, "y": -16.85959893533809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -5.939066375335656, "y": -16.815039947653414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -6.019902641655099, "y": -16.75656907348556, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -6.089049957432205, "y": -16.684708369849407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -6.140208778191379, "y": -16.599042159070308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -6.176026313321677, "y": -16.506023005755523, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -6.194501453443352, "y": -16.407949645972376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -6.202441894214163, "y": -16.308408126843062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -6.199007498662253, "y": -16.208584606010007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -6.1875793124967835, "y": -16.109346463969818, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -6.1731475758726715, "y": -16.01048623642136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -6.154824443460128, "y": -15.912274176315348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -6.134657374498767, "y": -15.814420802281129, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -6.116096867814988, "y": -15.716249141266932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -6.096440437228463, "y": -15.618289183159469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -6.075805589876812, "y": -15.520531008219443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -6.058139717485, "y": -15.422196593418652, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -6.041039837148818, "y": -15.32375535025806, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -6.02443115505616, "y": -15.225230351577519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -6.007610194871007, "y": -15.12674160708416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -5.991984258100383, "y": -15.028067369255757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -5.976646902522127, "y": -14.929337824511835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -5.961065850310071, "y": -14.830651593943497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -5.943828134817206, "y": -14.732238483798067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -5.9266315128345815, "y": -14.633818282352268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -5.908626910514399, "y": -14.535585738339835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -5.88834985192798, "y": -14.437749603896298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -5.8654544629347765, "y": -14.340494383857916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -5.836644576450292, "y": -14.244835798925346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -5.805872802254094, "y": -14.149792358427943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -5.772955954426528, "y": -14.05545484836331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -5.7350019683296525, "y": -13.96307189067533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -5.693338892236456, "y": -13.872269641306927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -5.650694083763329, "y": -13.781913917848218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -5.603697152676159, "y": -13.693757233819825, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -5.5542620316458295, "y": -13.606937166479277, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -5.503302118700426, "y": -13.5209969624651, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -5.449088378209546, "y": -13.437093252606491, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -5.3946017940415185, "y": -13.353343832585587, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -5.340250060902878, "y": -13.269508089954664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -5.2867506756267355, "y": -13.185122851620038, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -5.231841074333808, "y": -13.10165805594207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -5.178255571069237, "y": -13.017330092388661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -5.124171084216793, "y": -12.933320489329049, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -5.070070156591274, "y": -12.849321742838953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -5.017909195594498, "y": -12.764109433253706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -4.967388840657442, "y": -12.67791819627113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -4.920799108096409, "y": -12.589530129804272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -4.8746576807650595, "y": -12.500917220304478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -4.831995970573262, "y": -12.410573599643497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -4.791195279328329, "y": -12.319376792615138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -4.754630065768118, "y": -12.226440252366412, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -4.719877784734285, "y": -12.132764413981468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -4.687845611610386, "y": -12.038122835140928, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -4.657068040459997, "y": -11.943080003499084, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -4.628433088177426, "y": -11.847356345292344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -4.601402937511721, "y": -11.751168522312076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -4.576401833584522, "y": -11.654447966161287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -4.5551780477473605, "y": -11.556827368210456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -4.537538009190047, "y": -11.45849367986522, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -4.5253461446138195, "y": -11.35933864978918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -4.513645658822154, "y": -11.260111176599615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -4.502207355620914, "y": -11.160861575552845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -4.495407674888784, "y": -11.061187537665607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -4.491562673697507, "y": -10.961364284533781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -4.49327962909001, "y": -10.861484228229191, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -4.495510477133606, "y": -10.761612197682354, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -4.501757952958166, "y": -10.661914647265437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -4.510768408776905, "y": -10.562409856613286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -4.522915081592479, "y": -10.463245216348682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -4.535810082462669, "y": -10.364169698569347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -4.54957892431433, "y": -10.265209179161154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -4.56184268989181, "y": -10.16606218935365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -4.572401758980482, "y": -10.066706913770162, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -4.581715946980628, "y": -9.967228003705147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -4.589265594951251, "y": -9.867600755827226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -4.597423633106078, "y": -9.768027503520068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -4.60572306706841, "y": -9.66845811016702, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -4.6127613997831025, "y": -9.568792153282201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -4.618188926304397, "y": -9.469026172075596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -4.623635156048195, "y": -9.369264933436487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -4.626521128412702, "y": -9.269400860756827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -4.630053802516165, "y": -9.169576073908598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -4.632037411990887, "y": -9.069689644922411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -4.630085542967069, "y": -8.969801785518992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -4.6263431048701005, "y": -8.869961189073628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -4.619407483275614, "y": -8.770293811121473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -4.612294374918751, "y": -8.670635134061127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -4.6047296479442545, "y": -8.571015254250787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -4.593579270024515, "y": -8.471729779249666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -4.581429821784297, "y": -8.372560287613533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -4.56697344210382, "y": -8.273702374960278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -4.549586116971769, "y": -8.175314747249477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -4.531848967815764, "y": -8.076992120334372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -4.514761205428454, "y": -7.9785542371067395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -4.498417989920408, "y": -7.879991312935023, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -4.482407301871458, "y": -7.7813675462558916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -4.46697631874193, "y": -7.682651002586719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -4.450735128775256, "y": -7.584064744476735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -4.432482024050511, "y": -7.485832902131533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -4.411333129625201, "y": -7.388186918997589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -4.383983352402444, "y": -7.292122934511551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -4.352017836266642, "y": -7.197474406081973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -4.312670960920807, "y": -7.105712031507168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -4.265072884339032, "y": -7.017894202989407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -4.209327255540636, "y": -6.9350156382199675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -4.145870590632884, "y": -6.8579739195608145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -4.072489142979872, "y": -6.790296598319734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -3.9909341519450527, "y": -6.732746323436975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -3.901804167167404, "y": -6.687857738276883, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -3.807664233651912, "y": -6.654640219649748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -3.7103159633876497, "y": -6.63250542428512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -3.6111889656249634, "y": -6.620405819140489, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -3.5113868703557047, "y": -6.616513034488062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -3.411544351353972, "y": -6.619641998562599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -3.312007575921528, "y": -6.628196230734372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -3.212796496652247, "y": -6.640019436870362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -3.113706784546974, "y": -6.652789860092419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -3.014174380268603, "y": -6.661505171653004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -2.9147135089492204, "y": -6.670967263015871, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -2.814990673927205, "y": -6.677102566488256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -2.715212263951948, "y": -6.682107271948313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -2.6154871501232253, "y": -6.688241381831186, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -2.5159357348550304, "y": -6.696230082004387, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -2.4165658407656108, "y": -6.7066124823677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -2.3171100789704338, "y": -6.716158039916269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -2.217467640876346, "y": -6.723503232022977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -2.118105898193541, "y": -6.734002381979366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -2.018537564147176, "y": -6.7422599347314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -1.918697064801198, "y": -6.745860336752731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -1.8188336305999016, "y": -6.743247687557832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -1.7195043255009506, "y": -6.732793521039154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -1.621525250672545, "y": -6.713445092116121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -1.5259282585804164, "y": -6.684642662238627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -1.4339840130291044, "y": -6.645712632743711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -1.3465693611646132, "y": -6.597473863233672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -1.2653748785859964, "y": -6.5394105953484445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -1.1908307151587698, "y": -6.472937121415179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -1.124120475338255, "y": -6.398651220778686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -1.0634084188991653, "y": -6.319331734371996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -1.0084271416083022, "y": -6.23594592841727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -0.9584345208827694, "y": -6.149443598840187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -0.9157660142297495, "y": -6.059107694554582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -0.8778345086399579, "y": -5.966697585040805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -0.8467977945826775, "y": -5.871756586363534, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -0.8198559825882632, "y": -5.775551502479391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -0.796022624113824, "y": -5.67852624759753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -0.776243006129293, "y": -5.58061309708865, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -0.7580418474703279, "y": -5.482369501338355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -0.7391578196153186, "y": -5.384255539918145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -0.720768642403749, "y": -5.286054052594976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -0.703102209187754, "y": -5.187716371824499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -0.6825070127003312, "y": -5.0899557478120325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -0.6573107863954838, "y": -4.99329909301225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -0.6303314443069478, "y": -4.897098915363582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -0.605318717115446, "y": -4.800367523011786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -0.582571930245001, "y": -4.703097644414314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -0.5671994041808328, "y": -4.604426267077528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -0.5592871888382436, "y": -4.5048648135279, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -0.5627862267403403, "y": -4.405119684999771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -0.5768113464950564, "y": -4.306253151072391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -0.6030884546266901, "y": -4.209974158738054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -0.6419018280733694, "y": -4.118006077514243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -0.6890482365357717, "y": -4.02997369531582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -0.7447087361567301, "y": -3.9470649490220566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -0.8071698499399989, "y": -3.869089056445288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -0.8739024669378741, "y": -3.7947477503700084, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -0.9439142538757822, "y": -3.7234883243533825, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -1.0176086077045012, "y": -3.6560209370411862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -1.0924008536354564, "y": -3.5897722200404303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -1.1693888220992263, "y": -3.52609370789131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -1.2479096995793664, "y": -3.464312337972804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -1.327108165343396, "y": -3.403408449796926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -1.405158799034106, "y": -3.341029477854275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -1.4830313250794165, "y": -3.2784352523636104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -1.5594493432004715, "y": -3.2140667800492366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -1.6356131162227872, "y": -3.149398258068992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -1.7125549994864377, "y": -3.0856576462295457, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -1.7902394446729368, "y": -3.022824757867088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -1.8689204852252301, "y": -2.961245838016059, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -1.9476838087536983, "y": -2.899772420787561, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -2.0276323166824817, "y": -2.8398519392778874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -2.10960081190406, "y": -2.7827251606470482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -2.1921085724112626, "y": -2.7263741439573534, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -2.2751326849361995, "y": -2.6707858740433545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -2.358031782579845, "y": -2.6150121727283944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -2.4410647812460917, "y": -2.559441026693506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -2.5233915452912856, "y": -2.5028314629419355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -2.6042186139225656, "y": -2.4441027998741114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -2.6845958012072635, "y": -2.3847703828523077, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -2.7611465968000735, "y": -2.3206015769827304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -2.8324323756388057, "y": -2.250669081114616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -2.8967491324460988, "y": -2.1742776023811317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -2.9532240620870938, "y": -2.0919638770905817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -2.9996335262536302, "y": -2.0035668490358765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -3.03610259771145, "y": -1.9106247139184227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -3.059804431988793, "y": -1.8136796705270974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -3.071525415443781, "y": -1.7145304235652856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -3.0754431750890494, "y": -1.6147244239551772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -3.0707056637834467, "y": -1.5149673006000142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -3.0612104857802565, "y": -1.4155145452624032, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -3.0470544432203095, "y": -1.3166199054445769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -3.0323411287383704, "y": -1.2178038750556563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -3.021615235764957, "y": -1.1184764327269434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -3.012778284942663, "y": -1.0189564823895574, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -3.002752400818934, "y": -0.9195497698687015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -2.9904093813151054, "y": -0.8204063147627773, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -2.9731927709951265, "y": -0.7219994358062076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -2.949507499295706, "y": -0.6249542997133206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -2.918250096845461, "y": -0.5300865675892964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -2.8753748102131484, "y": -0.4398699767710549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -2.82257019546778, "y": -0.3550849600958579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -2.761911950082226, "y": -0.2757312433964063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -2.692477951421537, "y": -0.20391943767785153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -2.6171529801168862, "y": -0.1383093107311566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -2.53673758141295, "y": -0.07904884013033492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -2.4521561213615835, "y": -0.025922281994812967, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -2.3638950635271967, "y": 0.020867470905861385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -2.272945275618317, "y": 0.062123181017654974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -2.1787959676325324, "y": 0.09543684527205269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -2.0828164711970025, "y": 0.12320165481948081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -1.9853228069061222, "y": 0.14495468132064998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -1.8868106133469498, "y": 0.16161602808964168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -1.7877707027120078, "y": 0.17465999789369638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -1.6881186144512823, "y": 0.1815516326156476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -1.5882811146261129, "y": 0.18395405813052101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -1.4884165153498188, "y": 0.18120948959099575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -1.3889302407970814, "y": 0.17225132631261844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -1.2907845095222048, "y": 0.15383340797088366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -1.1936570573434762, "y": 0.1304160951490654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -1.097624773942552, "y": 0.1029306649355046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -1.0024472378068439, "y": 0.07263689172156537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -0.9084719511359108, "y": 0.03870947156947432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -0.8151340351540644, "y": 0.0030715968845528366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -0.7223681511918874, "y": -0.03403632207121212, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -0.6300720254626669, "y": -0.0722986661097043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -0.5387745401862579, "y": -0.11288370703366096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -0.44968320246150467, "y": -0.1580452685827681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -0.36261800044255377, "y": -0.20705867650732987, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -0.2772231552493146, "y": -0.25889560972286685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -0.1941030555099275, "y": -0.3143144396894793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -0.11238992584786647, "y": -0.37181138549024867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -0.030992035832314607, "y": -0.42973412177638337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": 0.048975308678025464, "y": -0.48963512366495865, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": 0.12773922547120534, "y": -0.5511003631308581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": 0.2046907931959697, "y": -0.6148287677667533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": 0.28176369629532844, "y": -0.6784116445259725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": 0.35743234290129544, "y": -0.7436561076683744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": 0.43206526270188594, "y": -0.8100819838133752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": 0.5076688643187502, "y": -0.8754014518440832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": 0.5818793813730072, "y": -0.9422998872455591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": 0.6556428563737992, "y": -1.0096902957393548, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": 0.7302048235236791, "y": -1.0761929495310443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": 0.8049752561875724, "y": -1.1424653737266013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": 0.8795714202911857, "y": -1.2089367427781752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": 0.9545281353996777, "y": -1.275001613817881, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": 1.0287831699594774, "y": -1.3418459749705771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": 1.1028979033905755, "y": -1.408844304873864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": 1.175471363907158, "y": -1.4775187600327853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": 1.2464683334662456, "y": -1.547817384582736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": 1.3165306721744672, "y": -1.619045814796758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": 1.3839314860326453, "y": -1.6928017734437397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": 1.4500987694585117, "y": -1.7676665265939004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": 1.514554590233916, "y": -1.843986607233394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": 1.5749524702020352, "y": -1.9235787616641917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": 1.6331952760999386, "y": -2.0047425375152206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": 1.689168786254693, "y": -2.087502865636418, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": 1.7412641623599376, "y": -2.1727432023948423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": 1.7901994056404886, "y": -2.2598501295195574, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": 1.83649781339843, "y": -2.3483793948675946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": 1.8799031651037026, "y": -2.438372462702644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": 1.9217311036891618, "y": -2.529109787512407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": 1.962448834771669, "y": -2.620351569178883, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": 1.9999563651083656, "y": -2.7129341449678113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": 2.0345050945182503, "y": -2.8066860629607913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": 2.068734463122819, "y": -2.900555317576035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": 2.100716190014754, "y": -2.995191226516461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": 2.1292570244722784, "y": -3.0909410506808177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": 2.1561192622016594, "y": -3.1871763813969958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": 2.180918179480202, "y": -3.2839649429627946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": 2.203377873718625, "y": -3.381322713788205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": 2.2232894512152734, "y": -3.4792288903983692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": 2.243198476236024, "y": -3.577137107691972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": 2.26107107650597, "y": -3.6754375237756283, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": 2.277109374106655, "y": -3.7740479483235725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": 2.288514526812119, "y": -3.8732994666543057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 2.300225159564971, "y": -3.972522939077704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 2.3114498756384907, "y": -4.071799064697362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 2.3242929587527508, "y": -4.170876866729028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 2.3404852413420123, "y": -4.2694665105726815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 2.3539210284644536, "y": -4.36846641053679, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 2.3670071344531287, "y": -4.467517927026202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 2.3801267420033567, "y": -4.566561923433394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 2.3900033129801783, "y": -4.665983617996062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": 2.3994011905124584, "y": -4.765448969530629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": 2.4040584790625585, "y": -4.865238074151832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": 2.405666919558904, "y": -4.965128051867832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": 2.404625746040218, "y": -5.065037905593287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": 2.3998054239411446, "y": -5.16481176842301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": 2.391200582176912, "y": -5.264341840966571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": 2.3785681054665577, "y": -5.363436388628608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": 2.362188860667556, "y": -5.461999069386601, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": 2.3441030713561966, "y": -5.560248714617748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": 2.3219526261756087, "y": -5.657662339701698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": 2.296248248815184, "y": -5.754213516136722, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": 2.2667736199530046, "y": -5.849659602911584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": 2.235125944266402, "y": -5.94443029656855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": 2.2018636953736843, "y": -6.03863522178349, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": 2.1665415928155927, "y": -6.13208965895512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": 2.1298422880200882, "y": -6.22501490356626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": 2.08822056048538, "y": -6.3158362881417265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": 2.046824475205015, "y": -6.406769083450573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": 2.0048206089141534, "y": -6.497424023490026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": 1.961175163906249, "y": -6.587298707794528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": 1.9162400474447043, "y": -6.676535943405773, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": 1.869058197581023, "y": -6.764600596439547, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": 1.821953314027223, "y": -6.852711548723039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": 1.7769476115194056, "y": -6.941907937463431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": 1.730453308298955, "y": -7.030340691558144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": 1.6823900120883746, "y": -7.117929064145223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": 1.6354882607341308, "y": -7.206144778756365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": 1.5888525934640565, "y": -7.294496954609546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": 1.5421968533875352, "y": -7.382838714584149, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": 1.4948269860802301, "y": -7.4708111345519095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": 1.4480469769877775, "y": -7.559098463757764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": 1.4019111151006232, "y": -7.647724039042625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": 1.3564764481245395, "y": -7.736711217460927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": 1.3105097045979628, "y": -7.82541447825851, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": 1.265575426635414, "y": -7.914651079641879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": 1.2206338465610393, "y": -8.003888566167733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": 1.175220455821506, "y": -8.092883385366676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": 1.1290499339009723, "y": -8.181477950278662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": 1.0829783311813814, "y": -8.270124363403468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": 1.0390688663283165, "y": -8.359873450618787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": 0.9959528416175645, "y": -8.450002267113158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": 0.9529771876952379, "y": -8.540188034320927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": 0.9107193681257492, "y": -8.630726668122238, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": 0.8673870922890545, "y": -8.72075605817194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": 0.8231927880873772, "y": -8.81036547968576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": 0.7782964691107417, "y": -8.899625452694789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": 0.7312076922484473, "y": -8.987732330488557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": 0.6843894346627618, "y": -9.075998531162783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": 0.6362023559005766, "y": -9.163524709482363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": 0.5879686427550699, "y": -9.251014280418527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": 0.537068818430697, "y": -9.336992137567787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": 0.48530063601811213, "y": -9.422450199836073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": 0.4345279308594355, "y": -9.50849335495202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": 0.3837058841384869, "y": -9.594507534449061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": 0.33287980920432925, "y": -9.680517910589913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": 0.2830826145072571, "y": -9.76713965800465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": 0.23329787489861847, "y": -9.85376855758391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": 0.18368360785669602, "y": -9.940495133173181, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": 0.1347253696039078, "y": -10.027587242247112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": 0.0869289774917342, "y": -10.115317593130401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": 0.041824403041493076, "y": -10.204470615263292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -0.0026397829176752798, "y": -10.293945468711328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -0.047713948575017553, "y": -10.383110522149524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -0.09420064152028755, "y": -10.471544553895823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -0.14431486309102087, "y": -10.55796592248457, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -0.19784110709730632, "y": -10.642312563849188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -0.25727398872497703, "y": -10.722609270770592, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -0.32247073864935455, "y": -10.798287873263567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -0.3915401120451515, "y": -10.870460204562924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -0.46248939495807556, "y": -10.940810054326647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -0.5346568505102156, "y": -11.009902269327766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -0.6087724671622623, "y": -11.076904655181293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -0.6825286856375395, "y": -11.144305906796866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565488317015884, "y": -11.211415606826826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -0.8285159236428008, "y": -11.28071014888526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -0.8975984561586929, "y": -11.352883096903174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -0.9638745955548289, "y": -11.42762706957633, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -1.024615197708788, "y": -11.506869847567357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -1.0796885851948295, "y": -11.590228351379206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -1.1274769327779586, "y": -11.677950786203688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -1.163383181672688, "y": -11.77114684729728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -1.1927393398845274, "y": -11.866634073863537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -1.215505397599593, "y": -11.963882049561565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -1.233334677443289, "y": -12.06219090420119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -1.2469328203911274, "y": -12.161164578915509, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -1.2575489266081146, "y": -12.260504933871921, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -1.2688033830203993, "y": -12.359775881975557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -1.2842556426257326, "y": -12.458465943740526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -1.3044340548722635, "y": -12.55630272433855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": -1.3277026619484804, "y": -12.653465320571293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": -1.352365928610012, "y": -12.750287778613993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": -1.3803747084893612, "y": -12.846146773113944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": -1.4108807927838318, "y": -12.9412874068818, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": -1.4442052115344974, "y": -13.035481132310652, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": -1.4821819867124548, "y": -13.127881161356584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": -1.5220615535665525, "y": -13.219492819215098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": -1.5668712691259057, "y": -13.308765102550405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": -1.6134499243205518, "y": -13.39715267049915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": -1.662179658121041, "y": -13.48437929832836, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": -1.7151530008482059, "y": -13.569095352519582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": -1.767764786035526, "y": -13.65403682256622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": -1.8212337314714124, "y": -13.73843503462491, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": -1.8773436414782518, "y": -13.82110345331955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": -1.933141157485889, "y": -13.903983411518329, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": -1.9883451844670197, "y": -13.987262715291358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": -2.0436731677913254, "y": -14.070456221377498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": -2.098434746976375, "y": -14.154027947392233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": -2.153346989534152, "y": -14.237500901172305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": -2.2082290997853247, "y": -14.320993551958475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": -2.263756079332551, "y": -14.404053607781629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": -2.3191461798196107, "y": -14.487197531137546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": -2.3749623808104134, "y": -14.570068422622729, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": -2.4299819013023196, "y": -14.653469546924574, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": -2.483904983425314, "y": -14.737583370311274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": -2.5373304954571267, "y": -14.822011166235487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": -2.5892888144009327, "y": -14.907344063675971, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": -2.6411120724353805, "y": -14.992767081191108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": -2.6913254129942428, "y": -15.079146225135613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": -2.7402752816165887, "y": -15.166248567009323, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": -2.7885621772735947, "y": -15.253716961007061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": -2.836270962485684, "y": -15.341490208327691, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": -2.8842021326377822, "y": -15.429157768010917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": -2.9287126849653173, "y": -15.518603953621222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": -2.970329239167979, "y": -15.609433315001612, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": -3.0120601378185303, "y": -15.700213412830081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": -3.054662400923004, "y": -15.790590886626672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": -3.097876887324134, "y": -15.880675761855212, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": -3.1438931621770037, "y": -15.969343558895405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": -3.1926207477407016, "y": -16.056553849379554, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": -3.2467923992055567, "y": -16.1404699832106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": -3.3055373190459796, "y": -16.22124393918358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": -3.3690820193506346, "y": -16.298294899584896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": -3.438269495446627, "y": -16.370353894829677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": -3.511220480411989, "y": -16.438580447283265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": -3.588742430339248, "y": -16.501574129313752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": -3.6703137510015225, "y": -16.559240526257604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -3.7553346432782666, "y": -16.611690244996424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -3.8425807362771716, "y": -16.660378185966067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -3.9302328546778695, "y": -16.708335127622846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -4.019317364387189, "y": -16.75355442983154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -4.109972878102982, "y": -16.795541937239545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -4.201411769018644, "y": -16.835807133332683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -4.29428630921231, "y": -16.87262697571401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -4.387595529231193, "y": -16.908351561003975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -4.481721770308796, "y": -16.941845649625304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -4.577396220521491, "y": -16.97054443197489, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -4.674124180293208, "y": -16.99540545435234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -4.772495888136886, "y": -17.01266688346039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -4.871734698470465, "y": -17.024221114125044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -4.971603251993102, "y": -17.02700385433598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "centerline_waypoints": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -5.071371237098264, "y_m": -17.02166268438441, "d_right": 1.7536264826299184, "d_left": 2.317233781358474, "psi_rad": 3.065614359211278, "kappa_radpm": -0.09055757607689063, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 1, "s_m": 0.1, "d_m": 0.0, "x_m": -5.170995934474189, "y_m": -17.01407877095848, "d_right": 1.7762355994755719, "d_left": 2.272411412950916, "psi_rad": 3.056558601603589, "kappa_radpm": -0.15702768092531016, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 2, "s_m": 0.2, "d_m": 0.0, "x_m": -5.270468211834222, "y_m": -17.004691737702224, "d_right": 1.8023742028800067, "d_left": 2.2306895180692194, "psi_rad": 3.034208823026216, "kappa_radpm": -0.3028515198000381, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 3, "s_m": 0.30000000000000004, "d_m": 0.0, "x_m": -5.369654057312193, "y_m": -16.992663723051642, "d_right": 1.831078557864972, "d_left": 2.1942005490834764, "psi_rad": 2.9959882976435814, "kappa_radpm": -0.4427829056657884, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 4, "s_m": 0.4, "d_m": 0.0, "x_m": -5.468084829518509, "y_m": -16.975712816884048, "d_right": 1.86000143621977, "d_left": 2.155461484911049, "psi_rad": 2.9456522418930584, "kappa_radpm": -0.49885597374144997, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 5, "s_m": 0.5, "d_m": 0.0, "x_m": -5.565542907900958, "y_m": -16.953782316083732, "d_right": 1.8889865857347758, "d_left": 2.125553657945998, "psi_rad": 2.8962171028952914, "kappa_radpm": -0.4831139312268795, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 6, "s_m": 0.6000000000000001, "d_m": 0.0, "x_m": -5.66184147016339, "y_m": -16.927191942783793, "d_right": 1.9179174153184455, "d_left": 2.102869077735117, "psi_rad": 2.8490294556476825, "kappa_radpm": -0.49952991962130655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 7, "s_m": 0.7000000000000001, "d_m": 0.0, "x_m": -5.756801142981709, "y_m": -16.89617411531763, "d_right": 1.9423708382949492, "d_left": 2.0780476548925324, "psi_rad": 2.79631111897103, "kappa_radpm": -0.6312232762995773, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 8, "s_m": 0.8, "d_m": 0.0, "x_m": -5.849761399713116, "y_m": -16.85959893533809, "d_right": 1.9617087303150629, "d_left": 2.063620616457202, "psi_rad": 2.722784800387767, "kappa_radpm": -0.9960621959880789, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 9, "s_m": 0.9, "d_m": 0.0, "x_m": -5.939066375335656, "y_m": -16.815039947653414, "d_right": 1.977310601082253, "d_left": 2.060129819913432, "psi_rad": 2.5970986797734144, "kappa_radpm": -1.482990054033797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 10, "s_m": 1.0, "d_m": 0.0, "x_m": -6.019902641655099, "y_m": -16.75656907348556, "d_right": 1.9776593308583, "d_left": 2.0470331246119606, "psi_rad": 2.4261867895810076, "kappa_radpm": -1.8703969557231015, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 11, "s_m": 1.1, "d_m": 0.0, "x_m": -6.089049957432205, "y_m": -16.684708369849407, "d_right": 1.9644986602972432, "d_left": 1.9503524899278444, "psi_rad": 2.223019288628794, "kappa_radpm": -2.01196625976924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 12, "s_m": 1.2000000000000002, "d_m": 0.0, "x_m": -6.140208778191379, "y_m": -16.599042159070308, "d_right": 1.9339873419985305, "d_left": 1.8625045824127866, "psi_rad": 2.0237935376271596, "kappa_radpm": -1.8770022464694736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 13, "s_m": 1.3, "d_m": 0.0, "x_m": -6.176026313321677, "y_m": -16.506023005755523, "d_right": 1.8921113310462034, "d_left": 1.7859286078383885, "psi_rad": 1.8476188393348993, "kappa_radpm": -1.6005645918140177, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 14, "s_m": 1.4000000000000001, "d_m": 0.0, "x_m": -6.194501453443352, "y_m": -16.407949645972376, "d_right": 1.835767029212911, "d_left": 1.725159339080665, "psi_rad": 1.703680619264356, "kappa_radpm": -1.2711218861248363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 15, "s_m": 1.5, "d_m": 0.0, "x_m": -6.202441894214163, "y_m": -16.308408126843062, "d_right": 1.7725320177760742, "d_left": 1.6754075762788703, "psi_rad": 1.593394462109932, "kappa_radpm": -1.0370461026424005, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 16, "s_m": 1.6, "d_m": 0.0, "x_m": -6.199007498662253, "y_m": -16.208584606010007, "d_right": 1.7039053950645806, "d_left": 1.6275538130131673, "psi_rad": 1.496271398735876, "kappa_radpm": -0.7620246526411201, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 17, "s_m": 1.7000000000000002, "d_m": 0.0, "x_m": -6.1875793124967835, "y_m": -16.109346463969818, "d_right": 1.6325318633034982, "d_left": 1.59201041719227, "psi_rad": 1.440989531581708, "kappa_radpm": -0.4508842236734234, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 18, "s_m": 1.8, "d_m": 0.0, "x_m": -6.1731475758726715, "y_m": -16.01048623642136, "d_right": 1.5620490138641132, "d_left": 1.5649793233325802, "psi_rad": 1.4060945540011913, "kappa_radpm": -0.3202055503280188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 19, "s_m": 1.9000000000000001, "d_m": 0.0, "x_m": -6.154824443460128, "y_m": -15.912274176315348, "d_right": 1.491992591085358, "d_left": 1.5478461024809769, "psi_rad": 1.3769484215161043, "kappa_radpm": -0.15175403117678177, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 20, "s_m": 2.0, "d_m": 0.0, "x_m": -6.134657374498767, "y_m": -15.814420802281129, "d_right": 1.4240756888315123, "d_left": 1.5252862705806178, "psi_rad": 1.375743747765835, "kappa_radpm": 0.0070287070479213565, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 21, "s_m": 2.1, "d_m": 0.0, "x_m": -6.116096867814988, "y_m": -15.716249141266932, "d_right": 1.3614072100807004, "d_left": 1.497314482853047, "psi_rad": 1.3783541629256886, "kappa_radpm": -0.039874182092122235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 22, "s_m": 2.2, "d_m": 0.0, "x_m": -6.096440437228463, "y_m": -15.618289183159469, "d_right": 1.3024667884833943, "d_left": 1.476688247003272, "psi_rad": 1.3677689113474105, "kappa_radpm": -0.0022447790792656797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 23, "s_m": 2.3000000000000003, "d_m": 0.0, "x_m": -6.075805589876812, "y_m": -15.520531008219443, "d_right": 1.2478923984948818, "d_left": 1.4636047284607978, "psi_rad": 1.3779052071098354, "kappa_radpm": 0.14077474026515935, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 24, "s_m": 2.4000000000000004, "d_m": 0.0, "x_m": -6.058139717485, "y_m": -15.422196593418652, "d_right": 1.2018877989417802, "d_left": 1.4406369838028117, "psi_rad": 1.3959238594004424, "kappa_radpm": 0.11697188523718038, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 25, "s_m": 2.5, "d_m": 0.0, "x_m": -6.041039837148818, "y_m": -15.32375535025806, "d_right": 1.1632042793075232, "d_left": 1.4122834105379956, "psi_rad": 1.4012995841572715, "kappa_radpm": 0.03395804987712747, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 26, "s_m": 2.6, "d_m": 0.0, "x_m": -6.02443115505616, "y_m": -15.225230351577519, "d_right": 1.1325224457973009, "d_left": 1.3900571414899037, "psi_rad": 1.4027154693758679, "kappa_radpm": 0.03194909080909247, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 27, "s_m": 2.7, "d_m": 0.0, "x_m": -6.007610194871007, "y_m": -15.12674160708416, "d_right": 1.1098045826503569, "d_left": 1.3749645513173683, "psi_rad": 1.40768940231909, "kappa_radpm": 0.06247975836679798, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 28, "s_m": 2.8000000000000003, "d_m": 0.0, "x_m": -5.991984258100383, "y_m": -15.028067369255757, "d_right": 1.0969659859252343, "d_left": 1.3658194724459092, "psi_rad": 1.4152114210492275, "kappa_radpm": 0.03876614031587122, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 29, "s_m": 2.9000000000000004, "d_m": 0.0, "x_m": -5.976646902522127, "y_m": -14.929337824511835, "d_right": 1.093437871113359, "d_left": 1.3636565710884043, "psi_rad": 1.4154426303822643, "kappa_radpm": -0.04705066595099616, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 30, "s_m": 3.0, "d_m": 0.0, "x_m": -5.961065850310071, "y_m": -14.830651593943497, "d_right": 1.098772783302714, "d_left": 1.3429444096274628, "psi_rad": 1.4058012878590282, "kappa_radpm": -0.08917659841297776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 31, "s_m": 3.1, "d_m": 0.0, "x_m": -5.943828134817206, "y_m": -14.732238483798067, "d_right": 1.1114345687810387, "d_left": 1.3116724309317656, "psi_rad": 1.3976073106996687, "kappa_radpm": -0.060655001712224266, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 32, "s_m": 3.2, "d_m": 0.0, "x_m": -5.9266315128345815, "y_m": -14.633818282352268, "d_right": 1.1268422106819107, "d_left": 1.2873729054187952, "psi_rad": 1.3936702875165834, "kappa_radpm": -0.09815707188212008, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 33, "s_m": 3.3000000000000003, "d_m": 0.0, "x_m": -5.908626910514399, "y_m": -14.535585738339835, "d_right": 1.147590720371995, "d_left": 1.2713143841637087, "psi_rad": 1.3779758963232447, "kappa_radpm": -0.2032885492165315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 34, "s_m": 3.4000000000000004, "d_m": 0.0, "x_m": -5.88834985192798, "y_m": -14.437749603896298, "d_right": 1.1684072485080303, "d_left": 1.2484185709637632, "psi_rad": 1.353012577673277, "kappa_radpm": -0.34523761564717703, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 35, "s_m": 3.5, "d_m": 0.0, "x_m": -5.8654544629347765, "y_m": -14.340494383857916, "d_right": 1.1946805491762984, "d_left": 1.218414284055619, "psi_rad": 1.3089283731938093, "kappa_radpm": -0.4252017030053157, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 36, "s_m": 3.6, "d_m": 0.0, "x_m": -5.836644576450292, "y_m": -14.244835798925346, "d_right": 1.2227919689508873, "d_left": 1.2000156915962834, "psi_rad": 1.267972237072214, "kappa_radpm": -0.3127465556078979, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 37, "s_m": 3.7, "d_m": 0.0, "x_m": -5.805872802254094, "y_m": -14.149792358427943, "d_right": 1.2380132242557622, "d_left": 1.191795664245758, "psi_rad": 1.2463790620722297, "kappa_radpm": -0.299673499319264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 38, "s_m": 3.8000000000000003, "d_m": 0.0, "x_m": -5.772955954426528, "y_m": -14.05545484836331, "d_right": 1.2479371309051497, "d_left": 1.1864444195504644, "psi_rad": 1.2080375372083612, "kappa_radpm": -0.42789198069572376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 39, "s_m": 3.9000000000000004, "d_m": 0.0, "x_m": -5.7350019683296525, "y_m": -13.96307189067533, "d_right": 1.2557369331149733, "d_left": 1.1893614870937774, "psi_rad": 1.160800665933085, "kappa_radpm": -0.36406972132527526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 40, "s_m": 4.0, "d_m": 0.0, "x_m": -5.693338892236456, "y_m": -13.872269641306927, "d_right": 1.2647290427041922, "d_left": 1.1889522184460917, "psi_rad": 1.135223592943306, "kappa_radpm": -0.2768911331702273, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 41, "s_m": 4.1000000000000005, "d_m": 0.0, "x_m": -5.650694083763329, "y_m": -13.781913917848218, "d_right": 1.2738273014795167, "d_left": 1.1959778908092473, "psi_rad": 1.1054224392990395, "kappa_radpm": -0.3406248969907333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 42, "s_m": 4.2, "d_m": 0.0, "x_m": -5.603697152676159, "y_m": -13.693757233819825, "d_right": 1.2642830630064867, "d_left": 1.213760548333237, "psi_rad": 1.0670986135451594, "kappa_radpm": -0.3052505142164452, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 43, "s_m": 4.3, "d_m": 0.0, "x_m": -5.5542620316458295, "y_m": -13.606937166479277, "d_right": 1.2589669832790646, "d_left": 1.2294852704124317, "psi_rad": 1.0443723364557504, "kappa_radpm": -0.2537337998361522, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 44, "s_m": 4.4, "d_m": 0.0, "x_m": -5.503302118700426, "y_m": -13.5209969624651, "d_right": 1.259808086445283, "d_left": 1.2441642305465175, "psi_rad": 1.016351853577929, "kappa_radpm": -0.2440028981278447, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 45, "s_m": 4.5, "d_m": 0.0, "x_m": -5.449088378209546, "y_m": -13.437093252606491, "d_right": 1.2647243236006216, "d_left": 1.2516964105024981, "psi_rad": 0.9955717568301815, "kappa_radpm": -0.10772283463813925, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 46, "s_m": 4.6000000000000005, "d_m": 0.0, "x_m": -5.3946017940415185, "y_m": -13.353343832585587, "d_right": 1.263964222645183, "d_left": 1.255409807917563, "psi_rad": 0.9948072866503012, "kappa_radpm": 0.025559128312125368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 47, "s_m": 4.7, "d_m": 0.0, "x_m": -5.340250060902878, "y_m": -13.269508089954664, "d_right": 1.2608264423183546, "d_left": 1.256700498111911, "psi_rad": 1.0006835824926066, "kappa_radpm": 0.012619819166899138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 48, "s_m": 4.800000000000001, "d_m": 0.0, "x_m": -5.2867506756267355, "y_m": -13.185122851620038, "d_right": 1.2533108891311173, "d_left": 1.250060511661305, "psi_rad": 0.997331250483681, "kappa_radpm": -0.019349457027462713, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 49, "s_m": 4.9, "d_m": 0.0, "x_m": -5.231841074333808, "y_m": -13.10165805594207, "d_right": 1.2520548587586144, "d_left": 1.2500294597884491, "psi_rad": 0.996813691087114, "kappa_radpm": 0.022151491952784874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 50, "s_m": 5.0, "d_m": 0.0, "x_m": -5.178255571069237, "y_m": -13.017330092388661, "d_right": 1.2570911574839176, "d_left": 1.2502090652140576, "psi_rad": 1.001761548874238, "kappa_radpm": 0.009436214217696248, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 51, "s_m": 5.1000000000000005, "d_m": 0.0, "x_m": -5.124171084216793, "y_m": -12.933320489329049, "d_right": 1.257743279720025, "d_left": 1.2530488121501087, "psi_rad": 0.9987009339306533, "kappa_radpm": 0.04146159157265128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 52, "s_m": 5.2, "d_m": 0.0, "x_m": -5.070070156591274, "y_m": -12.849321742838953, "d_right": 1.2613569290219586, "d_left": 1.2518643396411324, "psi_rad": 1.0100538671887682, "kappa_radpm": 0.16183018115779768, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 53, "s_m": 5.300000000000001, "d_m": 0.0, "x_m": -5.017909195594498, "y_m": -12.764109433253706, "d_right": 1.265186351598925, "d_left": 1.253425506011626, "psi_rad": 1.0310669701622128, "kappa_radpm": 0.2655596020219597, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 54, "s_m": 5.4, "d_m": 0.0, "x_m": -4.967388840657442, "y_m": -12.67791819627113, "d_right": 1.2721978854396416, "d_left": 1.23836256775169, "psi_rad": 1.0631657875931602, "kappa_radpm": 0.28571761276089847, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 55, "s_m": 5.5, "d_m": 0.0, "x_m": -4.920799108096409, "y_m": -12.589530129804272, "d_right": 1.2832793909778257, "d_left": 1.219085500484343, "psi_rad": 1.0882104927143925, "kappa_radpm": 0.23502772513232073, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 56, "s_m": 5.6000000000000005, "d_m": 0.0, "x_m": -4.8746576807650595, "y_m": -12.500917220304478, "d_right": 1.294544948929146, "d_left": 1.2072933000414126, "psi_rad": 1.1101713326196243, "kappa_radpm": 0.2582856791889021, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 57, "s_m": 5.7, "d_m": 0.0, "x_m": -4.831995970573262, "y_m": -12.410573599643497, "d_right": 1.3107240602664358, "d_left": 1.199819633424334, "psi_rad": 1.139867628552173, "kappa_radpm": 0.31429491127447196, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 58, "s_m": 5.800000000000001, "d_m": 0.0, "x_m": -4.791195279328329, "y_m": -12.319376792615138, "d_right": 1.305999358751075, "d_left": 1.1985962367807155, "psi_rad": 1.1730303148745187, "kappa_radpm": 0.3294380260462404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 59, "s_m": 5.9, "d_m": 0.0, "x_m": -4.754630065768118, "y_m": -12.226440252366412, "d_right": 1.3086681582760076, "d_left": 1.1997235724804989, "psi_rad": 1.205755233761421, "kappa_radpm": 0.28482803926791034, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 60, "s_m": 6.0, "d_m": 0.0, "x_m": -4.719877784734285, "y_m": -12.132764413981468, "d_right": 1.3208576101892002, "d_left": 1.1932169462393711, "psi_rad": 1.2299959227281008, "kappa_radpm": 0.22638503656197573, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 61, "s_m": 6.1000000000000005, "d_m": 0.0, "x_m": -4.687845611610386, "y_m": -12.038122835140928, "d_right": 1.3432026280663945, "d_left": 1.1867346330798767, "psi_rad": 1.2510322410738162, "kappa_radpm": 0.19440263857571471, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 62, "s_m": 6.2, "d_m": 0.0, "x_m": -4.657068040459997, "y_m": -11.943080003499084, "d_right": 1.37371292565221, "d_left": 1.1801633502185949, "psi_rad": 1.2688764504432437, "kappa_radpm": 0.18727441030544356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 63, "s_m": 6.300000000000001, "d_m": 0.0, "x_m": -4.628433088177426, "y_m": -11.847356345292344, "d_right": 1.4127084822975586, "d_left": 1.169035840161264, "psi_rad": 1.2884871231349049, "kappa_radpm": 0.19234501717956154, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 64, "s_m": 6.4, "d_m": 0.0, "x_m": -4.601402937511721, "y_m": -11.751168522312076, "d_right": 1.4589838122961705, "d_left": 1.1574676131628499, "psi_rad": 1.307345453879156, "kappa_radpm": 0.24396997901472872, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 65, "s_m": 6.5, "d_m": 0.0, "x_m": -4.576401833584522, "y_m": -11.654447966161287, "d_right": 1.512206508813454, "d_left": 1.1517232648473839, "psi_rad": 1.3372811189378506, "kappa_radpm": 0.33830280882395813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 66, "s_m": 6.6000000000000005, "d_m": 0.0, "x_m": -4.5551780477473605, "y_m": -11.556827368210456, "d_right": 1.5545153911783236, "d_left": 1.1507486083250218, "psi_rad": 1.3750060156439476, "kappa_radpm": 0.4179621182998028, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 67, "s_m": 6.7, "d_m": 0.0, "x_m": -4.537538009190047, "y_m": -11.45849367986522, "d_right": 1.5659447170666858, "d_left": 1.1547859331120567, "psi_rad": 1.4208735425978112, "kappa_radpm": 0.37965909587821756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 68, "s_m": 6.800000000000001, "d_m": 0.0, "x_m": -4.5253461446138195, "y_m": -11.35933864978918, "d_right": 1.5537507453087933, "d_left": 1.1619356599642077, "psi_rad": 1.4509378348195912, "kappa_radpm": 0.1693250616898634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 69, "s_m": 6.9, "d_m": 0.0, "x_m": -4.513645658822154, "y_m": -11.260111176599615, "d_right": 1.5420485909883668, "d_left": 1.1770635439056187, "psi_rad": 1.4547385549357839, "kappa_radpm": 0.14215377095759374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 70, "s_m": 7.0, "d_m": 0.0, "x_m": -4.502207355620914, "y_m": -11.160861575552845, "d_right": 1.5272788732982339, "d_left": 1.2000898311051464, "psi_rad": 1.47936858901111, "kappa_radpm": 0.3137539806435874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 71, "s_m": 7.1000000000000005, "d_m": 0.0, "x_m": -4.495407674888784, "y_m": -11.061187537665607, "d_right": 1.4992441499841294, "d_left": 1.2263058549214423, "psi_rad": 1.5174893510645013, "kappa_radpm": 0.4038605218484892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 72, "s_m": 7.2, "d_m": 0.0, "x_m": -4.491562673697507, "y_m": -10.961364284533781, "d_right": 1.4803624785287088, "d_left": 1.235523409451035, "psi_rad": 1.5601406933808077, "kappa_radpm": 0.36533959251731973, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 73, "s_m": 7.300000000000001, "d_m": 0.0, "x_m": -4.49327962909001, "y_m": -10.861484228229191, "d_right": 1.4611230738001453, "d_left": 1.247196425725416, "psi_rad": 1.5905572695679653, "kappa_radpm": 0.265565750118667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 74, "s_m": 7.4, "d_m": 0.0, "x_m": -4.495510477133606, "y_m": -10.761612197682354, "d_right": 1.4405317886645672, "d_left": 1.2661643667603937, "psi_rad": 1.6132538434045411, "kappa_radpm": 0.2834246732504042, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 75, "s_m": 7.5, "d_m": 0.0, "x_m": -4.501757952958166, "y_m": -10.661914647265437, "d_right": 1.4198360108048989, "d_left": 1.2703721308628393, "psi_rad": 1.6472422042180461, "kappa_radpm": 0.3181837482896832, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 76, "s_m": 7.6000000000000005, "d_m": 0.0, "x_m": -4.510768408776905, "y_m": -10.562409856613286, "d_right": 1.4013196327635276, "d_left": 1.26135227286453, "psi_rad": 1.6768905930624778, "kappa_radpm": 0.24604241498238255, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 77, "s_m": 7.7, "d_m": 0.0, "x_m": -4.522915081592479, "y_m": -10.463245216348682, "d_right": 1.386616401901321, "d_left": 1.249187838586595, "psi_rad": 1.6964506872145226, "kappa_radpm": 0.1387111542475905, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 78, "s_m": 7.800000000000001, "d_m": 0.0, "x_m": -4.535810082462669, "y_m": -10.364169698569347, "d_right": 1.3718151116403594, "d_left": 1.2362730462938258, "psi_rad": 1.7046328239119959, "kappa_radpm": 0.025017423215758505, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 79, "s_m": 7.9, "d_m": 0.0, "x_m": -4.54957892431433, "y_m": -10.265209179161154, "d_right": 1.3602184433978013, "d_left": 1.222481815089072, "psi_rad": 1.7014541718576743, "kappa_radpm": -0.09681980811838908, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 80, "s_m": 8.0, "d_m": 0.0, "x_m": -4.56184268989181, "y_m": -10.16606218935365, "d_right": 1.3488926148794487, "d_left": 1.21020045006382, "psi_rad": 1.685268862288318, "kappa_radpm": -0.1551989605562487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 81, "s_m": 8.1, "d_m": 0.0, "x_m": -4.572401758980482, "y_m": -10.066706913770162, "d_right": 1.33053714057073, "d_left": 1.1996289159461353, "psi_rad": 1.6704143797464246, "kappa_radpm": -0.14988244256492478, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 82, "s_m": 8.200000000000001, "d_m": 0.0, "x_m": -4.581715946980628, "y_m": -9.967228003705147, "d_right": 1.3089490479914898, "d_left": 1.1903051858166058, "psi_rad": 1.6552923737753331, "kappa_radpm": -0.1046361627200687, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 83, "s_m": 8.3, "d_m": 0.0, "x_m": -4.589265594951251, "y_m": -9.867600755827226, "d_right": 1.2925170958173695, "d_left": 1.1827493372760134, "psi_rad": 1.6494871472024109, "kappa_radpm": -0.010208954396383474, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 84, "s_m": 8.4, "d_m": 0.0, "x_m": -4.597423633106078, "y_m": -9.768027503520068, "d_right": 1.2704820649004878, "d_left": 1.1814399058109601, "psi_rad": 1.6532505828960564, "kappa_radpm": -0.009296003017008614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 85, "s_m": 8.5, "d_m": 0.0, "x_m": -4.60572306706841, "y_m": -9.66845811016702, "d_right": 1.2561697620485428, "d_left": 1.1884173427895544, "psi_rad": 1.6476279465990091, "kappa_radpm": -0.100143188817432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 86, "s_m": 8.6, "d_m": 0.0, "x_m": -4.6127613997831025, "y_m": -9.568792153282201, "d_right": 1.2484422674118503, "d_left": 1.2049158343892923, "psi_rad": 1.63322194513257, "kappa_radpm": -0.11193934019474883, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 87, "s_m": 8.700000000000001, "d_m": 0.0, "x_m": -4.618188926304397, "y_m": -9.469026172075596, "d_right": 1.2470740953184363, "d_left": 1.2044245499418522, "psi_rad": 1.6252400785600594, "kappa_radpm": -0.10355312630292102, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 88, "s_m": 8.8, "d_m": 0.0, "x_m": -4.623635156048195, "y_m": -9.369264933436487, "d_right": 1.242274326917465, "d_left": 1.199029584402643, "psi_rad": 1.6125113198719858, "kappa_radpm": -0.11155788628398833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 89, "s_m": 8.9, "d_m": 0.0, "x_m": -4.626521128412702, "y_m": -9.269400860756827, "d_right": 1.2237335000394294, "d_left": 1.2044970351363948, "psi_rad": 1.6029285013032617, "kappa_radpm": -0.07050356715730621, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 90, "s_m": 9.0, "d_m": 0.0, "x_m": -4.630053802516165, "y_m": -9.169576073908598, "d_right": 1.2138104158770264, "d_left": 1.2120056557164962, "psi_rad": 1.5984106064405246, "kappa_radpm": -0.1598664647405812, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 91, "s_m": 9.1, "d_m": 0.0, "x_m": -4.632037411990887, "y_m": -9.069689644922411, "d_right": 1.210515795064918, "d_left": 1.226802192302651, "psi_rad": 1.5709552083551455, "kappa_radpm": -0.2805840163318818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 92, "s_m": 9.200000000000001, "d_m": 0.0, "x_m": -4.630085542967069, "y_m": -8.969801785518992, "d_right": 1.2085630539108028, "d_left": 1.2435330771293198, "psi_rad": 1.5422938031741482, "kappa_radpm": -0.26814916103974573, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 93, "s_m": 9.3, "d_m": 0.0, "x_m": -4.6263431048701005, "y_m": -8.869961189073628, "d_right": 1.2048204113128613, "d_left": 1.2568932013973415, "psi_rad": 1.5173253761471963, "kappa_radpm": -0.2093113381691103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 94, "s_m": 9.4, "d_m": 0.0, "x_m": -4.619407483275614, "y_m": -8.770293811121473, "d_right": 1.1978868205829913, "d_left": 1.2810323758734914, "psi_rad": 1.5004315355403262, "kappa_radpm": -0.10025576678011405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 95, "s_m": 9.5, "d_m": 0.0, "x_m": -4.612294374918751, "y_m": -8.670635134061127, "d_right": 1.1907758981861376, "d_left": 1.3093412131689048, "psi_rad": 1.4972742227911735, "kappa_radpm": -0.11724757817621279, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 96, "s_m": 9.600000000000001, "d_m": 0.0, "x_m": -4.6047296479442545, "y_m": -8.571015254250787, "d_right": 1.18321390496912, "d_left": 1.3169081860426262, "psi_rad": 1.4769820199050836, "kappa_radpm": -0.2167448853594589, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 97, "s_m": 9.700000000000001, "d_m": 0.0, "x_m": -4.593579270024515, "y_m": -8.471729779249666, "d_right": 1.1720708047578758, "d_left": 1.3280633035394145, "psi_rad": 1.4539252457192817, "kappa_radpm": -0.1987009875103074, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 98, "s_m": 9.8, "d_m": 0.0, "x_m": -4.581429821784297, "y_m": -8.372560287613533, "d_right": 1.1481662546313613, "d_left": 1.3402186685186281, "psi_rad": 1.4372418224030221, "kappa_radpm": -0.21594911098941516, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 99, "s_m": 9.9, "d_m": 0.0, "x_m": -4.56697344210382, "y_m": -8.273702374960278, "d_right": 1.1126570677046068, "d_left": 1.3546839851632335, "psi_rad": 1.4107354235213987, "kappa_radpm": -0.21571370177637994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 100, "s_m": 10.0, "d_m": 0.0, "x_m": -4.549586116971769, "y_m": -8.175314747249477, "d_right": 1.0823367728970246, "d_left": 1.3540669485182968, "psi_rad": 1.3940990820477461, "kappa_radpm": -0.07558150322794832, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 101, "s_m": 10.100000000000001, "d_m": 0.0, "x_m": -4.531848967815764, "y_m": -8.076992120334372, "d_right": 1.0602465839508526, "d_left": 1.3538046457651915, "psi_rad": 1.395619122875809, "kappa_radpm": 0.0429948363561139, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 102, "s_m": 10.200000000000001, "d_m": 0.0, "x_m": -4.514761205428454, "y_m": -7.9785542371067395, "d_right": 1.0479189039740395, "d_left": 1.3596571969701154, "psi_rad": 1.402698049318969, "kappa_radpm": 0.06274373670373756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 103, "s_m": 10.3, "d_m": 0.0, "x_m": -4.498417989920408, "y_m": -7.879991312935023, "d_right": 1.0457950619016814, "d_left": 1.3213585336091183, "psi_rad": 1.4081678702165565, "kappa_radpm": 0.05049564710262966, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 104, "s_m": 10.4, "d_m": 0.0, "x_m": -4.482407301871458, "y_m": -7.7813675462558916, "d_right": 1.0535237809861668, "d_left": 1.2864889496286398, "psi_rad": 1.4127971787394948, "kappa_radpm": 0.017303224928744143, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 105, "s_m": 10.5, "d_m": 0.0, "x_m": -4.46697631874193, "y_m": -7.682651002586719, "d_right": 1.0711351466673753, "d_left": 1.25803524839558, "psi_rad": 1.4116285152023054, "kappa_radpm": -0.07749278303218698, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 106, "s_m": 10.600000000000001, "d_m": 0.0, "x_m": -4.450735128775256, "y_m": -7.584064744476735, "d_right": 1.0968129861077909, "d_left": 1.2352726124356137, "psi_rad": 1.3972986221330574, "kappa_radpm": -0.19669517859517205, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 107, "s_m": 10.700000000000001, "d_m": 0.0, "x_m": -4.432482024050511, "y_m": -7.485832902131533, "d_right": 1.1191947673283564, "d_left": 1.2145200450955524, "psi_rad": 1.372289479483271, "kappa_radpm": -0.3591338439021441, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 108, "s_m": 10.8, "d_m": 0.0, "x_m": -4.411333129625201, "y_m": -7.388186918997589, "d_right": 1.1369380525888815, "d_left": 1.2002014548044158, "psi_rad": 1.3254718533526286, "kappa_radpm": -0.5151429434642163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 109, "s_m": 10.9, "d_m": 0.0, "x_m": -4.383983352402444, "y_m": -7.292122934511551, "d_right": 1.1528288120288188, "d_left": 1.1852276439792462, "psi_rad": 1.2692608907904277, "kappa_radpm": -0.6002655188293993, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 110, "s_m": 11.0, "d_m": 0.0, "x_m": -4.352017836266642, "y_m": -7.197474406081973, "d_right": 1.165098772216255, "d_left": 1.1786171537265382, "psi_rad": 1.2054187495867488, "kappa_radpm": -0.7467867973251174, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 111, "s_m": 11.100000000000001, "d_m": 0.0, "x_m": -4.312670960920807, "y_m": -7.105712031507168, "d_right": 1.1773420338078917, "d_left": 1.171223090955443, "psi_rad": 1.1199035313254042, "kappa_radpm": -0.8951033435408806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 112, "s_m": 11.200000000000001, "d_m": 0.0, "x_m": -4.265072884339032, "y_m": -7.017894202989407, "d_right": 1.1888610333558165, "d_left": 1.1648194150161149, "psi_rad": 1.0263980808785726, "kappa_radpm": -0.9482430991822804, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 113, "s_m": 11.3, "d_m": 0.0, "x_m": -4.209327255540636, "y_m": -6.9350156382199675, "d_right": 1.1992002000818898, "d_left": 1.175509783224591, "psi_rad": 0.9302549114889481, "kappa_radpm": -1.0650835866063084, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 114, "s_m": 11.4, "d_m": 0.0, "x_m": -4.145870590632884, "y_m": -6.8579739195608145, "d_right": 1.2081423414306423, "d_left": 1.2021548418430148, "psi_rad": 0.8133813635573109, "kappa_radpm": -1.2525141487939677, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 115, "s_m": 11.5, "d_m": 0.0, "x_m": -4.072489142979872, "y_m": -6.790296598319734, "d_right": 1.2116755942035438, "d_left": 1.2432699131048208, "psi_rad": 0.6797520817301546, "kappa_radpm": -1.3642089554528374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 116, "s_m": 11.600000000000001, "d_m": 0.0, "x_m": -3.9909341519450527, "y_m": -6.732746323436975, "d_right": 1.2068633229768768, "d_left": 1.2974902446916718, "psi_rad": 0.5405395724667434, "kappa_radpm": -1.384408940137073, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 117, "s_m": 11.700000000000001, "d_m": 0.0, "x_m": -3.901804167167404, "y_m": -6.687857738276883, "d_right": 1.1915111897593402, "d_left": 1.3496680963079586, "psi_rad": 0.40287029370273997, "kappa_radpm": -1.2957295520796752, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 118, "s_m": 11.8, "d_m": 0.0, "x_m": -3.807664233651912, "y_m": -6.654640219649748, "d_right": 1.171748882813367, "d_left": 1.4115596040702827, "psi_rad": 0.2813936620508084, "kappa_radpm": -1.1517971150180684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 119, "s_m": 11.9, "d_m": 0.0, "x_m": -3.7103159633876497, "y_m": -6.63250542428512, "d_right": 1.1488293087702957, "d_left": 1.3624927421423134, "psi_rad": 0.1725108706991263, "kappa_radpm": -1.0058688551567352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 120, "s_m": 12.0, "d_m": 0.0, "x_m": -3.6111889656249634, "y_m": -6.620405819140489, "d_right": 1.1241898919963491, "d_left": 1.3144187628693, "psi_rad": 0.08021989101946136, "kappa_radpm": -0.8434249406161998, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 121, "s_m": 12.100000000000001, "d_m": 0.0, "x_m": -3.5113868703557047, "y_m": -6.616513034488062, "d_right": 1.0999034732815354, "d_left": 1.280090982276237, "psi_rad": 0.0038258825758863413, "kappa_radpm": -0.6937540042462464, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 122, "s_m": 12.200000000000001, "d_m": 0.0, "x_m": -3.411544351353972, "y_m": -6.619641998562599, "d_right": 1.077359861587894, "d_left": 1.2596801763761964, "psi_rad": -0.058530909829787925, "kappa_radpm": -0.5299898028383632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 123, "s_m": 12.3, "d_m": 0.0, "x_m": -3.312007575921528, "y_m": -6.628196230734372, "d_right": 1.0583586492942627, "d_left": 1.237766123363072, "psi_rad": -0.10217207799178629, "kappa_radpm": -0.32430429674297323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 124, "s_m": 12.4, "d_m": 0.0, "x_m": -3.212796496652247, "y_m": -6.640019436870362, "d_right": 1.0452936864930744, "d_left": 1.2109784548862856, "psi_rad": -0.12339176917838257, "kappa_radpm": -0.027914266117674558, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 125, "s_m": 12.5, "d_m": 0.0, "x_m": -3.113706784546974, "y_m": -6.652789860092419, "d_right": 1.0325062924118529, "d_left": 1.1865745952630606, "psi_rad": -0.1077549312153212, "kappa_radpm": 0.16148879004986294, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 126, "s_m": 12.600000000000001, "d_m": 0.0, "x_m": -3.014174380268603, "y_m": -6.661505171653004, "d_right": 1.0320601083443592, "d_left": 1.1661813298366737, "psi_rad": -0.09109401116840998, "kappa_radpm": 0.14803910741891135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 127, "s_m": 12.700000000000001, "d_m": 0.0, "x_m": -2.9147135089492204, "y_m": -6.670967263015871, "d_right": 1.0390014258147726, "d_left": 1.154855729843589, "psi_rad": -0.07814710973153893, "kappa_radpm": 0.1765632183734167, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 128, "s_m": 12.8, "d_m": 0.0, "x_m": -2.814990673927205, "y_m": -6.677102566488256, "d_right": 1.0512122274182019, "d_left": 1.1345647178306293, "psi_rad": -0.05578136749372664, "kappa_radpm": 0.11186171139202061, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 129, "s_m": 12.9, "d_m": 0.0, "x_m": -2.715212263951948, "y_m": -6.682107271948313, "d_right": 1.0737196470248247, "d_left": 1.1037544851237096, "psi_rad": -0.05577476745313481, "kappa_radpm": -0.07485375435522523, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 130, "s_m": 13.0, "d_m": 0.0, "x_m": -2.6154871501232253, "y_m": -6.688241381831186, "d_right": 1.1037788919540166, "d_left": 1.0798900623929426, "psi_rad": -0.07075211836477169, "kappa_radpm": -0.18158804265006934, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 131, "s_m": 13.100000000000001, "d_m": 0.0, "x_m": -2.5159357348550304, "y_m": -6.696230082004387, "d_right": 1.1344666550534521, "d_left": 1.0442502412418462, "psi_rad": -0.09209237598314868, "kappa_radpm": -0.1457128536970509, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 132, "s_m": 13.200000000000001, "d_m": 0.0, "x_m": -2.4165658407656108, "y_m": -6.7066124823677, "d_right": 1.1686766852255797, "d_left": 1.0195402074263828, "psi_rad": -0.09989468910418187, "kappa_radpm": 0.03729377094745745, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 133, "s_m": 13.3, "d_m": 0.0, "x_m": -2.3171100789704338, "y_m": -6.716158039916269, "d_right": 1.2109408754147861, "d_left": 1.0033698488832479, "psi_rad": -0.08463362179365719, "kappa_radpm": 0.0523284084768838, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 134, "s_m": 13.4, "d_m": 0.0, "x_m": -2.217467640876346, "y_m": -6.723503232022977, "d_right": 1.2616043747549326, "d_left": 0.9947904138188048, "psi_rad": -0.0894290074088051, "kappa_radpm": -0.04688181893189092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 135, "s_m": 13.5, "d_m": 0.0, "x_m": -2.118105898193541, "y_m": -6.734002381979366, "d_right": 1.3083457033317571, "d_left": 0.9993642598052209, "psi_rad": -0.09400998558003537, "kappa_radpm": 0.15016704013691928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 136, "s_m": 13.600000000000001, "d_m": 0.0, "x_m": -2.018537564147176, "y_m": -6.7422599347314, "d_right": 1.3572888303058235, "d_left": 1.0076252146723494, "psi_rad": -0.05939559938142125, "kappa_radpm": 0.4453196996495945, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 137, "s_m": 13.700000000000001, "d_m": 0.0, "x_m": -1.918697064801198, "y_m": -6.745860336752731, "d_right": 1.415390795839236, "d_left": 1.011226632399255, "psi_rad": -0.004946045650116471, "kappa_radpm": 0.6245030091416892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 138, "s_m": 13.8, "d_m": 0.0, "x_m": -1.8188336305999016, "y_m": -6.743247687557832, "d_right": 1.4825799458075195, "d_left": 1.0125625121653758, "psi_rad": 0.0655050024469166, "kappa_radpm": 0.7742929517092223, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 139, "s_m": 13.9, "d_m": 0.0, "x_m": -1.7195043255009506, "y_m": -6.732793521039154, "d_right": 1.4204062407204352, "d_left": 1.015887853780159, "psi_rad": 0.149912544691728, "kappa_radpm": 0.8914553287359028, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 140, "s_m": 14.0, "d_m": 0.0, "x_m": -1.621525250672545, "y_m": -6.713445092116121, "d_right": 1.337979254714213, "d_left": 1.020028133336374, "psi_rad": 0.24379606819409716, "kappa_radpm": 0.9833493972943363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 141, "s_m": 14.100000000000001, "d_m": 0.0, "x_m": -1.5259282585804164, "y_m": -6.684642662238627, "d_right": 1.2599649529135275, "d_left": 1.0241848415481705, "psi_rad": 0.34658242415059526, "kappa_radpm": 1.0429531724944874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 142, "s_m": 14.200000000000001, "d_m": 0.0, "x_m": -1.4339840130291044, "y_m": -6.645712632743711, "d_right": 1.1929592143437835, "d_left": 1.0273029356911776, "psi_rad": 0.45238670269299464, "kappa_radpm": 1.079683091374396, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 143, "s_m": 14.3, "d_m": 0.0, "x_m": -1.3465693611646132, "y_m": -6.597473863233672, "d_right": 1.1394522857673004, "d_left": 1.0266623252238896, "psi_rad": 0.5625190424254745, "kappa_radpm": 1.1107104739717137, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 144, "s_m": 14.4, "d_m": 0.0, "x_m": -1.2653748785859964, "y_m": -6.5394105953484445, "d_right": 1.0978187512054312, "d_left": 1.0181797095969656, "psi_rad": 0.6745287974873374, "kappa_radpm": 1.105618938461027, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 145, "s_m": 14.5, "d_m": 0.0, "x_m": -1.1908307151587698, "y_m": -6.472937121415179, "d_right": 1.0696760795781979, "d_left": 1.0087260640914153, "psi_rad": 0.7836428301176799, "kappa_radpm": 1.018851287837772, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 146, "s_m": 14.600000000000001, "d_m": 0.0, "x_m": -1.124120475338255, "y_m": -6.398651220778686, "d_right": 1.0380606559542083, "d_left": 0.998053799699083, "psi_rad": 0.8782990550548918, "kappa_radpm": 0.8452138701449924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 147, "s_m": 14.700000000000001, "d_m": 0.0, "x_m": -1.0634084188991653, "y_m": -6.319331734371996, "d_right": 1.0230625219217093, "d_left": 0.9849005417587484, "psi_rad": 0.9526856041466784, "kappa_radpm": 0.6950989629131149, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 148, "s_m": 14.8, "d_m": 0.0, "x_m": -1.0084271416083022, "y_m": -6.23594592841727, "d_right": 1.0247164058934826, "d_left": 0.969286275471116, "psi_rad": 1.0173188476375148, "kappa_radpm": 0.6772866100015712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 149, "s_m": 14.9, "d_m": 0.0, "x_m": -0.9584345208827694, "y_m": -6.149443598840187, "d_right": 1.0418228928611193, "d_left": 0.9579432161410555, "psi_rad": 1.0881429261469926, "kappa_radpm": 0.6904589505277448, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 150, "s_m": 15.0, "d_m": 0.0, "x_m": -0.9157660142297495, "y_m": -6.059107694554582, "d_right": 1.0496632305326508, "d_left": 0.9486859048518141, "psi_rad": 1.1554106377430637, "kappa_radpm": 0.6496281098915724, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 151, "s_m": 15.100000000000001, "d_m": 0.0, "x_m": -0.8778345086399579, "y_m": -5.966697585040805, "d_right": 1.0544251227879677, "d_left": 0.9447359012532253, "psi_rad": 1.218068548125307, "kappa_radpm": 0.6044267588097185, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 152, "s_m": 15.200000000000001, "d_m": 0.0, "x_m": -0.8467977945826775, "y_m": -5.871756586363534, "d_right": 1.075704272763026, "d_left": 0.9377264791771825, "psi_rad": 1.2762959895050074, "kappa_radpm": 0.47883352023680104, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 153, "s_m": 15.3, "d_m": 0.0, "x_m": -0.8198559825882632, "y_m": -5.775551502479391, "d_right": 1.1005020052124532, "d_left": 0.9255281548804624, "psi_rad": 1.3138352521726673, "kappa_radpm": 0.37198962187469653, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 154, "s_m": 15.4, "d_m": 0.0, "x_m": -0.796022624113824, "y_m": -5.67852624759753, "d_right": 1.1120599645452849, "d_left": 0.9106708379694519, "psi_rad": 1.3506939138799468, "kappa_radpm": 0.328515649844876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 155, "s_m": 15.5, "d_m": 0.0, "x_m": -0.776243006129293, "y_m": -5.58061309708865, "d_right": 1.1309783483355678, "d_left": 0.9007923796580111, "psi_rad": 1.3795383821416425, "kappa_radpm": 0.167177876766188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 156, "s_m": 15.600000000000001, "d_m": 0.0, "x_m": -0.7580418474703279, "y_m": -5.482369501338355, "d_right": 1.1530226424789574, "d_left": 0.8936188137206988, "psi_rad": 1.3841294892331844, "kappa_radpm": 0.018137083661818876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 157, "s_m": 15.700000000000001, "d_m": 0.0, "x_m": -0.7391578196153186, "y_m": -5.384255539918145, "d_right": 1.182466777893028, "d_left": 0.8951768537305164, "psi_rad": 1.3831657988740063, "kappa_radpm": 0.02615865609843726, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 158, "s_m": 15.8, "d_m": 0.0, "x_m": -0.720768642403749, "y_m": -5.286054052594976, "d_right": 1.2198660611286094, "d_left": 0.9073009336600764, "psi_rad": 1.3893612204528718, "kappa_radpm": -0.025315436273402048, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 159, "s_m": 15.9, "d_m": 0.0, "x_m": -0.703102209187754, "y_m": -5.187716371824499, "d_right": 1.2512720755067515, "d_left": 0.9293540205278797, "psi_rad": 1.3781027116193258, "kappa_radpm": -0.24940311077519262, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 160, "s_m": 16.0, "d_m": 0.0, "x_m": -0.6825070127003312, "y_m": -5.0899557478120325, "d_right": 1.2725450368877955, "d_left": 0.9640953525945514, "psi_rad": 1.3394805982978333, "kappa_radpm": -0.3576092536324249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 161, "s_m": 16.1, "d_m": 0.0, "x_m": -0.6573107863954838, "y_m": -4.99329909301225, "d_right": 1.283831457946271, "d_left": 1.011684009325711, "psi_rad": 1.3065808608928409, "kappa_radpm": -0.15957788966185493, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 162, "s_m": 16.2, "d_m": 0.0, "x_m": -0.6303314443069478, "y_m": -4.897098915363582, "d_right": 1.299591279907347, "d_left": 1.0680311896592045, "psi_rad": 1.3075650203654623, "kappa_radpm": 0.11416974625853893, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 163, "s_m": 16.3, "d_m": 0.0, "x_m": -0.605318717115446, "y_m": -4.800367523011786, "d_right": 1.3246884455820889, "d_left": 1.1288588982627743, "psi_rad": 1.3294148101445487, "kappa_radpm": 0.35543392915209027, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 164, "s_m": 16.400000000000002, "d_m": 0.0, "x_m": -0.582571930245001, "y_m": -4.703097644414314, "d_right": 1.3574166999855912, "d_left": 1.1932290142005704, "psi_rad": 1.3786518061958803, "kappa_radpm": 0.6222786164544214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 165, "s_m": 16.5, "d_m": 0.0, "x_m": -0.5671994041808328, "y_m": -4.604426267077528, "d_right": 1.3917898499940453, "d_left": 1.2567469317851456, "psi_rad": 1.453870533435433, "kappa_radpm": 0.8500274029099097, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 166, "s_m": 16.6, "d_m": 0.0, "x_m": -0.5592871888382436, "y_m": -4.5048648135279, "d_right": 1.433495592639225, "d_left": 1.3192228128214383, "psi_rad": 1.5486572867778623, "kappa_radpm": 1.0246558224624636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 167, "s_m": 16.7, "d_m": 0.0, "x_m": -0.5627862267403403, "y_m": -4.405119684999771, "d_right": 1.441451156897792, "d_left": 1.3773575444908779, "psi_rad": 1.6588016979279256, "kappa_radpm": 1.1289985053007645, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 168, "s_m": 16.8, "d_m": 0.0, "x_m": -0.5768113464950564, "y_m": -4.306253151072391, "d_right": 1.455456139720292, "d_left": 1.4317301917969951, "psi_rad": 1.7744569878380152, "kappa_radpm": 1.224487478753714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 169, "s_m": 16.900000000000002, "d_m": 0.0, "x_m": -0.6030884546266901, "y_m": -4.209974158738054, "d_right": 1.481669174128437, "d_left": 1.4804495787890886, "psi_rad": 1.9036991936786685, "kappa_radpm": 1.2093436273071645, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 170, "s_m": 17.0, "d_m": 0.0, "x_m": -0.6419018280733694, "y_m": -4.118006077514243, "d_right": 1.5144425586952488, "d_left": 1.5178951612873028, "psi_rad": 2.016325713299448, "kappa_radpm": 1.0427896283176186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 171, "s_m": 17.1, "d_m": 0.0, "x_m": -0.6890482365357717, "y_m": -4.02997369531582, "d_right": 1.5360240388939819, "d_left": 1.5467433016603305, "psi_rad": 2.112257119342192, "kappa_radpm": 0.9389162495624737, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 172, "s_m": 17.2, "d_m": 0.0, "x_m": -0.7447087361567301, "y_m": -3.9470649490220566, "d_right": 1.5482288825966957, "d_left": 1.570243786062445, "psi_rad": 2.204108963211943, "kappa_radpm": 0.8099039695208643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 173, "s_m": 17.3, "d_m": 0.0, "x_m": -0.8071698499399989, "y_m": -3.869089056445288, "d_right": 1.5710814814982574, "d_left": 1.5916011866892172, "psi_rad": 2.274237913246365, "kappa_radpm": 0.6036438942349376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 174, "s_m": 17.400000000000002, "d_m": 0.0, "x_m": -0.8739024669378741, "y_m": -3.7947477503700084, "d_right": 1.5958481004038183, "d_left": 1.6134585372743608, "psi_rad": 2.3248377420589303, "kappa_radpm": 0.49792436341157265, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 175, "s_m": 17.5, "d_m": 0.0, "x_m": -0.9439142538757822, "y_m": -3.7234883243533825, "d_right": 1.5991454768119977, "d_left": 1.633938923374522, "psi_rad": 2.3738227859286796, "kappa_radpm": 0.4182452636334566, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 176, "s_m": 17.6, "d_m": 0.0, "x_m": -1.0176086077045012, "y_m": -3.6560209370411862, "d_right": 1.6035480881266055, "d_left": 1.6523309282803784, "psi_rad": 2.4084867947856217, "kappa_radpm": 0.2989499702670817, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 177, "s_m": 17.7, "d_m": 0.0, "x_m": -1.0924008536354564, "y_m": -3.5897722200404303, "d_right": 1.6095868325890812, "d_left": 1.6718317679925365, "psi_rad": 2.433612779982096, "kappa_radpm": 0.27125219082448915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 178, "s_m": 17.8, "d_m": 0.0, "x_m": -1.1693888220992263, "y_m": -3.52609370789131, "d_right": 1.6189900374510215, "d_left": 1.6698444375908288, "psi_rad": 2.4627372329505195, "kappa_radpm": 0.2343940056676974, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 179, "s_m": 17.900000000000002, "d_m": 0.0, "x_m": -1.2479096995793664, "y_m": -3.464312337972804, "d_right": 1.6308136930962354, "d_left": 1.6580302223075614, "psi_rad": 2.4804915811156354, "kappa_radpm": 0.06974355985014835, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 180, "s_m": 18.0, "d_m": 0.0, "x_m": -1.327108165343396, "y_m": -3.403408449796926, "d_right": 1.6291242315007517, "d_left": 1.645564654008948, "psi_rad": 2.476685944920549, "kappa_radpm": -0.0727844992657567, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 181, "s_m": 18.1, "d_m": 0.0, "x_m": -1.405158799034106, "y_m": -3.341029477854275, "d_right": 1.627521937537442, "d_left": 1.640973299249444, "psi_rad": 2.465934681262484, "kappa_radpm": -0.11815476785749013, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 182, "s_m": 18.2, "d_m": 0.0, "x_m": -1.4830313250794165, "y_m": -3.2784352523636104, "d_right": 1.6317675530101512, "d_left": 1.6427373011117765, "psi_rad": 2.453054991349051, "kappa_radpm": -0.13164483298676588, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 183, "s_m": 18.3, "d_m": 0.0, "x_m": -1.5594493432004715, "y_m": -3.2140667800492366, "d_right": 1.6392813745118286, "d_left": 1.6528365368758169, "psi_rad": 2.439605714665131, "kappa_radpm": -0.04678627442842531, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 184, "s_m": 18.400000000000002, "d_m": 0.0, "x_m": -1.6356131162227872, "y_m": -3.149398258068992, "d_right": 1.6294551228917358, "d_left": 1.6549007774709052, "psi_rad": 2.443697736463366, "kappa_radpm": 0.08010486179838683, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 185, "s_m": 18.5, "d_m": 0.0, "x_m": -1.7125549994864377, "y_m": -3.0856576462295457, "d_right": 1.6178218508591606, "d_left": 1.6589485288806824, "psi_rad": 2.4556266870248082, "kappa_radpm": 0.12906788645060452, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 186, "s_m": 18.6, "d_m": 0.0, "x_m": -1.7902394446729368, "y_m": -3.022824757867088, "d_right": 1.6052981979056735, "d_left": 1.6569908852403747, "psi_rad": 2.469511313753487, "kappa_radpm": 0.11285012772757952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 187, "s_m": 18.7, "d_m": 0.0, "x_m": -1.8689204852252301, "y_m": -2.961245838016059, "d_right": 1.59580951419919, "d_left": 1.644906537463116, "psi_rad": 2.478196712570324, "kappa_radpm": 0.09565618323441827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 188, "s_m": 18.8, "d_m": 0.0, "x_m": -1.9476838087536983, "y_m": -2.899772420787561, "d_right": 1.5857215627922334, "d_left": 1.6326900995991385, "psi_rad": 2.4886425504003706, "kappa_radpm": 0.18737958385613096, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 189, "s_m": 18.900000000000002, "d_m": 0.0, "x_m": -2.0276323166824817, "y_m": -2.8398519392778874, "d_right": 1.5603280929935543, "d_left": 1.6185412511222745, "psi_rad": 2.5156726293415503, "kappa_radpm": 0.2450584872228445, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 190, "s_m": 19.0, "d_m": 0.0, "x_m": -2.10960081190406, "y_m": -2.7827251606470482, "d_right": 1.5389215346802831, "d_left": 1.6009968307033147, "psi_rad": 2.5376542478449395, "kappa_radpm": 0.1565946327171286, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 191, "s_m": 19.1, "d_m": 0.0, "x_m": -2.1921085724112626, "y_m": -2.7263741439573534, "d_right": 1.5022286261279305, "d_left": 1.582527119132723, "psi_rad": 2.546991555884976, "kappa_radpm": 0.06413767778382651, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 192, "s_m": 19.200000000000003, "d_m": 0.0, "x_m": -2.2751326849361995, "y_m": -2.6707858740433545, "d_right": 1.4595635842922448, "d_left": 1.5631584059298804, "psi_rad": 2.550481783401705, "kappa_radpm": 0.017930811611861497, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 193, "s_m": 19.3, "d_m": 0.0, "x_m": -2.358031782579845, "y_m": -2.6150121727283944, "d_right": 1.4224377413056957, "d_left": 1.5455351369116923, "psi_rad": 2.5505777182073484, "kappa_radpm": -0.024867801817543, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 194, "s_m": 19.400000000000002, "d_m": 0.0, "x_m": -2.4410647812460917, "y_m": -2.559441026693506, "d_right": 1.3917432174462323, "d_left": 1.5339874217204357, "psi_rad": 2.5455082230381962, "kappa_radpm": -0.12173225575681013, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 195, "s_m": 19.5, "d_m": 0.0, "x_m": -2.5233915452912856, "y_m": -2.5028314629419355, "d_right": 1.3664480897567364, "d_left": 1.5108736665540494, "psi_rad": 2.5262312670559863, "kappa_radpm": -0.180186726119953, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 196, "s_m": 19.6, "d_m": 0.0, "x_m": -2.6042186139225656, "y_m": -2.4441027998741114, "d_right": 1.3455389009283727, "d_left": 1.467935890827152, "psi_rad": 2.5094708778142056, "kappa_radpm": -0.2569898998795894, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 197, "s_m": 19.700000000000003, "d_m": 0.0, "x_m": -2.6845958012072635, "y_m": -2.3847703828523077, "d_right": 1.3310677615605326, "d_left": 1.4314083241146844, "psi_rad": 2.4748332870800684, "kappa_radpm": -0.5229875071005319, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 198, "s_m": 19.8, "d_m": 0.0, "x_m": -2.7611465968000735, "y_m": -2.3206015769827304, "d_right": 1.3178443079806463, "d_left": 1.3976585660524539, "psi_rad": 2.4048733763940993, "kappa_radpm": -0.7832483873942353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 199, "s_m": 19.900000000000002, "d_m": 0.0, "x_m": -2.8324323756388057, "y_m": -2.250669081114616, "d_right": 1.3043219032824873, "d_left": 1.3398122384331677, "psi_rad": 2.3181836096012214, "kappa_radpm": -0.9175254853506787, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 200, "s_m": 20.0, "d_m": 0.0, "x_m": -2.8967491324460988, "y_m": -2.1742776023811317, "d_right": 1.2888821436140705, "d_left": 1.275332817386605, "psi_rad": 2.2213682793239635, "kappa_radpm": -1.024988231424886, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 201, "s_m": 20.1, "d_m": 0.0, "x_m": -2.9532240620870938, "y_m": -2.0919638770905817, "d_right": 1.2712788650706053, "d_left": 1.218501882262723, "psi_rad": 2.113185963316244, "kappa_radpm": -1.109411349854622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 202, "s_m": 20.200000000000003, "d_m": 0.0, "x_m": -2.9996335262536302, "y_m": -2.0035668490358765, "d_right": 1.2496750781884256, "d_left": 1.1719837091155436, "psi_rad": 1.999486009353039, "kappa_radpm": -1.17761019560222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 203, "s_m": 20.3, "d_m": 0.0, "x_m": -3.03610259771145, "y_m": -1.9106247139184227, "d_right": 1.2205098374576504, "d_left": 1.1355013773414235, "psi_rad": 1.8776639241958002, "kappa_radpm": -1.2498759722035402, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 204, "s_m": 20.400000000000002, "d_m": 0.0, "x_m": -3.059804431988793, "y_m": -1.8136796705270974, "d_right": 1.1833472884810567, "d_left": 1.111807156323442, "psi_rad": 1.749510814912331, "kappa_radpm": -1.1421228148326235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 205, "s_m": 20.5, "d_m": 0.0, "x_m": -3.071525415443781, "y_m": -1.7145304235652856, "d_right": 1.1420843541168546, "d_left": 1.1000897433104408, "psi_rad": 1.6492393612292755, "kappa_radpm": -0.9141109809126469, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 206, "s_m": 20.6, "d_m": 0.0, "x_m": -3.0754431750890494, "y_m": -1.6147244239551772, "d_right": 1.1009164452456093, "d_left": 1.0961727641738896, "psi_rad": 1.5666886187298017, "kappa_radpm": -0.7488377060810336, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 207, "s_m": 20.700000000000003, "d_m": 0.0, "x_m": -3.0707056637834467, "y_m": -1.5149673006000142, "d_right": 1.0593842802763027, "d_left": 1.1009112198035755, "psi_rad": 1.4994718200130688, "kappa_radpm": -0.5728665857679027, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 208, "s_m": 20.8, "d_m": 0.0, "x_m": -3.0612104857802565, "y_m": -1.4155145452624032, "d_right": 1.0213890865537998, "d_left": 1.0741003856404348, "psi_rad": 1.4521153015762212, "kappa_radpm": -0.36834503918958816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 209, "s_m": 20.900000000000002, "d_m": 0.0, "x_m": -3.0470544432203095, "y_m": -1.3166199054445769, "d_right": 0.9875197087162227, "d_left": 1.0583955653845896, "psi_rad": 1.4258028121751511, "kappa_radpm": -0.04504130574252252, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 210, "s_m": 21.0, "d_m": 0.0, "x_m": -3.0323411287383704, "y_m": -1.2178038750556563, "d_right": 0.9623166486029496, "d_left": 1.052547381049052, "psi_rad": 1.4431070404277166, "kappa_radpm": 0.2346394824742204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 211, "s_m": 21.1, "d_m": 0.0, "x_m": -3.021615235764957, "y_m": -1.1184764327269434, "d_right": 0.9510409776034178, "d_left": 1.052147527599158, "psi_rad": 1.4727307086699952, "kappa_radpm": 0.16574450203826419, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 212, "s_m": 21.200000000000003, "d_m": 0.0, "x_m": -3.012778284942663, "y_m": -1.0189564823895574, "d_right": 0.9520892351431623, "d_left": 1.0386298693684257, "psi_rad": 1.4762559408353695, "kappa_radpm": -0.07061272039944333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 213, "s_m": 21.3, "d_m": 0.0, "x_m": -3.002752400818934, "y_m": -0.9195497698687015, "d_right": 0.9583196679675566, "d_left": 1.0294901172793118, "psi_rad": 1.4586081645901066, "kappa_radpm": -0.26994271027571903, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 214, "s_m": 21.400000000000002, "d_m": 0.0, "x_m": -2.9904093813151054, "y_m": -0.8204063147627773, "d_right": 0.9667894012446555, "d_left": 1.0323328640477905, "psi_rad": 1.4222673987802257, "kappa_radpm": -0.47051496185676056, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 215, "s_m": 21.5, "d_m": 0.0, "x_m": -2.9731927709951265, "y_m": -0.7219994358062076, "d_right": 0.9805490759838094, "d_left": 1.024391547014201, "psi_rad": 1.3645051722187544, "kappa_radpm": -0.6515131045211198, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 216, "s_m": 21.6, "d_m": 0.0, "x_m": -2.949507499295706, "y_m": -0.6249542997133206, "d_right": 0.99770791885725, "d_left": 1.0306101388384938, "psi_rad": 1.2919647778760017, "kappa_radpm": -0.8733803200362955, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 217, "s_m": 21.700000000000003, "d_m": 0.0, "x_m": -2.918250096845461, "y_m": -0.5300865675892964, "d_right": 1.016788054191136, "d_left": 1.0540145824032097, "psi_rad": 1.1898291082114953, "kappa_radpm": -1.1075161868522387, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 218, "s_m": 21.8, "d_m": 0.0, "x_m": -2.8753748102131484, "y_m": -0.4398699767710549, "d_right": 1.0330551532476675, "d_left": 1.0921876147898333, "psi_rad": 1.070461540505554, "kappa_radpm": -1.1193508700703891, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 219, "s_m": 21.900000000000002, "d_m": 0.0, "x_m": -2.82257019546778, "y_m": -0.3550849600958579, "d_right": 1.0475672019863638, "d_left": 1.1252470586567496, "psi_rad": 0.9659589341974175, "kappa_radpm": -1.0513898404947823, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 220, "s_m": 22.0, "d_m": 0.0, "x_m": -2.761911950082226, "y_m": -0.2757312433964063, "d_right": 1.061955187928998, "d_left": 1.1472893593943303, "psi_rad": 0.8601835724065975, "kappa_radpm": -1.0327804837530723, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 221, "s_m": 22.1, "d_m": 0.0, "x_m": -2.692477951421537, "y_m": -0.20391943767785153, "d_right": 1.0741038152557953, "d_left": 1.1655695243933926, "psi_rad": 0.759402837446803, "kappa_radpm": -0.9217698544415781, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 222, "s_m": 22.200000000000003, "d_m": 0.0, "x_m": -2.6171529801168862, "y_m": -0.1383093107311566, "d_right": 1.0869111192021157, "d_left": 1.1768323531005334, "psi_rad": 0.6758296015182819, "kappa_radpm": -0.807213145258362, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 223, "s_m": 22.3, "d_m": 0.0, "x_m": -2.53673758141295, "y_m": -0.07904884013033492, "d_right": 1.100670643651941, "d_left": 1.204184795365476, "psi_rad": 0.5979602083951306, "kappa_radpm": -0.7584291650333252, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 224, "s_m": 22.400000000000002, "d_m": 0.0, "x_m": -2.4521561213615835, "y_m": -0.025922281994812967, "d_right": 1.1105844521790427, "d_left": 1.2457451371196604, "psi_rad": 0.5241437685116168, "kappa_radpm": -0.7065025093637561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 225, "s_m": 22.5, "d_m": 0.0, "x_m": -2.3638950635271967, "y_m": 0.020867470905861385, "d_right": 1.1109249878284557, "d_left": 1.291176918953922, "psi_rad": 0.4566597065223794, "kappa_radpm": -0.7058633467451736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 226, "s_m": 22.6, "d_m": 0.0, "x_m": -2.272945275618317, "y_m": 0.062123181017654974, "d_right": 1.1140893078986267, "d_left": 1.3437081902620946, "psi_rad": 0.3829710991625821, "kappa_radpm": -0.729126065478487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 227, "s_m": 22.700000000000003, "d_m": 0.0, "x_m": -2.1787959676325324, "y_m": 0.09543684527205269, "d_right": 1.1176385354380498, "d_left": 1.4030797527488097, "psi_rad": 0.310834493426682, "kappa_radpm": -0.6620408955402812, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 228, "s_m": 22.8, "d_m": 0.0, "x_m": -2.0828164711970025, "y_m": 0.12320165481948081, "d_right": 1.124257844406789, "d_left": 1.4100780531193984, "psi_rad": 0.25056292005452585, "kappa_radpm": -0.5865083131943216, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 229, "s_m": 22.900000000000002, "d_m": 0.0, "x_m": -1.9853228069061222, "y_m": 0.14495468132064998, "d_right": 1.1335153284969899, "d_left": 1.4076501437119684, "psi_rad": 0.1935328307878177, "kappa_radpm": -0.5065703546783262, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 230, "s_m": 23.0, "d_m": 0.0, "x_m": -1.8868106133469498, "y_m": 0.16161602808964168, "d_right": 1.1463090432278915, "d_left": 1.4043063657022212, "psi_rad": 0.1492488491188606, "kappa_radpm": -0.46766644673320923, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 231, "s_m": 23.1, "d_m": 0.0, "x_m": -1.7877707027120078, "y_m": 0.17465999789369638, "d_right": 1.1593499756035637, "d_left": 1.3977128772014842, "psi_rad": 0.09999954144117584, "kappa_radpm": -0.5134665690392581, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 232, "s_m": 23.200000000000003, "d_m": 0.0, "x_m": -1.6881186144512823, "y_m": 0.1815516326156476, "d_right": 1.1708377835526318, "d_left": 1.4044096974441957, "psi_rad": 0.04655553531100898, "kappa_radpm": -0.5085640340354314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 233, "s_m": 23.3, "d_m": 0.0, "x_m": -1.5882811146261129, "y_m": 0.18395405813052101, "d_right": 1.1862329947232044, "d_left": 1.4225316282257339, "psi_rad": -0.0017132653659104324, "kappa_radpm": -0.5259621525919922, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 234, "s_m": 23.400000000000002, "d_m": 0.0, "x_m": -1.4884165153498188, "y_m": 0.18120948959099575, "d_right": 1.2047286779417368, "d_left": 1.4346510333356002, "psi_rad": -0.05863689520738946, "kappa_radpm": -0.6796565496698836, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 235, "s_m": 23.5, "d_m": 0.0, "x_m": -1.3889302407970814, "y_m": 0.17225132631261844, "d_right": 1.21840216061055, "d_left": 1.4436189023161201, "psi_rad": -0.13764457529988716, "kappa_radpm": -0.7620613095568318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 236, "s_m": 23.6, "d_m": 0.0, "x_m": -1.2907845095222048, "y_m": 0.15383340797088366, "d_right": 1.2297505430864044, "d_left": 1.4620806054644855, "psi_rad": -0.21104915711875583, "kappa_radpm": -0.6001200236565452, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 237, "s_m": 23.700000000000003, "d_m": 0.0, "x_m": -1.1936570573434762, "y_m": 0.1304160951490654, "d_right": 1.244023821821656, "d_left": 1.4609815316735484, "psi_rad": -0.2576685800311962, "kappa_radpm": -0.4120182833437147, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 238, "s_m": 23.8, "d_m": 0.0, "x_m": -1.097624773942552, "y_m": 0.1029306649355046, "d_right": 1.2555090844538432, "d_left": 1.4199112663649711, "psi_rad": -0.29345281378749877, "kappa_radpm": -0.34819864955940694, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 239, "s_m": 23.900000000000002, "d_m": 0.0, "x_m": -1.0024472378068439, "y_m": 0.07263689172156537, "d_right": 1.2710470609007345, "d_left": 1.387638134356267, "psi_rad": -0.3273083099430776, "kappa_radpm": -0.3107234603024278, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 240, "s_m": 24.0, "d_m": 0.0, "x_m": -0.9084719511359108, "y_m": 0.03870947156947432, "d_right": 1.2857365075641887, "d_left": 1.365681992634506, "psi_rad": -0.35559750584798433, "kappa_radpm": -0.22659269275882798, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 241, "s_m": 24.1, "d_m": 0.0, "x_m": -0.8151340351540644, "y_m": 0.0030715968845528366, "d_right": 1.303753918935962, "d_left": 1.352593186687244, "psi_rad": -0.3726268484948432, "kappa_radpm": -0.15580314705042397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 242, "s_m": 24.200000000000003, "d_m": 0.0, "x_m": -0.7223681511918874, "y_m": -0.03403632207121212, "d_right": 1.3099701034292945, "d_left": 1.3323367230874272, "psi_rad": -0.3867581352580691, "kappa_radpm": -0.16510619464569665, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 243, "s_m": 24.3, "d_m": 0.0, "x_m": -0.6300720254626669, "y_m": -0.0722986661097043, "d_right": 1.3121348058796534, "d_left": 1.3159474348894322, "psi_rad": -0.4056480874239825, "kappa_radpm": -0.2848509691158996, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 244, "s_m": 24.400000000000002, "d_m": 0.0, "x_m": -0.5387745401862579, "y_m": -0.11288370703366096, "d_right": 1.3193601199852545, "d_left": 1.309538012488727, "psi_rad": -0.44372832908124904, "kappa_radpm": -0.42651155552695164, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 245, "s_m": 24.5, "d_m": 0.0, "x_m": -0.44968320246150467, "y_m": -0.1580452685827681, "d_right": 1.3290296470569016, "d_left": 1.315799101516298, "psi_rad": -0.49095039852937283, "kappa_radpm": -0.42710582843429323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 246, "s_m": 24.6, "d_m": 0.0, "x_m": -0.36261800044255377, "y_m": -0.20705867650732987, "d_right": 1.3323599227835685, "d_left": 1.3279560542837645, "psi_rad": -0.5291494947681077, "kappa_radpm": -0.379294909144714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 247, "s_m": 24.700000000000003, "d_m": 0.0, "x_m": -0.2772231552493146, "y_m": -0.25889560972286685, "d_right": 1.3214860952136143, "d_left": 1.324866534960989, "psi_rad": -0.5668093803583156, "kappa_radpm": -0.3572947934100035, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 248, "s_m": 24.8, "d_m": 0.0, "x_m": -0.1941030555099275, "y_m": -0.3143144396894793, "d_right": 1.3138722282857802, "d_left": 1.330551574268555, "psi_rad": -0.6006084534501084, "kappa_radpm": -0.24504280436163928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 249, "s_m": 24.900000000000002, "d_m": 0.0, "x_m": -0.11238992584786647, "y_m": -0.37181138549024867, "d_right": 1.3113238818900903, "d_left": 1.3408207778580692, "psi_rad": -0.6158179412306435, "kappa_radpm": -0.15039460976549401, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 250, "s_m": 25.0, "d_m": 0.0, "x_m": -0.030992035832314607, "y_m": -0.42973412177638337, "d_right": 1.3158475057598467, "d_left": 1.3472361979698557, "psi_rad": -0.6306873754032072, "kappa_radpm": -0.1848157116329774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 251, "s_m": 25.1, "d_m": 0.0, "x_m": 0.048975308678025464, "y_m": -0.48963512366495865, "d_right": 1.3169054830993077, "d_left": 1.3509472633217152, "psi_rad": -0.652781083557239, "kappa_radpm": -0.23240787193164358, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 252, "s_m": 25.200000000000003, "d_m": 0.0, "x_m": 0.12773922547120534, "y_m": -0.5511003631308581, "d_right": 1.3105249938899317, "d_left": 1.3560731763686344, "psi_rad": -0.6771689497895359, "kappa_radpm": -0.18974809777447588, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 253, "s_m": 25.3, "d_m": 0.0, "x_m": 0.2046907931959697, "y_m": -0.6148287677667533, "d_right": 1.3088476615124072, "d_left": 1.346713287118749, "psi_rad": -0.6907307031121341, "kappa_radpm": -0.11750274311420839, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 254, "s_m": 25.400000000000002, "d_m": 0.0, "x_m": 0.28176369629532844, "y_m": -0.6784116445259725, "d_right": 1.3149716409080103, "d_left": 1.3371643483413793, "psi_rad": -0.7006694984123776, "kappa_radpm": -0.14344301617845057, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 255, "s_m": 25.5, "d_m": 0.0, "x_m": 0.35743234290129544, "y_m": -0.7436561076683744, "d_right": 1.3171000981482779, "d_left": 1.3297874014915427, "psi_rad": -0.7194193063478243, "kappa_radpm": -0.096233258294951, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 256, "s_m": 25.6, "d_m": 0.0, "x_m": 0.43206526270188594, "y_m": -0.8100819838133752, "d_right": 1.305297675389933, "d_left": 1.3239804022422954, "psi_rad": -0.7199161500713678, "kappa_radpm": -0.018343906872309024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 257, "s_m": 25.700000000000003, "d_m": 0.0, "x_m": 0.5076688643187502, "y_m": -0.8754014518440832, "d_right": 1.3025545954677644, "d_left": 1.3167026550553818, "psi_rad": -0.723088087722286, "kappa_radpm": -0.08518122122408434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 258, "s_m": 25.8, "d_m": 0.0, "x_m": 0.5818793813730072, "y_m": -0.9422998872455591, "d_right": 1.3053637734046475, "d_left": 1.3115292146235937, "psi_rad": -0.7369523943161846, "kappa_radpm": -0.0560777896572473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 259, "s_m": 25.900000000000002, "d_m": 0.0, "x_m": 0.6556428563737992, "y_m": -1.0096902957393548, "d_right": 1.3017686375896929, "d_left": 1.3070203670840315, "psi_rad": -0.7343036456537355, "kappa_radpm": 0.050892583033335104, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 260, "s_m": 26.0, "d_m": 0.0, "x_m": 0.7302048235236791, "y_m": -1.0761929495310443, "d_right": 1.290779847814579, "d_left": 1.301317914006423, "psi_rad": -0.7267738777095176, "kappa_radpm": 0.038802389677026206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 261, "s_m": 26.1, "d_m": 0.0, "x_m": 0.8049752561875724, "y_m": -1.1424653737266013, "d_right": 1.2877840122039232, "d_left": 1.3017750485797437, "psi_rad": -0.7265431677183303, "kappa_radpm": 0.008131651951108765, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 262, "s_m": 26.200000000000003, "d_m": 0.0, "x_m": 0.8795714202911857, "y_m": -1.2089367427781752, "d_right": 1.2922644013053535, "d_left": 1.3101381723205865, "psi_rad": -0.7251475473192959, "kappa_radpm": -0.0056681543100634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 263, "s_m": 26.3, "d_m": 0.0, "x_m": 0.9545281353996777, "y_m": -1.275001613817881, "d_right": 1.3049414417171321, "d_left": 1.3190626368798737, "psi_rad": -0.727676798580343, "kappa_radpm": -0.04410167170551871, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 264, "s_m": 26.400000000000002, "d_m": 0.0, "x_m": 1.0287831699594774, "y_m": -1.3418459749705771, "d_right": 1.3105199925396054, "d_left": 1.3138190836416135, "psi_rad": -0.7339678816603996, "kappa_radpm": -0.09364670901871541, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 265, "s_m": 26.5, "d_m": 0.0, "x_m": 1.1028979033905755, "y_m": -1.408844304873864, "d_right": 1.3089125562899275, "d_left": 1.3162375631363006, "psi_rad": -0.746406140384086, "kappa_radpm": -0.1758020846365338, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 266, "s_m": 26.6, "d_m": 0.0, "x_m": 1.175471363907158, "y_m": -1.4775187600327853, "d_right": 1.3116663184902304, "d_left": 1.3284525618252074, "psi_rad": -0.7691282985877064, "kappa_radpm": -0.20323627645813858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 267, "s_m": 26.700000000000003, "d_m": 0.0, "x_m": 1.2464683334662456, "y_m": -1.547817384582736, "d_right": 1.3131469709378443, "d_left": 1.340538351998362, "psi_rad": -0.7870533956757138, "kappa_radpm": -0.21446181746819004, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 268, "s_m": 26.8, "d_m": 0.0, "x_m": 1.3165306721744672, "y_m": -1.619045814796758, "d_right": 1.3208888101450722, "d_left": 1.3422851004528533, "psi_rad": -0.8120206620813444, "kappa_radpm": -0.2581830570225385, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 269, "s_m": 26.900000000000002, "d_m": 0.0, "x_m": 1.3839314860326453, "y_m": -1.6928017734437397, "d_right": 1.3324617779240617, "d_left": 1.3453569778224719, "psi_rad": -0.8386900070802215, "kappa_radpm": -0.23106031423301365, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 270, "s_m": 27.0, "d_m": 0.0, "x_m": 1.4500987694585117, "y_m": -1.7676665265939004, "d_right": 1.335709857697249, "d_left": 1.3413528978353586, "psi_rad": -0.8582327249279471, "kappa_radpm": -0.284404780244496, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 271, "s_m": 27.1, "d_m": 0.0, "x_m": 1.514554590233916, "y_m": -1.843986607233394, "d_right": 1.3293885139546837, "d_left": 1.3372561354573917, "psi_rad": -0.8955709631291207, "kappa_radpm": -0.3838775944865147, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 272, "s_m": 27.200000000000003, "d_m": 0.0, "x_m": 1.5749524702020352, "y_m": -1.9235787616641917, "d_right": 1.3253473527959925, "d_left": 1.3191706152536697, "psi_rad": -0.93500824382525, "kappa_radpm": -0.333374592452067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 273, "s_m": 27.3, "d_m": 0.0, "x_m": 1.6331952760999386, "y_m": -2.0047425375152206, "d_right": 1.3233627993329633, "d_left": 1.3111492547362849, "psi_rad": -0.9622458816195341, "kappa_radpm": -0.3208116163318109, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 274, "s_m": 27.400000000000002, "d_m": 0.0, "x_m": 1.689168786254693, "y_m": -2.087502865636418, "d_right": 1.321768542668231, "d_left": 1.3064547091516554, "psi_rad": -0.9991705670916122, "kappa_radpm": -0.3916849200418504, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 275, "s_m": 27.5, "d_m": 0.0, "x_m": 1.7412641623599376, "y_m": -2.1727432023948423, "d_right": 1.3214692795928107, "d_left": 1.3088711373212427, "psi_rad": -1.0405828656279041, "kappa_radpm": -0.3738721821823976, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 276, "s_m": 27.6, "d_m": 0.0, "x_m": 1.7901994056404886, "y_m": -2.2598501295195574, "d_right": 1.3150154616938547, "d_left": 1.313296414983635, "psi_rad": -1.0739450035280917, "kappa_radpm": -0.32292229156396957, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 277, "s_m": 27.700000000000003, "d_m": 0.0, "x_m": 1.83649781339843, "y_m": -2.3483793948675946, "d_right": 1.3068591683282347, "d_left": 1.3215560914778306, "psi_rad": -1.105167323940698, "kappa_radpm": -0.28088472827016986, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 278, "s_m": 27.8, "d_m": 0.0, "x_m": 1.8799031651037026, "y_m": -2.438372462702644, "d_right": 1.2997544119766444, "d_left": 1.3330801301495463, "psi_rad": -1.1301219491821257, "kappa_radpm": -0.19892796032924487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 279, "s_m": 27.900000000000002, "d_m": 0.0, "x_m": 1.9217311036891618, "y_m": -2.529109787512407, "d_right": 1.2981096825288152, "d_left": 1.3512960303876802, "psi_rad": -1.144952916006547, "kappa_radpm": -0.19171733215008757, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 280, "s_m": 28.0, "d_m": 0.0, "x_m": 1.962448834771669, "y_m": -2.620351569178883, "d_right": 1.2901738627161112, "d_left": 1.3596737828516212, "psi_rad": -1.1684654156121432, "kappa_radpm": -0.2842577385946532, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 281, "s_m": 28.1, "d_m": 0.0, "x_m": 1.9999563651083656, "y_m": -2.7129341449678113, "d_right": 1.2710465613689814, "d_left": 1.3734949081398413, "psi_rad": -1.2018044637254777, "kappa_radpm": -0.2548142533587572, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 282, "s_m": 28.200000000000003, "d_m": 0.0, "x_m": 2.0345050945182503, "y_m": -2.8066860629607913, "d_right": 1.256403913508903, "d_left": 1.3762192290990045, "psi_rad": -1.2194282662838947, "kappa_radpm": -0.15605117619972297, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 283, "s_m": 28.3, "d_m": 0.0, "x_m": 2.068734463122819, "y_m": -2.900555317576035, "d_right": 1.2492631686143056, "d_left": 1.3796398368205391, "psi_rad": -1.2330146989654223, "kappa_radpm": -0.21788141089945645, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 284, "s_m": 28.400000000000002, "d_m": 0.0, "x_m": 2.100716190014754, "y_m": -2.995191226516461, "d_right": 1.2427789048663078, "d_left": 1.3863092242113182, "psi_rad": -1.263004548463786, "kappa_radpm": -0.2841728170713598, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 285, "s_m": 28.5, "d_m": 0.0, "x_m": 2.1292570244722784, "y_m": -3.0909410506808177, "d_right": 1.2340812359984072, "d_left": 1.385523697663739, "psi_rad": -1.2898492623796942, "kappa_radpm": -0.23139865361550882, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 286, "s_m": 28.6, "d_m": 0.0, "x_m": 2.1561192622016594, "y_m": -3.1871763813969958, "d_right": 1.2284223490500004, "d_left": 1.3848784721663074, "psi_rad": -1.3092842791868877, "kappa_radpm": -0.21086621178957765, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 287, "s_m": 28.700000000000003, "d_m": 0.0, "x_m": 2.180918179480202, "y_m": -3.2839649429627946, "d_right": 1.2287415410053621, "d_left": 1.3871194205475923, "psi_rad": -1.3320225047376097, "kappa_radpm": -0.23914977659628578, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 288, "s_m": 28.8, "d_m": 0.0, "x_m": 2.203377873718625, "y_m": -3.381322713788205, "d_right": 1.2347642297675072, "d_left": 1.3920000783666964, "psi_rad": -1.3571142345061449, "kappa_radpm": -0.19075316579164392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 289, "s_m": 28.900000000000002, "d_m": 0.0, "x_m": 2.2232894512152734, "y_m": -3.4792288903983692, "d_right": 1.2462069497892403, "d_left": 1.3984079894017916, "psi_rad": -1.3701731378959385, "kappa_radpm": -0.11726012749042392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 290, "s_m": 29.0, "d_m": 0.0, "x_m": 2.243198476236024, "y_m": -3.577137107691972, "d_right": 1.2608949672379242, "d_left": 1.4068347566162875, "psi_rad": -1.3805662600042297, "kappa_radpm": -0.15040771953476195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 291, "s_m": 29.1, "d_m": 0.0, "x_m": 2.26107107650597, "y_m": -3.6754375237756283, "d_right": 1.2545019069005188, "d_left": 1.4145086938295381, "psi_rad": -1.400254681802891, "kappa_radpm": -0.262046839319483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 292, "s_m": 29.200000000000003, "d_m": 0.0, "x_m": 2.277109374106655, "y_m": -3.7740479483235725, "d_right": 1.2406351920589986, "d_left": 1.4277283823770912, "psi_rad": -1.4329756278681263, "kappa_radpm": -0.2729850726194938, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 293, "s_m": 29.3, "d_m": 0.0, "x_m": 2.288514526812119, "y_m": -3.8732994666543057, "d_right": 1.226953756864082, "d_left": 1.4411414946037233, "psi_rad": -1.4548516963267897, "kappa_radpm": -0.11393623484391213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 294, "s_m": 29.400000000000002, "d_m": 0.0, "x_m": 2.300225159564971, "y_m": -3.972522939077704, "d_right": 1.2096711038343988, "d_left": 1.459422820750795, "psi_rad": -1.4557628748369087, "kappa_radpm": 0.02401373066275525, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 295, "s_m": 29.5, "d_m": 0.0, "x_m": 2.3114498756384907, "y_m": -4.071799064697362, "d_right": 1.1999944091179786, "d_left": 1.4723862046453857, "psi_rad": -1.4500489501942386, "kappa_radpm": 0.15406762552222508, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 296, "s_m": 29.6, "d_m": 0.0, "x_m": 2.3242929587527508, "y_m": -4.170876866729028, "d_right": 1.200225399258705, "d_left": 1.4826090240913594, "psi_rad": -1.4249493497324637, "kappa_radpm": 0.14045641622558946, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 297, "s_m": 29.700000000000003, "d_m": 0.0, "x_m": 2.3404852413420123, "y_m": -4.2694665105726815, "d_right": 1.212092788145723, "d_left": 1.484919631157599, "psi_rad": -1.4219576669491207, "kappa_radpm": -0.0636239349312473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 298, "s_m": 29.8, "d_m": 0.0, "x_m": 2.3539210284644536, "y_m": -4.36846641053679, "d_right": 1.2292581282284976, "d_left": 1.496683632752351, "psi_rad": -1.4376741367187131, "kappa_radpm": -0.08657036277472052, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 299, "s_m": 29.900000000000002, "d_m": 0.0, "x_m": 2.3670071344531287, "y_m": -4.467517927026202, "d_right": 1.25383368605817, "d_left": 1.5153049884327128, "psi_rad": -1.4392717395040648, "kappa_radpm": -0.08883404071839518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 300, "s_m": 30.0, "d_m": 0.0, "x_m": 2.3801267420033567, "y_m": -4.566561923433394, "d_right": 1.2857552746385026, "d_left": 1.540161561060746, "psi_rad": -1.4554409448623922, "kappa_radpm": -0.17457374421186334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 301, "s_m": 30.1, "d_m": 0.0, "x_m": 2.3900033129801783, "y_m": -4.665983617996062, "d_right": 1.3116895452198065, "d_left": 1.5569067716519025, "psi_rad": -1.4741864883464375, "kappa_radpm": -0.22466624220341735, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 302, "s_m": 30.200000000000003, "d_m": 0.0, "x_m": 2.3994011905124584, "y_m": -4.765448969530629, "d_right": 1.321083120859505, "d_left": 1.5747945008268731, "psi_rad": -1.5003741933030756, "kappa_radpm": -0.32620567892687413, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 303, "s_m": 30.3, "d_m": 0.0, "x_m": 2.4040584790625585, "y_m": -4.865238074151832, "d_right": 1.330572773814784, "d_left": 1.5743400539644536, "psi_rad": -1.5394276241318123, "kappa_radpm": -0.33791482331493317, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 304, "s_m": 30.400000000000002, "d_m": 0.0, "x_m": 2.405666919558904, "y_m": -4.965128051867832, "d_right": 1.3444280983906374, "d_left": 1.572731720630986, "psi_rad": -1.5679571579660623, "kappa_radpm": -0.30357087463348087, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 305, "s_m": 30.5, "d_m": 0.0, "x_m": 2.404625746040218, "y_m": -5.065037905593287, "d_right": 1.3628971270810337, "d_left": 1.570812170426587, "psi_rad": 4.683043508121078, "kappa_radpm": -0.3504890991876142, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 306, "s_m": 30.6, "d_m": 0.0, "x_m": 2.3998054239411446, "y_m": -5.16481176842301, "d_right": 1.38468116540319, "d_left": 1.554343503269341, "psi_rad": 4.645130329376001, "kappa_radpm": -0.3858586469712044, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 307, "s_m": 30.700000000000003, "d_m": 0.0, "x_m": 2.391200582176912, "y_m": -5.264341840966571, "d_right": 1.4032375261295802, "d_left": 1.5479606802879824, "psi_rad": 4.605871778726837, "kappa_radpm": -0.3923933069624641, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 308, "s_m": 30.8, "d_m": 0.0, "x_m": 2.3785681054665577, "y_m": -5.363436388628608, "d_right": 1.4180632925229015, "d_left": 1.549724194788717, "psi_rad": 4.566651667983509, "kappa_radpm": -0.3342062325726314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 309, "s_m": 30.900000000000002, "d_m": 0.0, "x_m": 2.362188860667556, "y_m": -5.461999069386601, "d_right": 1.4360065912432296, "d_left": 1.54564866659003, "psi_rad": 4.539030532212311, "kappa_radpm": -0.28537794951025264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 310, "s_m": 31.0, "d_m": 0.0, "x_m": 2.3441030713561966, "y_m": -5.560248714617748, "d_right": 1.4531083128724858, "d_left": 1.5497550661493176, "psi_rad": 4.509576078081458, "kappa_radpm": -0.34264969745311236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 311, "s_m": 31.1, "d_m": 0.0, "x_m": 2.3219526261756087, "y_m": -5.657662339701698, "d_right": 1.4698022206585477, "d_left": 1.5643583569230748, "psi_rad": 4.470500592721688, "kappa_radpm": -0.385198532815374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 312, "s_m": 31.200000000000003, "d_m": 0.0, "x_m": 2.296248248815184, "y_m": -5.754213516136722, "d_right": 1.480449826858543, "d_left": 1.5717669907372864, "psi_rad": 4.432536371518383, "kappa_radpm": -0.3451014718312684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 313, "s_m": 31.3, "d_m": 0.0, "x_m": 2.2667736199530046, "y_m": -5.849659602911584, "d_right": 1.4921449518136185, "d_left": 1.5655674941993523, "psi_rad": 4.401480298355435, "kappa_radpm": -0.2550236057508748, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 314, "s_m": 31.400000000000002, "d_m": 0.0, "x_m": 2.235125944266402, "y_m": -5.94443029656855, "d_right": 1.4991508366906892, "d_left": 1.5623040357181868, "psi_rad": 4.381531650368208, "kappa_radpm": -0.19741566290476076, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 315, "s_m": 31.5, "d_m": 0.0, "x_m": 2.2018636953736843, "y_m": -6.03863522178349, "d_right": 1.5044865999217085, "d_left": 1.560158196123174, "psi_rad": 4.361997165774483, "kappa_radpm": -0.1894513935183162, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 316, "s_m": 31.6, "d_m": 0.0, "x_m": 2.1665415928155927, "y_m": -6.13208965895512, "d_right": 1.5123752061354925, "d_left": 1.5623098092415073, "psi_rad": 4.343641371664544, "kappa_radpm": -0.26266328842395437, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 317, "s_m": 31.700000000000003, "d_m": 0.0, "x_m": 2.1298422880200882, "y_m": -6.22501490356626, "d_right": 1.5253208111789065, "d_left": 1.5588777505684441, "psi_rad": 4.309464508089691, "kappa_radpm": -0.2985633219731798, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 318, "s_m": 31.8, "d_m": 0.0, "x_m": 2.08822056048538, "y_m": -6.3158362881417265, "d_right": 1.539385775588154, "d_left": 1.5671742297849258, "psi_rad": 4.283928707269909, "kappa_radpm": -0.1381069034271265, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 319, "s_m": 31.900000000000002, "d_m": 0.0, "x_m": 2.046824475205015, "y_m": -6.406769083450573, "d_right": 1.5599819050292476, "d_left": 1.5634976990265035, "psi_rad": 4.281843127404267, "kappa_radpm": -0.07262896421944331, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 320, "s_m": 32.0, "d_m": 0.0, "x_m": 2.0048206089141534, "y_m": -6.497424023490026, "d_right": 1.5751623904276588, "d_left": 1.5613637427330755, "psi_rad": 4.269402914426021, "kappa_radpm": -0.1436783709189049, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 321, "s_m": 32.1, "d_m": 0.0, "x_m": 1.961175163906249, "y_m": -6.587298707794528, "d_right": 1.5721802840359758, "d_left": 1.5639930082335418, "psi_rad": 4.253107453220485, "kappa_radpm": -0.18088960256004594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 322, "s_m": 32.2, "d_m": 0.0, "x_m": 1.9162400474447043, "y_m": -6.676535943405773, "d_right": 1.5605778798082774, "d_left": 1.571200095765151, "psi_rad": 4.2332249939140105, "kappa_radpm": -0.1605857354930107, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 323, "s_m": 32.300000000000004, "d_m": 0.0, "x_m": 1.869058197581023, "y_m": -6.764600596439547, "d_right": 1.5527873743901695, "d_left": 1.5722239582912862, "psi_rad": 4.220990306121884, "kappa_radpm": 0.0002045857591137512, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 324, "s_m": 32.4, "d_m": 0.0, "x_m": 1.821953314027223, "y_m": -6.852711548723039, "d_right": 1.548124055684888, "d_left": 1.5658375389062764, "psi_rad": 4.233265911065834, "kappa_radpm": 0.07864888838627238, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 325, "s_m": 32.5, "d_m": 0.0, "x_m": 1.7769476115194056, "y_m": -6.941907937463431, "d_right": 1.5496854266372317, "d_left": 1.5634503969140225, "psi_rad": 4.236720083799138, "kappa_radpm": -0.0691780768637007, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 326, "s_m": 32.6, "d_m": 0.0, "x_m": 1.730453308298955, "y_m": -7.030340691558144, "d_right": 1.5560026836897582, "d_left": 1.569108517481566, "psi_rad": 4.219430295693094, "kappa_radpm": -0.09800088518123085, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 327, "s_m": 32.7, "d_m": 0.0, "x_m": 1.6823900120883746, "y_m": -7.117929064145223, "d_right": 1.551358566966467, "d_left": 1.5797949800318363, "psi_rad": 4.217119906762892, "kappa_radpm": 0.028963707961158214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 328, "s_m": 32.800000000000004, "d_m": 0.0, "x_m": 1.6354882607341308, "y_m": -7.206144778756365, "d_right": 1.5418181386079601, "d_left": 1.5870548839242165, "psi_rad": 4.225223037285325, "kappa_radpm": 0.047432122510937536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 329, "s_m": 32.9, "d_m": 0.0, "x_m": 1.5888525934640565, "y_m": -7.294496954609546, "d_right": 1.5374883908924268, "d_left": 1.5825695875374948, "psi_rad": 4.22660633126508, "kappa_radpm": -0.013766553805072412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 330, "s_m": 33.0, "d_m": 0.0, "x_m": 1.5421968533875352, "y_m": -7.382838714584149, "d_right": 1.537167874530809, "d_left": 1.5844063159097952, "psi_rad": 4.222469726524311, "kappa_radpm": -0.024067514997687667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 331, "s_m": 33.1, "d_m": 0.0, "x_m": 1.4948269860802301, "y_m": -7.4708111345519095, "d_right": 1.5389731711201509, "d_left": 1.5873292883289427, "psi_rad": 4.221792828265542, "kappa_radpm": 0.03155051407462084, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 332, "s_m": 33.2, "d_m": 0.0, "x_m": 1.4480469769877775, "y_m": -7.559098463757764, "d_right": 1.547905977754679, "d_left": 1.590219317466195, "psi_rad": 4.228779829339235, "kappa_radpm": 0.07287979068664852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 333, "s_m": 33.300000000000004, "d_m": 0.0, "x_m": 1.4019111151006232, "y_m": -7.647724039042625, "d_right": 1.5639015691622493, "d_left": 1.5931345895259694, "psi_rad": 4.236368786402871, "kappa_radpm": 0.04259686274523222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 334, "s_m": 33.4, "d_m": 0.0, "x_m": 1.3564764481245395, "y_m": -7.736711217460927, "d_right": 1.566945437579688, "d_left": 1.5837246806869996, "psi_rad": 4.237299201888281, "kappa_radpm": 0.018641673377424173, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 335, "s_m": 33.5, "d_m": 0.0, "x_m": 1.3105097045979628, "y_m": -7.82541447825851, "d_right": 1.5543294756910278, "d_left": 1.5811902075872255, "psi_rad": 4.240097121078357, "kappa_radpm": 0.04291411558900782, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 336, "s_m": 33.6, "d_m": 0.0, "x_m": 1.265575426635414, "y_m": -7.914651079641879, "d_right": 1.5492328566679725, "d_left": 1.5756140253350899, "psi_rad": 4.2458820250060825, "kappa_radpm": 0.015496297115518143, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 337, "s_m": 33.7, "d_m": 0.0, "x_m": 1.2206338465610393, "y_m": -8.003888566167733, "d_right": 1.548022278550101, "d_left": 1.5668594717421265, "psi_rad": 4.24319638050146, "kappa_radpm": -0.04813184109603297, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 338, "s_m": 33.800000000000004, "d_m": 0.0, "x_m": 1.175220455821506, "y_m": -8.092883385366676, "d_right": 1.5493112009834715, "d_left": 1.564980487805484, "psi_rad": 4.236255656786876, "kappa_radpm": -0.05333891592727236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 339, "s_m": 33.9, "d_m": 0.0, "x_m": 1.1290499339009723, "y_m": -8.181477950278662, "d_right": 1.5561709815478277, "d_left": 1.570325429368543, "psi_rad": 4.232528597316005, "kappa_radpm": 0.044895825355451, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 340, "s_m": 34.0, "d_m": 0.0, "x_m": 1.0829783311813814, "y_m": -8.270124363403468, "d_right": 1.552281109466319, "d_left": 1.563953496333375, "psi_rad": 4.2452348218579665, "kappa_radpm": 0.14627020597015816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 341, "s_m": 34.1, "d_m": 0.0, "x_m": 1.0390688663283165, "y_m": -8.359873450618787, "d_right": 1.550708842713066, "d_left": 1.555801301242932, "psi_rad": 4.261782638510037, "kappa_radpm": 0.10853285083078035, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 342, "s_m": 34.2, "d_m": 0.0, "x_m": 0.9959528416175645, "y_m": -8.450002267113158, "d_right": 1.5564419516558816, "d_left": 1.5531637347094682, "psi_rad": 4.266941392024123, "kappa_radpm": 0.04959172263197642, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 343, "s_m": 34.300000000000004, "d_m": 0.0, "x_m": 0.9529771876952379, "y_m": -8.540188034320927, "d_right": 1.5686790604753567, "d_left": 1.5567948527324618, "psi_rad": 4.271700983036432, "kappa_radpm": 0.01405812542852436, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 344, "s_m": 34.4, "d_m": 0.0, "x_m": 0.9107193681257492, "y_m": -8.630726668122238, "d_right": 1.5756765106779689, "d_left": 1.5466686004998291, "psi_rad": 4.269753017109828, "kappa_radpm": -0.06348374142669533, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 345, "s_m": 34.5, "d_m": 0.0, "x_m": 0.8673870922890545, "y_m": -8.72075605817194, "d_right": 1.5824387348854387, "d_left": 1.539654570214585, "psi_rad": 4.259004234751093, "kappa_radpm": -0.09735788926815259, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 346, "s_m": 34.6, "d_m": 0.0, "x_m": 0.8231927880873772, "y_m": -8.81036547968576, "d_right": 1.5944945829554338, "d_left": 1.540066778736615, "psi_rad": 4.250281439256197, "kappa_radpm": -0.12521830323874106, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 347, "s_m": 34.7, "d_m": 0.0, "x_m": 0.7782964691107417, "y_m": -8.899625452694789, "d_right": 1.5963991614618653, "d_left": 1.547725622021742, "psi_rad": 4.233960574103345, "kappa_radpm": -0.1357469916027898, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 348, "s_m": 34.800000000000004, "d_m": 0.0, "x_m": 0.7312076922484473, "y_m": -8.987732330488557, "d_right": 1.6002044829882056, "d_left": 1.5641844187727514, "psi_rad": 4.2231320409356385, "kappa_radpm": -0.08522955464060011, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 349, "s_m": 34.9, "d_m": 0.0, "x_m": 0.6843894346627618, "y_m": -9.075998531162783, "d_right": 1.6105234910690815, "d_left": 1.5864740441230614, "psi_rad": 4.216914663175225, "kappa_radpm": -0.07148609958162577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 350, "s_m": 35.0, "d_m": 0.0, "x_m": 0.6362023559005766, "y_m": -9.163524709482363, "d_right": 1.613114118996159, "d_left": 1.601272343234934, "psi_rad": 4.208834821019314, "kappa_radpm": -0.11856090255309537, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 351, "s_m": 35.1, "d_m": 0.0, "x_m": 0.5879686427550699, "y_m": -9.251014280418527, "d_right": 1.6168221715656483, "d_left": 1.5971003077982282, "psi_rad": 4.193202482664606, "kappa_radpm": -0.18017403566350065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 352, "s_m": 35.2, "d_m": 0.0, "x_m": 0.537068818430697, "y_m": -9.336992137567787, "d_right": 1.608226697027581, "d_left": 1.5924302576584621, "psi_rad": 4.172800013886613, "kappa_radpm": -0.09844392241457944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 353, "s_m": 35.300000000000004, "d_m": 0.0, "x_m": 0.48530063601811213, "y_m": -9.422450199836073, "d_right": 1.5931160252612548, "d_left": 1.593109108698404, "psi_rad": 4.17351369818169, "kappa_radpm": 0.031030206835376273, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 354, "s_m": 35.4, "d_m": 0.0, "x_m": 0.4345279308594355, "y_m": -9.50849335495202, "d_right": 1.5837818022309564, "d_left": 1.5988888329911897, "psi_rad": 4.179006055253689, "kappa_radpm": 0.025894743149432742, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 355, "s_m": 35.5, "d_m": 0.0, "x_m": 0.3837058841384869, "y_m": -9.594507534449061, "d_right": 1.5805101612786319, "d_left": 1.6109125569359886, "psi_rad": 4.178692646811577, "kappa_radpm": 0.028245637964061654, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 356, "s_m": 35.6, "d_m": 0.0, "x_m": 0.33287980920432925, "y_m": -9.680517910589913, "d_right": 1.577833362201505, "d_left": 1.628991110462894, "psi_rad": 4.184655182846502, "kappa_radpm": 0.06011690784812451, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 357, "s_m": 35.7, "d_m": 0.0, "x_m": 0.2830826145072571, "y_m": -9.76713965800465, "d_right": 1.5690740744357203, "d_left": 1.6322750051552244, "psi_rad": 4.1907160283812015, "kappa_radpm": 0.035579570958839124, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 358, "s_m": 35.800000000000004, "d_m": 0.0, "x_m": 0.23329787489861847, "y_m": -9.85376855758391, "d_right": 1.558534644895345, "d_left": 1.6129293481689044, "psi_rad": 4.191771097038269, "kappa_radpm": 0.02898153444553353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 359, "s_m": 35.9, "d_m": 0.0, "x_m": 0.18368360785669602, "y_m": -9.940495133173181, "d_right": 1.5545558838104294, "d_left": 1.5961401749128226, "psi_rad": 4.196512335270308, "kappa_radpm": 0.0756677277015183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 360, "s_m": 36.0, "d_m": 0.0, "x_m": 0.1347253696039078, "y_m": -10.027587242247112, "d_right": 1.5577412088486937, "d_left": 1.5847334672353097, "psi_rad": 4.206904642578573, "kappa_radpm": 0.16132405028920882, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 361, "s_m": 36.1, "d_m": 0.0, "x_m": 0.0869289774917342, "y_m": -10.115317593130401, "d_right": 1.5584076707268222, "d_left": 1.5782511143353506, "psi_rad": 4.22877714532815, "kappa_radpm": 0.20348067783193757, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 362, "s_m": 36.2, "d_m": 0.0, "x_m": 0.041824403041493076, "y_m": -10.204470615263292, "d_right": 1.5608995828846977, "d_left": 1.5750354067016283, "psi_rad": 4.24760077814496, "kappa_radpm": 0.09493327833482335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 363, "s_m": 36.300000000000004, "d_m": 0.0, "x_m": -0.0026397829176752798, "y_m": -10.293945468711328, "d_right": 1.5704711046081956, "d_left": 1.5774359914568337, "psi_rad": 4.247763800995115, "kappa_radpm": -0.05610161287348481, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 364, "s_m": 36.4, "d_m": 0.0, "x_m": -0.047713948575017553, "y_m": -10.383110522149524, "d_right": 1.5856174504341558, "d_left": 1.5735657847478863, "psi_rad": 4.236380455570263, "kappa_radpm": -0.20053029881420548, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 365, "s_m": 36.5, "d_m": 0.0, "x_m": -0.09420064152028755, "y_m": -10.471544553895823, "d_right": 1.578587660468963, "d_left": 1.5673412724538582, "psi_rad": 4.207657741232273, "kappa_radpm": -0.3473744293040415, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 366, "s_m": 36.6, "d_m": 0.0, "x_m": -0.14431486309102087, "y_m": -10.55796592248457, "d_right": 1.5538933548677503, "d_left": 1.5705514829591813, "psi_rad": 4.166905569709455, "kappa_radpm": -0.48296886349264545, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 367, "s_m": 36.7, "d_m": 0.0, "x_m": -0.19784110709730632, "y_m": -10.642312563849188, "d_right": 1.531382964021658, "d_left": 1.5431202539679427, "psi_rad": 4.1110639685337445, "kappa_radpm": -0.6433422466323746, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 368, "s_m": 36.800000000000004, "d_m": 0.0, "x_m": -0.25727398872497703, "y_m": -10.722609270770592, "d_right": 1.5080753011756027, "d_left": 1.4621176552313122, "psi_rad": 4.0382371203829805, "kappa_radpm": -0.6797860955186241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 369, "s_m": 36.9, "d_m": 0.0, "x_m": -0.32247073864935455, "y_m": -10.798287873263567, "d_right": 1.469677116847177, "d_left": 1.388505786918637, "psi_rad": 3.9751067494300196, "kappa_radpm": -0.5119289081766509, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 370, "s_m": 37.0, "d_m": 0.0, "x_m": -0.3915401120451515, "y_m": -10.870460204562924, "d_right": 1.4220841910720066, "d_left": 1.3222635114132246, "psi_rad": 3.93585133874765, "kappa_radpm": -0.30560093413595224, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 371, "s_m": 37.1, "d_m": 0.0, "x_m": -0.46248939495807556, "y_m": -10.940810054326647, "d_right": 1.3728648662273908, "d_left": 1.2625820030380808, "psi_rad": 3.913986562602829, "kappa_radpm": -0.22462942853572976, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 372, "s_m": 37.2, "d_m": 0.0, "x_m": -0.5346568505102156, "y_m": -11.009902269327766, "d_right": 1.3277528783745591, "d_left": 1.2097383504729817, "psi_rad": 3.890925453040504, "kappa_radpm": -0.17336272999376234, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 373, "s_m": 37.300000000000004, "d_m": 0.0, "x_m": -0.6087724671622623, "y_m": -11.076904655181293, "d_right": 1.2861668615530801, "d_left": 1.165684293789319, "psi_rad": 3.8793140166040767, "kappa_radpm": -0.054463416389645136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 374, "s_m": 37.4, "d_m": 0.0, "x_m": -0.6825286856375395, "y_m": -11.144305906796866, "d_right": 1.24255659392144, "d_left": 1.1282702290749043, "psi_rad": 3.880032769762575, "kappa_radpm": 0.06877336282148594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 375, "s_m": 37.5, "d_m": 0.0, "x_m": -0.7565488317015884, "y_m": -11.211415606826826, "d_right": 1.1941710807885038, "d_left": 1.0990769998908716, "psi_rad": 3.893068689168374, "kappa_radpm": 0.2421856343669937, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 376, "s_m": 37.6, "d_m": 0.0, "x_m": -0.8285159236428008, "y_m": -11.28071014888526, "d_right": 1.1552268380734318, "d_left": 1.0754352604203485, "psi_rad": 3.9284698966359737, "kappa_radpm": 0.37422974067265136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 377, "s_m": 37.7, "d_m": 0.0, "x_m": -0.8975984561586929, "y_m": -11.352883096903174, "d_right": 1.1277806019732324, "d_left": 1.056258855378992, "psi_rad": 3.967914637302904, "kappa_radpm": 0.47102660651929584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 378, "s_m": 37.800000000000004, "d_m": 0.0, "x_m": -0.9638745955548289, "y_m": -11.42762706957633, "d_right": 1.1110730778934865, "d_left": 1.0342420341123209, "psi_rad": 4.022675217939833, "kappa_radpm": 0.627845616886813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 379, "s_m": 37.9, "d_m": 0.0, "x_m": -1.024615197708788, "y_m": -11.506869847567357, "d_right": 1.0973979225222128, "d_left": 1.0144821003268256, "psi_rad": 4.093483760680266, "kappa_radpm": 0.7418928384102719, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 380, "s_m": 38.0, "d_m": 0.0, "x_m": -1.0796885851948295, "y_m": -11.590228351379206, "d_right": 1.0782187212222953, "d_left": 0.9973229667409869, "psi_rad": 4.171053785621887, "kappa_radpm": 0.9280746721129951, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 381, "s_m": 38.1, "d_m": 0.0, "x_m": -1.1274769327779586, "y_m": -11.677950786203688, "d_right": 1.0703580251596396, "d_left": 0.9815251112509322, "psi_rad": 4.279098695102865, "kappa_radpm": 1.0416623450328144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 382, "s_m": 38.2, "d_m": 0.0, "x_m": -1.163383181672688, "y_m": -11.77114684729728, "d_right": 1.084766836835927, "d_left": 0.9627038961239562, "psi_rad": 4.37938625462845, "kappa_radpm": 0.8458683664872546, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 383, "s_m": 38.300000000000004, "d_m": 0.0, "x_m": -1.1927393398845274, "y_m": -11.866634073863537, "d_right": 1.114635593096172, "d_left": 0.9470968318161382, "psi_rad": 4.448272368400317, "kappa_radpm": 0.6416067466393227, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 384, "s_m": 38.400000000000006, "d_m": 0.0, "x_m": -1.215505397599593, "y_m": -11.963882049561565, "d_right": 1.1379945508009839, "d_left": 0.9350671704767516, "psi_rad": 4.507707603956314, "kappa_radpm": 0.5307119503956326, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 385, "s_m": 38.5, "d_m": 0.0, "x_m": -1.233334677443289, "y_m": -12.06219090420119, "d_right": 1.17154727032857, "d_left": 0.9285788136805369, "psi_rad": 4.554414758479443, "kappa_radpm": 0.41591125442610677, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 386, "s_m": 38.6, "d_m": 0.0, "x_m": -1.2469328203911274, "y_m": -12.161164578915509, "d_right": 1.209891904490221, "d_left": 0.9285366874672711, "psi_rad": 4.590889854841536, "kappa_radpm": 0.24149344299689623, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 387, "s_m": 38.7, "d_m": 0.0, "x_m": -1.2575489266081146, "y_m": -12.260504933871921, "d_right": 1.2463970059888205, "d_left": 0.9362097902748486, "psi_rad": 4.6027134470788225, "kappa_radpm": -0.06300100517619756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 388, "s_m": 38.800000000000004, "d_m": 0.0, "x_m": -1.2688033830203993, "y_m": -12.359775881975557, "d_right": 1.2739786038058178, "d_left": 0.9474451547122267, "psi_rad": 4.578289653806296, "kappa_radpm": -0.34839035647340255, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 389, "s_m": 38.900000000000006, "d_m": 0.0, "x_m": -1.2842556426257326, "y_m": -12.458465943740526, "d_right": 1.2980266900980721, "d_left": 0.9628658742668709, "psi_rad": 4.5330353757841415, "kappa_radpm": -0.42562899276009647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 390, "s_m": 39.0, "d_m": 0.0, "x_m": -1.3044340548722635, "y_m": -12.55630272433855, "d_right": 1.3227099982010166, "d_left": 0.9829983851014743, "psi_rad": 4.493163855254277, "kappa_radpm": -0.314424417828274, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 391, "s_m": 39.1, "d_m": 0.0, "x_m": -1.3277026619484804, "y_m": -12.653465320571293, "d_right": 1.3513544021569859, "d_left": 1.006216534031255, "psi_rad": 4.470150492218487, "kappa_radpm": -0.2380943280967851, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 392, "s_m": 39.2, "d_m": 0.0, "x_m": -1.352365928610012, "y_m": -12.750287778613993, "d_right": 1.3852943427268132, "d_left": 1.030835043477179, "psi_rad": 4.44554498963492, "kappa_radpm": -0.27521975347968963, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 393, "s_m": 39.300000000000004, "d_m": 0.0, "x_m": -1.3803747084893612, "y_m": -12.846146773113944, "d_right": 1.4154353722272495, "d_left": 1.058802554840333, "psi_rad": 4.415106541522549, "kappa_radpm": -0.29160330659961486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 394, "s_m": 39.400000000000006, "d_m": 0.0, "x_m": -1.4108807927838318, "y_m": -12.9412874068818, "d_right": 1.4437183262877686, "d_left": 1.0892825634065781, "psi_rad": 4.387224328314997, "kappa_radpm": -0.3385785551090992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 395, "s_m": 39.5, "d_m": 0.0, "x_m": -1.4442052115344974, "y_m": -13.035481132310652, "d_right": 1.4595344978717637, "d_left": 1.1226047745534347, "psi_rad": 4.347390830500729, "kappa_radpm": -0.375500875348429, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 396, "s_m": 39.6, "d_m": 0.0, "x_m": -1.4821819867124548, "y_m": -13.127881161356584, "d_right": 1.4743387117645108, "d_left": 1.160622268985456, "psi_rad": 4.312124153245311, "kappa_radpm": -0.3644238458667526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 397, "s_m": 39.7, "d_m": 0.0, "x_m": -1.5220615535665525, "y_m": -13.219492819215098, "d_right": 1.4936852887756555, "d_left": 1.2005992893345765, "psi_rad": 4.274506061327379, "kappa_radpm": -0.374184717163768, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 398, "s_m": 39.800000000000004, "d_m": 0.0, "x_m": -1.5668712691259057, "y_m": -13.308765102550405, "d_right": 1.5017526853318202, "d_left": 1.2456076703152341, "psi_rad": 4.237287209812558, "kappa_radpm": -0.29674848643153506, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 399, "s_m": 39.900000000000006, "d_m": 0.0, "x_m": -1.6134499243205518, "y_m": -13.39715267049915, "d_right": 1.5144214010539923, "d_left": 1.2924863844645813, "psi_rad": 4.215156364041071, "kappa_radpm": -0.29519946053101265, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 400, "s_m": 40.0, "d_m": 0.0, "x_m": -1.662179658121041, "y_m": -13.48437929832836, "d_right": 1.5137406763033714, "d_left": 1.3413850862507608, "psi_rad": 4.178247317706355, "kappa_radpm": -0.29726787709279057, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 401, "s_m": 40.1, "d_m": 0.0, "x_m": -1.7151530008482059, "y_m": -13.569095352519582, "d_right": 1.5137193420192465, "d_left": 1.3939018075405172, "psi_rad": 4.155702788622514, "kappa_radpm": -0.12745353826777883, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 402, "s_m": 40.2, "d_m": 0.0, "x_m": -1.767764786035526, "y_m": -13.65403682256622, "d_right": 1.5147208979424416, "d_left": 1.4462534974032075, "psi_rad": 4.1527566100527995, "kappa_radpm": -0.11912431436774229, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 403, "s_m": 40.300000000000004, "d_m": 0.0, "x_m": -1.8212337314714124, "y_m": -13.73843503462491, "d_right": 1.5149480305682246, "d_left": 1.4996307312791408, "psi_rad": 4.131877925748965, "kappa_radpm": -0.1739519129298217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 404, "s_m": 40.400000000000006, "d_m": 0.0, "x_m": -1.8773436414782518, "y_m": -13.82110345331955, "d_right": 1.5160236690305808, "d_left": 1.5263086130342594, "psi_rad": 4.117966227466836, "kappa_radpm": -0.04221918127498947, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 405, "s_m": 40.5, "d_m": 0.0, "x_m": -1.933141157485889, "y_m": -13.903983411518329, "d_right": 1.514247490805586, "d_left": 1.539065824560858, "psi_rad": 4.123434089493967, "kappa_radpm": 0.041466604570863375, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 406, "s_m": 40.6, "d_m": 0.0, "x_m": -1.9883451844670197, "y_m": -13.987262715291358, "d_right": 1.516948128840759, "d_left": 1.540195111146335, "psi_rad": 4.126259548381007, "kappa_radpm": 0.027397580914607644, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 407, "s_m": 40.7, "d_m": 0.0, "x_m": -2.0436731677913254, "y_m": -14.070456221377498, "d_right": 1.5164968231242517, "d_left": 1.5349380837905167, "psi_rad": 4.128913605676889, "kappa_radpm": 0.025803744100967307, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 408, "s_m": 40.800000000000004, "d_m": 0.0, "x_m": -2.098434746976375, "y_m": -14.154027947392233, "d_right": 1.5066402421612413, "d_left": 1.5354946443522561, "psi_rad": 4.131420297201201, "kappa_radpm": 0.008926532439437196, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 409, "s_m": 40.900000000000006, "d_m": 0.0, "x_m": -2.153346989534152, "y_m": -14.237500901172305, "d_right": 1.5014416744638828, "d_left": 1.5427156837726783, "psi_rad": 4.130698912164776, "kappa_radpm": -0.02213558827485862, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 410, "s_m": 41.0, "d_m": 0.0, "x_m": -2.2082290997853247, "y_m": -14.320993551958475, "d_right": 1.5029183705565166, "d_left": 1.5329898775613473, "psi_rad": 4.126993179546229, "kappa_radpm": -0.03394510136009776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 411, "s_m": 41.1, "d_m": 0.0, "x_m": -2.263756079332551, "y_m": -14.404053607781629, "d_right": 1.5033230824716988, "d_left": 1.5294137410157103, "psi_rad": 4.123909891892756, "kappa_radpm": -0.024063624395307404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 412, "s_m": 41.2, "d_m": 0.0, "x_m": -2.3191461798196107, "y_m": -14.487197531137546, "d_right": 1.5049480448639376, "d_left": 1.5306817597898263, "psi_rad": 4.122180454667168, "kappa_radpm": 0.002638273202137942, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 413, "s_m": 41.300000000000004, "d_m": 0.0, "x_m": -2.3749623808104134, "y_m": -14.570068422622729, "d_right": 1.5043317774248817, "d_left": 1.5281783558849482, "psi_rad": 4.124437546533184, "kappa_radpm": 0.06795209208221742, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 414, "s_m": 41.400000000000006, "d_m": 0.0, "x_m": -2.4299819013023196, "y_m": -14.653469546924574, "d_right": 1.507170411643939, "d_left": 1.5283479604995038, "psi_rad": 4.135770873083612, "kappa_radpm": 0.1041090833231384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 415, "s_m": 41.5, "d_m": 0.0, "x_m": -2.483904983425314, "y_m": -14.737583370311274, "d_right": 1.517896447656446, "d_left": 1.5243096020496985, "psi_rad": 4.1452593631978125, "kappa_radpm": 0.10530029146995634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 416, "s_m": 41.6, "d_m": 0.0, "x_m": -2.5373304954571267, "y_m": -14.822011166235487, "d_right": 1.5300939245655596, "d_left": 1.5219414028065112, "psi_rad": 4.156830931377603, "kappa_radpm": 0.10505547850706343, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 417, "s_m": 41.7, "d_m": 0.0, "x_m": -2.5892888144009327, "y_m": -14.907344063675971, "d_right": 1.537379994844355, "d_left": 1.510903350010473, "psi_rad": 4.166270458899225, "kappa_radpm": 0.09810869102263364, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 418, "s_m": 41.800000000000004, "d_m": 0.0, "x_m": -2.6411120724353805, "y_m": -14.992767081191108, "d_right": 1.5401001898980455, "d_left": 1.5053917955292992, "psi_rad": 4.17645266958213, "kappa_radpm": 0.1341900378359595, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 419, "s_m": 41.900000000000006, "d_m": 0.0, "x_m": -2.6913254129942428, "y_m": -15.079146225135613, "d_right": 1.534230276847488, "d_left": 1.5044847889799786, "psi_rad": 4.193108466466416, "kappa_radpm": 0.13865465301620805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 420, "s_m": 42.0, "d_m": 0.0, "x_m": -2.7402752816165887, "y_m": -15.166248567009323, "d_right": 1.5221306345236485, "d_left": 1.4992800355543618, "psi_rad": 4.204183600185371, "kappa_radpm": 0.0906767519840046, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 421, "s_m": 42.1, "d_m": 0.0, "x_m": -2.7885621772735947, "y_m": -15.253716961007061, "d_right": 1.5172883334013312, "d_left": 1.4908855898507547, "psi_rad": 4.211243816863218, "kappa_radpm": 0.04550217496862352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 422, "s_m": 42.2, "d_m": 0.0, "x_m": -2.836270962485684, "y_m": -15.341490208327691, "d_right": 1.5163261643924841, "d_left": 1.4885085334363504, "psi_rad": 4.213284035179096, "kappa_radpm": 0.10052278894604028, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 423, "s_m": 42.300000000000004, "d_m": 0.0, "x_m": -2.8842021326377822, "y_m": -15.429157768010917, "d_right": 1.5189420262369873, "d_left": 1.4930743502865589, "psi_rad": 4.231348374652425, "kappa_radpm": 0.26706576411123395, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 424, "s_m": 42.400000000000006, "d_m": 0.0, "x_m": -2.9287126849653173, "y_m": -15.518603953621222, "d_right": 1.5239094170858505, "d_left": 1.500451917590457, "psi_rad": 4.266697188001343, "kappa_radpm": 0.2538943889059886, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 425, "s_m": 42.5, "d_m": 0.0, "x_m": -2.970329239167979, "y_m": -15.609433315001612, "d_right": 1.5163252688094728, "d_left": 1.4996017633819119, "psi_rad": 4.282127252433623, "kappa_radpm": 0.05001763055845876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 426, "s_m": 42.6, "d_m": 0.0, "x_m": -3.0120601378185303, "y_m": -15.700213412830081, "d_right": 1.5151803958369372, "d_left": 1.504890924631543, "psi_rad": 4.276700714113034, "kappa_radpm": -0.06812839952473837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 427, "s_m": 42.7, "d_m": 0.0, "x_m": -3.054662400923004, "y_m": -15.790590886626672, "d_right": 1.5075671769585923, "d_left": 1.5080171087344416, "psi_rad": 4.268501572528676, "kappa_radpm": -0.13653808158381464, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 428, "s_m": 42.800000000000004, "d_m": 0.0, "x_m": -3.097876887324134, "y_m": -15.880675761855212, "d_right": 1.5058090347562236, "d_left": 1.5134382875949115, "psi_rad": 4.249393097796272, "kappa_radpm": -0.2511573304158854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 429, "s_m": 42.900000000000006, "d_m": 0.0, "x_m": -3.1438931621770037, "y_m": -15.969343558895405, "d_right": 1.5075375684885866, "d_left": 1.524922134488872, "psi_rad": 4.218270106445498, "kappa_radpm": -0.39191446063822744, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 430, "s_m": 43.0, "d_m": 0.0, "x_m": -3.1926207477407016, "y_m": -16.056553849379554, "d_right": 1.512799574954193, "d_left": 1.5345191187686276, "psi_rad": 4.171010205668626, "kappa_radpm": -0.5344899143409987, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 431, "s_m": 43.1, "d_m": 0.0, "x_m": -3.2467923992055567, "y_m": -16.1404699832106, "d_right": 1.5182835490080044, "d_left": 1.5517027575155953, "psi_rad": 4.111372123577299, "kappa_radpm": -0.5891677486400515, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 432, "s_m": 43.2, "d_m": 0.0, "x_m": -3.3055373190459796, "y_m": -16.22124393918358, "d_right": 1.5247752515477193, "d_left": 1.57184930656364, "psi_rad": 4.053176655940616, "kappa_radpm": -0.6316840977711169, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 433, "s_m": 43.300000000000004, "d_m": 0.0, "x_m": -3.3690820193506346, "y_m": -16.298294899584896, "d_right": 1.53171847619675, "d_left": 1.5865755010546683, "psi_rad": 3.9850353040230755, "kappa_radpm": -0.6637324749581075, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 434, "s_m": 43.400000000000006, "d_m": 0.0, "x_m": -3.438269495446627, "y_m": -16.370353894829677, "d_right": 1.5337493851458235, "d_left": 1.601984621082565, "psi_rad": 3.920430160948994, "kappa_radpm": -0.6314235779179422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 435, "s_m": 43.5, "d_m": 0.0, "x_m": -3.511220480411989, "y_m": -16.438580447283265, "d_right": 1.5343011216255689, "d_left": 1.6255827685285933, "psi_rad": 3.858750588439487, "kappa_radpm": -0.6498355221868657, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 436, "s_m": 43.6, "d_m": 0.0, "x_m": -3.588742430339248, "y_m": -16.501574129313752, "d_right": 1.5344074930627012, "d_left": 1.6526348070176002, "psi_rad": 3.790463056511621, "kappa_radpm": -0.6654713038965498, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 437, "s_m": 43.7, "d_m": 0.0, "x_m": -3.6703137510015225, "y_m": -16.559240526257604, "d_right": 1.532968307768221, "d_left": 1.6821130491142535, "psi_rad": 3.725656327660177, "kappa_radpm": -0.5899571966662442, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 438, "s_m": 43.800000000000004, "d_m": 0.0, "x_m": -3.7553346432782666, "y_m": -16.611690244996424, "d_right": 1.5269624755026343, "d_left": 1.7138815966256191, "psi_rad": 3.6724716171783722, "kappa_radpm": -0.3962172018759347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 439, "s_m": 43.900000000000006, "d_m": 0.0, "x_m": -3.8425807362771716, "y_m": -16.660378185966067, "d_right": 1.5231104619259865, "d_left": 1.7547665471754712, "psi_rad": 3.64641288728499, "kappa_radpm": -0.22852904239780703, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 440, "s_m": 44.0, "d_m": 0.0, "x_m": -3.9302328546778695, "y_m": -16.708335127622846, "d_right": 1.5249703498856786, "d_left": 1.8010078163903522, "psi_rad": 3.626765808698811, "kappa_radpm": -0.26548153048907785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 441, "s_m": 44.1, "d_m": 0.0, "x_m": -4.019317364387189, "y_m": -16.75355442983154, "d_right": 1.5302773729655215, "d_left": 1.8540899286866708, "psi_rad": 3.5933165811871746, "kappa_radpm": -0.30451696388081206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 442, "s_m": 44.2, "d_m": 0.0, "x_m": -4.109972878102982, "y_m": -16.795541937239545, "d_right": 1.53849060120517, "d_left": 1.9137989892095784, "psi_rad": 3.5658624159226484, "kappa_radpm": -0.2780158756183315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 443, "s_m": 44.300000000000004, "d_m": 0.0, "x_m": -4.201411769018644, "y_m": -16.835807133332683, "d_right": 1.5512360950582047, "d_left": 1.9772247752382452, "psi_rad": 3.5377134060635083, "kappa_radpm": -0.2636359553860501, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 444, "s_m": 44.400000000000006, "d_m": 0.0, "x_m": -4.29428630921231, "y_m": -16.87262697571401, "d_right": 1.5665919949811382, "d_left": 2.028720298708953, "psi_rad": 3.5131352248454384, "kappa_radpm": -0.21181256698056927, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 445, "s_m": 44.5, "d_m": 0.0, "x_m": -4.387595529231193, "y_m": -16.908351561003975, "d_right": 1.586954195455436, "d_left": 2.084707005342764, "psi_rad": 3.4953508926673944, "kappa_radpm": -0.2744673374206652, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 446, "s_m": 44.6, "d_m": 0.0, "x_m": -4.481721770308796, "y_m": -16.941845649625304, "d_right": 1.6109767999603608, "d_left": 2.1457566938370847, "psi_rad": 3.4582417573613053, "kappa_radpm": -0.41129037777310806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 447, "s_m": 44.7, "d_m": 0.0, "x_m": -4.577396220521491, "y_m": -16.97054443197489, "d_right": 1.6359312261176517, "d_left": 2.2133597809606234, "psi_rad": 3.413092817112773, "kappa_radpm": -0.5200537284081097, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 448, "s_m": 44.800000000000004, "d_m": 0.0, "x_m": -4.674124180293208, "y_m": -16.99540545435234, "d_right": 1.66272648232811, "d_left": 2.286062482824145, "psi_rad": 3.3542310116796834, "kappa_radpm": -0.633501275717494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 449, "s_m": 44.900000000000006, "d_m": 0.0, "x_m": -4.772495888136886, "y_m": -17.01266688346039, "d_right": 1.6876088764542239, "d_left": 2.3656080990082646, "psi_rad": 3.286392561969274, "kappa_radpm": -0.7037809473579415, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 450, "s_m": 45.0, "d_m": 0.0, "x_m": -4.871734698470465, "y_m": -17.024221114125044, "d_right": 1.7124554974213166, "d_left": 2.4038295925851076, "psi_rad": 3.213474822208095, "kappa_radpm": -0.584715439386656, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 451, "s_m": 45.1, "d_m": 0.0, "x_m": -4.971603251993102, "y_m": -17.02700385433598, "d_right": 1.7342604755550373, "d_left": 2.3551591115847796, "psi_rad": 3.1694494740919428, "kappa_radpm": -0.4402534811615233, "vx_mps": 0.0, "ax_mps2": 0.0}]}, "global_traj_markers_iqp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -5.007813764016707, "y": -15.802804831264263, "z": 0.21052277765695163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42104555531390325}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -5.096120667819898, "y": -15.756334143626972, "z": 0.20987037023665558}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41974074047331117}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.1813695125791925, "y": -15.704223358366924, "z": 0.20978938860331556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4195787772066311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.2624968751990675, "y": -15.646957055475264, "z": 0.20970837569786052}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41941675139572104}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.340685821493822, "y": -15.583965773835283, "z": 0.21037780498947933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42075560997895867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.414073997028503, "y": -15.517226898551758, "z": 0.21186104087800336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42372208175600673}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.4842989354270815, "y": -15.445421012761585, "z": 0.21331860389297438}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42663720778594877}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.549584600643954, "y": -15.370333308284016, "z": 0.2146014518421439}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4292029036842878}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.610736656776083, "y": -15.291002107099947, "z": 0.21563026076993516}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4312605215398703}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.666802625540131, "y": -15.208550505500432, "z": 0.21631940880588899}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43263881761177797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.718229805509442, "y": -15.12278855465479, "z": 0.21756192300996965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4351238460199393}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.764965160372124, "y": -15.034419181624642, "z": 0.21941280524009588}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43882561048019175}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.807005458683621, "y": -14.943785301460416, "z": 0.2213617291625538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4427234583251076}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -5.844257176496887, "y": -14.851102570213403, "z": 0.22307484891164217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44614969782328434}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -5.876684952885075, "y": -14.756681758289734, "z": 0.22474977514105196}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4494995502821039}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -5.904448675200301, "y": -14.660732440813206, "z": 0.22674457053172534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4534891410634507}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -5.927692179042801, "y": -14.5635357108358, "z": 0.22904900976244694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4580980195248939}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -5.94649194456106, "y": -14.465481622922152, "z": 0.2314814181621821}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4629628363243642}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -5.960961481553812, "y": -14.366536088624029, "z": 0.23390359121870294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4678071824374059}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -5.971120939772477, "y": -14.26738335621157, "z": 0.23634085549661518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47268171099323036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -5.977145388029135, "y": -14.16752255993687, "z": 0.23883367438319733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47766734876639466}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -5.979118799199797, "y": -14.067838971006823, "z": 0.24143487156171692}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48286974312343384}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -5.977182074511118, "y": -13.967801231433096, "z": 0.24410310161677665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4882062032335533}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -5.971489395033647, "y": -13.86824690326249, "z": 0.2468765529776757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4937531059553514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -5.962164414919615, "y": -13.768690560944767, "z": 0.24976852222229928}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49953704444459857}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -5.9494185776820805, "y": -13.669741011487979, "z": 0.2528099235266148}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5056198470532296}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -5.933377376818307, "y": -13.57109173245421, "z": 0.2560056446306163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5120112892612326}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -5.9142770640367015, "y": -13.473136748874186, "z": 0.2593880783855569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5187761567711138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -5.892271168156171, "y": -13.37569531159019, "z": 0.2629830948662958}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5259661897325916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -5.867606030498258, "y": -13.278958071379124, "z": 0.2668396589913124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5336793179826248}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -5.840481530061306, "y": -13.182838826596509, "z": 0.27099364476794496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5419872895358899}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -5.811147583230872, "y": -13.08739111491428, "z": 0.27548251545859503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5509650309171901}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -5.779837366410432, "y": -12.99256250730488, "z": 0.28033916092588884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5606783218517777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -5.746800602118818, "y": -12.89831923964194, "z": 0.2855976831269017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5711953662538034}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -5.712292020402521, "y": -12.804609082566143, "z": 0.29072567820192924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5814513564038585}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -5.676561254872437, "y": -12.711344369128058, "z": 0.29571642180263946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5914328436052789}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -5.639875771773227, "y": -12.618464947448237, "z": 0.30057795927315556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6011559185463111}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -5.602481828678468, "y": -12.525848950850282, "z": 0.3053175839415614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6106351678831228}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -5.564652127947771, "y": -12.433433810949163, "z": 0.3099419320107723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6198838640215446}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -5.526631011449987, "y": -12.341070147304242, "z": 0.3144570625872971}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6289141251745942}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -5.488705978376985, "y": -12.248694711989216, "z": 0.31886852559771256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6377370511954251}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -5.4511314299441915, "y": -12.156144561563536, "z": 0.32318141976086784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6463628395217357}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -5.4142136181722424, "y": -12.063362321088976, "z": 0.3274004423396103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6548008846792206}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -5.378220201263983, "y": -11.970183473339539, "z": 0.3315299320534251}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6630598641068502}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -5.343473256177264, "y": -11.876573857179828, "z": 0.33557390626714095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6711478125342819}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -5.3102219832773, "y": -11.78238389314518, "z": 0.3388311366721938}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6776622733443876}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -5.278734401724778, "y": -11.68764321329203, "z": 0.3411318745823136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6822637491646272}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -5.2490899401055175, "y": -11.592269704918548, "z": 0.34294607755259804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6858921551051961}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -5.221227991123113, "y": -11.496389787123956, "z": 0.3450523622866053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6901047245732106}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -5.195002260279977, "y": -11.400023625017237, "z": 0.3475592337028549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6951184674057098}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -5.170241108854378, "y": -11.303273215113256, "z": 0.3506417432806837}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7012834865613674}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -5.14678209533968, "y": -11.206193975808002, "z": 0.3542056563457291}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7084113126914582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -5.124498964306637, "y": -11.108838892256554, "z": 0.3578142100743116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7156284201486232}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -5.1032656372017255, "y": -11.011248008621061, "z": 0.3613583625585697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7227167251171394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -5.082957233146891, "y": -10.913464987725499, "z": 0.36484046532112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.72968093064224}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -5.063444632772245, "y": -10.815515476295891, "z": 0.36826273202356885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7365254640471377}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -5.044601122615956, "y": -10.717440555873093, "z": 0.3716272495242877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7432544990485754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -5.026295202376209, "y": -10.619258890037372, "z": 0.3749359878211924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7498719756423848}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -5.00839835667822, "y": -10.52100726910384, "z": 0.37819080901394125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7563816180278825}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -4.990777560025796, "y": -10.422701277270436, "z": 0.3813934754012273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7627869508024546}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -4.973302207649024, "y": -10.324373640967266, "z": 0.3804929637014926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7609859274029852}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -4.9558383027714275, "y": -10.226040819987949, "z": 0.3729655784821247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7459311569642494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -4.938253631242833, "y": -10.127732084950651, "z": 0.3657674789722942}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7315349579445884}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -4.920414180992446, "y": -10.029467965284951, "z": 0.35888242172113105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7177648434422621}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -4.902186894041041, "y": -9.931275531486254, "z": 0.35229468133100195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7045893626620039}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -4.883438676700253, "y": -9.833182003694692, "z": 0.3459899463995885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.691979892799177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -4.864036232653363, "y": -9.735214018271778, "z": 0.3399544636256453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6799089272512906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -4.843848205849205, "y": -9.637407843456252, "z": 0.3341759888949004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6683519777898008}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -4.822741596237749, "y": -9.539791737525876, "z": 0.3286419706596183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6572839413192366}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -4.800587840329571, "y": -9.442413077057003, "z": 0.3233412402133476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6466824804266952}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -4.777255257148232, "y": -9.345303836067847, "z": 0.31826250134440254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6365250026888051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -4.7526195066248915, "y": -9.248524298152299, "z": 0.3133958101186955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.626791620237391}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -4.7265512691224485, "y": -9.152112242107831, "z": 0.3087309936879612}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6174619873759224}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -4.698932033981709, "y": -9.056142468381415, "z": 0.3042591412860846}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6085182825721692}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -4.669636032257131, "y": -8.960660410673366, "z": 0.29997194282180545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5999438856436109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -4.638552242560814, "y": -8.865756945012592, "z": 0.29586263690011044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5917252738002209}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -4.605559312777126, "y": -8.771487271321645, "z": 0.29192551616740714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5838510323348143}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -4.570554985758025, "y": -8.677959545972149, "z": 0.2881568404167735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.576313680833547}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -4.53342297688775, "y": -8.58524086834594, "z": 0.28455074080221393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5691014816044279}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -4.494072048247525, "y": -8.493457367484224, "z": 0.28110229919970714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5622045983994143}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -4.452394506970777, "y": -8.402690378199953, "z": 0.2778136868971981}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5556273737943962}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -4.40831070621927, "y": -8.313083827113921, "z": 0.2746909490630458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5493818981260916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -4.361719834229148, "y": -8.224737793034347, "z": 0.27172795383075954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5434559076615191}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -4.31255677574312, "y": -8.137812513483484, "z": 0.2689146200279526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5378292400559052}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -4.26074024787963, "y": -8.05242670087182, "z": 0.2662748926604316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5325497853208632}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -4.20621651912251, "y": -7.968756451365746, "z": 0.2638496417231931}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5276992834463862}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -4.148910006902911, "y": -7.886957983571137, "z": 0.2616374923337745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.523274984667549}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -4.088775012002917, "y": -7.807219719996609, "z": 0.25962201944920393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5192440388984079}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -4.025775259064586, "y": -7.729722764231677, "z": 0.2578635941551952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5157271883103904}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -3.959871825511693, "y": -7.654668634015843, "z": 0.25647320052899325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5129464010579865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -3.891043463434698, "y": -7.582315255055615, "z": 0.25552725512911134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5110545102582227}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -3.819223007731609, "y": -7.512892702635358, "z": 0.255138053344939}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.510276106689878}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -3.7444282291417634, "y": -7.446735165860513, "z": 0.2550396044964247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5100792089928494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -3.6666767222838157, "y": -7.383988856169632, "z": 0.2549411176306021}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5098822352612042}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -3.5863104392689404, "y": -7.324757299479685, "z": 0.25524917399218805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5104983479843761}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -3.503493009738297, "y": -7.268869092115758, "z": 0.2560846569305998}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5121693138611996}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -3.418729001541551, "y": -7.216181653717936, "z": 0.2579068502336308}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5158137004672616}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -3.332196600826701, "y": -7.166270096010874, "z": 0.260726827927863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.521453655855726}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -3.2443836578161087, "y": -7.118817309315012, "z": 0.26468762585021355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5293752517004271}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -3.1554664577890725, "y": -7.07334432756634, "z": 0.2696957421071647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5393914842143294}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -3.0657764279631623, "y": -7.029498790631827, "z": 0.27528096723453316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5505619344690663}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -2.9754815978217066, "y": -6.986869394513537, "z": 0.28069986166625477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5613997233325095}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -2.884774042024911, "y": -6.9450959389612015, "z": 0.2859634158358272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5719268316716544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -2.7938552821233915, "y": -6.903828953284663, "z": 0.29108146632758874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5821629326551775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -2.702836438485257, "y": -6.862685631230527, "z": 0.28672900167036747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5734580033407349}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -2.611950862437245, "y": -6.821345899225351, "z": 0.27784240139043526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5556848027808705}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -2.5212733624044152, "y": -6.779426230023163, "z": 0.2695718218408615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.539143643681723}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -2.4310586280897706, "y": -6.736634497561364, "z": 0.261845327729099}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.523690655458198}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -2.341379678194184, "y": -6.692602098006222, "z": 0.25460215345043025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5092043069008605}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -2.252511663850485, "y": -6.647066484690788, "z": 0.24778478041261248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49556956082522496}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -2.164555302339912, "y": -6.599685308962569, "z": 0.24136144711114818}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48272289422229636}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -2.077805194670376, "y": -6.550217382627647, "z": 0.23531373794359506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4706274758871901}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -1.9924303542278243, "y": -6.498348457224726, "z": 0.22962664313595443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45925328627190887}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -1.908744221200299, "y": -6.443843678154237, "z": 0.22429945646243582}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44859891292487164}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -1.8270116536987757, "y": -6.386432053940268, "z": 0.21930913375169747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43861826750339494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -1.7475679981594654, "y": -6.325895107267077, "z": 0.21463015981594022}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42926031963188044}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -1.6707786937877152, "y": -6.262048347938977, "z": 0.2103640797538414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4207281595076828}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -1.5970402869716582, "y": -6.194670445415302, "z": 0.2067380916126831}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4134761832253662}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -1.5269181814473505, "y": -6.1235935932551415, "z": 0.20371885153321817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40743770306643634}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -1.4608955945021644, "y": -6.048629635443288, "z": 0.20118320866955552}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40236641733911105}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -1.3995861594534873, "y": -5.969857816771732, "z": 0.19901994438621348}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39803988877242696}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -1.3433956777655467, "y": -5.887286022877035, "z": 0.1968363157363405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.393672631472681}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -1.2927511033062258, "y": -5.801277089600552, "z": 0.19491483749225746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38982967498451493}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -1.2480935135729, "y": -5.71196799207891, "z": 0.19410031620260182}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38820063240520364}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -1.210222747156791, "y": -5.619613674056966, "z": 0.1940254196813817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3880508393627634}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -1.1796582240629732, "y": -5.524555845521039, "z": 0.19395049423789204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3879009884757841}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -1.1565205821421731, "y": -5.427421878666908, "z": 0.1941270013338683}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3882540026677366}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -1.1406494923506754, "y": -5.328850607241796, "z": 0.19479163175102804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3895832635020561}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -1.1314667596562051, "y": -5.229426280363715, "z": 0.1967198530114028}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3934397060228056}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -1.128432060847307, "y": -5.129641659554168, "z": 0.1995258111766296}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3990516223532592}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -1.1311318925716871, "y": -5.029821508908442, "z": 0.20276391740787314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4055278348157463}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -1.1391459339173093, "y": -4.930324925824453, "z": 0.2064018935788301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4128037871576602}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -1.1520515568062444, "y": -4.831276485694925, "z": 0.21044020390228393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42088040780456787}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -1.1694098099209949, "y": -4.7329925716907155, "z": 0.2148294593641432}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4296589187282864}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -1.1908574195248012, "y": -4.635412938293598, "z": 0.2195193345980098}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4390386691960196}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -1.2159640146368944, "y": -4.538834143587253, "z": 0.2244981589464403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4489963178928806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -1.2444392430137368, "y": -4.443025840514557, "z": 0.22974844315149515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4594968863029903}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -1.275863208156944, "y": -4.348315853735674, "z": 0.23523305118841137}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47046610237682274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -1.310077093804478, "y": -4.254368665729799, "z": 0.24083846819261057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48167693638522113}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -1.3467144013899706, "y": -4.161524086755618, "z": 0.24654802428581546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4930960485716309}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -1.3856932063642278, "y": -4.069466022229378, "z": 0.25228512797727604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5045702559545521}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -1.4267284258781159, "y": -3.9784125699040533, "z": 0.25805805604437565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5161161120887513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -1.469687891328798, "y": -3.8882217557002776, "z": 0.26389327520032635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5277865504006527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -1.514431719429989, "y": -3.7988109513615256, "z": 0.26965839478197473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5393167895639495}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -1.5606740793903306, "y": -3.710407572528135, "z": 0.27524475421776995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5504895084355399}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -1.6085400998631538, "y": -3.622472437046394, "z": 0.28066470636267365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5613294127253473}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -1.657480494813065, "y": -3.535712449450745, "z": 0.28592924986087603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5718584997217521}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -1.7079242640697885, "y": -3.4490887094848692, "z": 0.29104822832562344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5820964566512469}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -1.7590503764518315, "y": -3.3637329201698485, "z": 0.29603049336254883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5920609867250977}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -1.8115204364706443, "y": -3.278262838597244, "z": 0.300884039149058}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.601768078298116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -1.864350845382257, "y": -3.1939815650834564, "z": 0.305616114410264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.611232228820528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -1.9182278457847126, "y": -3.1094631428790684, "z": 0.2995893699975105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.599178739995021}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -1.9721946756193933, "y": -3.025822960556835, "z": 0.29115432543176534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5823086508635307}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -2.026719498065814, "y": -2.9418886117703904, "z": 0.2816754039861919}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5633508079723838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -2.08101939077494, "y": -2.8583285425601255, "z": 0.271725498651228}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.543450997302456}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -2.135213084169047, "y": -2.7743491418830812, "z": 0.262386149905074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.524772299810148}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -2.188710291695947, "y": -2.6901501935104877, "z": 0.25364028369757785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5072805673951557}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -2.241314638735324, "y": -2.605260605689704, "z": 0.24554016178727545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4910803235745509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -2.292544102827083, "y": -2.519589103082507, "z": 0.23805054384417335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4761010876883467}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -2.342018847117658, "y": -2.432853443175657, "z": 0.2311661741313761}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4623323482627522}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -2.389267671841214, "y": -2.344898305869142, "z": 0.2248385329838761}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4496770659677522}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -2.4338472788698406, "y": -2.255524707181332, "z": 0.21903889329428566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4380777865885713}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -2.4752471487908405, "y": -2.1646756539026093, "z": 0.21371962840441236}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4274392568088247}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -2.513018028508219, "y": -2.0721916283500805, "z": 0.20886017349876898}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41772034699753796}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -2.5466096249229095, "y": -1.9781859992602515, "z": 0.20440534373885522}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40881068747771043}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -2.5755764908142926, "y": -1.8825609360864366, "z": 0.2003579657632127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4007159315264254}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -2.599360676748265, "y": -1.7856280870332224, "z": 0.1966517918933293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3933035837866586}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -2.6175308144572784, "y": -1.6873713271796218, "z": 0.19329926861468824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3865985372293765}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -2.6295710908261243, "y": -1.5883043124724898, "z": 0.1902911073179783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3805822146359566}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -2.635053356099964, "y": -1.488527966422454, "z": 0.18771059165747717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37542118331495433}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -2.6335261460567847, "y": -1.388752525235014, "z": 0.18535366081611054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3707073216322211}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -2.624654333770932, "y": -1.2892237487577278, "z": 0.18329154642885065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3665830928577013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -2.6081910155795724, "y": -1.190852582547832, "z": 0.18151676949272932}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36303353898545865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -2.5838439630991106, "y": -1.093905275852124, "z": 0.18011342166097263}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36022684332194527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -2.5516091141378086, "y": -0.9996388593708825, "z": 0.1790034550309328}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3580069100618656}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -2.5111999234549844, "y": -0.9081293524457295, "z": 0.17825463877542055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3565092775508411}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -2.463060871580999, "y": -0.8210094244301915, "z": 0.17781268525419297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35562537050838594}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -2.4068408779984916, "y": -0.7381496382379191, "z": 0.17774407355991606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3554881471198321}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -2.3435462870906334, "y": -0.6612802454671853, "z": 0.1776754353703376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3553508707406752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -2.2731575553237575, "y": -0.5900793221440697, "z": 0.1781185131341712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3562370262683424}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -2.197111716061478, "y": -0.5256735904343628, "z": 0.17874627501368504}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35749255002737007}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -2.115665643407764, "y": -0.4675717584073469, "z": 0.1803588419666343}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3607176839332686}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -2.0302426318271793, "y": -0.41614491157584754, "z": 0.1826516879682941}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3653033759365882}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -1.9410403514237686, "y": -0.3709834544473527, "z": 0.1853613523511602}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3707227047023204}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -1.84911341888526, "y": -0.3322024731010716, "z": 0.18833380756257026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3766676151251405}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -1.7546797633640305, "y": -0.29951484055752675, "z": 0.19149635557089853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38299271114179706}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -1.658496043489278, "y": -0.27285853066870025, "z": 0.1947825334864398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3895650669728796}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -1.5607927672972557, "y": -0.25200376198454, "z": 0.19814733346300623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39629466692601245}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -1.4621214616151332, "y": -0.2368108521892143, "z": 0.2015549612453332}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4031099224906664}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -1.362710623856191, "y": -0.227077798204667, "z": 0.2049835148710784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4099670297421568}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -1.2629624630491194, "y": -0.22262912684568215, "z": 0.20841797826795527}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41683595653591055}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -1.1630877098154684, "y": -0.22327238912543068, "z": 0.21185163209439584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4237032641887917}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -1.0633860127730057, "y": -0.22881817572019808, "z": 0.21527939001212446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4305587800242489}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -0.9640432618816712, "y": -0.23907992962033286, "z": 0.21869414357139957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43738828714279915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -0.8652835965682187, "y": -0.25386902296882374, "z": 0.22209427630219572}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44418855260439144}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -0.7672660089273621, "y": -0.2730055962459063, "z": 0.22547382863648066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4509476572729613}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -0.6701590344580228, "y": -0.29630893461916546, "z": 0.2288328889879835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.457665777975967}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -0.5740960875448724, "y": -0.3236068940710839, "z": 0.23216708536662403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46433417073324806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -0.47920326185092055, "y": -0.3547300575749097, "z": 0.23547713065688142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47095426131376283}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -0.3855923089423253, "y": -0.3895144414298386, "z": 0.23875992536678015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4775198507335603}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -0.2933551311887561, "y": -0.4278040589592217, "z": 0.24201594500703094}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4840318900140619}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -0.20258690820392405, "y": -0.46944269330322186, "z": 0.24524306133541493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49048612267082986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -0.11335058472484295, "y": -0.51428966123574, "z": 0.24844096931123252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49688193862246505}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -0.0257299723438781, "y": -0.5621952218680735, "z": 0.25160851577641485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5032170315528297}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": 0.060236628759238194, "y": -0.613035341386886, "z": 0.2547443708777701}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5094887417555402}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": 0.1444729023259387, "y": -0.6666654116345313, "z": 0.2578478825696515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.515695765139303}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": 0.2269612085754425, "y": -0.7229791594487773, "z": 0.2609163213239671}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5218326426479342}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": 0.30763002823686597, "y": -0.7818351809958749, "z": 0.26395079958590356}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5279015991718071}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": 0.38648036396912605, "y": -0.8431446106859822, "z": 0.2669510768637369}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5339021537274738}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": 0.4634435252090118, "y": -0.9067659937461561, "z": 0.26991886237827484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5398377247565497}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": 0.5385374809053061, "y": -0.9726280792298679, "z": 0.2728554051647881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5457108103295762}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": 0.6116956046824032, "y": -1.0405877045168435, "z": 0.27576224731892457}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5515244946378491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": 0.682946077489492, "y": -1.1105888586246568, "z": 0.27863685641691055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5572737128338211}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": 0.7522320053109984, "y": -1.182495265709156, "z": 0.281480677384924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.562961354769848}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": 0.8195792802357486, "y": -1.256255141089871, "z": 0.28429184715511413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5685836943102283}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": 0.8849469629106234, "y": -1.3317467805784649, "z": 0.2870714985826193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5741429971652386}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": 0.9483538343184643, "y": -1.4089161998544841, "z": 0.28981846184308985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5796369236861797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": 1.009774237875591, "y": -1.4876580339007308, "z": 0.2925335605552322}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5850671211104644}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": 1.0692204177111313, "y": -1.567914693389179, "z": 0.2952161019133741}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5904322038267482}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": 1.1266794232325226, "y": -1.6495966867855498, "z": 0.2978666357585044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5957332715170088}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": 1.182158325604897, "y": -1.7326424630973682, "z": 0.3004851489004842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6009702978009684}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": 1.2356541110430788, "y": -1.8169768227950525, "z": 0.30307213327637406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6061442665527481}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": 1.287170513056533, "y": -1.9025353318250289, "z": 0.30562740622330065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6112548124466013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": 1.336711064657797, "y": -1.9892542191228781, "z": 0.30815117269353054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6163023453870611}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": 1.384278639006727, "y": -2.0770688949578844, "z": 0.3106437122617107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6212874245234214}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": 1.4298802287642483, "y": -2.1659226554948057, "z": 0.3131055894262944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6262111788525888}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": 1.4735204276977503, "y": -2.25575456539983, "z": 0.3155373174086654}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6310746348173308}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": 1.5152069233167063, "y": -2.346509820888257, "z": 0.3179398160455797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6358796320911594}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": 1.5549480858800884, "y": -2.4381357898249822, "z": 0.3203132615084103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6406265230168205}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": 1.5927495994995184, "y": -2.530573485320507, "z": 0.3226583796863968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6453167593727936}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": 1.6286253824572952, "y": -2.6237846134519995, "z": 0.32497513638953024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6499502727790605}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": 1.6625772740716913, "y": -2.7176995198160023, "z": 0.32726452099681264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6545290419936253}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": 1.6946259120647684, "y": -2.812300047158411, "z": 0.32952672189323096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6590534437864619}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": 1.724768779321297, "y": -2.9074995048577703, "z": 0.3317641505919947}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6635283011839894}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": 1.7530337074525828, "y": -3.003305967857733, "z": 0.3339763691780652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6679527383561304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": 1.779412271926288, "y": -3.0996074714850805, "z": 0.3361634954068243}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6723269908136486}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": 1.803939132761904, "y": -3.1964471139420407, "z": 0.33832470751693106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6766494150338621}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": 1.826601695753351, "y": -3.293688285428668, "z": 0.3404595878670826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6809191757341652}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": 1.847434644868286, "y": -3.3913891653347754, "z": 0.3425677193496051}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6851354386992102}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": 1.8664302506910113, "y": -3.489414149641304, "z": 0.3446539679217686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6893079358435372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": 1.8836202301944942, "y": -3.5878187673454094, "z": 0.3467186080456778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6934372160913556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": 1.8990037478093813, "y": -3.6864780450242756, "z": 0.34876608509099843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6975321701819969}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": 1.912608971848069, "y": -3.7854386728194287, "z": 0.35079691392557305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7015938278511461}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": 1.9244414178434268, "y": -3.884590040337313, "z": 0.3528141531567928}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7056283063135856}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": 1.9345259022327097, "y": -3.983966259192852, "z": 0.354818537366836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.709637074733672}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": 1.942874019058581, "y": -4.083475841690462, "z": 0.3568140590877671}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7136281181755342}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": 1.9495085441578819, "y": -4.183135579159168, "z": 0.3588026254708746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7176052509417492}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": 1.954447175522155, "y": -4.282877303674685, "z": 0.36079078373607953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7215815674721591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": 1.9577132090714482, "y": -4.382698909324031, "z": 0.36278276685660843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7255655337132169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": 1.9593294765202616, "y": -4.482554656134353, "z": 0.3647845508185766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7295691016371532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": 1.9593211891756115, "y": -4.5824258867440415, "z": 0.3668006781720883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7336013563441766}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": 1.9577139364870513, "y": -4.682286430666487, "z": 0.36883305711817704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7376661142363541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": 1.954534310931836, "y": -4.782102697261376, "z": 0.37088357936512}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.74176715873024}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": 1.9498083567153601, "y": -4.881868716290808, "z": 0.3729529263978153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7459058527956306}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": 1.943564597987724, "y": -4.9815352435001055, "z": 0.37504250797305927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7500850159461185}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": 1.9358282833843783, "y": -5.081117347766165, "z": 0.37715359898394224}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7543071979678845}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": 1.9266312411112727, "y": -5.180550380463361, "z": 0.3792888402109558}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7585776804219116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": 1.9159971227545554, "y": -5.279869069574199, "z": 0.38144938960065555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7628987792013111}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": 1.9039617921732905, "y": -5.378994999811079, "z": 0.3836379786039887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7672759572079774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": 1.890545871875199, "y": -5.477981375667063, "z": 0.38585417760470847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7717083552094169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": 1.8757889637869565, "y": -5.576734191284771, "z": 0.38809688671281206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7761937734256241}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": 1.8597056197756898, "y": -5.675327696480647, "z": 0.39036351153883075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7807270230776615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": 1.8423383764576065, "y": -5.773648688700661, "z": 0.3926463809891767}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7852927619783534}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": 1.823693645032343, "y": -5.871793802903657, "z": 0.3949454829607691}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7898909659215382}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": 1.8038193297657539, "y": -5.9696344662279754, "z": 0.39726108267517013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7945221653503403}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": 1.7827164474795183, "y": -6.067282828602738, "z": 0.3995949905365438}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7991899810730876}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": 1.7604393885982215, "y": -6.164602762360563, "z": 0.4019537271746845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.803907454349369}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": 1.7369857909639972, "y": -6.261715364048884, "z": 0.40433850159416684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8086770031883337}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": 1.7124155565316128, "y": -6.3584802413365, "z": 0.40675305889391733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8135061177878347}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": 1.686722309246072, "y": -6.455026153718058, "z": 0.40919841977857674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8183968395571535}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": 1.6599712365995551, "y": -6.551209668002989, "z": 0.4116787467283186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8233574934566372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": 1.6321521687754355, "y": -6.647165886961804, "z": 0.41419504893729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.82839009787458}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": 1.603335235902672, "y": -6.742749958860719, "z": 0.41675178889186887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8335035777837377}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": 1.5735068139015553, "y": -6.838101700630049, "z": 0.4193498890765931}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8386997781531862}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": 1.5427404870172632, "y": -6.933078860819175, "z": 0.4219602238898254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8439204477796508}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": 1.51102216858396, "y": -7.027816204742977, "z": 0.42453673393356667}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8490734678671333}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": 1.4784254630578046, "y": -7.122183703085458, "z": 0.4270802482768245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.854160496553649}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": 1.4449374266216921, "y": -7.216307285956394, "z": 0.42959156350276906}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8591831270055381}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": 1.410630936513198, "y": -7.310069270915962, "z": 0.4320714454630718}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8641428909261436}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": 1.3754943331295917, "y": -7.403587523407272, "z": 0.4345206309122605}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.869041261824521}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": 1.3395996345624241, "y": -7.496755285903732, "z": 0.4369398290319719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8738796580639439}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": 1.3029364300154165, "y": -7.589683549717723, "z": 0.4393297228540336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8786594457080672}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": 1.265575829132254, "y": -7.682275172653312, "z": 0.4416909705904642}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8833819411809284}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": 1.2275086079975426, "y": -7.774635251051475, "z": 0.4440242068777278}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8880484137554556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": 1.1888047140375828, "y": -7.866675223228708, "z": 0.44633004394190495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8926600878838099}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": 1.1494560419785191, "y": -7.958494779955832, "z": 0.44860907269083683}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8972181453816737}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": 1.1095312951991576, "y": -8.050013512368903, "z": 0.4508618637387627}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9017237274775254}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": 1.0690238781276686, "y": -8.14132639211273, "z": 0.4530889683684797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9061779367369595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": 1.028002495102318, "y": -8.232360245038791, "z": 0.4552909194356217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9105818388712434}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": 0.9864626931630835, "y": -8.32320739222584, "z": 0.45746823221925526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9149364644385105}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": 0.9444740564477015, "y": -8.413799942169025, "z": 0.45962140522263895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9192428104452779}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": 0.9020335660337845, "y": -8.504229077211319, "z": 0.4617509209276687}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9235018418553373}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": 0.859210713505835, "y": -8.59443091822515, "z": 0.4638572465062415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.927714493012483}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": 0.8160027967288315, "y": -8.68449499968484, "z": 0.4659408344915083}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9318816689830166}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": 0.772478639514083, "y": -8.774361302554684, "z": 0.4680021234117453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9360042468234906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": 0.7286362169750161, "y": -8.864117264855821, "z": 0.47004153838935686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9400830767787137}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": 0.684543598244522, "y": -8.953706841205273, "z": 0.4720594917073285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.944118983414657}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": 0.6401999729592022, "y": -9.043214991115669, "z": 0.47405638334526307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9481127666905261}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": 0.5956721049289984, "y": -9.132590119503819, "z": 0.4760326014869758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9520652029739516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": 0.550960881449684, "y": -9.221913615943565, "z": 0.47798852300146966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9559770460029393}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": 0.5061311110330361, "y": -9.311139140249098, "z": 0.4799245138989787}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9598490277979574}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": 0.46118615144448677, "y": -9.400343213498752, "z": 0.48184092976364107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9636818595272821}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": 0.4161880280545142, "y": -9.489485860477052, "z": 0.4837381161642476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9674762323284952}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": 0.3711434393594509, "y": -9.57863701453955, "z": 0.4856164090444121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9712328180888242}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": 0.3261105453950789, "y": -9.667764650594409, "z": 0.4874761350934064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9749522701868129}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": 0.2811004735756978, "y": -9.756929878879237, "z": 0.4893176120988204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9786352241976408}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": 0.23616623241448623, "y": -9.846110607636243, "z": 0.49114114928212443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9822822985642489}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": 0.1913245884344797, "y": -9.935356477159875, "z": 0.4929470476181347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9858940952362694}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": 0.1466219733693627, "y": -10.02465774054889, "z": 0.49473560013931794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9894712002786359}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": 0.1020822014817501, "y": -10.11404938087875, "z": 0.49650709222580425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9930141844516085}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": 0.05774328527992047, "y": -10.20353711778355, "z": 0.49826180188191993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9965236037638399}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": 0.013637409325634477, "y": -10.293137774600494, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -0.030206967016900066, "y": -10.382874937304955, "z": 0.49728577420344816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9945715484068963}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -0.07374808473328658, "y": -10.472744293396184, "z": 0.49292799398181425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9858559879636285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -0.11696860760951813, "y": -10.562790819265945, "z": 0.4886742187527673}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9773484375055346}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -0.15981546201512184, "y": -10.652982835021374, "z": 0.48449871326050464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9689974265210093}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -0.2022895924882581, "y": -10.743394272949354, "z": 0.48039720974149913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9607944194829983}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -0.24432682199536446, "y": -10.833955941053038, "z": 0.47633851775239966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9526770355047993}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -0.28594909233025234, "y": -10.924773523922957, "z": 0.472318698238216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.944637396476432}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -0.32708329849855217, "y": -11.015742812062813, "z": 0.4683313509679661}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9366627019359322}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -0.3677630753564054, "y": -11.106992736954043, "z": 0.4643736756962476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9287473513924952}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -0.4079083101107806, "y": -11.198397761882735, "z": 0.46044163417904926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9208832683580985}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -0.44755940363026386, "y": -11.290104151119023, "z": 0.4565321093812791}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9130642187625582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -0.4866320839744237, "y": -11.381970389508869, "z": 0.4526333802588175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.905266760517635}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -0.5251709186715543, "y": -11.474151890257668, "z": 0.4487429209431881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8974858418863761}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": -0.5630912861102946, "y": -11.566497548876091, "z": 0.44486962707270344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8897392541454069}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": -0.6004369643009757, "y": -11.659170577447753, "z": 0.4410103130222528}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8820206260445056}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": -0.6371238948060224, "y": -11.752014064001418, "z": 0.4371171978171304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8742343956342608}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": -0.6732046771693114, "y": -11.845185803790805, "z": 0.4331679840907019}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8663359681814038}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": -0.7086068708185789, "y": -11.938528322008978, "z": 0.42924903498971556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8584980699794311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": -0.7433602560918641, "y": -12.032201156746897, "z": 0.4253829885139876}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8507659770279752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": -0.7773733917205099, "y": -12.126032389063498, "z": 0.4214831502193146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8429663004386292}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": -0.8107299120214206, "y": -12.22023395104857, "z": 0.4174316552738912}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8348633105477824}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": -0.8433643304916686, "y": -12.314528277793274, "z": 0.4132167273127512}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8264334546255024}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": -0.8754726122379306, "y": -12.409186013063003, "z": 0.4084346746229278}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8168693492458556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": -0.9070598705709917, "y": -12.503847679464153, "z": 0.4030616054778668}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8061232109557336}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": -0.9383642707861853, "y": -12.598766134635627, "z": 0.39694525949408854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7938905189881771}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": -0.9694384149064815, "y": -12.693615379504484, "z": 0.39007640062376975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7801528012475395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": -1.000506320257634, "y": -12.788594496629406, "z": 0.3826771515800888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7653543031601776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": -1.0316374126493664, "y": -12.883436784848008, "z": 0.37566987304076827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7513397460815365}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": -1.063035390885124, "y": -12.978295311355101, "z": 0.3690330881892987}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7380661763785974}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": -1.0947775198093108, "y": -13.072946800564528, "z": 0.362740085038079}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.725480170076158}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": -1.127048760971244, "y": -13.16750017235155, "z": 0.3567734146682399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7135468293364798}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": -1.1599338172512386, "y": -13.261773582974643, "z": 0.35111301756251784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7022260351250357}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": -1.1935989384245613, "y": -13.355828694143295, "z": 0.34574586670588314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6914917334117663}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": -1.228137130102684, "y": -13.449522737888955, "z": 0.3406641762690966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6813283525381932}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": -1.2636969793223378, "y": -13.542866921679407, "z": 0.33586167969960956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6717233593992191}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": -1.3003806810348897, "y": -13.635747911239221, "z": 0.3313309847014048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6626619694028096}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": -1.3383234444637393, "y": -13.728140106711257, "z": 0.3270664812972791}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6541329625945582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": -1.3776292065942286, "y": -13.819942173550636, "z": 0.32305467314479897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6461093462895979}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": -1.4184206101527281, "y": -13.911106144733147, "z": 0.3192859402038109}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6385718804076218}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": -1.460795495225957, "y": -14.001534425929364, "z": 0.3157485296568222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6314970593136444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": -1.5048590726759161, "y": -14.091155304235588, "z": 0.3124328299247222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6248656598494444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": -1.5507036261888556, "y": -14.179878152739391, "z": 0.3093294473206581}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6186588946413162}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": -1.598410453078596, "y": -14.267601136708386, "z": 0.3064270851893341}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6128541703786682}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": -1.6480731800129103, "y": -14.354254584894404, "z": 0.3037126489725291}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6074252979450582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": -1.699732306855825, "y": -14.439689361476226, "z": 0.30116662638903485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6023332527780697}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": -1.7534958667571512, "y": -14.523883110050924, "z": 0.29877849365493275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5975569873098655}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": -1.809334994632544, "y": -14.606610596699527, "z": 0.29652583686195105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5930516737239021}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": -1.867406149005174, "y": -14.687938833568287, "z": 0.29439474646780844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5887894929356169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": -1.9275667263126284, "y": -14.767527085227321, "z": 0.2923493981403217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5846987962806434}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": -1.9900627734954657, "y": -14.845575470003855, "z": 0.29038335115289715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5807667023057943}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": -2.0545754369668012, "y": -14.9215810788201, "z": 0.2884710226268746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5769420452537491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": -2.1215367267412106, "y": -14.995952212969817, "z": 0.2865929489006941}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5731858978013882}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": -2.1903841096001226, "y": -15.067989275312236, "z": 0.2847025047242152}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5694050094484304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": -2.261652696526621, "y": -15.138193552162223, "z": 0.28281343765510114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5656268753102023}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": -2.3348015563779514, "y": -15.205968779494071, "z": 0.2809144728515362}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5618289457030724}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": -2.4101945168151837, "y": -15.271618153237833, "z": 0.2789595100252832}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5579190200505664}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": -2.487453649175845, "y": -15.334779178911637, "z": 0.2769354927387438}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5538709854774876}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": -2.566745511873878, "y": -15.395568908698095, "z": 0.27481669332655334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5496333866531067}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": -2.64788149778527, "y": -15.453814427976514, "z": 0.2726021271821793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5452042543643586}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": -2.7308004512555253, "y": -15.509454719295077, "z": 0.2702756920022882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5405513840045764}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": -2.815523007278814, "y": -15.56248044268949, "z": 0.26782506961126834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5356501392225367}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": -2.901804146612137, "y": -15.61271799297202, "z": 0.265244467310192}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.530488934620384}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": -2.9897501495064587, "y": -15.66020416647601, "z": 0.2625283013089926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5250566026179851}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": -3.0791230520357815, "y": -15.704774174170984, "z": 0.259694830125833}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.519389660251666}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": -3.1699090192944666, "y": -15.746388729824934, "z": 0.2567265810773997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5134531621547994}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": -3.26212001109444, "y": -15.78500594109555, "z": 0.25364015864710115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5072803172942023}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": -3.355425239953743, "y": -15.820453903395855, "z": 0.2503816475230129}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5007632950460258}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": -3.4500964171201782, "y": -15.852775318323266, "z": 0.24706158419857926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49412316839715853}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": -3.5456278261832677, "y": -15.881670230196233, "z": 0.243875934948181}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.487751869896362}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": -3.6422489175593973, "y": -15.90704893830989, "z": 0.24064980678296655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4812996135659331}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": -3.7397074565430977, "y": -15.928749420629284, "z": 0.23737295874533815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4747459174906763}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": -3.837946764266236, "y": -15.946738677136693, "z": 0.23383386297911873}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46766772595823747}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": -3.936905775153543, "y": -15.960918822860105, "z": 0.2302854692108319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4605709384216638}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": -4.036145652606463, "y": -15.971050133067601, "z": 0.22686640763117355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4537328152623471}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": -4.135974668271763, "y": -15.976967473758771, "z": 0.22340034969559508}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44680069939119016}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": -4.235615727737835, "y": -15.978492593833272, "z": 0.21989613644198924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4397922728839785}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": -4.3356761873635685, "y": -15.975459918269209, "z": 0.216738809385145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43347761877029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": -4.4349512487936815, "y": -15.9676086628114, "z": 0.21413656038092715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4282731207618543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": -4.534224419530032, "y": -15.954443639914148, "z": 0.21277474461913598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42554948923827196}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": -4.631941772837119, "y": -15.93554728757386, "z": 0.21269264228933432}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42538528457866864}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": -4.728884940447129, "y": -15.910348385592139, "z": 0.21261050825464603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42522101650929206}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": -4.8235840788784925, "y": -15.879706021380244, "z": 0.21396127582356297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42792255164712595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": -4.917092582653446, "y": -15.843743363416841, "z": 0.21643505671146102}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43287011342292203}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": -5.007813764016707, "y": -15.802804831264263, "z": 0.21052277765695163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42104555531390325}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_iqp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -5.007813764016707, "y_m": -15.802804831264263, "d_right": 0.6176469017638407, "d_left": 2.551140943178707, "psi_rad": 2.688103685755485, "kappa_radpm": -0.6067030433086396, "vx_mps": 4.240707383689502, "ax_mps2": -0.5571590633745265}, {"id": 1, "s_m": 0.09987200188210751, "d_m": 0.0, "x_m": -5.096120667819898, "y_m": -15.756334143626972, "d_right": 0.625651308050458, "d_left": 2.4515089147131555, "psi_rad": 2.625620103967208, "kappa_radpm": -0.6441211205166172, "vx_mps": 4.227565485244044, "ax_mps2": -0.06903805341944422}, {"id": 2, "s_m": 0.19974400376421503, "d_m": 0.0, "x_m": -5.1813695125791925, "y_m": -15.704223358366924, "d_right": 0.6334582940988235, "d_left": 2.352359509875761, "psi_rad": 2.559751188728992, "kappa_radpm": -0.6719481795511377, "vx_mps": 4.225934215629087, "ax_mps2": -0.06903805341942644}, {"id": 3, "s_m": 0.2996160056463225, "d_m": 0.0, "x_m": -5.2624968751990675, "y_m": -15.646957055475264, "d_right": 0.6390608355256834, "d_left": 2.254969152129281, "psi_rad": 2.4946956342593753, "kappa_radpm": -0.636587768123258, "vx_mps": 4.224302316078069, "ax_mps2": 0.5712783760289963}, {"id": 4, "s_m": 0.39948800752843006, "d_m": 0.0, "x_m": -5.340685821493822, "y_m": -15.583965773835283, "d_right": 0.6497991693735808, "d_left": 2.1582099426859225, "psi_rad": 2.432884360352528, "kappa_radpm": -0.5934861374985295, "vx_mps": 4.237787097969233, "ax_mps2": 1.2722518466687351}, {"id": 5, "s_m": 0.4993600094105376, "d_m": 0.0, "x_m": -5.414073997028503, "y_m": -15.517226898551758, "d_right": 0.6584631415870176, "d_left": 2.0648303705332194, "psi_rad": 2.37445833013132, "kappa_radpm": -0.5858822989682599, "vx_mps": 4.267664954675393, "ax_mps2": 1.2589384084288722}, {"id": 6, "s_m": 0.599232011292645, "d_m": 0.0, "x_m": -5.4842989354270815, "y_m": -15.445421012761585, "d_right": 0.6763334998778425, "d_left": 1.973153510797229, "psi_rad": 2.3156733478125564, "kappa_radpm": -0.5856366101082213, "vx_mps": 4.297025664754244, "ax_mps2": 1.115173664276477}, {"id": 7, "s_m": 0.6991040131747526, "d_m": 0.0, "x_m": -5.549584600643954, "y_m": -15.370333308284016, "d_right": 0.7023272433308636, "d_left": 1.8859238426846983, "psi_rad": 2.2572114464539794, "kappa_radpm": -0.5901687231468687, "vx_mps": 4.322866967204941, "ax_mps2": 0.8991700289342447}, {"id": 8, "s_m": 0.7989760150568601, "d_m": 0.0, "x_m": -5.610736656776083, "y_m": -15.291002107099947, "d_right": 0.7358143319541631, "d_left": 1.8025990938270884, "psi_rad": 2.1976327071889576, "kappa_radpm": -0.6001208545793384, "vx_mps": 4.343590984173781, "ax_mps2": 0.6047144519676313}, {"id": 9, "s_m": 0.8988480169389677, "d_m": 0.0, "x_m": -5.666802625540131, "y_m": -15.208550505500432, "d_right": 0.7753489794781091, "d_left": 1.7251130055162953, "psi_rad": 2.1388764082495726, "kappa_radpm": -0.5704488906790283, "vx_mps": 4.3574729745078, "ax_mps2": 1.095158569225498}, {"id": 10, "s_m": 0.9987200188210752, "d_m": 0.0, "x_m": -5.718229805509442, "y_m": -15.12278855465479, "d_right": 0.8203988783903469, "d_left": 1.6537565627967603, "psi_rad": 2.0836254603595648, "kappa_radpm": -0.5353832513093066, "vx_mps": 4.382501806153609, "ax_mps2": 1.6430084076006186}, {"id": 11, "s_m": 1.0985920207031827, "d_m": 0.0, "x_m": -5.764965160372124, "y_m": -15.034419181624642, "d_right": 0.870151283265419, "d_left": 1.5896232376122483, "psi_rad": 2.0311216635233467, "kappa_radpm": -0.5210984841368398, "vx_mps": 4.419785419960121, "ax_mps2": 1.7450828915378196}, {"id": 12, "s_m": 1.19846402258529, "d_m": 0.0, "x_m": -5.807005458683621, "y_m": -14.943785301460416, "d_right": 0.9238186295247388, "d_left": 1.5324141541487686, "psi_rad": 1.9790773709383238, "kappa_radpm": -0.5218735159703717, "vx_mps": 4.45904395606819, "ax_mps2": 1.546686147112174}, {"id": 13, "s_m": 1.2983360244673976, "d_m": 0.0, "x_m": -5.844257176496887, "y_m": -14.851102570213403, "d_right": 0.9806356546731394, "d_left": 1.454759019937943, "psi_rad": 1.9269580413468912, "kappa_radpm": -0.5149664514627507, "vx_mps": 4.493552523976891, "ax_mps2": 1.5237311030608667}, {"id": 14, "s_m": 1.3982080263495051, "d_m": 0.0, "x_m": -5.876684952885075, "y_m": -14.756681758289734, "d_right": 1.0399811155074585, "d_left": 1.3827414512911977, "psi_rad": 1.8766470216522648, "kappa_radpm": -0.4923392589181044, "vx_mps": 4.527291733136328, "ax_mps2": 1.829596626236446}, {"id": 15, "s_m": 1.4980800282316127, "d_m": 0.0, "x_m": -5.904448675200301, "y_m": -14.660732440813206, "d_right": 1.0966201741823531, "d_left": 1.3180823319349981, "psi_rad": 1.8286718218363578, "kappa_radpm": -0.4690687351083043, "vx_mps": 4.567474290274933, "ax_mps2": 2.1337235127988015}, {"id": 16, "s_m": 1.5979520301137202, "d_m": 0.0, "x_m": -5.927692179042801, "y_m": -14.5635357108358, "d_right": 1.1548703328538588, "d_left": 1.2619090023820354, "psi_rad": 1.7826505029878894, "kappa_radpm": -0.4529348141696727, "vx_mps": 4.613894219603954, "ax_mps2": 2.2756187495518465}, {"id": 17, "s_m": 1.6978240319958278, "d_m": 0.0, "x_m": -5.94649194456106, "y_m": -14.465481622922152, "d_right": 1.209438499964594, "d_left": 1.2129108549157759, "psi_rad": 1.737966505238472, "kappa_radpm": -0.4427269031509903, "vx_mps": 4.662891921304973, "ax_mps2": 2.2899301639739766}, {"id": 18, "s_m": 1.7976960338779353, "d_m": 0.0, "x_m": -5.960961481553812, "y_m": -14.366536088624029, "d_right": 1.2653705163915638, "d_left": 1.1503011642990923, "psi_rad": 1.6942246348551455, "kappa_radpm": -0.4317990191947211, "vx_mps": 4.711683445337111, "ax_mps2": 2.3282573236547637}, {"id": 19, "s_m": 1.8975680357600428, "d_m": 0.0, "x_m": -5.971120939772477, "y_m": -14.26738335621157, "d_right": 1.3229108111238412, "d_left": 1.0904644297363015, "psi_rad": 1.6517849775667666, "kappa_radpm": -0.419416752783557, "vx_mps": 4.760778962384617, "ax_mps2": 2.4062932847507343}, {"id": 20, "s_m": 1.9974400376421504, "d_m": 0.0, "x_m": -5.977145388029135, "y_m": -14.16752255993687, "d_right": 1.3822365489108261, "d_left": 1.0400516479521258, "psi_rad": 1.610559936004711, "kappa_radpm": -0.4049439795913667, "vx_mps": 4.810993554725573, "ax_mps2": 2.5378274918564343}, {"id": 21, "s_m": 2.0973120395242577, "d_m": 0.0, "x_m": -5.979118799199797, "y_m": -14.067838971006823, "d_right": 1.4294841414180341, "d_left": 1.0001564628326105, "psi_rad": 1.5708327193590959, "kappa_radpm": -0.39220988255458133, "vx_mps": 4.863391286715197, "ax_mps2": 2.631789511654354}, {"id": 22, "s_m": 2.1971840414063655, "d_m": 0.0, "x_m": -5.977182074511118, "y_m": -13.967801231433096, "d_right": 1.4697208166248954, "d_left": 0.9646643397080887, "psi_rad": 1.532283673900171, "kappa_radpm": -0.37803789280359845, "vx_mps": 4.917139308766817, "ax_mps2": 2.7662328147938275}, {"id": 23, "s_m": 2.297056043288473, "d_m": 0.0, "x_m": -5.971489395033647, "y_m": -13.86824690326249, "d_right": 1.5094812521304177, "d_left": 0.9347979277750121, "psi_rad": 1.4953138093891827, "kappa_radpm": -0.3633796711379826, "vx_mps": 4.973006877090628, "ax_mps2": 2.9177258447257097}, {"id": 24, "s_m": 2.39692804517058, "d_m": 0.0, "x_m": -5.962164414919615, "y_m": -13.768690560944767, "d_right": 1.5485035930670863, "d_left": 0.9012418014389308, "psi_rad": 1.4597594603337352, "kappa_radpm": -0.34752052901232205, "vx_mps": 5.0312618339440975, "ax_mps2": 3.10514772156572}, {"id": 25, "s_m": 2.496800047052688, "d_m": 0.0, "x_m": -5.9494185776820805, "y_m": -13.669741011487979, "d_right": 1.589664311989465, "d_left": 0.8770874081535035, "psi_rad": 1.425887874774293, "kappa_radpm": -0.3314801987331976, "vx_mps": 5.0925269051706925, "ax_mps2": 3.3031929316391855}, {"id": 26, "s_m": 2.596672048934795, "d_m": 0.0, "x_m": -5.933377376818307, "y_m": -13.57109173245421, "d_right": 1.6153954840670517, "d_left": 0.8624761750721823, "psi_rad": 1.3935996466818896, "kappa_radpm": -0.31420347426743445, "vx_mps": 5.156900547931738, "ax_mps2": 3.541384675294602}, {"id": 27, "s_m": 2.696544050816903, "d_m": 0.0, "x_m": -5.9142770640367015, "y_m": -13.473136748874186, "d_right": 1.6398153424529562, "d_left": 0.8457831728016596, "psi_rad": 1.3631481369533955, "kappa_radpm": -0.2959432503415364, "vx_mps": 5.225035274059998, "ax_mps2": 3.8149141337560137}, {"id": 28, "s_m": 2.7964160526990103, "d_m": 0.0, "x_m": -5.892271168156171, "y_m": -13.37569531159019, "d_right": 1.6670827196023894, "d_left": 0.8382281788590088, "psi_rad": 1.3345593428657654, "kappa_radpm": -0.27583204314029214, "vx_mps": 5.297452202546461, "ax_mps2": 4.15083855105272}, {"id": 29, "s_m": 2.896288054581118, "d_m": 0.0, "x_m": -5.867606030498258, "y_m": -13.278958071379124, "d_right": 1.6971852687452258, "d_left": 0.8075702753009586, "psi_rad": 1.3080877421575217, "kappa_radpm": -0.254386287933828, "vx_mps": 5.375137667951443, "ax_mps2": 4.538552622623887}, {"id": 30, "s_m": 2.9961600564632254, "d_m": 0.0, "x_m": -5.840481530061306, "y_m": -13.182838826596509, "d_right": 1.7301824492421911, "d_left": 0.7901087531891896, "psi_rad": 1.2837965963787972, "kappa_radpm": -0.2316060923077962, "vx_mps": 5.4588143054667055, "ax_mps2": 4.983253664333604}, {"id": 31, "s_m": 3.096032058345333, "d_m": 0.0, "x_m": -5.811147583230872, "y_m": -13.08739111491428, "d_right": 1.7580678690480283, "d_left": 0.7616683619580172, "psi_rad": 1.2618573809181357, "kappa_radpm": -0.20774219679077732, "vx_mps": 5.5492367637590165, "ax_mps2": 5.483736270206881}, {"id": 32, "s_m": 3.1959040602274404, "d_m": 0.0, "x_m": -5.779837366410432, "y_m": -12.99256250730488, "d_right": 1.7780720033334465, "d_left": 0.7378444248517274, "psi_rad": 1.2423355723481335, "kappa_radpm": -0.1828560140383703, "vx_mps": 5.647067566308447, "ax_mps2": 6.0455575453609445}, {"id": 33, "s_m": 3.2957760621095478, "d_m": 0.0, "x_m": -5.746800602118818, "y_m": -12.89831923964194, "d_right": 1.7952899043502908, "d_left": 0.708543192387361, "psi_rad": 1.2253619743408901, "kappa_radpm": -0.1570062903352579, "vx_mps": 5.75299365266034, "ax_mps2": 6.003693360594365}, {"id": 34, "s_m": 3.3956480639916555, "d_m": 0.0, "x_m": -5.712292020402521, "y_m": -12.804609082566143, "d_right": 1.816319957398724, "d_left": 0.6857865815665699, "psi_rad": 1.210996329542911, "kappa_radpm": -0.13046194462114324, "vx_mps": 5.856290439925936, "ax_mps2": 5.945591646497317}, {"id": 35, "s_m": 3.495520065873763, "d_m": 0.0, "x_m": -5.676561254872437, "y_m": -12.711344369128058, "d_right": 1.8412850822526878, "d_left": 0.6660474084796484, "psi_rad": 1.1993237168332083, "kappa_radpm": -0.10323563796932257, "vx_mps": 5.956822474859089, "ax_mps2": 5.888965816509759}, {"id": 36, "s_m": 3.5953920677558706, "d_m": 0.0, "x_m": -5.639875771773227, "y_m": -12.618464947448237, "d_right": 1.8609627075595225, "d_left": 0.6499771537982624, "psi_rad": 1.19038383405828, "kappa_radpm": -0.07578127342774187, "vx_mps": 6.05475182044703, "ax_mps2": 5.833730848153083}, {"id": 37, "s_m": 3.695264069637978, "d_m": 0.0, "x_m": -5.602481828678468, "y_m": -12.525848950850282, "d_right": 1.8843301837145277, "d_left": 0.6293622977536814, "psi_rad": 1.1841955663970611, "kappa_radpm": -0.04808847980588897, "vx_mps": 6.150225391292544, "ax_mps2": 5.779809625314439}, {"id": 38, "s_m": 3.7951360715200857, "d_m": 0.0, "x_m": -5.564652127947771, "y_m": -12.433433810949163, "d_right": 1.9026814658174487, "d_left": 0.6160991353328594, "psi_rad": 1.1807947597631376, "kappa_radpm": -0.019765078067746866, "vx_mps": 6.243376865067075, "ax_mps2": 5.727131942784958}, {"id": 39, "s_m": 3.895008073402193, "d_m": 0.0, "x_m": -5.526631011449987, "y_m": -12.341070147304242, "d_right": 1.9250024203004095, "d_left": 0.5946410308463967, "psi_rad": 1.1802714447688802, "kappa_radpm": 0.009328805601340358, "vx_mps": 6.334328294585983, "ax_mps2": 5.67563366652273}, {"id": 40, "s_m": 3.994880075284301, "d_m": 0.0, "x_m": -5.488705978376985, "y_m": -12.248694711989216, "d_right": 1.9436646290149466, "d_left": 0.5637576150652491, "psi_rad": 1.1826742218197839, "kappa_radpm": 0.0390905004676947, "vx_mps": 6.423191475897538, "ax_mps2": 5.625256020850134}, {"id": 41, "s_m": 4.094752077166408, "d_m": 0.0, "x_m": -5.4511314299441915, "y_m": -12.156144561563536, "d_right": 1.9660923672551915, "d_left": 0.535842234008911, "psi_rad": 1.188107758498455, "kappa_radpm": 0.06974812224133575, "vx_mps": 6.510069116057537, "ax_mps2": 5.5759449798829195}, {"id": 42, "s_m": 4.194624079048515, "d_m": 0.0, "x_m": -5.4142136181722424, "y_m": -12.063362321088976, "d_right": 1.9794119646214579, "d_left": 0.5250286193155734, "psi_rad": 1.1966157831696325, "kappa_radpm": 0.10075566370458436, "vx_mps": 6.595055835313068, "ax_mps2": 5.527650745138511}, {"id": 43, "s_m": 4.294496080930623, "d_m": 0.0, "x_m": -5.378220201263983, "y_m": -11.970183473339539, "d_right": 1.9823055941327319, "d_left": 0.529520922760079, "psi_rad": 1.208248943934429, "kappa_radpm": 0.1322164013065624, "vx_mps": 6.6782390315217945, "ax_mps2": 5.480327294852986}, {"id": 44, "s_m": 4.394368082812731, "d_m": 0.0, "x_m": -5.343473256177264, "y_m": -11.876573857179828, "d_right": 1.9915206546939968, "d_left": 0.5191430712011541, "psi_rad": 1.2229791935442076, "kappa_radpm": 0.16109280098712717, "vx_mps": 6.759699629270032, "ax_mps2": 4.46245621807972}, {"id": 45, "s_m": 4.494240084694838, "d_m": 0.0, "x_m": -5.3102219832773, "y_m": -11.78238389314518, "d_right": 2.0072562043930895, "d_left": 0.5141008794214038, "psi_rad": 1.2402882825591084, "kappa_radpm": 0.18550837843638832, "vx_mps": 6.825312296853175, "ax_mps2": 3.1780235862381847}, {"id": 46, "s_m": 4.594112086576946, "d_m": 0.0, "x_m": -5.278734401724778, "y_m": -11.68764321329203, "d_right": 2.0295774391967623, "d_left": 0.510384843237702, "psi_rad": 1.259787996312619, "kappa_radpm": 0.1968738782591429, "vx_mps": 6.871657667895534, "ax_mps2": 2.521135257394213}, {"id": 47, "s_m": 4.693984088459053, "d_m": 0.0, "x_m": -5.2490899401055175, "y_m": -11.592269704918548, "d_right": 2.0583775125138564, "d_left": 0.4987147244015817, "psi_rad": 1.2789057918369025, "kappa_radpm": 0.18589894176809973, "vx_mps": 6.908202425746551, "ax_mps2": 2.943806178312294}, {"id": 48, "s_m": 4.79385609034116, "d_m": 0.0, "x_m": -5.221227991123113, "y_m": -11.496389787123956, "d_right": 2.093271702276853, "d_left": 0.4883728512332479, "psi_rad": 1.296848619918421, "kappa_radpm": 0.1715141445086538, "vx_mps": 6.950630790615516, "ax_mps2": 3.527170843577956}, {"id": 49, "s_m": 4.893728092223268, "d_m": 0.0, "x_m": -5.195002260279977, "y_m": -11.400023625017237, "d_right": 2.133835065873402, "d_left": 0.49474694256742324, "psi_rad": 1.3129919836145993, "kappa_radpm": 0.15175552400380996, "vx_mps": 7.0011284528788025, "ax_mps2": 4.372094756370625}, {"id": 50, "s_m": 4.993600094105376, "d_m": 0.0, "x_m": -5.170241108854378, "y_m": -11.303273215113256, "d_right": 2.1795613084541836, "d_left": 0.5191425243307638, "psi_rad": 1.327204592784771, "kappa_radpm": 0.13438049051494044, "vx_mps": 7.063221596777431, "ax_mps2": 5.103015441827188}, {"id": 51, "s_m": 5.093472095987483, "d_m": 0.0, "x_m": -5.14678209533968, "y_m": -11.206193975808002, "d_right": 2.1662879694433568, "d_left": 0.5593535231930475, "psi_rad": 1.3399612311497364, "kappa_radpm": 0.12108230382448062, "vx_mps": 7.135011987432418, "ax_mps2": 5.2195127912822405}, {"id": 52, "s_m": 5.19334409786959, "d_m": 0.0, "x_m": -5.124498964306637, "y_m": -11.108838892256554, "d_right": 2.127506596938398, "d_left": 0.5979192229996437, "psi_rad": 1.3513928207136103, "kappa_radpm": 0.10786564168529011, "vx_mps": 7.2077016061594525, "ax_mps2": 5.177858691091396}, {"id": 53, "s_m": 5.293216099751699, "d_m": 0.0, "x_m": -5.1032656372017255, "y_m": -11.011248008621061, "d_right": 2.0884001793956135, "d_left": 0.6218908982589247, "psi_rad": 1.3615088419447896, "kappa_radpm": 0.09470880490151501, "vx_mps": 7.279093945630699, "ax_mps2": 5.136908219235927}, {"id": 54, "s_m": 5.393088101633806, "d_m": 0.0, "x_m": -5.082957233146891, "y_m": -10.913464987725499, "d_right": 2.0467026254189657, "d_left": 0.6594085584629925, "psi_rad": 1.3703098247796939, "kappa_radpm": 0.08151629334774199, "vx_mps": 7.349236374209022, "ax_mps2": 5.096636314808354}, {"id": 55, "s_m": 5.492960103515913, "d_m": 0.0, "x_m": -5.063444632772245, "y_m": -10.815515476295891, "d_right": 2.0019608521907815, "d_left": 0.7083640298326509, "psi_rad": 1.3777887799059103, "kappa_radpm": 0.06824849019642173, "vx_mps": 7.418173483226642, "ax_mps2": 5.057019373627258}, {"id": 56, "s_m": 5.592832105398021, "d_m": 0.0, "x_m": -5.044601122615956, "y_m": -10.717440555873093, "d_right": 1.9571550335786092, "d_left": 0.7272489175177588, "psi_rad": 1.3839413535983784, "kappa_radpm": 0.0549515419760871, "vx_mps": 7.485947309729638, "ax_mps2": 5.018035131820839}, {"id": 57, "s_m": 5.692704107280128, "d_m": 0.0, "x_m": -5.026295202376209, "y_m": -10.619258890037372, "d_right": 1.913209951090893, "d_left": 0.7455961287194061, "psi_rad": 1.388763347508424, "kappa_radpm": 0.0416071333891777, "vx_mps": 7.552597536762288, "ax_mps2": 4.979662561126511}, {"id": 58, "s_m": 5.792576109162236, "d_m": 0.0, "x_m": -5.00839835667822, "y_m": -10.52100726910384, "d_right": 1.869588491709604, "d_left": 0.7635345503958529, "psi_rad": 1.3922508763236359, "kappa_radpm": 0.02821004535446218, "vx_mps": 7.618161673898892, "ax_mps2": 4.941881774494108}, {"id": 59, "s_m": 5.892448111044343, "d_m": 0.0, "x_m": -4.990777560025796, "y_m": -10.422701277270436, "d_right": 1.8259763166382788, "d_left": 0.7811972114934643, "psi_rad": 1.3943956541028257, "kappa_radpm": 0.014738015171571391, "vx_mps": 7.6826752203531825, "ax_mps2": -1.3937480804022286}, {"id": 60, "s_m": 5.992320112926451, "d_m": 0.0, "x_m": -4.973302207649024, "y_m": -10.324373640967266, "d_right": 1.7870258063052644, "d_left": 0.7987153886236936, "psi_rad": 1.395193771064828, "kappa_radpm": 0.0012245911639971229, "vx_mps": 7.664535584078829, "ax_mps2": -11.521477654666194}, {"id": 61, "s_m": 6.092192114808558, "d_m": 0.0, "x_m": -4.9558383027714275, "y_m": -10.226040819987949, "d_right": 1.7447642878811556, "d_left": 0.8162233858429347, "psi_rad": 1.3946385364450786, "kappa_radpm": -0.012343693802144473, "vx_mps": 7.512906204897519, "ax_mps2": -10.80214639826392}, {"id": 62, "s_m": 6.192064116690666, "d_m": 0.0, "x_m": -4.938253631242833, "y_m": -10.127732084950651, "d_right": 1.6966105620065148, "d_left": 0.8338542466578909, "psi_rad": 1.3927279189099624, "kappa_radpm": -0.025931402079309135, "vx_mps": 7.367909857805753, "ax_mps2": -10.13539017038776}, {"id": 63, "s_m": 6.291936118572774, "d_m": 0.0, "x_m": -4.920414180992446, "y_m": -10.029467965284951, "d_right": 1.6521578764107168, "d_left": 0.8517426262734911, "psi_rad": 1.3894582657374264, "kappa_radpm": -0.03954421607365689, "vx_mps": 7.229219339624817, "ax_mps2": -9.517413115399528}, {"id": 64, "s_m": 6.391808120454881, "d_m": 0.0, "x_m": -4.902186894041041, "y_m": -9.931275531486254, "d_right": 1.6092986749636518, "d_left": 0.8700225491795404, "psi_rad": 1.384829505091771, "kappa_radpm": -0.05316207948395774, "vx_mps": 7.096517882684262, "ax_mps2": -8.943427541834613}, {"id": 65, "s_m": 6.491680122336988, "d_m": 0.0, "x_m": -4.883438676700253, "y_m": -9.833182003694692, "d_right": 1.563614620358515, "d_left": 0.8905855136372423, "psi_rad": 1.3788394255608694, "kappa_radpm": -0.06679171416611195, "vx_mps": 6.969517202409097, "ax_mps2": -8.41018627438287}, {"id": 66, "s_m": 6.5915521242190955, "d_m": 0.0, "x_m": -4.864036232653363, "y_m": -9.735214018271778, "d_right": 1.5225009634734137, "d_left": 0.9221927891274138, "psi_rad": 1.371489044498279, "kappa_radpm": -0.08041703025511755, "vx_mps": 6.847940256444141, "ax_mps2": -7.913376763542758}, {"id": 67, "s_m": 6.691424126101204, "d_m": 0.0, "x_m": -4.843848205849205, "y_m": -9.637407843456252, "d_right": 1.486212653167588, "d_left": 0.9638761879454403, "psi_rad": 1.3627768164935492, "kappa_radpm": -0.09405111877704632, "vx_mps": 6.731540403041751, "ax_mps2": -7.4514283924156794}, {"id": 68, "s_m": 6.791296127983311, "d_m": 0.0, "x_m": -4.822741596237749, "y_m": -9.539791737525876, "d_right": 1.4549802167147126, "d_left": 0.9990643584579387, "psi_rad": 1.3527044287900842, "kappa_radpm": -0.10765464801445294, "vx_mps": 6.620064807607252, "ax_mps2": -7.020641733444999}, {"id": 69, "s_m": 6.891168129865418, "d_m": 0.0, "x_m": -4.800587840329571, "y_m": -9.442413077057003, "d_right": 1.4290086310646577, "d_left": 1.0212678805473365, "psi_rad": 1.3412745329451377, "kappa_radpm": -0.12124006001511438, "vx_mps": 6.513288491084024, "ax_mps2": -6.619534505805356}, {"id": 70, "s_m": 6.991040131747526, "d_m": 0.0, "x_m": -4.777255257148232, "y_m": -9.345303836067847, "d_right": 1.386254447452071, "d_left": 1.046994996256748, "psi_rad": 1.3284894759511987, "kappa_radpm": -0.1347751258232154, "vx_mps": 6.410983905988431, "ax_mps2": -6.24483095467779}, {"id": 71, "s_m": 7.090912133629634, "d_m": 0.0, "x_m": -4.7526195066248915, "y_m": -9.248524298152299, "d_right": 1.3449205317504767, "d_left": 1.0821901182698628, "psi_rad": 1.3143555828542894, "kappa_radpm": -0.14827450774807013, "vx_mps": 6.312950744709214, "ax_mps2": -5.895466148933647}, {"id": 72, "s_m": 7.190784135511741, "d_m": 0.0, "x_m": -4.7265512691224485, "y_m": -9.152112242107831, "d_right": 1.308509670557582, "d_left": 1.1189149878354137, "psi_rad": 1.298874847806846, "kappa_radpm": -0.16170457637627153, "vx_mps": 6.218984088456909, "ax_mps2": -5.568594897271302}, {"id": 73, "s_m": 7.2906561373938485, "d_m": 0.0, "x_m": -4.698932033981709, "y_m": -9.056142468381415, "d_right": 1.2773289065340299, "d_left": 1.1644875975078854, "psi_rad": 1.2820580342630998, "kappa_radpm": -0.17508018452224428, "vx_mps": 6.128904441444512, "ax_mps2": -5.2623694005536015}, {"id": 74, "s_m": 7.390528139275956, "d_m": 0.0, "x_m": -4.669636032257131, "y_m": -8.960660410673366, "d_right": 1.248042143021964, "d_left": 1.204620648152248, "psi_rad": 1.263905425431758, "kappa_radpm": -0.1883960508845455, "vx_mps": 6.042544407698251, "ax_mps2": -4.973920702497205}, {"id": 75, "s_m": 7.490400141158063, "d_m": 0.0, "x_m": -4.638552242560814, "y_m": -8.865756945012592, "d_right": 1.2169878795894744, "d_left": 1.2453813560974503, "psi_rad": 1.2444280524481752, "kappa_radpm": -0.20167862357828534, "vx_mps": 5.959767787714795, "ax_mps2": -4.701151426662582}, {"id": 76, "s_m": 7.590272143040171, "d_m": 0.0, "x_m": -4.605559312777126, "y_m": -8.771487271321645, "d_right": 1.184054393289162, "d_left": 1.2943234741891712, "psi_rad": 1.2236217418973723, "kappa_radpm": -0.21493840875311254, "vx_mps": 5.8804596142835175, "ax_mps2": -4.44102388199912}, {"id": 77, "s_m": 7.690144144922279, "d_m": 0.0, "x_m": -4.570554985758025, "y_m": -8.677959545972149, "d_right": 1.1491534861283763, "d_left": 1.350634508322735, "psi_rad": 1.2014943904768793, "kappa_radpm": -0.22821614407952567, "vx_mps": 5.80454454580344, "ax_mps2": -4.195418902189187}, {"id": 78, "s_m": 7.790016146804386, "d_m": 0.0, "x_m": -4.53342297688775, "y_m": -8.58524086834594, "d_right": 1.1121878909144205, "d_left": 1.3883837369285768, "psi_rad": 1.1780375165451158, "kappa_radpm": -0.24141402346439406, "vx_mps": 5.731904362009638, "ax_mps2": -3.9625766887751404}, {"id": 79, "s_m": 7.889888148686493, "d_m": 0.0, "x_m": -4.494072048247525, "y_m": -8.493457367484224, "d_right": 1.0730942384608413, "d_left": 1.4278886117049163, "psi_rad": 1.1532743249125985, "kappa_radpm": -0.2545400207974497, "vx_mps": 5.6624399936940994, "ax_mps2": -3.7339103594876866}, {"id": 80, "s_m": 7.989760150568602, "d_m": 0.0, "x_m": -4.452394506970777, "y_m": -8.402690378199953, "d_right": 1.0318023233567089, "d_left": 1.4697846369405825, "psi_rad": 1.1271894089950083, "kappa_radpm": -0.26781141948346254, "vx_mps": 5.596195178626785, "ax_mps2": -3.5049040277390144}, {"id": 81, "s_m": 8.089632152450708, "d_m": 0.0, "x_m": -4.40831070621927, "y_m": -8.313083827113921, "d_right": 0.9656757400327682, "d_left": 1.5140684848904606, "psi_rad": 1.099771091387899, "kappa_radpm": -0.2813263300066481, "vx_mps": 5.533291688857164, "ax_mps2": -3.2889808635529425}, {"id": 82, "s_m": 8.189504154332816, "d_m": 0.0, "x_m": -4.361719834229148, "y_m": -8.224737793034347, "d_right": 0.9020767285796103, "d_left": 1.5481946923416199, "psi_rad": 1.0709961236528682, "kappa_radpm": -0.2946172907558205, "vx_mps": 5.473606005914731, "ax_mps2": -3.089841381977437}, {"id": 83, "s_m": 8.289376156214924, "d_m": 0.0, "x_m": -4.31255677574312, "y_m": -8.137812513483484, "d_right": 0.8430544933322206, "d_left": 1.579821002783313, "psi_rad": 1.0409320423289858, "kappa_radpm": -0.3075192532597326, "vx_mps": 5.4169350577012905, "ax_mps2": -2.8699302943968448}, {"id": 84, "s_m": 8.38924815809703, "d_m": 0.0, "x_m": -4.26074024787963, "y_m": -8.05242670087182, "d_right": 0.7895620830549364, "d_left": 1.6143318542142593, "psi_rad": 1.0095495123888192, "kappa_radpm": -0.3212134391890304, "vx_mps": 5.36376118519703, "ax_mps2": -2.6117960701645577}, {"id": 85, "s_m": 8.489120159979139, "d_m": 0.0, "x_m": -4.20621651912251, "y_m": -7.968756451365746, "d_right": 0.7427404240809079, "d_left": 1.6185022624361705, "psi_rad": 0.9767247098954482, "kappa_radpm": -0.3362123006036197, "vx_mps": 5.314907661263358, "ax_mps2": -2.3614633972056764}, {"id": 86, "s_m": 8.588992161861245, "d_m": 0.0, "x_m": -4.148910006902911, "y_m": -7.886957983571137, "d_right": 0.7038240018272577, "d_left": 1.6321137045134648, "psi_rad": 0.9423885756776839, "kappa_radpm": -0.35086842194077966, "vx_mps": 5.2703467906823205, "ax_mps2": -2.134202535798886}, {"id": 87, "s_m": 8.688864163743354, "d_m": 0.0, "x_m": -4.088775012002917, "y_m": -7.807219719996609, "d_right": 0.6740938437619958, "d_left": 1.6550578709071098, "psi_rad": 0.9066659123545682, "kappa_radpm": -0.3645862448369289, "vx_mps": 5.229747712338638, "ax_mps2": -1.8485316117720638}, {"id": 88, "s_m": 8.788736165625462, "d_m": 0.0, "x_m": -4.025775259064586, "y_m": -7.729722764231677, "d_right": 0.6504236689798163, "d_left": 1.683648224691757, "psi_rad": 0.8695195259404456, "kappa_radpm": -0.380110517722291, "vx_mps": 5.194326523187693, "ax_mps2": -1.4527471805335228}, {"id": 89, "s_m": 8.888608167507568, "d_m": 0.0, "x_m": -3.959871825511693, "y_m": -7.654668634015843, "d_right": 0.6182677874826351, "d_left": 1.7158487073150441, "psi_rad": 0.8306160403321448, "kappa_radpm": -0.39902944231242193, "vx_mps": 5.166318853032032, "ax_mps2": -0.9838776519996132}, {"id": 90, "s_m": 8.988480169389677, "d_m": 0.0, "x_m": -3.891043463434698, "y_m": -7.582315255055615, "d_right": 0.5823461315263094, "d_left": 1.753199862808094, "psi_rad": 0.7897651591703343, "kappa_radpm": -0.41965757645739643, "vx_mps": 5.14726401399517, "ax_mps2": -0.40375308802054977}, {"id": 91, "s_m": 9.088352171271783, "d_m": 0.0, "x_m": -3.819223007731609, "y_m": -7.512892702635358, "d_right": 0.5475182872352404, "d_left": 1.7915622146235515, "psi_rad": 0.7466932301154148, "kappa_radpm": -0.44289012255072924, "vx_mps": 5.1394240505562765, "ax_mps2": -0.10203208360824609}, {"id": 92, "s_m": 9.188224173153891, "d_m": 0.0, "x_m": -3.7444282291417634, "y_m": -7.446735165860513, "d_right": 0.5152910214093982, "d_left": 1.8337648944658196, "psi_rad": 0.701446843658287, "kappa_radpm": -0.4546608544530794, "vx_mps": 5.13744092662329, "ax_mps2": -0.10203208360824609}, {"id": 93, "s_m": 9.288096175036, "d_m": 0.0, "x_m": -3.6666767222838157, "y_m": -7.383988856169632, "d_right": 0.4967062973302163, "d_left": 1.866217756581748, "psi_rad": 0.6568158725565272, "kappa_radpm": -0.43904014348059417, "vx_mps": 5.135457036881104, "ax_mps2": 0.3192765712629116}, {"id": 94, "s_m": 9.387968176918106, "d_m": 0.0, "x_m": -3.5863104392689404, "y_m": -7.324757299479685, "d_right": 0.4932194864340658, "d_left": 1.9073229630325197, "psi_rad": 0.6137904832759749, "kappa_radpm": -0.4172210989001852, "vx_mps": 5.141662431383824, "ax_mps2": 0.867854244747657}, {"id": 95, "s_m": 9.487840178800214, "d_m": 0.0, "x_m": -3.503493009738297, "y_m": -7.268869092115758, "d_right": 0.4874659776618785, "d_left": 1.9036969606253908, "psi_rad": 0.5741773989861969, "kappa_radpm": -0.3755911818758272, "vx_mps": 5.158492147889098, "ax_mps2": 1.9026331891467478}, {"id": 96, "s_m": 9.58771218068232, "d_m": 0.0, "x_m": -3.418729001541551, "y_m": -7.216181653717936, "d_right": 0.49826853363036633, "d_left": 1.8217874286451754, "psi_rad": 0.5388254328726385, "kappa_radpm": -0.33066234047964865, "vx_mps": 5.195197860594756, "ax_mps2": 2.9710575681089035}, {"id": 97, "s_m": 9.687584182564429, "d_m": 0.0, "x_m": -3.332196600826701, "y_m": -7.166270096010874, "d_right": 0.5250322998121585, "d_left": 1.7437292308487249, "psi_rad": 0.5084192693827094, "kappa_radpm": -0.2779125834841748, "vx_mps": 5.2520026413546645, "ax_mps2": 4.227556107783585}, {"id": 98, "s_m": 9.787456184446537, "d_m": 0.0, "x_m": -3.2443836578161087, "y_m": -7.118817309315012, "d_right": 0.5658851781132014, "d_left": 1.6699389592981126, "psi_rad": 0.4833001842103548, "kappa_radpm": -0.22701045359602207, "vx_mps": 5.331787760958132, "ax_mps2": 5.4366579956360885}, {"id": 99, "s_m": 9.887328186328643, "d_m": 0.0, "x_m": -3.1554664577890725, "y_m": -7.07334432756634, "d_right": 0.6113698392589713, "d_left": 1.600585110016215, "psi_rad": 0.462936409240589, "kappa_radpm": -0.18065681942578113, "vx_mps": 5.432669745442659, "ax_mps2": 6.183342519145065}, {"id": 100, "s_m": 9.987200188210752, "d_m": 0.0, "x_m": -3.0657764279631623, "y_m": -7.029498790631827, "d_right": 0.6604848401660972, "d_left": 1.5360146366918126, "psi_rad": 0.4472013753019237, "kappa_radpm": -0.13594667882076852, "vx_mps": 5.545176837078107, "ax_mps2": 6.1203348855408874}, {"id": 101, "s_m": 10.08707219009286, "d_m": 0.0, "x_m": -2.9754815978217066, "y_m": -6.986869394513537, "d_right": 0.717978276675342, "d_left": 1.4764741822554093, "psi_rad": 0.43565644799935166, "kappa_radpm": -0.0952785308936429, "vx_mps": 5.65433341331083, "ax_mps2": 6.059110111753164}, {"id": 102, "s_m": 10.186944191974966, "d_m": 0.0, "x_m": -2.884774042024911, "y_m": -6.9450959389612015, "d_right": 0.7743856561424968, "d_left": 1.4089569991564024, "psi_rad": 0.4281663608892823, "kappa_radpm": -0.054940330438430815, "vx_mps": 5.760360862120802, "ax_mps2": 5.999552232001565}, {"id": 103, "s_m": 10.286816193857074, "d_m": 0.0, "x_m": -2.7938552821233915, "y_m": -6.903828953284663, "d_right": 0.838512291588904, "d_left": 1.3389714037939824, "psi_rad": 0.42465752416576863, "kappa_radpm": -0.015402376838249406, "vx_mps": 5.863457328698286, "ax_mps2": -5.108875716890644}, {"id": 104, "s_m": 10.38668819573918, "d_m": 0.0, "x_m": -2.702836438485257, "y_m": -6.862685631230527, "d_right": 0.9090293948413097, "d_left": 1.273068684844926, "psi_rad": 0.42507410140451984, "kappa_radpm": 0.023523615954011253, "vx_mps": 5.775782592431968, "ax_mps2": -10.191994983940111}, {"id": 105, "s_m": 10.486560197621289, "d_m": 0.0, "x_m": -2.611950862437245, "y_m": -6.821345899225351, "d_right": 0.9820804621697344, "d_left": 1.1975613005990102, "psi_rad": 0.42932681485458923, "kappa_radpm": 0.061585544583387164, "vx_mps": 5.596773594724297, "ax_mps2": -9.197222635320532}, {"id": 106, "s_m": 10.586432199503397, "d_m": 0.0, "x_m": -2.5212733624044152, "y_m": -6.779426230023163, "d_right": 1.0564926426674974, "d_left": 1.1232767374163146, "psi_rad": 0.4373564497422555, "kappa_radpm": 0.09891781641419349, "vx_mps": 5.430173532946561, "ax_mps2": -8.341088372961236}, {"id": 107, "s_m": 10.686304201385504, "d_m": 0.0, "x_m": -2.4310586280897706, "y_m": -6.736634497561364, "d_right": 1.1353732634828624, "d_left": 1.0525480621283014, "psi_rad": 0.4490566770696005, "kappa_radpm": 0.13538341999121498, "vx_mps": 5.274533364246256, "ax_mps2": -7.59905831898742}, {"id": 108, "s_m": 10.786176203267612, "d_m": 0.0, "x_m": -2.341379678194184, "y_m": -6.692602098006222, "d_right": 1.218121293052382, "d_left": 0.9857862474869449, "psi_rad": 0.46438435954624735, "kappa_radpm": 0.17118397686428208, "vx_mps": 5.1286290445960905, "ax_mps2": -6.957609873072167}, {"id": 109, "s_m": 10.886048205149718, "d_m": 0.0, "x_m": -2.252511663850485, "y_m": -6.647066484690788, "d_right": 1.304083378453166, "d_left": 0.923656517011594, "psi_rad": 0.4832297781035746, "kappa_radpm": 0.2062650177858137, "vx_mps": 4.991301936809449, "ax_mps2": -6.382691373160764}, {"id": 110, "s_m": 10.985920207031826, "d_m": 0.0, "x_m": -2.164555302339912, "y_m": -6.599685308962569, "d_right": 1.3928775470262067, "d_left": 0.8668074188528235, "psi_rad": 0.5055926612274582, "kappa_radpm": 0.24150282882861906, "vx_mps": 4.861912246712326, "ax_mps2": -5.856229941666343}, {"id": 111, "s_m": 11.085792208913935, "d_m": 0.0, "x_m": -2.077805194670376, "y_m": -6.550217382627647, "d_right": 1.4840255221977052, "d_left": 0.8161173877561172, "psi_rad": 0.5314946755055094, "kappa_radpm": 0.2773057778490905, "vx_mps": 4.740089015959403, "ax_mps2": -5.37146084730346}, {"id": 112, "s_m": 11.185664210796041, "d_m": 0.0, "x_m": -1.9924303542278243, "y_m": -6.498348457224726, "d_right": 1.5748460834902296, "d_left": 0.763838493830144, "psi_rad": 0.5610055946745838, "kappa_radpm": 0.31367541220602335, "vx_mps": 4.625529892187043, "ax_mps2": -4.912332427499442}, {"id": 113, "s_m": 11.28553621267815, "d_m": 0.0, "x_m": -1.908744221200299, "y_m": -6.443843678154237, "d_right": 1.6655871646337117, "d_left": 0.7091607743185456, "psi_rad": 0.5941938632144482, "kappa_radpm": 0.35105684013311883, "vx_mps": 4.518220649395771, "ax_mps2": -4.497107379771805}, {"id": 114, "s_m": 11.385408214560256, "d_m": 0.0, "x_m": -1.8270116536987757, "y_m": -6.386432053940268, "d_right": 1.6614587436294854, "d_left": 0.656851227252919, "psi_rad": 0.6311426373796846, "kappa_radpm": 0.3883131744916679, "vx_mps": 4.41769709274336, "ax_mps2": -4.12462322205629}, {"id": 115, "s_m": 11.485280216442364, "d_m": 0.0, "x_m": -1.7475679981594654, "y_m": -6.325895107267077, "d_right": 1.6226355552711362, "d_left": 0.6127825724298118, "psi_rad": 0.6717593113492936, "kappa_radpm": 0.4251851901411815, "vx_mps": 4.323445251976802, "ax_mps2": -3.6831272540588444}, {"id": 116, "s_m": 11.585152218324472, "d_m": 0.0, "x_m": -1.6707786937877152, "y_m": -6.262048347938977, "d_right": 1.5883315220411955, "d_left": 0.5785597011376679, "psi_rad": 0.7161780099603527, "kappa_radpm": 0.46703373734648346, "vx_mps": 4.237510620959189, "ax_mps2": -3.0723699523963193}, {"id": 117, "s_m": 11.685024220206579, "d_m": 0.0, "x_m": -1.5970402869716582, "y_m": -6.194670445415302, "d_right": 1.5527059458871362, "d_left": 0.5544382928092844, "psi_rad": 0.765393233334234, "kappa_radpm": 0.5186400056618002, "vx_mps": 4.164469808679783, "ax_mps2": -2.51750263267767}, {"id": 118, "s_m": 11.784896222088687, "d_m": 0.0, "x_m": -1.5269181814473505, "y_m": -6.1235935932551415, "d_right": 1.5223595800767695, "d_left": 0.5271991856427083, "psi_rad": 0.8197507869196328, "kappa_radpm": 0.5669610812960727, "vx_mps": 4.10365114648741, "ax_mps2": -2.085656341072779}, {"id": 119, "s_m": 11.884768223970795, "d_m": 0.0, "x_m": -1.4608955945021644, "y_m": -6.048629635443288, "d_right": 1.503609384396824, "d_left": 0.5124383536696797, "psi_rad": 0.8783919316609632, "kappa_radpm": 0.6075392861278858, "vx_mps": 4.052573920858857, "ax_mps2": -1.7587121537709947}, {"id": 120, "s_m": 11.984640225852901, "d_m": 0.0, "x_m": -1.3995861594534873, "y_m": -5.969857816771732, "d_right": 1.4973808929640169, "d_left": 0.500082019549272, "psi_rad": 0.9410458782662391, "kappa_radpm": 0.6410763598135097, "vx_mps": 4.008997777121151, "ax_mps2": -1.7559857208689411}, {"id": 121, "s_m": 12.08451222773501, "d_m": 0.0, "x_m": -1.3433956777655467, "y_m": -5.887286022877035, "d_right": 1.5041572735932172, "d_left": 0.4922569935437124, "psi_rad": 1.0057206128236267, "kappa_radpm": 0.654103614867943, "vx_mps": 3.96501141972166, "ax_mps2": -1.5291512149299678}, {"id": 122, "s_m": 12.184384229617116, "d_m": 0.0, "x_m": -1.2927511033062258, "y_m": -5.801277089600552, "d_right": 1.4993657690529474, "d_left": 0.4980637076036853, "psi_rad": 1.0719599558105881, "kappa_radpm": 0.6830908253526481, "vx_mps": 3.9263057410869258, "ax_mps2": -0.6436853699564662}, {"id": 123, "s_m": 12.284256231499224, "d_m": 0.0, "x_m": -1.2480935135729, "y_m": -5.71196799207891, "d_right": 1.501651458060121, "d_left": 0.5058325921331521, "psi_rad": 1.1433432227266782, "kappa_radpm": 0.7467250233236615, "vx_mps": 3.909898269716566, "ax_mps2": -0.05905256496286468}, {"id": 124, "s_m": 12.384128233381333, "d_m": 0.0, "x_m": -1.210222747156791, "y_m": -5.619613674056966, "d_right": 1.5178879381413224, "d_left": 0.5053119103025149, "psi_rad": 1.2207067258221669, "kappa_radpm": 0.7855711998984302, "vx_mps": 3.9083895767661607, "ax_mps2": -0.05905256496285684}, {"id": 125, "s_m": 12.484000235263439, "d_m": 0.0, "x_m": -1.1796582240629732, "y_m": -5.524555845521039, "d_right": 1.5253485258119874, "d_left": 0.49759864708192275, "psi_rad": 1.2984883028082341, "kappa_radpm": 0.773195999573043, "vx_mps": 3.9068803012142745, "ax_mps2": 0.1391506718632758}, {"id": 126, "s_m": 12.583872237145547, "d_m": 0.0, "x_m": -1.1565205821421731, "y_m": -5.427421878666908, "d_right": 1.540890884940539, "d_left": 0.494549315535719, "psi_rad": 1.3750625298021621, "kappa_radpm": 0.7465439949689231, "vx_mps": 3.9104358069581697, "ax_mps2": 0.5251019641442702}, {"id": 127, "s_m": 12.683744239027654, "d_m": 0.0, "x_m": -1.1406494923506754, "y_m": -5.328850607241796, "d_right": 1.5646083239056165, "d_left": 0.490006156644016, "psi_rad": 1.446071418973488, "kappa_radpm": 0.6759310884292893, "vx_mps": 3.9238239217685624, "ax_mps2": 1.5335786449345286}, {"id": 128, "s_m": 12.783616240909762, "d_m": 0.0, "x_m": -1.1314667596562051, "y_m": -5.229426280363715, "d_right": 1.600538793024528, "d_left": 0.4989637138148226, "psi_rad": 1.5103053146312548, "kappa_radpm": 0.6164944676907377, "vx_mps": 3.9626654296912003, "ax_mps2": 2.2586575715573582}, {"id": 129, "s_m": 12.88348824279187, "d_m": 0.0, "x_m": -1.128432060847307, "y_m": -5.129641659554168, "d_right": 1.6472088578821915, "d_left": 0.521237540672578, "psi_rad": 1.5697929983478371, "kappa_radpm": 0.5751735068886253, "vx_mps": 4.019187805284169, "ax_mps2": 2.64627342520758}, {"id": 130, "s_m": 12.983360244673976, "d_m": 0.0, "x_m": -1.1311318925716871, "y_m": -5.029821508908442, "d_right": 1.70324222964952, "d_left": 0.5555451946045994, "psi_rad": 1.625201547746459, "kappa_radpm": 0.5341921816431808, "vx_mps": 4.08441524127393, "ax_mps2": 3.023875225707304}, {"id": 131, "s_m": 13.083232246556085, "d_m": 0.0, "x_m": -1.1391459339173093, "y_m": -4.930324925824453, "d_right": 1.7535695972372263, "d_left": 0.6000545200094628, "psi_rad": 1.676441842921252, "kappa_radpm": 0.4924995639278426, "vx_mps": 4.157697536812529, "ax_mps2": 3.4196049785617486}, {"id": 132, "s_m": 13.183104248438191, "d_m": 0.0, "x_m": -1.1520515568062444, "y_m": -4.831276485694925, "d_right": 1.8033284537497893, "d_left": 0.6529522206262645, "psi_rad": 1.723620668505193, "kappa_radpm": 0.4529123634700111, "vx_mps": 4.239044042862369, "ax_mps2": 3.791926760234326}, {"id": 133, "s_m": 13.2829762503203, "d_m": 0.0, "x_m": -1.1694098099209949, "y_m": -4.7329925716907155, "d_right": 1.857122749611783, "d_left": 0.7109073495530916, "psi_rad": 1.7669782085093233, "kappa_radpm": 0.4159506793934332, "vx_mps": 4.327459882008938, "ax_mps2": 4.1381343655793845}, {"id": 134, "s_m": 13.382848252202407, "d_m": 0.0, "x_m": -1.1908574195248012, "y_m": -4.635412938293598, "d_right": 1.9179637535082874, "d_left": 0.7650383653863819, "psi_rad": 1.8067281535734898, "kappa_radpm": 0.3801640248476952, "vx_mps": 4.42193131523907, "ax_mps2": 4.490881180251076}, {"id": 135, "s_m": 13.482720254084514, "d_m": 0.0, "x_m": -1.2159640146368944, "y_m": -4.538834143587253, "d_right": 1.9847126580040753, "d_left": 0.814835725397244, "psi_rad": 1.8429569459299773, "kappa_radpm": 0.34601127520276664, "vx_mps": 4.522223252346642, "ax_mps2": 4.844837101534743}, {"id": 136, "s_m": 13.582592255966622, "d_m": 0.0, "x_m": -1.2444392430137368, "y_m": -4.443025840514557, "d_right": 2.0566538161864334, "d_left": 0.8700717347664847, "psi_rad": 1.8758919323472674, "kappa_radpm": 0.31452320924737304, "vx_mps": 4.627983394990804, "ax_mps2": 5.180670169784426}, {"id": 137, "s_m": 13.682464257848729, "d_m": 0.0, "x_m": -1.275863208156944, "y_m": -4.348315853735674, "d_right": 2.1327630460972307, "d_left": 0.9302794177635407, "psi_rad": 1.9060030265578858, "kappa_radpm": 0.2891427378964087, "vx_mps": 4.738463686281153, "ax_mps2": 5.421067395371067}, {"id": 138, "s_m": 13.782336259730837, "d_m": 0.0, "x_m": -1.310077093804478, "y_m": -4.254368665729799, "d_right": 2.1885751803426103, "d_left": 0.9891945994895388, "psi_rad": 1.9336999180463237, "kappa_radpm": 0.2658068752208102, "vx_mps": 4.851377516997852, "ax_mps2": 5.653019868690163}, {"id": 139, "s_m": 13.882208261612945, "d_m": 0.0, "x_m": -1.3467144013899706, "y_m": -4.161524086755618, "d_right": 2.1832547843962153, "d_left": 1.0503577856898478, "psi_rad": 1.959279703653931, "kappa_radpm": 0.24694681226930418, "vx_mps": 4.966389094137015, "ax_mps2": 5.813700932536908}, {"id": 140, "s_m": 13.982080263495051, "d_m": 0.0, "x_m": -1.3856932063642278, "y_m": -4.069466022229378, "d_right": 2.15587934320309, "d_left": 1.112799765719208, "psi_rad": 1.983072059078088, "kappa_radpm": 0.22903707337638143, "vx_mps": 5.081955581792873, "ax_mps2": 5.9849860692829795}, {"id": 141, "s_m": 14.08195226537716, "d_m": 0.0, "x_m": -1.4267284258781159, "y_m": -3.9784125699040533, "d_right": 2.120524894204614, "d_left": 1.1612178233181085, "psi_rad": 2.0050494064695426, "kappa_radpm": 0.21125107676049645, "vx_mps": 5.198243704874502, "ax_mps2": 6.1871673116391355}, {"id": 142, "s_m": 14.181824267259268, "d_m": 0.0, "x_m": -1.469687891328798, "y_m": -3.8882217557002776, "d_right": 2.08715617871659, "d_left": 1.2010298109712492, "psi_rad": 2.0253111202171117, "kappa_radpm": 0.1946334496455039, "vx_mps": 5.315786600876042, "ax_mps2": 6.248697234699277}, {"id": 143, "s_m": 14.281696269141374, "d_m": 0.0, "x_m": -1.514431719429989, "y_m": -3.7988109513615256, "d_right": 2.0556106881557894, "d_left": 1.232559286853915, "psi_rad": 2.0440148201311192, "kappa_radpm": 0.17966198222319746, "vx_mps": 5.431917432180138, "ax_mps2": 6.183763509666798}, {"id": 144, "s_m": 14.381568271023482, "d_m": 0.0, "x_m": -1.5606740793903306, "y_m": -3.710407572528135, "d_right": 2.0147909212837822, "d_left": 1.2623415367691322, "psi_rad": 2.061230800668947, "kappa_radpm": 0.16554551559711053, "vx_mps": 5.544447372982665, "ax_mps2": 6.120743724390948}, {"id": 145, "s_m": 14.481440272905589, "d_m": 0.0, "x_m": -1.6085400998631538, "y_m": -3.622472437046394, "d_right": 1.974189152981281, "d_left": 1.2946390143635789, "psi_rad": 2.077088331064181, "kappa_radpm": 0.15129100924111316, "vx_mps": 5.653625255470945, "ax_mps2": 6.059507606916595}, {"id": 146, "s_m": 14.581312274787697, "d_m": 0.0, "x_m": -1.657480494813065, "y_m": -3.535712449450745, "d_right": 1.9395060620248297, "d_left": 1.3321035841938509, "psi_rad": 2.091466412349343, "kappa_radpm": 0.1374328303051115, "vx_mps": 5.759672633018664, "ax_mps2": 5.999939105232622}, {"id": 147, "s_m": 14.681184276669805, "d_m": 0.0, "x_m": -1.7079242640697885, "y_m": -3.4490887094848692, "d_right": 1.9105445047092724, "d_left": 1.374848067682484, "psi_rad": 2.104548108797797, "kappa_radpm": 0.12354184676636504, "vx_mps": 5.862787792404293, "ax_mps2": 5.941934299591695}, {"id": 148, "s_m": 14.781056278551912, "d_m": 0.0, "x_m": -1.7590503764518315, "y_m": -3.3637329201698485, "d_right": 1.8754172175744548, "d_left": 1.4112234943560589, "psi_rad": 2.1161454055316913, "kappa_radpm": 0.10951064779474612, "vx_mps": 5.963149037703917, "ax_mps2": 5.885399693417981}, {"id": 149, "s_m": 14.88092828043402, "d_m": 0.0, "x_m": -1.8115204364706443, "y_m": -3.278262838597244, "d_right": 1.8341350093072617, "d_left": 1.4450727090379614, "psi_rad": 2.1263348304709244, "kappa_radpm": 0.0935416072019717, "vx_mps": 6.060917401217835, "ax_mps2": 5.830250802099949}, {"id": 150, "s_m": 14.980800282316126, "d_m": 0.0, "x_m": -1.864350845382257, "y_m": -3.1939815650834564, "d_right": 1.789210154107909, "d_left": 1.483550872677566, "psi_rad": 2.134815253835638, "kappa_radpm": 0.0766865870674259, "vx_mps": 6.156238899080031, "ax_mps2": -7.409523979346184}, {"id": 151, "s_m": 15.080672284198235, "d_m": 0.0, "x_m": -1.9182278457847126, "y_m": -3.1094631428790684, "d_right": 1.748907389414483, "d_left": 1.5051974094524432, "psi_rad": 2.1414342128536603, "kappa_radpm": 0.055159039007457965, "vx_mps": 6.034837976029227, "ax_mps2": -10.122578558210998}, {"id": 152, "s_m": 15.180544286080343, "d_m": 0.0, "x_m": -1.9721946756193933, "y_m": -3.025822960556835, "d_right": 1.7046913829741077, "d_left": 1.5261591389082636, "psi_rad": 2.1458032953350044, "kappa_radpm": 0.03188591706058176, "vx_mps": 5.864924980533822, "ax_mps2": -11.030346430701726}, {"id": 153, "s_m": 15.28041628796245, "d_m": 0.0, "x_m": -2.026719498065814, "y_m": -2.9418886117703904, "d_right": 1.6558643322025994, "d_left": 1.546942425382191, "psi_rad": 2.147489731560716, "kappa_radpm": 0.0015900330776953049, "vx_mps": 5.673984443785073, "ax_mps2": -11.1857083338465}, {"id": 154, "s_m": 15.380288289844557, "d_m": 0.0, "x_m": -2.08101939077494, "y_m": -2.8583285425601255, "d_right": 1.5970758608061115, "d_left": 1.5676215931760307, "psi_rad": 2.1460848299542006, "kappa_radpm": -0.031045289571902522, "vx_mps": 5.473556549518214, "ax_mps2": -10.133356496536697}, {"id": 155, "s_m": 15.480160291726664, "d_m": 0.0, "x_m": -2.135213084169047, "y_m": -2.7743491418830812, "d_right": 1.5420661791966677, "d_left": 1.5886769561794467, "psi_rad": 2.1410055186413284, "kappa_radpm": -0.07068501249584748, "vx_mps": 5.285427523160771, "ax_mps2": -9.168102441833387}, {"id": 156, "s_m": 15.580032293608772, "d_m": 0.0, "x_m": -2.188710291695947, "y_m": -2.6901501935104877, "d_right": 1.465857250038574, "d_left": 1.610383219945466, "psi_rad": 2.131942741264912, "kappa_radpm": -0.11234907314621004, "vx_mps": 5.10925343019243, "ax_mps2": -8.213982977615698}, {"id": 157, "s_m": 15.67990429549088, "d_m": 0.0, "x_m": -2.241314638735324, "y_m": -2.605260605689704, "d_right": 1.389220011397736, "d_left": 1.6332135770639113, "psi_rad": 2.118407999353434, "kappa_radpm": -0.15862595262451593, "vx_mps": 4.94608701572597, "ax_mps2": -7.357703599334415}, {"id": 158, "s_m": 15.779776297372987, "d_m": 0.0, "x_m": -2.292544102827083, "y_m": -2.519589103082507, "d_right": 1.3146472779250349, "d_left": 1.6602688976534805, "psi_rad": 2.1002636168792126, "kappa_radpm": -0.20575642415419548, "vx_mps": 4.795218409175083, "ax_mps2": -6.562092405354049}, {"id": 159, "s_m": 15.879648299255095, "d_m": 0.0, "x_m": -2.342018847117658, "y_m": -2.432853443175657, "d_right": 1.2421300599310796, "d_left": 1.6947121671234535, "psi_rad": 2.0772684687104888, "kappa_radpm": -0.25465271887456875, "vx_mps": 4.656541740559773, "ax_mps2": -5.861595514514575}, {"id": 160, "s_m": 15.979520301137203, "d_m": 0.0, "x_m": -2.389267671841214, "y_m": -2.344898305869142, "d_right": 1.1717660624094464, "d_left": 1.7037296898481942, "psi_rad": 2.049432130070773, "kappa_radpm": -0.30311681663653506, "vx_mps": 4.529079644371462, "ax_mps2": -5.22960336559755}, {"id": 161, "s_m": 16.07939230301931, "d_m": 0.0, "x_m": -2.4338472788698406, "y_m": -2.255524707181332, "d_right": 1.1036202011845384, "d_left": 1.7118955373973341, "psi_rad": 2.016727948581328, "kappa_radpm": -0.35163670876914405, "vx_mps": 4.412253450416992, "ax_mps2": -4.67629526971934}, {"id": 162, "s_m": 16.179264304901416, "d_m": 0.0, "x_m": -2.4752471487908405, "y_m": -2.1646756539026093, "d_right": 1.0378740665598047, "d_left": 1.6969407674435621, "psi_rad": 1.979244511509003, "kappa_radpm": -0.39901727923721386, "vx_mps": 4.305103781647927, "ax_mps2": -4.171583783343223}, {"id": 163, "s_m": 16.279136306783524, "d_m": 0.0, "x_m": -2.513018028508219, "y_m": -2.0721916283500805, "d_right": 0.974653712814119, "d_left": 1.658999297118121, "psi_rad": 1.937024269142824, "kappa_radpm": -0.4461325006633823, "vx_mps": 4.207216386619118, "ax_mps2": -3.739942805144547}, {"id": 164, "s_m": 16.379008308665632, "d_m": 0.0, "x_m": -2.5466096249229095, "y_m": -1.9781859992602515, "d_right": 0.9143012896922649, "d_left": 1.6252913520553913, "psi_rad": 1.8902158812247585, "kappa_radpm": -0.49108025345483247, "vx_mps": 4.1174796385759675, "ax_mps2": -3.32797136842715}, {"id": 165, "s_m": 16.47888031054774, "d_m": 0.0, "x_m": -2.5755764908142926, "y_m": -1.8825609360864366, "d_right": 0.8570662787274775, "d_left": 1.596251269373732, "psi_rad": 1.83889346957949, "kappa_radpm": -0.5362547988920255, "vx_mps": 4.035950476473338, "ax_mps2": -2.989039468432911}, {"id": 166, "s_m": 16.57875231242985, "d_m": 0.0, "x_m": -2.599360676748265, "y_m": -1.7856280870332224, "d_right": 0.8035003666642935, "d_left": 1.5724218301132218, "psi_rad": 1.7832401381758227, "kappa_radpm": -0.5781103292099621, "vx_mps": 3.9612944270416595, "ax_mps2": -2.655746310841387}, {"id": 167, "s_m": 16.678624314311953, "d_m": 0.0, "x_m": -2.6175308144572784, "y_m": -1.6873713271796218, "d_right": 0.7540447648993093, "d_left": 1.5542286795698772, "psi_rad": 1.7233698383925038, "kappa_radpm": -0.6201851349080184, "vx_mps": 3.8937622085332615, "ax_mps2": -2.344085782039999}, {"id": 168, "s_m": 16.77849631619406, "d_m": 0.0, "x_m": -2.6295710908261243, "y_m": -1.5883043124724898, "d_right": 0.7017575566360608, "d_left": 1.5388454855426528, "psi_rad": 1.6594358926949944, "kappa_radpm": -0.6610362155472715, "vx_mps": 3.8331667140016723, "ax_mps2": -1.9815495189896264}, {"id": 169, "s_m": 16.87836831807617, "d_m": 0.0, "x_m": -2.635053356099964, "y_m": -1.488527966422454, "d_right": 0.6508742102066952, "d_left": 1.5016720633979928, "psi_rad": 1.5912113931248764, "kappa_radpm": -0.7045859225754687, "vx_mps": 3.7811855842778113, "ax_mps2": -1.7862208509161794}, {"id": 170, "s_m": 16.978240319958278, "d_m": 0.0, "x_m": -2.6335261460567847, "y_m": -1.388752525235014, "d_right": 0.6056857783359602, "d_left": 1.477184857292388, "psi_rad": 1.5192587943328113, "kappa_radpm": -0.7365312576324435, "vx_mps": 3.7337082797643966, "ax_mps2": -1.5442799159501481}, {"id": 171, "s_m": 17.078112321840386, "d_m": 0.0, "x_m": -2.624654333770932, "y_m": -1.2892237487577278, "d_right": 0.5673383113013007, "d_left": 1.4664120018553215, "psi_rad": 1.443955041151794, "kappa_radpm": -0.7708575031603508, "vx_mps": 3.692169669047816, "ax_mps2": -1.3152647621277744}, {"id": 172, "s_m": 17.17798432372249, "d_m": 0.0, "x_m": -2.6081910155795724, "y_m": -1.190852582547832, "d_right": 0.5373256084481772, "d_left": 1.470070127975507, "psi_rad": 1.3654602170150807, "kappa_radpm": -0.8030591209665493, "vx_mps": 3.6564190973463746, "ax_mps2": -1.0309430800516786}, {"id": 173, "s_m": 17.2778563256046, "d_m": 0.0, "x_m": -2.5838439630991106, "y_m": -1.093905275852124, "d_right": 0.5168402784532157, "d_left": 1.4733711669744394, "psi_rad": 1.283465778489049, "kappa_radpm": -0.8371607003498364, "vx_mps": 3.628150481578285, "ax_mps2": -0.8097489930468977}, {"id": 174, "s_m": 17.377728327486707, "d_m": 0.0, "x_m": -2.5516091141378086, "y_m": -0.9996388593708825, "d_right": 0.5002778702900837, "d_left": 1.4875268125976246, "psi_rad": 1.1986920293459518, "kappa_radpm": -0.8645396102062797, "vx_mps": 3.6057916483154586, "ax_mps2": -0.5434530359649596}, {"id": 175, "s_m": 17.477600329368816, "d_m": 0.0, "x_m": -2.5111999234549844, "y_m": -0.9081293524457295, "d_right": 0.4826933871736671, "d_left": 1.516532101188945, "psi_rad": 1.1107621139663482, "kappa_radpm": -0.892439889284687, "vx_mps": 3.590707719350052, "ax_mps2": -0.3196784774563248}, {"id": 176, "s_m": 17.577472331250924, "d_m": 0.0, "x_m": -2.463060871580999, "y_m": -0.8210094244301915, "d_right": 0.4766267799749382, "d_left": 1.5438436727293894, "psi_rad": 1.0208526198093788, "kappa_radpm": -0.9143049035365677, "vx_mps": 3.5818051408187572, "ax_mps2": -0.049557770639582284}, {"id": 177, "s_m": 17.67734433313303, "d_m": 0.0, "x_m": -2.4068408779984916, "y_m": -0.7381496382379191, "d_right": 0.4822820740218124, "d_left": 1.583888080343055, "psi_rad": 0.9280352499145332, "kappa_radpm": -0.9360791197070514, "vx_mps": 3.5804230475281127, "ax_mps2": -0.049557770639598306}, {"id": 178, "s_m": 17.777216335015137, "d_m": 0.0, "x_m": -2.3435462870906334, "y_m": -0.6612802454671853, "d_right": 0.49903103364728896, "d_left": 1.6367563490102506, "psi_rad": 0.8363248782145571, "kappa_radpm": -0.9079360898408697, "vx_mps": 3.5790404205240987, "ax_mps2": 0.32024561462490303}, {"id": 179, "s_m": 17.877088336897245, "d_m": 0.0, "x_m": -2.2731575553237575, "y_m": -0.5900793221440697, "d_right": 0.5260273688993353, "d_left": 1.7012320314257, "psi_rad": 0.7461602184392183, "kappa_radpm": -0.8929303727703471, "vx_mps": 3.5879656454596143, "ax_mps2": 0.45509631302856113}, {"id": 180, "s_m": 17.976960338779353, "d_m": 0.0, "x_m": -2.197111716061478, "y_m": -0.5256735904343628, "d_right": 0.5513630432326423, "d_left": 1.7478147054706752, "psi_rad": 0.6602913280701312, "kappa_radpm": -0.8310073251063351, "vx_mps": 3.600611091559471, "ax_mps2": 1.1763702366242015}, {"id": 181, "s_m": 18.07683234066146, "d_m": 0.0, "x_m": -2.115665643407764, "y_m": -0.4675717584073469, "d_right": 0.5635516274494469, "d_left": 1.7739880659341078, "psi_rad": 0.579903695309675, "kappa_radpm": -0.7771693267772926, "vx_mps": 3.63309415424834, "ax_mps2": 1.6908254974659587}, {"id": 182, "s_m": 18.176704342543566, "d_m": 0.0, "x_m": -2.0302426318271793, "y_m": -0.41614491157584754, "d_right": 0.5851884238381623, "d_left": 1.812407397550943, "psi_rad": 0.5046472710897294, "kappa_radpm": -0.7329431952726942, "vx_mps": 3.6792805530652215, "ax_mps2": 2.025738535222775}, {"id": 183, "s_m": 18.276576344425674, "d_m": 0.0, "x_m": -1.9410403514237686, "y_m": -0.3709834544473527, "d_right": 0.6156842701165073, "d_left": 1.861924042944767, "psi_rad": 0.43330559601646024, "kappa_radpm": -0.6950062411470851, "vx_mps": 3.7338632157282863, "ax_mps2": 2.2565110851121206}, {"id": 184, "s_m": 18.376448346307782, "d_m": 0.0, "x_m": -1.84911341888526, "y_m": -0.3322024731010716, "d_right": 0.6538648977941967, "d_left": 1.8991601831095775, "psi_rad": 0.365701107288098, "kappa_radpm": -0.660354727123367, "vx_mps": 3.793739457639047, "ax_mps2": 2.440232775367352}, {"id": 185, "s_m": 18.47632034818989, "d_m": 0.0, "x_m": -1.7546797633640305, "y_m": -0.29951484055752675, "d_right": 0.6861749914378649, "d_left": 1.8728722013438197, "psi_rad": 0.30128741326774433, "kappa_radpm": -0.6292927491159649, "vx_mps": 3.857444871558886, "ax_mps2": 2.5786756858907385}, {"id": 186, "s_m": 18.576192350072, "d_m": 0.0, "x_m": -1.658496043489278, "y_m": -0.27285853066870025, "d_right": 0.7242062235275722, "d_left": 1.8578322845396742, "psi_rad": 0.23989023719069635, "kappa_radpm": -0.6011483834316388, "vx_mps": 3.9236406490688216, "ax_mps2": 2.6858327952927765}, {"id": 187, "s_m": 18.676064351954103, "d_m": 0.0, "x_m": -1.5607927672972557, "y_m": -0.25200376198454, "d_right": 0.7664607704564907, "d_left": 1.8540554716140663, "psi_rad": 0.1811224077332092, "kappa_radpm": -0.5756864791046975, "vx_mps": 3.9914201656801556, "ax_mps2": 2.766900048195126}, {"id": 188, "s_m": 18.77593635383621, "d_m": 0.0, "x_m": -1.4621214616151332, "y_m": -0.2368108521892143, "d_right": 0.8049450838324881, "d_left": 1.8521749853904366, "psi_rad": 0.12481738406704967, "kappa_radpm": -0.5523363044899122, "vx_mps": 4.060062392702863, "ax_mps2": 2.831504658628658}, {"id": 189, "s_m": 18.87580835571832, "d_m": 0.0, "x_m": -1.362710623856191, "y_m": -0.227077798204667, "d_right": 0.8487126796038567, "d_left": 1.8424462028731547, "psi_rad": 0.07073412373917076, "kappa_radpm": -0.5307911547377832, "vx_mps": 4.12912614360855, "ax_mps2": 2.884268002870611}, {"id": 190, "s_m": 18.975680357600428, "d_m": 0.0, "x_m": -1.2629624630491194, "y_m": -0.22262912684568215, "d_right": 0.8908864320894205, "d_left": 1.7792076290306964, "psi_rad": 0.018741288033015557, "kappa_radpm": -0.5106359736388023, "vx_mps": 4.198308939162769, "ax_mps2": 2.9314951144420154}, {"id": 191, "s_m": 19.075552359482536, "d_m": 0.0, "x_m": -1.1630877098154684, "y_m": -0.22327238912543068, "d_right": 0.9343539776862688, "d_left": 1.722819515085173, "psi_rad": -0.03130789527560429, "kappa_radpm": -0.49174609200865094, "vx_mps": 4.267475426974115, "ax_mps2": 2.9742394968657417}, {"id": 192, "s_m": 19.17542436136464, "d_m": 0.0, "x_m": -1.0633860127730057, "y_m": -0.22881817572019808, "d_right": 0.9766516745367269, "d_left": 1.6748177425003548, "psi_rad": -0.07953239523819677, "kappa_radpm": -0.4741650961834092, "vx_mps": 4.336523149377334, "ax_mps2": 3.0104213799626485}, {"id": 193, "s_m": 19.27529636324675, "d_m": 0.0, "x_m": -0.9640432618816712, "y_m": -0.23907992962033286, "d_right": 1.0196732112493634, "d_left": 1.635878129605789, "psi_rad": -0.1260544101795038, "kappa_radpm": -0.45759207020202985, "vx_mps": 4.405308915903248, "ax_mps2": 3.044603388164207}, {"id": 194, "s_m": 19.375168365128857, "d_m": 0.0, "x_m": -0.8652835965682187, "y_m": -0.25386902296882374, "d_right": 1.0542740393222652, "d_left": 1.5945040788276414, "psi_rad": -0.1709766230534917, "kappa_radpm": -0.4421661436386306, "vx_mps": 4.4738001648668515, "ax_mps2": 3.0727199838098365}, {"id": 195, "s_m": 19.475040367010966, "d_m": 0.0, "x_m": -0.7672660089273621, "y_m": -0.2730055962459063, "d_right": 1.0722256699488797, "d_left": 1.5584207188251729, "psi_rad": -0.2144018021441476, "kappa_radpm": -0.4275696220567608, "vx_mps": 4.541876848525856, "ax_mps2": 3.1000710275910346}, {"id": 196, "s_m": 19.574912368893074, "d_m": 0.0, "x_m": -0.6701590344580228, "y_m": -0.29630893461916546, "d_right": 1.0949121377476976, "d_left": 1.532149550361525, "psi_rad": -0.2564161366834339, "kappa_radpm": -0.413942758314341, "vx_mps": 4.609540747859774, "ax_mps2": 3.1224590802866947}, {"id": 197, "s_m": 19.674784370775182, "d_m": 0.0, "x_m": -0.5740960875448724, "y_m": -0.3236068940710839, "d_right": 1.1221370095409209, "d_left": 1.5161123420496827, "psi_rad": -0.29710660003971956, "kappa_radpm": -0.4010198703137532, "vx_mps": 4.676703794818103, "ax_mps2": 3.144518704008873}, {"id": 198, "s_m": 19.774656372657287, "d_m": 0.0, "x_m": -0.47920326185092055, "y_m": -0.3547300575749097, "d_right": 1.1520742952154719, "d_left": 1.5084905137518143, "psi_rad": -0.3365458398960719, "kappa_radpm": -0.3889136076723749, "vx_mps": 4.743380349530935, "ax_mps2": 3.162597256265783}, {"id": 199, "s_m": 19.874528374539395, "d_m": 0.0, "x_m": -0.3855923089423253, "y_m": -0.3895144414298386, "d_right": 1.1563884554383643, "d_left": 1.4934345977564116, "psi_rad": -0.3748088994524088, "kappa_radpm": -0.3774322984692043, "vx_mps": 4.809507976766072, "ax_mps2": 3.1800529959884436}, {"id": 200, "s_m": 19.974400376421503, "d_m": 0.0, "x_m": -0.2933551311887561, "y_m": -0.4278040589592217, "d_right": 1.16552709230758, "d_left": 1.4779020029802319, "psi_rad": -0.41195875753073397, "kappa_radpm": -0.3666410119059631, "vx_mps": 4.875096255067954, "ax_mps2": 3.1943255481113355}, {"id": 201, "s_m": 20.07427237830361, "d_m": 0.0, "x_m": -0.20258690820392405, "y_m": -0.46944269330322186, "d_right": 1.1794702726439994, "d_left": 1.4716206330157997, "psi_rad": -0.4480608940245876, "kappa_radpm": -0.3564286516586342, "vx_mps": 4.940102313766758, "ax_mps2": 3.2071533065514757}, {"id": 202, "s_m": 20.17414438018572, "d_m": 0.0, "x_m": -0.11335058472484295, "y_m": -0.51428966123574, "d_right": 1.1981333337463134, "d_left": 1.4626929465340166, "psi_rad": -0.4831720135875206, "kappa_radpm": -0.3467933376703546, "vx_mps": 5.004520008214565, "ax_mps2": 3.2176637493054088}, {"id": 203, "s_m": 20.274016382067824, "d_m": 0.0, "x_m": -0.0257299723438781, "y_m": -0.5621952218680735, "d_right": 1.215975590459001, "d_left": 1.4535238415332525, "psi_rad": -0.5173482068381801, "kappa_radpm": -0.33770994068605426, "vx_mps": 5.068326109542788, "ax_mps2": 3.2256255922599224}, {"id": 204, "s_m": 20.373888383949932, "d_m": 0.0, "x_m": 0.060236628759238194, "y_m": -0.613035341386886, "d_right": 1.220715828556949, "d_left": 1.4471173942553393, "psi_rad": -0.5506432976829405, "kappa_radpm": -0.3291218143976898, "vx_mps": 5.131493829589533, "ax_mps2": 3.2316930438519713}, {"id": 205, "s_m": 20.47376038583204, "d_m": 0.0, "x_m": 0.1444729023259387, "y_m": -0.6666654116345313, "d_right": 1.2303038491133118, "d_left": 1.4257826211596174, "psi_rad": -0.5831065760335639, "kappa_radpm": -0.3210819359234779, "vx_mps": 5.1940100337438135, "ax_mps2": 3.2336435052474033}, {"id": 206, "s_m": 20.57363238771415, "d_m": 0.0, "x_m": 0.2269612085754425, "y_m": -0.7229791594487773, "d_right": 1.2446997857030029, "d_left": 1.4072407918656635, "psi_rad": -0.6147900540902245, "kappa_radpm": -0.3134176396187313, "vx_mps": 5.255819739214396, "ax_mps2": 3.2354752194249454}, {"id": 207, "s_m": 20.673504389596257, "d_m": 0.0, "x_m": 0.30763002823686597, "y_m": -0.7818351809958749, "d_right": 1.2582379345500163, "d_left": 1.3917939769382774, "psi_rad": -0.6457233699958236, "kappa_radpm": -0.3061532164225344, "vx_mps": 5.316945354761842, "ax_mps2": 3.2357900278367047}, {"id": 208, "s_m": 20.77337639147836, "d_m": 0.0, "x_m": 0.38648036396912605, "y_m": -0.8431446106859822, "d_right": 1.2515501262703823, "d_left": 1.3793765229622486, "psi_rad": -0.675952893231778, "kappa_radpm": -0.29919127969741105, "vx_mps": 5.377382035993345, "ax_mps2": 3.2367285387440776}, {"id": 209, "s_m": 20.87324839336047, "d_m": 0.0, "x_m": 0.4634435252090118, "y_m": -0.9067659937461561, "d_right": 1.2498317628174251, "d_left": 1.3699336762237528, "psi_rad": -0.7054948885030017, "kappa_radpm": -0.29252480217472804, "vx_mps": 5.437164212937713, "ax_mps2": 3.2378763674905757}, {"id": 210, "s_m": 20.973120395242578, "d_m": 0.0, "x_m": 0.5385374809053061, "y_m": -0.9726280792298679, "d_right": 1.2531704970472093, "d_left": 1.3634014590927173, "psi_rad": -0.7343922188477552, "kappa_radpm": -0.2861212905718699, "vx_mps": 5.496317045784994, "ax_mps2": 3.239633685053218}, {"id": 211, "s_m": 21.072992397124686, "d_m": 0.0, "x_m": 0.6116956046824032, "y_m": -1.0405877045168435, "d_right": 1.2519993178408262, "d_left": 1.359722919039302, "psi_rad": -0.7626613102217439, "kappa_radpm": -0.28010999836782585, "vx_mps": 5.554871598045146, "ax_mps2": 3.23747180041318}, {"id": 212, "s_m": 21.172864399006794, "d_m": 0.0, "x_m": 0.682946077489492, "y_m": -1.1105888586246568, "d_right": 1.2347986541306182, "d_left": 1.3588381540992855, "psi_rad": -0.7903500251401301, "kappa_radpm": -0.27433286401606294, "vx_mps": 5.61277685733692, "ax_mps2": 3.2358329938892134}, {"id": 213, "s_m": 21.2727364008889, "d_m": 0.0, "x_m": 0.7522320053109984, "y_m": -1.182495265709156, "d_right": 1.2227944131776993, "d_left": 1.3661915343749889, "psi_rad": -0.8174708304662017, "kappa_radpm": -0.26889103855023555, "vx_mps": 5.6700619298177575, "ax_mps2": 3.230975062863889}, {"id": 214, "s_m": 21.372608402771007, "d_m": 0.0, "x_m": 0.8195792802357486, "y_m": -1.256255141089871, "d_right": 1.216197208602776, "d_left": 1.3833819521577393, "psi_rad": -0.8440658044232956, "kappa_radpm": -0.2636654471560047, "vx_mps": 5.726689286410381, "ax_mps2": 3.226319648845714}, {"id": 215, "s_m": 21.472480404653115, "d_m": 0.0, "x_m": 0.8849469629106234, "y_m": -1.3317467805784649, "d_right": 1.2151553419954908, "d_left": 1.4080510569751368, "psi_rad": -0.8701472487428346, "kappa_radpm": -0.2587219807421709, "vx_mps": 5.78268174700727, "ax_mps2": 3.219218915994271}, {"id": 216, "s_m": 21.572352406535224, "d_m": 0.0, "x_m": 0.9483538343184643, "y_m": -1.4089161998544841, "d_right": 1.2079489653874176, "d_left": 1.417763563733087, "psi_rad": -0.895749972886847, "kappa_radpm": -0.25397957112058456, "vx_mps": 5.838015747019294, "ax_mps2": 3.2120026191829956}, {"id": 217, "s_m": 21.672224408417332, "d_m": 0.0, "x_m": 1.009774237875591, "y_m": -1.4876580339007308, "d_right": 1.1877471087108498, "d_left": 1.436105380114872, "psi_rad": -0.9208872608565102, "kappa_radpm": -0.24947760697689494, "vx_mps": 5.892707877173448, "ax_mps2": 3.202900843211901}, {"id": 218, "s_m": 21.772096410299437, "d_m": 0.0, "x_m": 1.0692204177111313, "y_m": -1.567914693389179, "d_right": 1.1730849614012393, "d_left": 1.463439611752894, "psi_rad": -0.9455874219716827, "kappa_radpm": -0.24516307261254194, "vx_mps": 5.946744181801073, "ax_mps2": 3.1933999690548216}, {"id": 219, "s_m": 21.871968412181545, "d_m": 0.0, "x_m": 1.1266794232325226, "y_m": -1.6495966867855498, "d_right": 1.1560560884070812, "d_left": 1.496389986194131, "psi_rad": -0.9698645661200089, "kappa_radpm": -0.24104394863437517, "vx_mps": 6.000135736733332, "ax_mps2": 3.1828489426609194}, {"id": 220, "s_m": 21.971840414063653, "d_m": 0.0, "x_m": 1.182158325604897, "y_m": -1.7326424630973682, "d_right": 1.1450962768690476, "d_left": 1.516925744945209, "psi_rad": -0.993740097904908, "kappa_radpm": -0.23709346578318263, "vx_mps": 6.052882276272044, "ax_mps2": 3.1718816832999353}, {"id": 221, "s_m": 22.07171241594576, "d_m": 0.0, "x_m": 1.2356541110430788, "y_m": -1.8169768227950525, "d_right": 1.1404274071201166, "d_left": 1.5381949414433593, "psi_rad": -1.0172295133422802, "kappa_radpm": -0.23332444489151796, "vx_mps": 6.10499370984909, "ax_mps2": 3.159693445036391}, {"id": 222, "s_m": 22.17158441782787, "d_m": 0.0, "x_m": 1.287170513056533, "y_m": -1.9025353318250289, "d_right": 1.1257361557756334, "d_left": 1.5525890091212804, "psi_rad": -1.0403508343611323, "kappa_radpm": -0.22971570998358917, "vx_mps": 6.156466357958603, "ax_mps2": 3.146774139902644}, {"id": 223, "s_m": 22.271456419709974, "d_m": 0.0, "x_m": 1.336711064657797, "y_m": -1.9892542191228781, "d_right": 1.1000040151447665, "d_left": 1.5605546138617445, "psi_rad": -1.0631197672177395, "kappa_radpm": -0.22625659487909253, "vx_mps": 6.207304349097272, "ax_mps2": 3.1332385074981515}, {"id": 224, "s_m": 22.371328421592082, "d_m": 0.0, "x_m": 1.384278639006727, "y_m": -2.0770688949578844, "d_right": 1.0806705519998971, "d_left": 1.5608437152125614, "psi_rad": -1.0855492604847017, "kappa_radpm": -0.22293007241503732, "vx_mps": 6.257513314932522, "ax_mps2": 3.11947228433219}, {"id": 225, "s_m": 22.47120042347419, "d_m": 0.0, "x_m": 1.4298802287642483, "y_m": -2.1659226554948057, "d_right": 1.0639870103480271, "d_left": 1.567863407400878, "psi_rad": -1.1076538722801539, "kappa_radpm": -0.21973025816568975, "vx_mps": 6.307104626551062, "ax_mps2": 3.105443920298593}, {"id": 226, "s_m": 22.5710724253563, "d_m": 0.0, "x_m": 1.4735204276977503, "y_m": -2.25575456539983, "d_right": 1.0496355730734224, "d_left": 1.579293524632861, "psi_rad": -1.1294434396546733, "kappa_radpm": -0.21663714123050912, "vx_mps": 6.356088622129769, "ax_mps2": 3.0917101499621116}, {"id": 227, "s_m": 22.670944427238407, "d_m": 0.0, "x_m": 1.5152069233167063, "y_m": -2.346509820888257, "d_right": 1.0377322377602864, "d_left": 1.591791865357036, "psi_rad": -1.1509307221371943, "kappa_radpm": -0.21366739508599208, "vx_mps": 6.404483830583024, "ax_mps2": 3.07734971850547}, {"id": 228, "s_m": 22.77081642912051, "d_m": 0.0, "x_m": 1.5549480858800884, "y_m": -2.4381357898249822, "d_right": 1.0212173801392053, "d_left": 1.608117133659787, "psi_rad": -1.1721264422290156, "kappa_radpm": -0.2107978670720071, "vx_mps": 6.452293800653869, "ax_mps2": 3.063100389153596}, {"id": 229, "s_m": 22.87068843100262, "d_m": 0.0, "x_m": 1.5927495994995184, "y_m": -2.530573485320507, "d_right": 1.0039122327960543, "d_left": 1.6242551112670147, "psi_rad": -1.1930408334865588, "kappa_radpm": -0.2080463525256044, "vx_mps": 6.499533154436372, "ax_mps2": 3.0479962147179327}, {"id": 230, "s_m": 22.970560432884728, "d_m": 0.0, "x_m": 1.6286253824572952, "y_m": -2.6237846134519995, "d_right": 0.992291618129727, "d_left": 1.645218180697416, "psi_rad": -1.2136859274848275, "kappa_radpm": -0.20537612432285612, "vx_mps": 6.5462012032172945, "ax_mps2": 3.0334066789659393}, {"id": 231, "s_m": 23.070432434766836, "d_m": 0.0, "x_m": 1.6625772740716913, "y_m": -2.7176995198160023, "d_right": 0.9825325111581757, "d_left": 1.6684029395789512, "psi_rad": -1.2340672795451475, "kappa_radpm": -0.2028063351894077, "vx_mps": 6.592317876749067, "ax_mps2": 3.018305553115349}, {"id": 232, "s_m": 23.170304436648944, "d_m": 0.0, "x_m": 1.6946259120647684, "y_m": -2.812300047158411, "d_right": 0.9606774435622589, "d_left": 1.6882983033915264, "psi_rad": -1.2541964585332366, "kappa_radpm": -0.20026443359101595, "vx_mps": 6.637886969802088, "ax_mps2": 3.005705400661278}, {"id": 233, "s_m": 23.27017643853105, "d_m": 0.0, "x_m": 1.724768779321297, "y_m": -2.9074995048577703, "d_right": 0.9353569511074264, "d_left": 1.7018058872981172, "psi_rad": -1.2740723465431074, "kappa_radpm": -0.19783094885054422, "vx_mps": 6.682957059171646, "ax_mps2": 2.991835468449619}, {"id": 234, "s_m": 23.370048440413157, "d_m": 0.0, "x_m": 1.7530337074525828, "y_m": -3.003305967857733, "d_right": 0.9182669972994517, "d_left": 1.7101531253246258, "psi_rad": -1.293715738761645, "kappa_radpm": -0.1954856880297537, "vx_mps": 6.727519323629183, "ax_mps2": 2.9774466008860783}, {"id": 235, "s_m": 23.469920442295265, "d_m": 0.0, "x_m": 1.779412271926288, "y_m": -3.0996074714850805, "d_right": 0.9057989790941203, "d_left": 1.7240859852737576, "psi_rad": -1.3131226603173975, "kappa_radpm": -0.19325312701581768, "vx_mps": 6.77157613520362, "ax_mps2": 2.9612592440168113}, {"id": 236, "s_m": 23.569792444177374, "d_m": 0.0, "x_m": 1.803939132761904, "y_m": -3.1964471139420407, "d_right": 0.8928165316899942, "d_left": 1.7265566587939762, "psi_rad": -1.3323210569637558, "kappa_radpm": -0.19111844365308903, "vx_mps": 6.815110940582179, "ax_mps2": 2.9438115481329925}, {"id": 237, "s_m": 23.669664446059482, "d_m": 0.0, "x_m": 1.826601695753351, "y_m": -3.293688285428668, "d_right": 0.8822608703210166, "d_left": 1.7311664908194557, "psi_rad": -1.3513013148619972, "kappa_radpm": -0.18907865221375245, "vx_mps": 6.858115326924325, "ax_mps2": 2.9250981283339677}, {"id": 238, "s_m": 23.76953644794159, "d_m": 0.0, "x_m": 1.847434644868286, "y_m": -3.3913891653347754, "d_right": 0.8810613288503157, "d_left": 1.736753564560982, "psi_rad": -1.3700849386916434, "kappa_radpm": -0.1869755660124543, "vx_mps": 6.90058089213879, "ax_mps2": 2.912511091202458}, {"id": 239, "s_m": 23.869408449823695, "d_m": 0.0, "x_m": 1.8664302506910113, "y_m": -3.489414149641304, "d_right": 0.8892781458871541, "d_left": 1.7458607123187084, "psi_rad": -1.3886520070514319, "kappa_radpm": -0.18493683466470093, "vx_mps": 6.9426056546022705, "ax_mps2": 2.8997542315549767}, {"id": 240, "s_m": 23.969280451705803, "d_m": 0.0, "x_m": 1.8836202301944942, "y_m": -3.5878187673454094, "d_right": 0.9065180649983531, "d_left": 1.7545026470102327, "psi_rad": -1.4070221239487655, "kappa_radpm": -0.18283850246030267, "vx_mps": 6.984195142996682, "ax_mps2": 2.8927526262983583}, {"id": 241, "s_m": 24.06915245358791, "d_m": 0.0, "x_m": 1.8990037478093813, "y_m": -3.6864780450242756, "d_right": 0.9000848930177223, "d_left": 1.7679554684931666, "psi_rad": -1.425176086919592, "kappa_radpm": -0.18078846003416152, "vx_mps": 7.025438903508785, "ax_mps2": 2.8860565130799767}, {"id": 242, "s_m": 24.16902445547002, "d_m": 0.0, "x_m": 1.912608971848069, "y_m": -3.7854386728194287, "d_right": 0.8893921237600003, "d_left": 1.779603414098341, "psi_rad": -1.4431323984287148, "kappa_radpm": -0.17871120281198036, "vx_mps": 7.066347307481222, "ax_mps2": 2.883332628188438}, {"id": 243, "s_m": 24.268896457352128, "d_m": 0.0, "x_m": 1.9244414178434268, "y_m": -3.884590040337313, "d_right": 0.8715360004680932, "d_left": 1.797223487879482, "psi_rad": -1.4608753088081539, "kappa_radpm": -0.17666895584608416, "vx_mps": 7.106981966579448, "ax_mps2": 2.8813335730347966}, {"id": 244, "s_m": 24.368768459234232, "d_m": 0.0, "x_m": 1.9345259022327097, "y_m": -3.983966259192852, "d_right": 0.8562867025527221, "d_left": 1.8118399374946654, "psi_rad": -1.4784188228440192, "kappa_radpm": -0.17456699992462593, "vx_mps": 7.1473576780054655, "ax_mps2": 2.884808381275588}, {"id": 245, "s_m": 24.46864046111634, "d_m": 0.0, "x_m": 1.942874019058581, "y_m": -4.083475841690462, "d_right": 0.8361753006921115, "d_left": 1.8324184285833691, "psi_rad": -1.4957455427491482, "kappa_radpm": -0.17245986520723186, "vx_mps": 7.187554866121874, "ax_mps2": 2.8908478182808257}, {"id": 246, "s_m": 24.56851246299845, "d_m": 0.0, "x_m": 1.9495085441578819, "y_m": -4.183135579159168, "d_right": 0.8259849160258265, "d_left": 1.8509840081560147, "psi_rad": -1.5128620847024052, "kappa_radpm": -0.17021470184238288, "vx_mps": 7.227611948009432, "ax_mps2": 2.9063158401254974}, {"id": 247, "s_m": 24.668384464880557, "d_m": 0.0, "x_m": 1.954447175522155, "y_m": -4.282877303674685, "d_right": 0.8261126946803593, "d_left": 1.8659616098877436, "psi_rad": -1.5297443002651985, "kappa_radpm": -0.16789064043928695, "vx_mps": 7.2676608088929635, "ax_mps2": 2.9280131060275876}, {"id": 248, "s_m": 24.768256466762665, "d_m": 0.0, "x_m": 1.9577132090714482, "y_m": -4.382698909324031, "d_right": 0.8365760158983937, "d_left": 1.883360435675528, "psi_rad": -1.5463932738909367, "kappa_radpm": -0.16543577078756946, "vx_mps": 7.307786716509368, "ax_mps2": 2.958660043941196}, {"id": 249, "s_m": 24.86812846864477, "d_m": 0.0, "x_m": 1.9593294765202616, "y_m": -4.482554656134353, "d_right": 0.8570161211558548, "d_left": 1.9074338337784589, "psi_rad": -1.5627877059205364, "kappa_radpm": -0.16288536223354133, "vx_mps": 7.348110049321852, "ax_mps2": 2.996315695014436}, {"id": 250, "s_m": 24.968000470526878, "d_m": 0.0, "x_m": 1.9593211891756115, "y_m": -4.5824258867440415, "d_right": 0.8814698288928294, "d_left": 1.9379042912133069, "psi_rad": -1.5789280237003993, "kappa_radpm": -0.16030871347506914, "vx_mps": 7.388722311090635, "ax_mps2": 3.0371833019808}, {"id": 251, "s_m": 25.067872472408986, "d_m": 0.0, "x_m": 1.9577139364870513, "y_m": -4.682286430666487, "d_right": 0.8798656632505714, "d_left": 1.9744445360043072, "psi_rad": -1.5948084544059524, "kappa_radpm": -0.15770510782645422, "vx_mps": 7.429661940042225, "ax_mps2": 3.081304021144195}, {"id": 252, "s_m": 25.167744474291094, "d_m": 0.0, "x_m": 1.954534310931836, "y_m": -4.782102697261376, "d_right": 0.8766885586525092, "d_left": 2.0073501602921096, "psi_rad": -1.6104290233876624, "kappa_radpm": -0.15510637467475039, "vx_mps": 7.470967042178015, "ax_mps2": 3.1269108274540103}, {"id": 253, "s_m": 25.267616476173202, "d_m": 0.0, "x_m": 1.9498083567153601, "y_m": -4.881868716290808, "d_right": 0.8811802758997527, "d_left": 2.0286392803758138, "psi_rad": -1.6257901086321453, "kappa_radpm": -0.15249260699491426, "vx_mps": 7.5126513451244, "ax_mps2": 3.1751405632092418}, {"id": 254, "s_m": 25.367488478055307, "d_m": 0.0, "x_m": 1.943564597987724, "y_m": -4.9815352435001055, "d_right": 0.8953497762916054, "d_left": 2.0348808239246963, "psi_rad": -1.6408884250865654, "kappa_radpm": -0.14986683727995823, "vx_mps": 7.5547432465974, "ax_mps2": 3.225839212969062}, {"id": 255, "s_m": 25.467360479937415, "d_m": 0.0, "x_m": 1.9358282833843783, "y_m": -5.081117347766165, "d_right": 0.9187769418528485, "d_left": 2.025806180780877, "psi_rad": -1.6557238437646475, "kappa_radpm": -0.14719216588733655, "vx_mps": 7.597268427659185, "ax_mps2": 3.2811607781995535}, {"id": 256, "s_m": 25.567232481819524, "d_m": 0.0, "x_m": 1.9266312411112727, "y_m": -5.180550380463361, "d_right": 0.932546666310398, "d_left": 2.0193652625208642, "psi_rad": -1.6702890756865152, "kappa_radpm": -0.14450694277630183, "vx_mps": 7.6402800833960764, "ax_mps2": 3.338905436451029}, {"id": 257, "s_m": 25.667104483701632, "d_m": 0.0, "x_m": 1.9159971227545554, "y_m": -5.279869069574199, "d_right": 0.95409764829864, "d_left": 2.0191558461960537, "psi_rad": -1.6845866070907096, "kappa_radpm": -0.14176947546540017, "vx_mps": 7.6838015391344925, "ax_mps2": 3.40157400091892}, {"id": 258, "s_m": 25.76697648558374, "d_m": 0.0, "x_m": 1.9039617921732905, "y_m": -5.378994999811079, "d_right": 0.9771250020346555, "d_left": 2.011326369660343, "psi_rad": -1.698607266619831, "kappa_radpm": -0.13906195022985954, "vx_mps": 7.727887816399084, "ax_mps2": 3.4643170472528917}, {"id": 259, "s_m": 25.866848487465845, "d_m": 0.0, "x_m": 1.890545871875199, "y_m": -5.477981375667063, "d_right": 1.0024882218015758, "d_left": 2.009824123806785, "psi_rad": -1.7123654090240183, "kappa_radpm": -0.13640260056706657, "vx_mps": 7.77253026112966, "ax_mps2": 3.526071606561594}, {"id": 260, "s_m": 25.966720489347953, "d_m": 0.0, "x_m": 1.8757889637869565, "y_m": -5.576734191284771, "d_right": 1.0240830395135443, "d_left": 2.0146378564428877, "psi_rad": -1.7258543801138861, "kappa_radpm": -0.13383116565085798, "vx_mps": 7.817706717473497, "ax_mps2": 3.584436113928628}, {"id": 261, "s_m": 26.06659249123006, "d_m": 0.0, "x_m": 1.8597056197756898, "y_m": -5.675327696480647, "d_right": 1.049334180404057, "d_left": 2.007640954353443, "psi_rad": -1.7391061598300634, "kappa_radpm": -0.1314800649298167, "vx_mps": 7.86336492483106, "ax_mps2": 3.631223700146857}, {"id": 262, "s_m": 26.16646449311217, "d_m": 0.0, "x_m": 1.8423383764576065, "y_m": -5.773648688700661, "d_right": 1.070860195503375, "d_left": 1.9905628027924893, "psi_rad": -1.752117289096872, "kappa_radpm": -0.12915599739790729, "vx_mps": 7.909350359005108, "ax_mps2": 3.678443874115136}, {"id": 263, "s_m": 26.266336494994277, "d_m": 0.0, "x_m": 1.823693645032343, "y_m": -5.871793802903657, "d_right": 1.0911671216446321, "d_left": 1.9722716852796611, "psi_rad": -1.7649050277003075, "kappa_radpm": -0.12685176901182652, "vx_mps": 7.955662776194825, "ax_mps2": 3.726547006063205}, {"id": 264, "s_m": 26.366208496876382, "d_m": 0.0, "x_m": 1.8038193297657539, "y_m": -5.9696344662279754, "d_right": 1.1156712152510977, "d_left": 1.9596781134353132, "psi_rad": -1.77745474135833, "kappa_radpm": -0.12452797973097766, "vx_mps": 8.002307518943429, "ax_mps2": 3.77805497207671}, {"id": 265, "s_m": 26.46608049875849, "d_m": 0.0, "x_m": 1.7827164474795183, "y_m": -6.067282828602738, "d_right": 1.1472263315513804, "d_left": 1.9398061986641904, "psi_rad": -1.7897725066732617, "kappa_radpm": -0.12206517345739605, "vx_mps": 8.049321055486757, "ax_mps2": 3.840732457763495}, {"id": 266, "s_m": 26.5659525006406, "d_m": 0.0, "x_m": 1.7604393885982215, "y_m": -6.164602762360563, "d_right": 1.1852477474501806, "d_left": 1.926137247550032, "psi_rad": -1.8018362004047281, "kappa_radpm": -0.11959430385516072, "vx_mps": 8.09683473542614, "ax_mps2": 3.906109893962996}, {"id": 267, "s_m": 26.665824502522707, "d_m": 0.0, "x_m": 1.7369857909639972, "y_m": -6.261715364048884, "d_right": 1.2292002963051356, "d_left": 1.9052677681260914, "psi_rad": -1.8136573248878731, "kappa_radpm": -0.11705206165885734, "vx_mps": 8.144872912585345, "ax_mps2": 3.9784332656049717}, {"id": 268, "s_m": 26.765696504404815, "d_m": 0.0, "x_m": 1.7124155565316128, "y_m": -6.3584802413365, "d_right": 1.2514571207703207, "d_left": 1.885046047157516, "psi_rad": -1.8252164487246167, "kappa_radpm": -0.11450510483498788, "vx_mps": 8.193511027108414, "ax_mps2": 4.05333010041548}, {"id": 269, "s_m": 26.86556850628692, "d_m": 0.0, "x_m": 1.686722309246072, "y_m": -6.455026153718058, "d_right": 1.270731702843431, "d_left": 1.8685379516863156, "psi_rad": -1.8365250156500545, "kappa_radpm": -0.11187624075667027, "vx_mps": 8.242769639761999, "ax_mps2": 4.136107202351757}, {"id": 270, "s_m": 26.965440508169028, "d_m": 0.0, "x_m": 1.6599712365995551, "y_m": -6.551209668002989, "d_right": 1.2762350434688052, "d_left": 1.8560255304874043, "psi_rad": -1.8475628209054769, "kappa_radpm": -0.10924201353062682, "vx_mps": 8.292732598292188, "ax_mps2": 4.221639690963394}, {"id": 271, "s_m": 27.065312510051136, "d_m": 0.0, "x_m": 1.6321521687754355, "y_m": -6.647165886961804, "d_right": 1.288405134144724, "d_left": 1.8348308165894844, "psi_rad": -1.8583409884249695, "kappa_radpm": -0.1065188070803102, "vx_mps": 8.343420231601717, "ax_mps2": 4.315831462474378}, {"id": 272, "s_m": 27.165184511933244, "d_m": 0.0, "x_m": 1.603335235902672, "y_m": -6.742749958860719, "d_right": 1.303443414066147, "d_left": 1.8102079177834702, "psi_rad": -1.8688391078087667, "kappa_radpm": -0.10379184372035453, "vx_mps": 8.394922430671237, "ax_mps2": 4.41285510543991}, {"id": 273, "s_m": 27.265056513815352, "d_m": 0.0, "x_m": 1.5735068139015553, "y_m": -6.838101700630049, "d_right": 1.3215429342018652, "d_left": 1.7918288406474956, "psi_rad": -1.879069030198341, "kappa_radpm": -0.10099190867675202, "vx_mps": 8.44725777775125, "ax_mps2": 4.4612545491883004}, {"id": 274, "s_m": 27.364928515697457, "d_m": 0.0, "x_m": 1.5427404870172632, "y_m": -6.933078860819175, "d_right": 1.345843010531167, "d_left": 1.7798889974180239, "psi_rad": -1.8890117423865895, "kappa_radpm": -0.0981872907050432, "vx_mps": 8.499839575500538, "ax_mps2": 4.4305936466473765}, {"id": 275, "s_m": 27.464800517579565, "d_m": 0.0, "x_m": 1.51102216858396, "y_m": -7.027816204742977, "d_right": 1.3584314671930258, "d_left": 1.7726661616467168, "psi_rad": -1.898677821202286, "kappa_radpm": -0.09531249622983895, "vx_mps": 8.55174001728764, "ax_mps2": 4.400309085527689}, {"id": 276, "s_m": 27.564672519461674, "d_m": 0.0, "x_m": 1.4784254630578046, "y_m": -7.122183703085458, "d_right": 1.3643821451297964, "d_left": 1.7647459142791575, "psi_rad": -1.9080499128556596, "kappa_radpm": -0.09243034194305534, "vx_mps": 8.602975803628775, "ax_mps2": 4.370391931139384}, {"id": 277, "s_m": 27.66454452134378, "d_m": 0.0, "x_m": 1.4449374266216921, "y_m": -7.216307285956394, "d_right": 1.3737525702367304, "d_left": 1.7463534494345563, "psi_rad": -1.91713729659336, "kappa_radpm": -0.08948850220747778, "vx_mps": 8.653562980655238, "ax_mps2": 4.340833594397751}, {"id": 278, "s_m": 27.76441652322589, "d_m": 0.0, "x_m": 1.410630936513198, "y_m": -7.310069270915962, "d_right": 1.386873376506893, "d_left": 1.7344267022848154, "psi_rad": -1.925924692227892, "kappa_radpm": -0.08653726085130503, "vx_mps": 8.70351697545228, "ax_mps2": 4.311625813264666}, {"id": 279, "s_m": 27.864288525107998, "d_m": 0.0, "x_m": 1.3754943331295917, "y_m": -7.403587523407272, "d_right": 1.4020830019256303, "d_left": 1.7242597965127429, "psi_rad": -1.9344199889507196, "kappa_radpm": -0.08353164911151544, "vx_mps": 8.752852628981058, "ax_mps2": 4.282760635456435}, {"id": 280, "s_m": 27.964160526990103, "d_m": 0.0, "x_m": 1.3395996345624241, "y_m": -7.496755285903732, "d_right": 1.4233333901664154, "d_left": 1.7147880713703274, "psi_rad": -1.9426095494985214, "kappa_radpm": -0.08051487696479455, "vx_mps": 8.801584226782724, "ax_mps2": 4.254230402311685}, {"id": 281, "s_m": 28.06403252887221, "d_m": 0.0, "x_m": 1.3029364300154165, "y_m": -7.589683549717723, "d_right": 1.450409806178203, "d_left": 1.7076298325111539, "psi_rad": -1.9504999965400467, "kappa_radpm": -0.07744785247264008, "vx_mps": 8.849725527644551, "ax_mps2": 4.226027733728005}, {"id": 282, "s_m": 28.16390453075432, "d_m": 0.0, "x_m": 1.265575829132254, "y_m": -7.682275172653312, "d_right": 1.4637225298764454, "d_left": 1.6896774435612485, "psi_rad": -1.958079148684015, "kappa_radpm": -0.07436854637022036, "vx_mps": 8.897289790391065, "ax_mps2": 4.198145514078765}, {"id": 283, "s_m": 28.263776532636427, "d_m": 0.0, "x_m": 1.2275086079975426, "y_m": -7.774635251051475, "d_right": 1.4584488712406238, "d_left": 1.6782197772183702, "psi_rad": -1.9653534362227711, "kappa_radpm": -0.07126284693041623, "vx_mps": 8.944289798947928, "ax_mps2": 4.170576879037266}, {"id": 284, "s_m": 28.363648534518536, "d_m": 0.0, "x_m": 1.1888047140375828, "y_m": -7.866675223228708, "d_right": 1.4592949965494342, "d_left": 1.6661105734136887, "psi_rad": -1.9723132706112345, "kappa_radpm": -0.06814557887399082, "vx_mps": 8.990737885812784, "ax_mps2": 4.143315203233513}, {"id": 285, "s_m": 28.46352053640064, "d_m": 0.0, "x_m": 1.1494560419785191, "y_m": -7.958494779955832, "d_right": 1.4641935284793641, "d_left": 1.6511985908407547, "psi_rad": -1.9789630116058659, "kappa_radpm": -0.06498217535781928, "vx_mps": 9.036645954055095, "ax_mps2": 4.116354088682975}, {"id": 286, "s_m": 28.56339253828275, "d_m": 0.0, "x_m": 1.1095312951991576, "y_m": -8.050013512368903, "d_right": 1.4710255574710298, "d_left": 1.6428883401022607, "psi_rad": -1.9852927964420175, "kappa_radpm": -0.061803798503204624, "vx_mps": 9.082025497956117, "ax_mps2": 4.089687353927861}, {"id": 287, "s_m": 28.663264540164857, "d_m": 0.0, "x_m": 1.0690238781276686, "y_m": -8.14132639211273, "d_right": 1.483956758803784, "d_left": 1.6412405855865793, "psi_rad": -1.9913005932669208, "kappa_radpm": -0.05845943194881309, "vx_mps": 9.126887622390367, "ax_mps2": 4.063309023837886}, {"id": 288, "s_m": 28.763136542046965, "d_m": 0.0, "x_m": 1.028002495102318, "y_m": -8.232360245038791, "d_right": 1.4869019972134463, "d_left": 1.6306148481780887, "psi_rad": -1.9969693761735572, "kappa_radpm": -0.055085151639687385, "vx_mps": 9.171243061041134, "ax_mps2": 4.037213320023467}, {"id": 289, "s_m": 28.863008543929073, "d_m": 0.0, "x_m": 0.9864626931630835, "y_m": -8.32320739222584, "d_right": 1.487214102308735, "d_left": 1.6195920316183405, "psi_rad": -2.002296460990248, "kappa_radpm": -0.05154974156213979, "vx_mps": 9.215102193534635, "ax_mps2": 4.011394651814485}, {"id": 290, "s_m": 28.962880545811178, "d_m": 0.0, "x_m": 0.9444740564477015, "y_m": -8.413799942169025, "d_right": 1.4937034292898774, "d_left": 1.615200345915416, "psi_rad": -2.0072657698176384, "kappa_radpm": -0.04798356294632536, "vx_mps": 9.25847506157027, "ax_mps2": 3.9858476077665994}, {"id": 291, "s_m": 29.062752547693286, "d_m": 0.0, "x_m": 0.9020335660337845, "y_m": -8.504229077211319, "d_right": 1.5063306187808103, "d_left": 1.6174545016481416, "psi_rad": -2.0118798948437746, "kappa_radpm": -0.04439422697637455, "vx_mps": 9.301371384117932, "ax_mps2": 3.9605669476571137}, {"id": 292, "s_m": 29.162624549575394, "d_m": 0.0, "x_m": 0.859210713505835, "y_m": -8.59443091822515, "d_right": 1.5132107866807627, "d_left": 1.609561574878203, "psi_rad": -2.016132958495797, "kappa_radpm": -0.040792041286486974, "vx_mps": 9.343800571747515, "ax_mps2": 3.935547594935815}, {"id": 293, "s_m": 29.262496551457502, "d_m": 0.0, "x_m": 0.8160027967288315, "y_m": -8.68449499968484, "d_right": 1.5196937937506174, "d_left": 1.6020504795866581, "psi_rad": -2.020027048786316, "kappa_radpm": -0.03717089978943744, "vx_mps": 9.385771740150423, "ax_mps2": 3.9107846295996955}, {"id": 294, "s_m": 29.36236855333961, "d_m": 0.0, "x_m": 0.772478639514083, "y_m": -8.774361302554684, "d_right": 1.532301135932594, "d_left": 1.6011196648312287, "psi_rad": -2.0235573244578218, "kappa_radpm": -0.033537531296778944, "vx_mps": 9.42729372290808, "ax_mps2": 3.8862732814632426}, {"id": 295, "s_m": 29.462240555221715, "d_m": 0.0, "x_m": 0.7286362169750161, "y_m": -8.864117264855821, "d_right": 1.5358302094831784, "d_left": 1.6067435960450132, "psi_rad": -2.026724355736876, "kappa_radpm": -0.029866762321199784, "vx_mps": 9.468375083558078, "ax_mps2": 3.862008923797493}, {"id": 296, "s_m": 29.562112557103823, "d_m": 0.0, "x_m": 0.684543598244522, "y_m": -8.953706841205273, "d_right": 1.5425989144767323, "d_left": 1.6188134039749855, "psi_rad": -2.0295227055829024, "kappa_radpm": -0.026180959816966373, "vx_mps": 9.509024127004615, "ax_mps2": 3.8379870673132355}, {"id": 297, "s_m": 29.66198455898593, "d_m": 0.0, "x_m": 0.6401999729592022, "y_m": -9.043214991115669, "d_right": 1.5555085526223558, "d_left": 1.6371595938089483, "psi_rad": -2.031953064126915, "kappa_radpm": -0.022476908148531535, "vx_mps": 9.549248910316262, "ax_mps2": 3.814203354466289}, {"id": 298, "s_m": 29.76185656086804, "d_m": 0.0, "x_m": 0.5956721049289984, "y_m": -9.132590119503819, "d_right": 1.5626563523991386, "d_left": 1.6521197745685579, "psi_rad": -2.03401202995391, "kappa_radpm": -0.018760917636304185, "vx_mps": 9.589057252950798, "ax_mps2": 3.7906535540625366}, {"id": 299, "s_m": 29.861728562750148, "d_m": 0.0, "x_m": 0.550960881449684, "y_m": -9.221913615943565, "d_right": 1.5699595536685171, "d_left": 1.6436520629778222, "psi_rad": -2.035699712401647, "kappa_radpm": -0.01502783393139006, "vx_mps": 9.628456746443836, "ax_mps2": 3.7673335561469767}, {"id": 300, "s_m": 29.961600564632253, "d_m": 0.0, "x_m": 0.5061311110330361, "y_m": -9.311139140249098, "d_right": 1.5696593147007445, "d_left": 1.6324319152641584, "psi_rad": -2.037013474187666, "kappa_radpm": -0.011283833282658348, "vx_mps": 9.667454763595218, "ax_mps2": 3.744239367154362}, {"id": 301, "s_m": 30.06147256651436, "d_m": 0.0, "x_m": 0.46118615144448677, "y_m": -9.400343213498752, "d_right": 1.562243422667584, "d_left": 1.6249383743608015, "psi_rad": -2.037953296458215, "kappa_radpm": -0.0075326674137025556, "vx_mps": 9.706058467184652, "ax_mps2": 3.7213671053077158}, {"id": 302, "s_m": 30.16134456839647, "d_m": 0.0, "x_m": 0.4161880280545142, "y_m": -9.489485860477052, "d_right": 1.558838420263823, "d_left": 1.623641737382879, "psi_rad": -2.038517856355776, "kappa_radpm": -0.003773211592539185, "vx_mps": 9.744274818245712, "ax_mps2": 3.698712996251018}, {"id": 303, "s_m": 30.261216570278577, "d_m": 0.0, "x_m": 0.3711434393594509, "y_m": -9.57863701453955, "d_right": 1.5617876162315452, "d_left": 1.6285184443046943, "psi_rad": -2.0387071538485655, "kappa_radpm": -1.7134577387989605e-05, "vx_mps": 9.782110583925302, "ax_mps2": 3.676273368896838}, {"id": 304, "s_m": 30.361088572160686, "d_m": 0.0, "x_m": 0.3261105453950789, "y_m": -9.667764650594409, "d_right": 1.5654989519690592, "d_left": 1.6394738627980123, "psi_rad": -2.0385211295406354, "kappa_radpm": 0.0037440647316791796, "vx_mps": 9.819572344953656, "ax_mps2": 3.654044651480395}, {"id": 305, "s_m": 30.46096057404279, "d_m": 0.0, "x_m": 0.2811004735756978, "y_m": -9.756929878879237, "d_right": 1.5634339536971826, "d_left": 1.639706741449115, "psi_rad": -2.037960125167321, "kappa_radpm": 0.007487846732017775, "vx_mps": 9.856666502748205, "ax_mps2": 3.6320233678066325}, {"id": 306, "s_m": 30.5608325759249, "d_m": 0.0, "x_m": 0.23616623241448623, "y_m": -9.846110607636243, "d_right": 1.5578261372520101, "d_left": 1.615833567557796, "psi_rad": -2.037025422921004, "kappa_radpm": 0.011232763866004102, "vx_mps": 9.89339928617305, "ax_mps2": 3.6102061336771065}, {"id": 307, "s_m": 30.660704577807007, "d_m": 0.0, "x_m": 0.1913245884344797, "y_m": -9.935356477159875, "d_right": 1.5587220173038328, "d_left": 1.5932582370945094, "psi_rad": -2.0357177915590174, "kappa_radpm": 0.014949380888029381, "vx_mps": 9.92977675797418, "ax_mps2": 3.5885896534882202}, {"id": 308, "s_m": 30.760576579689115, "d_m": 0.0, "x_m": 0.1466219733693627, "y_m": -10.02465774054889, "d_right": 1.5661474335437002, "d_left": 1.576552047269969, "psi_rad": -2.0340394306840075, "kappa_radpm": 0.01866309109060278, "vx_mps": 9.965804820909288, "ax_mps2": 3.5671707169903533}, {"id": 309, "s_m": 30.860448581571223, "d_m": 0.0, "x_m": 0.1020822014817501, "y_m": -10.11404938087875, "d_right": 1.5714324232269428, "d_left": 1.5658620551795617, "psi_rad": -2.031992583121074, "kappa_radpm": 0.022321278000405405, "vx_mps": 10.0014892235897, "ax_mps2": 3.5459461961980137}, {"id": 310, "s_m": 30.960320583453328, "d_m": 0.0, "x_m": 0.05774328527992047, "y_m": -10.20353711778355, "d_right": 1.57422832371532, "d_left": 1.5612769956762627, "psi_rad": -2.0295810867206967, "kappa_radpm": 0.025970512789696334, "vx_mps": 10.036835566050785, "ax_mps2": 3.5249130424430075}, {"id": 311, "s_m": 31.060192585335436, "d_m": 0.0, "x_m": 0.013637409325634477, "y_m": -10.293137774600494, "d_right": 1.583587942178731, "d_left": 1.5628137901064498, "psi_rad": -2.026807737907732, "kappa_radpm": 0.029565605477296288, "vx_mps": 10.071849305066088, "ax_mps2": -5.498829790713998}, {"id": 312, "s_m": 31.160064587217544, "d_m": 0.0, "x_m": -0.030206967016900066, "y_m": -10.382874937304955, "d_right": 1.599432670406149, "d_left": 1.5590622800737082, "psi_rad": -2.0236758234189347, "kappa_radpm": 0.033149179653957216, "vx_mps": 10.017174758660502, "ax_mps2": -8.765949471915098}, {"id": 313, "s_m": 31.259936589099652, "d_m": 0.0, "x_m": -0.07374808473328658, "y_m": -10.472744293396184, "d_right": 1.5987252206393734, "d_left": 1.548972650858396, "psi_rad": -2.020189548394252, "kappa_radpm": 0.036667914501568, "vx_mps": 9.929392947266713, "ax_mps2": -8.482321819542202}, {"id": 314, "s_m": 31.35980859098176, "d_m": 0.0, "x_m": -0.11696860760951813, "y_m": -10.562790819265945, "d_right": 1.5814242626232091, "d_left": 1.544917944644764, "psi_rad": -2.016352114504926, "kappa_radpm": 0.040168523976916906, "vx_mps": 9.843706181097545, "ax_mps2": -8.254746848597138}, {"id": 315, "s_m": 31.459680592863865, "d_m": 0.0, "x_m": -0.15981546201512184, "y_m": -10.652982835021374, "d_right": 1.5706990020866758, "d_left": 1.531762659682927, "psi_rad": -2.012189431872221, "kappa_radpm": 0.04318619349024355, "vx_mps": 9.759596056916456, "ax_mps2": -8.039485177719648}, {"id": 316, "s_m": 31.559552594745973, "d_m": 0.0, "x_m": -0.2022895924882581, "y_m": -10.743394272949354, "d_right": 1.566708994740414, "d_left": 1.4419495831594058, "psi_rad": -2.007726769907487, "kappa_radpm": 0.0461591998307921, "vx_mps": 9.676976606181212, "ax_mps2": -7.888288131011535}, {"id": 317, "s_m": 31.65942459662808, "d_m": 0.0, "x_m": -0.24432682199536446, "y_m": -10.833955941053038, "d_right": 1.555020441854501, "d_left": 1.3507280231942618, "psi_rad": -2.0029989748962453, "kappa_radpm": 0.04852522853273684, "vx_mps": 9.595219538001434, "ax_mps2": -7.746767959453929}, {"id": 318, "s_m": 31.75929659851019, "d_m": 0.0, "x_m": -0.28594909233025234, "y_m": -10.924773523922957, "d_right": 1.5379018831515867, "d_left": 1.2605445542710585, "psi_rad": -1.9980348124350664, "kappa_radpm": 0.05085203787964215, "vx_mps": 9.51424550524059, "ax_mps2": -7.619330687699786}, {"id": 319, "s_m": 31.859168600392298, "d_m": 0.0, "x_m": -0.32708329849855217, "y_m": -11.015742812062813, "d_right": 1.5248607965095262, "d_left": 1.1717530933220761, "psi_rad": -1.992846110741362, "kappa_radpm": 0.05308741601276016, "vx_mps": 9.433925583574743, "ax_mps2": -7.4987548123709695}, {"id": 320, "s_m": 31.959040602274406, "d_m": 0.0, "x_m": -0.3677630753564054, "y_m": -11.106992736954043, "d_right": 1.5188135267745526, "d_left": 1.0845538414495515, "psi_rad": -1.9874312501880977, "kappa_radpm": 0.05530797618763737, "vx_mps": 9.354203365704473, "ax_mps2": -7.387164742470635}, {"id": 321, "s_m": 32.05891260415651, "d_m": 0.0, "x_m": -0.4079083101107806, "y_m": -11.198397761882735, "d_right": 1.519874060796731, "d_left": 0.9994959387788687, "psi_rad": -1.981800726079503, "kappa_radpm": 0.05748750358628821, "vx_mps": 9.274997506459503, "ax_mps2": -7.282584819040381}, {"id": 322, "s_m": 32.15878460603862, "d_m": 0.0, "x_m": -0.44755940363026386, "y_m": -11.290104151119023, "d_right": 1.5113400353741318, "d_left": 0.9170177127619096, "psi_rad": -1.9759490251607605, "kappa_radpm": 0.0596464113487162, "vx_mps": 9.196245217224382, "ax_mps2": -7.200633114879836}, {"id": 323, "s_m": 32.25865660792073, "d_m": 0.0, "x_m": -0.4866320839744237, "y_m": -11.381970389508869, "d_right": 1.5085029150159486, "d_left": 0.8380214538950911, "psi_rad": -1.9698969597230445, "kappa_radpm": 0.06159726930920497, "vx_mps": 9.11771039281897, "ax_mps2": -7.1237995791057465}, {"id": 324, "s_m": 32.35852860980283, "d_m": 0.0, "x_m": -0.5251709186715543, "y_m": -11.474151890257668, "d_right": 1.5128838862900185, "d_left": 0.7634291489125832, "psi_rad": -1.9636453255432675, "kappa_radpm": 0.06354295845873624, "vx_mps": 9.039342152909951, "ax_mps2": -7.031279890429801}, {"id": 325, "s_m": 32.458400611684944, "d_m": 0.0, "x_m": -0.5630912861102946, "y_m": -11.566497548876091, "d_right": 1.5244326204218084, "d_left": 0.6947933874013628, "psi_rad": -1.957192333110715, "kappa_radpm": 0.06573874994646345, "vx_mps": 8.961319688554436, "ax_mps2": -6.945278530214383}, {"id": 326, "s_m": 32.55827261356705, "d_m": 0.0, "x_m": -0.6004369643009757, "y_m": -11.659170577447753, "d_right": 1.5418044805627802, "d_left": 0.6339014314880789, "psi_rad": -1.950515051342724, "kappa_radpm": 0.0679161535810884, "vx_mps": 8.88357882948031, "ax_mps2": -6.944796396965381}, {"id": 327, "s_m": 32.65814461544916, "d_m": 0.0, "x_m": -0.6371238948060224, "y_m": -11.752014064001418, "d_right": 1.5493389867732918, "d_left": 0.5796545426014503, "psi_rad": -1.9437004816875278, "kappa_radpm": 0.06858229208420454, "vx_mps": 8.8051570901338, "ax_mps2": -6.9819527558595285}, {"id": 328, "s_m": 32.758016617331265, "d_m": 0.0, "x_m": -0.6732046771693114, "y_m": -11.845185803790805, "d_right": 1.5522794725661069, "d_left": 0.5273896031679686, "psi_rad": -1.9368155709167594, "kappa_radpm": 0.06923722383025467, "vx_mps": 8.725605319081629, "ax_mps2": -6.865807461003783}, {"id": 329, "s_m": 32.85788861921337, "d_m": 0.0, "x_m": -0.7086068708185789, "y_m": -11.938528322008978, "d_right": 1.5622983984099792, "d_left": 0.48950759812958455, "psi_rad": -1.9297422721545576, "kappa_radpm": 0.07253710083915543, "vx_mps": 8.646663189522911, "ax_mps2": -6.711983985203935}, {"id": 330, "s_m": 32.95776062109548, "d_m": 0.0, "x_m": -0.7433602560918641, "y_m": -12.032201156746897, "d_right": 1.579304836908333, "d_left": 0.4694080526995471, "psi_rad": -1.922327380394111, "kappa_radpm": 0.07588599517763518, "vx_mps": 8.568786714503084, "ax_mps2": -6.709127523757503}, {"id": 331, "s_m": 33.057632622977586, "d_m": 0.0, "x_m": -0.7773733917205099, "y_m": -12.126032389063498, "d_right": 1.6025265026273332, "d_left": 0.4693868868002173, "psi_rad": -1.9148120181678427, "kappa_radpm": 0.0745099235146648, "vx_mps": 8.490229547266939, "ax_mps2": -6.904589118028384}, {"id": 332, "s_m": 33.1575046248597, "d_m": 0.0, "x_m": -0.8107299120214206, "y_m": -12.22023395104857, "d_right": 1.6159365095812381, "d_left": 0.4894591935562883, "psi_rad": -1.9074493809186155, "kappa_radpm": 0.07282219740312738, "vx_mps": 8.408617454165856, "ax_mps2": -7.112332622206856}, {"id": 333, "s_m": 33.2573766267418, "d_m": 0.0, "x_m": -0.8433643304916686, "y_m": -12.314528277793274, "d_right": 1.63542238350012, "d_left": 0.5222993420032289, "psi_rad": -1.9007121239474243, "kappa_radpm": 0.0617124910249346, "vx_mps": 8.323713215653234, "ax_mps2": -7.981906506996001}, {"id": 334, "s_m": 33.35724862862391, "d_m": 0.0, "x_m": -0.8754726122379306, "y_m": -12.409186013063003, "d_right": 1.6561503832892615, "d_left": 0.5546285556202182, "psi_rad": -1.8951229188449306, "kappa_radpm": 0.05014134482583275, "vx_mps": 8.227384987531659, "ax_mps2": -8.857550596170448}, {"id": 335, "s_m": 33.45712063050602, "d_m": 0.0, "x_m": -0.9070598705709917, "y_m": -12.503847679464153, "d_right": 1.6631886640918576, "d_left": 0.5864610793509468, "psi_rad": -1.8908609836343961, "kappa_radpm": 0.035015512894773726, "vx_mps": 8.119151502062149, "ax_mps2": -9.940092753382517}, {"id": 336, "s_m": 33.55699263238812, "d_m": 0.0, "x_m": -0.9383642707861853, "y_m": -12.598766134635627, "d_right": 1.671153511284349, "d_left": 0.6180151947558418, "psi_rad": -1.8881260454079047, "kappa_radpm": 0.019742254553904406, "vx_mps": 7.995945671969627, "ax_mps2": -10.981861375871913}, {"id": 337, "s_m": 33.656864634270235, "d_m": 0.0, "x_m": -0.9694384149064815, "y_m": -12.693615379504484, "d_right": 1.6833109098127734, "d_left": 0.6493593170374472, "psi_rad": -1.8869104441585351, "kappa_radpm": 0.004639470820566082, "vx_mps": 7.857581449090393, "ax_mps2": -11.615377638337938}, {"id": 338, "s_m": 33.75673663615234, "d_m": 0.0, "x_m": -1.000506320257634, "y_m": -12.788594496629406, "d_right": 1.7013175664366447, "d_left": 0.6807014103268526, "psi_rad": -1.8871963677738934, "kappa_radpm": -0.010338615673349783, "vx_mps": 7.7085332064131755, "ax_mps2": -10.794985098351832}, {"id": 339, "s_m": 33.856608638034444, "d_m": 0.0, "x_m": -1.0316374126493664, "y_m": -12.883436784848008, "d_right": 1.7248066494116696, "d_left": 0.7114839425117973, "psi_rad": -1.8889585097252493, "kappa_radpm": -0.024908522587918733, "vx_mps": 7.5673806994398545, "ax_mps2": -10.040272472471624}, {"id": 340, "s_m": 33.956480639916556, "d_m": 0.0, "x_m": -1.063035390885124, "y_m": -12.978295311355101, "d_right": 1.7534665361531574, "d_left": 0.7425262528538473, "psi_rad": -1.8921687880693998, "kappa_radpm": -0.03932974547113567, "vx_mps": 7.433691305651561, "ax_mps2": -9.354899202630302}, {"id": 341, "s_m": 34.05635264179866, "d_m": 0.0, "x_m": -1.0947775198093108, "y_m": -13.072946800564528, "d_right": 1.778456261223448, "d_left": 0.7739653420772412, "psi_rad": -1.896800854384722, "kappa_radpm": -0.05340773711615758, "vx_mps": 7.306926946820779, "ax_mps2": -8.721188460380068}, {"id": 342, "s_m": 34.15622464368077, "d_m": 0.0, "x_m": -1.127048760971244, "y_m": -13.16750017235155, "d_right": 1.8013745299012154, "d_left": 0.8059883586546784, "psi_rad": -1.9028339242591201, "kappa_radpm": -0.0673481916144291, "vx_mps": 7.186736137184735, "ax_mps2": -8.139826868125931}, {"id": 343, "s_m": 34.25609664556288, "d_m": 0.0, "x_m": -1.1599338172512386, "y_m": -13.261773582974643, "d_right": 1.8188069759287488, "d_left": 0.8386708603163742, "psi_rad": -1.91024396904342, "kappa_radpm": -0.08103334362153951, "vx_mps": 7.072714803873405, "ax_mps2": -7.59789561373312}, {"id": 344, "s_m": 34.35596864744498, "d_m": 0.0, "x_m": -1.1935989384245613, "y_m": -13.355828694143295, "d_right": 1.8407261008766524, "d_left": 0.8721811020055737, "psi_rad": -1.9190181683868408, "kappa_radpm": -0.09462027947863616, "vx_mps": 6.964600534622243, "ax_mps2": -7.085924383914179}, {"id": 345, "s_m": 34.455840649327094, "d_m": 0.0, "x_m": -1.228137130102684, "y_m": -13.449522737888955, "d_right": 1.8635100868651824, "d_left": 0.9066096055458257, "psi_rad": -1.9291450513407948, "kappa_radpm": -0.10822016253957799, "vx_mps": 6.862236494033624, "ax_mps2": -6.600185500639112}, {"id": 346, "s_m": 34.5557126512092, "d_m": 0.0, "x_m": -1.2636969793223378, "y_m": -13.542866921679407, "d_right": 1.8838549680240415, "d_left": 0.9421075734849513, "psi_rad": -1.9406352241269804, "kappa_radpm": -0.12183798429473398, "vx_mps": 6.765496450561684, "ax_mps2": -6.140740832949565}, {"id": 347, "s_m": 34.65558465309131, "d_m": 0.0, "x_m": -1.3003806810348897, "y_m": -13.635747911239221, "d_right": 1.9033242087460982, "d_left": 0.9787795125108515, "psi_rad": -1.9534804311679679, "kappa_radpm": -0.1354004835980565, "vx_mps": 6.674231496023414, "ax_mps2": -5.703760681770703}, {"id": 348, "s_m": 34.755456654973415, "d_m": 0.0, "x_m": -1.3383234444637393, "y_m": -13.728140106711257, "d_right": 1.9167966358389539, "d_left": 1.016765159674815, "psi_rad": -1.967679764408775, "kappa_radpm": -0.14892017038039712, "vx_mps": 6.588328624728823, "ax_mps2": -5.298331575211531}, {"id": 349, "s_m": 34.85532865685552, "d_m": 0.0, "x_m": -1.3776292065942286, "y_m": -13.819942173550636, "d_right": 1.9338789437476247, "d_left": 1.056174592512372, "psi_rad": -1.9832166588781472, "kappa_radpm": -0.16211901496671371, "vx_mps": 6.507515970423592, "ax_mps2": -4.917738423472689}, {"id": 350, "s_m": 34.95520065873763, "d_m": 0.0, "x_m": -1.4184206101527281, "y_m": -13.911106144733147, "d_right": 1.9467573677592382, "d_left": 1.0889730505914337, "psi_rad": -2.0000559068599113, "kappa_radpm": -0.17507773161756174, "vx_mps": 6.431599749918251, "ax_mps2": -4.563388513396684}, {"id": 351, "s_m": 35.055072660619736, "d_m": 0.0, "x_m": -1.460795495225957, "y_m": -14.001534425929364, "d_right": 1.9610346224951816, "d_left": 1.0748670458103473, "psi_rad": -2.0181772929696233, "kappa_radpm": -0.1876948179840516, "vx_mps": 6.360343217999407, "ax_mps2": -4.231213292138125}, {"id": 352, "s_m": 35.15494466250185, "d_m": 0.0, "x_m": -1.5048590726759161, "y_m": -14.091155304235588, "d_right": 1.9748125268805017, "d_left": 1.071807198751679, "psi_rad": -2.0375373687005522, "kappa_radpm": -0.20000369765356457, "vx_mps": 6.29355276191429, "ax_mps2": -3.9198041637846477}, {"id": 353, "s_m": 35.25481666438395, "d_m": 0.0, "x_m": -1.5507036261888556, "y_m": -14.179878152739391, "d_right": 1.9857622115021671, "d_left": 1.071193600821857, "psi_rad": -2.0581171525731587, "kappa_radpm": -0.21197965513378353, "vx_mps": 6.231039158066094, "ax_mps2": -3.6304905098500675}, {"id": 354, "s_m": 35.35468866626606, "d_m": 0.0, "x_m": -1.598410453078596, "y_m": -14.267601136708386, "d_right": 1.9962010218830104, "d_left": 1.0607710237630763, "psi_rad": -2.07986316070874, "kappa_radpm": -0.22353407575706885, "vx_mps": 6.172574850035243, "ax_mps2": -3.3644465147067337}, {"id": 355, "s_m": 35.45456066814817, "d_m": 0.0, "x_m": -1.6480731800129103, "y_m": -14.354254584894404, "d_right": 1.9983667591179641, "d_left": 1.0481526127610552, "psi_rad": -2.102753165981932, "kappa_radpm": -0.23458622922455413, "vx_mps": 6.117896064987496, "ax_mps2": -3.1284962253270963}, {"id": 356, "s_m": 35.55443267003027, "d_m": 0.0, "x_m": -1.699732306855825, "y_m": -14.439689361476226, "d_right": 1.9942250930868206, "d_left": 1.0473071162846905, "psi_rad": -2.126691545397593, "kappa_radpm": -0.24491471604509027, "vx_mps": 6.066609753410997, "ax_mps2": -2.9105473276102094}, {"id": 357, "s_m": 35.654304671912385, "d_m": 0.0, "x_m": -1.7534958667571512, "y_m": -14.523883110050924, "d_right": 1.9926365789537437, "d_left": 1.0556330078287388, "psi_rad": -2.1516622962211525, "kappa_radpm": -0.2548004838276636, "vx_mps": 6.018503927374254, "ax_mps2": -2.7241985030130924}, {"id": 358, "s_m": 35.75417667379449, "d_m": 0.0, "x_m": -1.809334994632544, "y_m": -14.606610596699527, "d_right": 1.9935114528013507, "d_left": 1.0428590889892926, "psi_rad": -2.1775482863879443, "kappa_radpm": -0.2638506197513662, "vx_mps": 5.973127087864364, "ax_mps2": -2.5582069139510053}, {"id": 359, "s_m": 35.854048675676594, "d_m": 0.0, "x_m": -1.867406149005174, "y_m": -14.687938833568287, "d_right": 1.990376157560381, "d_left": 1.0421880234704348, "psi_rad": -2.204353948646, "kappa_radpm": -0.27234830473050026, "vx_mps": 5.930199045253807, "ax_mps2": -2.437927146102215}, {"id": 360, "s_m": 35.953920677558706, "d_m": 0.0, "x_m": -1.9275667263126284, "y_m": -14.767527085227321, "d_right": 1.986482152397506, "d_left": 1.049400006935736, "psi_rad": -2.2318890292363642, "kappa_radpm": -0.2795864299373672, "vx_mps": 5.888998164992176, "ax_mps2": -2.327383750993536}, {"id": 361, "s_m": 36.05379267944081, "d_m": 0.0, "x_m": -1.9900627734954657, "y_m": -14.845575470003855, "d_right": 1.977342342980406, "d_left": 1.0552843742567248, "psi_rad": -2.260197959858888, "kappa_radpm": -0.28656342039237587, "vx_mps": 5.849394707024138, "ax_mps2": -2.2487257941172354}, {"id": 362, "s_m": 36.15366468132292, "d_m": 0.0, "x_m": -2.0545754369668012, "y_m": -14.9215810788201, "d_right": 1.9683814834216846, "d_left": 1.0672053139624216, "psi_rad": -2.289076167197291, "kappa_radpm": -0.29265343913896336, "vx_mps": 5.810873337552381, "ax_mps2": -2.1939840974767235}, {"id": 363, "s_m": 36.25353668320503, "d_m": 0.0, "x_m": -2.1215367267412106, "y_m": -14.995952212969817, "d_right": 1.9615165032629007, "d_left": 1.0798087676745087, "psi_rad": -2.3186425257802505, "kappa_radpm": -0.29809326471500935, "vx_mps": 5.773041986444594, "ax_mps2": -2.1939630264444525}, {"id": 364, "s_m": 36.35340868508713, "d_m": 0.0, "x_m": -2.1903841096001226, "y_m": -15.067989275312236, "d_right": 1.9552471723528484, "d_left": 1.0967554799704367, "psi_rad": -2.348538029261436, "kappa_radpm": -0.30200335766283987, "vx_mps": 5.734961448714323, "ax_mps2": -2.177860821740312}, {"id": 365, "s_m": 36.453280686969244, "d_m": 0.0, "x_m": -2.261652696526621, "y_m": -15.138193552162223, "d_right": 1.9379388440904912, "d_left": 1.1102143530634185, "psi_rad": -2.378971911600336, "kappa_radpm": -0.3065066998154023, "vx_mps": 5.696908651019764, "ax_mps2": -2.1746588262528603}, {"id": 366, "s_m": 36.55315268885135, "d_m": 0.0, "x_m": -2.3348015563779514, "y_m": -15.205968779494071, "d_right": 1.9125980372212399, "d_left": 1.1325982272816413, "psi_rad": -2.4096813496320615, "kappa_radpm": -0.3090579780161558, "vx_mps": 5.658656476345503, "ax_mps2": -2.223481237696175}, {"id": 367, "s_m": 36.65302469073346, "d_m": 0.0, "x_m": -2.4101945168151837, "y_m": -15.271618153237833, "d_right": 1.8667849514615202, "d_left": 1.16408663951648, "psi_rad": -2.4406917194543594, "kappa_radpm": -0.3113278480009947, "vx_mps": 5.61927629437945, "ax_mps2": -2.285660201370266}, {"id": 368, "s_m": 36.752896692615565, "d_m": 0.0, "x_m": -2.487453649175845, "y_m": -15.334779178911637, "d_right": 1.8225383930480836, "d_left": 1.1956538118413575, "psi_rad": -2.471850986820682, "kappa_radpm": -0.31297174951926154, "vx_mps": 5.578505100177702, "ax_mps2": -2.3748631311020163}, {"id": 369, "s_m": 36.85276869449767, "d_m": 0.0, "x_m": -2.566745511873878, "y_m": -15.395568908698095, "d_right": 1.7798633548219498, "d_left": 1.2276202560771077, "psi_rad": -2.5032113699096286, "kappa_radpm": -0.31485676805208174, "vx_mps": 5.535824643403213, "ax_mps2": -2.4627087861362105}, {"id": 370, "s_m": 36.95264069637978, "d_m": 0.0, "x_m": -2.64788149778527, "y_m": -15.453814427976514, "d_right": 1.735474058341267, "d_left": 1.2694899708135503, "psi_rad": -2.5347560036052403, "kappa_radpm": -0.31649336959665797, "vx_mps": 5.49121509043874, "ax_mps2": -2.5656519055597546}, {"id": 371, "s_m": 37.052512698261886, "d_m": 0.0, "x_m": -2.7308004512555253, "y_m": -15.509454719295077, "d_right": 1.6916255201210937, "d_left": 1.3202928908151912, "psi_rad": -2.5664345682568275, "kappa_radpm": -0.3180734924847721, "vx_mps": 5.444352081339005, "ax_mps2": -2.6788270952048294}, {"id": 372, "s_m": 37.152384700144, "d_m": 0.0, "x_m": -2.815523007278814, "y_m": -15.56248044268949, "d_right": 1.6451713627479647, "d_left": 1.3790709612423904, "psi_rad": -2.598325517662654, "kappa_radpm": -0.3198718866915773, "vx_mps": 5.39498748248706, "ax_mps2": -2.7945354548316756}, {"id": 373, "s_m": 37.2522567020261, "d_m": 0.0, "x_m": -2.901804146612137, "y_m": -15.61271799297202, "d_right": 1.5811985724475022, "d_left": 1.435681995337708, "psi_rad": -2.630357167077449, "kappa_radpm": -0.321981193174378, "vx_mps": 5.343004607501564, "ax_mps2": -2.9121112760706502}, {"id": 374, "s_m": 37.35212870390821, "d_m": 0.0, "x_m": -2.9897501495064587, "y_m": -15.66020416647601, "d_right": 1.5184462103654075, "d_left": 1.4980965425970738, "psi_rad": -2.662699902098703, "kappa_radpm": -0.3252106457895368, "vx_mps": 5.288290978198315, "ax_mps2": -3.005934989840779}, {"id": 375, "s_m": 37.45200070579032, "d_m": 0.0, "x_m": -3.0791230520357815, "y_m": -15.704774174170984, "d_right": 1.453532446382868, "d_left": 1.5655871131322845, "psi_rad": -2.695328275982903, "kappa_radpm": -0.32835643623760247, "vx_mps": 5.231214388664254, "ax_mps2": -3.1139329453681346}, {"id": 376, "s_m": 37.55187270767242, "d_m": 0.0, "x_m": -3.1699090192944666, "y_m": -15.746388729824934, "d_right": 1.3841962456519374, "d_left": 1.631380192811123, "psi_rad": -2.728323891297655, "kappa_radpm": -0.3325660077056292, "vx_mps": 5.1714228744328015, "ax_mps2": -3.199944230752392}, {"id": 377, "s_m": 37.651744709554535, "d_m": 0.0, "x_m": -3.26212001109444, "y_m": -15.78500594109555, "d_right": 1.3161875448567115, "d_left": 1.702061049319124, "psi_rad": -2.761707134502563, "kappa_radpm": -0.33547619481355606, "vx_mps": 5.109250911213317, "ax_mps2": -3.3363623622175647}, {"id": 378, "s_m": 37.75161671143664, "d_m": 0.0, "x_m": -3.355425239953743, "y_m": -15.820453903395855, "d_right": 1.2499648483302521, "d_left": 1.7748163262639076, "psi_rad": -2.7954132087523744, "kappa_radpm": -0.3402105365958104, "vx_mps": 5.043612445211919, "ax_mps2": -3.3550158199033233}, {"id": 379, "s_m": 37.851488713318744, "d_m": 0.0, "x_m": -3.4500964171201782, "y_m": -15.852775318323266, "d_right": 1.1855966241004807, "d_left": 1.8521271947357765, "psi_rad": -2.8299974816051243, "kappa_radpm": -0.3529059368364047, "vx_mps": 4.976734090237975, "ax_mps2": -3.1770851862313747}, {"id": 380, "s_m": 37.951360715200856, "d_m": 0.0, "x_m": -3.5456278261832677, "y_m": -15.881670230196233, "d_right": 1.1237021559736111, "d_left": 1.9276375413137112, "psi_rad": -2.8660296125160114, "kappa_radpm": -0.3694570565133756, "vx_mps": 4.912563331860358, "ax_mps2": -3.175434440194124}, {"id": 381, "s_m": 38.05123271708296, "d_m": 0.0, "x_m": -3.6422489175593973, "y_m": -15.90704893830989, "d_right": 1.0644335477536633, "d_left": 2.0069303181833473, "psi_rad": -2.9035752672164623, "kappa_radpm": -0.37843319952137877, "vx_mps": 4.84757717842262, "ax_mps2": -3.182068765905922}, {"id": 382, "s_m": 38.15110471896507, "d_m": 0.0, "x_m": -3.7397074565430977, "y_m": -15.928749420629284, "d_right": 1.0083624173936356, "d_left": 2.0880640405597037, "psi_rad": -2.9414603009974964, "kappa_radpm": -0.3802080819563382, "vx_mps": 4.781569339161431, "ax_mps2": -3.387728226894695}, {"id": 383, "s_m": 38.25097672084718, "d_m": 0.0, "x_m": -3.837946764266236, "y_m": -15.946738677136693, "d_right": 0.9515885945345404, "d_left": 2.1694246122923775, "psi_rad": -2.979613238782907, "kappa_radpm": -0.3873575026907165, "vx_mps": 4.710278860694312, "ax_mps2": -3.3455393740573838}, {"id": 384, "s_m": 38.35084872272928, "d_m": 0.0, "x_m": -3.936905775153543, "y_m": -15.960918822860105, "d_right": 0.8945903990677949, "d_left": 2.245816845834271, "psi_rad": -3.0192349088363564, "kappa_radpm": -0.4060532749688503, "vx_mps": 4.638801086075871, "ax_mps2": -3.175207479254509}, {"id": 385, "s_m": 38.450720724611394, "d_m": 0.0, "x_m": -4.036145652606463, "y_m": -15.971050133067601, "d_right": 0.8421165572829876, "d_left": 2.3208250579345884, "psi_rad": -3.060832421998313, "kappa_radpm": -0.42642320728986394, "vx_mps": 4.56992854008575, "ax_mps2": -3.170373150688097}, {"id": 386, "s_m": 38.5505927264935, "d_m": 0.0, "x_m": -4.135974668271763, "y_m": -15.976967473758771, "d_right": 0.7880077507455513, "d_left": 2.4004319042714872, "psi_rad": -3.104166275858616, "kappa_radpm": -0.43987560508978674, "vx_mps": 4.500109313666201, "ax_mps2": -3.1556548464331016}, {"id": 387, "s_m": 38.65046472837561, "d_m": 0.0, "x_m": -4.235615727737835, "y_m": -15.978492593833272, "d_right": 0.736115579859519, "d_left": 2.483078204626717, "psi_rad": 3.1345589679734354, "kappa_radpm": -0.45463277124949003, "vx_mps": 4.429521498019934, "ax_mps2": -2.800546200249757}, {"id": 388, "s_m": 38.750336730257715, "d_m": 0.0, "x_m": -4.3356761873635685, "y_m": -15.975459918269209, "d_right": 0.6903332297317699, "d_left": 2.566245858136566, "psi_rad": 3.087496520034257, "kappa_radpm": -0.4864913125081418, "vx_mps": 4.365921253373248, "ax_mps2": -2.2777455094616177}, {"id": 389, "s_m": 38.850208732139826, "d_m": 0.0, "x_m": -4.4349512487936815, "y_m": -15.9676086628114, "d_right": 0.6522426164130566, "d_left": 2.6476575659949524, "psi_rad": 3.0372115432841778, "kappa_radpm": -0.5263906360359499, "vx_mps": 4.3135023337237675, "ax_mps2": -1.1810293510612404}, {"id": 390, "s_m": 38.95008073402193, "d_m": 0.0, "x_m": -4.534224419530032, "y_m": -15.954443639914148, "d_right": 0.6224955504213644, "d_left": 2.73264475449484, "psi_rad": 2.9811748364480186, "kappa_radpm": -0.592800822032224, "vx_mps": 4.286070327455718, "ax_mps2": -0.07096209623142263}, {"id": 391, "s_m": 39.049952735904036, "d_m": 0.0, "x_m": -4.631941772837119, "y_m": -15.93554728757386, "d_right": 0.6021565335358352, "d_left": 2.820922772180381, "psi_rad": 2.9188881143291012, "kappa_radpm": -0.6537291988061196, "vx_mps": 4.284416482869004, "ax_mps2": -0.07096209623139979}, {"id": 392, "s_m": 39.14982473778615, "d_m": 0.0, "x_m": -4.728884940447129, "y_m": -15.910348385592139, "d_right": 0.5915978218470802, "d_left": 2.8495760451681, "psi_rad": 2.8568053535390256, "kappa_radpm": -0.5865525551976931, "vx_mps": 4.282761999628609, "ax_mps2": 1.1705162013665138}, {"id": 393, "s_m": 39.24969673966825, "d_m": 0.0, "x_m": -4.8235840788784925, "y_m": -15.879706021380244, "d_right": 0.591983147241935, "d_left": 2.750668385719891, "psi_rad": 2.8015069871141063, "kappa_radpm": -0.5256985060298696, "vx_mps": 4.3099714544292125, "ax_mps2": 2.162890190018891}, {"id": 394, "s_m": 39.349568741550364, "d_m": 0.0, "x_m": -4.917092582653446, "y_m": -15.843743363416841, "d_right": 0.6037338294544091, "d_left": 2.6506697564935626, "psi_rad": 2.7466527078046985, "kappa_radpm": -0.5686518097484576, "vx_mps": 4.359802551062536, "ax_mps2": -5.127959542564234}, {"id": 395, "s_m": 39.449440743432476, "d_m": 0.0, "x_m": -5.007813764016707, "y_m": -15.802804831264263, "d_right": 0.6176469017638407, "d_left": 2.551140943178707, "psi_rad": 2.688103685755485, "kappa_radpm": -0.6067030433086396, "vx_mps": 4.240707383689502, "ax_mps2": -0.5571590633745265}]}, "global_traj_markers_sp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.963749381400073, "y": -15.687129411550108, "z": 0.1463813246218944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2927626492437888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -5.048413593207732, "y": -15.634401993021578, "z": 0.14632478803506715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2926495760701343}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.124939505001345, "y": -15.57048253748508, "z": 0.14724846974220562}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29449693948441125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.192470455819973, "y": -15.497039017290792, "z": 0.14901506881595775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2980301376319155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.250392292494116, "y": -15.415851852785758, "z": 0.15135257486684392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30270514973368784}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.2993508951365405, "y": -15.328570029960062, "z": 0.1554482183573887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3108964367147774}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.340085517536957, "y": -15.237630865783045, "z": 0.16169704386679243}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32339408773358486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.373020629727138, "y": -15.14312010249014, "z": 0.16697379502696771}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33394759005393543}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.397768952804983, "y": -15.046625648284905, "z": 0.1712975338261948}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3425950676523896}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.415085615905583, "y": -14.9480692415079, "z": 0.17618617195599273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35237234391198546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.425385307500723, "y": -14.848757722519105, "z": 0.1813539840211658}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3627079680423316}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.429192950579243, "y": -14.748770445184974, "z": 0.18656691876509401}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37313383753018803}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.427350838174658, "y": -14.648872322398436, "z": 0.192584594202342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.385169188404684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -5.421039892454192, "y": -14.548824144469963, "z": 0.2000432343458951}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4000864686917902}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -5.411359215903854, "y": -14.449735381950866, "z": 0.208516683134684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.417033366269368}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -5.399096385450286, "y": -14.349917322731992, "z": 0.21698831843966376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4339766368793275}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -5.3856853922559145, "y": -14.251424663333786, "z": 0.22503592945592563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45007185891185125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -5.371754453278362, "y": -14.152067803415841, "z": 0.2327083985910183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4654167971820366}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -5.357358056656578, "y": -14.05320966201523, "z": 0.2400458963472398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4800917926944796}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -5.342384167062642, "y": -13.95495580825339, "z": 0.2470819117138917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4941638234277834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -5.32661435033773, "y": -13.855639134121432, "z": 0.2538447118332379}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5076894236664758}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -5.310411201752294, "y": -13.757707307895226, "z": 0.2603584155745167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5207168311490334}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -5.293550281451659, "y": -13.65951814823194, "z": 0.2666437989539216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5332875979078432}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -5.27634200994781, "y": -13.56180945192002, "z": 0.2727189099876804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5454378199753608}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -5.258688439980855, "y": -13.463668965278686, "z": 0.27859954535237297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5571990907047459}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -5.240530942508023, "y": -13.3650087904688, "z": 0.28429962502001}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.56859925004002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -5.222118406856688, "y": -13.267669333521093, "z": 0.2898314903538314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5796629807076628}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -5.202859047028667, "y": -13.168956440043468, "z": 0.2952061439518791}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5904122879037582}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -5.183232507436544, "y": -13.071585215601296, "z": 0.30043344457557736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6008668891511547}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -5.16283821204442, "y": -12.97360270081989, "z": 0.30552226703516255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6110445340703251}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -5.141859517006577, "y": -12.875832113333939, "z": 0.3104806344376051}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6209612688752102}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -5.120373166321499, "y": -12.778417108794617, "z": 0.3153158284211844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6306316568423688}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -5.098274986429591, "y": -12.680652861748706, "z": 0.3200344816963057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6400689633926114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -5.0758477749185404, "y": -12.583535119475036, "z": 0.324642656244768}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.649285312489536}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -5.052904471129938, "y": -12.485990532464724, "z": 0.3291459098039934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6582918196079868}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -5.029729636967403, "y": -12.3889795022698, "z": 0.3335493527124897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6670987054249794}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -5.006185302103794, "y": -12.291709389278738, "z": 0.33785769677144695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6757153935428939}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -4.982441955206108, "y": -12.19470117539096, "z": 0.3420752974516946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6841505949033893}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -4.958484277755049, "y": -12.097671406260917, "z": 0.3462061905213601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6924123810427202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -4.934381282752698, "y": -12.000656835651244, "z": 0.3502541239700428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7005082479400856}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -4.910249135674847, "y": -11.903805852343899, "z": 0.35422258594733197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7084451718946639}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -4.886087175445373, "y": -11.806715740863128, "z": 0.3581148293075043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7162296586150086}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -4.862169178332712, "y": -11.709946461727863, "z": 0.3619338932510978}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7238677865021956}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -4.838447094184725, "y": -11.612525233177278, "z": 0.3656826224723481}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7313652449446962}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -4.815335450640083, "y": -11.515443582754562, "z": 0.3693636841550754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7387273683101508}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -4.792791608445757, "y": -11.41799263267231, "z": 0.37297958310534807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7459591662106961}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -4.770919909302567, "y": -11.320239105990913, "z": 0.3765326752646647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7530653505293294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -4.749700531767384, "y": -11.222751047056962, "z": 0.38002517981058836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7600503596211767}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -4.728788816411378, "y": -11.124948014320102, "z": 0.3834591900212222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7669183800424444}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -4.708132700252305, "y": -11.02729657378635, "z": 0.38683668305446245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7736733661089249}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -4.687572498088091, "y": -10.929584886090844, "z": 0.39015952877165294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7803190575433059}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -4.667019415687867, "y": -10.831790284999984, "z": 0.3934294977173576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7868589954347152}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -4.646458011068323, "y": -10.734090682930898, "z": 0.3966482683518501}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7932965367037002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -4.625801161321568, "y": -10.63622883704576, "z": 0.39981743362011896}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7996348672402379}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -4.605143620978005, "y": -10.538668124706547, "z": 0.40293850693029953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8058770138605991}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -4.584333005624029, "y": -10.440704939333829, "z": 0.40601292760516294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8120258552103259}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -4.563568548740071, "y": -10.343319961918109, "z": 0.4090420658623418}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8180841317246836}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -4.54256292569104, "y": -10.245215493044373, "z": 0.4120272273721534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8240544547443068}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -4.521662159797748, "y": -10.148052268809257, "z": 0.40594844388107554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8118968877621511}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -4.500420110760888, "y": -10.049804083225808, "z": 0.39848189508094994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7969637901618999}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -4.479324725751371, "y": -9.952765122725781, "z": 0.39089442109206346}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7817888421841269}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -4.457837852517258, "y": -9.854494401641023, "z": 0.3831567422681121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7663134845362242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -4.436537543287055, "y": -9.757643704557536, "z": 0.37524912129212057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7504982425842411}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -4.414787257891767, "y": -9.659311608458857, "z": 0.36716104126797217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7343220825359443}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -4.393267656227192, "y": -9.562517013745518, "z": 0.3588194829681582}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7176389659363164}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -4.371334395280905, "y": -9.464302547528339, "z": 0.35021264723889345}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7004252944777869}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -4.3495750611468615, "y": -9.367303462432071, "z": 0.3414012795875516}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6828025591751032}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -4.327526455455173, "y": -9.269488455902168, "z": 0.3324085495201945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.664817099040389}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -4.305498926449114, "y": -9.172324716687994, "z": 0.3233659614579408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6467319229158816}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -4.283277905486047, "y": -9.075167484255289, "z": 0.3144326684010547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6288653368021094}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -4.260761447391065, "y": -8.978096938693321, "z": 0.3054074449630177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6108148899260354}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -4.237836067301838, "y": -8.880959477382044, "z": 0.29611362217783915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5922272443556783}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -4.214608577086083, "y": -8.784128830511202, "z": 0.28652478395702424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5730495679140485}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -4.191152962339799, "y": -8.687001202698655, "z": 0.27629054585778007}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5525810917155601}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -4.167313621162804, "y": -8.590028934791631, "z": 0.2683845528167609}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5367691056335218}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -4.14226304481066, "y": -8.493608753009477, "z": 0.26024474282886795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5204894856577359}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -4.115727518776038, "y": -8.396926777883243, "z": 0.2516485657843513}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5032971315687026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -4.088413928331302, "y": -8.301281195046723, "z": 0.24431913877481123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48863827754962247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -4.058663853509903, "y": -8.205239423786942, "z": 0.24079407272728306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48158814545456613}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -4.025662228300867, "y": -8.111395098604845, "z": 0.23861660614525634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4772332122905127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -3.988101190043172, "y": -8.018489326935926, "z": 0.2377133320222459}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4754266640444918}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -3.9461195195143923, "y": -7.928160202046404, "z": 0.23685768288534237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47371536577068474}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -3.899418704522062, "y": -7.839619905002928, "z": 0.23552482518497028}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47104965036994056}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -3.8485231752316422, "y": -7.753891799215845, "z": 0.23479507287463347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46959014574926694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -3.792895484717453, "y": -7.670746704648575, "z": 0.23470445840593326}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46940891681186653}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -3.7328612345402017, "y": -7.5911114148910634, "z": 0.2346138089393727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4692276178787454}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -3.6683271927461782, "y": -7.514755006801216, "z": 0.2347490641514271}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4694981283028542}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -3.600039797772627, "y": -7.442104591392116, "z": 0.23547688888782264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4709537777756453}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -3.5282226050383403, "y": -7.372461896028065, "z": 0.23773688748351102}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47547377496702203}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -3.453685814259656, "y": -7.306222823428256, "z": 0.24056393517675836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48112787035351673}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -3.375857869019193, "y": -7.243371474360202, "z": 0.24207408014415607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48414816028831215}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -3.2955513689754143, "y": -7.18437193573961, "z": 0.24353825860580444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4870765172116089}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -3.212852820603602, "y": -7.127851084118455, "z": 0.24793097809430834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49586195618861667}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -3.129313553132301, "y": -7.073557679356307, "z": 0.2546617990294774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5093235980589548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -3.0444191321548186, "y": -7.020253565965694, "z": 0.2611462550431721}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5222925100863443}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -2.959467788738302, "y": -6.968109878385925, "z": 0.26740475535742525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5348095107148505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -2.8736516536798273, "y": -6.916463207319966, "z": 0.27345504665102777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5469100933020555}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -2.7877511763835274, "y": -6.865633166982883, "z": 0.27931267542758953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5586253508551791}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -2.7015508074401082, "y": -6.815029531593382, "z": 0.28499135199645353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5699827039929071}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -2.6153149020407405, "y": -6.764338704285954, "z": 0.29050324050627363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5810064810125473}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -2.5293007576170865, "y": -6.713648540140023, "z": 0.2934323910797952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5868647821595904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -2.443050011070517, "y": -6.662784080599292, "z": 0.28266714040726193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5653342808145239}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -2.3570435110932952, "y": -6.6121380607446945, "z": 0.27175150208464766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5435030041692953}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -2.270715009788387, "y": -6.561474983782559, "z": 0.2603795048302848}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5207590096605696}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -2.184630812050451, "y": -6.510884863405056, "z": 0.2492923489166406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4985846978332812}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -2.09867173140278, "y": -6.459765926665476, "z": 0.23885383761297316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4777076752259463}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -2.0133481022300845, "y": -6.407805218332483, "z": 0.2291331279054945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.458266255810989}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -1.9288540615789123, "y": -6.354417799036054, "z": 0.21982644265963394}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4396528853192679}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -1.845591656812037, "y": -6.2992421799874325, "z": 0.2106007235074989}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4212014470149978}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -1.7637366344562608, "y": -6.2418721108560575, "z": 0.20160270535966623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40320541071933247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -1.6839095534852317, "y": -6.1820729388808715, "z": 0.19297057799889925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3859411559977985}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -1.6062061140053443, "y": -6.119039939065919, "z": 0.18489443775456713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36978887550913425}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -1.5319848775855085, "y": -6.052805176423077, "z": 0.17750791272773384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35501582545546767}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -1.4611785666578923, "y": -5.982003507744507, "z": 0.17040809429820084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34081618859640167}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -1.3956758006235623, "y": -5.907354902373201, "z": 0.1633361691168843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3266723382337686}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -1.3355291285917674, "y": -5.827333194220016, "z": 0.1592210050697048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3184420101394096}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -1.2837235650809518, "y": -5.742343435755977, "z": 0.15782919259942027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31565838519884054}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -1.2419811129590135, "y": -5.651740829294801, "z": 0.15776828157493547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31553656314987094}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -1.2118602802110854, "y": -5.556866751990268, "z": 0.1577073470248972}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3154146940497944}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -1.1928700817165845, "y": -5.458672390866724, "z": 0.1589905949049378}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3179811898098756}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -1.1834141797536046, "y": -5.35963068347165, "z": 0.1634044597601775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.326808919520355}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -1.1821992346475179, "y": -5.259237775091816, "z": 0.1687928745319295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.337585749063859}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -1.1883056340750302, "y": -5.160228792818009, "z": 0.17464024857144264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3492804971428853}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -1.2008911392384383, "y": -5.0605405758855015, "z": 0.18115318330462538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36230636660925075}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -1.2187294071371255, "y": -4.962866459086832, "z": 0.18822964377205928}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37645928754411856}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -1.2414092734394497, "y": -4.8650699312931405, "z": 0.19570283555043685}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3914056711008737}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -1.2678312962786842, "y": -4.769194698578167, "z": 0.20345598117160182}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40691196234320365}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -1.2980515048844365, "y": -4.673512251128893, "z": 0.21105084012384556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4221016802476911}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -1.331033591158159, "y": -4.5795668647320085, "z": 0.21880050505410367}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43760101010820734}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -1.3663472637733447, "y": -4.485704882794594, "z": 0.2267613909357887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4535227818715774}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -1.4026060175149562, "y": -4.392893453185741, "z": 0.23435667539781202}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46871335079562404}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -1.4393365443459467, "y": -4.2996795115166835, "z": 0.2416249020563515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.483249804112703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -1.4755197011023504, "y": -4.206821365813029, "z": 0.24859829671392383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49719659342784767}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -1.5116561850018169, "y": -4.113400152832023, "z": 0.25530412874275005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5106082574855001}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -1.547600534694576, "y": -4.020396288869338, "z": 0.2617657170036896}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5235314340073792}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -1.5836356100610525, "y": -3.9270676973813865, "z": 0.268003187562141}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.536006375124282}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -1.6195471440107891, "y": -3.83386001332117, "z": 0.2740340541878219}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5480681083756438}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -1.655454926088191, "y": -3.7406170156817318, "z": 0.27987366981005307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5597473396201061}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -1.6914785913188932, "y": -3.6472814024602793, "z": 0.2855355823495807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5710711646991614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -1.7276109263820747, "y": -3.554209010828528, "z": 0.29103181857591126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5820636371518225}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -1.7641476666206253, "y": -3.4610334850019813, "z": 0.2963731130227807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5927462260455614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -1.8010781829100206, "y": -3.3682997114605113, "z": 0.301569094426225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.60313818885245}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -1.8387420214977466, "y": -3.275716509941897, "z": 0.3066284389394996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6132568778789992}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -1.8770231577608893, "y": -3.1835083658885805, "z": 0.3115589970866859}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6231179941733718}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -1.9157976255372366, "y": -3.0914013112720804, "z": 0.3163678997557046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6327357995114092}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -1.9547997804152768, "y": -2.9994275226294933, "z": 0.32106164731154385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6421232946230877}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -1.993858482433669, "y": -2.9073789247901476, "z": 0.3192437270458131}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6384874540916262}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -2.032710585690103, "y": -2.815334571776412, "z": 0.31035160601569756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6207032120313951}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -2.071228118864227, "y": -2.7231264023858217, "z": 0.30159320687605}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6031864137521}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -2.1092302372795615, "y": -2.6307987652362548, "z": 0.2928185501202268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5856371002404536}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -2.1466424640808857, "y": -2.538241952118942, "z": 0.2838051193058626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5676102386117252}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -2.1833916492259444, "y": -2.4455047397321485, "z": 0.274497908852032}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.548995817704064}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -2.219387572006154, "y": -2.3528259973090613, "z": 0.26487759487644125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5297551897528825}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -2.2548305871514467, "y": -2.259403316616075, "z": 0.2551111765446055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.510222353089211}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -2.289201353263022, "y": -2.1663939942257144, "z": 0.24498304086034273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48996608172068545}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -2.3236527619918492, "y": -2.0720177775077486, "z": 0.2328156532865171}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4656313065730342}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -2.3578921707845386, "y": -1.9785466198076516, "z": 0.2202703630079379}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4405407260158758}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -2.3918329503377493, "y": -1.8841054879486328, "z": 0.2093538338642729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4187076677285458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -2.4240058671914095, "y": -1.7893100491104172, "z": 0.19920230013156956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3984046002631391}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -2.453573386037882, "y": -1.6938388527734083, "z": 0.18958643988961885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3791728797792377}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -2.4798797422732717, "y": -1.5969168411080135, "z": 0.1802618052638275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.360523610527655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -2.5017729120399492, "y": -1.4996875843592445, "z": 0.1712136330978517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3424272661957034}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -2.5186622075391276, "y": -1.400581660234047, "z": 0.1620176582734856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3240353165469712}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -2.529343856171878, "y": -1.3017852759919966, "z": 0.15245933074874846}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3049186614974969}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -2.532989294695509, "y": -1.2011483429944203, "z": 0.14463145212303286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2892629042460657}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -2.5272497823388425, "y": -1.102548286133968, "z": 0.1404071090835484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2808142181670968}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -2.5090022824652887, "y": -1.0038415889395957, "z": 0.13643776227008275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2728755245401655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -2.4777602520963873, "y": -0.9098253928452652, "z": 0.1324426061595183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2648852123190366}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -2.4326158731598633, "y": -0.8206168572560644, "z": 0.1317501673459585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.263500334691917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -2.373124440885596, "y": -0.7411065393050873, "z": 0.1316993210003813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2633986420007626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -2.3001450313126, "y": -0.6730377069280848, "z": 0.13164845501651307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26329691003302613}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -2.217805619371843, "y": -0.617096993900196, "z": 0.13514255303620773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27028510607241546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -2.128015290375852, "y": -0.5727463766626149, "z": 0.13947627621091205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2789525524218241}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -2.0342114301956093, "y": -0.5403477898591559, "z": 0.14412805017202507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28825610034405014}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -1.9364593804136763, "y": -0.5188528229090955, "z": 0.14889844487705428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29779688975410856}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -1.8374755229964028, "y": -0.5081187730431079, "z": 0.15362208108177844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3072441621635569}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -1.737499198345143, "y": -0.5076153756799756, "z": 0.1579566988148857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3159133976297714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -1.6379435358067729, "y": -0.5162224670012396, "z": 0.1631324197277906}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3262648394555812}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -1.5392401022852633, "y": -0.5321259631598599, "z": 0.17018911524746813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34037823049493626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -1.441802430105932, "y": -0.5545076261575663, "z": 0.17713441782923858}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35426883565847717}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -1.3460125408599999, "y": -0.5832046436437947, "z": 0.18291062757375853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36582125514751707}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -1.2519897542589715, "y": -0.6172406732701887, "z": 0.18952004624456367}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37904009248912734}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -1.159276408779687, "y": -0.6554375170537502, "z": 0.19766532292260797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39533064584521593}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -1.0686333576987257, "y": -0.696891498245546, "z": 0.20569960779286126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4113992155857225}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -0.9788860041599964, "y": -0.742022259435503, "z": 0.21306199917920216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4261239983584043}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -0.8918515457759948, "y": -0.7897856777359136, "z": 0.21986663496616207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43973326993232414}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -0.805056145051499, "y": -0.8414596896217884, "z": 0.22608594228803827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45217188457607654}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -0.7216378810256323, "y": -0.8947901722619274, "z": 0.23253316901969331}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46506633803938663}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -0.6382715041369051, "y": -0.9514189453791705, "z": 0.23927419256774637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47854838513549275}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -0.5572492060459113, "y": -1.00927469272199, "z": 0.24634109581627445}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4926821916325489}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -0.4776217552545291, "y": -1.0685435992787264, "z": 0.2531319681316483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5062639362632966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -0.39823556341304, "y": -1.129878255091013, "z": 0.25967133060796976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5193426612159395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -0.3204526594564286, "y": -1.19194791295937, "z": 0.2659802853745587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5319605707491174}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -0.24343217677693105, "y": -1.2550582477853283, "z": 0.2720771480195103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5441542960390205}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -0.1667912858350254, "y": -1.3192334358041258, "z": 0.2779779371042412}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5559558742084824}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -0.09109422427782664, "y": -1.384083457102148, "z": 0.28369675836319425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5673935167263885}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -0.01578218762606003, "y": -1.4496790641435358, "z": 0.28924611002545186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5784922200509037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": 0.059254834312382904, "y": -1.5153730954014677, "z": 0.29463712819249127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5892742563849825}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": 0.13402552972728038, "y": -1.5812072356116516, "z": 0.2998797860582817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5997595721165634}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": 0.20873288716109503, "y": -1.6478073136518465, "z": 0.3049830571604221}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6099661143208442}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": 0.28253035878251087, "y": -1.7149837872135458, "z": 0.30995505029511206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6199101005902241}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": 0.3552496525056911, "y": -1.7830140416189264, "z": 0.3148031218852913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6296062437705826}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": 0.42761535920367183, "y": -1.8525188777810047, "z": 0.31777672783071764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6355534556614353}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": 0.49849443333953725, "y": -1.9224093335557484, "z": 0.3137519789793939}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6275039579587878}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": 0.5682672524145963, "y": -1.9938659868016395, "z": 0.31057220413706077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6211444082741215}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": 0.6367070690520905, "y": -2.067172058081236, "z": 0.3073670480821305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.614734096164261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": 0.7028795165112827, "y": -2.141400202097156, "z": 0.30428686444312425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6085737288862485}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": 0.7678586188859907, "y": -2.21789811661965, "z": 0.30126471669071037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6025294333814207}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": 0.8303990971664791, "y": -2.2952891644096316, "z": 0.2982334037036162}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5964668074072323}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": 0.8914383295340018, "y": -2.3746050220998876, "z": 0.2947521642411511}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5895043284823022}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": 0.9505269574761042, "y": -2.455050578965284, "z": 0.29067057175701305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5813411435140261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": 1.0080177647714665, "y": -2.5367535318612107, "z": 0.28566195630016894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5713239126003379}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": 1.0638762936268402, "y": -2.6197112749148284, "z": 0.280876332445954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.561752664891908}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": 1.117728969229917, "y": -2.7038307922033664, "z": 0.2779650133717038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5559300267434076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": 1.1690958507869953, "y": -2.789695396147911, "z": 0.2778577383267229}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5557154766534458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": 1.216935888307969, "y": -2.877270824219495, "z": 0.27775042184909776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5555008436981955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": 1.2615982592376724, "y": -2.9667769356166223, "z": 0.2785580927019495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.557116185403899}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": 1.3033995297683927, "y": -3.0573613196694134, "z": 0.27968078889169595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5593615777833919}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": 1.342737957458891, "y": -3.149343063048443, "z": 0.2762959649599891}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5525919299199782}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": 1.3794493269648076, "y": -3.242114613224937, "z": 0.2725928914152854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5451857828305708}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": 1.413980619259898, "y": -3.3359871419366716, "z": 0.26768051627760187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5353610325552037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": 1.4464130248181526, "y": -3.4303863014102722, "z": 0.2617292438304259}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5234584876608518}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": 1.4767169603298276, "y": -3.5256537021333307, "z": 0.25606411872793544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5121282374558709}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": 1.5044245255567383, "y": -3.62168013853647, "z": 0.2530547177323852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5061094354647704}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": 1.5285146037237316, "y": -3.7185590635512993, "z": 0.25295705631846094}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5059141126369219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": 1.5481660472520948, "y": -3.8165966527667106, "z": 0.2528593571849475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.505718714369895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": 1.5636233793378262, "y": -3.9151816045412167, "z": 0.2544070049598132}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5088140099196264}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": 1.5756454682832146, "y": -4.014472386970355, "z": 0.2575031523871507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5150063047743014}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": 1.5851577398971675, "y": -4.113805823947132, "z": 0.2630236599089789}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5260473198179578}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": 1.592713415863686, "y": -4.213577342020667, "z": 0.2623897100233438}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5247794200466877}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": 1.597224835701597, "y": -4.313208969930013, "z": 0.26092505803215676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5218501160643135}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": 1.5978435017168775, "y": -4.413199404939643, "z": 0.25954497156731}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.51908994313462}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": 1.5947720483476457, "y": -4.512929344144669, "z": 0.25702172609537416}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5140434521907483}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": 1.5879997473397034, "y": -4.612623778285781, "z": 0.2559848779323183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5119697558646366}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": 1.576878343346568, "y": -4.711797647799342, "z": 0.25588608568159027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5117721713631805}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": 1.561072695461353, "y": -4.810423816676197, "z": 0.2557872552745122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5115745105490244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": 1.5408642518626219, "y": -4.908268814904084, "z": 0.25638660173931577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5127732034786315}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": 1.5171045433933315, "y": -5.005298971735806, "z": 0.25903240950815665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5180648190163133}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": 1.4910816791537083, "y": -5.1017793346793585, "z": 0.26506263979085165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5301252795817033}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": 1.4630735794745353, "y": -5.197593478242518, "z": 0.2711731087473366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5423462174946732}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": 1.4324971329298257, "y": -5.292648500060836, "z": 0.27518127793017144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5503625558603429}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": 1.3990992225861574, "y": -5.38676587484778, "z": 0.2781988745659488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5563977491318975}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": 1.3628913407647172, "y": -5.479919655764864, "z": 0.2806907238410734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5613814476821468}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": 1.3246979236711047, "y": -5.572155136600263, "z": 0.2855221146242022}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5710442292484044}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": 1.2852258611751328, "y": -5.66401992529865, "z": 0.291018737500937}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.582037475001874}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": 1.2445465593147016, "y": -5.755156461544786, "z": 0.2963603940770796}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5927207881541592}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": 1.2024502829699533, "y": -5.845816381330475, "z": 0.30155671556248514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6031134311249703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": 1.159572830249663, "y": -5.935997043990209, "z": 0.3066163802483156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6132327604966312}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": 1.1162553674818338, "y": -6.0260377901668525, "z": 0.31154724051710797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6230944810342159}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": 1.0725580961270218, "y": -6.115806173117212, "z": 0.31635642888106674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6327128577621335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": 1.0283890209462394, "y": -6.20539285837927, "z": 0.3210504471319144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6421008942638288}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": 0.9837539439499707, "y": -6.294745390037725, "z": 0.3256352417780033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6512704835560066}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": 0.9388248587483313, "y": -6.38395113568672, "z": 0.33011626826187984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6602325365237597}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": 0.8939031983208146, "y": -6.473155669798865, "z": 0.3344985459328402}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6689970918656803}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": 0.8490381550447197, "y": -6.562399929518438, "z": 0.33878670535100636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6775734107020127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": 0.8041895156486664, "y": -6.651604444629732, "z": 0.3429850291912475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.685970058382495}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": 0.7593053738096942, "y": -6.74088320302437, "z": 0.34709748777455934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6941949755491187}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": 0.7144915647894856, "y": -6.830078903360478, "z": 0.3511277700650306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7022555401300612}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": 0.6696548301291488, "y": -6.919378631246267, "z": 0.355079310820247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.710158621640494}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": 0.6248796223306831, "y": -7.008609275172327, "z": 0.3589553144629634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7179106289259268}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": 0.5800953849509026, "y": -7.097915733944774, "z": 0.3627587761453898}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7255175522907796}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": 0.53535285061014, "y": -7.187199121208827, "z": 0.36649250039938885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7329850007987777}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": 0.490629005181074, "y": -7.276503058440613, "z": 0.37015911770237697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7403182354047539}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": 0.44591264891131, "y": -7.365847037234762, "z": 0.3737610992367602}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7475221984735204}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": 0.40124734196035833, "y": -7.455140763737417, "z": 0.3773007700780036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7546015401560072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": 0.35655047818549956, "y": -7.544545393123829, "z": 0.38078032101110065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7615606420222013}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": 0.3119382008803894, "y": -7.633824024183757, "z": 0.38420181914587564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7684036382917513}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": 0.2672546283992987, "y": -7.723283849734602, "z": 0.38756721747707285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7751344349541457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": 0.22268695714683945, "y": -7.812545249093219, "z": 0.39087836351467714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7817567270293543}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": 0.17801161892602355, "y": -7.902051327036325, "z": 0.39413700709266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.78827401418532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": 0.13347923100769515, "y": -7.991295359358312, "z": 0.39734480744977047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7946896148995409}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": 0.08881288938664827, "y": -8.080827462985702, "z": 0.4005033396636396}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8010066793272792}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": 0.044300233035622714, "y": -8.170065599589378, "z": 0.4036141005089557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8072282010179114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -0.0003485084678064057, "y": -8.259582643026862, "z": 0.4066785138014965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.813357027602993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -0.04487231819110726, "y": -8.348845753870597, "z": 0.4096979352821206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8193958705642412}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": -0.0895183079421668, "y": -8.438337673169066, "z": 0.41267365708821674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8253473141764335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": -0.13406145147012183, "y": -8.527594713786234, "z": 0.41560691185442156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8312138237088431}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": -0.17873200901819966, "y": -8.61706703956933, "z": 0.4184988764794975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.836997752958995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": -0.22330580488299775, "y": -8.706300661925226, "z": 0.4213506755920015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.842701351184003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": -0.26801675858705565, "y": -8.795773296086907, "z": 0.424163384743672}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.848326769487344}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": -0.31261878365243406, "y": -8.885002327131, "z": 0.4269380333562322}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8538760667124644}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": -0.35734965028367666, "y": -8.974469436593127, "z": 0.4296756074444927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8593512148889854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": -0.40196788983096404, "y": -9.063696358897012, "z": 0.43237705213616556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8647541042723311}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": -0.44670822947035754, "y": -9.15315567357913, "z": 0.435043274006638}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.870086548013276}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": -0.49133386369324616, "y": -9.242376079919094, "z": 0.4376751432450487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8753502864900974}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": -0.5360852000187399, "y": -9.33183869430554, "z": 0.44027349566633023}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8805469913326605}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": -0.5807145611102429, "y": -9.421048827146263, "z": 0.44283913458239865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8856782691647973}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": -0.6254775340496181, "y": -9.510518443678226, "z": 0.44537283254435855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8907456650887171}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": -0.6701066156399623, "y": -9.599714124333877, "z": 0.4478753329664275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.895750665932855}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": -0.7148819400567155, "y": -9.689197280179277, "z": 0.4503473516412497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9006947032824995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": -0.7595055802246518, "y": -9.778374162993847, "z": 0.4527895781553482}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9055791563106964}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": -0.8042806909499072, "y": -9.867852596042225, "z": 0.45520267721264357}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9104053544252871}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": -0.8489066783294382, "y": -9.957034048560756, "z": 0.457587289873234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.915174579746468}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": -0.893666379997034, "y": -10.046486572341191, "z": 0.4599440347139763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9198880694279526}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": -0.938299101794683, "y": -10.135692022234515, "z": 0.4622735089168173}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9245470178336346}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": -0.9830390727073884, "y": -10.225120752534187, "z": 0.46457628929029793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9291525785805959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": -1.0276829444220241, "y": -10.314369936933183, "z": 0.46685293322918126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9337058664583625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": -1.0723896309742333, "y": -10.403774843806067, "z": 0.46910397961672107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9382079592334421}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": -1.1170045798368724, "y": -10.493052452940935, "z": 0.47132994967370995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9426598993474199}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": -1.1616228824900903, "y": -10.582442754031895, "z": 0.47353134775809314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9470626955161863}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": -1.206172018874858, "y": -10.671866132346318, "z": 0.475708662118622}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.951417324237244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": -1.2506132281928113, "y": -10.761323665031687, "z": 0.47786236560573436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9557247312114687}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": -1.2949971257330573, "y": -10.851009483527694, "z": 0.47999291634259394}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9599858326851879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": -1.3391909758466656, "y": -10.940673961327434, "z": 0.48210075835898336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9642015167179667}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": -1.3832403732934468, "y": -11.03032041329507, "z": 0.48418632219053365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9683726443810673}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": -1.4273040426549346, "y": -11.120176323305909, "z": 0.48625002544558055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9725000508911611}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": -1.4711387971456136, "y": -11.209646898067257, "z": 0.48829227334175895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9765845466835179}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": -1.515201421983593, "y": -11.299574504767918, "z": 0.49031345921428765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9806269184285753}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": -1.5590652662816715, "y": -11.389036512020889, "z": 0.49231396499774893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9846279299954979}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": -1.603192027197405, "y": -11.478932733618226, "z": 0.49429416168303314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9885883233660663}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": -1.6471678769939753, "y": -11.568393277612161, "z": 0.4962544097509952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9925088195019904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": -1.6913896219001348, "y": -11.658204042885218, "z": 0.49819505958425786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9963901191685157}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -1.735500230057038, "y": -11.747627976405148, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -1.779839656625183, "y": -11.837345688546957, "z": 0.49392372644402105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9878474528880421}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -1.8240989878551281, "y": -11.926720755741224, "z": 0.4877947841137775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.975589568227555}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -1.8685802257694815, "y": -12.016350219844638, "z": 0.4816067188305181}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9632134376610362}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -1.9130004172025783, "y": -12.105652229428228, "z": 0.47535550664235865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9507110132847173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -1.957648780632732, "y": -12.195196958910357, "z": 0.46903596914500717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9380719382900143}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -2.0022394362468154, "y": -12.284400387710859, "z": 0.462644290825849}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.925288581651698}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -2.0470796800065116, "y": -12.37386666893661, "z": 0.4561721432849931}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9123442865699862}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -2.0918452076877476, "y": -12.462940004304972, "z": 0.4496138957023823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8992277914047646}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -2.136906241929764, "y": -12.55234918387518, "z": 0.4429585645522876}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8859171291045752}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -2.181841959430838, "y": -12.641255464408763, "z": 0.43619879115479687}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8723975823095937}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -2.2271333524591705, "y": -12.730611406631999, "z": 0.42932708481416143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8586541696283229}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -2.272214748401574, "y": -12.819326084055398, "z": 0.42227694434953067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8445538886990613}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": -2.317722532739473, "y": -12.908689388996837, "z": 0.4150274498369567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8300548996739134}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": -2.3629591630575337, "y": -12.997378553688389, "z": 0.40754771096294473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8150954219258895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": -2.408624021209322, "y": -13.086790359665363, "z": 0.3999731786078952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7999463572157904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": -2.454052778484282, "y": -13.175568197893487, "z": 0.39238356966773563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7847671393354713}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": -2.499769205565846, "y": -13.264659671251248, "z": 0.38477563598081854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7695512719616371}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": -2.5455559711256366, "y": -13.353560987241188, "z": 0.3770503136007345}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.754100627201469}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": -2.59120785497312, "y": -13.441847158658355, "z": 0.36916352383248663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7383270476649733}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": -2.637518051815847, "y": -13.531077987604972, "z": 0.3610389461174358}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7220778922348716}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": -2.683435017964752, "y": -13.619290525451575, "z": 0.35259347361473825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7051869472294765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": -2.729646511818364, "y": -13.707915203284005, "z": 0.34375685668653333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6875137133730667}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": -2.7759776853962292, "y": -13.796786135097479, "z": 0.3347760822774788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6695521645549576}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": -2.8218770691600565, "y": -13.885057550368431, "z": 0.3259102302525295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.651820460505059}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": -2.867633052221655, "y": -13.973527324331005, "z": 0.3171567343122269}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6343134686244538}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": -2.9133646935235133, "y": -14.062683360479868, "z": 0.30832114514123554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6166422902824711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": -2.9585148136697517, "y": -14.151604022387257, "z": 0.2992255626857529}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5984511253715058}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": -3.0032377727463544, "y": -14.240557760195166, "z": 0.289740116937172}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.579480233874344}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": -3.047881647104305, "y": -14.32982802766888, "z": 0.2793463694706792}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5586927389413584}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": -3.0926461989249017, "y": -14.418885446089796, "z": 0.2699403694364778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5398807388729556}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": -3.137973077645151, "y": -14.507299922368352, "z": 0.26226223402241755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5245244680448351}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": -3.1847508981170405, "y": -14.595083465119108, "z": 0.2569127025172095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.513825405034419}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": -3.234561998000093, "y": -14.682869885839597, "z": 0.25375086550568215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5075017310113643}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": -3.285997196572923, "y": -14.766670043339909, "z": 0.25063511291417406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5012702258283481}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": -3.3411311292296353, "y": -14.850264966902781, "z": 0.2463594333380758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4927188666761516}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": -3.3988998488068347, "y": -14.932620100115802, "z": 0.24061411236090655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4812282247218131}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": -3.4578883574399395, "y": -15.01245022918283, "z": 0.23324238208139178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46648476416278356}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": -3.5200861333838644, "y": -15.092240584501443, "z": 0.22590255996151712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45180511992303424}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": -3.5830740008257638, "y": -15.168501373660312, "z": 0.21833050671483575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4366610134296715}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": -3.6495596913904937, "y": -15.244336211866965, "z": 0.21023242471907747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42046484943815493}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": -3.7173765280357802, "y": -15.316944330302299, "z": 0.20229650282584302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40459300565168604}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": -3.788605903897827, "y": -15.387802761197985, "z": 0.19470194639533825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3894038927906765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": -3.8623534810961284, "y": -15.455096505657275, "z": 0.18748596437751194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3749719287550239}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": -3.9394980567433198, "y": -15.518715438006708, "z": 0.18077274577365618}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36154549154731236}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": -4.0204531628104085, "y": -15.57790581726534, "z": 0.1746887080237163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3493774160474326}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": -4.104563163436155, "y": -15.631099222248665, "z": 0.16956745791398128}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33913491582796257}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": -4.193546676397707, "y": -15.678061322897895, "z": 0.16549997616310816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3309999523262163}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": -4.285089519942117, "y": -15.716322056320031, "z": 0.16291431164828407}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32582862329656814}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": -4.381204544366661, "y": -15.745554691858803, "z": 0.1603212745792705}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.320642549158541}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": -4.478772098870778, "y": -15.76438800171207, "z": 0.15752584796814825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3150516959362965}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": -4.578515544731558, "y": -15.772655391428458, "z": 0.15495621401120593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30991242802241187}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": -4.678163374176584, "y": -15.769558131112081, "z": 0.15281359042375825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3056271808475165}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": -4.776711695174564, "y": -15.754569888649316, "z": 0.15139699971478607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30279399942957214}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": -4.872743367665113, "y": -15.727142834693671, "z": 0.15133857106667178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30267714213334357}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": -4.963749381400073, "y": -15.687129411550108, "z": 0.1463813246218944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2927626492437888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_sp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.963749381400073, "y_m": -15.687129411550108, "d_right": 0.4973051782248705, "d_left": 2.5460178247198293, "psi_rad": 2.6563383460404855, "kappa_radpm": -1.4582052536499621, "vx_mps": 2.8686746373763197, "ax_mps2": -0.0318130758333528}, {"id": 1, "s_m": 0.09988883858609685, "d_m": 0.0, "x_m": -5.048413593207732, "y_m": -15.634401993021578, "d_right": 0.49840975763816153, "d_left": 2.44787879737835, "psi_rad": 2.5139458127187346, "kappa_radpm": -1.3920713184436633, "vx_mps": 2.8675666745051402, "ax_mps2": 0.5212944696820586}, {"id": 2, "s_m": 0.1997776771721937, "d_m": 0.0, "x_m": -5.124939505001345, "y_m": -15.57048253748508, "d_right": 0.49180805132783706, "d_left": 2.3535034342657215, "psi_rad": 2.3787380795104, "kappa_radpm": -1.3163872507402803, "vx_mps": 2.8856683161805448, "ax_mps2": 1.006144799273602}, {"id": 3, "s_m": 0.2996665157582905, "d_m": 0.0, "x_m": -5.192470455819973, "y_m": -15.497039017290792, "d_right": 0.48425065604431644, "d_left": 2.2648497459046433, "psi_rad": 2.2510090423730698, "kappa_radpm": -1.244979300909388, "vx_mps": 2.9202888387805106, "ax_mps2": 1.3497401721957936}, {"id": 4, "s_m": 0.3995553543443874, "d_m": 0.0, "x_m": -5.250392292494116, "y_m": -15.415851852785758, "d_right": 0.4677399224218189, "d_left": 2.183875894613879, "psi_rad": 2.1327462574998575, "kappa_radpm": -1.0855522860041178, "vx_mps": 2.9660975807099295, "ax_mps2": 2.4155882404165414}, {"id": 5, "s_m": 0.49944419293048425, "d_m": 0.0, "x_m": -5.2993508951365405, "y_m": -15.328570029960062, "d_right": 0.4578455417255325, "d_left": 2.111406544432405, "psi_rad": 2.034686379697867, "kappa_radpm": -0.8786700210606191, "vx_mps": 3.046361020294243, "ax_mps2": 3.809788865592948}, {"id": 6, "s_m": 0.599333031516581, "d_m": 0.0, "x_m": -5.340085517536957, "y_m": -15.237630865783045, "d_right": 0.4606469994839426, "d_left": 2.048354115307532, "psi_rad": 1.949217364172437, "kappa_radpm": -0.859154030161582, "vx_mps": 3.1688209536123724, "ax_mps2": 3.334049705224601}, {"id": 7, "s_m": 0.6992218701026779, "d_m": 0.0, "x_m": -5.373020629727138, "y_m": -15.14312010249014, "d_right": 0.47633458448647353, "d_left": 1.995209372388988, "psi_rad": 1.8629805650298825, "kappa_radpm": -0.8542527496050476, "vx_mps": 3.2722308814842562, "ax_mps2": 2.8116996188475762}, {"id": 8, "s_m": 0.7991107086887748, "d_m": 0.0, "x_m": -5.397768952804983, "y_m": -15.046625648284905, "d_right": 0.5036047825599191, "d_left": 1.940823462187551, "psi_rad": 1.7821170519786744, "kappa_radpm": -0.7711994012620322, "vx_mps": 3.3569643668794793, "ax_mps2": 3.2656272986136483}, {"id": 9, "s_m": 0.8989995472748716, "d_m": 0.0, "x_m": -5.415085615905583, "y_m": -14.9480692415079, "d_right": 0.5413902648077844, "d_left": 1.8818433718722198, "psi_rad": 1.7084467499741312, "kappa_radpm": -0.7047613709572297, "vx_mps": 3.4527683381202516, "ax_mps2": 3.552023409927522}, {"id": 10, "s_m": 0.9988883858609685, "d_m": 0.0, "x_m": -5.425385307500723, "y_m": -14.848757722519105, "d_right": 0.5822367139749428, "d_left": 1.8326501654943779, "psi_rad": 1.6406696012343973, "kappa_radpm": -0.6542598443037319, "vx_mps": 3.55404335691368, "ax_mps2": 3.6870670312785196}, {"id": 11, "s_m": 1.0987772244470653, "d_m": 0.0, "x_m": -5.429192950579243, "y_m": -14.748770445184974, "d_right": 0.6239426825850293, "d_left": 1.793584590507878, "psi_rad": 1.578534356295023, "kappa_radpm": -0.5656980462232809, "vx_mps": 3.656202657116979, "ax_mps2": 4.386173799141303}, {"id": 12, "s_m": 1.198666063033162, "d_m": 0.0, "x_m": -5.427350838174658, "y_m": -14.648872322398436, "d_right": 0.6616855606543623, "d_left": 1.752484796108649, "psi_rad": 1.5282189602627356, "kappa_radpm": -0.44335885301397504, "vx_mps": 3.774132679593451, "ax_mps2": 5.629696922028387}, {"id": 13, "s_m": 1.298554901619259, "d_m": 0.0, "x_m": -5.421039892454192, "y_m": -14.548824144469963, "d_right": 0.7079691913679794, "d_left": 1.7081201669683563, "psi_rad": 1.4890113679385486, "kappa_radpm": -0.3439053204078892, "vx_mps": 3.920301679391718, "ax_mps2": 6.655186782122581}, {"id": 14, "s_m": 1.3984437402053558, "d_m": 0.0, "x_m": -5.411359215903854, "y_m": -14.449735381950866, "d_right": 0.7594496794095128, "d_left": 1.6720628142663274, "psi_rad": 1.4593271828327943, "kappa_radpm": -0.2521365284226965, "vx_mps": 4.086358160259702, "ax_mps2": 6.929728241081188}, {"id": 15, "s_m": 1.4983325787914528, "d_m": 0.0, "x_m": -5.399096385450286, "y_m": -14.349917322731992, "d_right": 0.7860503172047948, "d_left": 1.6433841623833179, "psi_rad": 1.4398374665772478, "kappa_radpm": -0.13147534344621922, "vx_mps": 4.252379101792173, "ax_mps2": 6.838444914243187}, {"id": 16, "s_m": 1.5982214173775495, "d_m": 0.0, "x_m": -5.3856853922559145, "y_m": -14.251424663333786, "d_right": 0.8139212296082355, "d_left": 1.6181435099209638, "psi_rad": 1.4331465356570603, "kappa_radpm": -0.023201164796687712, "vx_mps": 4.410090323995226, "ax_mps2": 6.751533147296392}, {"id": 17, "s_m": 1.6981102559636463, "d_m": 0.0, "x_m": -5.371754453278362, "y_m": -14.152067803415841, "d_right": 0.8462641432674421, "d_left": 1.597229944379892, "psi_rad": 1.429333108264788, "kappa_radpm": -0.053521101400676216, "vx_mps": 4.56044978870662, "ax_mps2": 6.668493728724371}, {"id": 18, "s_m": 1.7979990945497433, "d_m": 0.0, "x_m": -5.357358056656578, "y_m": -14.05320966201523, "d_right": 0.8843028579775356, "d_left": 1.569596998206454, "psi_rad": 1.422803160059512, "kappa_radpm": -0.06738090421143159, "vx_mps": 4.704244728187104, "ax_mps2": 6.588916201165287}, {"id": 19, "s_m": 1.89788793313584, "d_m": 0.0, "x_m": -5.342384167062642, "y_m": -13.95495580825339, "d_right": 0.9223654464918221, "d_left": 1.5449861333288135, "psi_rad": 1.4164232256568123, "kappa_radpm": -0.06095296305002089, "vx_mps": 4.842131435269719, "ax_mps2": 6.512458197722743}, {"id": 20, "s_m": 1.997776771721937, "d_m": 0.0, "x_m": -5.32661435033773, "y_m": -13.855639134121432, "d_right": 0.9456924944217829, "d_left": 1.5269000706263844, "psi_rad": 1.4101446767202575, "kappa_radpm": -0.06521813465185275, "vx_mps": 4.974663868830662, "ax_mps2": 6.438830583358073}, {"id": 21, "s_m": 2.0976656103080336, "d_m": 0.0, "x_m": -5.310411201752294, "y_m": -13.757707307895226, "d_right": 0.972730451995798, "d_left": 1.50980764638312, "psi_rad": 1.403523488855633, "kappa_radpm": -0.06291813149630647, "vx_mps": 5.102314692911229, "ax_mps2": 6.367786524054891}, {"id": 22, "s_m": 2.1975544488941305, "d_m": 0.0, "x_m": -5.293550281451659, "y_m": -13.65951814823194, "d_right": 1.0084439215774912, "d_left": 1.4938656581958725, "psi_rad": 1.3983285919250055, "kappa_radpm": -0.04015383776303565, "vx_mps": 5.225491060752271, "ax_mps2": 6.29911328442791}, {"id": 23, "s_m": 2.2974432874802275, "d_m": 0.0, "x_m": -5.27634200994781, "y_m": -13.56180945192002, "d_right": 1.051838312900314, "d_left": 1.462223631394253, "psi_rad": 1.3946264519070917, "kappa_radpm": -0.03669976477678627, "vx_mps": 5.34454666423724, "ax_mps2": 6.2326259646683155}, {"id": 24, "s_m": 2.397332126066324, "d_m": 0.0, "x_m": -5.258688439980855, "y_m": -13.463668965278686, "d_right": 1.0897213306034355, "d_left": 1.4299753764767664, "psi_rad": 1.3909704919507984, "kappa_radpm": -0.039915178606969394, "vx_mps": 5.459791075134097, "ax_mps2": 6.168162644075205}, {"id": 25, "s_m": 2.497220964652421, "d_m": 0.0, "x_m": -5.240530942508023, "y_m": -13.3650087904688, "d_right": 1.1302909630320703, "d_left": 1.3911652695190158, "psi_rad": 1.3864492103421375, "kappa_radpm": -0.04977101741490476, "vx_mps": 5.571497086920856, "ax_mps2": 6.105580563223585}, {"id": 26, "s_m": 2.597109803238518, "d_m": 0.0, "x_m": -5.222118406856688, "y_m": -13.267669333521093, "d_right": 1.1564815042507974, "d_left": 1.3501816584613888, "psi_rad": 1.381114454614184, "kappa_radpm": -0.05761921250716924, "vx_mps": 5.679906556650038, "ax_mps2": 6.044753085451812}, {"id": 27, "s_m": 2.696998641824615, "d_m": 0.0, "x_m": -5.202859047028667, "y_m": -13.168956440043468, "d_right": 1.1904032287674475, "d_left": 1.3119703771179712, "psi_rad": 1.3750202312264468, "kappa_radpm": -0.06259164235123983, "vx_mps": 5.785235105228404, "ax_mps2": 5.9855672515728715}, {"id": 28, "s_m": 2.7968874804107116, "d_m": 0.0, "x_m": -5.183232507436544, "y_m": -13.071585215601296, "d_right": 1.23051902363563, "d_left": 1.2748292779349877, "psi_rad": 1.3687608154330628, "kappa_radpm": -0.06341307512526417, "vx_mps": 5.887675937485374, "ax_mps2": 5.927921792067095}, {"id": 29, "s_m": 2.8967763189968085, "d_m": 0.0, "x_m": -5.16283821204442, "y_m": -12.97360270081989, "d_right": 1.2671090552611892, "d_left": 1.2398002998106512, "psi_rad": 1.3624357829102922, "kappa_radpm": -0.06159547334494389, "vx_mps": 5.987402975491284, "ax_mps2": 5.8717254962667464}, {"id": 30, "s_m": 2.9966651575829055, "d_m": 0.0, "x_m": -5.141859517006577, "y_m": -12.875832113333939, "d_right": 1.3059913924211037, "d_left": 1.2075014744672528, "psi_rad": 1.3564960858463675, "kappa_radpm": -0.057353291130379666, "vx_mps": 6.084573450255884, "ax_mps2": 5.816895863140232}, {"id": 31, "s_m": 3.096553996169002, "d_m": 0.0, "x_m": -5.120373166321499, "y_m": -12.778417108794617, "d_right": 1.3416752269345027, "d_left": 1.1715806501812747, "psi_rad": 1.351009038161098, "kappa_radpm": -0.05205569998099108, "vx_mps": 6.179330062025291, "ax_mps2": 5.763357976408456}, {"id": 32, "s_m": 3.196442834755099, "d_m": 0.0, "x_m": -5.098274986429591, "y_m": -12.680652861748706, "d_right": 1.3793849765988797, "d_left": 1.1402929698401856, "psi_rad": 1.3460761631928742, "kappa_radpm": -0.046544209731674065, "vx_mps": 6.271802793829554, "ax_mps2": 5.711043560006002}, {"id": 33, "s_m": 3.296331673341196, "d_m": 0.0, "x_m": -5.0758477749185404, "y_m": -12.583535119475036, "d_right": 1.4143467892803956, "d_left": 1.0945873557810337, "psi_rad": 1.3417192512552367, "kappa_radpm": -0.040568139318924216, "vx_mps": 6.362110443974973, "ax_mps2": 5.659890179743811}, {"id": 34, "s_m": 3.3962205119272926, "d_m": 0.0, "x_m": -5.052904471129938, "y_m": -12.485990532464724, "d_right": 1.4510597083269976, "d_left": 1.0513031840004066, "psi_rad": 1.337951275433487, "kappa_radpm": -0.03477374888446902, "vx_mps": 6.450361928953626, "ax_mps2": 5.609840564418964}, {"id": 35, "s_m": 3.4961093505133896, "d_m": 0.0, "x_m": -5.029729636967403, "y_m": -12.3889795022698, "d_right": 1.4855033389697267, "d_left": 1.0165639632680943, "psi_rad": 1.33473455593592, "kappa_radpm": -0.029881944311105392, "vx_mps": 6.536657397459371, "ax_mps2": 5.560842025220022}, {"id": 36, "s_m": 3.5959981890994865, "d_m": 0.0, "x_m": -5.006185302103794, "y_m": -12.291709389278738, "d_right": 1.5176280258646448, "d_left": 0.990908605171572, "psi_rad": 1.331962814050703, "kappa_radpm": -0.025588004806982825, "vx_mps": 6.621089187941837, "ax_mps2": 5.512845956562795}, {"id": 37, "s_m": 3.695887027685583, "d_m": 0.0, "x_m": -4.982441955206108, "y_m": -12.19470117539096, "d_right": 1.5298417242225555, "d_left": 0.9751758614134272, "psi_rad": 1.329645041434254, "kappa_radpm": -0.020325751602151883, "vx_mps": 6.703742655747647, "ax_mps2": 5.4658074048142415}, {"id": 38, "s_m": 3.79577586627168, "d_m": 0.0, "x_m": -4.958484277755049, "y_m": -12.097671406260917, "d_right": 1.5482311809532594, "d_left": 0.9601526416791611, "psi_rad": 1.327906221360236, "kappa_radpm": -0.014539152658570514, "vx_mps": 6.784696890922607, "ax_mps2": 5.419684693941611}, {"id": 39, "s_m": 3.895664704857777, "d_m": 0.0, "x_m": -4.934381282752698, "y_m": -12.000656835651244, "d_right": 1.5726350976052945, "d_left": 0.9450566435920241, "psi_rad": 1.326780038116476, "kappa_radpm": -0.0068664469373485556, "vx_mps": 6.864025343838427, "ax_mps2": 5.374439099160474}, {"id": 40, "s_m": 3.995553543443874, "d_m": 0.0, "x_m": -4.910249135674847, "y_m": -11.903805852343899, "d_right": 1.6027982101616745, "d_left": 0.9317514626151784, "psi_rad": 1.326583895194104, "kappa_radpm": 0.002861429787788151, "vx_mps": 6.941796372711456, "ax_mps2": 5.33003456126296}, {"id": 41, "s_m": 4.095442382029971, "d_m": 0.0, "x_m": -4.886087175445373, "y_m": -11.806715740863128, "d_right": 1.6386142537788726, "d_left": 0.9150946349085326, "psi_rad": 1.3273929461292517, "kappa_radpm": 0.015525554659631386, "vx_mps": 7.018073724611801, "ax_mps2": 5.286437435591902}, {"id": 42, "s_m": 4.195331220616067, "d_m": 0.0, "x_m": -4.862169178332712, "y_m": -11.709946461727863, "d_right": 1.6796169285825344, "d_left": 0.900044238690743, "psi_rad": 1.3298991863141667, "kappa_radpm": 0.0346153016863209, "vx_mps": 7.092916959579129, "ax_mps2": 5.243616270656101}, {"id": 43, "s_m": 4.2952200592021645, "d_m": 0.0, "x_m": -4.838447094184725, "y_m": -11.612525233177278, "d_right": 1.725996919081322, "d_left": 0.8883744522602149, "psi_rad": 1.3342914866388875, "kappa_radpm": 0.05212795468894121, "vx_mps": 7.16638182586019, "ax_mps2": 5.201541612215679}, {"id": 44, "s_m": 4.395108897788261, "d_m": 0.0, "x_m": -4.815335450640083, "y_m": -11.515443582754562, "d_right": 1.777015216814164, "d_left": 0.8874080918050465, "psi_rad": 1.3400669850147349, "kappa_radpm": 0.06374039712500894, "vx_mps": 7.238520592981842, "ax_mps2": 5.160185829343246}, {"id": 45, "s_m": 4.494997736374358, "d_m": 0.0, "x_m": -4.792791608445757, "y_m": -11.41799263267231, "d_right": 1.8217711982059959, "d_left": 0.8970110827249331, "psi_rad": 1.3470635783405718, "kappa_radpm": 0.07636564689993713, "vx_mps": 7.309382348309962, "ax_mps2": 5.11952295951855}, {"id": 46, "s_m": 4.594886574960455, "d_m": 0.0, "x_m": -4.770919909302567, "y_m": -11.320239105990913, "d_right": 1.799855322782013, "d_left": 0.916820771618696, "psi_rad": 1.3539453858095285, "kappa_radpm": 0.05799864203725319, "vx_mps": 7.379013261870965, "ax_mps2": 5.079528570269809}, {"id": 47, "s_m": 4.694775413546552, "d_m": 0.0, "x_m": -4.749700531767384, "y_m": -11.222751047056962, "d_right": 1.7785866113093587, "d_left": 0.9461863582774089, "psi_rad": 1.3586482809756242, "kappa_radpm": 0.03621990112672212, "vx_mps": 7.447456823491216, "ax_mps2": 5.040179635249978}, {"id": 48, "s_m": 4.794664252132648, "d_m": 0.0, "x_m": -4.728788816411378, "y_m": -11.124948014320102, "d_right": 1.7404745706039113, "d_left": 0.9846000758634299, "psi_rad": 1.3614351584072844, "kappa_radpm": 0.021866966812797622, "vx_mps": 7.514754055711119, "ax_mps2": 5.001454422948401}, {"id": 49, "s_m": 4.894553090718746, "d_m": 0.0, "x_m": -4.708132700252305, "y_m": -11.02729657378635, "d_right": 1.7036791544788146, "d_left": 1.014719795720519, "psi_rad": 1.3630567828171853, "kappa_radpm": 0.010550783543203894, "vx_mps": 7.580943705431794, "ax_mps2": 4.963332396494503}, {"id": 50, "s_m": 4.994441929304842, "d_m": 0.0, "x_m": -4.687572498088091, "y_m": -10.929584886090844, "d_right": 1.6647656602415157, "d_left": 1.0445753442820789, "psi_rad": 1.3636153653693759, "kappa_radpm": 0.0022837856751647253, "vx_mps": 7.646062416834636, "ax_mps2": 4.925794123234284}, {"id": 51, "s_m": 5.0943307678909395, "d_m": 0.0, "x_m": -4.667019415687867, "y_m": -10.831790284999984, "d_right": 1.6252767773507077, "d_left": 1.0828598113665788, "psi_rad": 1.3635906276368228, "kappa_radpm": -0.002799506164300708, "vx_mps": 7.710144887763089, "ax_mps2": 4.888821192934056}, {"id": 52, "s_m": 5.194219606477036, "d_m": 0.0, "x_m": -4.646458011068323, "y_m": -10.734090682930898, "d_right": 1.57785146276597, "d_left": 1.1257081241756124, "psi_rad": 1.3630817852120916, "kappa_radpm": -0.006249055708517701, "vx_mps": 7.773224011459715, "ax_mps2": 4.852396143629652}, {"id": 53, "s_m": 5.294108445063133, "d_m": 0.0, "x_m": -4.625801161321568, "y_m": -10.63622883704576, "d_right": 1.533429666632747, "d_left": 1.1464219491024652, "psi_rad": 1.3624537865890078, "kappa_radpm": -0.006310504357339568, "vx_mps": 7.835331005300765, "ax_mps2": 4.816502394260869}, {"id": 54, "s_m": 5.39399728364923, "d_m": 0.0, "x_m": -4.605143620978005, "y_m": -10.538668124706547, "d_right": 1.485374680889101, "d_left": 1.1671485281932419, "psi_rad": 1.361819309353154, "kappa_radpm": -0.006552226414978295, "vx_mps": 7.896495527957149, "ax_mps2": 4.78112418335005}, {"id": 55, "s_m": 5.493886122235327, "d_m": 0.0, "x_m": -4.584333005624029, "y_m": -10.440704939333829, "d_right": 1.4393673442578168, "d_left": 1.1880162033545913, "psi_rad": 1.361114275243209, "kappa_radpm": -0.0075383499253047674, "vx_mps": 7.956745786228734, "ax_mps2": 4.746246513071743}, {"id": 56, "s_m": 5.593774960821423, "d_m": 0.0, "x_m": -4.563568548740071, "y_m": -10.343319961918109, "d_right": 1.3927094136144351, "d_left": 1.2088603149245265, "psi_rad": 1.3603119809009392, "kappa_radpm": -0.008575271385582955, "vx_mps": 8.0161086326432, "ax_mps2": 4.711855098147164}, {"id": 57, "s_m": 5.6936637994075205, "d_m": 0.0, "x_m": -4.54256292569104, "y_m": -10.245215493044373, "d_right": 1.349161413978787, "d_left": 1.2299206903160012, "psi_rad": 1.3594049514463642, "kappa_radpm": -0.009520653865900243, "vx_mps": 8.074609654776918, "ax_mps2": -9.558755315397725}, {"id": 58, "s_m": 5.793552637993617, "d_m": 0.0, "x_m": -4.521662159797748, "y_m": -10.148052268809257, "d_right": 1.3052973775882013, "d_left": 1.2509139638502096, "psi_rad": 1.3584083224901655, "kappa_radpm": -0.010552409687196137, "vx_mps": 7.955482081146881, "ax_mps2": -11.546560409847356}, {"id": 59, "s_m": 5.893441476579714, "d_m": 0.0, "x_m": -4.500420110760888, "y_m": -10.049804083225808, "d_right": 1.2571355809073983, "d_left": 1.2721242319790207, "psi_rad": 1.3573107177168726, "kappa_radpm": -0.011301347035591306, "vx_mps": 7.809158093254445, "ax_mps2": -11.513983157554579}, {"id": 60, "s_m": 5.993330315165811, "d_m": 0.0, "x_m": -4.479324725751371, "y_m": -9.952765122725781, "d_right": 1.2065430124512324, "d_left": 1.2930969983683744, "psi_rad": 1.3561473733276828, "kappa_radpm": -0.012147945512321992, "vx_mps": 7.660464301543698, "ax_mps2": -11.513958222037909}, {"id": 61, "s_m": 6.093219153751908, "d_m": 0.0, "x_m": -4.457837852517258, "y_m": -9.854494401641023, "d_right": 1.1616105929652623, "d_left": 1.3145124118742173, "psi_rad": 1.3549204859379802, "kappa_radpm": -0.012218980409516985, "vx_mps": 7.508826904821349, "ax_mps2": -11.529004518250224}, {"id": 62, "s_m": 6.193107992338004, "d_m": 0.0, "x_m": -4.436537543287055, "y_m": -9.757643704557536, "d_right": 1.1129904025077562, "d_left": 1.3425076004722547, "psi_rad": 1.3537049325774109, "kappa_radpm": -0.012305985631198679, "vx_mps": 7.3538591055176745, "ax_mps2": -11.543396949502748}, {"id": 63, "s_m": 6.292996830924102, "d_m": 0.0, "x_m": -4.414787257891767, "y_m": -9.659311608458857, "d_right": 1.0672116320161362, "d_left": 1.377790330508577, "psi_rad": 1.3525395377975018, "kappa_radpm": -0.010783920355161684, "vx_mps": 7.1953548011586586, "ax_mps2": -11.641701033717345}, {"id": 64, "s_m": 6.392885669510198, "d_m": 0.0, "x_m": -4.393267656227192, "y_m": -9.562517013745518, "d_right": 1.0296999532916329, "d_left": 1.418766318052813, "psi_rad": 1.351551743155649, "kappa_radpm": -0.009240115156052714, "vx_mps": 7.031883014080068, "ax_mps2": -11.731504528032307}, {"id": 65, "s_m": 6.492774508096295, "d_m": 0.0, "x_m": -4.371334395280905, "y_m": -9.464302547528339, "d_right": 1.0001864435791956, "d_left": 1.4509543748689153, "psi_rad": 1.350605683387696, "kappa_radpm": -0.009565927581921149, "vx_mps": 6.863212513055561, "ax_mps2": -11.715243908348707}, {"id": 66, "s_m": 6.592663346682392, "d_m": 0.0, "x_m": -4.3495750611468615, "y_m": -9.367303462432071, "d_right": 0.9785276615713049, "d_left": 1.472960662679203, "psi_rad": 1.3496342195027031, "kappa_radpm": -0.01022721510768031, "vx_mps": 6.690533744317176, "ax_mps2": -11.648585238046957}, {"id": 67, "s_m": 6.692552185268489, "d_m": 0.0, "x_m": -4.327526455455173, "y_m": -9.269488455902168, "d_right": 0.9308226923654046, "d_left": 1.5016094640940514, "psi_rad": 1.3485146293665924, "kappa_radpm": -0.012146863444902255, "vx_mps": 6.5143007669777955, "ax_mps2": -11.399651159343149}, {"id": 68, "s_m": 6.792441023854585, "d_m": 0.0, "x_m": -4.305498926449114, "y_m": -9.172324716687994, "d_right": 0.8915651807403023, "d_left": 1.5341950118614105, "psi_rad": 1.347097646241767, "kappa_radpm": -0.01881523515096114, "vx_mps": 6.337090708950017, "ax_mps2": -10.953160353809892}, {"id": 69, "s_m": 6.892329862440683, "d_m": 0.0, "x_m": -4.283277905486047, "y_m": -9.075167484255289, "d_right": 0.8618960664644006, "d_left": 1.5687676357039368, "psi_rad": 1.3445956187858517, "kappa_radpm": -0.03143563171306203, "vx_mps": 6.162022534872938, "ax_mps2": -10.754294460332337}, {"id": 70, "s_m": 6.992218701026779, "d_m": 0.0, "x_m": -4.260761447391065, "y_m": -8.978096938693321, "d_right": 0.8394535355222095, "d_left": 1.6090507993240863, "psi_rad": 1.3410297312214603, "kappa_radpm": -0.038640654768007585, "vx_mps": 5.985152776109473, "ax_mps2": -10.747056001551604}, {"id": 71, "s_m": 7.092107539612876, "d_m": 0.0, "x_m": -4.237836067301838, "y_m": -8.880959477382044, "d_right": 0.8166134236506037, "d_left": 1.641545321955133, "psi_rad": 1.3369627504681805, "kappa_radpm": -0.041072746377131125, "vx_mps": 5.803019202875472, "ax_mps2": -10.740126160457347}, {"id": 72, "s_m": 7.191996378198973, "d_m": 0.0, "x_m": -4.214608577086083, "y_m": -8.784128830511202, "d_right": 0.7934959681500457, "d_left": 1.6767211754842004, "psi_rad": 1.334216969147694, "kappa_radpm": -0.01425551245824221, "vx_mps": 5.6151041318989785, "ax_mps2": -11.073010641558035}, {"id": 73, "s_m": 7.29188521678507, "d_m": 0.0, "x_m": -4.191152962339799, "y_m": -8.687001202698655, "d_right": 0.7701567992162954, "d_left": 1.7172433456189888, "psi_rad": 1.3332604023891068, "kappa_radpm": -0.035485075109549916, "vx_mps": 5.414540983942733, "ax_mps2": -8.278244153187902}, {"id": 74, "s_m": 7.391774055371166, "d_m": 0.0, "x_m": -4.167313621162804, "y_m": -8.590028934791631, "d_right": 0.7464580882151937, "d_left": 1.754522034221898, "psi_rad": 1.3245064115869982, "kappa_radpm": -0.13840279148810425, "vx_mps": 5.259605087723543, "ax_mps2": -8.271985735615003}, {"id": 75, "s_m": 7.491662893957264, "d_m": 0.0, "x_m": -4.14226304481066, "y_m": -8.493608753009477, "d_right": 0.7215979215084333, "d_left": 1.779629688359288, "psi_rad": 1.3088607143429587, "kappa_radpm": -0.13823896404528507, "vx_mps": 5.100087017193401, "ax_mps2": -8.459195979451954}, {"id": 76, "s_m": 7.59155173254336, "d_m": 0.0, "x_m": -4.115727518776038, "y_m": -8.396926777883243, "d_right": 0.6952702526993704, "d_left": 1.8062222193733446, "psi_rad": 1.2979812823300496, "kappa_radpm": -0.07954848543242718, "vx_mps": 4.931625397313285, "ax_mps2": -6.988238278006141}, {"id": 77, "s_m": 7.691440571129457, "d_m": 0.0, "x_m": -4.088413928331302, "y_m": -8.301281195046723, "d_right": 0.655867428285844, "d_left": 1.8317153730250477, "psi_rad": 1.2845288072881866, "kappa_radpm": -0.2224829662584885, "vx_mps": 4.7879886224509285, "ax_mps2": -3.287415840189176}, {"id": 78, "s_m": 7.791329409715554, "d_m": 0.0, "x_m": -4.058663853509903, "y_m": -8.205239423786942, "d_right": 0.6006212135403495, "d_left": 1.841450607412033, "psi_rad": 1.253395498222062, "kappa_radpm": -0.3951246699271148, "vx_mps": 4.718906944226329, "ax_mps2": -2.0067971926561947}, {"id": 79, "s_m": 7.891218248301651, "d_m": 0.0, "x_m": -4.025662228300867, "y_m": -8.111395098604845, "d_right": 0.5550446714054748, "d_left": 1.8459060990797522, "psi_rad": 1.210803155144449, "kappa_radpm": -0.46086155069239754, "vx_mps": 4.676234539302208, "ax_mps2": -0.8271261088038556}, {"id": 80, "s_m": 7.991107086887748, "d_m": 0.0, "x_m": -3.988101190043172, "y_m": -8.018489326935926, "d_right": 0.5199530821001381, "d_left": 1.8345051430578079, "psi_rad": 1.1613149534917697, "kappa_radpm": -0.5186990689804605, "vx_mps": 4.658532830604248, "ax_mps2": -0.7806227585809473}, {"id": 81, "s_m": 8.090995925473845, "d_m": 0.0, "x_m": -3.9461195195143923, "y_m": -7.928160202046404, "d_right": 0.49771183922762513, "d_left": 1.8336183802855757, "psi_rad": 1.1104022360524883, "kappa_radpm": -0.5035990076440114, "vx_mps": 4.64176444171401, "ax_mps2": -1.210380381056196}, {"id": 82, "s_m": 8.190884764059941, "d_m": 0.0, "x_m": -3.899418704522062, "y_m": -7.839619905002928, "d_right": 0.4899073602269419, "d_left": 1.8427324040176387, "psi_rad": 1.0606024083191787, "kappa_radpm": -0.4997992689651764, "vx_mps": 4.615644066794836, "ax_mps2": -0.6598012199668123}, {"id": 83, "s_m": 8.290773602646038, "d_m": 0.0, "x_m": -3.8485231752316422, "y_m": -7.753891799215845, "d_right": 0.47797038088080424, "d_left": 1.8568440165806968, "psi_rad": 1.0088035365144903, "kappa_radpm": -0.5394792743060958, "vx_mps": 4.601342912261378, "ax_mps2": -0.08178562822230152}, {"id": 84, "s_m": 8.390662441232134, "d_m": 0.0, "x_m": -3.792895484717453, "y_m": -7.670746704648575, "d_right": 0.45802259537360895, "d_left": 1.877383489975088, "psi_rad": 0.952954250674365, "kappa_radpm": -0.5672145011695799, "vx_mps": 4.599567115869243, "ax_mps2": -0.08178562822230008}, {"id": 85, "s_m": 8.490551279818233, "d_m": 0.0, "x_m": -3.7328612345402017, "y_m": -7.5911114148910634, "d_right": 0.4378095754773279, "d_left": 1.9012980625407743, "psi_rad": 0.8968512165714748, "kappa_radpm": -0.5580139764905369, "vx_mps": 4.597790633614517, "ax_mps2": 0.12204135639154266}, {"id": 86, "s_m": 8.590440118404329, "d_m": 0.0, "x_m": -3.6683271927461782, "y_m": -7.514755006801216, "d_right": 0.4141512201306965, "d_left": 1.9316837078111146, "psi_rad": 0.8417187976887697, "kappa_radpm": -0.5320461382176737, "vx_mps": 4.600441266797374, "ax_mps2": 0.6579269701902823}, {"id": 87, "s_m": 8.690328956990426, "d_m": 0.0, "x_m": -3.600039797772627, "y_m": -7.442104591392116, "d_right": 0.4086806122834467, "d_left": 1.9532472861420125, "psi_rad": 0.7921185089695524, "kappa_radpm": -0.46309025381454094, "vx_mps": 4.614704646139965, "ax_mps2": 2.0559371366797046}, {"id": 88, "s_m": 8.790217795576522, "d_m": 0.0, "x_m": -3.5282226050383403, "y_m": -7.372461896028065, "d_right": 0.4188055941266176, "d_left": 1.9810434097657996, "psi_rad": 0.7486554082701757, "kappa_radpm": -0.42921571971942557, "vx_mps": 4.658994453386235, "ax_mps2": 2.5994325068946877}, {"id": 89, "s_m": 8.890106634162619, "d_m": 0.0, "x_m": -3.453685814259656, "y_m": -7.306222823428256, "d_right": 0.43022358878225847, "d_left": 1.9183565437763532, "psi_rad": 0.7036634804363291, "kappa_radpm": -0.47301129083488486, "vx_mps": 4.714396876046502, "ax_mps2": 1.4011494113599716}, {"id": 90, "s_m": 8.989995472748715, "d_m": 0.0, "x_m": -3.375857869019193, "y_m": -7.243371474360202, "d_right": 0.45915837502990997, "d_left": 1.8312679323953005, "psi_rad": 0.654825488592539, "kappa_radpm": -0.4686030367646105, "vx_mps": 4.7439915977633955, "ax_mps2": 1.366872511177284}, {"id": 91, "s_m": 9.089884311334814, "d_m": 0.0, "x_m": -3.2955513689754143, "y_m": -7.18437193573961, "d_right": 0.502463871852289, "d_left": 1.7483950571746192, "psi_rad": 0.61454620078469, "kappa_radpm": -0.3407460740122377, "vx_mps": 4.772685501363275, "ax_mps2": 4.150248411009524}, {"id": 92, "s_m": 9.18977314992091, "d_m": 0.0, "x_m": -3.212852820603602, "y_m": -7.127851084118455, "d_right": 0.5580095819832495, "d_left": 1.669027088916257, "psi_rad": 0.5864752807980413, "kappa_radpm": -0.2282654045053545, "vx_mps": 4.858770820090436, "ax_mps2": 6.5032217401309715}, {"id": 93, "s_m": 9.289661988507007, "d_m": 0.0, "x_m": -3.129313553132301, "y_m": -7.073557679356307, "d_right": 0.6114515532827143, "d_left": 1.5939467538130225, "psi_rad": 0.5673496831725582, "kappa_radpm": -0.1563330127201447, "vx_mps": 4.9906765488800575, "ax_mps2": 6.429925637797302}, {"id": 94, "s_m": 9.389550827093103, "d_m": 0.0, "x_m": -3.0444191321548186, "y_m": -7.020253565965694, "d_right": 0.6726541370978972, "d_left": 1.5223694889950432, "psi_rad": 0.5551042459594793, "kappa_radpm": -0.09465329413909625, "vx_mps": 5.117754197287169, "ax_mps2": 6.359185128154552}, {"id": 95, "s_m": 9.4894396656792, "d_m": 0.0, "x_m": -2.959467788738302, "y_m": -6.968109878385925, "d_right": 0.7385437607332237, "d_left": 1.4553189887019748, "psi_rad": 0.5460340093492855, "kappa_radpm": -0.0874773882616459, "vx_mps": 5.24040373038768, "ax_mps2": 6.290791217964056}, {"id": 96, "s_m": 9.589328504265296, "d_m": 0.0, "x_m": -2.8736516536798273, "y_m": -6.916463207319966, "d_right": 0.8047814374027616, "d_left": 1.3782404016569167, "psi_rad": 0.537600412719732, "kappa_radpm": -0.08104558008606452, "vx_mps": 5.358972934673322, "ax_mps2": 6.224562082718095}, {"id": 97, "s_m": 9.689217342851395, "d_m": 0.0, "x_m": -2.7877511763835274, "y_m": -6.865633166982883, "d_right": 0.8767236257817327, "d_left": 1.3008377001310893, "psi_rad": 0.5318103796128741, "kappa_radpm": -0.0347808677035678, "vx_mps": 5.47376647920431, "ax_mps2": 6.16033835565837}, {"id": 98, "s_m": 9.789106181437491, "d_m": 0.0, "x_m": -2.7015508074401082, "y_m": -6.815029531593382, "d_right": 0.9535996016278615, "d_left": 1.226812841472588, "psi_rad": 0.5306376325759041, "kappa_radpm": 0.011271906850701494, "vx_mps": 5.585053048642327, "ax_mps2": 6.09797941841666}, {"id": 99, "s_m": 9.888995020023588, "d_m": 0.0, "x_m": -2.6153149020407405, "y_m": -6.764338704285954, "d_right": 1.0341954057910139, "d_left": 1.1475649296673187, "psi_rad": 0.5321060595957998, "kappa_radpm": 0.011231607149146443, "vx_mps": 5.693071027117444, "ax_mps2": 3.2881449671863896}, {"id": 100, "s_m": 9.988883858609684, "d_m": 0.0, "x_m": -2.5293007576170865, "y_m": -6.713648540140023, "d_right": 1.113163592255418, "d_left": 1.0655162252575272, "psi_rad": 0.5328235097937628, "kappa_radpm": 0.0031249963823579085, "vx_mps": 5.750474387696549, "ax_mps2": -11.922462128347354}, {"id": 101, "s_m": 10.08877269719578, "d_m": 0.0, "x_m": -2.443050011070517, "y_m": -6.662784080599292, "d_right": 1.1955189899387517, "d_left": 0.9865081756739222, "psi_rad": 0.532679560918879, "kappa_radpm": -0.006392639346783484, "vx_mps": 5.5395048418951065, "ax_mps2": -11.634058548872112}, {"id": 102, "s_m": 10.188661535781879, "d_m": 0.0, "x_m": -2.3570435110932952, "y_m": -6.6121380607446945, "d_right": 1.2801016398560745, "d_left": 0.911937102911992, "psi_rad": 0.5315280164600504, "kappa_radpm": -0.01676840979982868, "vx_mps": 5.325588108406462, "ax_mps2": -11.63321070954873}, {"id": 103, "s_m": 10.288550374367976, "d_m": 0.0, "x_m": -2.270715009788387, "y_m": -6.561474983782559, "d_right": 1.3669198250013068, "d_left": 0.8425270147947496, "psi_rad": 0.5302913878007738, "kappa_radpm": 0.005320231875115273, "vx_mps": 5.102727984793232, "ax_mps2": -10.863132783309338}, {"id": 104, "s_m": 10.388439212954072, "d_m": 0.0, "x_m": -2.184630812050451, "y_m": -6.510884863405056, "d_right": 1.4552509274475547, "d_left": 0.7799123648589916, "psi_rad": 0.5331024225420067, "kappa_radpm": 0.05149802859185137, "vx_mps": 4.885449974416825, "ax_mps2": -9.795638496054748}, {"id": 105, "s_m": 10.488328051540169, "d_m": 0.0, "x_m": -2.09867173140278, "y_m": -6.459765926665476, "d_right": 1.545351478899507, "d_left": 0.7251516112430172, "psi_rad": 0.5407918212539786, "kappa_radpm": 0.10447258510720552, "vx_mps": 4.680883628906942, "ax_mps2": -8.745326206518442}, {"id": 106, "s_m": 10.588216890126265, "d_m": 0.0, "x_m": -2.0133481022300845, "y_m": -6.407805218332483, "d_right": 1.6369144028033018, "d_left": 0.6731384756909052, "psi_rad": 0.5542184016220362, "kappa_radpm": 0.1652795570286973, "vx_mps": 4.490384236534515, "ax_mps2": -8.032422476575377}, {"id": 107, "s_m": 10.688105728712362, "d_m": 0.0, "x_m": -1.9288540615789123, "y_m": -6.354417799036054, "d_right": 1.7300392799528832, "d_left": 0.6200618032419013, "psi_rad": 0.5736739416964046, "kappa_radpm": 0.2176493981103865, "vx_mps": 4.307998594159673, "ax_mps2": -7.633859913507333}, {"id": 108, "s_m": 10.78799456729846, "d_m": 0.0, "x_m": -1.845591656812037, "y_m": -6.2992421799874325, "d_right": 1.720799934186083, "d_left": 0.5680780016911655, "psi_rad": 0.5974971990723268, "kappa_radpm": 0.2601883187341806, "vx_mps": 4.127199666348028, "ax_mps2": -7.1302170014566935}, {"id": 109, "s_m": 10.887883405884557, "d_m": 0.0, "x_m": -1.7637366344562608, "y_m": -6.2418721108560575, "d_right": 1.6782432822986502, "d_left": 0.5275051159066595, "psi_rad": 0.6260575983898998, "kappa_radpm": 0.31584504419533016, "vx_mps": 3.950863057057101, "ax_mps2": -6.5477154515682825}, {"id": 110, "s_m": 10.987772244470653, "d_m": 0.0, "x_m": -1.6839095534852317, "y_m": -6.1820729388808715, "d_right": 1.6368906189302885, "d_left": 0.5006979916293387, "psi_rad": 0.6609549225760519, "kappa_radpm": 0.38511163982993285, "vx_mps": 3.781696909050194, "ax_mps2": -5.866577599240403}, {"id": 111, "s_m": 11.08766108305675, "d_m": 0.0, "x_m": -1.6062061140053443, "y_m": -6.119039939065919, "d_right": 1.594457769826671, "d_left": 0.4823769354642218, "psi_rad": 0.7035562824764644, "kappa_radpm": 0.47102399430445646, "vx_mps": 3.6234265918041064, "ax_mps2": -5.14606730450163}, {"id": 112, "s_m": 11.187549921642846, "d_m": 0.0, "x_m": -1.5319848775855085, "y_m": -6.052805176423077, "d_right": 1.561937792685619, "d_left": 0.46752666715076263, "psi_rad": 0.7552864065404971, "kappa_radpm": 0.5702526795159598, "vx_mps": 3.478670851565008, "ax_mps2": -4.7486037939336665}, {"id": 113, "s_m": 11.287438760228943, "d_m": 0.0, "x_m": -1.4611785666578923, "y_m": -5.982003507744507, "d_right": 1.5405858529510013, "d_left": 0.46751260218803503, "psi_rad": 0.8168024191786174, "kappa_radpm": 0.6540703073192041, "vx_mps": 3.3395337785033536, "ax_mps2": -4.537281761494311}, {"id": 114, "s_m": 11.387327598815041, "d_m": 0.0, "x_m": -1.3956758006235623, "y_m": -5.907354902373201, "d_right": 1.5320672780557658, "d_left": 0.46152595223627396, "psi_rad": 0.8855826150891859, "kappa_radpm": 0.732217421909378, "vx_mps": 3.2009433370145404, "ax_mps2": -2.551750102822008}, {"id": 115, "s_m": 11.487216437401138, "d_m": 0.0, "x_m": -1.3355291285917674, "y_m": -5.827333194220016, "d_right": 1.5269953496145265, "d_left": 0.46943667284495866, "psi_rad": 0.9709706786151283, "kappa_radpm": 0.9742850930982926, "vx_mps": 3.1202973477718587, "ax_mps2": -0.8483069677727527}, {"id": 116, "s_m": 11.587105275987234, "d_m": 0.0, "x_m": -1.2837235650809518, "y_m": -5.742343435755977, "d_right": 1.5181261988146555, "d_left": 0.4848970712166274, "psi_rad": 1.0792437431284327, "kappa_radpm": 1.1695338878210906, "vx_mps": 3.093021620189789, "ax_mps2": -0.036955042446197815}, {"id": 117, "s_m": 11.68699411457333, "d_m": 0.0, "x_m": -1.2419811129590135, "y_m": -5.651740829294801, "d_right": 1.5272647807882143, "d_left": 0.4879966573670037, "psi_rad": 1.2003147314511784, "kappa_radpm": 1.2553089171115341, "vx_mps": 3.0918279302738965, "ax_mps2": -0.036955042446206704}, {"id": 118, "s_m": 11.786882953159427, "d_m": 0.0, "x_m": -1.2118602802110854, "y_m": -5.556866751990268, "d_right": 1.544512170118291, "d_left": 0.4793370306396895, "psi_rad": 1.3249590756129144, "kappa_radpm": 1.1706224179101572, "vx_mps": 3.0906337793213328, "ax_mps2": 0.7812680769165892}, {"id": 119, "s_m": 11.886771791745524, "d_m": 0.0, "x_m": -1.1928700817165845, "y_m": -5.458672390866724, "d_right": 1.5621683215561923, "d_left": 0.46740424387875157, "psi_rad": 1.4308841592801982, "kappa_radpm": 0.9504309415191996, "vx_mps": 3.115781937096569, "ax_mps2": 2.7355942716415624}, {"id": 120, "s_m": 11.986660630331622, "d_m": 0.0, "x_m": -1.1834141797536046, "y_m": -5.35963068347165, "d_right": 1.5912808780602061, "d_left": 0.45200815976146935, "psi_rad": 1.5185251239584519, "kappa_radpm": 0.8307703937207201, "vx_mps": 3.2022816473276308, "ax_mps2": 3.441132883470986}, {"id": 121, "s_m": 12.086549468917719, "d_m": 0.0, "x_m": -1.1821992346475179, "y_m": -5.259237775091816, "d_right": 1.6320688399510044, "d_left": 0.446241976053435, "psi_rad": 1.5973442751380158, "kappa_radpm": 0.7400031909585524, "vx_mps": 3.3078798773704055, "ax_mps2": 3.8605336038210685}, {"id": 122, "s_m": 12.186438307503815, "d_m": 0.0, "x_m": -1.1883056340750302, "y_m": -5.160228792818009, "d_right": 1.683588310988889, "d_left": 0.4552931276994665, "psi_rad": 1.6657803985769768, "kappa_radpm": 0.6402979580541847, "vx_mps": 3.4224724570299494, "ax_mps2": 4.454704853868748}, {"id": 123, "s_m": 12.286327146089912, "d_m": 0.0, "x_m": -1.2008911392384383, "y_m": -5.0605405758855015, "d_right": 1.7451029410390824, "d_left": 0.47942692284642346, "psi_rad": 1.725457056348298, "kappa_radpm": 0.5495611223144938, "vx_mps": 3.5501082106496713, "ax_mps2": 5.025011595436772}, {"id": 124, "s_m": 12.386215984676008, "d_m": 0.0, "x_m": -1.2187294071371255, "y_m": -4.962866459086832, "d_right": 1.8133150160495182, "d_left": 0.5167191985371785, "psi_rad": 1.776142158030541, "kappa_radpm": 0.4726659607813085, "vx_mps": 3.688787531374219, "ax_mps2": 5.515758759351825}, {"id": 125, "s_m": 12.486104823262105, "d_m": 0.0, "x_m": -1.2414092734394497, "y_m": -4.8650699312931405, "d_right": 1.8737451018665667, "d_left": 0.5658604743458183, "psi_rad": 1.8200817748813478, "kappa_radpm": 0.4074904135424654, "vx_mps": 3.8352417035184874, "ax_mps2": 5.949328505624351}, {"id": 126, "s_m": 12.585993661848203, "d_m": 0.0, "x_m": -1.2678312962786842, "y_m": -4.769194698578167, "d_right": 1.933808295408491, "d_left": 0.6146824929689859, "psi_rad": 1.8587190024436535, "kappa_radpm": 0.3702810173364016, "vx_mps": 3.987182207273121, "ax_mps2": 6.051954820306159}, {"id": 127, "s_m": 12.6858825004343, "d_m": 0.0, "x_m": -1.2980515048844365, "y_m": -4.673512251128893, "d_right": 1.9988333687383297, "d_left": 0.6609725985151954, "psi_rad": 1.8940555322148955, "kappa_radpm": 0.3232631019334839, "vx_mps": 4.136020724119644, "ax_mps2": 6.4039141056513245}, {"id": 128, "s_m": 12.785771339020396, "d_m": 0.0, "x_m": -1.331033591158159, "y_m": -4.5795668647320085, "d_right": 2.068406341888575, "d_left": 0.7090621349527501, "psi_rad": 1.9211238094117544, "kappa_radpm": 0.22189687180077008, "vx_mps": 4.2878930158277555, "ax_mps2": 6.818890623032208}, {"id": 129, "s_m": 12.885660177606493, "d_m": 0.0, "x_m": -1.3663472637733447, "y_m": -4.485704882794594, "d_right": 2.142373719160297, "d_left": 0.7658243724316207, "psi_rad": 1.938579469231251, "kappa_radpm": 0.12616874620078675, "vx_mps": 4.443904661977467, "ax_mps2": 6.732873648424959}, {"id": 130, "s_m": 12.98554901619259, "d_m": 0.0, "x_m": -1.4026060175149562, "y_m": -4.392893453185741, "d_right": 2.2187140125685105, "d_left": 0.8226294681084506, "psi_rad": 1.9462784482338937, "kappa_radpm": 0.029096321225639175, "vx_mps": 4.592751517654888, "ax_mps2": 6.650631558124667}, {"id": 131, "s_m": 13.085437854778688, "d_m": 0.0, "x_m": -1.4393365443459467, "y_m": -4.2996795115166835, "d_right": 2.2974522473749452, "d_left": 0.8848874778385422, "psi_rad": 1.9445268140778185, "kappa_radpm": -0.05304732030024261, "vx_mps": 4.735188932590919, "ax_mps2": 6.571770472248835}, {"id": 132, "s_m": 13.185326693364784, "d_m": 0.0, "x_m": -1.4755197011023504, "y_m": -4.206821365813029, "d_right": 2.3167846917379746, "d_left": 0.9496592726690176, "psi_rad": 1.9406587248210159, "kappa_radpm": -0.0247440332701233, "vx_mps": 4.871848444603568, "ax_mps2": 6.495960899418454}, {"id": 133, "s_m": 13.28521553195088, "d_m": 0.0, "x_m": -1.5116561850018169, "y_m": -4.113400152832023, "d_right": 2.2764235275356253, "d_left": 1.0018965830971054, "psi_rad": 1.9395661163657725, "kappa_radpm": 0.0025254978013383657, "vx_mps": 5.003264458998086, "ax_mps2": 6.422923877931787}, {"id": 134, "s_m": 13.385104370536977, "d_m": 0.0, "x_m": -1.547600534694576, "y_m": -4.020396288869338, "d_right": 2.2361827585478773, "d_left": 1.0526342517251794, "psi_rad": 1.939528953888857, "kappa_radpm": -0.003248245268749136, "vx_mps": 5.129893961833952, "ax_mps2": 6.352420733270913}, {"id": 135, "s_m": 13.484993209123074, "d_m": 0.0, "x_m": -1.5836356100610525, "y_m": -3.9270676973813865, "d_right": 2.195513308517945, "d_left": 1.0933501975033693, "psi_rad": 1.9389186694861944, "kappa_radpm": -0.008941438450254743, "vx_mps": 5.252131369089485, "ax_mps2": 6.284245361148301}, {"id": 136, "s_m": 13.58488204770917, "d_m": 0.0, "x_m": -1.6195471440107891, "y_m": -3.83386001332117, "d_right": 2.1493304033484506, "d_left": 1.1341230954095642, "psi_rad": 1.9383273428326082, "kappa_radpm": -0.001621991472536718, "vx_mps": 5.3703199028739546, "ax_mps2": 6.218218314093518}, {"id": 137, "s_m": 13.684770886295269, "d_m": 0.0, "x_m": -1.655454926088191, "y_m": -3.7406170156817318, "d_right": 2.0959736132069846, "d_left": 1.1750566335201444, "psi_rad": 1.9386004303383002, "kappa_radpm": 0.007090693702458333, "vx_mps": 5.484760438719574, "ax_mps2": 6.154182201560026}, {"id": 138, "s_m": 13.784659724881365, "d_m": 0.0, "x_m": -1.6914785913188932, "y_m": -3.6472814024602793, "d_right": 2.0461118068184234, "d_left": 1.2228042641031451, "psi_rad": 1.9398953090052182, "kappa_radpm": 0.019628890381485967, "vx_mps": 5.595718478914522, "ax_mps2": 6.091998063535286}, {"id": 139, "s_m": 13.884548563467462, "d_m": 0.0, "x_m": -1.7276109263820747, "y_m": -3.554209010828528, "d_right": 2.0002821380285085, "d_left": 1.2763423620651695, "psi_rad": 1.9425445385037008, "kappa_radpm": 0.03352744878436737, "vx_mps": 5.703429715332348, "ax_mps2": 6.0315424770191575}, {"id": 140, "s_m": 13.984437402053558, "d_m": 0.0, "x_m": -1.7641476666206253, "y_m": -3.4610334850019813, "d_right": 1.9582184228631792, "d_left": 1.3350907322312962, "psi_rad": 1.9467822698751511, "kappa_radpm": 0.052808142537365, "vx_mps": 5.808104515550691, "ax_mps2": 5.972705222036306}, {"id": 141, "s_m": 14.084326240639655, "d_m": 0.0, "x_m": -1.8010781829100206, "y_m": -3.3682997114605113, "d_right": 1.90329497548366, "d_left": 1.3806909942800276, "psi_rad": 1.9531641259064088, "kappa_radpm": 0.0752482195294617, "vx_mps": 5.909931576528867, "ax_mps2": 5.915387380318003}, {"id": 142, "s_m": 14.184215079225751, "d_m": 0.0, "x_m": -1.8387420214977466, "y_m": -3.275716509941897, "d_right": 1.8455677369108872, "d_left": 1.4309764361765633, "psi_rad": 1.9610730285309517, "kappa_radpm": 0.07210980770830834, "vx_mps": 6.009080927202313, "ax_mps2": 5.859499772448374}, {"id": 143, "s_m": 14.28410391781185, "d_m": 0.0, "x_m": -1.8770231577608893, "y_m": -3.1835083658885805, "d_right": 1.7872554437790165, "d_left": 1.4822494737322411, "psi_rad": 1.967158562678307, "kappa_radpm": 0.049611385809990714, "vx_mps": 6.105706416426961, "ax_mps2": 5.804961662598049}, {"id": 144, "s_m": 14.383992756397946, "d_m": 0.0, "x_m": -1.9157976255372366, "y_m": -3.0914013112720804, "d_right": 1.7319830272693957, "d_left": 1.5198193517343768, "psi_rad": 1.9709525495107976, "kappa_radpm": 0.026260438630784262, "vx_mps": 6.199947790153142, "ax_mps2": 5.751699676870196}, {"id": 145, "s_m": 14.483881594984043, "d_m": 0.0, "x_m": -1.9547997804152768, "y_m": -2.9994275226294933, "d_right": 1.6730855855508473, "d_left": 1.5571768718465933, "psi_rad": 1.9723838443816306, "kappa_radpm": 0.0022271846879359835, "vx_mps": 6.291932437801761, "ax_mps2": -2.237722665069054}, {"id": 146, "s_m": 14.58377043357014, "d_m": 0.0, "x_m": -1.993858482433669, "y_m": -2.9073789247901476, "d_right": 1.612508055279846, "d_left": 1.5945863400143854, "psi_rad": 1.9714566064830519, "kappa_radpm": -0.018951935936507947, "vx_mps": 6.256306159842159, "ax_mps2": -10.762450026516209}, {"id": 147, "s_m": 14.683659272156236, "d_m": 0.0, "x_m": -2.032710585690103, "y_m": -2.815334571776412, "d_right": 1.5392479091719022, "d_left": 1.6321737340327385, "psi_rad": 1.9686571601888123, "kappa_radpm": -0.03732102351009904, "vx_mps": 6.082044845173351, "ax_mps2": -10.303416918141508}, {"id": 148, "s_m": 14.783548110742332, "d_m": 0.0, "x_m": -2.071228118864227, "y_m": -2.7231264023858217, "d_right": 1.468846803279957, "d_left": 1.6701479174190652, "psi_rad": 1.964066690103231, "kappa_radpm": -0.052432777161905426, "vx_mps": 5.910404114767174, "ax_mps2": -10.026787484931578}, {"id": 149, "s_m": 14.88343694932843, "d_m": 0.0, "x_m": -2.1092302372795615, "y_m": -2.6307987652362548, "d_right": 1.3993266767254826, "d_left": 1.708605962543061, "psi_rad": 1.958270590194126, "kappa_radpm": -0.06378771522288129, "vx_mps": 5.738444779434395, "ax_mps2": -9.991412227548695}, {"id": 150, "s_m": 14.983325787914527, "d_m": 0.0, "x_m": -2.1466424640808857, "y_m": -2.538241952118942, "d_right": 1.3102405476081143, "d_left": 1.7476791997616068, "psi_rad": 1.9515017205822975, "kappa_radpm": -0.06879788409121669, "vx_mps": 5.5618061239248835, "ax_mps2": -9.98927111308975}, {"id": 151, "s_m": 15.083214626500624, "d_m": 0.0, "x_m": -2.1833916492259444, "y_m": -2.4455047397321485, "d_right": 1.2225452968613237, "d_left": 1.7885006539193196, "psi_rad": 1.9446874509066137, "kappa_radpm": -0.067645931660789, "vx_mps": 5.379410188906585, "ax_mps2": -9.975272018919101}, {"id": 152, "s_m": 15.18310346508672, "d_m": 0.0, "x_m": -2.219387572006154, "y_m": -2.3528259973090613, "d_right": 1.1367614538580442, "d_left": 1.8342840884002187, "psi_rad": 1.9376141933232183, "kappa_radpm": -0.07900822113506693, "vx_mps": 5.19087827900169, "ax_mps2": -9.762781533031184}, {"id": 153, "s_m": 15.282992303672817, "d_m": 0.0, "x_m": -2.2548305871514467, "y_m": -2.259403316616075, "d_right": 1.0525279222116384, "d_left": 1.8628592479661814, "psi_rad": 1.9289550244224145, "kappa_radpm": -0.09337307630163352, "vx_mps": 4.999483122284042, "ax_mps2": -9.737010228952853}, {"id": 154, "s_m": 15.382881142258913, "d_m": 0.0, "x_m": -2.289201353263022, "y_m": -2.1663939942257144, "d_right": 0.9713656806931261, "d_left": 1.8817622385607375, "psi_rad": 1.9216209344731563, "kappa_radpm": -0.03951793733973011, "vx_mps": 4.800999292216248, "ax_mps2": -11.176004889163412}, {"id": 155, "s_m": 15.482769980845012, "d_m": 0.0, "x_m": -2.3236527619918492, "y_m": -2.0720177775077486, "d_right": 0.8925864680598224, "d_left": 1.848325634407505, "psi_rad": 1.921135430020149, "kappa_radpm": 0.028418185431309775, "vx_mps": 4.562551688149815, "ax_mps2": -10.927118576435}, {"id": 156, "s_m": 15.582658819431108, "d_m": 0.0, "x_m": -2.3578921707845386, "y_m": -1.9785466198076516, "d_right": 0.8193030423741688, "d_left": 1.8139716828191115, "psi_rad": 1.920915339663392, "kappa_radpm": -0.06144274221837599, "vx_mps": 4.316698221980942, "ax_mps2": -9.016076633175436}, {"id": 157, "s_m": 15.682547658017205, "d_m": 0.0, "x_m": -2.3918329503377493, "y_m": -1.8841054879486328, "d_right": 0.7510902006393184, "d_left": 1.7799490721780236, "psi_rad": 1.9087007725957357, "kappa_radpm": -0.18113556425070576, "vx_mps": 4.102764030829844, "ax_mps2": -7.973108607243031}, {"id": 158, "s_m": 15.782436496603301, "d_m": 0.0, "x_m": -2.4240058671914095, "y_m": -1.7893100491104172, "d_right": 0.6894298463912705, "d_left": 1.7477125124537782, "psi_rad": 1.8858969902066856, "kappa_radpm": -0.26810061043865047, "vx_mps": 3.903821662842005, "ax_mps2": -7.1869744962011755}, {"id": 159, "s_m": 15.882325335189398, "d_m": 0.0, "x_m": -2.453573386037882, "y_m": -1.6938388527734083, "d_right": 0.6353088321471198, "d_left": 1.7181004122943573, "psi_rad": 1.85495604712855, "kappa_radpm": -0.3525340639891197, "vx_mps": 3.715377033966762, "ax_mps2": -6.629788416184491}, {"id": 160, "s_m": 15.982214173775496, "d_m": 0.0, "x_m": -2.4798797422732717, "y_m": -1.5969168411080135, "d_right": 0.5897455911635906, "d_left": 1.6827061408513384, "psi_rad": 1.815367752254024, "kappa_radpm": -0.4341870137561984, "vx_mps": 3.532639632710812, "ax_mps2": -6.113643626471228}, {"id": 161, "s_m": 16.082103012361593, "d_m": 0.0, "x_m": -2.5017729120399492, "y_m": -1.4996875843592445, "d_right": 0.5464465377464564, "d_left": 1.6326660023648116, "psi_rad": 1.7676429459516583, "kappa_radpm": -0.526717652764247, "vx_mps": 3.3553201414833986, "ax_mps2": -5.890983852965156}, {"id": 162, "s_m": 16.18199185094769, "d_m": 0.0, "x_m": -2.5186622075391276, "y_m": -1.400581660234047, "d_right": 0.506406423035231, "d_left": 1.5917799574027534, "psi_rad": 1.7102096367395214, "kappa_radpm": -0.6098417011254585, "vx_mps": 3.175104121354117, "ax_mps2": -5.778499275370468}, {"id": 163, "s_m": 16.281880689533786, "d_m": 0.0, "x_m": -2.529343856171878, "y_m": -1.3017852759919966, "d_right": 0.4784036621940429, "d_left": 1.5625003110941378, "psi_rad": 1.645276554839972, "kappa_radpm": -0.7008066435446444, "vx_mps": 2.9877869767882026, "ax_mps2": -4.470720750637909}, {"id": 164, "s_m": 16.381769528119882, "d_m": 0.0, "x_m": -2.532989294695509, "y_m": -1.2011483429944203, "d_right": 0.46298496453957877, "d_left": 1.545913141337152, "psi_rad": 1.564482933404276, "kappa_radpm": -0.9410753059952237, "vx_mps": 2.8343819100144607, "ax_mps2": -2.314765909648797}, {"id": 165, "s_m": 16.48165836670598, "d_m": 0.0, "x_m": -2.5272497823388425, "y_m": -1.102548286133968, "d_right": 0.4596003983587867, "d_left": 1.5304912809846196, "psi_rad": 1.4551833802084397, "kappa_radpm": -1.2830724142430503, "vx_mps": 2.7515963103606254, "ax_mps2": -2.112515047769705}, {"id": 166, "s_m": 16.581547205292075, "d_m": 0.0, "x_m": -2.5090022824652887, "y_m": -1.0038415889395957, "d_right": 0.4575042644643629, "d_left": 1.5302766552107538, "psi_rad": 1.3194162891608259, "kappa_radpm": -1.3868761437740336, "vx_mps": 2.673807941112351, "ax_mps2": -2.065081191128046}, {"id": 167, "s_m": 16.681436043878172, "d_m": 0.0, "x_m": -2.4777602520963873, "y_m": -0.9098253928452652, "d_right": 0.45070768647893955, "d_left": 1.5499895150916592, "psi_rad": 1.1798072308059653, "kappa_radpm": -1.4531291456475626, "vx_mps": 2.595513780048167, "ax_mps2": -0.35167914935913236}, {"id": 168, "s_m": 16.78132488246427, "d_m": 0.0, "x_m": -2.4326158731598633, "y_m": -0.8206168572560644, "d_right": 0.4511335260230417, "d_left": 1.5735239913081387, "psi_rad": 1.0198356589988458, "kappa_radpm": -1.7511749051499759, "vx_mps": 2.5819438682610945, "ax_mps2": -0.02575143213608162}, {"id": 169, "s_m": 16.88121372105037, "d_m": 0.0, "x_m": -2.373124440885596, "y_m": -0.7411065393050873, "d_right": 0.4562222386966357, "d_left": 1.6176571489059866, "psi_rad": 0.8359093813844357, "kappa_radpm": -1.801452985985402, "vx_mps": 2.580947418595555, "ax_mps2": -0.025751432136082535}, {"id": 170, "s_m": 16.981102559636465, "d_m": 0.0, "x_m": -2.3001450313126, "y_m": -0.6730377069280848, "d_right": 0.46531449642939837, "d_left": 1.6811530637920422, "psi_rad": 0.6698302076351669, "kappa_radpm": -1.5297468202694788, "vx_mps": 2.5799505840730856, "ax_mps2": 1.792051782003185}, {"id": 171, "s_m": 17.08099139822256, "d_m": 0.0, "x_m": -2.217805619371843, "y_m": -0.617096993900196, "d_right": 0.48019467734996346, "d_left": 1.75820017851188, "psi_rad": 0.5259681687218556, "kappa_radpm": -1.3807776516982364, "vx_mps": 2.6484253734322856, "ax_mps2": 2.2878932675533448}, {"id": 172, "s_m": 17.180880236808658, "d_m": 0.0, "x_m": -2.128015290375852, "y_m": -0.5727463766626149, "d_right": 0.47493573861160904, "d_left": 1.8308861379096086, "psi_rad": 0.39357803352290466, "kappa_radpm": -1.2628398058613661, "vx_mps": 2.7333545253496934, "ax_mps2": 2.5361546800211174}, {"id": 173, "s_m": 17.280769075394755, "d_m": 0.0, "x_m": -2.0342114301956093, "y_m": -0.5403477898591559, "d_right": 0.46664725509826455, "d_left": 1.8829654256189678, "psi_rad": 0.27318755369838055, "kappa_radpm": -1.163455509032664, "vx_mps": 2.8245166050447734, "ax_mps2": 2.6872340095425082}, {"id": 174, "s_m": 17.38065791398085, "d_m": 0.0, "x_m": -1.9364593804136763, "y_m": -0.5188528229090955, "d_right": 0.4679809742772055, "d_left": 1.9482906034425644, "psi_rad": 0.1610946915398106, "kappa_radpm": -1.0828249299135404, "vx_mps": 2.9180033277256854, "ax_mps2": 2.7471069774310415}, {"id": 175, "s_m": 17.480546752566948, "d_m": 0.0, "x_m": -1.8374755229964028, "y_m": -0.5081187730431079, "d_right": 0.4787440174652236, "d_left": 2.023468987936476, "psi_rad": 0.05576224086850479, "kappa_radpm": -1.0336578131596321, "vx_mps": 3.0105737113568356, "ax_mps2": 2.5963483338316844}, {"id": 176, "s_m": 17.580435591153044, "d_m": 0.0, "x_m": -1.737499198345143, "y_m": -0.5076153756799756, "d_right": 0.48015244005140756, "d_left": 2.0816707306904156, "psi_rad": -0.04378781023030731, "kappa_radpm": -0.9150441251695202, "vx_mps": 3.095520394178604, "ax_mps2": 3.194778260958654}, {"id": 177, "s_m": 17.68032442973914, "d_m": 0.0, "x_m": -1.6379435358067729, "y_m": -0.5162224670012396, "d_right": 0.4930917498278838, "d_left": 2.101656475190488, "psi_rad": -0.12557532118824022, "kappa_radpm": -0.7278234225271802, "vx_mps": 3.1969504048124047, "ax_mps2": 4.521775898712042}, {"id": 178, "s_m": 17.780213268325237, "d_m": 0.0, "x_m": -1.5392401022852633, "y_m": -0.5321259631598599, "d_right": 0.5002346173023897, "d_left": 2.1331733671730184, "psi_rad": -0.192863478054903, "kappa_radpm": -0.6580145142452298, "vx_mps": 3.335242386479294, "ax_mps2": 4.637347743786134}, {"id": 179, "s_m": 17.880102106911334, "d_m": 0.0, "x_m": -1.441802430105932, "y_m": -0.5545076261575663, "d_right": 0.5163794501103254, "d_left": 2.153353602708697, "psi_rad": -0.25874428121287707, "kappa_radpm": -0.6601841254928801, "vx_mps": 3.471351370440826, "ax_mps2": 3.9980118440389174}, {"id": 180, "s_m": 17.97999094549743, "d_m": 0.0, "x_m": -1.3460125408599999, "y_m": -0.5832046436437947, "d_right": 0.5310464750323491, "d_left": 2.12450192969982, "psi_rad": -0.3215626363419595, "kappa_radpm": -0.5617745716993305, "vx_mps": 3.584549324053222, "ax_mps2": 4.732089916794555}, {"id": 181, "s_m": 18.07987978408353, "d_m": 0.0, "x_m": -1.2519897542589715, "y_m": -0.6172406732701887, "d_right": 0.5458498464224039, "d_left": 2.1055366163750735, "psi_rad": -0.3708315338204342, "kappa_radpm": -0.4265461942405803, "vx_mps": 3.7140758996441656, "ax_mps2": 6.0627416409612875}, {"id": 182, "s_m": 18.179768622669627, "d_m": 0.0, "x_m": -1.159276408779687, "y_m": -0.6554375170537502, "d_right": 0.5697044325793028, "d_left": 2.091882827938823, "psi_rad": -0.41016003984984395, "kappa_radpm": -0.3806567685716241, "vx_mps": 3.8737011023882566, "ax_mps2": 6.230022944180158}, {"id": 183, "s_m": 18.279657461255724, "d_m": 0.0, "x_m": -1.0686333576987257, "y_m": -0.696891498245546, "d_right": 0.5716131960704083, "d_left": 2.077100922854506, "psi_rad": -0.44752964726573863, "kappa_radpm": -0.3698572137493525, "vx_mps": 4.03115116848299, "ax_mps2": 5.926933318442806}, {"id": 184, "s_m": 18.37954629984182, "d_m": 0.0, "x_m": -0.9788860041599964, "y_m": -0.742022259435503, "d_right": 0.5576867348304595, "d_left": 2.0706750684776916, "psi_rad": -0.48416206689472574, "kappa_radpm": -0.35959997680909855, "vx_mps": 4.175433955204507, "ax_mps2": 5.663246675101026}, {"id": 185, "s_m": 18.479435138427917, "d_m": 0.0, "x_m": -0.8918515457759948, "y_m": -0.7897856777359136, "d_right": 0.5579667799145192, "d_left": 2.072672382648591, "psi_rad": -0.5195901008376271, "kappa_radpm": -0.35530231418230757, "vx_mps": 4.308786253723847, "ax_mps2": 5.331813848804358}, {"id": 186, "s_m": 18.579323977014013, "d_m": 0.0, "x_m": -0.805056145051499, "y_m": -0.8414596896217884, "d_right": 0.5709499354606629, "d_left": 2.08309519382514, "psi_rad": -0.5537286992873076, "kappa_radpm": -0.31786300235019765, "vx_mps": 4.430667711091439, "ax_mps2": 5.684200316314971}, {"id": 187, "s_m": 18.67921281560011, "d_m": 0.0, "x_m": -0.7216378810256323, "y_m": -0.8947901722619274, "d_right": 0.5627581750901156, "d_left": 2.1002506349720815, "psi_rad": -0.5832901965417023, "kappa_radpm": -0.27956652225958883, "vx_mps": 4.557015767131281, "ax_mps2": 6.1141324091757605}, {"id": 188, "s_m": 18.779101654186206, "d_m": 0.0, "x_m": -0.6382715041369051, "y_m": -0.9514189453791705, "d_right": 0.540537947844415, "d_left": 2.103947896531194, "psi_rad": -0.6093117292862575, "kappa_radpm": -0.23421942058500567, "vx_mps": 4.689121439300912, "ax_mps2": 6.5972930999964}, {"id": 189, "s_m": 18.878990492772303, "d_m": 0.0, "x_m": -0.5572492060459113, "y_m": -1.00927469272199, "d_right": 0.5342408680497771, "d_left": 2.114636130129093, "psi_rad": -0.6302791257199427, "kappa_radpm": -0.19809838831734516, "vx_mps": 4.8276134646068005, "ax_mps2": 6.5205153179158}, {"id": 190, "s_m": 18.9788793313584, "d_m": 0.0, "x_m": -0.4776217552545291, "y_m": -1.0685435992787264, "d_right": 0.5421942306739106, "d_left": 2.1259124521461104, "psi_rad": -0.6491451303193951, "kappa_radpm": -0.18009465452619516, "vx_mps": 4.960696036629517, "ax_mps2": 6.446596732595551}, {"id": 191, "s_m": 19.078768169944496, "d_m": 0.0, "x_m": -0.39823556341304, "y_m": -1.129878255091013, "d_right": 0.5382259169489149, "d_left": 2.1318890041435794, "psi_rad": -0.6661224366674015, "kappa_radpm": -0.1576965277841372, "vx_mps": 5.088849701920424, "ax_mps2": 6.375286407830817}, {"id": 192, "s_m": 19.178657008530593, "d_m": 0.0, "x_m": -0.3204526594564286, "y_m": -1.19194791295937, "d_right": 0.5291787859313266, "d_left": 2.12581560182706, "psi_rad": -0.680440654869582, "kappa_radpm": -0.13041678806605078, "vx_mps": 5.212488004648018, "ax_mps2": 6.306368281250011}, {"id": 193, "s_m": 19.278545847116693, "d_m": 0.0, "x_m": -0.24343217677693105, "y_m": -1.2550582477853283, "d_right": 0.537426332671007, "d_left": 2.1159917778781216, "psi_rad": -0.6919646661717946, "kappa_radpm": -0.09981332062196009, "vx_mps": 5.331969880374424, "ax_mps2": 6.239654722436822}, {"id": 194, "s_m": 19.37843468570279, "d_m": 0.0, "x_m": -0.1667912858350254, "y_m": -1.3192334358041258, "d_right": 0.5461980972924388, "d_left": 2.1071831545600372, "psi_rad": -0.7025518939474313, "kappa_radpm": -0.115251919760175, "vx_mps": 5.447609249205103, "ax_mps2": 6.174981545614835}, {"id": 195, "s_m": 19.478323524288886, "d_m": 0.0, "x_m": -0.09109422427782664, "y_m": -1.384083457102148, "d_right": 0.5367533049465539, "d_left": 2.099521719568515, "psi_rad": -0.7136649321365245, "kappa_radpm": -0.0839170575780704, "vx_mps": 5.559682545054985, "ax_mps2": 6.112204094438099}, {"id": 196, "s_m": 19.578212362874982, "d_m": 0.0, "x_m": -0.01578218762606003, "y_m": -1.4496790641435358, "d_right": 0.525749244070104, "d_left": 2.0926563212215252, "psi_rad": -0.7181749794500094, "kappa_radpm": -0.014598697363646685, "vx_mps": 5.6684346991191745, "ax_mps2": 6.05119412989958}, {"id": 197, "s_m": 19.67810120146108, "d_m": 0.0, "x_m": 0.059254834312382904, "y_m": -1.5153730954014677, "d_right": 0.5323564693038755, "d_left": 2.086056811897165, "psi_rad": -0.7202361916628321, "kappa_radpm": -0.026514133726220267, "vx_mps": 5.774083948607574, "ax_mps2": 5.991837328679285}, {"id": 198, "s_m": 19.777990040047175, "d_m": 0.0, "x_m": 0.13402552972728038, "y_m": -1.5812072356116516, "d_right": 0.5386849726708499, "d_left": 2.0797461000132307, "psi_rad": -0.724252884393521, "kappa_radpm": -0.061918952096775816, "vx_mps": 5.876825740915313, "ax_mps2": 5.934031251622357}, {"id": 199, "s_m": 19.877878878633272, "d_m": 0.0, "x_m": 0.20873288716109503, "y_m": -1.6478073136518465, "d_right": 0.5236528460807264, "d_left": 2.07496737152146, "psi_rad": -0.7326312737683649, "kappa_radpm": -0.1044059962195066, "vx_mps": 5.976835932899709, "ax_mps2": 5.877683678633701}, {"id": 200, "s_m": 19.97776771721937, "d_m": 0.0, "x_m": 0.28253035878251087, "y_m": -1.7149837872135458, "d_right": 0.5127505407577618, "d_left": 2.0760387524017037, "psi_rad": -0.7449030063795341, "kappa_radpm": -0.14055580012119814, "vx_mps": 6.074273434845643, "ax_mps2": 5.82271123228521}, {"id": 201, "s_m": 20.077656555805465, "d_m": 0.0, "x_m": 0.3552496525056911, "y_m": -1.7830140416189264, "d_right": 0.5197116844510395, "d_left": 2.0832327357762037, "psi_rad": -0.7590524848851974, "kappa_radpm": -0.1315132282840755, "vx_mps": 6.169282412574566, "ax_mps2": 3.616121821108945}, {"id": 202, "s_m": 20.17754539439156, "d_m": 0.0, "x_m": 0.42761535920367183, "y_m": -1.8525188777810047, "d_right": 0.544103329345947, "d_left": 2.0965523218844067, "psi_rad": -0.7711084117046516, "kappa_radpm": -0.1218255804475562, "vx_mps": 6.227556977169674, "ax_mps2": -4.886255410465722}, {"id": 203, "s_m": 20.277434232977658, "d_m": 0.0, "x_m": 0.49849443333953725, "y_m": -1.9224093335557484, "d_right": 0.5276785330289591, "d_left": 2.100095837964485, "psi_rad": -0.7868064187781032, "kappa_radpm": -0.1920287679666421, "vx_mps": 6.148682879114989, "ax_mps2": -3.8163729516001808}, {"id": 204, "s_m": 20.377323071563758, "d_m": 0.0, "x_m": 0.5682672524145963, "y_m": -1.9938659868016395, "d_right": 0.5166759246183906, "d_left": 2.1076229587124056, "psi_rad": -0.8083612021788111, "kappa_radpm": -0.2247829761930738, "vx_mps": 6.086367966564977, "ax_mps2": -3.807494153643092}, {"id": 205, "s_m": 20.477211910149855, "d_m": 0.0, "x_m": 0.6367070690520905, "y_m": -2.067172058081236, "d_right": 0.5132339603233095, "d_left": 2.122112681709078, "psi_rad": -0.8311513430290924, "kappa_radpm": -0.22965905737902195, "vx_mps": 6.023555651487481, "ax_mps2": -3.6218182298871198}, {"id": 206, "s_m": 20.57710074873595, "d_m": 0.0, "x_m": 0.7028795165112827, "y_m": -2.141400202097156, "d_right": 0.5169636814718447, "d_left": 2.143255125141506, "psi_rad": -0.8544438381898254, "kappa_radpm": -0.23947496882878727, "vx_mps": 5.963192454839942, "ax_mps2": -3.5181238020684407}, {"id": 207, "s_m": 20.676989587322048, "d_m": 0.0, "x_m": 0.7678586188859907, "y_m": -2.21789811661965, "d_right": 0.5349138192427442, "d_left": 2.153489876371131, "psi_rad": -0.8789886039255799, "kappa_radpm": -0.2472005890385637, "vx_mps": 5.903966603248919, "ax_mps2": -3.4935172218828203}, {"id": 208, "s_m": 20.776878425908144, "d_m": 0.0, "x_m": 0.8303990971664791, "y_m": -2.2952891644096316, "d_right": 0.5243951473349663, "d_left": 2.1509202383021258, "psi_rad": -0.9031197094753063, "kappa_radpm": -0.23807447534869677, "vx_mps": 5.844561138060733, "ax_mps2": -3.9684627134292962}, {"id": 209, "s_m": 20.87676726449424, "d_m": 0.0, "x_m": 0.8914383295340018, "y_m": -2.3746050220998876, "d_right": 0.5114621175350992, "d_left": 2.136504632254307, "psi_rad": -0.9264463337009681, "kappa_radpm": -0.22457215906055603, "vx_mps": 5.7763383413453555, "ax_mps2": -4.593497762769217}, {"id": 210, "s_m": 20.976656103080337, "d_m": 0.0, "x_m": 0.9505269574761042, "y_m": -2.455050578965284, "d_right": 0.5083996318535747, "d_left": 2.1276507272882053, "psi_rad": -0.9477427492232673, "kappa_radpm": -0.2024877681244628, "vx_mps": 5.696350263155761, "ax_mps2": -5.549260388475372}, {"id": 211, "s_m": 21.076544941666434, "d_m": 0.0, "x_m": 1.0080177647714665, "y_m": -2.5367535318612107, "d_right": 0.5059186171376899, "d_left": 2.122415108846902, "psi_rad": -0.9675526098238594, "kappa_radpm": -0.2050547329296711, "vx_mps": 5.598195063600539, "ax_mps2": -5.21209243783426}, {"id": 212, "s_m": 21.17643378025253, "d_m": 0.0, "x_m": 1.0638762936268402, "y_m": -2.6197112749148284, "d_right": 0.5101545052572088, "d_left": 2.1193690862987093, "psi_rad": -0.9892079751560838, "kappa_radpm": -0.2279000666754247, "vx_mps": 5.50440989114039, "ax_mps2": -3.12768219793128}, {"id": 213, "s_m": 21.276322618838627, "d_m": 0.0, "x_m": 1.117728969229917, "y_m": -2.7038307922033664, "d_right": 0.5096252067600483, "d_left": 2.1190814621946577, "psi_rad": -1.0148295842904265, "kappa_radpm": -0.3028619688186877, "vx_mps": 5.447355979303044, "ax_mps2": -0.11462498921425568}, {"id": 214, "s_m": 21.376211457424724, "d_m": 0.0, "x_m": 1.1690958507869953, "y_m": -2.789695396147911, "d_right": 0.5074125978634203, "d_left": 2.1208703177620687, "psi_rad": -1.0502254497627512, "kappa_radpm": -0.4047110026613928, "vx_mps": 5.4452536810655126, "ax_mps2": -0.11462498921423789}, {"id": 215, "s_m": 21.47610029601082, "d_m": 0.0, "x_m": 1.216935888307969, "y_m": -2.877270824219495, "d_right": 0.5123209055697666, "d_left": 2.1280868218175817, "psi_rad": -1.090588297448086, "kappa_radpm": -0.3720042710020918, "vx_mps": 5.443150570861182, "ax_mps2": 0.8637626087189016}, {"id": 216, "s_m": 21.57598913459692, "d_m": 0.0, "x_m": 1.2615982592376724, "y_m": -2.9667769356166223, "d_right": 0.5179798226396775, "d_left": 2.139827941239557, "psi_rad": -1.1241056704829075, "kappa_radpm": -0.29852989458481105, "vx_mps": 5.458978716267766, "ax_mps2": 1.2048323316643275}, {"id": 217, "s_m": 21.675877973183017, "d_m": 0.0, "x_m": 1.3033995297683927, "y_m": -3.0573613196694134, "d_right": 0.5003312385551705, "d_left": 2.1487047000738206, "psi_rad": -1.1526258451488314, "kappa_radpm": -0.28222836879321284, "vx_mps": 5.480980498894913, "ax_mps2": -3.6177370616761535}, {"id": 218, "s_m": 21.775766811769113, "d_m": 0.0, "x_m": 1.342737957458891, "y_m": -3.149343063048443, "d_right": 0.4844233399217369, "d_left": 2.1450851551836445, "psi_rad": -1.1806178051990468, "kappa_radpm": -0.2775445754834852, "vx_mps": 5.414647183562832, "ax_mps2": -3.907428445174625}, {"id": 219, "s_m": 21.87565565035521, "d_m": 0.0, "x_m": 1.3794493269648076, "y_m": -3.242114613224937, "d_right": 0.48244790475749216, "d_left": 2.1483173678282204, "psi_rad": -1.2067471804317504, "kappa_radpm": -0.24337926512845315, "vx_mps": 5.342077043994346, "ax_mps2": -5.102105085130593}, {"id": 220, "s_m": 21.975544488941306, "d_m": 0.0, "x_m": 1.413980619259898, "y_m": -3.3359871419366716, "d_right": 0.479497846412623, "d_left": 2.139147162781178, "psi_rad": -1.2292571155192662, "kappa_radpm": -0.20690352945925303, "vx_mps": 5.24580789215308, "ax_mps2": -6.0568394064520765}, {"id": 221, "s_m": 22.075433327527403, "d_m": 0.0, "x_m": 1.4464130248181526, "y_m": -3.4303863014102722, "d_right": 0.47988378443211244, "d_left": 2.1349058686861566, "psi_rad": -1.250896402073149, "kappa_radpm": -0.2297686896280575, "vx_mps": 5.1291791871360415, "ax_mps2": -5.639106106061028}, {"id": 222, "s_m": 22.1753221661135, "d_m": 0.0, "x_m": 1.4767169603298276, "y_m": -3.5256537021333307, "d_right": 0.4984370410740697, "d_left": 2.1296371548375674, "psi_rad": -1.2751959809047113, "kappa_radpm": -0.25646357012837717, "vx_mps": 5.018158189470828, "ax_mps2": -2.945394749479927}, {"id": 223, "s_m": 22.275211004699596, "d_m": 0.0, "x_m": 1.5044245255567383, "y_m": -3.62168013853647, "d_right": 0.526229434816579, "d_left": 2.130553426603181, "psi_rad": -1.3065181230088525, "kappa_radpm": -0.3720366851245626, "vx_mps": 4.959182139541445, "ax_mps2": -0.09500094217962447}, {"id": 224, "s_m": 22.375099843285692, "d_m": 0.0, "x_m": 1.5285146037237316, "y_m": -3.7185590635512993, "d_right": 0.5372937660492269, "d_left": 2.1316200769108824, "psi_rad": -1.34963758740001, "kappa_radpm": -0.4883108867196948, "vx_mps": 4.957268242246838, "ax_mps2": -0.09500094217964226}, {"id": 225, "s_m": 22.47498868187179, "d_m": 0.0, "x_m": 1.5481660472520948, "y_m": -3.8165966527667106, "d_right": 0.5289916027851326, "d_left": 2.1402856488954627, "psi_rad": -1.3952195330594792, "kappa_radpm": -0.4233609687089688, "vx_mps": 4.955353605751181, "ax_mps2": 1.5092197315457272}, {"id": 226, "s_m": 22.574877520457886, "d_m": 0.0, "x_m": 1.5636233793378262, "y_m": -3.9151816045412167, "d_right": 0.5170705282121434, "d_left": 2.1507524776769436, "psi_rad": -1.434242703592218, "kappa_radpm": -0.35631746149135124, "vx_mps": 4.985683280187569, "ax_mps2": 3.0469102480727797}, {"id": 227, "s_m": 22.674766359043986, "d_m": 0.0, "x_m": 1.5756454682832146, "y_m": -4.014472386970355, "d_right": 0.5035421219348688, "d_left": 2.1666024505050565, "psi_rad": -1.4645984446333777, "kappa_radpm": -0.2504302349254947, "vx_mps": 5.0463593235375175, "ax_mps2": 5.524161838793268}, {"id": 228, "s_m": 22.774655197630082, "d_m": 0.0, "x_m": 1.5851577398971675, "y_m": -4.113805823947132, "d_right": 0.48361814227855776, "d_left": 2.183539924207149, "psi_rad": -1.4844321858499527, "kappa_radpm": -0.1719275927462669, "vx_mps": 5.154546211135508, "ax_mps2": -0.6403248114065093}, {"id": 229, "s_m": 22.87454403621618, "d_m": 0.0, "x_m": 1.592713415863686, "y_m": -4.213577342020667, "d_right": 0.4680689938974244, "d_left": 2.2033870488901743, "psi_rad": -1.508185455350072, "kappa_radpm": -0.3036187471890447, "vx_mps": 5.142122522779179, "ax_mps2": -1.4734714308072099}, {"id": 230, "s_m": 22.974432874802275, "d_m": 0.0, "x_m": 1.597224835701597, "y_m": -4.313208969930013, "d_right": 0.4705724902540735, "d_left": 2.2230609288846903, "psi_rad": -1.5448915329728186, "kappa_radpm": -0.4064552498075425, "vx_mps": 5.113419339292119, "ax_mps2": -1.3808493682169718}, {"id": 231, "s_m": 23.074321713388372, "d_m": 0.0, "x_m": 1.5978435017168775, "y_m": -4.413199404939643, "d_right": 0.4900128820013912, "d_left": 2.2411408028125037, "psi_rad": -1.5837158915672642, "kappa_radpm": -0.36981497459419305, "vx_mps": 5.08637340942833, "ax_mps2": -2.505706441891934}, {"id": 232, "s_m": 23.17421055197447, "d_m": 0.0, "x_m": 1.5947720483476457, "y_m": -4.512929344144669, "d_right": 0.5178077931107277, "d_left": 2.2670050087126863, "psi_rad": -1.6191811511650203, "kappa_radpm": -0.3636667751528232, "vx_mps": 5.03692468153962, "ax_mps2": -1.0225449330986833}, {"id": 233, "s_m": 23.274099390560565, "d_m": 0.0, "x_m": 1.5879997473397034, "y_m": -4.612623778285781, "d_right": 0.5110625344238552, "d_left": 2.3004473473828067, "psi_rad": -1.659337207934895, "kappa_radpm": -0.44006195996020314, "vx_mps": 5.016605286043975, "ax_mps2": -0.09721374117784377}, {"id": 234, "s_m": 23.37398822914666, "d_m": 0.0, "x_m": 1.576878343346568, "y_m": -4.711797647799342, "d_right": 0.5000224260294832, "d_left": 2.341624562614464, "psi_rad": -1.7063190348769544, "kappa_radpm": -0.4771958547514979, "vx_mps": 5.014669227432915, "ax_mps2": -0.097213741177826}, {"id": 235, "s_m": 23.473877067732758, "d_m": 0.0, "x_m": 1.561072695461353, "y_m": -4.810423816676197, "d_right": 0.4863172416582728, "d_left": 2.3904354754972053, "psi_rad": -1.7526381331274292, "kappa_radpm": -0.45021384699347583, "vx_mps": 5.012732421061481, "ax_mps2": 0.5901190539589082}, {"id": 236, "s_m": 23.573765906318854, "d_m": 0.0, "x_m": 1.5408642518626219, "y_m": -4.908268814904084, "d_right": 0.4884694525815433, "d_left": 2.4378732339281104, "psi_rad": -1.794937796826682, "kappa_radpm": -0.36762475547505674, "vx_mps": 5.024477976766926, "ax_mps2": 2.62157932521418}, {"id": 237, "s_m": 23.67365474490495, "d_m": 0.0, "x_m": 1.5171045433933315, "y_m": -5.005298971735806, "d_right": 0.49448762296777504, "d_left": 2.4513378812593243, "psi_rad": -1.8245858172313314, "kappa_radpm": -0.22603782487879412, "vx_mps": 5.076328591327575, "ax_mps2": 6.075586902087178}, {"id": 238, "s_m": 23.773543583491048, "d_m": 0.0, "x_m": 1.4910816791537083, "y_m": -5.1017793346793585, "d_right": 0.49357341202329924, "d_left": 2.461583050352031, "psi_rad": -1.8437601209142507, "kappa_radpm": -0.20741469318893052, "vx_mps": 5.194504654525451, "ax_mps2": 6.299043213845225}, {"id": 239, "s_m": 23.873432422077148, "d_m": 0.0, "x_m": 1.4630735794745353, "y_m": -5.197593478242518, "d_right": 0.5004260737809799, "d_left": 2.4778643999389445, "psi_rad": -1.8676937938422755, "kappa_radpm": -0.27197740618414795, "vx_mps": 5.314253176840174, "ax_mps2": 4.209831966724052}, {"id": 240, "s_m": 23.973321260663244, "d_m": 0.0, "x_m": 1.4324971329298257, "y_m": -5.292648500060836, "d_right": 0.5083658766985564, "d_left": 2.490624486081881, "psi_rad": -1.8966975138015751, "kappa_radpm": -0.2983735796071182, "vx_mps": 5.392802358621467, "ax_mps2": 3.210177512378649}, {"id": 241, "s_m": 24.07321009924934, "d_m": 0.0, "x_m": 1.3990992225861574, "y_m": -5.38676587484778, "d_right": 0.5109887454177191, "d_left": 2.5089767050783727, "psi_rad": -1.9270698250610625, "kappa_radpm": -0.30978117863990584, "vx_mps": 5.451939020741765, "ax_mps2": 2.677269429822371}, {"id": 242, "s_m": 24.173098937835437, "d_m": 0.0, "x_m": 1.3628913407647172, "y_m": -5.479919655764864, "d_right": 0.5156809565097257, "d_left": 2.534029864670542, "psi_rad": -1.9542635089756821, "kappa_radpm": -0.2189173645166257, "vx_mps": 5.500772468821149, "ax_mps2": 5.258915122620949}, {"id": 243, "s_m": 24.272987776421534, "d_m": 0.0, "x_m": 1.3246979236711047, "y_m": -5.572155136600263, "d_right": 0.5158395020617149, "d_left": 2.545896793371185, "psi_rad": -1.9707059000238774, "kappa_radpm": -0.11048551702005668, "vx_mps": 5.595454548236778, "ax_mps2": 6.092146090965685}, {"id": 244, "s_m": 24.37287661500763, "d_m": 0.0, "x_m": 1.2852258611751328, "y_m": -5.66401992529865, "d_right": 0.5147968894936642, "d_left": 2.549334367055899, "psi_rad": -1.9830800008627394, "kappa_radpm": -0.1401644992354879, "vx_mps": 5.703173361947752, "ax_mps2": 6.031686468165185}, {"id": 245, "s_m": 24.472765453593727, "d_m": 0.0, "x_m": 1.2445465593147016, "y_m": -5.755156461544786, "d_right": 0.5268057097310737, "d_left": 2.557479539995647, "psi_rad": -1.9986285706327047, "kappa_radpm": -0.16082181415936697, "vx_mps": 5.807855258911969, "ax_mps2": 5.972845428743727}, {"id": 246, "s_m": 24.572654292179823, "d_m": 0.0, "x_m": 1.2024502829699533, "y_m": -5.845816381330475, "d_right": 0.555414207911805, "d_left": 2.560771120013428, "psi_rad": -2.0112179219883446, "kappa_radpm": -0.09104495538075809, "vx_mps": 5.909688984568849, "ax_mps2": 5.915524029144853}, {"id": 247, "s_m": 24.67254313076592, "d_m": 0.0, "x_m": 1.159572830249663, "y_m": -5.935997043990209, "d_right": 0.579906045219804, "d_left": 2.56790875228118, "psi_rad": -2.0170718436029915, "kappa_radpm": -0.04077721002732802, "vx_mps": 6.008844609750966, "ax_mps2": 5.859633068092165}, {"id": 248, "s_m": 24.772431969352017, "d_m": 0.0, "x_m": 1.1162553674818338, "y_m": -6.0260377901668525, "d_right": 0.5737693555588751, "d_left": 2.565951400391364, "psi_rad": -2.021417794102356, "kappa_radpm": -0.04620067703999314, "vx_mps": 6.105476019734912, "ax_mps2": 5.80509179074691}, {"id": 249, "s_m": 24.872320807938113, "d_m": 0.0, "x_m": 1.0725580961270218, "y_m": -6.115806173117212, "d_right": 0.5703273607717608, "d_left": 2.5683402874571715, "psi_rad": -2.026277637664533, "kappa_radpm": -0.050585511231677996, "vx_mps": 6.199722992302547, "ax_mps2": 5.751826806593293}, {"id": 250, "s_m": 24.97220964652421, "d_m": 0.0, "x_m": 1.0283890209462394, "y_m": -6.20539285837927, "d_right": 0.5711037956855706, "d_left": 2.5716587609664012, "psi_rad": -2.0314792776004413, "kappa_radpm": -0.05355148797663028, "vx_mps": 6.291712944834881, "ax_mps2": 5.699771179464951}, {"id": 251, "s_m": 25.07209848511031, "d_m": 0.0, "x_m": 0.9837539439499707, "y_m": -6.294745390037725, "d_right": 0.5530250399133169, "d_left": 2.5715024709419088, "psi_rad": -2.0363118576487356, "kappa_radpm": -0.0334561775357685, "vx_mps": 6.381562412673668, "ax_mps2": 5.648863657369637}, {"id": 252, "s_m": 25.171987323696406, "d_m": 0.0, "x_m": 0.9388248587483313, "y_m": -6.38395113568672, "d_right": 0.5502596760769187, "d_left": 2.565287250312385, "psi_rad": -2.0378004054686016, "kappa_radpm": 0.0036692186035026373, "vx_mps": 6.4693783076104845, "ax_mps2": 5.599048016712402}, {"id": 253, "s_m": 25.271876162282503, "d_m": 0.0, "x_m": 0.8939031983208146, "y_m": -6.473155669798865, "d_right": 0.5509752632258734, "d_left": 2.5629463244580033, "psi_rad": -2.036822776330675, "kappa_radpm": 0.0070007445892591655, "vx_mps": 6.5552589951988525, "ax_mps2": 5.5502725008019205}, {"id": 254, "s_m": 25.3717650008686, "d_m": 0.0, "x_m": 0.8490381550447197, "y_m": -6.562399929518438, "d_right": 0.5607758029943722, "d_left": 2.5644279815177144, "psi_rad": -2.0365613228257207, "kappa_radpm": -0.0017645004548832682, "vx_mps": 6.639295221785094, "ax_mps2": 5.502489336575395}, {"id": 255, "s_m": 25.471653839454696, "d_m": 0.0, "x_m": 0.8041895156486664, "y_m": -6.651604444629732, "d_right": 0.5617582586255518, "d_left": 2.5697943447654312, "psi_rad": -2.036694550207619, "kappa_radpm": 0.0001623320003410528, "vx_mps": 6.721570916113596, "ax_mps2": 5.455654316615159}, {"id": 256, "s_m": 25.571542678040792, "d_m": 0.0, "x_m": 0.7593053738096942, "y_m": -6.74088320302437, "d_right": 0.5546588721798595, "d_left": 2.5769118126428543, "psi_rad": -2.0365240456091396, "kappa_radpm": 0.0030460409660708534, "vx_mps": 6.80216388564492, "ax_mps2": 5.4097264359857}, {"id": 257, "s_m": 25.67143151662689, "d_m": 0.0, "x_m": 0.7144915647894856, "y_m": -6.830078903360478, "d_right": 0.547695495773656, "d_left": 2.572580143732732, "psi_rad": -2.0362409493842204, "kappa_radpm": 0.0026260209159611114, "vx_mps": 6.8811464240117886, "ax_mps2": 5.364667575343921}, {"id": 258, "s_m": 25.771320355212985, "d_m": 0.0, "x_m": 0.6696548301291488, "y_m": -6.919378631246267, "d_right": 0.5492832700159497, "d_left": 2.5715647065735765, "psi_rad": -2.035997962911896, "kappa_radpm": 0.002351810714581581, "vx_mps": 6.958585843092935, "ax_mps2": 5.320442223312834}, {"id": 259, "s_m": 25.871209193799082, "d_m": 0.0, "x_m": 0.6248796223306831, "y_m": -7.008609275172327, "d_right": 0.5581558528623711, "d_left": 2.5724373034368138, "psi_rad": -2.0357506058503185, "kappa_radpm": 0.002602413865380189, "vx_mps": 7.034544940832755, "ax_mps2": 5.277017232326595}, {"id": 260, "s_m": 25.97109803238518, "d_m": 0.0, "x_m": 0.5800953849509026, "y_m": -7.097915733944774, "d_right": 0.5818561108153121, "d_left": 2.5719383196578116, "psi_rad": -2.0354807445329826, "kappa_radpm": 0.0027157809829837, "vx_mps": 7.1090824140438515, "ax_mps2": 5.234361603140783}, {"id": 261, "s_m": 26.070986870971275, "d_m": 0.0, "x_m": 0.53535285061014, "y_m": -7.187199121208827, "d_right": 0.5949098443368047, "d_left": 2.5708452991499704, "psi_rad": -2.035215373276097, "kappa_radpm": 0.0025986207294118233, "vx_mps": 7.182253223900028, "ax_mps2": 5.192446293996449}, {"id": 262, "s_m": 26.170875709557375, "d_m": 0.0, "x_m": 0.490629005181074, "y_m": -7.276503058440613, "d_right": 0.5909599376546019, "d_left": 2.5636228367243916, "psi_rad": -2.0349620289923713, "kappa_radpm": 0.0024679954208712772, "vx_mps": 7.254108920582758, "ax_mps2": 5.151244051072652}, {"id": 263, "s_m": 26.27076454814347, "d_m": 0.0, "x_m": 0.44591264891131, "y_m": -7.365847037234762, "d_right": 0.589641033423436, "d_left": 2.5602540819204456, "psi_rad": -2.034722600117748, "kappa_radpm": 0.002325101209449903, "vx_mps": 7.324697932525868, "ax_mps2": 5.11072925739507}, {"id": 264, "s_m": 26.37065338672957, "d_m": 0.0, "x_m": 0.40124734196035833, "y_m": -7.455140763737417, "d_right": 0.5725808723846899, "d_left": 2.5516419989234196, "psi_rad": -2.0344988300538756, "kappa_radpm": 0.0021425745872845946, "vx_mps": 7.394065824865713, "ax_mps2": 5.070877797799188}, {"id": 265, "s_m": 26.470542225315665, "d_m": 0.0, "x_m": 0.35655047818549956, "y_m": -7.544545393123829, "d_right": 0.5711661766396285, "d_left": 2.5451013516881593, "psi_rad": -2.0342948847482347, "kappa_radpm": 0.0019387180458289763, "vx_mps": 7.462255531011749, "ax_mps2": 5.031666937910859}, {"id": 266, "s_m": 26.57043106390176, "d_m": 0.0, "x_m": 0.3119382008803894, "y_m": -7.633824024183757, "d_right": 0.5726209366369613, "d_left": 2.542458211144372, "psi_rad": -2.0341119803268635, "kappa_radpm": 0.0017233013587210932, "vx_mps": 7.529307560677502, "ax_mps2": 4.993075215404475}, {"id": 267, "s_m": 26.670319902487858, "d_m": 0.0, "x_m": 0.2672546283992987, "y_m": -7.723283849734602, "d_right": 0.5826946272570995, "d_left": 2.543720289344226, "psi_rad": -2.033950532305072, "kappa_radpm": 0.0015064209407527217, "vx_mps": 7.5952601872322285, "ax_mps2": 4.955082342048154}, {"id": 268, "s_m": 26.770208741073954, "d_m": 0.0, "x_m": 0.22268695714683945, "y_m": -7.812545249093219, "d_right": 0.5826615504875131, "d_left": 2.536457583227649, "psi_rad": -2.033810705088385, "kappa_radpm": 0.0012978559829206452, "vx_mps": 7.660149616831664, "ax_mps2": 4.917669115256607}, {"id": 269, "s_m": 26.87009757966005, "d_m": 0.0, "x_m": 0.17801161892602355, "y_m": -7.902051327036325, "d_right": 0.5758946047880216, "d_left": 2.5309270728949986, "psi_rad": -2.0336911177038512, "kappa_radpm": 0.0010937589441616046, "vx_mps": 7.7240101414481375, "ax_mps2": 4.880817338044286}, {"id": 270, "s_m": 26.969986418246148, "d_m": 0.0, "x_m": 0.13347923100769515, "y_m": -7.991295359358312, "d_right": 0.5824499115388028, "d_left": 2.5293319657908726, "psi_rad": -2.0335928481318994, "kappa_radpm": 0.000876486567369231, "vx_mps": 7.786874277634764, "ax_mps2": 4.844509746425908}, {"id": 271, "s_m": 27.069875256832244, "d_m": 0.0, "x_m": 0.08881288938664827, "y_m": -8.080827462985702, "d_right": 0.6008817708437957, "d_left": 2.531673141713376, "psi_rad": -2.0335159174282964, "kappa_radpm": 0.0006593464460616686, "vx_mps": 7.848772892616332, "ax_mps2": 4.808729943431743}, {"id": 272, "s_m": 27.16976409541834, "d_m": 0.0, "x_m": 0.044300233035622714, "y_m": -8.170065599589378, "d_right": 0.5944269283204238, "d_left": 2.526768534691278, "psi_rad": -2.03346956992971, "kappa_radpm": 0.0002715996798591713, "vx_mps": 7.909735319093561, "ax_mps2": 4.7734623390160404}, {"id": 273, "s_m": 27.269652934004437, "d_m": 0.0, "x_m": -0.0003485084678064057, "y_m": -8.259582643026862, "d_right": 0.6043136785292509, "d_left": 2.5223262571417466, "psi_rad": -2.0334615693560476, "kappa_radpm": -0.0001263743133301453, "vx_mps": 7.969789459971555, "ax_mps2": 4.738692095227036}, {"id": 274, "s_m": 27.369541772590537, "d_m": 0.0, "x_m": -0.04487231819110726, "y_m": -8.348845753870597, "d_right": 0.6169005868014728, "d_left": 2.5218446167140365, "psi_rad": -2.0335039775319483, "kappa_radpm": -0.0007218390918423131, "vx_mps": 8.02896188407271, "ax_mps2": 4.70440507608578}, {"id": 275, "s_m": 27.469430611176634, "d_m": 0.0, "x_m": -0.0895183079421668, "y_m": -8.438337673169066, "d_right": 0.6137086707344382, "d_left": 2.525327507787133, "psi_rad": -2.0336054580524054, "kappa_radpm": -0.0012971408989741699, "vx_mps": 8.087277913764922, "ax_mps2": 4.670587801688}, {"id": 276, "s_m": 27.56931944976273, "d_m": 0.0, "x_m": -0.13406145147012183, "y_m": -8.527594713786234, "d_right": 0.6266035717758498, "d_left": 2.5327464930569477, "psi_rad": -2.0337595965789337, "kappa_radpm": -0.0017910443885343782, "vx_mps": 8.144761705324466, "ax_mps2": 4.63722740610193}, {"id": 277, "s_m": 27.669208288348827, "d_m": 0.0, "x_m": -0.17873200901819966, "y_m": -8.61706703956933, "d_right": 0.6395092379552355, "d_left": 2.5441091063422836, "psi_rad": -2.0339616117433152, "kappa_radpm": -0.002111896916644067, "vx_mps": 8.201436322756532, "ax_mps2": 4.6043115986852605}, {"id": 278, "s_m": 27.769097126934923, "d_m": 0.0, "x_m": -0.22330580488299775, "y_m": -8.706300661925226, "d_right": 0.6401087883801383, "d_left": 2.559307531208384, "psi_rad": -2.0341461532700613, "kappa_radpm": -0.0015901828951908838, "vx_mps": 8.257323805712872, "ax_mps2": 4.571828628487367}, {"id": 279, "s_m": 27.86898596552102, "d_m": 0.0, "x_m": -0.26801675858705565, "y_m": -8.795773296086907, "d_right": 0.6500259135217374, "d_left": 2.5623690502223644, "psi_rad": -2.0342799416212287, "kappa_radpm": -0.001124730552365079, "vx_mps": 8.312445232073475, "ax_mps2": 4.5397672514401926}, {"id": 280, "s_m": 27.968874804107116, "d_m": 0.0, "x_m": -0.31261878365243406, "y_m": -8.885002327131, "d_right": 0.6504708664680137, "d_left": 2.552919948742362, "psi_rad": -2.0343798788102276, "kappa_radpm": -0.0008800743784981321, "vx_mps": 8.366820775695878, "ax_mps2": 4.508116700075933}, {"id": 281, "s_m": 28.068763642693213, "d_m": 0.0, "x_m": -0.35734965028367666, "y_m": -8.974469436593127, "d_right": 0.6435657050466813, "d_left": 2.54734419355724, "psi_rad": -2.0344560868752914, "kappa_radpm": -0.0006597539844901172, "vx_mps": 8.420469759780538, "ax_mps2": 4.476866655537837}, {"id": 282, "s_m": 28.16865248127931, "d_m": 0.0, "x_m": -0.40196788983096404, "y_m": -9.063696358897012, "d_right": 0.6367546588280542, "d_left": 2.545695366761913, "psi_rad": -2.034515263297509, "kappa_radpm": -0.000527143725061093, "vx_mps": 8.473410706252324, "ax_mps2": 4.4460072216738045}, {"id": 283, "s_m": 28.268541319865406, "d_m": 0.0, "x_m": -0.44670822947035754, "y_m": -9.15315567357913, "d_right": 0.6402981911320984, "d_left": 2.547970795897526, "psi_rad": -2.0345616379952807, "kappa_radpm": -0.00041719499204541545, "vx_mps": 8.525661381515706, "ax_mps2": 4.415528901027736}, {"id": 284, "s_m": 28.368430158451503, "d_m": 0.0, "x_m": -0.49133386369324616, "y_m": -9.242376079919094, "d_right": 0.647247255161883, "d_left": 2.5541469011345352, "psi_rad": -2.0346027850125337, "kappa_radpm": -0.0004077928953258784, "vx_mps": 8.577238838903945, "ax_mps2": 4.385422572559296}, {"id": 285, "s_m": 28.4683189970376, "d_m": 0.0, "x_m": -0.5360852000187399, "y_m": -9.33183869430554, "d_right": 0.653633026688717, "d_left": 2.538178354010208, "psi_rad": -2.034643076827221, "kappa_radpm": -0.00039257457293650176, "vx_mps": 8.628159458109632, "ax_mps2": 4.355679470945511}, {"id": 286, "s_m": 28.5682078356237, "d_m": 0.0, "x_m": -0.5807145611102429, "y_m": -9.421048827146263, "d_right": 0.6385346291331617, "d_left": 2.5192486537126975, "psi_rad": -2.0346796017457542, "kappa_radpm": -0.0003399479764427315, "vx_mps": 8.678438981854907, "ax_mps2": 4.326291167324404}, {"id": 287, "s_m": 28.668096674209796, "d_m": 0.0, "x_m": -0.6254775340496181, "y_m": -9.510518443678226, "d_right": 0.638860923855524, "d_left": 2.504117179829907, "psi_rad": -2.034711010978519, "kappa_radpm": -0.0002863782397688816, "vx_mps": 8.728092550033912, "ax_mps2": 4.297249551364351}, {"id": 288, "s_m": 28.767985512795892, "d_m": 0.0, "x_m": -0.6701066156399623, "y_m": -9.599714124333877, "d_right": 0.6487220031004037, "d_left": 2.492942693945845, "psi_rad": -2.0347360054213066, "kappa_radpm": -0.00021507812272954037, "vx_mps": 8.777134731537297, "ax_mps2": 4.268546814544885}, {"id": 289, "s_m": 28.86787435138199, "d_m": 0.0, "x_m": -0.7148819400567155, "y_m": -9.689197280179277, "d_right": 0.6512040470612844, "d_left": 2.485708281714273, "psi_rad": -2.034754008739414, "kappa_radpm": -0.00014423926734333963, "vx_mps": 8.825579553948218, "ax_mps2": 4.2401754345541}, {"id": 290, "s_m": 28.967763189968085, "d_m": 0.0, "x_m": -0.7595055802246518, "y_m": -9.778374162993847, "d_right": 0.6547790087642081, "d_left": 2.4605022405991543, "psi_rad": -2.034763753849294, "kappa_radpm": -5.152585394788528e-05, "vx_mps": 8.87344053128135, "ax_mps2": 4.212128160709606}, {"id": 291, "s_m": 29.067652028554182, "d_m": 0.0, "x_m": -0.8042806909499072, "y_m": -9.867852596042225, "d_right": 0.673355890512799, "d_left": 2.383159006790147, "psi_rad": -2.034764333232566, "kappa_radpm": 3.963709572148537e-05, "vx_mps": 8.920730689920237, "ax_mps2": 4.184398000323044}, {"id": 292, "s_m": 29.16754086714028, "d_m": 0.0, "x_m": -0.8489066783294382, "y_m": -9.957034048560756, "d_right": 0.6887183176359319, "d_left": 2.3078102222623462, "psi_rad": -2.0347538157965, "kappa_radpm": 0.00017272245439189896, "vx_mps": 8.967462592894007, "ax_mps2": 4.1569782059370555}, {"id": 293, "s_m": 29.267429705726375, "d_m": 0.0, "x_m": -0.893666379997034, "y_m": -10.046486572341191, "d_right": 0.691235707267214, "d_left": 2.2341514573975063, "psi_rad": -2.034729876006251, "kappa_radpm": 0.0003055116874158457, "vx_mps": 9.013648362621588, "ax_mps2": 4.129862263361938}, {"id": 294, "s_m": 29.36731854431247, "d_m": 0.0, "x_m": -0.938299101794683, "y_m": -10.135692022234515, "d_right": 0.6717996054393097, "d_left": 2.1628047560916515, "psi_rad": -2.034694435968529, "kappa_radpm": 0.00040005742639793903, "vx_mps": 9.059299702240034, "ax_mps2": 4.103043880456632}, {"id": 295, "s_m": 29.467207382898568, "d_m": 0.0, "x_m": -0.9830390727073884, "y_m": -10.225120752534187, "d_right": 0.6569439960186382, "d_left": 2.093608955108554, "psi_rad": -2.0346500498137186, "kappa_radpm": 0.00048734756438707625, "vx_mps": 9.104427915623232, "ax_mps2": 4.076516976596294}, {"id": 296, "s_m": 29.567096221484665, "d_m": 0.0, "x_m": -1.0276829444220241, "y_m": -10.314369936933183, "d_right": 0.6391367760513816, "d_left": 2.027114241829337, "psi_rad": -2.0345674490822514, "kappa_radpm": 0.001349803331979298, "vx_mps": 9.149043926187971, "ax_mps2": 4.050275672774233}, {"id": 297, "s_m": 29.666985060070765, "d_m": 0.0, "x_m": -1.0723896309742333, "y_m": -10.403774843806067, "d_right": 0.6366802825337675, "d_left": 1.9633267608392373, "psi_rad": -2.0343780877292996, "kappa_radpm": 0.0024356684411759887, "vx_mps": 9.193158294575968, "ax_mps2": 4.024314282294256}, {"id": 298, "s_m": 29.76687389865686, "d_m": 0.0, "x_m": -1.1170045798368724, "y_m": -10.493052452940935, "d_right": 0.6216569968791524, "d_left": 1.9027260650647042, "psi_rad": -2.0340417123640933, "kappa_radpm": 0.004740076776969388, "vx_mps": 9.236781235292874, "ax_mps2": 3.998627302010161}, {"id": 299, "s_m": 29.866762737242958, "d_m": 0.0, "x_m": -1.1616228824900903, "y_m": -10.582442754031895, "d_right": 0.6069131778188578, "d_left": 1.845439776303582, "psi_rad": -2.033421583699244, "kappa_radpm": 0.007658373741815725, "vx_mps": 9.27992263237854, "ax_mps2": 3.973209404073212}, {"id": 300, "s_m": 29.966651575829054, "d_m": 0.0, "x_m": -1.206172018874858, "y_m": -10.671866132346318, "d_right": 0.5836160898082243, "d_left": 1.7918312917999173, "psi_rad": -2.0324969348959376, "kappa_radpm": 0.011183732561067226, "vx_mps": 9.322592054176559, "ax_mps2": 3.9480554281513576}, {"id": 301, "s_m": 30.06654041441515, "d_m": 0.0, "x_m": -1.2506132281928113, "y_m": -10.761323665031687, "d_right": 0.5711313962933836, "d_left": 1.742216696456825, "psi_rad": -2.0311719630342626, "kappa_radpm": 0.015343714926104826, "vx_mps": 9.364798767265587, "ax_mps2": 3.923160374089974}, {"id": 302, "s_m": 30.166429253001247, "d_m": 0.0, "x_m": -1.2949971257330573, "y_m": -10.851009483527694, "d_right": 0.5761354970056827, "d_left": 1.694694966228323, "psi_rad": -2.0294824260652655, "kappa_radpm": 0.01645553544872685, "vx_mps": 9.406551749609882, "ax_mps2": 3.8985193949813444}, {"id": 303, "s_m": 30.266318091587344, "d_m": 0.0, "x_m": -1.3391909758466656, "y_m": -10.940673961327434, "d_right": 0.5550882234495315, "d_left": 1.649012943706563, "psi_rad": -2.0280527148470906, "kappa_radpm": 0.01217487082242357, "vx_mps": 9.44785970298188, "ax_mps2": 3.874127790615911}, {"id": 304, "s_m": 30.36620693017344, "d_m": 0.0, "x_m": -1.3832403732934468, "y_m": -11.03032041329507, "d_right": 0.5468518764209345, "d_left": 1.60817250107015, "psi_rad": -2.0270461409724643, "kappa_radpm": 0.007969590494214149, "vx_mps": 9.488731064705457, "ax_mps2": 3.849981001291468}, {"id": 305, "s_m": 30.466095768759537, "d_m": 0.0, "x_m": -1.4273040426549346, "y_m": -11.120176323305909, "d_right": 0.5565606914371422, "d_left": 1.5724855160916276, "psi_rad": -2.0264655911807994, "kappa_radpm": 0.0036103059650767076, "vx_mps": 9.529174018764765, "ax_mps2": 3.8260746019541907}, {"id": 306, "s_m": 30.565984607345634, "d_m": 0.0, "x_m": -1.4711387971456136, "y_m": -11.209646898067257, "d_right": 0.5668427329164228, "d_left": 1.5425628753664777, "psi_rad": -2.02632720641017, "kappa_radpm": -0.0007123438000362619, "vx_mps": 9.569196506320024, "ax_mps2": 3.8024042966520866}, {"id": 307, "s_m": 30.66587344593173, "d_m": 0.0, "x_m": -1.515201421983593, "y_m": -11.299574504767918, "d_right": 0.5653122909889302, "d_left": 1.5184954300824849, "psi_rad": -2.026494924594613, "kappa_radpm": -0.0026469714582913195, "vx_mps": 9.608806235668512, "ax_mps2": 3.7789659132793063}, {"id": 308, "s_m": 30.765762284517827, "d_m": 0.0, "x_m": -1.5590652662816715, "y_m": -11.389036512020889, "d_right": 0.5586135586956796, "d_left": 1.5008371264136002, "psi_rad": -2.0268569397994085, "kappa_radpm": -0.00462916063499817, "vx_mps": 9.648010691686132, "ax_mps2": 3.7557553985937604}, {"id": 309, "s_m": 30.865651123103927, "d_m": 0.0, "x_m": -1.603192027197405, "y_m": -11.478932733618226, "d_right": 0.5571406092252266, "d_left": 1.489652636352224, "psi_rad": -2.027375458290173, "kappa_radpm": -0.005671918679683599, "vx_mps": 9.68681714478228, "ax_mps2": 3.7327688134904067}, {"id": 310, "s_m": 30.965539961690023, "d_m": 0.0, "x_m": -1.6471678769939753, "y_m": -11.568393277612161, "d_right": 0.5732596911194594, "d_left": 1.4852132107939042, "psi_rad": -2.027990916886165, "kappa_radpm": -0.006682607954153766, "vx_mps": 9.725232659398326, "ax_mps2": 3.710002328514316}, {"id": 311, "s_m": 31.06542880027612, "d_m": 0.0, "x_m": -1.6913896219001348, "y_m": -11.658204042885218, "d_right": 0.5769407625263744, "d_left": 1.487545923767965, "psi_rad": -2.028687402161009, "kappa_radpm": -0.007144115904715709, "vx_mps": 9.763264102077843, "ax_mps2": 3.463558826561939}, {"id": 312, "s_m": 31.165317638862216, "d_m": 0.0, "x_m": -1.735500230057038, "y_m": -11.747627976405148, "d_right": 0.5789979093706552, "d_left": 1.4966080651459466, "psi_rad": -2.029417984928509, "kappa_radpm": -0.007512470868502511, "vx_mps": 9.798636010386428, "ax_mps2": -11.610065189459478}, {"id": 313, "s_m": 31.265206477448313, "d_m": 0.0, "x_m": -1.779839656625183, "y_m": -11.837345688546957, "d_right": 0.5864524292707908, "d_left": 1.5123474913495443, "psi_rad": -2.0301939439830097, "kappa_radpm": -0.008027630774830399, "vx_mps": 9.67955762463728, "ax_mps2": -11.566895107900066}, {"id": 314, "s_m": 31.36509531603441, "d_m": 0.0, "x_m": -1.8240989878551281, "y_m": -11.926720755741224, "d_right": 0.5955409969568292, "d_left": 1.534456700771136, "psi_rad": -2.0310231324761583, "kappa_radpm": -0.008605278463605757, "vx_mps": 9.559447074591867, "ax_mps2": -11.53195285076112}, {"id": 315, "s_m": 31.464984154620506, "d_m": 0.0, "x_m": -1.8685802257694815, "y_m": -12.016350219844638, "d_right": 0.589009825616864, "d_left": 1.562813784057552, "psi_rad": -2.0319109815646907, "kappa_radpm": -0.009120113777423179, "vx_mps": 9.438177875953532, "ax_mps2": -11.500145054090913}, {"id": 316, "s_m": 31.564872993206603, "d_m": 0.0, "x_m": -1.9130004172025783, "y_m": -12.105652229428228, "d_right": 0.5824967059911007, "d_left": 1.596913575468121, "psi_rad": -2.0328455999440562, "kappa_radpm": -0.00962574280422987, "vx_mps": 9.3156711702426, "ax_mps2": -11.47312264422902}, {"id": 317, "s_m": 31.6647618317927, "d_m": 0.0, "x_m": -1.957648780632732, "y_m": -12.195196958910357, "d_right": 0.5765242715223948, "d_left": 1.6366125365085273, "psi_rad": -2.0338331856755705, "kappa_radpm": -0.0101018312463262, "vx_mps": 9.19182547486153, "ax_mps2": -11.447906828661145}, {"id": 318, "s_m": 31.764650670378796, "d_m": 0.0, "x_m": -2.0022394362468154, "y_m": -12.284400387710859, "d_right": 0.5857409660345221, "d_left": 1.68126919687415, "psi_rad": -2.0348643013242356, "kappa_radpm": -0.010582080782921149, "vx_mps": 9.066566016171711, "ax_mps2": -11.431979737883088}, {"id": 319, "s_m": 31.864539508964892, "d_m": 0.0, "x_m": -2.0470796800065116, "y_m": -12.37386666893661, "d_right": 0.6010816109347985, "d_left": 1.7258444051935935, "psi_rad": -2.0359443490375533, "kappa_radpm": -0.010973303330928141, "vx_mps": 8.939729580254982, "ax_mps2": -11.419779357687432}, {"id": 320, "s_m": 31.964428347550992, "d_m": 0.0, "x_m": -2.0918452076877476, "y_m": -12.462940004304972, "d_right": 0.6118631063420983, "d_left": 1.7704149709047616, "psi_rad": -2.037056326347196, "kappa_radpm": -0.011339306097036426, "vx_mps": 8.811205818398982, "ax_mps2": -11.419772048518185}, {"id": 321, "s_m": 32.06431718613709, "d_m": 0.0, "x_m": -2.136906241929764, "y_m": -12.55234918387518, "d_right": 0.6257471039259516, "d_left": 1.815358543625187, "psi_rad": -2.0382022501093893, "kappa_radpm": -0.011500698695473148, "vx_mps": 8.680779483462253, "ax_mps2": -11.424653425698411}, {"id": 322, "s_m": 32.164206024723185, "d_m": 0.0, "x_m": -2.181841959430838, "y_m": -12.641255464408763, "d_right": 0.6233551406577953, "d_left": 1.8602414231402566, "psi_rad": -2.0393532987297327, "kappa_radpm": -0.011612494489275253, "vx_mps": 8.548306365392843, "ax_mps2": -11.433756278605424}, {"id": 323, "s_m": 32.26409486330928, "d_m": 0.0, "x_m": -2.2271333524591705, "y_m": -12.730611406631999, "d_right": 0.6367414143730449, "d_left": 1.90554480302257, "psi_rad": -2.040464445037683, "kappa_radpm": -0.010333903556392313, "vx_mps": 8.41363966698854, "ax_mps2": -11.54196518332065}, {"id": 324, "s_m": 32.36398370189538, "d_m": 0.0, "x_m": -2.272214748401574, "y_m": -12.819326084055398, "d_right": 0.6439832044041792, "d_left": 1.9507013410399747, "psi_rad": -2.0414122116907887, "kappa_radpm": -0.008696192567624404, "vx_mps": 8.275476146518514, "ax_mps2": -11.669046713786784}, {"id": 325, "s_m": 32.463872540481475, "d_m": 0.0, "x_m": -2.317722532739473, "y_m": -12.908689388996837, "d_right": 0.6588001124175212, "d_left": 1.9963345695435364, "psi_rad": -2.042174708134503, "kappa_radpm": -0.006466971689350123, "vx_mps": 8.133405830542502, "ax_mps2": -11.827863667163134}, {"id": 326, "s_m": 32.56376137906757, "d_m": 0.0, "x_m": -2.3629591630575337, "y_m": -12.997378553688389, "d_right": 0.6668556395509949, "d_left": 2.0417593928580136, "psi_rad": -2.0427042777830238, "kappa_radpm": -0.004602193802803455, "vx_mps": 7.98682335318414, "ax_mps2": -11.75855279401924}, {"id": 327, "s_m": 32.66365021765367, "d_m": 0.0, "x_m": -2.408624021209322, "y_m": -13.086790359665363, "d_right": 0.6692652032480884, "d_left": 2.087591912261711, "psi_rad": -2.043323501331148, "kappa_radpm": -0.007795621595810298, "vx_mps": 7.838383182192089, "ax_mps2": -11.560708288116802}, {"id": 328, "s_m": 32.763539056239765, "d_m": 0.0, "x_m": -2.454052778484282, "y_m": -13.175568197893487, "d_right": 0.6833167697436496, "d_left": 2.1327818085698116, "psi_rad": -2.044275813042364, "kappa_radpm": -0.011295000186516302, "vx_mps": 7.689647551260492, "ax_mps2": -11.366349261351099}, {"id": 329, "s_m": 32.86342789482586, "d_m": 0.0, "x_m": -2.499769205565846, "y_m": -13.264659671251248, "d_right": 0.687460755357332, "d_left": 2.1783305507153936, "psi_rad": -2.0455878253593855, "kappa_radpm": -0.015009896262314104, "vx_mps": 7.540552805281977, "ax_mps2": -11.314012544946149}, {"id": 330, "s_m": 32.96331673341196, "d_m": 0.0, "x_m": -2.5455559711256366, "y_m": -13.353560987241188, "d_right": 0.7046390480827155, "d_left": 2.2240082909136065, "psi_rad": -2.047224566999252, "kappa_radpm": -0.01642978632437499, "vx_mps": 7.389157561151305, "ax_mps2": -11.313783010035934}, {"id": 331, "s_m": 33.063205571998054, "d_m": 0.0, "x_m": -2.59120785497312, "y_m": -13.441847158658355, "d_right": 0.7101369837472765, "d_left": 2.269608262208705, "psi_rad": -2.04879988809685, "kappa_radpm": -0.015229521254476392, "vx_mps": 7.234597996692304, "ax_mps2": -11.404818481299564}, {"id": 332, "s_m": 33.16309441058415, "d_m": 0.0, "x_m": -2.637518051815847, "y_m": -13.531077987604972, "d_right": 0.726824143929176, "d_left": 2.31592454336601, "psi_rad": -2.0501910817511337, "kappa_radpm": -0.012122784899434396, "vx_mps": 7.075378437156544, "ax_mps2": -11.58624762861462}, {"id": 333, "s_m": 33.26298324917025, "d_m": 0.0, "x_m": -2.683435017964752, "y_m": -13.619290525451575, "d_right": 0.7336531718155719, "d_left": 2.317769395324068, "psi_rad": -2.0511956356035714, "kappa_radpm": -0.007436762723404807, "vx_mps": 6.909870215177222, "ax_mps2": -11.829274152336279}, {"id": 334, "s_m": 33.362872087756344, "d_m": 0.0, "x_m": -2.729646511818364, "y_m": -13.707915203284005, "d_right": 0.7447569019567727, "d_left": 2.3070595154745135, "psi_rad": -2.051550284926332, "kappa_radpm": 0.0006121250051208427, "vx_mps": 6.736696629491824, "ax_mps2": -11.714641565667216}, {"id": 335, "s_m": 33.46276092634244, "d_m": 0.0, "x_m": -2.7759776853962292, "y_m": -13.796786135097479, "d_right": 0.7407879858694312, "d_left": 2.3006266242924274, "psi_rad": -2.0510102659773697, "kappa_radpm": 0.010495483241302197, "vx_mps": 6.560697950440386, "ax_mps2": -11.260562116454748}, {"id": 336, "s_m": 33.56264976492854, "d_m": 0.0, "x_m": -2.8218770691600565, "y_m": -13.885057550368431, "d_right": 0.7502935302022217, "d_left": 2.2853170418439652, "psi_rad": -2.0493966324150694, "kappa_radpm": 0.021992354296393637, "vx_mps": 6.386951436611536, "ax_mps2": -10.82136427968912}, {"id": 337, "s_m": 33.66253860351463, "d_m": 0.0, "x_m": -2.867633052221655, "y_m": -13.973527324331005, "d_right": 0.7634183627175627, "d_left": 2.2708665342312613, "psi_rad": -2.0466054964386853, "kappa_radpm": 0.03437571165361321, "vx_mps": 6.215406795536695, "ax_mps2": -10.624090265240977}, {"id": 338, "s_m": 33.76242744210074, "d_m": 0.0, "x_m": -2.9133646935235133, "y_m": -14.062683360479868, "d_right": 0.7748692290592734, "d_left": 2.260332299289711, "psi_rad": -2.0427669341512056, "kappa_radpm": 0.04155287739472305, "vx_mps": 6.0422533510889815, "ax_mps2": -10.623178274126515}, {"id": 339, "s_m": 33.862316280686834, "d_m": 0.0, "x_m": -2.9585148136697517, "y_m": -14.151604022387257, "d_right": 0.787558580783873, "d_left": 2.245929142029514, "psi_rad": -2.038519699081335, "kappa_radpm": 0.04038277644353112, "vx_mps": 5.86400474752152, "ax_mps2": -10.739696665363583}, {"id": 340, "s_m": 33.96220511927293, "d_m": 0.0, "x_m": -3.0032377727463544, "y_m": -14.240557760195166, "d_right": 0.800967074198653, "d_left": 2.234744127181002, "psi_rad": -2.035030838631089, "kappa_radpm": 0.023349479926852632, "vx_mps": 5.678115886948296, "ax_mps2": -11.370896753193152}, {"id": 341, "s_m": 34.06209395785903, "d_m": 0.0, "x_m": -3.047881647104305, "y_m": -14.32982802766888, "d_right": 0.8265198348632138, "d_left": 2.21969522616234, "psi_rad": -2.0346744042824074, "kappa_radpm": -0.016876588909044914, "vx_mps": 5.474426790532218, "ax_mps2": -9.932266703093308}, {"id": 342, "s_m": 34.16198279644512, "d_m": 0.0, "x_m": -3.0926461989249017, "y_m": -14.418885446089796, "d_right": 0.8449037090144703, "d_left": 2.207820517582885, "psi_rad": -2.039459591309434, "kappa_radpm": -0.07775275973407905, "vx_mps": 5.290094849234575, "ax_mps2": -7.855558090412078}, {"id": 343, "s_m": 34.26187163503122, "d_m": 0.0, "x_m": -3.137973077645151, "y_m": -14.507299922368352, "d_right": 0.858648773051701, "d_left": 2.1899362691956212, "psi_rad": -2.051043622912988, "kappa_radpm": -0.16075873709006142, "vx_mps": 5.139624340912906, "ax_mps2": -5.339170018963486}, {"id": 344, "s_m": 34.361760473617316, "d_m": 0.0, "x_m": -3.1847508981170405, "y_m": -14.595083465119108, "d_right": 0.8673412773311918, "d_left": 2.17800260537665, "psi_rad": -2.071465166861154, "kappa_radpm": -0.26662988545805705, "vx_mps": 5.034788116821649, "ax_mps2": -3.1039780165787296}, {"id": 345, "s_m": 34.46164931220341, "d_m": 0.0, "x_m": -3.234561998000093, "y_m": -14.682869885839597, "d_right": 0.8773679344910835, "d_left": 2.1731645525458707, "psi_rad": -2.104027030353878, "kappa_radpm": -0.36360650450112436, "vx_mps": 4.972824736821401, "ax_mps2": -3.0211358363293654}, {"id": 346, "s_m": 34.56153815078951, "d_m": 0.0, "x_m": -3.285997196572923, "y_m": -14.766670043339909, "d_right": 0.8673452764970928, "d_left": 2.17479969314485, "psi_rad": -2.137973675014024, "kappa_radpm": -0.3282607732033408, "vx_mps": 4.911764485736189, "ax_mps2": -4.08508461795618}, {"id": 347, "s_m": 34.661426989375606, "d_m": 0.0, "x_m": -3.3411311292296353, "y_m": -14.850264966902781, "d_right": 0.8455321430349815, "d_left": 2.17373248122555, "psi_rad": -2.1689921323879755, "kappa_radpm": -0.2846760257011327, "vx_mps": 4.827972830009728, "ax_mps2": -5.3785343740624425}, {"id": 348, "s_m": 34.7613158279617, "d_m": 0.0, "x_m": -3.3988998488068347, "y_m": -14.932620100115802, "d_right": 0.8276524195761028, "d_left": 2.17934999732832, "psi_rad": -2.195275071176402, "kappa_radpm": -0.2407582476622231, "vx_mps": 4.71538021197349, "ax_mps2": -6.715224810599564}, {"id": 349, "s_m": 34.8612046665478, "d_m": 0.0, "x_m": -3.4578883574399395, "y_m": -15.01245022918283, "d_right": 0.8130244077464455, "d_left": 2.1918398421315253, "psi_rad": -2.2194390521156633, "kappa_radpm": -0.2568074782249802, "vx_mps": 4.570914408422071, "ax_mps2": -6.478576957024465}, {"id": 350, "s_m": 34.961093505133896, "d_m": 0.0, "x_m": -3.5200861333838644, "y_m": -15.092240584501443, "d_right": 0.8028691927171305, "d_left": 2.2116407374738882, "psi_rad": -2.246887825550804, "kappa_radpm": -0.285585701163329, "vx_mps": 4.427073917754802, "ax_mps2": -6.466493183894096}, {"id": 351, "s_m": 35.06098234371999, "d_m": 0.0, "x_m": -3.5830740008257638, "y_m": -15.168501373660312, "d_right": 0.7899607554787398, "d_left": 2.2379479663076465, "psi_rad": -2.275575986157625, "kappa_radpm": -0.2943977727260831, "vx_mps": 4.278682330523811, "ax_mps2": -6.671769849739185}, {"id": 352, "s_m": 35.16087118230609, "d_m": 0.0, "x_m": -3.6495596913904937, "y_m": -15.244336211866965, "d_right": 0.7540669255466417, "d_left": 2.2690236156907955, "psi_rad": -2.305814310161506, "kappa_radpm": -0.3081987790384157, "vx_mps": 4.119982014806412, "ax_mps2": -6.2935556258623215}, {"id": 353, "s_m": 35.260760020892185, "d_m": 0.0, "x_m": -3.7173765280357802, "y_m": -15.316944330302299, "d_right": 0.7142104851039522, "d_left": 2.3014899352251916, "psi_rad": -2.3393335161397113, "kappa_radpm": -0.36694187809141027, "vx_mps": 3.96445959472909, "ax_mps2": -5.796095149490533}, {"id": 354, "s_m": 35.36064885947828, "d_m": 0.0, "x_m": -3.788605903897827, "y_m": -15.387802761197985, "d_right": 0.6807277078815671, "d_left": 2.34154024508364, "psi_rad": -2.3793323170597263, "kappa_radpm": -0.4299871888972513, "vx_mps": 3.8156270064833784, "ax_mps2": -5.301718568620364}, {"id": 355, "s_m": 35.46053769806438, "d_m": 0.0, "x_m": -3.8623534810961284, "y_m": -15.455096505657275, "d_right": 0.632977795972306, "d_left": 2.3825995042806745, "psi_rad": -2.4256748858954955, "kappa_radpm": -0.5000405454754541, "vx_mps": 3.674213443983031, "ax_mps2": -4.752565375689972}, {"id": 356, "s_m": 35.560426536650475, "d_m": 0.0, "x_m": -3.9394980567433198, "y_m": -15.518715438006708, "d_right": 0.5933999786521862, "d_left": 2.4295659453028002, "psi_rad": -2.479661870158065, "kappa_radpm": -0.5813328121332895, "vx_mps": 3.542652672868357, "ax_mps2": -4.157465896551487}, {"id": 357, "s_m": 35.66031537523657, "d_m": 0.0, "x_m": -4.0204531628104085, "y_m": -15.57790581726534, "d_right": 0.5630617872239605, "d_left": 2.4825744337425175, "psi_rad": -2.5423995944489253, "kappa_radpm": -0.673034362625196, "vx_mps": 3.4234221300981345, "ax_mps2": -3.3892374488853574}, {"id": 358, "s_m": 35.76020421382267, "d_m": 0.0, "x_m": -4.104563163436155, "y_m": -15.631099222248665, "d_right": 0.5414576748302239, "d_left": 2.5400802769063997, "psi_rad": -2.6148033495154825, "kappa_radpm": -0.78363373220666, "vx_mps": 3.323059598611244, "ax_mps2": -2.6200049723969827}, {"id": 359, "s_m": 35.860093052408764, "d_m": 0.0, "x_m": -4.193546676397707, "y_m": -15.678061322897895, "d_right": 0.5130207416279832, "d_left": 2.6037628521321707, "psi_rad": -2.6990392647958785, "kappa_radpm": -0.8955591159496241, "vx_mps": 3.243348052299854, "ax_mps2": -1.6324447852276025}, {"id": 360, "s_m": 35.95998189099486, "d_m": 0.0, "x_m": -4.285089519942117, "y_m": -15.716322056320031, "d_right": 0.49005848165561994, "d_left": 2.6712546168141924, "psi_rad": -2.794632237423599, "kappa_radpm": -1.0209728244090237, "vx_mps": 3.1926760814483868, "ax_mps2": -1.6112843010653737}, {"id": 361, "s_m": 36.059870729580965, "d_m": 0.0, "x_m": -4.381204544366661, "y_m": -15.745554691858803, "d_right": 0.4620244850121057, "d_left": 2.7329219461340277, "psi_rad": -2.8984618703041054, "kappa_radpm": -1.0457342661581686, "vx_mps": 3.1418596286469804, "ax_mps2": -1.7080896527603313}, {"id": 362, "s_m": 36.15975956816706, "d_m": 0.0, "x_m": -4.478772098870778, "y_m": -15.76438800171207, "d_right": 0.44450338733417644, "d_left": 2.803701022296103, "psi_rad": -3.003896701103767, "kappa_radpm": -1.080112529871505, "vx_mps": 3.0870768929347103, "ax_mps2": -1.5436208534382871}, {"id": 363, "s_m": 36.25964840675316, "d_m": 0.0, "x_m": -4.578515544731558, "y_m": -15.772655391428458, "d_right": 0.4381959530769885, "d_left": 2.8815871347373236, "psi_rad": -3.114855977618319, "kappa_radpm": -1.1377588655039783, "vx_mps": 3.0367190772866968, "ax_mps2": -1.267699072986628}, {"id": 364, "s_m": 36.359537245339254, "d_m": 0.0, "x_m": -4.678163374176584, "y_m": -15.769558131112081, "d_right": 0.4432294944708902, "d_left": 2.841929214207274, "psi_rad": 3.051668052309113, "kappa_radpm": -1.2005447509541487, "vx_mps": 2.99472950000536, "ax_mps2": -0.8284437010548474}, {"id": 365, "s_m": 36.45942608392535, "d_m": 0.0, "x_m": -4.776711695174564, "y_m": -15.754569888649316, "d_right": 0.4585130827594698, "d_left": 2.7447295801479, "psi_rad": 2.928445534395348, "kappa_radpm": -1.2729426166271283, "vx_mps": 2.9669681865395328, "ax_mps2": -0.03400427918327619}, {"id": 366, "s_m": 36.55931492251145, "d_m": 0.0, "x_m": -4.872743367665113, "y_m": -15.727142834693671, "d_right": 0.482238466649959, "d_left": 2.645379363255064, "psi_rad": 2.796807553978411, "kappa_radpm": -1.3642398965409708, "vx_mps": 2.965823144428631, "ax_mps2": -2.8372176357516996}, {"id": 367, "s_m": 36.65920376109753, "d_m": 0.0, "x_m": -4.963749381400073, "y_m": -15.687129411550108, "d_right": 0.4973051782248705, "d_left": 2.5460178247198293, "psi_rad": 2.6563383460404855, "kappa_radpm": -1.4582052536499621, "vx_mps": 2.8686746373763197, "ax_mps2": -0.0318130758333528}]}, "trackbounds_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -4.921603251248598, "y": -19.684683112055065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -4.971603251993656, "y": -19.684683112055065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -5.021603252738714, "y": -19.634683111310007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -5.071603253483772, "y": -19.634683111310007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -5.12160325422883, "y": -19.58468311056495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -5.171603254973888, "y": -19.58468311056495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -5.2216032557189465, "y": -19.53468310981989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -5.2716032564640045, "y": -19.53468310981989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -5.321603257209063, "y": -19.484683109074833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -5.371603257954121, "y": -19.484683109074833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -5.421603258699179, "y": -19.434683108329775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -5.471603259444237, "y": -19.384683107584717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -5.521603260189295, "y": -19.384683107584717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -5.571603260934353, "y": -19.384683107584717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -5.621603261679411, "y": -19.33468310683966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -5.671603262424469, "y": -19.33468310683966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -19.2846831060946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -19.2846831060946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -19.234683105349543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -19.234683105349543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -19.184683104604485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -5.971603266894817, "y": -19.184683104604485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -6.021603267639875, "y": -19.134683103859427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -6.0716032683849335, "y": -19.134683103859427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -6.1216032691299915, "y": -19.08468310311437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -6.17160326987505, "y": -19.08468310311437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -6.221603270620108, "y": -19.03468310236931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -6.271603271365166, "y": -19.03468310236931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -6.321603272110224, "y": -18.984683101624253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -6.371603272855282, "y": -18.934683100879194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -6.42160327360034, "y": -18.934683100879194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -6.471603274345398, "y": -18.884683100134136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -6.521603275090456, "y": -18.884683100134136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -6.571603275835514, "y": -18.83468309938908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -6.621603276580572, "y": -18.78468309864402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -6.67160327732563, "y": -18.78468309864402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -6.721603278070688, "y": -18.734683097898962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -6.771603278815746, "y": -18.734683097898962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -6.821603279560804, "y": -18.684683097153904, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -6.871603280305862, "y": -18.634683096408846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -6.9216032810509205, "y": -18.634683096408846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -6.9716032817959785, "y": -18.584683095663788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -7.021603282541037, "y": -18.584683095663788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -7.071603283286095, "y": -18.53468309491873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -7.121603284031153, "y": -18.53468309491873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -7.171603284776211, "y": -18.484683094173672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -7.221603285521269, "y": -18.484683094173672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -7.271603286266327, "y": -18.434683093428614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -18.434683093428614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -7.371603287756443, "y": -18.384683092683556, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -7.421603288501501, "y": -18.384683092683556, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -7.471603289246559, "y": -18.334683091938498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -7.521603289991617, "y": -18.334683091938498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -7.571603290736675, "y": -18.334683091938498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -7.621603291481733, "y": -18.28468309119344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -7.671603292226791, "y": -18.23468309044838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -7.721603292971849, "y": -18.23468309044838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -7.7716032937169075, "y": -18.184683089703324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -7.821603294461966, "y": -18.184683089703324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -7.871603295207024, "y": -18.134683088958266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -7.921603295952082, "y": -18.084683088213207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -7.97160329669714, "y": -18.084683088213207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -8.021603297442198, "y": -18.03468308746815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -8.071603298187256, "y": -18.03468308746815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -8.121603298932314, "y": -17.98468308672309, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -8.171603299677372, "y": -17.98468308672309, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -8.22160330042243, "y": -17.934683085978033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -8.271603301167488, "y": -17.934683085978033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -8.321603301912546, "y": -17.884683085232975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -8.371603302657604, "y": -17.834683084487917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -8.421603303402662, "y": -17.78468308374286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.7346830829978, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.684683082252743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.634683081507685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.584683080762627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.53468308001757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.48468307927251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.434683078527453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.384683077782395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.334683077037337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.28468307629228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.23468307554722, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.184683074802162, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.134683074057104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.084683073312046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -17.034683072566988, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -16.98468307182193, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -8.47160330414772, "y": -16.934683071076872, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -8.421603303402662, "y": -16.884683070331814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -8.421603303402662, "y": -16.834683069586756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -8.421603303402662, "y": -16.784683068841698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -8.371603302657604, "y": -16.73468306809664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -8.371603302657604, "y": -16.684683067351582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -8.321603301912546, "y": -16.634683066606524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -8.321603301912546, "y": -16.584683065861466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -8.271603301167488, "y": -16.534683065116408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -8.22160330042243, "y": -16.48468306437135, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -8.22160330042243, "y": -16.43468306362629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -8.171603299677372, "y": -16.384683062881233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -8.121603298932314, "y": -16.334683062136175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -8.121603298932314, "y": -16.284683061391117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -8.071603298187256, "y": -16.23468306064606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -8.071603298187256, "y": -16.184683059901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -8.021603297442198, "y": -16.134683059155943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -8.021603297442198, "y": -16.084683058410885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -7.97160329669714, "y": -16.034683057665827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -7.921603295952082, "y": -15.984683056920769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -7.921603295952082, "y": -15.934683056175711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -7.921603295952082, "y": -15.884683055430653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -7.871603295207024, "y": -15.834683054685595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -7.821603294461966, "y": -15.784683053940537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -7.821603294461966, "y": -15.734683053195479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -7.7716032937169075, "y": -15.68468305245042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -7.721603292971849, "y": -15.634683051705363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -7.721603292971849, "y": -15.584683050960304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -7.671603292226791, "y": -15.534683050215246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -7.671603292226791, "y": -15.484683049470188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -7.621603291481733, "y": -15.43468304872513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -7.621603291481733, "y": -15.384683047980072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -7.621603291481733, "y": -15.334683047235014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -7.571603290736675, "y": -15.284683046489956, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -7.571603290736675, "y": -15.234683045744898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -7.521603289991617, "y": -15.18468304499984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -7.521603289991617, "y": -15.134683044254782, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -7.471603289246559, "y": -15.084683043509724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -7.471603289246559, "y": -15.034683042764666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -7.471603289246559, "y": -14.984683042019608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -7.421603288501501, "y": -14.93468304127455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -7.421603288501501, "y": -14.884683040529492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -7.371603287756443, "y": -14.834683039784434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -7.371603287756443, "y": -14.784683039039376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.734683038294317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.68468303754926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.634683036804201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.584683036059143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.534683035314085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.484683034569027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -7.321603287011385, "y": -14.434683033823969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -7.271603286266327, "y": -14.434683033823969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -7.221603285521269, "y": -14.384683033078911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -7.221603285521269, "y": -14.334683032333853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -7.171603284776211, "y": -14.284683031588795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -7.171603284776211, "y": -14.234683030843737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -7.121603284031153, "y": -14.184683030098679, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -7.121603284031153, "y": -14.13468302935362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -7.121603284031153, "y": -14.084683028608563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -7.071603283286095, "y": -14.034683027863505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -7.071603283286095, "y": -13.984683027118447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -7.021603282541037, "y": -13.934683026373389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -7.021603282541037, "y": -13.88468302562833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -6.9716032817959785, "y": -13.834683024883272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -6.9716032817959785, "y": -13.784683024138214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -6.9216032810509205, "y": -13.734683023393156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -6.9216032810509205, "y": -13.684683022648098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -6.871603280305862, "y": -13.63468302190304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -6.871603280305862, "y": -13.584683021157982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -6.871603280305862, "y": -13.534683020412924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -6.821603279560804, "y": -13.484683019667866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -6.821603279560804, "y": -13.434683018922808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -6.771603278815746, "y": -13.38468301817775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -6.771603278815746, "y": -13.334683017432692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -6.771603278815746, "y": -13.284683016687634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -6.721603278070688, "y": -13.234683015942576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -6.721603278070688, "y": -13.184683015197518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -6.721603278070688, "y": -13.13468301445246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -6.67160327732563, "y": -13.084683013707401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -6.67160327732563, "y": -13.034683012962343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -6.621603276580572, "y": -12.984683012217285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -6.621603276580572, "y": -12.934683011472227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -6.571603275835514, "y": -12.88468301072717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -6.571603275835514, "y": -12.834683009982111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -6.521603275090456, "y": -12.784683009237053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -6.521603275090456, "y": -12.734683008491995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -6.471603274345398, "y": -12.684683007746937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -6.42160327360034, "y": -12.634683007001879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -6.42160327360034, "y": -12.584683006256821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -6.371603272855282, "y": -12.534683005511763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -6.321603272110224, "y": -12.484683004766705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -6.271603271365166, "y": -12.434683004021647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -6.271603271365166, "y": -12.384683003276589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -6.221603270620108, "y": -12.33468300253153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -6.221603270620108, "y": -12.284683001786473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -6.17160326987505, "y": -12.234683001041414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -6.1216032691299915, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -6.1216032691299915, "y": -12.134682999551298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -6.0716032683849335, "y": -12.08468299880624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -6.021603267639875, "y": -12.034682998061182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -6.021603267639875, "y": -11.984682997316124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -5.971603266894817, "y": -11.934682996571066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -11.884682995826008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -11.83468299508095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -11.784682994335892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -11.734682993590834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -11.684682992845776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -11.634682992100718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -11.58468299135566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -11.534682990610602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -11.484682989865544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.434682989120486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.384682988375427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -5.671603262424469, "y": -11.33468298763037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.284682986885311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.234682986140253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.184682985395195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.134682984650137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.08468298390508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -11.034682983160021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.984682982414963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.934682981669905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.884682980924847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.834682980179789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.78468297943473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.734682978689673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.684682977944615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.634682977199557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.584682976454499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.53468297570944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.484682974964382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.434682974219324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.384682973474266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.334682972729208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.28468297198415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.234682971239092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.184682970494034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.134682969748976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.084682969003918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -10.03468296825886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -9.984682967513802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -9.934682966768744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -9.884682966023686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -9.834682965278628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.78468296453357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.734682963788512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.684682963043453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.634682962298395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.584682961553337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.53468296080828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.484682960063221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.434682959318163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.384682958573105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -9.334682957828047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.284682957082989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.234682956337931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.184682955592873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.134682954847815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.084682954102757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -9.034682953357699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.98468295261264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.934682951867583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.884682951122524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.834682950377466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.784682949632408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.73468294888735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.684682948142292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.634682947397234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.584682946652176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.534682945907118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.48468294516206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.434682944417002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -5.921603266149759, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -5.871603265404701, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -7.634682932496073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -7.584682931751015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -7.534682931005957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -5.821603264659643, "y": -7.484682930260899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -7.434682929515841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -5.771603263914585, "y": -7.384682928770783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -7.334682928025725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -5.721603263169527, "y": -7.284682927280667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -5.671603262424469, "y": -7.2346829265356085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -5.621603261679411, "y": -7.1846829257905505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -5.621603261679411, "y": -7.134682925045492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -5.571603260934353, "y": -7.084682924300434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -5.571603260934353, "y": -7.034682923555376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -5.521603260189295, "y": -6.984682922810318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -5.521603260189295, "y": -6.93468292206526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -5.521603260189295, "y": -6.884682921320202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -5.471603259444237, "y": -6.834682920575144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -5.471603259444237, "y": -6.784682919830086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -5.421603258699179, "y": -6.734682919085028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": -5.421603258699179, "y": -6.68468291833997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": -5.371603257954121, "y": -6.634682917594912, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": -5.371603257954121, "y": -6.584682916849854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": -5.321603257209063, "y": -6.534682916104796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": -5.321603257209063, "y": -6.484682915359738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": -5.2716032564640045, "y": -6.43468291461468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": -5.2716032564640045, "y": -6.3846829138696215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": -5.2216032557189465, "y": -6.334682913124563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": -5.2216032557189465, "y": -6.284682912379505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": -5.2216032557189465, "y": -6.234682911634447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": -5.171603254973888, "y": -6.184682910889389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": -5.171603254973888, "y": -6.134682910144331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": -5.12160325422883, "y": -6.084682909399273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": -5.071603253483772, "y": -6.034682908654215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": -5.071603253483772, "y": -5.984682907909157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": -5.021603252738714, "y": -5.934682907164099, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": -5.021603252738714, "y": -5.884682906419041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": -4.971603251993656, "y": -5.834682905673983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": -4.921603251248598, "y": -5.784682904928925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": -4.921603251248598, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": -4.821603249758482, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": -4.821603249758482, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": -4.771603249013424, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": -4.771603249013424, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": -4.671603247523308, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": -4.62160324677825, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": -4.571603246033192, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": -4.521603245288134, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": -4.471603244543076, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": -4.321603242307901, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": -4.221603240817785, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -5.13468289524317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -5.034682893753054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -4.984682893007996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -4.934682892262938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": -4.934682892262938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -4.88468289151788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -4.834682890772822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -4.784682890027764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -4.7346828892827055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -4.6846828885376475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -4.634682887792589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -4.584682887047531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -4.584682887047531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -4.534682886302473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": -4.484682885557415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -4.434682884812357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -4.434682884812357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -4.384682884067299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -4.334682883322241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": -4.284682882577183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -4.234682881832125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -4.184682881087067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -4.134682880342009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -4.084682879596951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -4.034682878851893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -3.9846828781068346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -3.9346828773617766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -3.8846828766167185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -3.8346828758716605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -3.7846828751266024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -3.7346828743815443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -3.7346828743815443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -3.6846828736364863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -3.634682872891428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -3.58468287214637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -3.534682871401312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -3.484682870656254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -3.434682869911196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -3.384682869166138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -3.33468286842108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -3.284682867676022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -3.2346828669309637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -3.1846828661859057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -3.1346828654408476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -3.0846828646957896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -3.0346828639507315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -2.9846828632056734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -2.9346828624606154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -2.8846828617155573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -2.8346828609704993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -2.784682860225441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -2.734682859480383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -2.684682858735325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -2.634682857990267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.584682857245209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.534682856500151, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.484682855755093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.434682855010035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.3846828542649767, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.3346828535199187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.2846828527748606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.2346828520298025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.1846828512847445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.1346828505396864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -2.0346828490495703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.9846828483045122, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.9346828475594542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.8846828468143961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.834682846069338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.78468284532428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.734682844579222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.684682843834164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.6346828430891058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.5346828415989897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.4846828408539317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.3346828386187575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -1.1846828363835833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -1.1346828356385252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -1.0846828348934672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -0.934682832658293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -0.8846828319132349, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.8346828311681769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.7846828304231188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.7346828296780608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.6846828289330027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.6346828281879446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -0.5846828274428866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.5346828266978285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.48468282595277046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.4346828252077124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.38468282446265434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.3346828237175963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.2846828229725382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -0.23468282222748016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -0.1846828214824221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -0.13468282073736404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -0.08468281999230598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -0.03468281924724792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": 0.01531718149781014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": 0.0653171822428682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": 0.11531718298792626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": 0.16531718373298432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": 0.21531718447804238, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": 0.26531718522310044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": 0.3153171859681585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": 0.36531718671321656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": 0.4153171874582746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": 0.4653171882033327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": 0.5153171889483907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": 0.5653171896934488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": 0.6153171904385069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": 0.6653171911835649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": 0.715317191928623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": 0.765317192673681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": 0.8153171934187391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": 0.8653171941637972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": 0.9153171949088552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": 0.9653171956539133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": 1.0153171963989713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": 1.0653171971440294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": 1.1153171978890875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": 1.1653171986341455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": 1.2153171993792036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": 1.2653172001242616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": 1.3153172008693197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": 1.3153172008693197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": 1.3653172016143778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": 1.3653172016143778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": 1.4153172023594358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": 1.4153172023594358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": 1.4153172023594358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": 1.4653172031044939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": 1.4653172031044939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": 1.4653172031044939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": 1.4653172031044939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": 1.615317205339668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": 1.56531720459461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": 1.515317203849552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": 1.4653172031044939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": 1.4153172023594358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": 1.3653172016143778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": 1.3153172008693197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": 1.2653172001242616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": 1.2153171993792036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": 1.2153171993792036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": 1.1653171986341455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": 1.1653171986341455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": 1.1153171978890875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": 1.0653171971440294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": 1.0653171971440294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": 1.0153171963989713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": 1.0153171963989713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": 0.9653171956539133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": 0.9653171956539133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": 0.9153171949088552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": 0.9153171949088552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": 0.8653171941637972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": 0.8153171934187391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": 0.8153171934187391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": 0.765317192673681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": 0.765317192673681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": 0.715317191928623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": 0.6653171911835649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": 0.6653171911835649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": 0.6153171904385069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": 0.5653171896934488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": 0.5653171896934488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": 0.5153171889483907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": 0.4653171882033327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": 0.4153171874582746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 1.1283968389034271, "y": 0.36531718671321656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 1.1783968396484852, "y": 0.3153171859681585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 1.2283968403935432, "y": 0.26531718522310044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 1.2783968411386013, "y": 0.21531718447804238, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 1.3283968418836594, "y": 0.16531718373298432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 1.3783968426287174, "y": 0.11531718298792626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 1.4283968433737755, "y": 0.0653171822428682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 1.4783968441188335, "y": 0.01531718149781014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 1.5283968448638916, "y": -0.03468281924724792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 1.5783968456089497, "y": -0.08468281999230598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 1.6283968463540077, "y": -0.13468282073736404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 1.6783968470990658, "y": -0.13468282073736404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 1.7283968478441238, "y": -0.1846828214824221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 1.778396848589182, "y": -0.23468282222748016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 1.82839684933424, "y": -0.2846828229725382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -0.3346828237175963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 1.928396850824356, "y": -0.38468282446265434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 1.9783968515694141, "y": -0.4346828252077124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 2.028396852314472, "y": -0.4346828252077124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 2.0783968530595303, "y": -0.48468282595277046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 2.1283968538045883, "y": -0.5346828266978285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 2.1783968545496464, "y": -0.5846828274428866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 2.2283968552947044, "y": -0.6346828281879446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 2.2783968560397625, "y": -0.6346828281879446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 2.3283968567848206, "y": -0.6846828289330027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 2.3283968567848206, "y": -0.7346828296780608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 2.3783968575298786, "y": -0.7846828304231188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 2.4283968582749367, "y": -0.8346828311681769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 2.4783968590199947, "y": -0.8846828319132349, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 2.528396859765053, "y": -0.934682832658293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 2.528396859765053, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 2.578396860510111, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 2.628396861255169, "y": -1.0846828348934672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 2.678396862000227, "y": -1.1346828356385252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 2.678396862000227, "y": -1.1846828363835833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 2.728396862745285, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 2.728396862745285, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 2.778396863490343, "y": -1.3346828386187575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 2.778396863490343, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 2.828396864235401, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 2.878396864980459, "y": -1.4846828408539317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 2.878396864980459, "y": -1.5346828415989897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 2.9283968657255173, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 2.9783968664705753, "y": -1.6346828430891058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 2.9783968664705753, "y": -1.684682843834164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 3.0283968672156334, "y": -1.734682844579222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 3.0783968679606915, "y": -1.78468284532428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 3.1283968687057495, "y": -1.834682846069338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 3.1283968687057495, "y": -1.8846828468143961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 3.1283968687057495, "y": -1.9346828475594542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 3.1783968694508076, "y": -1.9846828483045122, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 3.1783968694508076, "y": -2.0346828490495703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 3.2283968701958656, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 3.2283968701958656, "y": -2.1346828505396864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 3.2783968709409237, "y": -2.1846828512847445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 3.2783968709409237, "y": -2.2346828520298025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 3.3283968716859818, "y": -2.2846828527748606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 3.3283968716859818, "y": -2.3346828535199187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 3.3283968716859818, "y": -2.3846828542649767, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 3.37839687243104, "y": -2.434682855010035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 3.37839687243104, "y": -2.484682855755093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 3.428396873176098, "y": -2.534682856500151, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 3.428396873176098, "y": -2.584682857245209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 3.428396873176098, "y": -2.634682857990267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 3.478396873921156, "y": -2.684682858735325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 3.478396873921156, "y": -2.734682859480383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 3.478396873921156, "y": -2.784682860225441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -2.8346828609704993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -2.8846828617155573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -2.9346828624606154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -2.9846828632056734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -3.0346828639507315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -3.0846828646957896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -3.1346828654408476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -3.1846828661859057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -3.2346828669309637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -3.284682867676022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -3.33468286842108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -3.384682869166138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -3.434682869911196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -3.484682870656254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -3.534682871401312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -3.58468287214637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -3.634682872891428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -3.6846828736364863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -3.7346828743815443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -3.7846828751266024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -3.8346828758716605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -3.8846828766167185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -3.9346828773617766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -3.9846828781068346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -4.034682878851893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -4.084682879596951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -4.134682880342009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -4.184682881087067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -4.234682881832125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -4.284682882577183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -4.334682883322241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -4.384682884067299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -4.434682884812357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.484682885557415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.534682886302473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.584682887047531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.634682887792589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.6846828885376475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.7346828892827055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.784682890027764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.834682890772822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.88468289151788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.934682892262938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -4.984682893007996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.034682893753054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.13468289524317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 3.9783968813717365, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 3.9283968806266785, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.784682904928925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.834682905673983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.884682906419041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.934682907164099, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 3.8783968798816204, "y": -5.984682907909157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -6.034682908654215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -6.084682909399273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -6.134682910144331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 3.8283968791365623, "y": -6.184682910889389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -6.234682911634447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -6.284682912379505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 3.7783968783915043, "y": -6.334682913124563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -6.3846829138696215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -6.43468291461468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 3.7283968776464462, "y": -6.484682915359738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -6.534682916104796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -6.584682916849854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 3.678396876901388, "y": -6.634682917594912, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -6.68468291833997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 3.62839687615633, "y": -6.734682919085028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -6.784682919830086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -6.834682920575144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 3.578396875411272, "y": -6.884682921320202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -6.93468292206526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 3.528396874666214, "y": -6.984682922810318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 3.478396873921156, "y": -7.034682923555376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 3.478396873921156, "y": -7.084682924300434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 3.428396873176098, "y": -7.134682925045492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 3.428396873176098, "y": -7.1846829257905505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 3.37839687243104, "y": -7.2346829265356085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 3.37839687243104, "y": -7.284682927280667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 3.3283968716859818, "y": -7.334682928025725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 3.3283968716859818, "y": -7.384682928770783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 3.2783968709409237, "y": -7.434682929515841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 3.2783968709409237, "y": -7.484682930260899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 3.2283968701958656, "y": -7.534682931005957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 3.2283968701958656, "y": -7.584682931751015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 3.1783968694508076, "y": -7.634682932496073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 3.1783968694508076, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 3.1283968687057495, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": 3.1283968687057495, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": 3.0783968679606915, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": 3.0783968679606915, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": 3.0783968679606915, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": 3.0283968672156334, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": 2.9783968664705753, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": 2.9783968664705753, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": 2.9783968664705753, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": 2.9283968657255173, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": 2.878396864980459, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": 2.878396864980459, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": 2.828396864235401, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": 2.828396864235401, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": 2.778396863490343, "y": -8.434682944417002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": 2.778396863490343, "y": -8.48468294516206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": 2.728396862745285, "y": -8.534682945907118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": 2.678396862000227, "y": -8.584682946652176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": 2.678396862000227, "y": -8.634682947397234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": 2.628396861255169, "y": -8.684682948142292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": 2.628396861255169, "y": -8.73468294888735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": 2.578396860510111, "y": -8.784682949632408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": 2.578396860510111, "y": -8.834682950377466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": 2.528396859765053, "y": -8.884682951122524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": 2.528396859765053, "y": -8.934682951867583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": 2.4783968590199947, "y": -8.98468295261264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": 2.4783968590199947, "y": -9.034682953357699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": 2.4283968582749367, "y": -9.084682954102757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": 2.3783968575298786, "y": -9.134682954847815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": 2.3783968575298786, "y": -9.184682955592873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": 2.3283968567848206, "y": -9.234682956337931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": 2.3283968567848206, "y": -9.284682957082989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": 2.2783968560397625, "y": -9.334682957828047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": 2.2783968560397625, "y": -9.384682958573105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": 2.2283968552947044, "y": -9.434682959318163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": 2.2283968552947044, "y": -9.484682960063221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": 2.2283968552947044, "y": -9.53468296080828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": 2.1783968545496464, "y": -9.584682961553337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": 2.1783968545496464, "y": -9.634682962298395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": 2.1783968545496464, "y": -9.684682963043453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": 2.1783968545496464, "y": -9.734682963788512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": 2.1283968538045883, "y": -9.78468296453357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": 2.1283968538045883, "y": -9.834682965278628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": 2.0783968530595303, "y": -9.884682966023686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": 2.0783968530595303, "y": -9.934682966768744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": 2.028396852314472, "y": -9.984682967513802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": 1.9783968515694141, "y": -10.03468296825886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": 1.9783968515694141, "y": -10.084682969003918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": 1.928396850824356, "y": -10.134682969748976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -10.184682970494034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -10.234682971239092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -10.28468297198415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -10.334682972729208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": 1.878396850079298, "y": -10.384682973474266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": 1.82839684933424, "y": -10.434682974219324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": 1.778396848589182, "y": -10.484682974964382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": 1.778396848589182, "y": -10.53468297570944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": 1.7283968478441238, "y": -10.584682976454499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": 1.6783968470990658, "y": -10.634682977199557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": 1.6283968463540077, "y": -10.684682977944615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": 1.6283968463540077, "y": -10.734682978689673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": 1.5783968456089497, "y": -10.78468297943473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": 1.5283968448638916, "y": -10.834682980179789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": 1.4783968441188335, "y": -10.884682980924847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": 1.4283968433737755, "y": -10.934682981669905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": 1.4283968433737755, "y": -10.984682982414963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": 1.3783968426287174, "y": -11.034682983160021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": 1.3783968426287174, "y": -11.08468298390508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": 1.3283968418836594, "y": -11.134682984650137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": 1.3283968418836594, "y": -11.184682985395195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": 1.2783968411386013, "y": -11.234682986140253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": 1.2283968403935432, "y": -11.284682986885311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": 1.2283968403935432, "y": -11.33468298763037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": 1.1783968396484852, "y": -11.384682988375427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": 1.1783968396484852, "y": -11.434682989120486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": 1.1283968389034271, "y": -11.484682989865544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": 1.1283968389034271, "y": -11.534682990610602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -11.58468299135566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -11.634682992100718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -11.684682992845776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -11.734682993590834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -11.784682994335892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -11.83468299508095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -11.884682995826008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -11.934682996571066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -11.984682997316124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -12.034682998061182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -12.08468299880624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -12.134682999551298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 864, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 865, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 866, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 867, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 868, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 869, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 870, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 871, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 872, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 873, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 874, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 875, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 876, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 877, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 878, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 879, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 880, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 881, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 882, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 883, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 884, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.234683001041414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 885, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.284683001786473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 886, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.33468300253153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 887, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.384683003276589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 888, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.434683004021647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 889, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.484683004766705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 890, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.534683005511763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 891, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.584683006256821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 892, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.634683007001879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 893, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.684683007746937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 894, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.734683008491995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 895, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.784683009237053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 896, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.834683009982111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 897, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.88468301072717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 898, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.934683011472227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 899, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -12.984683012217285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 900, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.034683012962343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 901, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.084683013707401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 902, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.13468301445246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 903, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.184683015197518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 904, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.234683015942576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 905, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.284683016687634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 906, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.334683017432692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 907, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.38468301817775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 908, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.434683018922808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 909, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.484683019667866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 910, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.534683020412924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 911, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.584683021157982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 912, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.63468302190304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 913, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.684683022648098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 914, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.734683023393156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 915, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.784683024138214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 916, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.834683024883272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 917, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.88468302562833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 918, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.934683026373389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 919, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -13.984683027118447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 920, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -14.034683027863505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 921, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -14.084683028608563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 922, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -14.13468302935362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 923, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -14.184683030098679, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 924, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -14.234683030843737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 925, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -14.284683031588795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 926, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -14.334683032333853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 927, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -14.384683033078911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 928, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -14.434683033823969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 929, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -14.484683034569027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 930, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -14.534683035314085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 931, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -14.584683036059143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 932, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -14.634683036804201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 933, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -14.68468303754926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 934, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -14.734683038294317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 935, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -14.784683039039376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 936, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -14.834683039784434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 937, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -14.884683040529492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 938, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -14.93468304127455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 939, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -14.984683042019608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 940, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -15.034683042764666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 941, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -15.084683043509724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 942, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -15.134683044254782, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 943, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -15.18468304499984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 944, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -15.234683045744898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 945, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -15.284683046489956, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 946, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -15.334683047235014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 947, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": -15.384683047980072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 948, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -15.43468304872513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 949, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -15.484683049470188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 950, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -15.534683050215246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 951, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -15.584683050960304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 952, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -15.634683051705363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 953, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -15.68468305245042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 954, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": -15.734683053195479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 955, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -15.784683053940537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 956, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -15.834683054685595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 957, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -15.884683055430653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 958, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -15.934683056175711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 959, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": -15.984683056920769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 960, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -16.034683057665827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 961, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -16.084683058410885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 962, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -16.134683059155943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 963, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -16.184683059901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 964, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -16.23468306064606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 965, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -16.284683061391117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 966, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -16.334683062136175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 967, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -16.384683062881233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 968, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -16.43468306362629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 969, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -16.48468306437135, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 970, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -16.534683065116408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 971, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -16.584683065861466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 972, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -16.634683066606524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 973, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -16.684683067351582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 974, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -16.73468306809664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 975, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -16.784683068841698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 976, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -16.834683069586756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 977, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -16.884683070331814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 978, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -16.934683071076872, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 979, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -16.98468307182193, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 980, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -17.034683072566988, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 981, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -17.084683073312046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 982, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -17.134683074057104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 983, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -17.184683074802162, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 984, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -17.23468307554722, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 985, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": -17.28468307629228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 986, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -17.334683077037337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 987, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -17.384683077782395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 988, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -17.434683078527453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 989, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -17.48468307927251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 990, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -17.53468308001757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 991, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -17.584683080762627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 992, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -17.634683081507685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 993, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -17.684683082252743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 994, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -17.7346830829978, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 995, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -17.78468308374286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 996, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -17.834683084487917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 997, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -17.884683085232975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 998, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -17.934683085978033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 999, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -17.98468308672309, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1000, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": -18.03468308746815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1001, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -18.084683088213207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1002, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -18.134683088958266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1003, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -18.184683089703324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1004, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -18.23468309044838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1005, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -18.28468309119344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1006, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -18.334683091938498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1007, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -18.384683092683556, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1008, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -18.434683093428614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1009, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": -18.484683094173672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1010, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -18.53468309491873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1011, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -18.584683095663788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1012, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -18.634683096408846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1013, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -18.684683097153904, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1014, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -18.734683097898962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1015, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -18.78468309864402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1016, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -18.83468309938908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1017, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -18.884683100134136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1018, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -18.934683100879194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1019, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -18.984683101624253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1020, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -19.03468310236931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1021, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -19.08468310311437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1022, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -19.134683103859427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1023, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -19.184683104604485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1024, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -19.234683105349543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1025, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -19.2846831060946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1026, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -19.33468310683966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1027, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -19.384683107584717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1028, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -19.434683108329775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1029, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -19.484683109074833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1030, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -19.53468310981989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1031, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -19.53468310981989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1032, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -19.58468311056495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1033, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -19.634683111310007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1034, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -19.684683112055065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1035, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1036, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1037, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1038, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1039, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1040, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1041, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1042, "type": 2, "action": 0, "pose": {"position": {"x": -4.221603240817785, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1043, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1044, "type": 2, "action": 0, "pose": {"position": {"x": -4.321603242307901, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1045, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1046, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1047, "type": 2, "action": 0, "pose": {"position": {"x": -4.471603244543076, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1048, "type": 2, "action": 0, "pose": {"position": {"x": -4.521603245288134, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1049, "type": 2, "action": 0, "pose": {"position": {"x": -4.571603246033192, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1050, "type": 2, "action": 0, "pose": {"position": {"x": -4.62160324677825, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1051, "type": 2, "action": 0, "pose": {"position": {"x": -4.671603247523308, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1052, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1053, "type": 2, "action": 0, "pose": {"position": {"x": -4.771603249013424, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1054, "type": 2, "action": 0, "pose": {"position": {"x": -4.821603249758482, "y": -19.734683112800123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1055, "type": 2, "action": 0, "pose": {"position": {"x": -4.671603247523308, "y": -15.284683046489956, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1056, "type": 2, "action": 0, "pose": {"position": {"x": -4.62160324677825, "y": -15.334683047235014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1057, "type": 2, "action": 0, "pose": {"position": {"x": -4.571603246033192, "y": -15.334683047235014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1058, "type": 2, "action": 0, "pose": {"position": {"x": -4.521603245288134, "y": -15.284683046489956, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1059, "type": 2, "action": 0, "pose": {"position": {"x": -4.471603244543076, "y": -15.234683045744898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1060, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -15.18468304499984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1061, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -15.134683044254782, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1062, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -15.084683043509724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1063, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -15.034683042764666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1064, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -14.984683042019608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1065, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -14.93468304127455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1066, "type": 2, "action": 0, "pose": {"position": {"x": -4.321603242307901, "y": -14.884683040529492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1067, "type": 2, "action": 0, "pose": {"position": {"x": -4.321603242307901, "y": -14.834683039784434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1068, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -14.784683039039376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1069, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -14.734683038294317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1070, "type": 2, "action": 0, "pose": {"position": {"x": -4.221603240817785, "y": -14.68468303754926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1071, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -14.634683036804201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1072, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -14.584683036059143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1073, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -14.534683035314085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1074, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -14.484683034569027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1075, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -14.434683033823969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1076, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -14.384683033078911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1077, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -14.334683032333853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1078, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -14.284683031588795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1079, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -14.234683030843737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1080, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -14.184683030098679, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1081, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -14.13468302935362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1082, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -14.084683028608563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1083, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -14.034683027863505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1084, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -13.984683027118447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1085, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -13.934683026373389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1086, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -13.88468302562833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1087, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -13.834683024883272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1088, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -13.784683024138214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1089, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -13.734683023393156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1090, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -13.684683022648098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1091, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -13.63468302190304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1092, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -13.584683021157982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1093, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -13.534683020412924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1094, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -13.484683019667866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1095, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -13.434683018922808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1096, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -13.38468301817775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1097, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -13.334683017432692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1098, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -13.284683016687634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1099, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -13.234683015942576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1100, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -13.184683015197518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1101, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -13.13468301445246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1102, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -13.084683013707401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1103, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -13.034683012962343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1104, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -12.984683012217285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1105, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -12.934683011472227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1106, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -12.88468301072717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1107, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -12.834683009982111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1108, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -12.784683009237053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1109, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -12.734683008491995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1110, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -12.684683007746937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1111, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -12.634683007001879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1112, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -12.584683006256821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1113, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": -12.534683005511763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1114, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -12.484683004766705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1115, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -12.434683004021647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1116, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -12.384683003276589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1117, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -12.33468300253153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1118, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -12.284683001786473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1119, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -12.234683001041414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1120, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1121, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": -12.134682999551298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1122, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -12.08468299880624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1123, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -12.034682998061182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1124, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -11.984682997316124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1125, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -11.934682996571066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1126, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -11.884682995826008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1127, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -11.83468299508095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1128, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -11.784682994335892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1129, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -11.734682993590834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1130, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -11.684682992845776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1131, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -11.634682992100718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1132, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -11.58468299135566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1133, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -11.534682990610602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1134, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -11.484682989865544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1135, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -11.434682989120486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1136, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -11.384682988375427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1137, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -11.33468298763037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1138, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -11.284682986885311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1139, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": -11.234682986140253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1140, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -11.184682985395195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1141, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -11.134682984650137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1142, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -11.08468298390508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1143, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -11.034682983160021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1144, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -10.984682982414963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1145, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -10.934682981669905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1146, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -10.884682980924847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1147, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -10.834682980179789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1148, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -10.78468297943473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1149, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -10.734682978689673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1150, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -10.684682977944615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1151, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -10.634682977199557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1152, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -10.584682976454499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1153, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -10.53468297570944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1154, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -10.484682974964382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1155, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -10.434682974219324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1156, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -10.384682973474266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1157, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -10.334682972729208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1158, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -10.28468297198415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1159, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -10.234682971239092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1160, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -10.184682970494034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1161, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -10.134682969748976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1162, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -10.084682969003918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1163, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -10.03468296825886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1164, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -9.984682967513802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1165, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -9.934682966768744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1166, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -9.884682966023686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1167, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -9.834682965278628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1168, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -9.78468296453357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1169, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -9.734682963788512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1170, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -9.684682963043453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1171, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": -9.634682962298395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1172, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -9.584682961553337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1173, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -9.53468296080828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1174, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -9.484682960063221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1175, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": -9.434682959318163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1176, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -9.384682958573105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1177, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -9.334682957828047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1178, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -9.284682957082989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1179, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -9.234682956337931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1180, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -9.184682955592873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1181, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -9.134682954847815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1182, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -9.084682954102757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1183, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -9.034682953357699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1184, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -8.98468295261264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1185, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -8.98468295261264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1186, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": -8.934682951867583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1187, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -8.884682951122524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1188, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -8.834682950377466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1189, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -8.784682949632408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1190, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -8.73468294888735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1191, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -8.684682948142292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1192, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -8.634682947397234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1193, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -8.584682946652176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1194, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -8.534682945907118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1195, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -8.48468294516206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1196, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -8.434682944417002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1197, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1198, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1199, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1200, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1201, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1202, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1203, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1204, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1205, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1206, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1207, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1208, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1209, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1210, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1211, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1212, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -7.634682932496073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1213, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -7.584682931751015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1214, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -7.534682931005957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1215, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -7.484682930260899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1216, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -7.434682929515841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1217, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -7.384682928770783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1218, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -7.334682928025725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1219, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -7.284682927280667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1220, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -7.2346829265356085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1221, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -7.1846829257905505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1222, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -7.134682925045492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1223, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -7.084682924300434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1224, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -7.034682923555376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1225, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -6.984682922810318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1226, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -6.93468292206526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1227, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -6.884682921320202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1228, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -6.834682920575144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1229, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": -6.784682919830086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1230, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -6.734682919085028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1231, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -6.68468291833997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1232, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -6.634682917594912, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1233, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -6.584682916849854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1234, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -6.534682916104796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1235, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -6.484682915359738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1236, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -6.43468291461468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1237, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -6.3846829138696215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1238, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -6.334682913124563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1239, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -6.284682912379505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1240, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -6.234682911634447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1241, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -6.184682910889389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1242, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -6.134682910144331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1243, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -6.084682909399273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1244, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -6.034682908654215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1245, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -5.984682907909157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1246, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -5.934682907164099, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1247, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -5.884682906419041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1248, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -5.834682905673983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1249, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -5.784682904928925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1250, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1251, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1252, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1253, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1254, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1255, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1256, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1257, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1258, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1259, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1260, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1261, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1262, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -5.13468289524317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1263, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1264, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -5.034682893753054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1265, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -4.984682893007996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1266, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -4.934682892262938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1267, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -4.88468289151788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1268, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -4.834682890772822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1269, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.784682890027764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1270, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.7346828892827055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1271, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.6846828885376475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1272, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.634682887792589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1273, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.584682887047531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1274, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.534682886302473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1275, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.484682885557415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1276, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.434682884812357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1277, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.384682884067299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1278, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.334682883322241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1279, "type": 2, "action": 0, "pose": {"position": {"x": 1.1283968389034271, "y": -4.284682882577183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1280, "type": 2, "action": 0, "pose": {"position": {"x": 1.1283968389034271, "y": -4.234682881832125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1281, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.184682881087067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1282, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.134682880342009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1283, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.084682879596951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1284, "type": 2, "action": 0, "pose": {"position": {"x": 1.078396838158369, "y": -4.034682878851893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1285, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -3.9846828781068346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1286, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -3.9346828773617766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1287, "type": 2, "action": 0, "pose": {"position": {"x": 1.028396837413311, "y": -3.8846828766167185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1288, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.8346828758716605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1289, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.7846828751266024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1290, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.7346828743815443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1291, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.6846828736364863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1292, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.634682872891428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1293, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.58468287214637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1294, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.534682871401312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1295, "type": 2, "action": 0, "pose": {"position": {"x": 0.978396836668253, "y": -3.484682870656254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1296, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -3.434682869911196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1297, "type": 2, "action": 0, "pose": {"position": {"x": 0.9283968359231949, "y": -3.384682869166138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1298, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -3.33468286842108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1299, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.284682867676022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1300, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.2346828669309637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1301, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -3.1846828661859057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1302, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -3.1346828654408476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1303, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -3.0846828646957896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1304, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -3.0346828639507315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1305, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -2.9846828632056734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1306, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -2.9346828624606154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1307, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -2.8846828617155573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1308, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -2.8346828609704993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1309, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -2.784682860225441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1310, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -2.734682859480383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1311, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -2.684682858735325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1312, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -2.634682857990267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1313, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -2.584682857245209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1314, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -2.534682856500151, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1315, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -2.484682855755093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1316, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -2.434682855010035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1317, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -2.3846828542649767, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1318, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -2.3346828535199187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1319, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -2.3346828535199187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1320, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": -2.2846828527748606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1321, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -2.2346828520298025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1322, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -2.1846828512847445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1323, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -2.1346828505396864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1324, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1325, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1326, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -2.0346828490495703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1327, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -1.9846828483045122, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1328, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -1.9346828475594542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1329, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -1.8846828468143961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1330, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -1.834682846069338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1331, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -1.834682846069338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1332, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -1.78468284532428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1333, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -1.734682844579222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1334, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -1.684682843834164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1335, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -1.6346828430891058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1336, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1337, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1338, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -1.5346828415989897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1339, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -1.4846828408539317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1340, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1341, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1342, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1343, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1344, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": -1.3346828386187575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1345, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -1.3346828386187575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1346, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1347, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1348, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1349, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1350, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -1.1846828363835833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1351, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -1.1846828363835833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1352, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": -1.1346828356385252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1353, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -1.0846828348934672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1354, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -1.0846828348934672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1355, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1356, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1357, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1358, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1359, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1360, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1361, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -0.984682833403351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1362, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1363, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -1.0346828341484091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1364, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -1.0846828348934672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1365, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -1.1346828356385252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1366, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -1.1846828363835833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1367, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1368, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1369, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1370, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1371, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1372, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1373, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -1.2346828371286414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1374, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1375, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1376, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -1.2846828378736994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1377, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -1.3346828386187575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1378, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1379, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1380, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -1.3846828393638155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1381, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1382, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -1.4346828401088736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1383, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -1.4846828408539317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1384, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -1.5346828415989897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1385, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -1.5346828415989897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1386, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1387, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -1.5846828423440478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1388, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -1.6346828430891058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1389, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -1.684682843834164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1390, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -1.684682843834164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1391, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -1.734682844579222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1392, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -1.78468284532428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1393, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -1.78468284532428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1394, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -1.834682846069338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1395, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -1.8846828468143961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1396, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -1.8846828468143961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1397, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -1.9346828475594542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1398, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -1.9846828483045122, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1399, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -2.0346828490495703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1400, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1401, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -2.0846828497946284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1402, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -2.1346828505396864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1403, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -2.1846828512847445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1404, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -2.2346828520298025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1405, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -2.2846828527748606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1406, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -2.3346828535199187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1407, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -2.3846828542649767, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1408, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -2.434682855010035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1409, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": -2.484682855755093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1410, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -2.534682856500151, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1411, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -2.584682857245209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1412, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -2.634682857990267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1413, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -2.684682858735325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1414, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -2.734682859480383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1415, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -2.784682860225441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1416, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -2.8346828609704993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1417, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -2.8846828617155573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1418, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -2.9346828624606154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1419, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -2.9846828632056734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1420, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -3.0346828639507315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1421, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -3.0846828646957896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1422, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -3.1346828654408476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1423, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -3.1846828661859057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1424, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -3.2346828669309637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1425, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -3.284682867676022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1426, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -3.33468286842108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1427, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -3.384682869166138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1428, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -3.434682869911196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1429, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -3.484682870656254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1430, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -3.534682871401312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1431, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -3.58468287214637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1432, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.634682872891428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1433, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.6846828736364863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1434, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.7346828743815443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1435, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -3.7846828751266024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1436, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -3.8346828758716605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1437, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -3.8846828766167185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1438, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -3.9346828773617766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1439, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -3.9846828781068346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1440, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.034682878851893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1441, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.084682879596951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1442, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.134682880342009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1443, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.184682881087067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1444, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.234682881832125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1445, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.284682882577183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1446, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.334682883322241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1447, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.384682884067299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1448, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.434682884812357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1449, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.484682885557415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1450, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.534682886302473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1451, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.584682887047531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1452, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.634682887792589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1453, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.6846828885376475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1454, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.7346828892827055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1455, "type": 2, "action": 0, "pose": {"position": {"x": 0.8783968351781368, "y": -4.784682890027764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1456, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -4.834682890772822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1457, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -4.88468289151788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1458, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -4.934682892262938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1459, "type": 2, "action": 0, "pose": {"position": {"x": 0.8283968344330788, "y": -4.984682893007996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1460, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -5.034682893753054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1461, "type": 2, "action": 0, "pose": {"position": {"x": 0.7783968336880207, "y": -5.084682894498112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1462, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -5.13468289524317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1463, "type": 2, "action": 0, "pose": {"position": {"x": 0.7283968329429626, "y": -5.184682895988228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1464, "type": 2, "action": 0, "pose": {"position": {"x": 0.6783968321979046, "y": -5.234682896733286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1465, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -5.284682897478344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1466, "type": 2, "action": 0, "pose": {"position": {"x": 0.6283968314528465, "y": -5.334682898223402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1467, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -5.38468289896846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1468, "type": 2, "action": 0, "pose": {"position": {"x": 0.5783968307077885, "y": -5.434682899713518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1469, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -5.484682900458576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1470, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -5.5346829012036345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1471, "type": 2, "action": 0, "pose": {"position": {"x": 0.5283968299627304, "y": -5.5846829019486925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1472, "type": 2, "action": 0, "pose": {"position": {"x": 0.47839682921767235, "y": -5.634682902693751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1473, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -5.684682903438809, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1474, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -5.734682904183867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1475, "type": 2, "action": 0, "pose": {"position": {"x": 0.4283968284726143, "y": -5.784682904928925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1476, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -5.834682905673983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1477, "type": 2, "action": 0, "pose": {"position": {"x": 0.37839682772755623, "y": -5.884682906419041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1478, "type": 2, "action": 0, "pose": {"position": {"x": 0.32839682698249817, "y": -5.934682907164099, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1479, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -5.984682907909157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1480, "type": 2, "action": 0, "pose": {"position": {"x": 0.2783968262374401, "y": -6.034682908654215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1481, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -6.084682909399273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1482, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -6.134682910144331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1483, "type": 2, "action": 0, "pose": {"position": {"x": 0.22839682549238205, "y": -6.184682910889389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1484, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -6.234682911634447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1485, "type": 2, "action": 0, "pose": {"position": {"x": 0.178396824747324, "y": -6.284682912379505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1486, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -6.334682913124563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1487, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -6.3846829138696215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1488, "type": 2, "action": 0, "pose": {"position": {"x": 0.12839682400226593, "y": -6.43468291461468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1489, "type": 2, "action": 0, "pose": {"position": {"x": 0.07839682325720787, "y": -6.43468291461468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1490, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -6.484682915359738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1491, "type": 2, "action": 0, "pose": {"position": {"x": 0.02839682251214981, "y": -6.534682916104796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1492, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -6.584682916849854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1493, "type": 2, "action": 0, "pose": {"position": {"x": -0.02160317823290825, "y": -6.634682917594912, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1494, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -6.68468291833997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1495, "type": 2, "action": 0, "pose": {"position": {"x": -0.07160317897796631, "y": -6.734682919085028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1496, "type": 2, "action": 0, "pose": {"position": {"x": -0.12160317972302437, "y": -6.784682919830086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1497, "type": 2, "action": 0, "pose": {"position": {"x": -0.17160318046808243, "y": -6.834682920575144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1498, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -6.884682921320202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1499, "type": 2, "action": 0, "pose": {"position": {"x": -0.2216031812131405, "y": -6.93468292206526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1500, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -6.984682922810318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1501, "type": 2, "action": 0, "pose": {"position": {"x": -0.27160318195819855, "y": -7.034682923555376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1502, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -7.084682924300434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1503, "type": 2, "action": 0, "pose": {"position": {"x": -0.3216031827032566, "y": -7.134682925045492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1504, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -7.1846829257905505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1505, "type": 2, "action": 0, "pose": {"position": {"x": -0.37160318344831467, "y": -7.2346829265356085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1506, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -7.284682927280667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1507, "type": 2, "action": 0, "pose": {"position": {"x": -0.4216031841933727, "y": -7.334682928025725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1508, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -7.384682928770783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1509, "type": 2, "action": 0, "pose": {"position": {"x": -0.4716031849384308, "y": -7.434682929515841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1510, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -7.484682930260899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1511, "type": 2, "action": 0, "pose": {"position": {"x": -0.5216031856834888, "y": -7.534682931005957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1512, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -7.584682931751015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1513, "type": 2, "action": 0, "pose": {"position": {"x": -0.5716031864285469, "y": -7.634682932496073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1514, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1515, "type": 2, "action": 0, "pose": {"position": {"x": -0.621603187173605, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1516, "type": 2, "action": 0, "pose": {"position": {"x": -0.671603187918663, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1517, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1518, "type": 2, "action": 0, "pose": {"position": {"x": -0.7216031886637211, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1519, "type": 2, "action": 0, "pose": {"position": {"x": -0.7716031894087791, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1520, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1521, "type": 2, "action": 0, "pose": {"position": {"x": -0.8216031901538372, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1522, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1523, "type": 2, "action": 0, "pose": {"position": {"x": -0.8716031908988953, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1524, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1525, "type": 2, "action": 0, "pose": {"position": {"x": -0.9216031916439533, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1526, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1527, "type": 2, "action": 0, "pose": {"position": {"x": -0.9716031923890114, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1528, "type": 2, "action": 0, "pose": {"position": {"x": -1.0216031931340694, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1529, "type": 2, "action": 0, "pose": {"position": {"x": -1.0716031938791275, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1530, "type": 2, "action": 0, "pose": {"position": {"x": -1.1216031946241856, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1531, "type": 2, "action": 0, "pose": {"position": {"x": -1.1716031953692436, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1532, "type": 2, "action": 0, "pose": {"position": {"x": -1.2216031961143017, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1533, "type": 2, "action": 0, "pose": {"position": {"x": -1.2716031968593597, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1534, "type": 2, "action": 0, "pose": {"position": {"x": -1.3216031976044178, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1535, "type": 2, "action": 0, "pose": {"position": {"x": -1.3716031983494759, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1536, "type": 2, "action": 0, "pose": {"position": {"x": -1.421603199094534, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1537, "type": 2, "action": 0, "pose": {"position": {"x": -1.471603199839592, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1538, "type": 2, "action": 0, "pose": {"position": {"x": -1.52160320058465, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1539, "type": 2, "action": 0, "pose": {"position": {"x": -1.571603201329708, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1540, "type": 2, "action": 0, "pose": {"position": {"x": -1.6216032020747662, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1541, "type": 2, "action": 0, "pose": {"position": {"x": -1.6716032028198242, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1542, "type": 2, "action": 0, "pose": {"position": {"x": -1.7216032035648823, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1543, "type": 2, "action": 0, "pose": {"position": {"x": -1.7716032043099403, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1544, "type": 2, "action": 0, "pose": {"position": {"x": -1.8216032050549984, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1545, "type": 2, "action": 0, "pose": {"position": {"x": -1.8716032058000565, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1546, "type": 2, "action": 0, "pose": {"position": {"x": -1.9216032065451145, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1547, "type": 2, "action": 0, "pose": {"position": {"x": -1.9716032072901726, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1548, "type": 2, "action": 0, "pose": {"position": {"x": -2.0216032080352306, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1549, "type": 2, "action": 0, "pose": {"position": {"x": -2.0716032087802887, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1550, "type": 2, "action": 0, "pose": {"position": {"x": -2.1216032095253468, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1551, "type": 2, "action": 0, "pose": {"position": {"x": -2.171603210270405, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1552, "type": 2, "action": 0, "pose": {"position": {"x": -2.221603211015463, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1553, "type": 2, "action": 0, "pose": {"position": {"x": -2.271603211760521, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1554, "type": 2, "action": 0, "pose": {"position": {"x": -2.321603212505579, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1555, "type": 2, "action": 0, "pose": {"position": {"x": -2.371603213250637, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1556, "type": 2, "action": 0, "pose": {"position": {"x": -2.421603213995695, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1557, "type": 2, "action": 0, "pose": {"position": {"x": -2.471603214740753, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1558, "type": 2, "action": 0, "pose": {"position": {"x": -2.5216032154858112, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1559, "type": 2, "action": 0, "pose": {"position": {"x": -2.5716032162308693, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1560, "type": 2, "action": 0, "pose": {"position": {"x": -2.6216032169759274, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1561, "type": 2, "action": 0, "pose": {"position": {"x": -2.6716032177209854, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1562, "type": 2, "action": 0, "pose": {"position": {"x": -2.7216032184660435, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1563, "type": 2, "action": 0, "pose": {"position": {"x": -2.7716032192111015, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1564, "type": 2, "action": 0, "pose": {"position": {"x": -2.8216032199561596, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1565, "type": 2, "action": 0, "pose": {"position": {"x": -2.8716032207012177, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1566, "type": 2, "action": 0, "pose": {"position": {"x": -2.9216032214462757, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1567, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1568, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1569, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1570, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1571, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1572, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1573, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -7.684682933241131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1574, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -7.734682933986189, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1575, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -7.784682934731247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1576, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -7.834682935476305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1577, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -7.884682936221363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1578, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -7.934682936966421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1579, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -7.984682937711479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1580, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -8.034682938456537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1581, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -8.084682939201596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1582, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.134682939946654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1583, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.184682940691712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1584, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.23468294143677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1585, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.284682942181828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1586, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.334682942926886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1587, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.384682943671944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1588, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.434682944417002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1589, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.48468294516206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1590, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.534682945907118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1591, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.584682946652176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1592, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.634682947397234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1593, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.684682948142292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1594, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.73468294888735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1595, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.784682949632408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1596, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.834682950377466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1597, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.884682951122524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1598, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.934682951867583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1599, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -8.98468295261264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1600, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -9.034682953357699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1601, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -9.084682954102757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1602, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.134682954847815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1603, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.184682955592873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1604, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.234682956337931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1605, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.284682957082989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1606, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.334682957828047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1607, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.384682958573105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1608, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -9.434682959318163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1609, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -9.484682960063221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1610, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -9.53468296080828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1611, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -9.584682961553337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1612, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -9.634682962298395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1613, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -9.684682963043453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1614, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -9.734682963788512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1615, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -9.78468296453357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1616, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -9.834682965278628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1617, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -9.884682966023686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1618, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -9.934682966768744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1619, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -9.984682967513802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1620, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -10.03468296825886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1621, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -10.084682969003918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1622, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -10.134682969748976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1623, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -10.184682970494034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1624, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -10.234682971239092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1625, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -10.28468297198415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1626, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -10.334682972729208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1627, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -10.384682973474266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1628, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -10.434682974219324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1629, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -10.484682974964382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1630, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -10.53468297570944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1631, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -10.584682976454499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1632, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -10.634682977199557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1633, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -10.684682977944615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1634, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -10.734682978689673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1635, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -10.78468297943473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1636, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -10.834682980179789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1637, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -10.884682980924847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1638, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -10.934682981669905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1639, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -10.984682982414963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1640, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.034682983160021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1641, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.08468298390508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1642, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.134682984650137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1643, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.184682985395195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1644, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.234682986140253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1645, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.284682986885311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1646, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.33468298763037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1647, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.384682988375427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1648, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.434682989120486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1649, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.484682989865544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1650, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.534682990610602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1651, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.58468299135566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1652, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.634682992100718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1653, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.684682992845776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1654, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.734682993590834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1655, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.784682994335892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1656, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.83468299508095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1657, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.884682995826008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1658, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.934682996571066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1659, "type": 2, "action": 0, "pose": {"position": {"x": -2.9716032221913338, "y": -11.984682997316124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1660, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -12.034682998061182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1661, "type": 2, "action": 0, "pose": {"position": {"x": -3.021603222936392, "y": -12.08468299880624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1662, "type": 2, "action": 0, "pose": {"position": {"x": -3.07160322368145, "y": -12.134682999551298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1663, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -12.184683000296356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1664, "type": 2, "action": 0, "pose": {"position": {"x": -3.121603224426508, "y": -12.234683001041414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1665, "type": 2, "action": 0, "pose": {"position": {"x": -3.171603225171566, "y": -12.284683001786473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1666, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -12.33468300253153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1667, "type": 2, "action": 0, "pose": {"position": {"x": -3.221603225916624, "y": -12.384683003276589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1668, "type": 2, "action": 0, "pose": {"position": {"x": -3.271603226661682, "y": -12.434683004021647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1669, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -12.484683004766705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1670, "type": 2, "action": 0, "pose": {"position": {"x": -3.32160322740674, "y": -12.534683005511763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1671, "type": 2, "action": 0, "pose": {"position": {"x": -3.3716032281517982, "y": -12.584683006256821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1672, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -12.634683007001879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1673, "type": 2, "action": 0, "pose": {"position": {"x": -3.4216032288968563, "y": -12.684683007746937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1674, "type": 2, "action": 0, "pose": {"position": {"x": -3.4716032296419144, "y": -12.734683008491995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1675, "type": 2, "action": 0, "pose": {"position": {"x": -3.5216032303869724, "y": -12.734683008491995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1676, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -12.784683009237053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1677, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -12.834683009982111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1678, "type": 2, "action": 0, "pose": {"position": {"x": -3.5716032311320305, "y": -12.88468301072717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1679, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -12.934683011472227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1680, "type": 2, "action": 0, "pose": {"position": {"x": -3.6216032318770885, "y": -12.984683012217285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1681, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -13.034683012962343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1682, "type": 2, "action": 0, "pose": {"position": {"x": -3.6716032326221466, "y": -13.084683013707401, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1683, "type": 2, "action": 0, "pose": {"position": {"x": -3.7216032333672047, "y": -13.13468301445246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1684, "type": 2, "action": 0, "pose": {"position": {"x": -3.7716032341122627, "y": -13.184683015197518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1685, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -13.234683015942576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1686, "type": 2, "action": 0, "pose": {"position": {"x": -3.821603234857321, "y": -13.284683016687634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1687, "type": 2, "action": 0, "pose": {"position": {"x": -3.871603235602379, "y": -13.334683017432692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1688, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -13.38468301817775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1689, "type": 2, "action": 0, "pose": {"position": {"x": -3.921603236347437, "y": -13.434683018922808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1690, "type": 2, "action": 0, "pose": {"position": {"x": -3.971603237092495, "y": -13.484683019667866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1691, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -13.534683020412924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1692, "type": 2, "action": 0, "pose": {"position": {"x": -4.021603237837553, "y": -13.584683021157982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1693, "type": 2, "action": 0, "pose": {"position": {"x": -4.071603238582611, "y": -13.63468302190304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1694, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -13.684683022648098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1695, "type": 2, "action": 0, "pose": {"position": {"x": -4.121603239327669, "y": -13.734683023393156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1696, "type": 2, "action": 0, "pose": {"position": {"x": -4.171603240072727, "y": -13.784683024138214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1697, "type": 2, "action": 0, "pose": {"position": {"x": -4.221603240817785, "y": -13.834683024883272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1698, "type": 2, "action": 0, "pose": {"position": {"x": -4.221603240817785, "y": -13.88468302562833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1699, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -13.934683026373389, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1700, "type": 2, "action": 0, "pose": {"position": {"x": -4.271603241562843, "y": -13.984683027118447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1701, "type": 2, "action": 0, "pose": {"position": {"x": -4.321603242307901, "y": -14.034683027863505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1702, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -14.084683028608563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1703, "type": 2, "action": 0, "pose": {"position": {"x": -4.371603243052959, "y": -14.13468302935362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1704, "type": 2, "action": 0, "pose": {"position": {"x": -4.4216032437980175, "y": -14.184683030098679, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1705, "type": 2, "action": 0, "pose": {"position": {"x": -4.471603244543076, "y": -14.234683030843737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1706, "type": 2, "action": 0, "pose": {"position": {"x": -4.471603244543076, "y": -14.284683031588795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1707, "type": 2, "action": 0, "pose": {"position": {"x": -4.521603245288134, "y": -14.334683032333853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1708, "type": 2, "action": 0, "pose": {"position": {"x": -4.521603245288134, "y": -14.384683033078911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1709, "type": 2, "action": 0, "pose": {"position": {"x": -4.571603246033192, "y": -14.434683033823969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1710, "type": 2, "action": 0, "pose": {"position": {"x": -4.571603246033192, "y": -14.484683034569027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1711, "type": 2, "action": 0, "pose": {"position": {"x": -4.62160324677825, "y": -14.534683035314085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1712, "type": 2, "action": 0, "pose": {"position": {"x": -4.62160324677825, "y": -14.584683036059143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1713, "type": 2, "action": 0, "pose": {"position": {"x": -4.671603247523308, "y": -14.634683036804201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1714, "type": 2, "action": 0, "pose": {"position": {"x": -4.671603247523308, "y": -14.68468303754926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1715, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -14.734683038294317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1716, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -14.784683039039376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1717, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -14.834683039784434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1718, "type": 2, "action": 0, "pose": {"position": {"x": -4.771603249013424, "y": -14.884683040529492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1719, "type": 2, "action": 0, "pose": {"position": {"x": -4.821603249758482, "y": -14.93468304127455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1720, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -14.984683042019608, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1721, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -15.034683042764666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1722, "type": 2, "action": 0, "pose": {"position": {"x": -4.921603251248598, "y": -15.084683043509724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1723, "type": 2, "action": 0, "pose": {"position": {"x": -4.87160325050354, "y": -15.134683044254782, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1724, "type": 2, "action": 0, "pose": {"position": {"x": -4.821603249758482, "y": -15.18468304499984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1725, "type": 2, "action": 0, "pose": {"position": {"x": -4.771603249013424, "y": -15.234683045744898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1726, "type": 2, "action": 0, "pose": {"position": {"x": -4.721603248268366, "y": -15.234683045744898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}} \ No newline at end of file diff --git a/f110_utils/nodes/map_editor/maps/hangar/global_wpnts.bag.active b/f110_utils/nodes/map_editor/maps/hangar/global_wpnts.bag.active new file mode 100644 index 0000000..ca595d6 Binary files /dev/null and b/f110_utils/nodes/map_editor/maps/hangar/global_wpnts.bag.active differ diff --git a/f110_utils/nodes/map_editor/maps/hangar/hangar.pbstream b/f110_utils/nodes/map_editor/maps/hangar/hangar.pbstream new file mode 100644 index 0000000..e811bfe Binary files /dev/null and b/f110_utils/nodes/map_editor/maps/hangar/hangar.pbstream differ diff --git a/f110_utils/nodes/map_editor/maps/hangar/hangar.png b/f110_utils/nodes/map_editor/maps/hangar/hangar.png new file mode 100644 index 0000000..98a1bb5 Binary files /dev/null and b/f110_utils/nodes/map_editor/maps/hangar/hangar.png differ diff --git a/f110_utils/nodes/map_editor/maps/hangar/hangar.yaml b/f110_utils/nodes/map_editor/maps/hangar/hangar.yaml new file mode 100644 index 0000000..4564993 --- /dev/null +++ b/f110_utils/nodes/map_editor/maps/hangar/hangar.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: hangar.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -14.471603393554688 +- -27.434683227539065 +- 0 +resolution: 0.05000000074505806 diff --git a/f110_utils/nodes/map_editor/maps/hangar/ot_sectors.yaml b/f110_utils/nodes/map_editor/maps/hangar/ot_sectors.yaml new file mode 100644 index 0000000..8696136 --- /dev/null +++ b/f110_utils/nodes/map_editor/maps/hangar/ot_sectors.yaml @@ -0,0 +1,12 @@ +n_sectors: 2 +yeet_factor: 1.25 +spline_len: 30 +ot_sector_begin: 0.5 +Overtaking_sector0: + start: 0 + end: 245 + ot_flag: false +Overtaking_sector1: + start: 246 + end: 396 + ot_flag: false diff --git a/f110_utils/nodes/map_editor/maps/hangar/speed_scaling.yaml b/f110_utils/nodes/map_editor/maps/hangar/speed_scaling.yaml new file mode 100644 index 0000000..460d8c0 --- /dev/null +++ b/f110_utils/nodes/map_editor/maps/hangar/speed_scaling.yaml @@ -0,0 +1,8 @@ +global_limit: 0.5 +n_sectors: 1 +Sector0: + start: 0 + end: 396 + scaling: 0.5 + only_FTG: false + no_FTG: false diff --git a/f110_utils/nodes/map_editor/media/workflow.jpg b/f110_utils/nodes/map_editor/media/workflow.jpg new file mode 100644 index 0000000..6bf6dd0 Binary files /dev/null and b/f110_utils/nodes/map_editor/media/workflow.jpg differ diff --git a/f110_utils/nodes/map_editor/package.xml b/f110_utils/nodes/map_editor/package.xml new file mode 100644 index 0000000..d225495 --- /dev/null +++ b/f110_utils/nodes/map_editor/package.xml @@ -0,0 +1,21 @@ + + + map_editor + 0.0.0 + The map_editor package + + Tianyi Lim + MIT + + catkin + f110_msgs + rospy + std_msgs + f110_msgs + rospy + std_msgs + f110_msgs + rospy + std_msgs + + diff --git a/f110_utils/nodes/map_editor/rviz/editor.rviz b/f110_utils/nodes/map_editor/rviz/editor.rviz new file mode 100644 index 0000000..d3a14bf --- /dev/null +++ b/f110_utils/nodes/map_editor/rviz/editor.rviz @@ -0,0 +1,225 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /MarkerArray1 + - /MarkerArray2 + - /MarkerArray3 + Splitter Ratio: 0.5 + Tree Height: 746 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Preferences: + PromptSaveOnExit: true +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 0.699999988079071 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Pose + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /car_state/pose + Unreliable: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 52; 101; 164 + Enabled: true + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: Path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Queue Size: 10 + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: /car_state/path + Unreliable: false + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.029999999329447746 + Style: Flat Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /trackbounds/markers + Name: MarkerArray + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /global_waypoints/markers + Name: MarkerArray + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /global_waypoints/shortest_path/markers + Name: MarkerArray + Namespaces: + "": true + Queue Size: 100 + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Default Light: true + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Theta std deviation: 0.2617993950843811 + Topic: /initialpose + X std deviation: 0.5 + Y std deviation: 0.5 + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 18.108306884765625 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Field of View: 0.7853981852531433 + Focal Point: + X: 1.6443626880645752 + Y: 4.077054977416992 + Z: -1.5395981073379517 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.5697963237762451 + Target Frame: + Yaw: 6.275399684906006 + Saved: ~ +Window Geometry: + Displays: + collapsed: true + Height: 1043 + Hide Left Dock: true + Hide Right Dock: true + QMainWindow State: 000000ff00000000fd00000004000000000000015600000375fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073000000003d00000375000000c900fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f00000375fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003d00000375000000a400fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000007380000003efc0100000002fb0000000800540069006d0065010000000000000738000002eb00fffffffb0000000800540069006d00650100000000000004500000000000000000000007380000037500000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1848 + X: 72 + Y: 0 diff --git a/f110_utils/nodes/obstacle_publisher/CMakeLists.txt b/f110_utils/nodes/obstacle_publisher/CMakeLists.txt new file mode 100644 index 0000000..ac44b0b --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/CMakeLists.txt @@ -0,0 +1,34 @@ +cmake_minimum_required(VERSION 3.0.2) +project(obstacle_publisher) + +## Find catkin macros and libraries +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + rospy + std_msgs + f110_msgs + dynamic_reconfigure +) + +## Use this to call setup.py +catkin_python_setup() + +## Generate dynamic reconfigure parameters in the 'cfg' folder +generate_dynamic_reconfigure_options( + cfg/dyn_obs_publisher.cfg +) + +################################### +## catkin specific configuration ## +################################### +catkin_package( + CATKIN_DEPENDS geometry_msgs rospy std_msgs f110_msgs dynamic_reconfigure +) + +########### +## Build ## +########### + +include_directories( + ${catkin_INCLUDE_DIRS} +) diff --git a/f110_utils/nodes/obstacle_publisher/README.md b/f110_utils/nodes/obstacle_publisher/README.md new file mode 100644 index 0000000..b611bb3 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/README.md @@ -0,0 +1,75 @@ +# Obstacle Publisher +This package currently publishes a dummy dynamic obstacle, in the shape of a ball, that can run at different speed profiles on different racelines. + +It can be launched with the following command: +``` +roslaunch obstacle_publisher obstacle_publisher.launch +``` +## Parameters +The following parameters are currently available fir the `launch` file: +- `speed`: select the speed, in m/s, of the dummy obstacle. Ideal values are in the range [0, 20]. +- `speed_type`: select the type of speed profile to follor. Available options are: + - `const` for a constant speed of `speed` + - `raceline` to take the speed of the global waypoints scaled down by the parameter `speed_scaler` + - `sine` speed profile with the formula `speed` $+ 3 * sin(0.3 * 2 \pi t)$ + - `step` stand still for 2.5s then drive with velocity = `speed` for 2.5s +- `trajectory`: select the trajectory among the available ones. Currently the available trajectories are `centerline/min_curv/shortest_path`. In the future we are planning to integrate the `min_time` trajectory too. +- `start_s`: select the initial starting coordinate along the `s` Frenet coordinate. + +## Examples +- Obstacle with global trajectory speed * 0.5: `roslaunch obstacle_publisher obstacle_publisher.launch speed_type:=raceline speed_scaler:=0.5` +- Obstacle with sine speed arount $3m/s$: `roslaunch obstacle_publisher obstacle_publisher.launch speed_type:=sine speed:=3` + + +## TODOs: +- integrate `min_time` trajectory +- integrate `start_d` too + +## Video +Some example video +![dummy_obs_mul_traj](/uploads/997dad7513b8b72ac7f5f0b369e43c91/dummy_obs_mul_traj.m4v) + + +# Obstacle Collision Detector +This package is used to detect collisions between the ego vehicle and the obstacles. Detection logic is based on the Secret Sauce. + +To launch: +`rosrun obstacle_publisher collision_detector.py` + +Inputs: +``` +rospy.Subscriber("/obstacles", ObstacleArray, self.od_cb) +rospy.Subscriber("/car_state/odom_frenet", Odometry, self.odom_cb) +``` + +Outputs: +``` +# True if collision detected, else False +self.col_pub = rospy.Publisher("/opponent_collision", Bool, queue_size=10) +# Minimal distance to an obstacle in Float32 +self.opp_dist_pub = rospy.Publisher("/opponent_dist", Float32, queue_size=10) +``` + +Secret Sauce: +``` +def collision_check(self, obs_arr: ObstacleArray, car_odom: Odometry): + dists = [69.69] + for obs in obs_arr.obstacles: + car_s = car_odom.pose.pose.position.x + car_d = car_odom.pose.pose.position.y + + od_s = obs.s_center + od_d = obs.d_center + + # check distance to obstacle + dist = ((car_s - od_s)**2 + (car_d - od_d)**2)**0.5 + dists.append(dist) + + if abs(car_s - od_s) < 0.25 and abs(car_d - od_d) < 0.15: + return True, dist + # no collision + return False, min(dists) +``` + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/obstacle_publisher/cfg/__init__.py b/f110_utils/nodes/obstacle_publisher/cfg/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/obstacle_publisher/cfg/dyn_obs_publisher.cfg b/f110_utils/nodes/obstacle_publisher/cfg/dyn_obs_publisher.cfg new file mode 100755 index 0000000..e8acf94 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/cfg/dyn_obs_publisher.cfg @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +PACKAGE = "obstacle_publisher" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('obstacle_publisher') + + +gen = ParameterGenerator() +gen.add("speed_scaler", double_t, 0, "Speed of opponent: Global wpnts times speed scaler", 0.0, 0.1, 1.25) +gen.add("ampl_sin1", double_t, 0, "Amplitude of frist sinus", 0.0, 0.1, 1.0) +gen.add("ampl_sin2", double_t, 0, "Amplitude of second sinus", 0.0, 0.1, 1.0) +gen.add("phase_sin1", double_t, 0, "Phase of first sinus", 4, 0.5, 8) +gen.add("phase_sin2", double_t, 0, "Phase of second sinus", 3, 0.5, 8) + +exit(gen.generate(PACKAGE, "obs_dynaimc_publisher", "dyn_obs_publisher")) \ No newline at end of file diff --git a/f110_utils/nodes/obstacle_publisher/launch/obstacle_publisher.launch b/f110_utils/nodes/obstacle_publisher/launch/obstacle_publisher.launch new file mode 100644 index 0000000..22c29c0 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/launch/obstacle_publisher.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/obstacle_publisher/package.xml b/f110_utils/nodes/obstacle_publisher/package.xml new file mode 100644 index 0000000..75b0936 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/package.xml @@ -0,0 +1,73 @@ + + + obstacle_publisher + 0.0.0 + The obstacle_publisher package + + + + + Jonathan Becker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +catkin +geometry_msgs +f110_msgs +roscpp +rospy +std_msgs +dynamic_reconfigure +roscpp +rospy +std_msgs +dynamic_reconfigure +roscpp +rospy +std_msgs +dynamic_reconfigure + + + + + + + + diff --git a/f110_utils/nodes/obstacle_publisher/setup.py b/f110_utils/nodes/obstacle_publisher/setup.py new file mode 100644 index 0000000..746c3c4 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['obstacle_publisher'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/f110_utils/nodes/obstacle_publisher/src/Testing.py b/f110_utils/nodes/obstacle_publisher/src/Testing.py new file mode 100644 index 0000000..9e2e11f --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/src/Testing.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +from typing import List + +import numpy as np +import rospy +from dynamic_reconfigure.msg import Config +from f110_msgs.msg import Obstacle, ObstacleArray, OTWpntArray, Wpnt, WpntArray, OpponentTrajectory +from visualization_msgs.msg import Marker, MarkerArray +from ps_planner.msg import OTSection, OTSections +from f110_msgs.msg import LapData +from std_msgs.msg import String + +class Overtaking_Tester(): + """ This class is used to test the overtaking algorithms. It launches the the obstacle publisher and collision detector nodes, + and continously listens to the collision message. For every setting of speed scaler and spawn position it generates an entry in a csv file. Additionally, the csv file + contins the information if the ego car crashed into the opponent car or not, the track, boundaries and if the opponent car was overtaken or not. + Every setting is run three times. The csv file is saved in the same directory as this file. The name of the file is the ot planer name, map name, solver name, and the date and time. + The ego car has 7 laps to catch up to the opponent car and switch into trailing. After the first switch into trailing the ego car has 3 laps to overtake the opponent car. + """ + def __init__(self) -> None: + rospy.init_node('ot_testing', anonymous=True) + looprate = 0.1 + self.rate = rospy.Rate(looprate) + + # Parameters + self.current_lap = 0 + self.last_free_lab = 0 + self.first_lap = 0 + self.no_trailing = True + + + + # Subscribers + rospy.Subscriber("/lap_data", LapData, self.lap_data_cb) + rospy.Subscriber("/state_machine", String, self.state_cb) + + ### Callbacks ### + def lap_data_cb(self, data: LapData): + self.current_lap = data.lap_count + if self.no_trailing == True: + self.last_free_lab = data.lap_count + self.no_trailing = True + + def state_cb(self, data: String): + if data.data == "TRAILING" or data.data == "OVERTAKING": + self.no_trailing = False5 diff --git a/f110_utils/nodes/obstacle_publisher/src/__init__.py b/f110_utils/nodes/obstacle_publisher/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/obstacle_publisher/src/collision_detector.py b/f110_utils/nodes/obstacle_publisher/src/collision_detector.py new file mode 100755 index 0000000..333d494 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/src/collision_detector.py @@ -0,0 +1,134 @@ +#!/usr/bin/env python3 +import numpy as np +import rospy +from std_msgs.msg import Bool, Float32 +from nav_msgs.msg import Odometry +from f110_msgs.msg import ObstacleArray, WpntArray +from visualization_msgs.msg import Marker, MarkerArray +from tf.transformations import quaternion_from_euler + +class OdCollisionDetector: + def __init__(self): + rospy.Subscriber("/perception/obstacles", ObstacleArray, self.od_cb) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.odom_cb) + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + self.col_pub = rospy.Publisher("/opponent_collision", Bool, queue_size=10) + self.opp_dist_pub = rospy.Publisher("/opponent_dist", Float32, queue_size=10) + self.coll_marker_pub = rospy.Publisher("/collision_marker", MarkerArray, queue_size=10) + + self.first_visualization = True + self.x_viz = 0.0 + self.y_viz = 0.0 + self.viz_q = quaternion_from_euler(0, 0, 0) + self.viz_counter = 0 + self.obs_arr = ObstacleArray() + self.car_odom = Odometry() + self.rate = rospy.Rate(50) # 50Hz + + def od_cb(self, data: ObstacleArray): + # Process the received data here + self.obs_arr = data + + def odom_cb(self, data: Odometry): + self.car_odom = data + + def glb_wpnts_cb(self, data:WpntArray): + self.glb_waypoints = data.wpnts + + def loop(self): + rospy.loginfo("[Dummy OD] Collision Detector wating...") + rospy.wait_for_message("/car_state/odom_frenet", Odometry) + rospy.wait_for_message("/global_waypoints", WpntArray) + rospy.loginfo("[Dummy OD] Collision Detector ready!") + while not rospy.is_shutdown(): + # sample the callback data + obs_arr = self.obs_arr + car_odom = self.car_odom + + # check for collision + collision_bool, min_dist_s, min_dist_d = self.collision_check(obs_arr=obs_arr, car_odom=car_odom) + + # visualize collision or clear visualization + if self.viz_counter > 0: + self.viz_counter -= 1 + if self.viz_counter == 0: + self.viz_collision(clear=True) + + # publish collision + col_msg = Bool() + if collision_bool: + #rospy.loginfo("[Dummy OD] Collision with Opponent detected! Distance: {} [m]".format(min_dist)) + col_msg.data = True + self.viz_counter = int(1 / self.rate.sleep_dur.to_sec()) * 2 # How long to show the collision marker [s] + self.viz_collision(dist_s=min_dist_s, dist_d=min_dist_d, clear=False) + else: + col_msg.data = False + self.col_pub.publish(col_msg) + + # publish distance to closest obstacle + dist_msg = Float32() + dist_msg.data = np.sqrt(min_dist_s**2 + min_dist_d**2) + self.opp_dist_pub.publish(dist_msg) + + self.rate.sleep() + + def collision_check(self, obs_arr: ObstacleArray, car_odom: Odometry): + for obs in obs_arr.obstacles: + car_s = car_odom.pose.pose.position.x + car_d = car_odom.pose.pose.position.y + + od_s = obs.s_center + od_d = obs.d_center + + if (od_s - car_s)%self.glb_waypoints[-2].s_m < 0.55 and abs(car_d - od_d) < 0.35: + rospy.loginfo("[Dummy OD] Front Collision with Opponent detected! Position Frenet s: {} [m]".format(car_s)) + return True, (od_s - car_s)%self.glb_waypoints[-2].s_m, abs(car_d - od_d) + if (car_s - od_s)%self.glb_waypoints[-2].s_m < 0.25 and abs(car_d - od_d) < 0.30: + rospy.loginfo("[Dummy OD] Back Collision with Opponent detected! Position Frenet s: {} [m]".format(car_s)) + return True, (car_s - od_s)%self.glb_waypoints[-2].s_m, abs(car_d - od_d) + # no collision + return False, 100, 100 + + def viz_collision(self, dist_s=0, dist_d=0, clear=False): + if self.first_visualization: + self.first_visualization = False + x0 = self.glb_waypoints[len(self.glb_waypoints)//4].x_m + y0 = self.glb_waypoints[len(self.glb_waypoints)//4].y_m + x1 = self.glb_waypoints[len(self.glb_waypoints)//4+1].x_m + y1 = self.glb_waypoints[len(self.glb_waypoints)//4+1].y_m + # compute normal vector of 175% length of trackboundary but to the left of the trajectory + xy_norm = -np.array([y1-y0, x0-x1]) / np.linalg.norm([y1-y0, x0-x1]) * 1.75 * self.glb_waypoints[len(self.glb_waypoints)//4].d_left + # compute orientation of normal vector and convert to quaternion + yaw = np.arctan2(xy_norm[1], xy_norm[0]) + self.viz_q = quaternion_from_euler(0, 0, yaw) + # compute position of marker + self.x_viz = x0 + xy_norm[0] + self.y_viz = y0 + xy_norm[1] + + coll_mrk = MarkerArray() + marker_text = Marker() + marker_text.header.frame_id = "map" + marker_text.header.stamp = rospy.Time.now() + marker_text.type = marker_text.TEXT_VIEW_FACING + marker_text.text = "COLLISION: dist_s :{:.1f}, dist_d :{:.1f}m".format(dist_s, dist_d) if not clear else "" + marker_text.scale.z = 1.0 + marker_text.color.r = 1.0 + marker_text.color.g = 0.0 + marker_text.color.b = 0.0 + marker_text.color.a = 1.0 + marker_text.pose.orientation.x = self.viz_q[0] + marker_text.pose.orientation.y = self.viz_q[1] + marker_text.pose.orientation.z = self.viz_q[2] + marker_text.pose.orientation.w = self.viz_q[3] + marker_text.pose.position.x = self.x_viz + marker_text.pose.position.y = self.y_viz + marker_text.pose.position.z = 0.0 + marker_text.id = 0 + coll_mrk.markers.append(marker_text) + + self.coll_marker_pub.publish(coll_mrk) + +if __name__ == '__main__': + rospy.init_node('OdCollisionDetector_node') + collision_detector = OdCollisionDetector() + collision_detector.loop() \ No newline at end of file diff --git a/f110_utils/nodes/obstacle_publisher/src/dynamic_obs_pub_server.py b/f110_utils/nodes/obstacle_publisher/src/dynamic_obs_pub_server.py new file mode 100755 index 0000000..9ef5a23 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/src/dynamic_obs_pub_server.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python3 +import rospy +from dynamic_reconfigure.server import Server +from obstacle_publisher.cfg import dyn_obs_publisherConfig + +def callback(config, level): + config.speed_scaler = config.speed_scaler + config.ampl_sin1 = config.ampl_sin1 + config.ampl_sin2 = config.ampl_sin2 + config.phase_sin1 = config.phase_sin1 + config.phase_sin2 = config.phase_sin2 + print("Hey there") + return config + +if __name__ == "__main__": + rospy.init_node("dynamic_obstacle_publisher_node", anonymous=False) + print('[Obs. Publisher] Dynamic Obstacle Publisher Server Launched...') + srv = Server(dyn_obs_publisherConfig, callback) + rospy.spin() \ No newline at end of file diff --git a/f110_utils/nodes/obstacle_publisher/src/obstacle_publisher.py b/f110_utils/nodes/obstacle_publisher/src/obstacle_publisher.py new file mode 100755 index 0000000..01d3969 --- /dev/null +++ b/f110_utils/nodes/obstacle_publisher/src/obstacle_publisher.py @@ -0,0 +1,246 @@ +#!/usr/bin/env python3 + +import rospy +import numpy as np +from geometry_msgs.msg import PointStamped +from f110_msgs.msg import ObstacleArray, Obstacle, WpntArray, Wpnt, OpponentTrajectory, OppWpnt +from visualization_msgs.msg import Marker, MarkerArray +from frenet_conversion.srv import Glob2FrenetArr, Frenet2GlobArr +from nav_msgs.msg import Odometry + + +class ObstaclePublisher: + """Publish a dynamic obstacle in the F110 simulator + + node can be used to puclish a dynamic obstacle with a chosen speed, trajectory and starting + parameter "s". + The described attributes can be set in the launch file. + + Attributes + ---------- + speed: float + defines the speed of the obstacle in meters per second + trajectory: string + defines which trajectory is used among "min_curv", "shortest_path", "centerline" + starting_s: float + defines the inital starting parameter "s" as according to the Frenet Frame + """ + def __init__(self): + looprate = 50 + self.rate = rospy.Rate(looprate) + self.looptime = 1/looprate + + self.dynamic_obstacle = self.init_dynamic_obstacle() + self.obj_len = 0.5 + + # Parameters + self.speed_scaler = rospy.get_param("obstacle_publisher/speed_scaler", 1) + self.constant = rospy.get_param("obstacle_publisher/constant_speed", False) + + # choose trajectory + self.waypoints_type = rospy.get_param("/obstacle_publisher/trajectory", "min_curv") + if self.waypoints_type == "min_curv": + self.waypoints_topic = "/global_waypoints" + elif self.waypoints_type == "shortest_path": + self.waypoints_topic = "/global_waypoints/shortest_path" + elif self.waypoints_type == "centerline": + self.waypoints_topic = "/centerline_waypoints" + elif self.waypoints_type == "updated": + self.waypoints_topic = "/global_waypoints_updated" + print("Using updated waypoints") + elif self.waypoints_type == "min_time": + raise NotImplementedError( + "LTO Trajectory is not currently implemented. Choose another trajectory type." + ) + else: + raise ValueError( + f"Waypoints of type {self.waypoints_type} are not supported." + ) + + self.starting_s = rospy.get_param("/obstacle_publisher/start_s", 0) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.odom_cb) + self.car_odom = Odometry() + + self.obstacle_pub = rospy.Publisher("/perception/obstacles", ObstacleArray, queue_size=10) + self.obstacle_mrk_pub = rospy.Publisher("/dummy_obstacle_markers", MarkerArray, queue_size=10) + self.opponent_traj_pub = rospy.Publisher("/opponent_waypoints", OpponentTrajectory, queue_size=10) + + # Frenet Conversion Service + rospy.wait_for_service("convert_glob2frenet_service") + self.glob2frenet = rospy.ServiceProxy("convert_glob2frenetarr_service", Glob2FrenetArr) + self.frenet2glob = rospy.ServiceProxy("convert_frenet2globarr_service", Frenet2GlobArr) + self.mincurv_wpnts = None + + def init_dynamic_obstacle(self) -> Obstacle: + """ Initializes the dynamic obstacles, it could be expanded to multiple obstacles, by changing the id + """ + dynamic_obstacle = Obstacle() + dynamic_obstacle.id = 1 + dynamic_obstacle.d_right = -0.1 # needs to be a smaller value than d_left + dynamic_obstacle.d_left = 0.1 + dynamic_obstacle.is_actually_a_gap = False + + return dynamic_obstacle + + + ### CALLBACKS ### + def wpnts_cb(self, data: WpntArray): + wpnts = data.wpnts[:-1] # exclude last point (because last point == first point) + max_s = wpnts[-1].s_m + return wpnts, max_s + + def odom_cb(self, data: Odometry): + self.car_odom = data + + ### HELPERS ### + def publish_obstacle_cartesian(self, obstacles): + """Visualizes obstacles in cartesian frame""" + obs_markers = MarkerArray() + for obs in obstacles: + # Do frenet conversion from (s,d) [frenet wrt min curv] -> (x,y) [cartesian] + resp = self.frenet2glob([obs.s_center], [obs.d_center]) + x = resp.x[0] + y = resp.y[0] + + obs_marker = Marker(header=rospy.Header(frame_id="map"), id=obs.id, type=Marker.SPHERE) + obs_marker.scale.x = 0.5 + obs_marker.scale.y = 0.5 + obs_marker.scale.z = 0.5 + obs_marker.color.a = 0.5 + obs_marker.color.b = 0.5 + obs_marker.color.r = 0.5 + + obs_marker.pose.position.x = x + obs_marker.pose.position.y = y + obs_marker.pose.orientation.w = 1 + obs_markers.markers.append(obs_marker) + + self.obstacle_mrk_pub.publish(obs_markers) + + def shutdown(self): + rospy.loginfo("BEEP BOOP DUMMY OD SHUTDOWN") + self.obstacle_pub.publish(ObstacleArray()) + + + ### MAIN ### + def ros_loop(self): + """Main loop that moves around the car based on time measurement. It also publishes the + `Obstacle` message and the `MarkerArray`. + """ + # Wait for essential messages to arrive + rospy.loginfo("Dummy Obstacle Publisher waiting for waypoints...") + rospy.wait_for_service("convert_frenet2globarr_service") + rospy.wait_for_service("convert_glob2frenetarr_service") + # Read in ego waypoints + if self.waypoints_type == "updated": + global_wpnts_msg = rospy.wait_for_message("/global_waypoints_updated", WpntArray) + else: + global_wpnts_msg = rospy.wait_for_message("/global_waypoints", WpntArray) + global_wpnts, max_s = self.wpnts_cb(data=global_wpnts_msg) + s_array = np.array([wpnt.s_m for wpnt in global_wpnts]) + + # Read in opponent waypoints + if self.constant: + for i in range(len(global_wpnts)): + global_wpnts[i].vx_mps = 1 * self.speed_scaler + else: + for i in range(len(global_wpnts)): + global_wpnts[i].vx_mps = global_wpnts[i].vx_mps*self.speed_scaler #+ 0.5*global_wpnts[i].vx_mps*self.speed_scaler * np.sin((s_array[i]/s_array[-1])*2*np.pi - np.pi/2) + + opponent_wpnts_msg = rospy.wait_for_message(self.waypoints_topic, WpntArray) + opponent_wpnts_list, _ = self.wpnts_cb(data=opponent_wpnts_msg) + + # Resmaple opponent waypoints to match ego waypoints + + opponent_xy = self.glob2frenet([wpnt.x_m for wpnt in opponent_wpnts_list], [wpnt.y_m for wpnt in opponent_wpnts_list]) + opponent_s = opponent_xy.s + opponent_d = opponent_xy.d + sorted_indices = sorted(range(len(opponent_s)), key=lambda i: opponent_s[i]) + opponent_s_sorted= [opponent_s[i] for i in sorted_indices] + opponent_d_sorted= [opponent_d[i] for i in sorted_indices] + #opponent_vs_sorted= [opponent_wpnts_list[i].vx_mps for i in sorted_indices] + #opponent_vd_sorted= [opponent_wpnts_list[i].vy_mps for i in sorted_indices] + resampeld_opponent_d = np.interp(s_array, opponent_s_sorted, opponent_d_sorted) + resampeld_opponent_vs = [wpnt.vx_mps for wpnt in global_wpnts] + # np.interp(s_array, opponent_s_sorted, opponent_vs_sorted) + #resampeld_opponent_vd = np.interp(s_array, opponent_s_sorted, opponent_vd_sorted) + resampled_opponent_xy = self.frenet2glob(s_array, resampeld_opponent_d) + + self.opponent_wpnts = OpponentTrajectory() + for i in range(len(s_array)): + wpnt = OppWpnt() + wpnt.x_m = resampled_opponent_xy.x[i] + wpnt.y_m = resampled_opponent_xy.y[i] + wpnt.proj_vs_mps = resampeld_opponent_vs[i] + #wpnt.vy_mps = resampeld_opponent_vs[i] + wpnt.s_m = s_array[i] + wpnt.d_m = resampeld_opponent_d[i] + self.opponent_wpnts.oppwpnts.append(wpnt) + + + start_time = rospy.Time.now() + + rospy.sleep(0.1) + + # Add s offset only once in the beginning + + self.dynamic_obstacle.s_center = self.starting_s + + opponent_s_array = np.array([wpnt.s_m for wpnt in self.opponent_wpnts.oppwpnts]) + rospy.loginfo("Dummy Obstacle Publisher ready.") + + counter = 0 + + running = False + while not rospy.is_shutdown(): + if not running: + if self.car_odom.pose.pose.position.x > 0 and self.car_odom.pose.pose.position.x < 1: + rospy.loginfo("Dummy Obstacle is spawned. Good luck!") + running = True + else: + time_tracker = rospy.Time.now() + # publish obstacle message + obstacle_msg = ObstacleArray() + obstacle_msg.header.stamp = rospy.Time.now() + obstacle_msg.header.frame_id = "frenet" + + s = self.dynamic_obstacle.s_center + approx_idx = np.abs(opponent_s_array - s).argmin() + + self.dyn_obstacle_speed = self.opponent_wpnts.oppwpnts[approx_idx].proj_vs_mps + self.dynamic_obstacle.s_center = (self.dynamic_obstacle.s_center + self.dyn_obstacle_speed * self.looptime) % max_s + self.dynamic_obstacle.s_start = (self.dynamic_obstacle.s_center - self.obj_len/2) % max_s + self.dynamic_obstacle.s_end = (self.dynamic_obstacle.s_center + self.obj_len/2) % max_s + self.dynamic_obstacle.d_center = self.opponent_wpnts.oppwpnts[approx_idx].d_m + self.dynamic_obstacle.d_right = self.dynamic_obstacle.d_center - 0.1 + self.dynamic_obstacle.d_left = self.dynamic_obstacle.d_center + 0.1 + self.dynamic_obstacle.vs = self.dyn_obstacle_speed + # Build s and d on selected reference line (self.waypoints_topic) by simply incrementing s and d=0 + # self.dynamic_obstacle.s_start = (self.dynamic_obstacle.s_start + self.dyn_obstacle_speed * self.looptime + self.starting_s) % max_s + # self.dynamic_obstacle.s_end = max((self.dynamic_obstacle.s_start + self.obj_len), 0.1) % max_s + # self.dynamic_obstacle.s_center = (self.dynamic_obstacle.s_start + self.obj_len / 2) % max_s # using len to avoid wrap problems + # self.dynamic_obstacle.d_center = (self.dynamic_obstacle.d_right + self.dynamic_obstacle.d_left) / 2 + # self.dynamic_obstacle.vs = self.dyn_obstacle_speed + + obstacle_msg.obstacles.append(self.dynamic_obstacle) + self.publish_obstacle_cartesian(obstacle_msg.obstacles) + + self.obstacle_pub.publish(obstacle_msg) + + counter = counter + 1 + + if counter > 25: + # Lap count has to be bigger than 1 to show that the trajectory is updated after one lap + opponent_traj_msg = OpponentTrajectory(header=rospy.Header(frame_id="map", stamp=rospy.Time.now()), lap_count = 2) + opponent_traj_msg.oppwpnts = self.opponent_wpnts.oppwpnts + self.opponent_traj_pub.publish(opponent_traj_msg) + counter = 0 + + self.rate.sleep() + + +if __name__ == "__main__": + rospy.init_node("obstacle_publisher", anonymous=False, log_level=rospy.INFO) + obstacle_publisher = ObstaclePublisher() + rospy.on_shutdown(obstacle_publisher.shutdown) + obstacle_publisher.ros_loop() \ No newline at end of file diff --git a/f110_utils/nodes/overtaking_sector_tuner/CMakeLists.txt b/f110_utils/nodes/overtaking_sector_tuner/CMakeLists.txt new file mode 100644 index 0000000..24dd2cb --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/CMakeLists.txt @@ -0,0 +1,211 @@ +cmake_minimum_required(VERSION 3.0.2) +project(overtaking_sector_tuner) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/ot_dyn_sect_tuner.cfg +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES overtaking_sector_tuner +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/overtaking_sector_tuner.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/overtaking_sector_tuner_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_overtaking_sector_tuner.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/overtaking_sector_tuner/README.md b/f110_utils/nodes/overtaking_sector_tuner/README.md new file mode 100644 index 0000000..b495ed8 --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/README.md @@ -0,0 +1,35 @@ +# Overtaking Sector Tuner +Basically like the Sector Tuner but for the overtaking line. + +It takes care of providing the GUI for slicing the overtaking line in sectors and then publishes the sectors and the corresponding scaling factors once the system is running. + +## Overtaking sector slicer +An example usage is in `/base_system/f1tenth_system/racecar/racecar/launch/pbl_teleop.launch`, where the overtaking sector slicer is launched as follows: +```xml + + + + +``` +This specifically provides the functionality to slice the sectors. + +## Overtaking sector server +An example usage is in `/base_system/f1tenth_system/racecar/racecar/launch/pbl_teleop.launch`, where the overtaking sector server is launched as follows: +```xml + + + + + + + +``` +This specifically provides the functionality to publish the sectors and publish the overtaking with the velocity smoothly interpolated between sectors. +The trajectory is published at the following topic +``` +/global_waypoints/overtaking +``` + + +--- +[Go back to the utils list](../../README.md) diff --git a/f110_utils/nodes/overtaking_sector_tuner/cfg/ot_dyn_sect_tuner.cfg b/f110_utils/nodes/overtaking_sector_tuner/cfg/ot_dyn_sect_tuner.cfg new file mode 100644 index 0000000..338d264 --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/cfg/ot_dyn_sect_tuner.cfg @@ -0,0 +1,37 @@ +#!/usr/bin/env python3 + +PACKAGE = "overtaking_sector_tuner" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('overtaking_sector_tuner') +yaml_path = os.path.join(ros_path, 'cfg/ot_sectors.yaml') +if os.path.isfile(yaml_path): + with open(yaml_path) as file: + sector_dict = yaml.load(file, Loader=yaml.FullLoader) + + gen = ParameterGenerator() + + gen.add("yeet_factor", double_t, 0, "Yeet Factor!", sector_dict['yeet_factor'], 0.5, 3.5) + gen.add("spline_len", double_t, 0, "Length of spline", sector_dict['spline_len'], 10, 50) + gen.add("ot_sector_begin", double_t, 0, "OT Sector Begin Length [m]", sector_dict['yeet_factor'], 0.1, 1.5) + + + sectors = {k: v for k, v in sector_dict.items() if k.startswith('Overtaking_sector')} + + # Generate flags for yes/no overtaking sector + i=0 + for key, item in sectors.items(): + #name, paramtype, level, description, default, min, max + gen.add("Overtaking_sector"+ str(i), bool_t, 1, "Overtake in Sector{}".format(i), item['ot_flag']) + i += 1 +else: + gen = ParameterGenerator() + + gen.add("yeet_factor", double_t, 0, "Yeet Factor!", 0.69, 0.5, 3.5) + gen.add("spline_len", double_t, 0, "Length of spline", 42, 10, 50) + gen.add("ot_sector_begin", double_t, 0, "OT Sector Begin Length [m]", 0.69, 0.1, 1.5) + gen.add("Overtaking_sector"+ str(0), bool_t, 1, "Overtake in Sector0", False) + +exit(gen.generate(PACKAGE, "ot_dynamic_sector", "ot_dyn_sect_tuner")) diff --git a/f110_utils/nodes/overtaking_sector_tuner/launch/ot_interpolator.launch b/f110_utils/nodes/overtaking_sector_tuner/launch/ot_interpolator.launch new file mode 100644 index 0000000..66228d5 --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/launch/ot_interpolator.launch @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/f110_utils/nodes/overtaking_sector_tuner/launch/ot_sector_tuner.launch b/f110_utils/nodes/overtaking_sector_tuner/launch/ot_sector_tuner.launch new file mode 100644 index 0000000..81cbc7d --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/launch/ot_sector_tuner.launch @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/overtaking_sector_tuner/package.xml b/f110_utils/nodes/overtaking_sector_tuner/package.xml new file mode 100644 index 0000000..dd5f882 --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/package.xml @@ -0,0 +1,59 @@ + + + overtaking_sector_tuner + 0.0.0 + The overtaking_sector_tuner package + + + + + gnone + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/f110_utils/nodes/overtaking_sector_tuner/scripts/finish_sector.sh b/f110_utils/nodes/overtaking_sector_tuner/scripts/finish_sector.sh new file mode 100755 index 0000000..615e69e --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/scripts/finish_sector.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +source ~/.bashrc + +cd ~/catkin_ws + +#Clean and build sector tuner to force refresh of dynamic reconfigure +catkin clean overtaking_sector_tuner +catkin build overtaking_sector_tuner \ No newline at end of file diff --git a/f110_utils/nodes/overtaking_sector_tuner/src/ot_interpolator.py b/f110_utils/nodes/overtaking_sector_tuner/src/ot_interpolator.py new file mode 100755 index 0000000..c172112 --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/src/ot_interpolator.py @@ -0,0 +1,377 @@ +#! /usr/bin/env python3 + +import copy +import tqdm +from tracemalloc import start +import rospy +import numpy as np +import matplotlib.pyplot as plt +from f110_msgs.msg import Wpnt, WpntArray +from dynamic_reconfigure.msg import Config +from scipy.interpolate import InterpolatedUnivariateSpline as Spline +from visualization_msgs.msg import Marker, MarkerArray +from frenet_converter.frenet_converter import FrenetConverter + + +class OvertakingInterpolator: + """ + Trajectory interpolator to merge the global waypoints with the shortest path + """ + + def __init__(self, debug_plot: bool = False) -> None: + self.node_name = "ot_interpolator" + rospy.init_node(self.node_name) + + # sectors params + self.glb_wpnts_og = None + self.glb_wpnts_scaled = None + self.interp_wpnt = None + self.need_to_reinterpolate = True + self.max_gb_speed = 10 + + # get initial scaling + self.sectors_params = rospy.get_param("/ot_map_params") + rospy.loginfo(self.sectors_params) + self.n_sectors = self.sectors_params['n_sectors'] + self.yeet_factor = rospy.get_param("/ot_map_params/yeet_factor") + self.spline_len = int(rospy.get_param("/ot_interpolator/spline_len", 30)) + + # SUBSCRIBE + self.glb_wpnts_name = "/global_waypoints_scaled" + self.glb_wpnts_sp_name = "/global_waypoints/shortest_path" + rospy.Subscriber("/ot_dyn_sector_server/parameter_updates", Config, self.dyn_param_cb) + rospy.Subscriber("/dyn_sector_server/parameter_updates", Config, self.dyn_speed_param_cb) + rospy.Subscriber(self.glb_wpnts_name, WpntArray, self.glb_wpnts_cb) + rospy.Subscriber("/global_waypoints", WpntArray, self.glb_wpnts_og_cb) + rospy.Subscriber(self.glb_wpnts_sp_name, WpntArray, self.glb_wpnts_sp_cb) + + # rospy.loginfo(f"[{self.node_name}] Waiting for the frenet conversion service...") + # rospy.wait_for_service("/convert_glob2frenet_service") + # rospy.loginfo(f"[{self.node_name}] Frenet conversion service found!") + # self.g2f_converter = rospy.ServiceProxy("/convert_glob2frenet_service", Glob2Frenet) + + # new glb_waypoints + self.ot_points_pub = rospy.Publisher("/global_waypoints/overtaking", WpntArray, queue_size=10) + self.ot_markers_pub = rospy.Publisher("/global_waypoints/overtaking/markers", MarkerArray, queue_size=10) + + self.converter = self.initialize_converter() + + + def glb_wpnts_og_cb(self, data:WpntArray): + """ + Saves the global waypoints (minimum curvature) + """ + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in data.wpnts]) + self.glb_wpnts_og = data + self.max_gb_speed = np.max(np.array([wpnt.vx_mps for wpnt in data.wpnts])) + + def glb_wpnts_cb(self, data:WpntArray): + """ + Saves the global waypoints (minimum curvature) + """ + self.glb_wpnts_scaled = data + coords = np.array( + [[wpnt.s_m, wpnt.x_m, wpnt.y_m] for wpnt in data.wpnts] + ) + self.glb_spline_np = coords[:, 1:3] + self.glb_spline_x = Spline(coords[:, 0], coords[:, 1]) + self.glb_spline_y = Spline(coords[:, 0], coords[:, 2]) + + + def glb_wpnts_sp_cb(self, data:WpntArray): + """ + Saves the global waypoints (shortest path) + """ + self.glb_wpnts_sp_og = data + coords = np.array( + [[wpnt.s_m, wpnt.x_m, wpnt.y_m, wpnt.vx_mps] for wpnt in data.wpnts] + ) + self.ot_spline_np = coords[:, 1:3] + self.ot_spline_x = Spline(coords[:, 0], coords[:, 1]) + self.ot_spline_y = Spline(coords[:, 0], coords[:, 2]) + self.ot_spline_speed = Spline(coords[:, 0], coords[:, 3]) + + def dyn_param_cb(self, params:Config): + """ + Notices the change in the parameters and scales the global waypoints + """ + # update params + for param in params.bools: + self.sectors_params[param.name]['ot_flag'] = param.value + + #assert params.doubles[0].name == 'yeet_factor' + self.yeet_factor = params.doubles[0].value + self.spline_len = int(params.doubles[1].value) + self.need_to_reinterpolate = True + rospy.loginfo(self.sectors_params) + + def dyn_speed_param_cb(self, params:Config): + self.need_to_reinterpolate = True + + def initialize_converter(self) -> FrenetConverter: + """ + Initialize the FrenetConverter object""" + rospy.wait_for_message("/global_waypoints", WpntArray) + + # Initialize the FrenetConverter object + + converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo("[OT Interpolator] initialized FrenetConverter object") + + return converter + + def get_interpolating_schedule(self): + length_wpnts = len(self.glb_wpnts_og.wpnts) + schedule = np.zeros(length_wpnts) + # this is the switching sector length, longer is smoother, unit is 0.1 m + switching_sec_len = self.spline_len + + for i in range(self.n_sectors): + sector = f"Overtaking_sector{i}" + if self.sectors_params[sector]['ot_flag']: + if self.prev_sector_overtaking(i): + schedule[self.sectors_params[sector]['start']:self.sectors_params[sector]['start']+switching_sec_len-1] = 1 + else: + for j in range(switching_sec_len): + schedule[self.sectors_params[sector]['start']+j] = self.interpolating_function(j, switching_sec_len, mode='sigmoid') + + if self.next_sector_overtaking(i): + schedule[self.sectors_params[sector]['end']-switching_sec_len+1:self.sectors_params[sector]['end']+1] = 1 + else: + for j in range(1, switching_sec_len+1): + schedule[self.sectors_params[sector]['end']-j] = self.interpolating_function(j, switching_sec_len, mode='sigmoid') + + schedule[self.sectors_params[sector]['start']+switching_sec_len-1:self.sectors_params[sector]['end']-switching_sec_len+1] = 1 + + return schedule + + def interpolating_function(self, idx: int, schedule_len: int, mode: str='linear'): + """ + Defines how we go from zero to one in the interpolation of trajectories + So it should be a function that goes from zero when called with idx = 0 + to one when called with idx=schedule_len + """ + sig_scale = 4 + + if mode == 'linear': + return idx/schedule_len + elif mode == 'sigmoid': + sigmoid_idx = (idx/schedule_len)*sig_scale*2 - sig_scale + return 1/(1 + np.exp(-sigmoid_idx)) + else: + raise NotImplementedError(f"The mode '{mode}' is not implemented") + + def prev_sector_overtaking(self, idx): + if idx == 0: + return self.sectors_params[f"Overtaking_sector{self.n_sectors-1}"]['ot_flag'] + else: + return self.sectors_params[f"Overtaking_sector{idx-1}"]['ot_flag'] + + def next_sector_overtaking(self, idx): + if idx == (self.n_sectors-1): + return self.sectors_params[f"Overtaking_sector0"]['ot_flag'] + else: + return self.sectors_params[f"Overtaking_sector{idx+1}"]['ot_flag'] + + def interpolate_line(self, schedule): + """ + Interpolates the point between the two trajectories according to the given schedule + + Parameters + ---------- + start_s + s parameter indicating the start of where we want to interpolate + end_s + s parameter indicating the end of where we want to interpolate + """ + ses = [] + last_point = None + nearest_p_idx = None + self.interp_wpnt = copy.deepcopy(self.glb_wpnts_scaled) + + for i, waypoint in tqdm.tqdm(enumerate(self.interp_wpnt.wpnts)): + if schedule[i] > 0: + # find direction of global + coordinate = np.array([self.glb_wpnts_scaled.wpnts[i].x_m, self.glb_wpnts_scaled.wpnts[i].y_m]) + direction = np.array([self.glb_spline_x(i/10, 1), self.glb_spline_y(i/10, 1)]) + direction /= np.linalg.norm(direction) + + # find nearest point + nearest_p_idx = np.argmin((np.linalg.norm((self.ot_spline_np-coordinate), axis=1))) + + # find point perpendicular + start_idx = nearest_p_idx + idx_fwd = start_idx + idx_bwd = start_idx + min_perp_fwd = None + min_perp_bwd = None + # look forward + for _ in range(50): + point_on_mindist = np.array([self.ot_spline_x(idx_fwd/10), self.ot_spline_y(idx_fwd/10)]) + vector = point_on_mindist-coordinate + vector /= np.linalg.norm(vector) + perp_fwd = np.abs(np.dot(direction, vector)) + if min_perp_fwd is None: + min_perp_fwd = perp_fwd + point_fwd = copy.deepcopy(point_on_mindist) + else: + if perp_fwd < min_perp_fwd: + min_perp_fwd = perp_fwd + point_fwd = copy.deepcopy(point_on_mindist) + else: + break + idx_fwd += 0.01 + # look backward + for _ in range(50): + point_on_mindist = np.array([self.ot_spline_x(idx_bwd/10), self.ot_spline_y(idx_bwd/10)]) + vector = point_on_mindist-coordinate + vector /= np.linalg.norm(vector) + perp_bwd = np.abs(np.dot(direction, vector)) + if min_perp_bwd is None: + min_perp_bwd = perp_bwd + point_bwd = copy.deepcopy(point_on_mindist) + else: + if perp_bwd < min_perp_bwd: + min_perp_bwd = perp_bwd + point_bwd = copy.deepcopy(point_on_mindist) + else: + break + + idx_bwd -= 0.01 + + if min_perp_bwd < min_perp_fwd: + point_chosen = point_bwd + idx_chosen = idx_bwd + else: + point_chosen = point_fwd + idx_chosen = idx_fwd + + # interpolate + new_point = schedule[i]*point_chosen + (1-schedule[i])*coordinate + + # interpolate for speed + # speed_scaling = self.glb_wpnts_scaled.wpnts[i].vx_mps/self.glb_wpnts_og.wpnts[i].vx_mps + # new_point_speed = schedule[i]*self.ot_spline_speed(idx_chosen/10) + (1-schedule[i])*self.glb_wpnts_og.wpnts[i].vx_mps + # new_point_speed *= speed_scaling*self.yeet_factor + new_point_speed = self.glb_wpnts_scaled.wpnts[i].vx_mps*self.yeet_factor + + last_point = copy.deepcopy(new_point) + waypoint.x_m = last_point[0] + waypoint.y_m = last_point[1] + waypoint.vx_mps = new_point_speed + + def recalculate_ot_s(self): + # fit spline to whole new track, speed included + # for s and d we take them relative to the global mincurv + coords = np.inf*np.ones((len(self.interp_wpnt.wpnts), 4)) + s = 0 + i = 0 + for wpnt in self.interp_wpnt.wpnts: + if i > 0: + # for points different from the first we should not add if they're the same + dist_from_previous = np.linalg.norm([wpnt.x_m - coords[i-1, 1], wpnt.y_m - coords[i-1, 2]]) + if dist_from_previous > 0: + s += dist_from_previous + coords[i, 0] = s + coords[i, 1] = wpnt.x_m + coords[i, 2] = wpnt.y_m + coords[i, 3] = wpnt.vx_mps + i+=1 + else: + # default action for first point + coords[i, 0] = s + coords[i, 1] = wpnt.x_m + coords[i, 2] = wpnt.y_m + coords[i, 3] = wpnt.vx_mps + i+=1 + tot_len = s + np.linalg.norm([coords[0, 1] - coords[i-1, 1], coords[0, 2] - coords[i-1, 2]]) + + spline_x = Spline(coords[:i, 0], coords[:i, 1]) + spline_y = Spline(coords[:i, 0], coords[:i, 2]) + spline_speed = Spline(coords[:i, 0], coords[:i, 3]) + + # rewrite whole array + self.interp_wpnt = WpntArray() + wpnts = [] + for i in range(0, int(tot_len*10)): + new_wpnt = Wpnt() + new_wpnt.id = i + new_wpnt.x_m = spline_x(i/10) + new_wpnt.y_m = spline_y(i/10) + new_wpnt.vx_mps = spline_speed(i/10) + # curvature + x_d = spline_x(i/10, 1) + x_dd = spline_x(i/10, 2) + y_d = spline_y(i/10, 1) + y_dd = spline_y(i/10, 2) + curvature = ( + np.abs(x_d * y_dd - y_d * x_dd)/pow((x_d**2 + y_d **2), 1.5) + ) + new_wpnt.kappa_radpm = curvature + # frenet components + frenet_newpoint = self.converter.get_frenet(np.array([new_wpnt.x_m]), np.array([new_wpnt.y_m])) + new_wpnt.s_m = frenet_newpoint[0] + new_wpnt.d_m = frenet_newpoint[1] + + self.interp_wpnt.wpnts.append(copy.deepcopy(new_wpnt)) + + def interpolate_points(self): + """ + Scales the global waypoints' + """ + if self.need_to_reinterpolate: + # we need to wait the global waitpoint scaled, otherwise we might use old ones + rospy.wait_for_message(self.glb_wpnts_name, WpntArray) + schedule = self.get_interpolating_schedule() + self.interpolate_line(schedule) + self.recalculate_ot_s() + + self.need_to_reinterpolate = False + pass + + def publish_markers(self): + max_vx_mps = self.max_gb_speed + global_markers = MarkerArray() + + for i, wpnt in enumerate(self.interp_wpnt.wpnts): + global_marker = Marker() + global_marker.header.frame_id = 'map' + global_marker.type = global_marker.CYLINDER + global_marker.scale.x = 0.1 + global_marker.scale.y = 0.1 + global_marker.scale.z = wpnt.vx_mps / max_vx_mps + global_marker.color.a = 1.0 + global_marker.color.r = 0.0 + global_marker.color.g = 0.0 + global_marker.color.b = 1.0 + + global_marker.id = i + global_marker.pose.position.x = wpnt.x_m + global_marker.pose.position.y = wpnt.y_m + global_marker.pose.position.z = wpnt.vx_mps / max_vx_mps / 2 + global_marker.pose.orientation.w = 1 + global_markers.markers.append(global_marker) + + self.ot_markers_pub.publish(global_markers) + + def loop(self): + rospy.loginfo(f"[{self.node_name}] Waiting for global waypoints...") + rospy.loginfo(f"[{self.node_name}] Waiting for shortest path waypoints...") + rospy.wait_for_message(self.glb_wpnts_name, WpntArray) + rospy.loginfo(f"[{self.node_name}] Global waypoints received!") + rospy.wait_for_message(self.glb_wpnts_sp_name, WpntArray) + rospy.loginfo(f"[{self.node_name}] Shortest path waypoints received!") + + # initialise scaled points + self.interpolate_points() + + run_rate = rospy.Rate(2) + while not rospy.is_shutdown(): + self.interpolate_points() + self.ot_points_pub.publish(self.interp_wpnt) + self.publish_markers() + run_rate.sleep() + +if __name__ == '__main__': + ot_interpolator = OvertakingInterpolator() + ot_interpolator.loop() diff --git a/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_server.py b/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_server.py new file mode 100755 index 0000000..a52796d --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_server.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 +import rospy +import numpy as np +from f110_msgs.msg import WpntArray +from tf.transformations import quaternion_from_euler +from dynamic_reconfigure.server import Server +from overtaking_sector_tuner.cfg import ot_dyn_sect_tunerConfig +from visualization_msgs.msg import Marker, MarkerArray + +def callback(config, level): + return config + +class OvertakingSectorPublisher: + def __init__(self): + self.glb_waypoints = None + self.sector_pub = rospy.Publisher('/ot_sector_markers', MarkerArray, queue_size=10) + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + + def glb_wpnts_cb(self, data): + self.glb_waypoints = [] + for waypoint in data.wpnts: + self.glb_waypoints.append([waypoint.x_m, waypoint.y_m, waypoint.s_m]) + + def pub_sector_markers(self): + rate = rospy.Rate(1) + while (not rospy.is_shutdown()): + if self.glb_waypoints is None: + continue + + # one needs to set the overtaking_map_params rosparams + sectors_params = rospy.get_param("/ot_map_params") + n_sectors = sectors_params['n_sectors'] + sec_markers = MarkerArray() + + for i in range(n_sectors): + s = sectors_params[f"Overtaking_sector{i}"]['start'] + if s == (len(self.glb_waypoints) - 1): + theta = np.arctan2((self.glb_waypoints[0][1] - self.glb_waypoints[s][1]),(self.glb_waypoints[0][0] - self.glb_waypoints[s][0])) + else: + theta = np.arctan2((self.glb_waypoints[s+1][1] - self.glb_waypoints[s][1]),(self.glb_waypoints[s+1][0] - self.glb_waypoints[s][0])) + quaternions = quaternion_from_euler(0, 0, theta) + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = rospy.Time.now() + marker.type = marker.ARROW + marker.scale.x = 0.5 + marker.scale.y = 0.05 + marker.scale.z = 0.15 + marker.color.r = 1.0 + marker.color.g = 0.0 + marker.color.b = 0.0 + marker.color.a = 1.0 + marker.pose.position.x = self.glb_waypoints[s][0] + marker.pose.position.y = self.glb_waypoints[s][1] + marker.pose.position.z = 0 + marker.pose.orientation.x = quaternions[0] + marker.pose.orientation.y = quaternions[1] + marker.pose.orientation.z = quaternions[2] + marker.pose.orientation.w = quaternions[3] + marker.id = i + sec_markers.markers.append(marker) + + marker_text = Marker() + marker_text.header.frame_id = "map" + marker_text.header.stamp = rospy.Time.now() + marker_text.type = marker_text.TEXT_VIEW_FACING + marker_text.text = f"Start Overtaking Sector {i}" + marker_text.scale.z = 0.4 + marker_text.color.r = 0.1 + marker_text.color.g = 0.1 + marker_text.color.b = 1.2 + marker_text.color.a = 1.0 + marker_text.pose.position.x = self.glb_waypoints[s][0] + marker_text.pose.position.y = self.glb_waypoints[s][1] + marker_text.pose.position.z = 1.5 + marker_text.pose.orientation.x = 0.0 + marker_text.pose.orientation.y = 0.0 + marker_text.pose.orientation.z = 0.0436194 + marker_text.pose.orientation.w = 0.9990482 + marker_text.id = i + n_sectors + sec_markers.markers.append(marker_text) + self.sector_pub.publish(sec_markers) + rate.sleep() + +if __name__ == "__main__": + rospy.init_node("dynamic_ot_sector_tuner", anonymous=False) + print('Dynamic Overtaking Sector Server Launched...') + # ot_dyn_sect_tunerConfig # Does this do anything? (removed) + srv = Server(ot_dyn_sect_tunerConfig, callback) + sec_pub = OvertakingSectorPublisher() + sec_pub.pub_sector_markers() diff --git a/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_slicing.py b/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_slicing.py new file mode 100755 index 0000000..6744c1f --- /dev/null +++ b/f110_utils/nodes/overtaking_sector_tuner/src/ot_sector_slicing.py @@ -0,0 +1,170 @@ +#!/usr/bin/env python3 +import rospy, rospkg +import yaml, os, subprocess, time +from f110_msgs.msg import WpntArray +from visualization_msgs.msg import MarkerArray +import numpy as np +import matplotlib.pyplot as plt +from matplotlib.widgets import Slider, Button +from matplotlib.patches import Arrow + +class OvertakingSectorSlicer: + """ + Node for listening to gb waypoints and running a GUI to tune the sectors s.t. a yaml can be exported for dynamic reconfigure + """ + def __init__(self): + rospy.init_node('ot_sector_node', anonymous=True) + + self.glb_wpnts = None + self.glb_sp_wpnts = None + self.track_bounds = None + + self.glob_slider_s = 0 + self.sector_pnts = [0] #Sector always has tostart at 0 + + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + rospy.Subscriber('/global_waypoints/shortest_path', WpntArray, self.glb_sp_wpnts_cb) + rospy.Subscriber('/trackbounds/markers', MarkerArray, self.bounds_cb) + + #rosparam to define yaml dir but filename will always be ot_sectors.yaml + self.yaml_dir = rospy.get_param('~save_dir') + + def glb_wpnts_cb(self, data): + self.glb_wpnts = data + + def glb_sp_wpnts_cb(self, data): + self.glb_sp_wpnts = data + + def bounds_cb(self, data): + self.track_bounds = data + + def slice_loop(self): + #Wait until we get the waypoints + print('Waiting for global waypoints...') + rospy.wait_for_message('/global_waypoints', WpntArray) + rospy.wait_for_message('/global_waypoints/shortest_path', WpntArray) + + #Select Sectors via the GUI + self.sector_gui() + print('Selected Overtaking Sector IDXs:', self.sector_pnts) + + #Write sectors to yaml + self.sectors_to_yaml() + + def sector_gui(self): + #get wpnt message in list format for plotting + s = [] + v = [] + x = [] + y = [] + for wpnt in self.glb_wpnts.wpnts: + s.append(wpnt.s_m) + v.append(wpnt.vx_mps) + x.append(wpnt.x_m) + y.append(wpnt.y_m) + s = np.array(s) + x = np.array(x) + y = np.array(y) + + # plot raceline without sector points + fig, (ax1, axslider, axselect, axfinish) = plt.subplots(4, 1, gridspec_kw={'height_ratios': [5, 1, 1, 1]}) + ax1.plot(x, y, "b-", linewidth=0.7) + ax1.plot([mrk.pose.position.x for mrk in self.track_bounds.markers], [mrk.pose.position.y for mrk in self.track_bounds.markers], 'g-', linewidth=0.4) + ax1.plot([wpnt.x_m for wpnt in self.glb_sp_wpnts.wpnts], [wpnt.y_m for wpnt in self.glb_sp_wpnts.wpnts], 'r-', linewidth=0.7) + ax1.grid() + ax1.set_aspect("equal", "datalim") + ax1.set_xlabel("east in m") + ax1.set_ylabel("north in m") + # Plot arrow at start + arr_par = {'x': x[0], 'dx': 10 * (x[1] - x[0]), + 'y': y[0], 'dy': 10 * (y[1] - y[0]), + 'color': 'gray', + 'width': 0.5} + ax1.add_artist(Arrow(**arr_par)) + + #Slider stuff + def update_s(val): + idx = int(slider.val) - 1 + self.glob_slider_s = idx #update the global slider s + update_map(x=x, y=y, cur_s=idx) + fig.canvas.draw_idle() + + #Btn stuff + def select_s(event): + #When pressing button append the new position + self.sector_pnts.append(self.glob_slider_s) + update_map(x=x, y=y, cur_s=self.glob_slider_s) + + def finish(event): + plt.close() + + #Sectors always end at end + self.sector_pnts.append(len(s)) + + #Eliminate duplicates if necessary + self.sector_pnts = sorted(list(set(self.sector_pnts))) + return + + def update_map(x, y, cur_s): + ax1.cla() + ax1.plot(x, y, "b-", linewidth=0.7) + ax1.plot([mrk.pose.position.x for mrk in self.track_bounds.markers], [mrk.pose.position.y for mrk in self.track_bounds.markers], 'g-', linewidth=0.4) + ax1.plot([wpnt.x_m for wpnt in self.glb_sp_wpnts.wpnts], [wpnt.y_m for wpnt in self.glb_sp_wpnts.wpnts], 'r-', linewidth=0.7) + ax1.grid() + ax1.set_aspect("equal", "datalim") + ax1.set_xlabel("east in m") + ax1.set_ylabel("north in m") + ax1.scatter(x[cur_s], y[cur_s]) + if len(self.sector_pnts) > 0: + ax1.scatter(x[self.sector_pnts], y[self.sector_pnts], c='blue') + + #Matplotlib widgets for GUI + slider = Slider(axslider, 'S [m]', 0, len(s), valinit=0, valfmt='%d') + slider.on_changed(update_s) + + btn_select = Button(axselect, 'Select Overtaking S') + btn_select.on_clicked(select_s) + + btn_finish = Button(axfinish, 'Done') + btn_finish.on_clicked(finish) + + plt.show() + + def sectors_to_yaml(self): + #Create yaml with default sectors values + n_sectors = len(self.sector_pnts) - 1 + dict_file = { + 'n_sectors': n_sectors, + 'yeet_factor': 1.25, + 'spline_len': 30, + 'ot_sector_begin': 0.5 + } + for i in range(0, n_sectors): + #Add sectors with scaling field + dict_file['Overtaking_sector' + str(i)] = {'start':self.sector_pnts[i] if i == 0 else self.sector_pnts[i] + 1, + 'end':self.sector_pnts[i+1] + } + dict_file['Overtaking_sector' + str(i)].update({'ot_flag': False}) + + #Save yaml to the respective maps folder + yaml_path = os.path.join(self.yaml_dir, 'ot_sectors.yaml') + with open(yaml_path, 'w') as file: + print('Dumping to {}: {}'.format(yaml_path, dict_file)) + yaml.dump(dict_file, file, sort_keys=False) + + #Copy content to sector_tuner package for catkin build + ros_path = rospkg.RosPack().get_path('overtaking_sector_tuner') + yaml_path = os.path.join(ros_path, 'cfg/ot_sectors.yaml') + with open(yaml_path, 'w') as file: + print('Dumping to {}: {}'.format(yaml_path, dict_file)) + yaml.dump(dict_file, file, sort_keys=False) + + #Directly build the sector_tuner package + time.sleep(1) + print('Copying and writing the yaml to overtaking_sector_tuner package and building catkin for next use...') + shell_dir = os.path.join(ros_path, 'scripts/finish_sector.sh') + subprocess.Popen(shell_dir, shell=True) + +if __name__ == "__main__": + ot_sector_slicer = OvertakingSectorSlicer() + ot_sector_slicer.slice_loop() diff --git a/f110_utils/nodes/param_optimizer/CMakeLists.txt b/f110_utils/nodes/param_optimizer/CMakeLists.txt new file mode 100644 index 0000000..ee600a3 --- /dev/null +++ b/f110_utils/nodes/param_optimizer/CMakeLists.txt @@ -0,0 +1,201 @@ +cmake_minimum_required(VERSION 3.0.2) +project(param_optimizer) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + rospy + std_msgs +) + + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/param_optimizer/README.md b/f110_utils/nodes/param_optimizer/README.md new file mode 100644 index 0000000..522b11f --- /dev/null +++ b/f110_utils/nodes/param_optimizer/README.md @@ -0,0 +1,133 @@ +# Sector and MAP Parameter Optimizer + +The purpose of this is to use bayesian optimization to get optimal MAP parameters and/or sector scalers. The optimizer script can be launched side by side with the base system and time trials/head to head and does the optimization of the MAP parameter/sector scaler automatically. After the optimization, the parameters are set with dynamic reconfigure and can be permanentely stored manually in the corresponding yaml file. + +## Example Procedure +1. Edit parameter ranges: + + `race_stack/stack_master/config/NUCX/BO_range.yaml`. + +2. Start time trials (either in sim or real car by pressing R1 continuously) + +3. Run the BO server and the node + +For Sector Scaling optimization: +``` +roslaunch param_optimizer racecar_version:=NUCX param_optimizer.launch opt_sector_scalers:=True +``` + +For L1 param optimization: +``` +roslaunch param_optimizer racecar_version:=NUCX param_optimizer.launch opt_l1params:=True +``` +4. Check the settings printed in the terminal + +5. Wait until it is finished + + +## Launch file arguments +- `opt_l1params`: Bool, to optimize the l1 parameter +- `opt_sector_scalers`: Bool, to optimize sector scalers + +**Optional** +- `iterations`: How many iterations does the algorithm do to optimize parameters (default: 10) +- `laps_per_experiment`: Laps per iteration: e.g. lap criteria is averaged over a certain number of laps before calculating the cost (default: 1) +- `cost_lap_time_scaler`: Lap time's contribution to the cost (default: 1) +- `cost_crash_avoidance_scaler`: Minimum car distance to track boundary's contribution to the cost (default: 1) +- `cost_lat_err_scaler`: Average lateral error's contribution to the cost (default: 1) + +### Trouble shooting + +One way of quickly testing if the installation worked is by launching the server: + +``` +roslaunch bayesopt4ros bayesopt.launch +``` + +You should see the output of the server similar to this: + +```[INFO] [1616593243.400756]: [BayesOptServer] Iteration 0: Ready to receive requests.``` + +If roslaunch fails, make sure that the node script is executable. + +```chmod +x src/bayesopt4ros/nodes/bayesopt_node.py``` + +More information and examples can be found [here](https://intelligentcontrolsystems.github.io/bayesopt4ros/getting_started.html#your-own-workspace) + +### Other requirements +You need to have already some reasonable/good l1 parameters/sector scalers. This is in theory not necessary but will speed up the process of finding very good parameters. These reasonable params will be needed to decide for a suitable **range**. + +## How it works in more Detail +The relevant parameters are the l1 parameters (`t_clip_min`, `m_l1` and `q_l1`) and/or the sector scalers (depends on specific track). + +Bayesian Optimization tests different value combinations of these variables within a given **range**. The range should be chosen relatively conservative, as we do not want to test instable values. It is stored in a config file `~race_stack/stack_master/config/NUCX/BO_range`. + +After updating the l1 parameters the car drives 1 to 3 laps (depending on the setting) and a cost is calculated as described below + +```cost = f(distance to track boundary, average lateral error, lap time)``` + +The cost is sent to the Bayesian Optimization server and new parameters are requested. After receiving new parameters, the same process is repeated. + +It is suggested to optimize l1 parameters and sector scalers seperately and not simultaneously. + +## How to Run Node +Run time trials or head to head and press R1. After the car started to move you can run: + +``` +roslaunch param_optimizer racecar_version:=SIM/NUCX param_optimizer.launch +``` + +If you want to optimize the l1 parameter add `opt_sector_scalers:=True` and if you want to optimize the sector scalers add `opt_l1params:=True`. By default it will optimize with 10 iteration and do 1 lap per iteration (also called laps per experiment). You can change that by adding e.g. + + +``` +iterations:=5 laps_per_experiment:=1 opt_l1params:=True +``` + +Whenever you think the car is driving badly or dangerously you can stop pressing R1. Wait until there is a printout in the terminal: `Lap takes too long, not reasonable parameters. Skip!`. After this is printed the l1 parameters are resetted and the car should finish the lap nicely until it tries out new parameters. If the ranges are chosen conservative enough this should not be a problem. + +# Optimization Steps + + +1. Edit parameter ranges here: + + `~race_stack/stack_master/config/NUCX/BO_range.yaml`. + +2. Start time trials by pressing R1 continuously + +3. Run the node + +For Sector Scaling optimization: +``` +roslaunch param_optimizer racecar_version:=NUCX param_optimizer.launch opt_sector_scalers:=True +``` + +For L1 param optimization: +``` +roslaunch param_optimizer racecar_version:=NUCX param_optimizer.launch opt_l1params:=True +``` +4. Check the settings printed in the terminal + +5. Wait until it is finished + +Whenever you think the car is very unstable or cuts corners too aggressively, stop pressing R1 and wait until a message in the terminal appears: `'Lap takes too long, not reasonable parameters. Skip! (Press R1)'` . The parameters will be resetted and the car finishes the lap safely if you press R1 again. + +In the end save the new l1 parameter here: `stack_master/config/NUCX/l1_params.yaml` + +Parameters can also be obtained reading the logs in `param_optimizer/logs`, in case they are temporarily lost. + +### Optional + +Experiment with the acquisition function: UCB (upper confidence bound) or EI (expected improvement). In general: UCB is more explorative, which makes sense if the range is larger whereas EI is more exploitative. + +If you don't want to optimize a certain l1 parameter, e.g. `t_clip_min`, than you can its range very close, e.g. `[0.8, 0.0801]` + +Editing cost: +Focus more on lap time by setting the cost scaler from 1 (default) to e.g. 10: + +``` +cost_lap_time_scaler:=10 cost_crash_avoidance_scaler:=1 cost_lat_err_scaler:=1 +``` + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/param_optimizer/launch/param_optimizer.launch b/f110_utils/nodes/param_optimizer/launch/param_optimizer.launch new file mode 100644 index 0000000..7610b0b --- /dev/null +++ b/f110_utils/nodes/param_optimizer/launch/param_optimizer.launch @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/param_optimizer/package.xml b/f110_utils/nodes/param_optimizer/package.xml new file mode 100644 index 0000000..abda689 --- /dev/null +++ b/f110_utils/nodes/param_optimizer/package.xml @@ -0,0 +1,58 @@ + + + param_optimizer + 0.0.0 + The param_optimizer package + + + + + gnone + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/f110_utils/nodes/param_optimizer/plots/avg_lat_err_EI_10ite_1lpe.png b/f110_utils/nodes/param_optimizer/plots/avg_lat_err_EI_10ite_1lpe.png new file mode 100644 index 0000000..6e5e3b7 Binary files /dev/null and b/f110_utils/nodes/param_optimizer/plots/avg_lat_err_EI_10ite_1lpe.png differ diff --git a/f110_utils/nodes/param_optimizer/plots/cost.png b/f110_utils/nodes/param_optimizer/plots/cost.png new file mode 100644 index 0000000..9f9de04 Binary files /dev/null and b/f110_utils/nodes/param_optimizer/plots/cost.png differ diff --git a/f110_utils/nodes/param_optimizer/plots/l1_param_EI_10iterations_1lpe.png b/f110_utils/nodes/param_optimizer/plots/l1_param_EI_10iterations_1lpe.png new file mode 100644 index 0000000..656a39a Binary files /dev/null and b/f110_utils/nodes/param_optimizer/plots/l1_param_EI_10iterations_1lpe.png differ diff --git a/f110_utils/nodes/param_optimizer/plots/lap_time.png b/f110_utils/nodes/param_optimizer/plots/lap_time.png new file mode 100644 index 0000000..5750acb Binary files /dev/null and b/f110_utils/nodes/param_optimizer/plots/lap_time.png differ diff --git a/f110_utils/nodes/param_optimizer/plots/min_dist_EI_10ite_1lpe.png b/f110_utils/nodes/param_optimizer/plots/min_dist_EI_10ite_1lpe.png new file mode 100644 index 0000000..3f4838c Binary files /dev/null and b/f110_utils/nodes/param_optimizer/plots/min_dist_EI_10ite_1lpe.png differ diff --git a/f110_utils/nodes/param_optimizer/src/param_optimizer.py b/f110_utils/nodes/param_optimizer/src/param_optimizer.py new file mode 100755 index 0000000..fe52338 --- /dev/null +++ b/f110_utils/nodes/param_optimizer/src/param_optimizer.py @@ -0,0 +1,770 @@ +#!/usr/bin/env python3 +import rospy +import rospkg +import actionlib +from bayesopt4ros.msg import BayesOptAction, BayesOptGoal +from dynamic_reconfigure.msg import Config +import dynamic_reconfigure.client +from f110_msgs.msg import LapData +from std_msgs.msg import Float32 +import numpy as np +from bayesopt4ros import test_objectives +import matplotlib.pyplot as plt +import os +import yaml +import sys +import subprocess + +# testing git stuff + + +class BayesOptimizer: + def __init__(self, name): + """ + This node optimizes some parameters of the MAP controller (L1 distance parameter) and also the sector scalers. + """ + self.name = name + + ########################################################## + # for visualization + save_plot_bool = True + save_location = "Downloads" + ########################################################### + + self.car_distance_to_boundary = [] + self.opt_l1params = rospy.get_param("param_optimizer/opt_l1params") + self.opt_sector_scalers = rospy.get_param( + "param_optimizer/opt_sector_scalers") + self.iterations = rospy.get_param("param_optimizer/iterations") + self.laps_per_experiment = rospy.get_param( + "param_optimizer/laps_per_experiment" + ) + # cost scalers: + self.cost_lap_time_scaler = rospy.get_param( + "param_optimizer/cost_lap_time_scaler" + ) + self.cost_crash_avoidance_scaler = rospy.get_param( + "param_optimizer/cost_crash_avoidance_scaler" + ) + self.cost_lat_err_scaler = rospy.get_param( + "param_optimizer/cost_lat_err_scaler" + ) + + # shut down all nodes if both tune variables are False + if not (self.opt_l1params) and not (self.opt_sector_scalers): + rospy.logwarn( + f"[{self.name}] Change self.opt_l1params and/or self.opt_sector_scalers to True" + ) + subprocess.call(["rosnode", "kill", "BayesOptNode"]) + sys.exit() + + self.fastest_lap_time = None + rospy.Subscriber("lap_data", LapData, self.lap_data_cb) # lap data + rospy.Subscriber( + "estimated_lap_time", Float32, self.fastest_lap_time_cb + ) # est lap time is actually fastest lap time # TODO change name + rospy.Subscriber( + "/min_car_distance_to_boundary", Float32, self.get_distance_to_boundary_cb + ) # min distance to boundary + + self.sim = rospy.get_param("/sim") + + # Init at zero: + self.n_sectors = 0 + self.number_of_l1_param = 0 + + # initialize dynamic reconfig client + if self.opt_l1params: + rospy.Subscriber( + "/l1_param_tuner/parameter_updates", Config, self.l1_params_cb + ) # l1 param updating + self.number_of_l1_param = ( + 3 # we consider 3 variables for l1 parameter (see README) + ) + self.dyn_rec_client_l1params = dynamic_reconfigure.client.Client( + "l1_param_tuner", timeout=30 + ) + + if self.opt_sector_scalers: + # get initial sector scaling + self.sectors_params = rospy.get_param("/map_params") + self.n_sectors = self.sectors_params["n_sectors"] + self.dyn_rec_client_sectors = dynamic_reconfigure.client.Client( + "dyn_sector_server", timeout=30 + ) + self.set_sector_global_limit() + # Write map_BO_forrester.yaml file + + # update Bayes Optimization .yaml-file: Edit number of parameters and ranges + self.update_yaml_file() + + # Bayesian Opt client: + self.bayes_opt_client = actionlib.SimpleActionClient( + "BayesOpt", BayesOptAction) + try: + self.bayes_opt_client.wait_for_server( + timeout=rospy.Duration.from_sec(1.0) + ) # wait for bayesOpt server + except rospy.exceptions.ROSException: + rospy.logwarn(f"[{self.name}] BayesOpt server is not responsding") + + # for plotting/visualizing + self.lap_time_list = [] + self.avg_lat_err_list = [] + self.min_car_dist_list = [] + self.y_list = [] + self.param_list = [] + self.y_opt_list = [] + self.skipped_iterations = [] + + # For smallest measured values: + self.shortest_lap_time = 999.9 + self.smallest_avg_lat_err = 9.9 + # For lap_time and error corresponding to the found optimum + self.optimal_lap_time = 999.9 + self.optimal_avg_lat_err = 9.9 + + # call optimize_loop + self.optimize_loop() + + self.visualize_data(save_plot_bool, save_location) + + ############# + # CALLBACKS # + ############# + def get_distance_to_boundary_cb(self, data): + self.min_car_distance = data.data + + def fastest_lap_time_cb(self, data): + self.fastest_lap_time = ( + data.data + ) # estimated_lap_time topic is actually the fastest lap time... + + def lap_data_cb(self, msg): + """ + extract lap data from lap_data topic + """ + self.avg_lat_err = msg.average_lateral_error_to_global_waypoints + self.lap_time = msg.lap_time + self.lap_count = msg.lap_count + + def l1_params_cb(self, params: Config): + """ + Here the l1 parameters will be updated accordingly + """ + self.t_clip_min = params.doubles[0].value + self.m_l1 = params.doubles[2].value + self.q_l1 = params.doubles[3].value + self.l1_default_config = [self.t_clip_min, self.m_l1, self.q_l1] + + ######### + # UTILS # + ######### + def update_yaml_file(self): + """ + This function retrieves the yaml data and transfers the ranges from BO_ranges.yaml to map_BO_forrester.yaml: + The input dimension and parameters ranges are edited. + This step is necessary, as the number of sectors varies. + """ + number_of_sectors = self.n_sectors + self.lower_bound = [] + self.upper_bound = [] + + BO_ragnes_path = rospkg.RosPack().get_path("stack_master") + # Load yaml file where you put in ranges for each parameter/sectors + with open( + BO_ragnes_path + + "/config/" + + self.get_racecar_version() + + "/BO_ranges.yaml", + "r", + ) as file: + BO_ranges_data = yaml.safe_load(file) + + # update bounds: + if self.opt_l1params: + t_clip_min_lb = BO_ranges_data["l1_param"]["t_clip_min"]["lower_bound"] + t_clip_min_ub = BO_ranges_data["l1_param"]["t_clip_min"]["upper_bound"] + m_l1_lb = BO_ranges_data["l1_param"]["m_l1"]["lower_bound"] + m_l1_ub = BO_ranges_data["l1_param"]["m_l1"]["upper_bound"] + q_l1_lb = BO_ranges_data["l1_param"]["q_l1"]["lower_bound"] + q_l1_ub = BO_ranges_data["l1_param"]["q_l1"]["upper_bound"] + + self.lower_bound = [t_clip_min_lb, m_l1_lb, q_l1_lb] + self.upper_bound = [t_clip_min_ub, m_l1_ub, q_l1_ub] + + if self.opt_sector_scalers: + for idx in range(number_of_sectors): + key_str = "Sector" + str(idx) # e.g. 'Sector0' + + self.lower_bound.append(BO_ranges_data[key_str]["lower_bound"]) + self.upper_bound.append(BO_ranges_data[key_str]["upper_bound"]) + + # Load the YAML file (map_BO_forrester.yaml): + yaml_path = rospy.get_param("/bayesopt_config") + with open(yaml_path, "r") as file: + yaml_data = yaml.safe_load(file) + + # Update + yaml_data["input_dim"] = ( + self.number_of_l1_param + number_of_sectors + ) # edit number of parameters to optimize + yaml_data["lower_bound"] = self.lower_bound + yaml_data["upper_bound"] = self.upper_bound + yaml_data["max_iter"] = self.iterations + yaml_data["log_dir"] = ( + rospkg.RosPack().get_path("param_optimizer") + "/logs" + ) # save logs in param_optimizer/logs + + # Save the updated YAML file + with open(yaml_path, "w") as yaml_file: + yaml.dump(yaml_data, yaml_file, default_flow_style=False) + rospy.loginfo(f"[{self.name}] New values were stored in {yaml_path}") + rospy.loginfo(f"[{self.name}] YAML UPDATED") + + def calculate_cost(self): + """ + Calculate cost which has to be minimized. We want to minimize lap time, lateral error and + maximize min distance to track boundary (to avoid crashes). + ---------- + Output: + cost: a function of lap time, average lateral error and min distance to track boundary + """ + cost_lap_time = self.get_lap_time_cost() + cost_crash_avoidance = self.get_distance_to_boundary_cost() + cost_lat_err = self.get_avg_lat_err_cost() + rospy.loginfo(f"[{self.name}] ----------- Calculate Cost -----------") + rospy.loginfo(f"[{self.name}] Min distance: {self.min_car_distance}") + rospy.loginfo(f"[{self.name}] Min distance cost: {cost_crash_avoidance}") + rospy.loginfo(f"[{self.name}] Avg lat error: {self.avg_lat_err}") + rospy.loginfo(f"[{self.name}] Avg lat error cost: {cost_lat_err}") + rospy.loginfo(f"[{self.name}] Lap time: {self.lap_time}") + rospy.loginfo(f"[{self.name}] Lap time cost: {cost_lap_time}") + + cost_total = ( + self.cost_lap_time_scaler * cost_lap_time + + self.cost_crash_avoidance_scaler * cost_crash_avoidance + + self.cost_lat_err_scaler * cost_lat_err + ) + + cost_total = cost_total / ( + self.cost_lat_err_scaler + + self.cost_crash_avoidance_scaler + + self.cost_lap_time_scaler + ) # normalize cost + rospy.loginfo(f"[{self.name}] = Cost total: {cost_total}") + return cost_total + + def get_avg_lat_err_cost(self): + standard_error = 0.15 # where the cost is 0.5 + slope = 50 + lateral_error_cost = 1 / ( + 1 + np.exp(-slope * (self.avg_lat_err - standard_error)) + ) + return lateral_error_cost + + def get_distance_to_boundary_cost(self): + """ + This function calculates a cost with the minimum boundary distance as an argument. + If the car drives somwhere in the middle of the track far away from the boundary the cost is 0, + as such a behavior is not problematic. At a certain distance to the track boundary (safety margin) + the cost increases quadratic until it reaches a certain critical distance. + + Critical distance is where the car would touch the boundary and distances shorter than that is basically + a "crash" (cost is 1) + ---------- + OUTPUT: + value: a value between 0 (best case) and 1 (worst case) + """ + car_width = 0.28 # car width (28cm) + critical_dist = ( + car_width / 2 + ) # distance where the car is touching boundary (half of the car width) + safety_margin = ( + 0.2 + car_width / 2 + ) # general safety margin to track boundary (20cm) from car wheels (0.014) + + # car distance cost function + if self.min_car_distance < critical_dist: + return 1 + elif self.min_car_distance > safety_margin: + return 0 + else: + return ( + 1 + / ((critical_dist - safety_margin) ** 2) + * (self.min_car_distance - safety_margin) ** 2 + ) + + def get_lap_time_cost(self): + """ + This function returns a value between 0 (optimal case) and 1 (worst case) + The fastest lap time is the shortest lap time that a car can physically do (cost = 0) + In the algorithm below there is a timeout at 2*fastest_lap_time which is why + the cost is maximal 1 (worst case) + """ + cost = self.lap_time / self.fastest_lap_time - 1 + return cost + + def update_parameters(self, param_new): + """ + This function updates the parameters of interest with their new value. + ---------- + Input: + param_new: New values + """ + control_length = len(param_new[: self.number_of_l1_param]) + control_length += len(param_new[self.number_of_l1_param:]) + if control_length != (self.n_sectors + self.number_of_l1_param): + # for bug handling + rospy.logerr(f"[{self.name}] rerun the script with SAME settings !!!") + rospy.logerr(f"[{self.name}] parameter length do not match") + subprocess.call(["rosnode", "kill", "BayesOptNode"]) + sys.exit() + + if self.opt_l1params: + self.update_l1_param( + param_new[: self.number_of_l1_param] + ) # first few variables are l1 params values + if self.opt_sector_scalers: + self.update_sector_scalers( + param_new[self.number_of_l1_param:] + ) # the rest are sector scalers + + def update_l1_param(self, param_new): + """ + Update new l1 parameters using dynamic reconfigure + ---------- + Input: + param_new: New l1 parameters + """ + config = { + "t_clip_min": float(param_new[0]), + "m_l1": float(param_new[1]), + "q_l1": float(param_new[2]), + } + self.dyn_rec_client_l1params.update_configuration(config) + + def update_sector_scalers(self, param_new): + """ + Update new sector scalers using dynamic reconfigure + ---------- + Input: + param_new: New sector scalers + """ + config = {} + for i in range(self.n_sectors): + key_name = "Sector" + str(i) + config[key_name] = param_new[i] + self.dyn_rec_client_sectors.update_configuration(config) + + def set_sector_global_limit(self): + rospy.loginfo(f"[{self.name}] Setting global sector limit to 1.0") + if self.sim: + config = { + "global_limit": 2.0, + } + else: + config = { + "global_limit": 1.0, + } + self.dyn_rec_client_sectors.update_configuration(config) + + def testfunction(self, Xin): + """ + Test function (only to test bayesOpt package) + optimum = minimum = 5 + optimal Xin = [0.33, 0.33, ...] + """ + total = 5.0 + total += np.sum(np.power(Xin - 0.33, 2)) + return total + + def request_parameter(self, y_new: float) -> np.ndarray: + """ + Method that requests new parameters from the BayesOpt server. + Parameters + ---------- + INPUT : + y_new: The function value obtained from the objective/experiment. + OUTPUT : + result.x_new: the new values from BayesOpt server + ------- + numpy.ndarray + An array containing the new parameters suggested by BayesOpt server. + Order of L1 params: t_clip_min, m_l1, q_l1 + """ + goal = BayesOptGoal(y_new=y_new) + self.bayes_opt_client.send_goal(goal) + self.bayes_opt_client.wait_for_result() + result = self.bayes_opt_client.get_result() + return result.x_new # its called x_new in the bayesopt package + + ############# + # MAIN LOOP # + ############# + def optimize_loop(self): + """ + Each iteration is done with updated/new values for the parameter of interest (l1 and sector scalers). + The set of new values is given by the bayesian optimization server. + After some laps (minimum 1) the cost is calculated and sent to the same server to reveice the next new set of values. + If the optimization is done, the optimal values are set with dynamic reconfigure. + ---------- + Input: + NONE + Output: + NONE + """ + scaler = 2.0 # for timeout and punishment + + try: + rospy.wait_for_message("estimated_lap_time", LapData, timeout=30) + except rospy.exceptions.ROSException: + rospy.WARN("Timed out waiting for message on 'estimated_lap_time'") + + # initialize variables with some values + init_lap_time = ( + self.fastest_lap_time * scaler + ) # also used as upper bound, later used for timeout also + self.lap_time = init_lap_time + init_avg_lat_err = 0.3 # high value + self.avg_lat_err = init_avg_lat_err + + # Timeout and upper bounds for laptime + self.experiment_timeout = init_lap_time # [s] + self.min_car_distance = 0 # for punishment calculation + # punishment cost if lap time takes too long (longer than experiment_timeout) + high_cost_punishment = 1 + y_opt = high_cost_punishment + self.y_opt_list.append(y_opt) + y_new = high_cost_punishment # initialize with a high value + self.y_list.append(y_new) + + # print settings in terminal for overview + rospy.loginfo(f"[{self.name}] ####################### S E T T I N G S #######################") + if self.opt_l1params: + rospy.loginfo(f"[{self.name}] # Optimizing L1 parameter") + if self.opt_sector_scalers: + rospy.loginfo(f"[{self.name}] # Optimizing sector scaler") + rospy.loginfo(f"[{self.name}] # Iterations: {self.iterations} with {self.laps_per_experiment} laps per experiment" + ) + rospy.loginfo(f"[{self.name}] Ranges: ") + rospy.loginfo(f"[{self.name}] lower bound:[{self.lower_bound}]") + rospy.loginfo(f"[{self.name}] upper bound:[{self.upper_bound}]") + rospy.loginfo(f"[{self.name}] ###############################################################") + + # wait for lap data = wait for current lap to be done + try: + rospy.wait_for_message("lap_data", LapData, timeout=60) + except rospy.exceptions.ROSException: + rospy.WARN("Timed out waiting for message on 'lap_data'") + + # start iteration + for ite in range(1, 1 + self.iterations): + param_new = self.request_parameter(y_new) + self.param_list.append(param_new) + self.update_parameters(param_new) + + # start experiment to calculate new y + # temporary y only to calculate an average if lap per experiment is greater than 1 + y_temporary = 0 + + self.car_distance_to_boundary = [] # reset array: + + # For plot + lap_time_avg = 0 + avg_lat_err_avg = 0 + + param_reasonable = True + for lap_count in range(1, self.laps_per_experiment + 1): + # wait for new lap data = wait until lap is done + try: + rospy.wait_for_message( + "lap_data", LapData, timeout=self.experiment_timeout + ) # timeout such that we do not loose time with unsreasonable params + except rospy.exceptions.ROSException: + rospy.logwarn(f"[{self.name}] Lap takes too long, not reasonable parameters. Skip! Press R1" + ) + param_reasonable = False + self.skipped_iterations.append(ite) + if self.opt_l1params: + self.update_parameters( + self.l1_default_config + ) # set default values to finish lap as quickly as possible + rospy.wait_for_message( + "lap_data", LapData + ) # wait until lap is done + break # continue with new set of parameters + else: + # lap is done in a reasonable amount of time + if self.laps_per_experiment > 1: + rospy.loginfo(f"[{self.name}] {lap_count}/{self.laps_per_experiment} Laps are done") + y_temporary += ( + self.calculate_cost() + ) # sum up y_new for calulating average + lap_time_avg += self.lap_time + avg_lat_err_avg += self.avg_lat_err + + # save shortest lap_time and smallest average lat. error measured + if self.shortest_lap_time > self.lap_time: + self.shortest_lap_time = self.lap_time + if self.smallest_avg_lat_err > self.avg_lat_err: + self.smallest_avg_lat_err = self.avg_lat_err + + if param_reasonable: + # calculate averages: + lap_time_avg = lap_time_avg / self.laps_per_experiment + avg_lat_err_avg = avg_lat_err_avg / self.laps_per_experiment + y_temporary = y_temporary / self.laps_per_experiment + + y_new = y_temporary + else: + # set cost to high value (avoid choosing the same parameters) + y_new = high_cost_punishment + lap_time_avg = init_lap_time + avg_lat_err_avg = init_avg_lat_err + self.min_car_distance = 0 + + self.lap_time_list.append(lap_time_avg) + self.avg_lat_err_list.append(avg_lat_err_avg) + self.min_car_dist_list.append(self.min_car_distance) + self.y_list.append(y_new) + + # store optimal value in a separate variable + if y_new <= y_opt: + y_opt = y_new + self.param_opt = param_new + self.optimal_lap_time = lap_time_avg + self.optimal_avg_lat_err = avg_lat_err_avg + self.optimal_min_car_dist = self.min_car_distance + + self.y_opt_list.append(y_opt) + + self.update_parameters(self.param_opt) # set the optimal values + + rospy.loginfo(f"[{self.name}] -------------------------- R E S U L T S --------------------------") + rospy.loginfo(f"[{self.name}] Optimizers: {np.round(self.param_opt, 4)} ; Optimum: {np.round(y_opt, 4)}" + ) + rospy.loginfo(f"[{self.name}] Optimal lap_time average: {self.optimal_lap_time} \nOptimal avg_lat_err average: {self.optimal_avg_lat_err} \nOptimal min_car_dist: {self.optimal_min_car_dist}" + ) + rospy.loginfo(f"[{self.name}] Fastest lap_time recorded: {self.shortest_lap_time} \nSmallest avg_lat_err recorded: {self.smallest_avg_lat_err}" + ) + # TODO optimal iteration + rospy.loginfo(f"[{self.name}] -------------------------------------------------------------------") + + ############# + # VIZ+PLOTS # + ############# + def visualize_data(self, save_plot_bool=False, location=None): + # for skipped laps box: + alpha_val = 0.2 + box_color = "gray" + + # for plot saving only: + if save_plot_bool: + yaml_path = rospy.get_param("/bayesopt_config") + with open(yaml_path, "r") as file: + data = yaml.safe_load(file) + acq_func = data["acq_func"] + + x = range(1, 1 + self.iterations) + + if self.opt_l1params: # order: t_clip_min, m_l1, q_l1 + param_list_0 = [i[0] for i in self.param_list] + param_list_1 = [i[1] for i in self.param_list] + param_list_2 = [i[2] for i in self.param_list] + + # Plot the data for each graph as points + plt.figure() + plt.plot( + x, + self.y_list[1: self.iterations + 1], + label="current cost", + linestyle="-", + linewidth=2, + color="#0000FA", + ) + plt.plot( + x, + self.y_opt_list[1: self.iterations + 1], + label="optimal cost", + linestyle=":", + linewidth=3, + color="#00FA00", + ) + plt.suptitle("Bayesian Optimization: Cost Values") + plt.title( + f"Optimal cost: {round(self.y_opt_list[-1],3)}", fontsize=10 + ) # last element is optimal y + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + plt.legend() + plt.xlabel("Iterations") + plt.ylabel("value") + # mark skipped iterations: + for skipped_it in self.skipped_iterations: + # mark a box around skipped values + plt.axvspan( + skipped_it - 0.5, + skipped_it + 0.5, + alpha=alpha_val, + color=box_color, + linewidth=0, + ) + if save_plot_bool: + plotname = "cost" + self.save_plot(acq_func, plotname, location) + + # Plot the lap time + plt.figure() + plt.plot(x, self.lap_time_list, color="#9A0000") + plt.suptitle("Bayesian Optimization: Lap_time Average") + plt.title( + f"Optimal lap_time average: {round(self.optimal_lap_time,3)}", fontsize=10 + ) + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + # plt.axhline(y=self.experiment_timeout , color='black', linestyle='-', linewidth=1 , label='Timeout') # mark timeout in plot + plt.legend() + plt.xlabel("Iterations") + plt.ylabel("Lap_time Average [s]") + for skipped_it in self.skipped_iterations: + # mark a box around skipped values + plt.axvspan( + skipped_it - 0.5, + skipped_it + 0.5, + alpha=alpha_val, + color=box_color, + linewidth=0, + ) + if save_plot_bool: + plotname = "lap_time" + self.save_plot(acq_func, plotname, location) + + # Plot the average lateral error + plt.figure() + plt.plot(x, self.avg_lat_err_list, color="#FF4444") + plt.suptitle("Bayesian Optimization: Avg_lat_error Average") + plt.title( + f"Optimal avg_lat_err average: {round(self.optimal_avg_lat_err,3)}", + fontsize=10, + ) + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + plt.xlabel("Iterations") + plt.ylabel("Avg_lat_err Average [m]") + for skipped_it in self.skipped_iterations: + # mark a box around skipped values + plt.axvspan( + skipped_it - 0.5, + skipped_it + 0.5, + alpha=alpha_val, + color=box_color, + linewidth=0, + ) + if save_plot_bool: + plotname = "avg_lat_err" + self.save_plot(acq_func, plotname, location) + + # plot min car distance to track boundary + plt.figure() + plt.plot( + x, self.min_car_dist_list, color="#FF0044" + ) # [1:] as first value is from the first "calculate_cost" and not relevant + plt.suptitle("Bayesian Optimization: Min dististance to boundary") + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + plt.xlabel("Iterations") + plt.ylabel("Min_dist [m]") + for skipped_it in self.skipped_iterations: + # mark a box around skipped values + plt.axvspan( + skipped_it - 0.5, + skipped_it + 0.5, + alpha=alpha_val, + color=box_color, + linewidth=0, + ) + if save_plot_bool: + plotname = "min_dist" + self.save_plot(acq_func, plotname, location) + + # parameter: l1 param + if self.opt_l1params: + plt.figure() # on separate window + plt.scatter(x, param_list_0, label="t_clip_min", color="#A487CA") + plt.scatter(x, param_list_1, label="m_l1", color="#FFB347") + plt.scatter(x, param_list_2, label="q_l1", color="#4DA6A6") + plt.suptitle("Bayesian Optimization: Parameter Samples") + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + subtitle = "" # write optimal values into subtitle + for element in self.param_opt[ + : self.number_of_l1_param + ]: # round each value before putting it in subtitle + subtitle += str(round(element, 3)) + ", " + plt.title(f"Optimizer: {subtitle}", fontsize=10) + plt.legend() + plt.xlabel("Iterations") + plt.ylabel("value") + for skipped_it in self.skipped_iterations: + # mark a box around skipped values + plt.axvspan( + skipped_it - 0.5, + skipped_it + 0.5, + alpha=alpha_val, + color=box_color, + linewidth=0, + ) + if save_plot_bool: + plotname = "l1_param" + self.save_plot(acq_func, plotname, location) + + # parameter: sector scalers + if self.opt_sector_scalers: + plt.figure() # on separate window + plt.suptitle("Bayesian Optimization: Sector Scalers") + subtitle = "" # write optimal values into subtitle + for element in self.param_opt[ + self.number_of_l1_param: + ]: # round each value before putting it in subtitle + subtitle += str(round(element, 3)) + ", " + plt.title(f"Optimizer: {subtitle}", fontsize=10) + plt.grid(True, linewidth=0.5, color="gray", linestyle="--") + for sector_idx in range( + self.n_sectors + ): # get the sector values from each sector + sector_scalers = [ + i[sector_idx + (self.number_of_l1_param)] for i in self.param_list + ] # get array of sectors of each iteration + plt.scatter( + x, + sector_scalers, + label="Sector" + str(sector_idx), + alpha=1.0 / (sector_idx + 1), + color="black", + ) # plot all sector scalers (of each iteration) of current sector (e.g. sector 0) + plt.legend() + plt.xlabel("Iterations") + plt.ylabel("value") + if save_plot_bool: + plotname = "sectors" + self.save_plot(acq_func, plotname, location) + + plt.show() + + def save_plot(self, acq_func, plotname, location): + filename = acq_func + "_" + plotname + "_" + filename += str(self.iterations) + "ite_" + filename += str(self.laps_per_experiment) + "lpe_" + filename += ".png" + + home_dir = os.path.expanduser("~") # Get the user's home directory + path = os.path.join(home_dir, location, filename) + plt.savefig(path) + + def get_racecar_version(self): + racecar_version = rospy.get_param("/racecar_version") # NUCX or SIM + return racecar_version + + +if __name__ == "__main__": + name = "param_optimizer" + rospy.init_node(name, anonymous=False, log_level=rospy.WARN) + bayesopt = BayesOptimizer(name) + rospy.spin() diff --git a/f110_utils/nodes/random_obstacle_publisher/CMakeLists.txt b/f110_utils/nodes/random_obstacle_publisher/CMakeLists.txt new file mode 100644 index 0000000..11f30de --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/CMakeLists.txt @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 3.0.2) +project(random_obstacle_publisher) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + rospy + std_msgs + f110_msgs +) + +# call setup.py +catkin_python_setup() + +# add_executable(gb_traj_publisher src/gb_traj_publisher.py) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +# catkin_package( +# INCLUDE_DIRS include +# LIBRARIES f110_planner +# CATKIN_DEPENDS rospy geometry_msgs f110_msgs std_msgs +# DEPENDS system_lib +# ) diff --git a/f110_utils/nodes/random_obstacle_publisher/README.md b/f110_utils/nodes/random_obstacle_publisher/README.md new file mode 100644 index 0000000..0abc065 --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/README.md @@ -0,0 +1,6 @@ +# Random Obstacle Publisher + +TODO: legacy? + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/random_obstacle_publisher/launch/random_obstacle_publisher.launch b/f110_utils/nodes/random_obstacle_publisher/launch/random_obstacle_publisher.launch new file mode 100644 index 0000000..4ee2e94 --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/launch/random_obstacle_publisher.launch @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/random_obstacle_publisher/package.xml b/f110_utils/nodes/random_obstacle_publisher/package.xml new file mode 100644 index 0000000..6f81cd7 --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/package.xml @@ -0,0 +1,64 @@ + + + random_obstacle_publisher + 0.0.0 + The obstacle_publisher package + + + + + Jonathan Becker + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + rospy + f110_msgs + std_msgs + nav_msgs + + + + + + + + diff --git a/f110_utils/nodes/random_obstacle_publisher/setup.py b/f110_utils/nodes/random_obstacle_publisher/setup.py new file mode 100644 index 0000000..f84f33d --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['random_obstacle_publisher'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/f110_utils/nodes/random_obstacle_publisher/src/random_obstacle_publisher/__init__.py b/f110_utils/nodes/random_obstacle_publisher/src/random_obstacle_publisher/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/random_obstacle_publisher/src/random_obstacle_publisher/random_obstacle_publisher.py b/f110_utils/nodes/random_obstacle_publisher/src/random_obstacle_publisher/random_obstacle_publisher.py new file mode 100755 index 0000000..62d07e7 --- /dev/null +++ b/f110_utils/nodes/random_obstacle_publisher/src/random_obstacle_publisher/random_obstacle_publisher.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python3 + +import rospy +from f110_msgs.msg import ObstacleArray, Obstacle, WpntArray, LapData +from std_msgs.msg import Bool +from nav_msgs.msg import OccupancyGrid, Odometry +from numpy import random +import numpy as np +import math + +class ObstaclePublisher: + def __init__(self): + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.odom_cb) + rospy.Subscriber('/global_waypoints', WpntArray, self.global_trajectory_cb) + self.obstacle_pub = rospy.Publisher('/obstacles', ObstacleArray, queue_size=10) + + self.n_sectors = rospy.get_param('~n_obstacles') + 1 + self.publish_at_lookahead = rospy.get_param('~publish_at_lookahead') + self.lookahead_distance = rospy.get_param('~lookahead_distance') + self.obstacle_width = rospy.get_param('~obstacle_width') + self.obstacle_length = rospy.get_param('~obstacle_length') + self.obstacle_max_d_from_traj = rospy.get_param('~obstacle_max_d_from_traj') + seed = rospy.get_param('~rnd_seed') + + self.obstacle_array = [] + self.has_traj = False + self.has_odom = False + self.gen = random.default_rng(seed) + self.s = 0.0 + # loop while not shutdown + node_rate = rospy.Rate(25) # 25hz + # start_time = rospy.Time.now() + rospy.sleep(0.1) + while (not self.has_traj or not self.has_odom) and not rospy.is_shutdown(): + node_rate.sleep() + + self.update_obstacles() + + while not rospy.is_shutdown(): + self.publish_obstacles() + node_rate.sleep() + + def update_obstacles(self): + if self.has_traj: + self.obstacle_array.clear() + self.final_s = self.gb_wpnts[-1].s_m + s_spacing = self.final_s / self.n_sectors + margin = max(0.5, self.obstacle_length) + for sec in range(self.n_sectors): + s_start = sec * s_spacing + s_end = s_start + s_spacing - margin + ob = self.generate_random_obstacle(sec, s_start, s_end) + self.obstacle_array.append(ob) + + def generate_random_obstacle(self, id, s_start, s_end): + ob = Obstacle() + ob.id = id + # random s within s_start and s_end + p1 = self.gen.random() + ob.s_start = s_start + (s_end - s_start) * p1 + ob.s_end = ob.s_start + self.obstacle_length + + # get track bounds at s_start + wpt_id = self.get_closest_point_on_traj(ob.s_start) + track_right = -min(self.gb_wpnts[wpt_id].d_right, self.obstacle_max_d_from_traj) # negative + track_left = min(self.gb_wpnts[wpt_id].d_left - self.obstacle_width, self.obstacle_max_d_from_traj) + + p2 = self.gen.random() + ob.d_right = track_right + (track_left - track_right) * p2 + ob.d_left = ob.d_right + self.obstacle_width + ob.is_actually_a_gap = False + + return ob + + def get_closest_point_on_traj(self, s): + min_d = 1000 + id = 0 + for wpt in self.gb_wpnts: + d = (wpt.s_m-s)**2 + if d < min_d: + min_d = d + id = wpt.id + return id + + def publish_obstacles(self): + obstacle_msg = ObstacleArray() + obstacle_msg.header.stamp = rospy.Time.now() + obstacle_msg.header.frame_id = "frenet" + if self.publish_at_lookahead: + for ob in self.obstacle_array: + # too lazy to handle wrapping + dist = math.fmod(self.s + self.lookahead_distance, self.final_s) - ob.s_start + if dist > 0 and dist < (self.lookahead_distance + 1): + obstacle_msg.obstacles.append(ob) + else: + obstacle_msg.obstacles = self.obstacle_array + self.obstacle_pub.publish(obstacle_msg) + + def global_trajectory_cb(self, msg): + self.has_traj = True + self.gb_wpnts = msg.wpnts + + def odom_cb(self, msg): + self.has_odom = True + self.s = msg.pose.pose.position.x + + +if __name__ == '__main__': + rospy.init_node('random_obstacle_publisher') + DummyObstacles = ObstaclePublisher() \ No newline at end of file diff --git a/f110_utils/nodes/sector_tuner/CMakeLists.txt b/f110_utils/nodes/sector_tuner/CMakeLists.txt new file mode 100644 index 0000000..4275536 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/CMakeLists.txt @@ -0,0 +1,211 @@ +cmake_minimum_required(VERSION 3.0.2) +project(sector_tuner) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/dyn_sect_tuner.cfg +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +#generate_dynamic_reconfigure_options( +# cfg/dyn_sect_tuner.cfg +# cfg/DynReconf2.cfg +#) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES sector_tuner +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/sector_tuner.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +#add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS} ${PROJECT_NAME}_gencfg) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/sector_tuner_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_sector_tuner.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/sector_tuner/README.md b/f110_utils/nodes/sector_tuner/README.md new file mode 100644 index 0000000..39bb87e --- /dev/null +++ b/f110_utils/nodes/sector_tuner/README.md @@ -0,0 +1,71 @@ +# Sector Tuner +small package for handling the sector tuning. +It takes care of providing the GUI for slicing the racing line in sectors and then publishes the sectors and the corresponding scaled trajectories and scaling parameters once the system is running. + +## Sector slicer +### Basic usage + +An example usage is in `/base_system/f1tenth_system/racecar/racecar/launch/pbl_teleop.launch`, where the overtaking sector slicer is launched as follows: +```xml + + + + +``` +This specifically provides the functionality to slice the sectors. + +### How does it work + +One may launch the simulator with mapping enabled: +``` +roslaunch f1tenth_simulator pbl_sim.launch mapping_bool:=True map_name:=berlin +``` +Then the sector slicer will open a GUI for defining the sectors and generate `sector_scaling.yaml` within the maps folder. + +Additionally it will copy said `yaml` into the `sector_tuner` package and rebuild the package for the dynamic reconf build [here](./cfg/dyn_sect_tuner.cfg). +**You will need to use a freshly sourced roscore from here on.** + +Now you can launch the sim without the mapping bool and launch `rqt > Plugins > Configuration > Dynamic Reconfigure`. Enjoy dynamic reconfigure from here on. + +## Sector server + +### Basic usage +An example is in `/base_system/f1tenth_system/racecar/racecar/launch/pbl_teleop.launch`, where the sector server is launched as follows: +```xml + + + + + + + +``` +The first launched node provides the dynamic reconfigurable parameters, i.e. the sectors starts and end plus the velocity scaling. +Then the second launch file provides the scaled trajectory, with smooth inerpolation between the sectors. + +The trajectory (as an [`f110_msgs/WpntArray`](../../../f110_utils/libs/f110_msgs/msg/WpntArray.msg)) is published at the following topic +``` +/global_waypoints_scaled +``` +The shortest path trajectory is also published at the following topic +``` +/global_waypoints_scaled/shortest_path +``` + +### How does it work + +The dynamic parameters server provides the info needed at either the following parameter: +``` +/dyn_sector_server +``` +or at the following topic (message type: [`dynamic_reconfigure/Config`](http://docs.ros.org/en/noetic/api/dynamic_reconfigure/html/msg/Config.html)) +``` +/dyn_sector_server/parameter_updates +``` +The velocity scaler then listens to the parameters' update and publishes the scaled trajectory by linearly interpolating between sectors, starting `hl_points` points before the end of a sector and finishing `hl_points` points after the beginning of the new sectors (last time I checked `hl_points` == 10). + +ROS parameters: + - `debug_plot` : it activates a matplotlib plot to visualise the the velocity scaling across the whole track. Unfortunately it breaks down the publishing of the scaled waypoints, therefore it is only for debugging purposes. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/sector_tuner/cfg/dyn_sect_tuner.cfg b/f110_utils/nodes/sector_tuner/cfg/dyn_sect_tuner.cfg new file mode 100644 index 0000000..e1e939e --- /dev/null +++ b/f110_utils/nodes/sector_tuner/cfg/dyn_sect_tuner.cfg @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +PACKAGE = "sector_tuner" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('sector_tuner') +yaml_path = os.path.join(ros_path, 'cfg/speed_scaling.yaml') +if os.path.isfile(yaml_path): + with open(yaml_path) as file: + sector_dict = yaml.load(file, Loader=yaml.FullLoader) + + gen = ParameterGenerator() + + gen.add("global_limit", double_t, 0, "Velocity scaling applied globally", sector_dict['global_limit'], 0, 1) + + only_sectors = {k: v for k, v in sector_dict.items() if k.startswith('Sector')} + + i = 0 + #Generate dynamic reconfigure according to how many sectors are defined + for key, item in only_sectors.items(): + #name, paramtype, level, description, default, min, max + gen.add("Sector" + str(i), double_t, 0, "Sector scaling from s: {} - {} [m]".format(item['start'], item['end']), item['scaling'], 0, 1) + gen.add("OnlyFTG" + str(i), bool_t, 1, "Use only FTG in Sector{}".format(i), item['only_FTG']) + gen.add("NoFTG" + str(i), bool_t, 2, "No FTG in Sector{}".format(i), item['no_FTG']) + i += 1 +else: + gen = ParameterGenerator() + gen.add("global_limit", double_t, 0, "Velocity scaling applied globally", 0.69, 0, 1) + gen.add("Sector" + str(0), double_t, 0, "Sector scaling from s: {} - {} [m]".format(0, 69), 0.69, 0, 1) + gen.add("OnlyFTG" + str(0), bool_t, 1, "Use only FTG in Sector{}".format(0), False) + gen.add("NoFTG" + str(0), bool_t, 2, "No FTG in Sector{}".format(0), False) + +exit(gen.generate(PACKAGE, "dynamic_sector", "dyn_sect_tuner")) diff --git a/f110_utils/nodes/sector_tuner/data/.gitkeep b/f110_utils/nodes/sector_tuner/data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/sector_tuner/launch/sector_tuner.launch b/f110_utils/nodes/sector_tuner/launch/sector_tuner.launch new file mode 100644 index 0000000..7e41429 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/launch/sector_tuner.launch @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/sector_tuner/launch/velocity_scaler.launch b/f110_utils/nodes/sector_tuner/launch/velocity_scaler.launch new file mode 100644 index 0000000..eaf9f75 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/launch/velocity_scaler.launch @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/f110_utils/nodes/sector_tuner/package.xml b/f110_utils/nodes/sector_tuner/package.xml new file mode 100644 index 0000000..687c3a1 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/package.xml @@ -0,0 +1,71 @@ + + + sector_tuner + 0.0.0 + The sector_tuner package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + + + + + + + + diff --git a/f110_utils/nodes/sector_tuner/scripts/finish_sector.sh b/f110_utils/nodes/sector_tuner/scripts/finish_sector.sh new file mode 100755 index 0000000..f861892 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/scripts/finish_sector.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +source ~/.bashrc + +cd ~/catkin_ws + +#Clean and build sector tuner to force refresh of dynamic reconfigure +catkin clean sector_tuner +catkin build sector_tuner \ No newline at end of file diff --git a/f110_utils/nodes/sector_tuner/src/sector_server.py b/f110_utils/nodes/sector_tuner/src/sector_server.py new file mode 100755 index 0000000..d14b71e --- /dev/null +++ b/f110_utils/nodes/sector_tuner/src/sector_server.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python3 +import rospy +import numpy as np +from f110_msgs.msg import Wpnt, WpntArray +from tf.transformations import euler_from_quaternion, quaternion_from_euler +from dynamic_reconfigure.server import Server +from sector_tuner.cfg import dyn_sect_tunerConfig +from visualization_msgs.msg import Marker, MarkerArray + +def callback(config, level): + return config + +class SectorPublisher: + def __init__(self): + self.glb_waypoints = None + self.sector_pub = rospy.Publisher('/sector_markers', MarkerArray, queue_size=10) + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + + def glb_wpnts_cb(self, data): + self.glb_waypoints = [] + for waypoint in data.wpnts: + self.glb_waypoints.append([waypoint.x_m, waypoint.y_m, waypoint.s_m]) + + def pub_sector_markers(self): + rate = rospy.Rate(1) + while (not rospy.is_shutdown()): + if self.glb_waypoints is None: + continue + + sectors_params = rospy.get_param("/map_params") + n_sectors = sectors_params['n_sectors'] + sec_markers = MarkerArray() + + for i in range(n_sectors): + s = sectors_params[f"Sector{i}"]['start'] + if s == (len(self.glb_waypoints) - 1): + theta = np.arctan2((self.glb_waypoints[0][1] - self.glb_waypoints[s][1]),(self.glb_waypoints[0][0] - self.glb_waypoints[s][0])) + else: + theta = np.arctan2((self.glb_waypoints[s+1][1] - self.glb_waypoints[s][1]),(self.glb_waypoints[s+1][0] - self.glb_waypoints[s][0])) + quaternions = quaternion_from_euler(0, 0, theta) + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = rospy.Time.now() + marker.type = marker.ARROW + marker.scale.x = 0.5 + marker.scale.y = 0.05 + marker.scale.z = 0.15 + marker.color.r = 1.0 + marker.color.g = 0.0 + marker.color.b = 0.0 + marker.color.a = 1.0 + marker.pose.position.x = self.glb_waypoints[s][0] + marker.pose.position.y = self.glb_waypoints[s][1] + marker.pose.position.z = 0 + marker.pose.orientation.x = quaternions[0] + marker.pose.orientation.y = quaternions[1] + marker.pose.orientation.z = quaternions[2] + marker.pose.orientation.w = quaternions[3] + marker.id = i + sec_markers.markers.append(marker) + + marker_text = Marker() + marker_text.header.frame_id = "map" + marker_text.header.stamp = rospy.Time.now() + marker_text.type = marker_text.TEXT_VIEW_FACING + marker_text.text = f"Start Sector {i}" + marker_text.scale.z = 0.4 + marker_text.color.r = 0.2 + marker_text.color.g = 0.1 + marker_text.color.b = 0.1 + marker_text.color.a = 1.0 + marker_text.pose.position.x = self.glb_waypoints[s][0] + marker_text.pose.position.y = self.glb_waypoints[s][1] + marker_text.pose.position.z = 1.5 + marker_text.pose.orientation.x = 0.0 + marker_text.pose.orientation.y = 0.0 + marker_text.pose.orientation.z = 0.0436194 + marker_text.pose.orientation.w = 0.9990482 + marker_text.id = i + n_sectors + sec_markers.markers.append(marker_text) + self.sector_pub.publish(sec_markers) + rate.sleep() + +if __name__ == "__main__": + rospy.init_node("dynamic_sector_tuner", anonymous=False) + print('Dynamic Sector Server Launched...') + srv = Server(dyn_sect_tunerConfig, callback) + sec_pub = SectorPublisher() + sec_pub.pub_sector_markers() diff --git a/f110_utils/nodes/sector_tuner/src/sector_slicing.py b/f110_utils/nodes/sector_tuner/src/sector_slicing.py new file mode 100755 index 0000000..c9be006 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/src/sector_slicing.py @@ -0,0 +1,161 @@ +#!/usr/bin/env python3 +import rospy, rospkg +import yaml, os, subprocess, time +from f110_msgs.msg import WpntArray +from visualization_msgs.msg import MarkerArray +import numpy as np +import matplotlib.pyplot as plt +from matplotlib.widgets import Slider, Button +from matplotlib.patches import Arrow + +class SectorSlicer: + """ + Node for listening to gb waypoints and running a GUI to tune the sectors s.t. a yaml can be exported for dynamic reconfigure + """ + def __init__(self): + rospy.init_node('sector_node', anonymous=True) + + self.glb_wpnts = None + self.track_bounds = None + + self.speed_scaling = 0.5 + self.glob_slider_s = 0 + self.sector_pnts = [0] #Sector always has tostart at 0 + + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + rospy.Subscriber('/trackbounds/markers', MarkerArray, self.bounds_cb) + + #rosparam to define yaml dir but filename will always be speed_scaling.yaml + self.yaml_dir = rospy.get_param('~save_dir') + + def glb_wpnts_cb(self, data): + self.glb_wpnts = data + + def bounds_cb(self, data): + self.track_bounds = data + + def slice_loop(self): + #Wait until we get the waypoints + print('Waiting for global waypoints...') + rospy.wait_for_message('/global_waypoints', WpntArray) + + #Select Sectors via the GUI + self.sector_gui() + print('Selected Sector IDXs:', self.sector_pnts) + + #Write sectors to yaml + self.sectors_to_yaml() + + def sector_gui(self): + #get wpnt message in list format for plotting + s = [] + v = [] + x = [] + y = [] + for wpnt in self.glb_wpnts.wpnts: + s.append(wpnt.s_m) + v.append(wpnt.vx_mps) + x.append(wpnt.x_m) + y.append(wpnt.y_m) + s = np.array(s) + x = np.array(x) + y = np.array(y) + + # plot raceline without sector points + fig, (ax1, axslider, axselect, axfinish) = plt.subplots(4, 1, gridspec_kw={'height_ratios': [5, 1, 1, 1]}) + ax1.plot(x, y, "r-", linewidth=0.7) + ax1.plot([mrk.pose.position.x for mrk in self.track_bounds.markers], [mrk.pose.position.y for mrk in self.track_bounds.markers], 'g-', linewidth=0.4) + ax1.grid() + ax1.set_aspect("equal", "datalim") + ax1.set_xlabel("east in m") + ax1.set_ylabel("north in m") + #Plot arrow at start + arr_par = {'x': x[0], 'dx': 10 * (x[1] - x[0]), + 'y': y[0], 'dy': 10 * (y[1] - y[0]), + 'color': 'gray', + 'width': 0.5} + ax1.add_artist(Arrow(**arr_par)) + + #Slider stuff + def update_s(val): + idx = int(slider.val) - 1 + self.glob_slider_s = idx #update the global slider s + update_map(x=x, y=y, cur_s=idx) + fig.canvas.draw_idle() + + #Btn stuff + def select_s(event): + #When pressing button append the new position + self.sector_pnts.append(self.glob_slider_s) + update_map(x=x, y=y, cur_s=self.glob_slider_s) + + def finish(event): + plt.close() + + #Sectors always end at end + self.sector_pnts.append(len(s)) + + #Eliminate duplicates if necessary + self.sector_pnts = sorted(list(set(self.sector_pnts))) + return + + def update_map(x, y, cur_s): + ax1.cla() + ax1.plot(x, y, "r-", linewidth=0.7) + ax1.plot([mrk.pose.position.x for mrk in self.track_bounds.markers], [mrk.pose.position.y for mrk in self.track_bounds.markers], 'g-', linewidth=0.4) + ax1.grid() + ax1.set_aspect("equal", "datalim") + ax1.set_xlabel("east in m") + ax1.set_ylabel("north in m") + ax1.scatter(x[cur_s], y[cur_s]) + if len(self.sector_pnts) > 0: + ax1.scatter(x[self.sector_pnts], y[self.sector_pnts], c='red') + + #Matplotlib widgets for GUI + slider = Slider(axslider, 'S [m]', 0, len(s), valinit=0, valfmt='%d') + slider.on_changed(update_s) + + btn_select = Button(axselect, 'Select S') + btn_select.on_clicked(select_s) + + btn_finish = Button(axfinish, 'Done') + btn_finish.on_clicked(finish) + + plt.show() + + def sectors_to_yaml(self): + #Create yaml with default speed scaling values + n_sectors = len(self.sector_pnts) - 1 + dict_file = {'global_limit': self.speed_scaling, 'n_sectors': n_sectors} + for i in range(0, n_sectors): + #Add sectors with scaling field + dict_file['Sector' + str(i)] = {'start':self.sector_pnts[i] if i == 0 else self.sector_pnts[i] + 1, + 'end':self.sector_pnts[i+1], + 'scaling':self.speed_scaling} + #Add only_FTG field to sector + dict_file['Sector' + str(i)].update({'only_FTG': False}) + #Add no_FTG field to sector + dict_file['Sector' + str(i)].update({'no_FTG': False}) + + #Save yaml to the respective maps folder + yaml_path = os.path.join(self.yaml_dir, 'speed_scaling.yaml') + with open(yaml_path, 'w') as file: + print('Dumping to {}: {}'.format(yaml_path, dict_file)) + yaml.dump(dict_file, file, sort_keys=False) + + #Copy content to sector_tuner package for catkin build + ros_path = rospkg.RosPack().get_path('sector_tuner') + yaml_path = os.path.join(ros_path, 'cfg/speed_scaling.yaml') + with open(yaml_path, 'w') as file: + print('Dumping to {}: {}'.format(yaml_path, dict_file)) + yaml.dump(dict_file, file, sort_keys=False) + + #Directly build the sector_tuner package + time.sleep(1) + print('Copying and writing the yaml to sector_tuner package and building catkin for next use...') + shell_dir = os.path.join(ros_path, 'scripts/finish_sector.sh') + subprocess.Popen(shell_dir, shell=True) + +if __name__ == "__main__": + sector_slicer = SectorSlicer() + sector_slicer.slice_loop() \ No newline at end of file diff --git a/f110_utils/nodes/sector_tuner/src/vel_scaler_node.py b/f110_utils/nodes/sector_tuner/src/vel_scaler_node.py new file mode 100755 index 0000000..8a1e7c7 --- /dev/null +++ b/f110_utils/nodes/sector_tuner/src/vel_scaler_node.py @@ -0,0 +1,170 @@ +#! /usr/bin/env python3 + +import rospy +import numpy as np +import matplotlib.pyplot as plt +from f110_msgs.msg import WpntArray +from dynamic_reconfigure.msg import Config + + +class VelocityScaler: + """ + Sector scaler for the velocity of the global waypoints + """ + + def __init__(self, debug_plot: bool = False) -> None: + self.debug_plot = rospy.get_param("/velocity_scaler/debug_plot") + + # sectors params + self.glb_wpnts_og = None + self.glb_wpnts_scaled = None + self.glb_wpnts_sp_og = None + self.glb_wpnts_sp_scaled = None + + # get initial scaling + self.sectors_params = rospy.get_param("/map_params") + self.n_sectors = self.sectors_params['n_sectors'] + + # dyn params sub + self.glb_wpnts_name = "/global_waypoints" + rospy.Subscriber("/dyn_sector_server/parameter_updates", Config, self.dyn_param_cb) + rospy.Subscriber(self.glb_wpnts_name, WpntArray, self.glb_wpnts_cb) + rospy.Subscriber(self.glb_wpnts_name+"/shortest_path", WpntArray, self.glb_wpnts_sp_cb) + + # new glb_waypoints pub + self.scaled_points_pub = rospy.Publisher("/global_waypoints_scaled", WpntArray, queue_size=10) + self.scaled_points_sp_pub = rospy.Publisher("/global_waypoints_scaled/shortest_path", WpntArray, queue_size=10) + + def glb_wpnts_cb(self, data:WpntArray): + """ + Saves the global waypoints + """ + self.glb_wpnts_og = data + + def glb_wpnts_sp_cb(self, data:WpntArray): + """ + Saves the global waypoints + """ + self.glb_wpnts_sp_og = data + + def dyn_param_cb(self, params:Config): + """ + Notices the change in the parameters and scales the global waypoints + """ + # get global limit + self.sectors_params['global_limit'] = params.doubles[0].value + + # update params + for i in range(self.n_sectors): + self.sectors_params[f"Sector{i}"]['scaling'] = np.clip( + params.doubles[i+1].value, 0, self.sectors_params['global_limit'] + ) + + rospy.loginfo(self.sectors_params) + + def get_vel_scaling(self, s): + """ + Gets the dynamically reconfigured velocity scaling for the points. + Linearly interpolates for points between two sectors + + Parameters + ---------- + s + s parameter whose sector we want to find + """ + hl_change = 10 + + if self.n_sectors > 1: + for i in range(self.n_sectors): + if i == 0 : + if (s >= self.sectors_params[f'Sector{i}']['start']) and (s < self.sectors_params[f'Sector{i}']['start'] + hl_change): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i}']['start']-hl_change, self.sectors_params[f'Sector{i}']['start']+hl_change], + fp=[self.sectors_params[f'Sector{self.n_sectors-1}']['scaling'], self.sectors_params[f'Sector{i}']['scaling']] + ) + elif (s >= self.sectors_params[f'Sector{i}']['start'] + hl_change) and (s < self.sectors_params[f'Sector{i+1}']['start'] - hl_change): + scaler = self.sectors_params[f"Sector{i}"]['scaling'] + elif (s >= self.sectors_params[f'Sector{i+1}']['start'] - hl_change) and (s < self.sectors_params[f'Sector{i+1}']['start']): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i+1}']['start']-hl_change, self.sectors_params[f'Sector{i+1}']['start']+hl_change], + fp=[self.sectors_params[f'Sector{i}']['scaling'], self.sectors_params[f'Sector{i+1}']['scaling']] + ) + elif i != self.n_sectors-1: + if (s >= self.sectors_params[f'Sector{i}']['start']) and (s < self.sectors_params[f'Sector{i}']['start'] + hl_change): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i}']['start']-hl_change, self.sectors_params[f'Sector{i}']['start']+hl_change], + fp=[self.sectors_params[f'Sector{i-1}']['scaling'], self.sectors_params[f'Sector{i}']['scaling']] + ) + elif (s >= self.sectors_params[f'Sector{i}']['start'] + hl_change) and (s < self.sectors_params[f'Sector{i+1}']['start'] - hl_change): + scaler = self.sectors_params[f"Sector{i}"]['scaling'] + elif (s >= self.sectors_params[f'Sector{i+1}']['start'] - hl_change) and (s < self.sectors_params[f'Sector{i+1}']['start']): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i+1}']['start']-hl_change, self.sectors_params[f'Sector{i+1}']['start']+hl_change], + fp=[self.sectors_params[f'Sector{i}']['scaling'], self.sectors_params[f'Sector{i+1}']['scaling']] + ) + else: + if (s >= self.sectors_params[f'Sector{i}']['start']) and (s < self.sectors_params[f'Sector{i}']['start'] + hl_change): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i}']['start']-hl_change, self.sectors_params[f'Sector{i}']['start']+hl_change], + fp=[self.sectors_params[f'Sector{i-1}']['scaling'], self.sectors_params[f'Sector{i}']['scaling']] + ) + elif (s >= self.sectors_params[f'Sector{i}']['start'] + hl_change) and (s < self.sectors_params[f'Sector{i}']['end'] - hl_change): + scaler = self.sectors_params[f"Sector{i}"]['scaling'] + elif (s >= self.sectors_params[f'Sector{i}']['end'] - hl_change): + scaler = np.interp( + x=s, + xp=[self.sectors_params[f'Sector{i}']['end']-hl_change, self.sectors_params[f'Sector{i}']['end']+hl_change], + fp=[self.sectors_params[f'Sector{i}']['scaling'], self.sectors_params[f'Sector{0}']['scaling']] + ) + elif self.n_sectors == 1: + scaler = self.sectors_params["Sector0"]['scaling'] + + return scaler + + def scale_points(self): + """ + Scales the global waypoints' velocities + """ + scaling = [] + + if self.glb_wpnts_scaled is None: + self.glb_wpnts_scaled = self.glb_wpnts_og + self.glb_wpnts_sp_scaled = self.glb_wpnts_sp_og + + for i, wpnt in enumerate(self.glb_wpnts_og.wpnts): + vel_scaling = self.get_vel_scaling(i) + new_vel = wpnt.vx_mps*vel_scaling + self.glb_wpnts_scaled.wpnts[i].vx_mps = new_vel + scaling.append(self.get_vel_scaling(i)) + + if self.debug_plot: + plt.clf() + plt.plot(scaling) + plt.legend(['og', 'scaled']) + plt.ylim(0,1) + plt.show() + + + def loop(self): + rospy.loginfo("Waiting for global waypoints...") + rospy.wait_for_message(self.glb_wpnts_name, WpntArray) + rospy.loginfo("Global waypoints received!") + + # initialise scaled points + self.scale_points() + + run_rate = rospy.Rate(2) + while not rospy.is_shutdown(): + self.scale_points() + self.scaled_points_pub.publish(self.glb_wpnts_scaled) + run_rate.sleep() + +if __name__ == '__main__': + rospy.init_node("vel_scaler") + vel_scaler = VelocityScaler() + vel_scaler.loop() diff --git a/f110_utils/nodes/set_pose/CMakeLists.txt b/f110_utils/nodes/set_pose/CMakeLists.txt new file mode 100644 index 0000000..ca3a092 --- /dev/null +++ b/f110_utils/nodes/set_pose/CMakeLists.txt @@ -0,0 +1,206 @@ +cmake_minimum_required(VERSION 3.0.2) +project(set_pose) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES f110_planner +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/f110_planner.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/f110_planner_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_f110_planner.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/set_pose/README.md b/f110_utils/nodes/set_pose/README.md new file mode 100644 index 0000000..35c46f3 --- /dev/null +++ b/f110_utils/nodes/set_pose/README.md @@ -0,0 +1,22 @@ +# Set Pose + +This package provides the capacities to change the position estimate of the real car. +It is particularly useful at startup, when the localization system has not converged and therefore automatic driving cannot be launched right away. +This package can however be also useful in other circumstances when the car localization system has not properly converged, e.g. after a crash. + +## Basic usage +The package inclusion in a launch file can be seen in the stack master [`base_system`](../../../stack_master/launch/base_system.launch) launch file. +```xml + + + + + + +``` + +## How does it works +The pose can be set easily with the "2d Pose Estimate" button in the RViz interface. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/set_pose/package.xml b/f110_utils/nodes/set_pose/package.xml new file mode 100644 index 0000000..832711c --- /dev/null +++ b/f110_utils/nodes/set_pose/package.xml @@ -0,0 +1,68 @@ + + + set_pose + 0.0.0 + The f110_planner package + + + + + icra_crew + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + + + + + + + + diff --git a/f110_utils/nodes/set_pose/src/set_pose_node.py b/f110_utils/nodes/set_pose/src/set_pose_node.py new file mode 100755 index 0000000..902dd16 --- /dev/null +++ b/f110_utils/nodes/set_pose/src/set_pose_node.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 + +import rospy +from geometry_msgs.msg import PoseWithCovarianceStamped +import subprocess + + +class SetInitialPose(): + def __init__(self): + rospy.init_node('setpose', anonymous=True) + + rospy.on_shutdown(self.shutdown) + + # '/home/icra_crew/catkin_ws/src/f1tenth_system/racecar/racecar/config/common/slam' + self.CONFIG_DIR = rospy.get_param('set_slam_pose_node/config_dir') + self.CONFIG_BASE = rospy.get_param('set_slam_pose_node/config_base') # 'f110_2d_loc.lua' + + # A variable to hold the initial pose of the robot to be set by the user in RViz + self.initial_pose = PoseWithCovarianceStamped() + self.ready = False + + # Get the initial pose from the user + rospy.loginfo("Click the 2D Pose Estimate button in RViz to set the robot's pose...") + + #rospy.wait_for_message('initialpose', PoseWithCovarianceStamped) + rospy.Subscriber('initialpose', PoseWithCovarianceStamped, self.update_initial_pose) + + # 0 is the one we saved during mapping, so in loc only we start trajectory 1 + self.trajectory_num = 1 + + while not rospy.is_shutdown(): + rospy.sleep(1) + + def update_initial_pose(self, msg): + print('initial pos', msg.pose.pose.position) + print('initial orientation', msg.pose.pose.orientation) + self.initial_pose = msg + x = msg.pose.pose.orientation.x + y = msg.pose.pose.orientation.y + z = msg.pose.pose.orientation.z + w = msg.pose.pose.orientation.w + xp = msg.pose.pose.position.x + yp = msg.pose.pose.position.y + zp = msg.pose.pose.position.z + + s = 'rosservice call /finish_trajectory ' + str(self.trajectory_num) + print(s) + process = subprocess.Popen( + s, stdout=subprocess.PIPE, stderr=None, shell=True) + output = process.communicate() + # print(output[0]) + + s = 'rosservice call /start_trajectory "{configuration_directory: ' + s = s + '"' + self.CONFIG_DIR + '"' + s = s + ', configuration_basename: "' + self.CONFIG_BASE + \ + '", use_initial_pose: "true", initial_pose: ' + s = s + ' {position: {x: ' + \ + str(xp) + ', y: ' + str(yp) + ', z: '+str(zp) + '}' + s = s + ', orientation: {x: ' + str(x) + ', y: ' + str(y) + ', z: '+str( + z) + ', w: '+str(w)+'}}, relative_to_trajectory_id: 0}"' + + print("Calling:", s) + process = subprocess.Popen(s, stdout=subprocess.PIPE, stderr=None, shell=True) + output = process.communicate() + + # print(output[0]) + self.trajectory_num += 1 + + def shutdown(self): + rospy.loginfo("Stopping setinitpose...") + + +if __name__ == '__main__': + try: + SetInitialPose() + rospy.spin() + except rospy.ROSInterruptException: + rospy.loginfo("Localize finished.") diff --git a/f110_utils/nodes/slam_tuner/.gitignore b/f110_utils/nodes/slam_tuner/.gitignore new file mode 100644 index 0000000..e61b545 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/.gitignore @@ -0,0 +1,2 @@ +data/* +profiling/* \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/CMakeLists.txt b/f110_utils/nodes/slam_tuner/CMakeLists.txt new file mode 100644 index 0000000..f02eb0f --- /dev/null +++ b/f110_utils/nodes/slam_tuner/CMakeLists.txt @@ -0,0 +1,212 @@ +cmake_minimum_required(VERSION 3.0.2) +project(slam_tuner) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + nav_msgs + std_msgs + sensor_msgs + roscpp + rospy + tf2 + tf2_ros +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +## catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES slam_tuner +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/slam_tuner.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/slam_tuner_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +catkin_install_python(PROGRAMS + src/path_recorder.py + src/reconstruction_error.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_slam_tuner.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/slam_tuner/README.md b/f110_utils/nodes/slam_tuner/README.md new file mode 100644 index 0000000..f482328 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/README.md @@ -0,0 +1,232 @@ +# Slam Tuner +This package provides functionalities to tune Localization packages. + +## Launch Procedure + +Start by getting your favorite rosbag and put it in the `data` folder of the `slam_tuner` folder. + +Then run the `tuner.launch` launch file, for example: + +```bash +roslaunch slam_tuner tuner.launch bag:=hangar/hangar_2205_speed.bag map_name:=hangar_2205_v0 racecar_version:=NUC2 algo:=pf2 include_SE:=True SE_version:=new +``` + +This launch file has a few parameters: +- `bag`: Relative path to the rosbag within `slam_tuner/data` +- `map_name`: Map you wish to get from `stack_master/maps` +- `racecar_version`: Choose the relevant NUC lookup tables +- `algo`: For now, choose between: + - `slam`: Cartographer + - `pf2`: Particle Filter 2 +- `include_SE`: Whether or not to run the EKFs (early and late) or just to run localization +- `SE_version`: Choose between: + - `new`: With late fusion EKF (and other parameters) + - `old`: Without + +The launch file should replay the Rosbag and show the mapping/localization process in Rviz. It's then up to you to tune the relevant parameters in `slam_tuner/config`. + +## Tuning Parameters +### `Cartographer` +#### Mapping +When mapping, edit the `f110_2d.lua` (for Mapping) or `f110_2d_loc.lua` (for Localization) file. + +Based on our trust on Odometry values: +- `TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight` +- `TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight` + +These weight the cost of rotating/translating incoming scans (from the odometry reference). If we trust our odometry, we can weight these values a little higher, but if not (our IMU and `vesc/odom` values aren't great at the moment) the default values are `0.2`. + +- `POSE_GRAPH.optimization_problem.odometry_rotation_weight` +- `POSE_GRAPH.optimization_problem.odometry_translation_weight` + +These weight how much the pose graph weights odometry (over scan matching). Similarly to above, but when performing localization of the car. Default values are `0`. + +Based on our trust of LIDAR scans: +- `TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.hit_probability` +`TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.miss_probability` + +These weight the probability of a hit or miss in the occupancy grid. +- Hit probability: The trust in cells where we get range data +- Miss probability: The trust in cells where we observe free space + +If we don't trust the lidar (eg. black tubes), we should reduce the miss probability (free space may mean undetected things). + +#### Localization +**Work In Progress** + +### `Particle Filter 2` +There are a few parameters to tune for PF2. + +- `max_particles`: The number of particles in PF. Do not increase to 4000, as something really wacky goes on with CPU usage past that point. Tested 2000-3000 and it was safe. + - Increasing the number of particles should improve the smoothness and accuracy of the pose estimate as there are more proposals. +- `max_range` : The maximum range to trust lidar scans. If encountering black tubes, then perhaps it is wise to tune this value lower. Else, trust the lidar datasheet. + +Sensor Model Parameters. + +- `z_hit`: Probability we hit intended target. +- `z_short`: Unexpected short reading. This could be turned up for H2H mode. +- `z_max`: out-of-range reading beyond `max_range`. This should be turned up for black tubes. +- `z_rand`: a reading anywhere in the valid range. + +Note that these values should sum to 1. + +Model Variances. + +- `sigma_hit`: standard deviation (m) of hitting intended target +- `lambda_short`: parameter of short-reading exponential distribution. Increase to make short readings more likely. + +Motion Model Parameters. Here are the TUM Motion Model equations: + +Where $d_{r1}$, $d_{r2}$ are the first and second rotation distances in the diff-drive model; and $d_t$ is the translation distance. Note that $a_2$ needs to be changed drastically if changing the Motion Model to "amcl". + +$\sigma_{r1} = a_1 * d_{r1} + a_2/max(d_t,\lambda_t)$ + +$\sigma_{r2} = a_1 * d_{r2} + a_2/max(d_t,\lambda_t)$ + +$\sigma_{t} = a_3 * d_{t} + a_4 * (d_{r1} + d_{r2})$ + +- `alpha_1`: How rotation affects rotation variance. + - Recommended to keep between (0.0, 1.0) +- `alpha_2`: How translation affects rotation variance. + - Recommended to keep between (0.0, 0.05) + - Coupled with `lam_thresh`: change these values in unison. +- `alpha_3`: How translation affects translation variance + - Recommended to keep between (0.0, 5.0) + - If facing localization problems at the end of the straight, think about increasing this. + - It will make particles spread out further longitudinally. +- `alpha_4`: How rotation affects translation variance + - Recommended to keep between (0.0, 1.0) +- `lam_thresh`: Minimum translation between frames for the TUM model to become effective. + - If this is set lower, then rotational variance will become higher, see the equation for $\sigma_{r1}$ above. + - Recommended to keep between(0.01, 0.2) + - Generally calculating $a_2/\lambda_t=0.2$ is a safe place to start. + +--- +### Trajectory comparison +Navigate to `slam_tuner/profiling/traj_cmp` and take a look at the `Comparison Index.txt` to compare the trajectories. Provisionally, the bags inside compare MIT PF, PF2, and Cartographer with the reference pose (what was recorded on the bag). An example is below. Replace the Bash variables with the relevant equivalents from `Comparison Index.txt` + +```bash +BAGNAME="pf_pf2_cartographer_v3_filt" +REF_POSE="/car_state/pose" +PF_POSE="/tracked_pose" +PF2_POSE="/tracked_pose/pf2" +CARTO_POSE="/tracked_pose/cartographer" +evo_traj bag $BAGNAME $PF_POSE $PF2_POSE $CARTO_POSE --ref $REF_POSE -p --plot_mode xy --verbose +``` + +## Profiling C++ ROS Nodes: +Follow the [profiling guide](http://wiki.ros.org/roslaunch/Tutorials/Profiling%20roslaunch%20nodes) on the ROS wiki: +- The C++ CMakeLists.txt has to be exposed to you: + - For Cartographer especially, we already have it; + - For `slam_toolbox` and `amcl`, we would need to clone the source code from Github and re-build from source with the necessary debug flags. + - Add the `-pg` flag -- see details in the guide. + +### Using `sysprof` +Sysprof is a *system-wide* profiler for Linux, and it's a general way to profile the different algorithms we use as part of our software stack. + +First, install `sysprof`: `sudo apt install sysprof`. + +Next, we can start to profile the system: +1. Source the latest version of the workspace. +2. Get a launchfile ready, for instance: + ```bash + launch_cmd="roslaunch slam_tuner tuner.launch bag:=hangar/hangar_240323_racerehearsal.bag loc_only:=False map_name:=hangar/hangar_240323_racerehearsal mapping_algo:=toolbox" + ``` +3. Start up the profiler. `sysprof` will ask you for sudo rights (it is a profiler after all). + ```bash + bash profiling/start_sysprof.bash "$launch_cmd" "$OUTFILE" + ``` + The bash script starts `sysprof` and starts the program to be profiled. +4. Kill the profiling bash script when you are happy (for example, after 30 seconds). +5. Open the `sysprof` GUI on your computer. Note that sudo is needed to do it directly. + ```bash + sudo sysprof $OUTFILE + ``` + Alternatively, just run `sysprof` and open up `OUTFILE` with `Ctrl+O`. +6. Enjoy a cool call graph and stack traced code. + +**! Note:** Sysprof profiles *everything* running on the system. So if you want the most accurate tests, close everything else running. + +**TODO** - isolate only the commands launched in `-c ...` for the Bash script. + +Alternatively, to get an isolated process outfile: +1. Start the launch file in question +2. Find the PID of the process you want to profile, eg. running `ps aux | grep "\.ros"` and reading off the PID +3. Run `sysprof-cli -p $PID --memprof $OUTFILE --force` + +### Using `gprof` +Add an tag just before each tag. The GMON_OUT_PREFIX environment variable specifies the output name for gprof, so it should be identical. +```xml + + + + +``` + +In this case, the ROS node will output the profiling output data to you ~/.ros/ directory with file named toolbox.[pid]. + +To analyse data, run `gprof ~/catkin_ws/devel/lib/slam_toolbox/async_slam_toolbox_node gmon.out`. The first argument is the executable and the second argument is the output dumped by `gmon`. + +### Using `valgrind` +**Valgrind makes the program quite slow, and I've not been able to get a replay working on rosbags using this method. Try it, but don't expect it to work.** + +Add the following code before the ROS node you wish to profile: +```xml + +``` + +A file will then be output in `~/.ros/` with the filename specified and the PID of the node. It can then be analysed with `kcachegrind`. + +--- +## Evaluating Localization algorithms + +### Data logs from runs +When `tuner.launch` is run, we also run a script called `reconstruction_error` (found in src). This is a slightly bad name, but this script basically records the localization performance for later use. + +After running the rosbag in `tuner.launch` (details at the top of the README), you will want to save the accumulated data for comparison. To do so, run the following in a **new terminal**: + +```bash +rostopic pub /create_plot std_msgs/Empty --once +``` + +This sends a message to the `reconstruction_error` node, telling it to dump the following files to `slam_tuner/profiling`: +- Three CSV files with format `(x, y, theta, timestep)`: + - Cartographer `tracked_pose` topic, if available + - The `Map->Base_link` TF transform + - The `Map->Odom` TF transform + - The `Odom->Base_link` TF transform +- A plot of trajectory histories of `Map->Base_link`, `Map->Odom`, and `Odom->Base_link` TF transforms +- One CSV file with format `(timestep, odom_x, odom_y, odom_theta, tf_x, tf_y, tf_theta)`. The TF values here are the `Map->Base_link` TF transform. +- A plot of localization error between the `Map->Base_link` TF transfom and the Odometry source. This would be helpful when we get a ground-truth odometry source, (eg. VICON system). + +These named `err_metrics__DDMMYY_HHMMSS_`. The filename should be obvious based on the above labels. + + +### Evaluating trajectories + +To evaluate trajectories, try running `profiling/metrics.py`. Note the relative import in the first few lines; you will need to adjust the include path manually. + +The script takes in a few variables: +- Paths to CSV files to be analysed +- Time interval to analyse (`START_TIME`, `END_TIME`) +- Etcetra. + +The "smoothness" metric can take a few options, and is still something TBD: +- `"SUM_SECOND_DERIVATIVE"`: Find the numerical second derivative of the `x` and `y` axes with respect to the timestamp `t` and report the sum of squared instantaneous second derivatives. +- `"SPLINE_DERIVATIVES"`: Fit a 5th order spline through sequential subsections of the data, and sum their squared second derivatives. + - Takes in two more parameters: + - `time_interval`: Duration of the entire spline (i.e. `END_TIME-START_TIME` as defined earlier) + - `dt`: Time step of sequential sections of data. + - This is because splines of order 5 sometimes are unable to fit the entire dataset well. +- `"SPLINE_DEVIATION"`: + - Similar to above, tries to fit a nth order spline through the datapoints, but the error metric is the squared deviation from the fitted spline. +- Anything else (Default argument): + - Angle smoothness metric (how the angle between successive data points changes, weighted by the distance of the edges). + +These metrics will then be plotted at the end of the script. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_2d.lua b/f110_utils/nodes/slam_tuner/config/f110_2d.lua new file mode 100644 index 0000000..bc04924 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_2d.lua @@ -0,0 +1,66 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + -- published_frame = "odom", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 4.0 -- crank it up! +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.1 + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 100 +POSE_GRAPH.optimize_every_n_nodes = 20 + +-- // How far we allow scan matcher to rotate/translate the scans +-- // Could think of it as "how much do we trust our odometry?" +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +-- // These weight the probability of a hit or miss in the occupancy grid. +-- // Hit probability: The trust in cells where we get range data +-- TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.hit_probability = 0.7 +-- // Miss probability: The trust in cells where we observe free space (reduce if black tubes) +-- TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.miss_probability = 0.4 + +-- // How much to trust odometry +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0.0 * POSE_GRAPH.optimization_problem.odometry_rotation_weight +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0.0 * POSE_GRAPH.optimization_problem.odometry_translation_weight + +-- // How much to trust local SLAM (scan matching) +-- POSE_GRAPH.optimization_problem.local_slam_pose_translation_weight = 0.0 * POSE_GRAPH.optimization_problem.local_slam_pose_translation_weight +-- POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight = 1.25 * POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight + +return options + diff --git a/f110_utils/nodes/slam_tuner/config/f110_2d_loc.lua b/f110_utils/nodes/slam_tuner/config/f110_2d_loc.lua new file mode 100644 index 0000000..9c48ae8 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_2d_loc.lua @@ -0,0 +1,72 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + -- published_frame = "odom", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, -- Setting this true will actually give REP105 compliance! + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 4.0 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.05 +TRAJECTORY_BUILDER.pure_localization_trimmer = { + max_submaps_to_keep = 5, +} + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 80 +POSE_GRAPH.optimize_every_n_nodes = 5 +POSE_GRAPH.global_sampling_ratio = 0.05 +POSE_GRAPH.constraint_builder.sampling_ratio = 0.05 + +-- // How far we allow scan matcher to rotate/translate the scans +-- // Could think of it as "how much do we trust our odometry?" +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +-- // These weight the probability of a hit or miss in the occupancy grid. +-- // Hit probability: The trust in cells where we get range data +-- TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.hit_probability = 0.3 +-- // Miss probability: The trust in cells where we observe free space (reduce if black tubes) +-- TRAJECTORY_BUILDER_2D.submaps.range_data_inserter.probability_grid_range_data_inserter.miss_probability = 0.4 + +-- // How much to trust odometry +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0.0 * POSE_GRAPH.optimization_problem.odometry_rotation_weight +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0.0 * POSE_GRAPH.optimization_problem.odometry_translation_weight + +-- // How much to trust local SLAM (scan matching) +POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight = 0.0 * POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight +POSE_GRAPH.optimization_problem.local_slam_pose_translation_weight = 0.0 * POSE_GRAPH.optimization_problem.local_slam_pose_translation_weight + + +return options + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/CMakeLists.txt b/f110_utils/nodes/slam_tuner/config/f110_description/CMakeLists.txt new file mode 100755 index 0000000..1ef2615 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/CMakeLists.txt @@ -0,0 +1,181 @@ +cmake_minimum_required(VERSION 2.8.3) +project(f110_description) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a run_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a run_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if you package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES racecar_description +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +# include_directories(include) + +## Declare a C++ library +# add_library(racecar_description +# src/${PROJECT_NAME}/racecar_description.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(racecar_description ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +# add_executable(racecar_description_node src/racecar_description_node.cpp) + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(racecar_description_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(racecar_description_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS racecar_description racecar_description_node +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_racecar_description.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.STL new file mode 100755 index 0000000..08b269e Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.dae new file mode 100755 index 0000000..0ac16c7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/chassis.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:50:44 2016 GMT + Tue Jan 19 19:50:44 2016 GMT + Y_UP + + + + + + -0.0384776 -0.0776537 0.03 -0.0276537 0.0884776 0.03 0.255 -0.07 0.03 0.242654 -0.0884776 0.03 0.363478 0.0476537 0.03 0.249142 0.0841421 0.03 0.242654 0.0884776 0.03 0.345 0.06 0.03 0.255 -0.06 0.03 0.345 -0.06 0.03 0.352654 -0.0584776 0.03 0.352654 -0.0584776 -0.03 0.345 -0.06 -0.03 0.363478 0.0476537 -0.03 -0.02 0.09 -0.03 0.255 -0.06 -0.03 -0.0384776 0.0776537 -0.03 -0.04 0.07 -0.03 0.242654 0.0884776 -0.03 0.359142 0.0541421 -0.03 0.352654 0.0584776 -0.03 0.235 -0.09 -0.03 0.253478 -0.0776537 -0.03 0.242654 -0.0884776 -0.03 -0.0341421 -0.0841421 -0.03 -0.0384776 -0.0776537 -0.03 -0.04 -0.07 -0.03 -0.02 -0.09 -0.03 0.255 0.06 -0.03 0.255 0.07 -0.03 0.235 0.09 -0.03 0.253478 0.0776537 -0.03 0.345 0.06 -0.03 -0.005 -0.09 0 -0.00433013 -0.09 0.0025 -0.02 -0.09 0.03 0 -0.09 0.005 0.0025 -0.09 0.00433013 0.235 -0.09 0.03 0.005 -0.09 0 0.00433013 -0.09 -0.0025 0.0025 -0.09 -0.00433013 0.365 0.04 -0.03 -0.04 0.07 0.03 -0.00433013 0.09 -0.0025 -0.005 0.09 6.93889e-18 -0.00433013 0.09 0.0025 0 0.09 -0.005 0.235 0.09 0.03 -0.02 0.09 0.03 0.0025 0.09 0.00433013 0 0.09 0.005 0.0025 0.09 -0.00433013 0.00433013 0.09 -0.0025 0.005 0.09 0 0.00433013 0.09 0.0025 0.32 0.06 3.46945e-18 0.3275 0.06 -0.00433013 0.33 0.06 0 0.255 0.06 0.03 0.32067 0.06 0.0025 0.32067 0.06 -0.0025 0.325 0.06 -0.005 0.33 -0.06 0 0.32933 -0.06 0.0025 0.32 -0.06 0 0.32067 -0.06 0.0025 0.3225 -0.06 0.00433013 0.3275 -0.06 0.00433013 0.325 -0.06 -0.005 -0.0384776 0.0776537 0.03 -0.0341421 0.0841421 0.03 -0.0341421 0.0841421 -0.03 -0.0276537 0.0884776 -0.03 -0.04 -0.07 0.03 -0.0341421 -0.0841421 0.03 -0.0276537 -0.0884776 -0.03 -0.0276537 -0.0884776 0.03 0.249142 -0.0841421 -0.03 0.249142 -0.0841421 0.03 0.253478 -0.0776537 0.03 0.255 -0.07 -0.03 0.359142 -0.0541421 0.03 0.359142 -0.0541421 -0.03 0.363478 -0.0476537 -0.03 0.363478 -0.0476537 0.03 0.365 -0.04 -0.03 0.365 -0.04 0.03 0.352654 0.0584776 0.03 0.359142 0.0541421 0.03 0.365 0.04 0.03 0.255 0.07 0.03 0.253478 0.0776537 0.03 0.249142 0.0841421 -0.03 -0.00433013 0.1 0.0025 6.12323e-19 0.1 0.005 0.0025 0.1 0.00433013 -0.00433013 0.1 -0.0025 0.00433013 0.1 -0.0025 0.0025 0.1 -0.00433013 0.00433013 0.1 0.0025 0 0.1 0 0.005 0.1 -1.41638e-18 0.005 0.09 -1.41638e-18 2.83277e-18 0.09 0.005 2.83277e-18 0.1 0.005 -0.0025 0.1 0.00433013 -0.0025 0.09 0.00433013 -0.005 0.1 5.35938e-18 -0.005 0.09 5.35938e-18 -0.0025 0.1 -0.00433013 -0.0025 0.09 -0.00433013 0 0.1 -0.005 0.0025 -0.1 -0.00433013 0.00433013 -0.1 -0.0025 0.005 -0.09 -1.41638e-18 0.00433013 -0.09 0.0025 0.0025 -0.1 0.00433013 2.83277e-18 -0.09 0.005 2.83277e-18 -0.1 0.005 -0.0025 -0.09 0.00433013 -0.005 -0.09 5.35938e-18 -0.00433013 -0.09 -0.0025 -0.005 -0.1 5.35938e-18 -0.0025 -0.09 -0.00433013 0 -0.09 -0.005 1.83697e-18 -0.1 0.005 -0.0025 -0.1 0.00433013 0.005 -0.1 -1.41638e-18 0 -0.1 0 0.00433013 -0.1 0.0025 -0.00433013 -0.1 -0.0025 -0.0025 -0.1 -0.00433013 0 -0.1 -0.005 -0.00433013 -0.1 0.0025 0.3275 -0.1 0.00433013 0.3275 -0.1 -0.00433013 0.32933 -0.1 0.0025 0.3225 -0.1 -0.00433013 0.325 -0.1 0 0.32067 -0.1 0.0025 0.32 -0.1 5.35938e-18 0.3275 -0.06 -0.00433013 0.32933 -0.06 -0.0025 0.32933 -0.1 -0.0025 0.33 -0.06 -1.41638e-18 0.33 -0.1 -1.41638e-18 0.325 -0.06 0.005 0.325 -0.1 0.005 0.3225 -0.1 0.00433013 0.32 -0.06 5.35938e-18 0.32067 -0.06 -0.0025 0.3225 -0.06 -0.00433013 0.32067 -0.1 -0.0025 0.325 -0.1 -0.005 0.32933 0.06 -0.0025 0.33 0.06 -1.41638e-18 0.32933 0.06 0.0025 0.32933 0.1 0.0025 0.3275 0.1 0.00433013 0.3275 0.06 0.00433013 0.325 0.06 0.005 0.3225 0.1 0.00433013 0.3225 0.06 0.00433013 0.32 0.06 5.35938e-18 0.32067 0.1 -0.0025 0.3225 0.06 -0.00433013 0.3225 0.1 -0.00433013 0.3275 0.1 -0.00433013 0.325 0.1 0.005 0.325 0.1 0 0.32 0.1 5.35938e-18 0.32067 0.1 0.0025 0.32933 0.1 -0.0025 0.325 0.1 -0.005 0.33 0.1 -1.41638e-18 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.980785 0.19509 0 -0.980785 0.19509 0 -0.83147 0.55557 0 -0.83147 0.55557 0 -0.55557 0.83147 0 -0.55557 0.83147 0 -0.195091 0.980785 0 -0.195091 0.980785 0 -0.980785 -0.19509 0 -0.980785 -0.19509 0 -0.83147 -0.55557 0 -0.83147 -0.55557 0 -0.55557 -0.83147 0 -0.55557 -0.83147 0 -0.195091 -0.980785 0 -0.195091 -0.980785 0 0.195091 -0.980785 0 0.195091 -0.980785 0 0.55557 -0.83147 0 0.55557 -0.83147 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980786 -0.195088 0 0.980786 -0.195088 0 0.19509 -0.980785 0 0.19509 -0.980785 0 0.555572 -0.831469 0 0.555572 -0.831469 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980785 -0.195092 0 0.980785 -0.195092 0 0.19509 0.980785 0 0.19509 0.980785 0 0.555572 0.831469 0 0.555572 0.831469 0 0.831469 0.555571 0 0.831469 0.555571 0 0.980785 0.195092 0 0.980785 0.195092 0 0.980786 0.195088 0 0.980786 0.195088 0 0.831469 0.555571 0 0.831469 0.555571 0 0.55557 0.83147 0 0.55557 0.83147 0 0.195091 0.980785 0 0.195091 0.980785 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 + + + + + + + + + + + + + + + + +

79 79 0 80 80 0 2 2 0 74 74 1 2 2 1 43 43 1 43 43 2 2 2 2 8 8 2 87 87 3 90 90 3 7 7 3 74 74 4 0 0 4 75 75 4 79 79 5 2 2 5 3 3 5 70 70 6 43 43 6 71 71 6 71 71 7 43 43 7 8 8 7 71 71 8 8 8 8 1 1 8 1 1 9 8 8 9 49 49 9 75 75 10 77 77 10 74 74 10 74 74 11 77 77 11 35 35 11 74 74 12 35 35 12 2 2 12 2 2 13 35 35 13 38 38 13 2 2 14 38 38 14 3 3 14 88 88 15 7 7 15 89 89 15 89 89 16 7 7 16 90 90 16 89 89 17 90 90 17 4 4 17 5 5 18 6 6 18 92 92 18 92 92 19 6 6 19 48 48 19 92 92 20 48 48 20 91 91 20 91 91 21 48 48 21 49 49 21 91 91 22 49 49 22 59 59 22 59 59 23 49 49 23 8 8 23 59 59 24 8 8 24 7 7 24 7 7 25 8 8 25 9 9 25 7 7 26 9 9 26 87 87 26 87 87 27 9 9 27 10 10 27 87 87 28 10 10 28 85 85 28 85 85 29 10 10 29 82 82 29 83 83 30 11 11 30 12 12 30 28 28 31 32 32 31 12 12 31 19 19 32 13 13 32 42 42 32 81 81 33 21 21 33 15 15 33 15 15 34 21 21 34 26 26 34 15 15 35 26 26 35 17 17 35 73 73 36 14 14 36 72 72 36 72 72 37 14 14 37 15 15 37 72 72 38 15 15 38 16 16 38 16 16 39 15 15 39 17 17 39 30 30 40 18 18 40 93 93 40 19 19 41 42 42 41 20 20 41 81 81 42 22 22 42 21 21 42 21 21 43 22 22 43 78 78 43 21 21 44 78 78 44 23 23 44 24 24 45 25 25 45 76 76 45 76 76 46 25 25 46 26 26 46 76 76 47 26 26 47 27 27 47 27 27 48 26 26 48 21 21 48 12 12 49 15 15 49 28 28 49 28 28 50 15 15 50 14 14 50 28 28 51 14 14 51 29 29 51 29 29 52 14 14 52 30 30 52 29 29 53 30 30 53 31 31 53 31 31 54 30 30 54 93 93 54 84 84 55 83 83 55 86 86 55 86 86 56 83 83 56 12 12 56 86 86 57 12 12 57 42 42 57 42 42 58 12 12 58 32 32 58 42 42 59 32 32 59 20 20 59 21 21 60 41 41 60 27 27 60 27 27 61 41 41 61 125 125 61 27 27 62 125 125 62 124 124 62 124 124 63 122 122 63 27 27 63 27 27 64 122 122 64 33 33 64 27 27 65 33 33 65 35 35 65 35 35 66 33 33 66 34 34 66 34 34 67 120 120 67 35 35 67 35 35 68 120 120 68 36 36 68 35 35 69 36 36 69 38 38 69 38 38 70 36 36 70 37 37 70 37 37 71 116 116 71 38 38 71 38 38 72 116 116 72 39 39 72 38 38 73 39 39 73 21 21 73 21 21 74 39 39 74 40 40 74 21 21 75 40 40 75 41 41 75 86 86 76 42 42 76 87 87 76 87 87 77 42 42 77 90 90 77 17 17 78 26 26 78 43 43 78 43 43 79 26 26 79 74 74 79 44 44 80 14 14 80 45 45 80 45 45 81 14 14 81 49 49 81 45 45 82 49 49 82 46 46 82 46 46 83 49 49 83 107 107 83 52 52 84 30 30 84 47 47 84 47 47 85 30 30 85 14 14 85 47 47 86 14 14 86 111 111 86 111 111 87 14 14 87 44 44 87 48 48 88 50 50 88 49 49 88 49 49 89 50 50 89 51 51 89 49 49 90 51 51 90 107 107 90 52 52 91 53 53 91 30 30 91 30 30 92 53 53 92 54 54 92 30 30 93 54 54 93 48 48 93 48 48 94 54 54 94 55 55 94 48 48 95 55 55 95 50 50 95 60 60 96 56 56 96 59 59 96 59 59 97 56 56 97 28 28 97 57 57 98 155 155 98 32 32 98 32 32 99 155 155 99 58 58 99 32 32 100 58 58 100 7 7 100 7 7 101 58 58 101 157 157 101 157 157 102 160 160 102 7 7 102 7 7 103 160 160 103 161 161 103 7 7 104 161 161 104 59 59 104 59 59 105 161 161 105 163 163 105 59 59 106 163 163 106 60 60 106 56 56 107 61 61 107 28 28 107 28 28 108 61 61 108 166 166 108 28 28 109 166 166 109 32 32 109 32 32 110 166 166 110 62 62 110 32 32 111 62 62 111 57 57 111 91 91 112 59 59 112 29 29 112 29 29 113 59 59 113 28 28 113 81 81 114 15 15 114 2 2 114 2 2 115 15 15 115 8 8 115 65 65 116 8 8 116 151 151 116 151 151 117 8 8 117 15 15 117 143 143 118 12 12 118 63 63 118 63 63 119 12 12 119 9 9 119 63 63 120 9 9 120 64 64 120 64 64 121 9 9 121 68 68 121 65 65 122 66 66 122 8 8 122 8 8 123 66 66 123 67 67 123 8 8 124 67 67 124 9 9 124 9 9 125 67 67 125 147 147 125 9 9 126 147 147 126 68 68 126 143 143 127 142 142 127 12 12 127 12 12 128 142 142 128 69 69 128 12 12 129 69 69 129 15 15 129 15 15 130 69 69 130 152 152 130 15 15 131 152 152 131 151 151 131 17 17 132 43 43 132 70 70 132 17 17 133 70 70 133 16 16 133 16 16 134 70 70 134 71 71 134 16 16 135 71 71 135 72 72 135 72 72 136 71 71 136 1 1 136 72 72 137 1 1 137 73 73 137 73 73 138 1 1 138 49 49 138 73 73 139 49 49 139 14 14 139 74 74 140 26 26 140 25 25 140 74 74 141 25 25 141 0 0 141 0 0 142 25 25 142 24 24 142 0 0 143 24 24 143 75 75 143 75 75 144 24 24 144 76 76 144 75 75 145 76 76 145 77 77 145 77 77 146 76 76 146 27 27 146 77 77 147 27 27 147 35 35 147 38 38 148 21 21 148 23 23 148 38 38 149 23 23 149 3 3 149 3 3 150 23 23 150 78 78 150 3 3 151 78 78 151 79 79 151 79 79 152 78 78 152 22 22 152 79 79 153 22 22 153 80 80 153 80 80 154 22 22 154 81 81 154 80 80 155 81 81 155 2 2 155 9 9 156 12 12 156 11 11 156 9 9 157 11 11 157 10 10 157 10 10 158 11 11 158 83 83 158 10 10 159 83 83 159 82 82 159 82 82 160 83 83 160 84 84 160 82 82 161 84 84 161 85 85 161 85 85 162 84 84 162 86 86 162 85 85 163 86 86 163 87 87 163 32 32 164 7 7 164 88 88 164 32 32 165 88 88 165 20 20 165 20 20 166 88 88 166 89 89 166 20 20 167 89 89 167 19 19 167 19 19 168 89 89 168 4 4 168 19 19 169 4 4 169 13 13 169 13 13 170 4 4 170 90 90 170 13 13 171 90 90 171 42 42 171 91 91 172 29 29 172 31 31 172 91 91 173 31 31 173 92 92 173 92 92 174 31 31 174 93 93 174 92 92 175 93 93 175 5 5 175 5 5 176 93 93 176 18 18 176 5 5 177 18 18 177 6 6 177 6 6 178 18 18 178 30 30 178 6 6 179 30 30 179 48 48 179 94 94 180 106 106 180 101 101 180 101 101 181 106 106 181 95 95 181 101 101 182 95 95 182 96 96 182 110 110 183 97 97 183 101 101 183 101 101 184 97 97 184 108 108 184 101 101 185 108 108 185 94 94 185 98 98 186 99 99 186 101 101 186 101 101 187 99 99 187 112 112 187 101 101 188 112 112 188 110 110 188 96 96 189 100 100 189 101 101 189 101 101 190 100 100 190 102 102 190 101 101 191 102 102 191 98 98 191 47 47 192 99 99 192 52 52 192 52 52 193 99 99 193 98 98 193 52 52 194 98 98 194 53 53 194 53 53 195 98 98 195 102 102 195 53 53 196 102 102 196 103 103 196 103 103 197 102 102 197 100 100 197 103 103 198 100 100 198 55 55 198 55 55 199 100 100 199 96 96 199 55 55 200 96 96 200 50 50 200 50 50 201 96 96 201 105 105 201 50 50 202 105 105 202 104 104 202 104 104 203 105 105 203 106 106 203 104 104 204 106 106 204 107 107 204 107 107 205 106 106 205 94 94 205 107 107 206 94 94 206 46 46 206 46 46 207 94 94 207 108 108 207 46 46 208 108 108 208 109 109 208 109 109 209 108 108 209 97 97 209 109 109 210 97 97 210 44 44 210 44 44 211 97 97 211 110 110 211 44 44 212 110 110 212 111 111 212 111 111 213 110 110 213 112 112 213 111 111 214 112 112 214 47 47 214 47 47 215 112 112 215 99 99 215 133 133 216 41 41 216 113 113 216 113 113 217 41 41 217 40 40 217 113 113 218 40 40 218 114 114 218 114 114 219 40 40 219 115 115 219 114 114 220 115 115 220 128 128 220 128 128 221 115 115 221 116 116 221 128 128 222 116 116 222 130 130 222 130 130 223 116 116 223 37 37 223 130 130 224 37 37 224 117 117 224 117 117 225 37 37 225 118 118 225 117 117 226 118 118 226 119 119 226 119 119 227 118 118 227 120 120 227 119 119 228 120 120 228 127 127 228 127 127 229 120 120 229 34 34 229 127 127 230 34 34 230 134 134 230 134 134 231 34 34 231 121 121 231 134 134 232 121 121 232 123 123 232 123 123 233 121 121 233 122 122 233 123 123 234 122 122 234 131 131 234 131 131 235 122 122 235 124 124 235 131 131 236 124 124 236 132 132 236 132 132 237 124 124 237 125 125 237 132 132 238 125 125 238 133 133 238 133 133 239 125 125 239 41 41 239 130 130 240 117 117 240 129 129 240 129 129 241 117 117 241 126 126 241 129 129 242 126 126 242 127 127 242 113 113 243 114 114 243 129 129 243 129 129 244 114 114 244 128 128 244 129 129 245 128 128 245 130 130 245 131 131 246 132 132 246 129 129 246 129 129 247 132 132 247 133 133 247 129 129 248 133 133 248 113 113 248 127 127 249 134 134 249 129 129 249 129 129 250 134 134 250 123 123 250 129 129 251 123 123 251 131 131 251 137 137 252 135 135 252 139 139 252 139 139 253 135 135 253 148 148 253 139 139 254 148 148 254 149 149 254 136 136 255 144 144 255 139 139 255 139 139 256 144 144 256 146 146 256 139 139 257 146 146 257 137 137 257 153 153 258 138 138 258 139 139 258 139 139 259 138 138 259 154 154 259 139 139 260 154 154 260 136 136 260 149 149 261 140 140 261 139 139 261 139 139 262 140 140 262 141 141 262 139 139 263 141 141 263 153 153 263 154 154 264 142 142 264 136 136 264 136 136 265 142 142 265 143 143 265 136 136 266 143 143 266 144 144 266 144 144 267 143 143 267 145 145 267 144 144 268 145 145 268 146 146 268 146 146 269 145 145 269 64 64 269 146 146 270 64 64 270 137 137 270 137 137 271 64 64 271 68 68 271 137 137 272 68 68 272 135 135 272 135 135 273 68 68 273 147 147 273 135 135 274 147 147 274 148 148 274 148 148 275 147 147 275 67 67 275 148 148 276 67 67 276 149 149 276 149 149 277 67 67 277 66 66 277 149 149 278 66 66 278 140 140 278 140 140 279 66 66 279 150 150 279 140 140 280 150 150 280 141 141 280 141 141 281 150 150 281 151 151 281 141 141 282 151 151 282 153 153 282 153 153 283 151 151 283 152 152 283 153 153 284 152 152 284 138 138 284 138 138 285 152 152 285 69 69 285 138 138 286 69 69 286 154 154 286 154 154 287 69 69 287 142 142 287 62 62 288 168 168 288 57 57 288 57 57 289 168 168 289 173 173 289 57 57 290 173 173 290 155 155 290 155 155 291 173 173 291 175 175 291 155 155 292 175 175 292 156 156 292 156 156 293 175 175 293 158 158 293 156 156 294 158 158 294 157 157 294 157 157 295 158 158 295 159 159 295 157 157 296 159 159 296 160 160 296 160 160 297 159 159 297 169 169 297 160 160 298 169 169 298 161 161 298 161 161 299 169 169 299 162 162 299 161 161 300 162 162 300 163 163 300 163 163 301 162 162 301 172 172 301 163 163 302 172 172 302 60 60 302 60 60 303 172 172 303 171 171 303 60 60 304 171 171 304 164 164 304 164 164 305 171 171 305 165 165 305 164 164 306 165 165 306 61 61 306 61 61 307 165 165 307 167 167 307 61 61 308 167 167 308 166 166 308 166 166 309 167 167 309 174 174 309 166 166 310 174 174 310 62 62 310 62 62 311 174 174 311 168 168 311 172 172 312 162 162 312 170 170 312 170 170 313 162 162 313 169 169 313 170 170 314 169 169 314 159 159 314 167 167 315 165 165 315 170 170 315 170 170 316 165 165 316 171 171 316 170 170 317 171 171 317 172 172 317 173 173 318 168 168 318 170 170 318 170 170 319 168 168 319 174 174 319 170 170 320 174 174 320 167 167 320 159 159 321 158 158 321 170 170 321 170 170 322 158 158 322 175 175 322 170 170 323 175 175 323 173 173 323

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/cone.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/cone.dae new file mode 100755 index 0000000..7b0fa99 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/cone.dae @@ -0,0 +1,123 @@ + + + + + SketchUp 15.3.331 + + 2016-03-10T00:21:04Z + 2016-03-10T00:21:04Z + + Z_UP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.952756 2.952756 0 -2.952756 -2.952756 0 -2.952756 2.952756 0 2.952756 -2.952756 0 -2.952756 2.952756 0.1968504 2.952756 2.952756 0 -2.952756 2.952756 0 2.952756 2.952756 0.1968504 2.952756 2.952756 0 2.952756 -2.952756 0.1968504 2.952756 -2.952756 0 2.952756 2.952756 0.1968504 2.952756 -2.952756 0.1968504 -2.952756 -2.952756 0 2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0.1968504 -2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0 -2.952756 -2.952756 0.1968504 -2.362205 0 0.1968504 -2.952756 2.952756 0.1968504 -2.045729 -1.181102 0.1968504 -1.181102 -2.045729 0.1968504 4.440892e-016 -2.362205 0.1968504 2.952756 -2.952756 0.1968504 1.181102 -2.045729 0.1968504 2.045729 -1.181102 0.1968504 2.362205 4.440892e-016 0.1968504 0 2.362205 0.1968504 2.952756 2.952756 0.1968504 -1.181102 2.045729 0.1968504 -2.045729 1.181102 0.1968504 1.181102 2.045729 0.1968504 2.045729 1.181102 0.1968504 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23 23 20 24 24 20 25 25 20 26 25 26 27 27 26 28 28 26 29 22 30 31 30 22 32 32 22 33 33 22 21 31 30 34 31 34 35 31 35 29 31 29 26

+
+
+
+ + + + -2.045729 1.181102 0.1968504 -2.362205 0 0.1968504 0 0 6.692913 -2.045729 -1.181102 0.1968504 0 0 6.692913 -1.181102 2.045729 0.1968504 0 0 6.692913 0 0 6.692913 -1.181102 -2.045729 0.1968504 0 0 6.692913 0 2.362205 0.1968504 0 0 6.692913 4.440892e-016 -2.362205 0.1968504 0 0 6.692913 1.181102 2.045729 0.1968504 0 0 6.692913 1.181102 -2.045729 0.1968504 0 0 6.692913 2.045729 1.181102 0.1968504 0 0 6.692913 2.045729 -1.181102 0.1968504 0 0 6.692913 2.362205 4.440892e-016 0.1968504 0 0 6.692913 + + + + + + + + + + -0.813885 0.4698967 0.3417431 -0.9397934 -3.08962e-016 0.3417431 -0.9113426 0.2441935 0.3313973 -0.813885 -0.4698967 0.3417431 -0.9113426 -0.2441935 0.3313973 -0.4698967 0.813885 0.3417431 -0.6671491 0.6671491 0.3313973 -0.6671491 -0.6671491 0.3313973 -0.4698967 -0.813885 0.3417431 -0.2441935 0.9113426 0.3313973 -1.737911e-016 0.9397934 0.3417431 -0.2441935 -0.9113426 0.3313973 2.317215e-016 -0.9397934 0.3417431 0.2441935 0.9113426 0.3313973 0.4698967 0.813885 0.3417431 0.2441935 -0.9113426 0.3313973 0.4698967 -0.813885 0.3417431 0.6671491 0.6671491 0.3313973 0.813885 0.4698967 0.3417431 0.6671491 -0.6671491 0.3313973 0.813885 -0.4698967 0.3417431 0.9113426 0.2441935 0.3313973 0.9397934 -2.896519e-016 0.3417431 0.9113426 -0.2441935 0.3313973 + + + + + + + + + + + + + + +

0 1 2 1 3 4 5 0 6 7 3 8 9 10 5 11 8 12 13 14 10 15 12 16 17 18 14 19 16 20 18 21 22 22 23 20

+
+
+
+
+ + + + + + + + + + + + 0.7529412 0.3764706 0.0627451 1 + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/hokuyo.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/hokuyo.dae new file mode 100755 index 0000000..bc65151 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/hokuyo.dae @@ -0,0 +1,253 @@ + + + + + Blender User + Blender 2.64.0 r51232 + + 2013-03-22T08:19:53 + 2013-03-22T08:19:53 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 0 + 1 + 1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 45 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.020312 0.020312 0.020312 1 + + + 0.25 0.25 0.25 1 + + + 12 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.695112 0.695112 0.695112 1 + + + 0.0625 0.0625 0.0625 1 + + + 0 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + + + + + + + + + -0.02213996 0.005949974 -0.004869997 -0.02213996 0.005949974 0.004869997 -0.02164 0.009949982 -0.004999995 -0.02164 0.009949982 -0.005999982 -0.02164 0.009949982 0.004999995 -0.02164 0.009949982 0.005999982 -0.02149999 0.009949982 -0.006499946 -0.02149999 0.009949982 0.006499946 -0.02113997 0.009949982 -0.006869971 -0.02113997 0.009949982 0.006869971 -0.02063995 0.005949974 0.006999969 -0.02063995 0.009949982 -0.006999969 -0.02063995 0.009949982 0.006999969 -0.01979994 0.009949982 -0.006999969 -0.01979994 0.005949974 -0.006999969 -0.01979994 0.005949974 0.006999969 -0.01979994 0.009949982 0.006999969 -0.01838999 0.005949974 0.01014 -0.02063995 0.005949974 -0.006999969 -0.02113997 0.005949974 0.006869971 -0.02113997 0.005949974 -0.006869971 -0.02149999 0.005949974 0.006499946 -0.02149999 0.005949974 -0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02164 0.005949974 -0.004999995 -0.02164 0.005949974 -0.005999982 -0.01920998 0.01990997 0.004999995 -0.01920998 0.01990997 -0.004999995 -0.005279958 0.02695 -0.01798999 -0.009719967 0.02695 -0.01595997 -0.01014 0.02695 -0.01576995 -0.01365 0.02695 -0.01273 -0.01416999 0.02695 -0.01227998 -0.01655995 0.02695 -0.008569955 -0.01705998 0.02695 -0.007789969 -0.01822996 0.02695 -0.003779947 -0.01855999 0.02695 -0.00266999 -0.01855999 0.02695 0.00127995 -0.01855999 0.02695 0.00266999 -0.01750999 0.02695 0.006229996 -0.01705998 0.02695 0.007789969 -0.01516997 0.02695 0.01071995 -0.01416999 0.02695 0.01227998 -0.01170998 0.02695 0.01440995 -0.01014 0.02695 0.01576995 -0.007389962 0.02695 0.01703 -0.005279958 0.02695 0.01798999 -0.002529978 0.02695 0.01838999 0 0.02695 0.01874995 0.002529978 0.02695 0.01838999 0.005279958 0.02695 0.01798999 0.007389962 0.02695 0.01703 0.01014 0.02695 0.01576995 0.01170998 0.02695 0.01440995 0.01416999 0.02695 0.01227998 0.01516997 0.02695 0.01071995 0.01705998 0.02695 0.007789969 0.01750999 0.02695 0.006229996 0.01855999 0.02695 0.00266999 0.01855999 0.02695 0.00127995 0.01855999 0.02695 -0.00266999 0.01822996 0.02695 -0.003779947 0.01705998 0.02695 -0.007789969 0.01655995 0.02695 -0.008569955 0.01416999 0.02695 -0.01227998 0.01365 0.02695 -0.01273 0.01014 0.02695 -0.01576995 0.009719967 0.02695 -0.01595997 0.005279958 0.02695 -0.01798999 0.005049943 0.02695 -0.01801997 -0.005049943 0.02695 -0.01801997 0 0.02695 -0.01874995 -0.01885998 0.02594995 0.001289963 -0.01850998 0.02594995 -0.003849983 -0.02039998 0.009949982 -0.004999995 -0.02039998 0.009949982 0.004999995 -0.01848 0.02594995 0.003999948 -0.01836997 0.02572995 0.004629969 -0.01840996 0.02588999 0.004329979 -0.01838999 0.02579998 0.004489958 -0.01835 0.02544999 0.004859983 -0.01838999 0.02494996 0.004999995 -0.01835995 0.02517998 0.004969954 -0.02164 0.02494996 0.004999995 -0.02164 0.02544999 0.004869997 -0.02188998 0.02537995 0.004869997 -0.02206999 0.02519994 0.004869997 -0.02213996 0.02494996 0.004869997 -0.02164 0.02581995 0.004499971 -0.02206999 0.02569997 0.004499971 -0.02238994 0.02537995 0.004499971 -0.02249997 0.02494996 0.004499971 -0.02164 0.02594995 0.003999948 -0.02213996 0.02581995 0.003999948 -0.02263998 0.02494996 0.003999948 -0.02249997 0.02544999 0.003999948 -0.02213996 0.02581995 -0.003999948 -0.02249997 0.02544999 -0.003999948 -0.02263998 0.02494996 -0.003999948 -0.02206999 0.02569997 -0.004499971 -0.02188998 0.02537995 -0.004869997 -0.02238994 0.02537995 -0.004499971 -0.02249997 0.02494996 -0.004499971 -0.02206999 0.02519994 -0.004869997 -0.02213996 0.02494996 -0.004869997 -0.01838999 0.02494996 -0.004999995 -0.02164 0.02494996 -0.004999995 -0.01835 0.02555996 -0.004789948 -0.01835995 0.02526998 -0.004949986 -0.01835 0.02543997 -0.00484997 -0.01836997 0.02577996 -0.004559993 -0.02164 0.02544999 -0.004869997 -0.02164 0.02581995 -0.004499971 -0.01848 0.02594995 -0.003999948 -0.02164 0.02594995 -0.003999948 -0.01841998 0.02590996 -0.004269957 -0.02001994 0.01871997 -0.004999995 -0.01986998 0.01879996 -0.004999995 -0.02025997 0.01844996 -0.004999995 -0.02039998 0.01794999 -0.004999995 -0.02037996 0.01813995 -0.004999995 -0.02039998 0.01794999 0.004999995 -0.02033996 0.01826995 0.004999995 -0.01993995 0.01877999 0.004999995 -0.01936 0.01894998 0.004999995 -0.01962 0.01892 0.004999995 -0.01879996 0.01894998 0.006679952 -0.01845997 0.01894998 0.007699966 -0.01936 0.01894998 -0.004999995 -0.01971 0.01888996 -0.004999995 -0.01845997 0.01894998 -0.007699966 -0.01668 0.01894998 -0.01102995 -0.01141995 0.01894998 -0.01641994 -7.8e-4 0.01894998 -0.01997995 0 0.01894998 -0.01993995 0.002989947 0.01894998 -0.01976996 0.01315999 0.01894998 -0.01505994 0.01454997 0.01894998 -0.01358997 0.01576 0.01894998 -0.01230996 0.01990997 0.01894998 0.001369953 0.01990997 0.01894998 -0.001889944 0.01919996 0.01894998 0.005609989 0.01779997 0.01894998 0.009119987 0.00792998 0.01894998 0.01826995 0.01008999 0.01894998 0.01726996 -0.007959961 0.01894998 0.01832997 -0.004529953 0.01894998 0.01947999 -0.01668 0.01894998 0.01102995 -0.01892 0.01881998 0.007889986 -0.02024996 0.01843994 0.004999995 -0.02017998 0.01855999 0.004999995 -0.00812 0.01894998 -0.01827996 0.006659984 0.01894998 -0.01885998 0.01576 0.01894998 0.01230996 0.002989947 0.01894998 0.01976996 0.002719998 0.01894998 0.01978999 -0.01141995 0.01894998 0.01641994 -0.01256996 0.01894998 0.01545 -0.01767998 0.01894998 -0.009159982 -0.01892 0.01881998 -0.007889986 -0.01937997 0.01794999 -0.008079946 -0.01830995 0.01794999 -0.01009994 -0.01925998 0.01844996 -0.008029997 -0.01458996 0.01894998 -0.01362997 -0.01709997 0.01881998 -0.01130998 -0.01750999 0.01794999 -0.01159 -0.0151 0.01794999 -0.01457995 -0.01739996 0.01844996 -0.01150995 -0.01431 0.01894998 -0.01397997 -0.01466 0.01881998 -0.01432996 -0.01501995 0.01794999 -0.01467996 -0.01491999 0.01844996 -0.01457995 -0.01034998 0.01894998 -0.01701998 -0.008319973 0.01881998 -0.01872998 -0.01169997 0.01881998 -0.01682996 -0.01198995 0.01794999 -0.01723998 -0.01190996 0.01844996 -0.01712995 -8.2e-4 0.01794999 -0.02098 -0.004759967 0.01794999 -0.02044999 -0.004729986 0.01844996 -0.02031999 -0.005689978 0.01794999 -0.02013999 -0.01073998 0.01794999 -0.01794999 -0.008529961 0.01794999 -0.01918995 -0.008469998 0.01844996 -0.01906996 -2.5e-4 0.01794999 -0.02094995 -8.2e-4 0.01844996 -0.02085 -8.1e-4 0.01881998 -0.02047997 -0.005379974 0.01894998 -0.01919996 -0.004649996 0.01881998 -0.01996999 -0.004529953 0.01894998 -0.01947999 0.005379974 0.01894998 -0.01917999 0.006829977 0.01881998 -0.01932996 0.003069996 0.01881998 -0.02026998 0.003139972 0.01794999 -0.02075999 0.003119945 0.01844996 -0.02063 0.01381999 0.01794999 -0.01580995 0.01059997 0.01794999 -0.01813 0.01052999 0.01844996 -0.01800996 0.01034998 0.01794999 -0.01824998 0.005209982 0.01794999 -0.02024996 0.006989955 0.01794999 -0.01979994 0.006949961 0.01844996 -0.01966995 0.01469999 0.01794999 -0.01488 0.01372998 0.01844996 -0.01570999 0.01348996 0.01881998 -0.01542997 0.01008999 0.01894998 -0.01726996 0.01034998 0.01881998 -0.01769995 0.01036995 0.01894998 -0.01705998 0.01774996 0.01894998 -0.009199976 0.01823997 0.01881998 -0.009349942 0.01615995 0.01881998 -0.01261997 0.01655 0.01794999 -0.01291996 0.01644998 0.01844996 -0.01283997 0.02090996 0.01794999 -0.00198996 0.02023994 0.01794999 -0.005469977 0.02002996 0.01844996 -0.005849957 0.02015995 0.01794999 -0.005889952 0.01807999 0.01794999 -0.01052999 0.01868999 0.01794999 -0.009579956 0.01857 0.01844996 -0.009519994 0.02090996 0.01794999 0 0.02076995 0.01844996 -0.001969993 0.02041 0.01881998 -0.001939952 0.01919996 0.01894998 -0.005609989 0.01967996 0.01881998 -0.00575 0.01949995 0.01894998 -0.004049956 0.01990997 0.01894998 0.001889944 0.02041 0.01881998 0.001939952 0.02090996 0.01794999 0.00198996 0.02023994 0.01794999 0.005469977 0.02076995 0.01844996 0.001969993 0.01876997 0.01894998 0.006669998 0.01967996 0.01881998 0.00575 0.02015995 0.01794999 0.005889952 0.02002996 0.01844996 0.005849957 0.01627999 0.01894998 0.0115 0.01615995 0.01881998 0.01261997 0.01823997 0.01881998 0.009349942 0.01868999 0.01794999 0.009579956 0.01857 0.01844996 0.009519994 0.01059997 0.01794999 0.01813 0.01381999 0.01794999 0.01580995 0.01372998 0.01844996 0.01570999 0.01469999 0.01794999 0.01488 0.01807999 0.01794999 0.01052999 0.01655 0.01794999 0.01291996 0.01644998 0.01844996 0.01283997 0.01034998 0.01794999 0.01824998 0.01052999 0.01844996 0.01800996 0.01034998 0.01881998 0.01769995 0.01315999 0.01894998 0.01505994 0.01348996 0.01881998 0.01542997 0.01258999 0.01894998 0.01546996 0.006659984 0.01894998 0.01885998 0.003069996 0.01881998 0.02026998 0.006829977 0.01881998 0.01932996 0.006989955 0.01794999 0.01979994 0.006949961 0.01844996 0.01966995 -0.004759967 0.01794999 0.02044999 -8.2e-4 0.01794999 0.02098 -8.2e-4 0.01844996 0.02085 -2.5e-4 0.01794999 0.02094995 0.005209982 0.01794999 0.02024996 0.003139972 0.01794999 0.02075999 0.003119945 0.01844996 0.02063 -0.005689978 0.01794999 0.02013999 -0.004729986 0.01844996 0.02031999 -0.004649996 0.01881998 0.01996999 -7.8e-4 0.01894998 0.01997995 -8.1e-4 0.01881998 0.02047997 -0.002709984 0.01894998 0.01972997 -0.00812 0.01894998 0.01827996 -0.01169997 0.01881998 0.01682996 -0.008319973 0.01881998 0.01872998 -0.008529961 0.01794999 0.01918995 -0.008469998 0.01844996 0.01906996 -0.01750999 0.01794999 0.01159 -0.0151 0.01794999 0.01457995 -0.01491999 0.01844996 0.01457995 -0.01501995 0.01794999 0.01467996 -0.01073998 0.01794999 0.01794999 -0.01198995 0.01794999 0.01723998 -0.01190996 0.01844996 0.01712995 -0.01937997 0.01794999 0.008079946 -0.01830995 0.01794999 0.01009994 -0.01925998 0.01844996 0.008029997 -0.01739996 0.01844996 0.01150995 -0.01709997 0.01881998 0.01130998 -0.01431 0.01894998 0.01397997 -0.01466 0.01881998 0.01432996 -0.01629996 0.01894998 0.0115 -0.01014 0.03504997 -0.01576995 -0.005279958 0.03504997 0.01798999 0 0.03504997 0.01874995 0.005279958 0.03504997 0.01798999 0.01014 0.03504997 0.01576995 0.01416999 0.03504997 0.01227998 0.01705998 0.03504997 0.007789969 0.01855999 0.03504997 0.00266999 0.01855999 0.03504997 -0.00266999 -0.01014 0.03504997 0.01576995 -0.01416999 0.03504997 0.01227998 -0.01705998 0.03504997 0.007789969 -0.01855999 0.03504997 0.00266999 -0.01855999 0.03504997 -0.00266999 -0.01705998 0.03504997 -0.007789969 -0.01416999 0.03504997 -0.01227998 -0.005279958 0.03504997 -0.01798999 0 0.03504997 -0.01874995 0.005279958 0.03504997 -0.01798999 0.01014 0.03504997 -0.01576995 0.01416999 0.03504997 -0.01227998 0.01705998 0.03504997 -0.007789969 0.001609981 0.03494995 -0.01717996 -0.003309965 0.03504997 -0.01692998 -0.003309965 0.03494995 -0.01692998 0.001759946 0.03494995 -0.01713997 0.001969993 0.03494995 -0.01708996 0.001609981 0.03504997 -0.01717996 0.004629969 0.03494995 -0.01644998 0.006399989 0.03494995 -0.01601999 0.007199943 0.03494995 -0.01555997 0.007989943 0.03494995 -0.0151 0.006399989 0.03504997 -0.01601999 0.009659945 0.03494995 -0.01413995 0.01066994 0.03494995 -0.01354998 0.01066994 0.03504997 -0.01354998 0.01512998 0.03494995 -0.007909953 0.01104998 0.03494995 -0.01314997 0.01406997 0.03504997 -0.009979963 0.01406997 0.03494995 -0.009979963 0.01695996 0.03494995 -0.002209961 0.01631999 0.03494995 -0.005589962 0.01631999 0.03504997 -0.005589962 0.01652997 0.03494995 -0.004479944 -0.007969975 0.03494995 -0.01529997 -0.007969975 0.03504997 -0.01529997 -0.009269952 0.03494995 -0.01454997 -0.01002997 0.03494995 0.01388996 -0.01088994 0.03494995 0.01314997 -0.01299995 0.03494995 0.01133996 -0.01299995 0.03504997 0.01133996 -0.01378995 0.03494995 0.01010996 -0.01567995 0.03494995 0.007189989 -0.01567995 0.03504997 0.007189989 -0.01626998 0.03494995 0.005199968 -0.01706999 0.03494995 0.002459943 -0.01706999 0.03494995 0.002019941 -0.01706999 0.03494995 9.7e-4 -0.01706999 0.03494995 6.9e-4 -0.01706999 0.03504997 0.002459943 -0.01706999 0.03494995 -0.002209961 -0.01706999 0.03494995 -0.002459943 -0.01706999 0.03504997 -0.002459943 -0.01647996 0.03494995 -0.004479944 -0.01567995 0.03494995 -0.007189989 -0.01567995 0.03504997 -0.007189989 -0.01521998 0.03494995 -0.007909953 -0.01299995 0.03504997 -0.01133996 -0.01299995 0.03494995 -0.01133996 -0.01002997 0.03494995 -0.01388996 -0.01088994 0.03494995 -0.01314997 -0.009269952 0.03504997 -0.01454997 -0.009269952 0.03494995 0.01454997 -0.009269952 0.03504997 0.01454997 0.01718997 0.03494995 9.7e-4 0.01699 0.03494995 0.002019941 0.01638996 0.03494995 0.005199968 0.01631999 0.03494995 0.005589962 0.01631999 0.03504997 0.005589962 0.01104998 0.03494995 0.01314997 0.01406997 0.03494995 0.009979963 0.01406997 0.03504997 0.009979963 0.01394999 0.03494995 0.01010996 0.01066994 0.03494995 0.01354998 0.009659945 0.03494995 0.01413995 0.01066994 0.03504997 0.01354998 0.007199943 0.03494995 0.01555997 0.006399989 0.03494995 0.01601999 0.006399989 0.03504997 0.01601999 0.004629969 0.03494995 0.01644998 0.001969993 0.03494995 0.01708996 0.001759946 0.03494995 0.01713997 0.001609981 0.03494995 0.01717996 0.001609981 0.03504997 0.01717996 -0.003309965 0.03494995 0.01692998 -0.007969975 0.03504997 0.01529997 -0.007969975 0.03494995 0.01529997 -0.003309965 0.03504997 0.01692998 0.01722997 0.03504997 7.5e-4 0.01722997 0.03494995 7.5e-4 0.01722997 0.03494995 -7.5e-4 0.01722997 0.03504997 -7.5e-4 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.02499997 -0.03504997 -0.023 -0.02499997 -0.03504997 0.023 -0.02472996 -0.03504997 -0.02399998 -0.02472996 -0.03504997 0.02399998 -0.02399998 -0.03504997 -0.02472996 -0.02399998 -0.03504997 0.02472996 -0.02363997 0.003949999 -0.02164 -0.02363997 0.003949999 0.02164 -0.02363997 0.00544995 -0.02164 -0.02363997 0.00544995 0.02164 -0.02357 0.005699992 -0.02164 -0.02357 0.005699992 0.02164 -0.02338999 0.005879998 -0.02164 -0.02338999 0.005879998 0.02164 -0.02336996 0.003959953 0.02263998 -0.02336996 0.00544995 -0.02263998 -0.02336996 0.00544995 0.02263998 -0.02336996 0.003959953 -0.02263998 -0.02331 0.005699992 -0.02260994 -0.02331 0.005699992 0.02260994 -0.02314996 0.005879998 -0.02250999 -0.02314996 0.005879998 0.02250999 -0.02313995 0.005949974 -0.02164 -0.02313995 0.005949974 0 -0.02313995 0.005949974 0.02164 -0.023 -0.03504997 -0.02499997 -0.023 -0.03504997 0.02499997 -0.02293998 0.005949974 -0.02238994 -0.02293998 0.005949974 0.02238994 0 -0.03504997 0 -0.02263998 0.003959953 0.02336996 -0.02263998 0.003959953 -0.02336996 -0.02263998 0.00544995 -0.02336996 -0.02263998 0.00544995 0.02336996 -0.02260994 0.005699992 -0.02331 -0.02260994 0.005699992 0.02331 -0.02250999 0.005879998 -0.02314996 -0.02250999 0.005879998 0.02314996 0 0.005949974 -0.02313995 -0.02164 0.005949974 -0.02313995 -0.02238994 0.005949974 -0.02293998 -0.02238994 0.005949974 0.02293998 -0.02164 0.003949999 -0.02363997 -0.02164 0.003949999 0.02363997 -0.02164 0.00544995 -0.02363997 -0.02164 0.00544995 0.02363997 -0.02164 0.005699992 -0.02357 -0.02164 0.005699992 0.02357 -0.02164 0.005879998 -0.02338999 -0.02164 0.005879998 0.02338999 -0.02164 0.005949974 0.02313995 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02213996 0.005949974 -0.004869997 0 0.005949974 0.02313995 0.02164 0.003949999 -0.02363997 0.02164 0.003949999 0.02363997 0.02164 0.00544995 -0.02363997 0.02164 0.00544995 0.02363997 0.02164 0.005699992 -0.02357 0.02164 0.005699992 0.02357 0.02164 0.005879998 -0.02338999 0.02164 0.005879998 0.02338999 0.02164 0.005949974 -0.02313995 0.02164 0.005949974 0.02313995 0.02238994 0.005949974 -0.02293998 0.02238994 0.005949974 0.02293998 0.02250999 0.005879998 -0.02314996 0.02250999 0.005879998 0.02314996 0.02260994 0.005699992 -0.02331 0.02260994 0.005699992 0.02331 0.02263998 0.003959953 -0.02336996 0.02263998 0.003959953 0.02336996 0.02263998 0.00544995 -0.02336996 0.02263998 0.00544995 0.02336996 0.02293998 0.005949974 -0.02238994 0.02293998 0.005949974 0.02238994 0.023 -0.03504997 -0.02499997 0.023 -0.03504997 0.02499997 0.02313995 0.005949974 -0.02164 0.02313995 0.005949974 0 0.02313995 0.005949974 0.02164 0.02314996 0.005879998 -0.02250999 0.02314996 0.005879998 0.02250999 0.02331 0.005699992 -0.02260994 0.02331 0.005699992 0.02260994 0.02336996 0.003959953 -0.02263998 0.02336996 0.003959953 0.02263998 0.02336996 0.00544995 -0.02263998 0.02336996 0.00544995 0.02263998 0.02338999 0.005879998 -0.02164 0.02338999 0.005879998 0.02164 0.02357 0.005699992 -0.02164 0.02357 0.005699992 0.02164 0.02363997 0.003949999 -0.02164 0.02363997 0.003949999 0.02164 0.02363997 0.00544995 -0.02164 0.02363997 0.00544995 0.02164 0.02399998 -0.03504997 -0.02472996 0.02399998 -0.03504997 0.02472996 0.02472996 -0.03504997 -0.02399998 0.02472996 -0.03504997 0.02399998 0.02499997 -0.03504997 -0.023 0.02499997 -0.03504997 0.023 0 0.03504997 0 -0.02213996 0.005949974 0.004869997 -0.02063995 0.005949974 0.006999969 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.00945729 0.003627836 -0.001710772 0 -0.01554995 0.02431994 0 0.005949974 0 + + + + + + + + + + 0 -1 0 0 -1 0 -0.9492978 0 -0.3143782 -0.9492978 0 0.3143782 -0.7785766 0.001171708 0.6275485 -0.7808654 0.001171231 0.6246982 -0.6209343 -0.001221954 0.7838616 -0.6453004 -0.01542252 0.7637733 -0.3964945 -0.0151537 0.9179121 -0.4893132 0.006718158 0.8720822 -0.4938785 0.006718337 0.8695049 -0.1431924 -0.008457064 0.9896588 -0.316222 0.006060898 0.9486659 -0.3172233 0.0060606 0.9483315 0.2392156 0.007879972 0.9709345 0.119358 -0.01385879 0.9927546 0.0559594 0.00282979 0.9984291 0.1191433 0.00413686 0.9928685 0.05255794 0.004160761 0.9986092 -0.1333157 -0.004680752 0.9910625 0.2450903 0.007883667 0.9694681 0.3747907 -0.01294112 0.9270192 0.4188861 0.001862525 0.9080369 0.4327281 0.001863181 0.9015226 0.6034716 -0.002766609 0.7973797 0.5845207 -0.01302987 0.8112742 0.7900453 -0.01468151 0.6128727 0.7272006 0.007067918 0.6863886 0.7263449 0.007068157 0.6872941 0.9823358 0.002611696 0.1871086 0.9289886 -0.004128932 0.3700852 0.9230861 -0.009820222 0.3844679 0.8414472 0.006709396 0.5402976 0.8421885 0.006709873 0.5391413 0.9819628 0.002612411 0.1890563 0.9911401 -0.01446169 0.1320315 0.9999719 0.007499694 0 0.9999719 0.007499694 0 0.9911401 -0.01446169 -0.1320315 0.9819628 0.002612411 -0.1890563 0.9823358 0.002611696 -0.1871086 0.9231205 -0.004674613 -0.3844823 0.9289375 -0.01127177 -0.3700649 0.7900453 -0.01468151 -0.6128727 0.8421885 0.006709873 -0.5391413 0.8414472 0.006709396 -0.5402976 0.4327281 0.001863181 -0.9015226 0.5845689 -0.002225697 -0.8113411 0.6034404 -0.0105375 -0.7973385 0.7263449 0.007068157 -0.6872941 0.7272006 0.007067918 -0.6863886 0.4188861 0.001862525 -0.9080369 0.3747907 -0.01294112 -0.9270192 0.2450903 0.007883667 -0.9694681 0.2392156 0.007879972 -0.9709345 0.119358 -0.01385879 -0.9927546 0.0559594 0.00282979 -0.9984291 0.1191433 0.00413686 -0.9928685 0.05255794 0.004160761 -0.9986092 -0.1431956 -0.005152344 -0.989681 -0.1333114 -0.009266734 -0.9910309 -0.3964945 -0.0151537 -0.9179121 -0.3172233 0.0060606 -0.9483315 -0.316222 0.006060898 -0.9486659 -0.7808654 0.001171231 -0.6246982 -0.6453768 -8.88654e-4 -0.7638639 -0.6208926 -0.01165908 -0.783809 -0.4938785 0.006718337 -0.8695049 -0.4893132 0.006718158 -0.8720822 -0.7785766 0.001171708 -0.6275485 -0.8049004 -0.01266139 -0.5932749 -0.881016 0.007450222 -0.4730277 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.9471516 0.1680965 0.2732169 -0.407418 0.1514139 -0.9006023 -0.9422059 0.2770094 -0.1884511 -0.9113164 0.1482697 -0.3840813 -0.9315509 0.1626105 -0.3252239 -0.7991091 -0.3146805 -0.5122509 -0.9081746 0.2506373 -0.3352608 -0.9111543 0.1456485 -0.3854666 -0.928664 0.2243673 -0.2953684 -0.925579 0.2859641 -0.2480482 -0.9177774 0.2868903 0.2745518 -0.9178981 0.2856691 0.2754201 -0.9143468 0.1813663 0.3620446 -0.9384292 0.1466302 0.31281 -0.9311535 0.1683419 0.3234411 -0.901751 0.1467134 0.4065961 -0.9103941 0.1680585 0.3780726 -0.912325 0.3225979 0.2521777 -0.9188216 0.2869244 0.2710005 -0.9848498 0.1048805 0.138097 -0.9578264 0.2873474 0 -0.9559739 0.2861407 -0.06509518 -0.9987523 -0.04993659 0 -0.9210147 0.2770513 -0.2738146 -0.4861897 0.1523008 -0.8604789 -0.4091901 0.1777053 -0.8949773 -0.3149025 0.1457877 -0.9378605 -0.1278769 0.1498839 -0.9803991 -0.309273 0.1512408 -0.9388697 -0.141013 0.1688628 -0.9755002 -0.1303948 0.1630746 -0.977959 -0.4837509 0.1474936 -0.8626881 -0.636475 0.163087 -0.7538581 -0.645197 0.1696269 -0.744948 -0.7708169 0.1599442 -0.6166515 -0.6459589 0.159875 -0.746443 -0.7711567 0.1450923 -0.6198915 -0.8274903 0.1763324 -0.533073 -0.8709936 0.1562899 -0.4657721 -0.9149418 0.1555567 -0.3724025 -0.7441748 0.5367867 -0.3975726 -0.9384292 0.1466302 -0.3128098 -0.9364062 0.1603595 0.3121352 -0.8722791 0.1474033 0.4662632 -0.8271023 0.1767897 0.5335236 -0.7664864 0.1686882 0.6197121 -0.8297607 0.1690638 0.5318973 -0.7716946 0.1450895 0.6192225 -0.6450954 0.1696101 0.7450398 -0.6363618 0.1663306 0.7532449 -0.64563 0.1662972 0.7453235 -0.6361207 0.1630551 0.754164 -0.4856274 0.1477051 0.8615968 -0.4099487 0.177209 0.8947284 -0.2937462 0.1736751 0.9399735 -0.4077602 0.1746891 0.8962228 -0.3145152 0.1452308 0.9380769 -0.1418845 0.1683772 0.9754577 -0.1341822 0.1666406 0.976845 -0.1389042 0.1666364 0.9761855 -0.1267469 0.1627997 0.9784843 0.1395421 0.1371724 0.980669 0.05338537 0.1733645 0.9834097 0.07274723 0.1735997 0.9821257 0.1416881 0.1761806 0.9741073 0.2381073 0.1455035 0.9602779 0.4082419 0.1680009 0.8972816 0.4154286 0.1666471 0.8942303 0.4107152 0.1666655 0.8964015 0.4143497 0.165222 0.894995 0.6486326 0.1363442 0.7487897 0.575868 0.1693211 0.7998164 0.575499 0.1693159 0.8000832 0.6442187 0.1772168 0.7440273 0.7189208 0.1454344 0.6797072 0.8300612 0.16697 0.5320899 0.8296917 0.1670521 0.5326398 0.8285282 0.1670665 0.5344434 0.8312138 0.1651425 0.5308593 0.9521918 0.1337416 0.2746708 0.9171259 0.1644181 0.3631072 0.914055 0.1643574 0.3707966 0.9438654 0.1778166 0.2783871 0.9717582 0.1459009 0.1854698 0.9860588 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9500489 0.1327823 -0.2824464 0.9697747 0.1601643 -0.1840775 0.9693279 0.1601721 -0.1864089 0.9447124 0.1775989 -0.2756393 0.830715 0.1654286 -0.5315507 0.8288937 0.166745 -0.533977 0.7189707 0.1454441 -0.6796524 0.6466634 0.1530798 -0.747257 0.717962 0.1537514 -0.6788895 0.6443232 0.1772074 -0.743939 0.5763537 0.1462174 -0.8040131 0.4070715 0.1568021 -0.8998366 0.5925795 0.1567866 -0.7901059 0.4147536 0.1656929 -0.8947209 0.4098841 0.1681987 -0.8964955 0.2399455 0.1457665 -0.9597803 0.1279237 0.1474865 -0.9807565 0.2369926 0.1489789 -0.9600207 0.1408129 0.1768286 -0.9741167 0.05614864 0.1468989 -0.9875566 0.05065917 0.1469421 -0.987847 -0.1424711 -3.79589e-4 -0.9897989 -0.129338 0 -0.9916005 -0.4158082 0 -0.9094523 -0.4154945 -2.07829e-4 -0.9095956 -0.4121701 0 -0.911107 -0.6546844 0 -0.7559022 -0.6546447 -3.01789e-5 -0.7559368 -0.6543759 0 -0.7561693 -0.840663 0 -0.5415588 -0.8408741 2.12565e-4 -0.5412307 -0.8418785 0 -0.5396671 -0.9599732 0 -0.280092 -0.9596633 -5.69179e-4 -0.2811512 -0.9585365 0 -0.2849697 -1 0 0 -1 0 0 -1 0 0 -0.9591508 0 0.2828954 -0.9596631 -8.33003e-4 0.2811512 -0.9608235 0 0.2771607 -0.8403387 0 0.5420618 -0.840874 -4.25545e-4 0.5412307 -0.8418794 0 0.5396656 -0.6545795 0 0.7559933 -0.6546447 -3.46783e-5 0.7559368 -0.6547469 0 0.7558482 -0.4165412 0 0.9091168 -0.4154945 4.29833e-4 0.9095956 -0.4141279 0 0.9102187 -0.1439396 0 0.9895865 -0.142471 5.09058e-4 0.9897989 -0.1408738 0 0.9900277 0.1408738 0 0.9900277 0.142471 5.09058e-4 0.9897989 0.1439396 0 0.9895865 0.4141279 0 0.9102187 0.4154945 4.29833e-4 0.9095956 0.4165412 0 0.9091168 0.6547469 0 0.7558482 0.6546447 -3.46783e-5 0.7559368 0.6545795 0 0.7559933 0.8418794 0 0.5396656 0.840874 -4.25545e-4 0.5412307 0.8403387 0 0.5420618 0.9608235 0 0.2771607 0.9596631 -8.33003e-4 0.2811512 0.9591508 0 0.2828954 1 0 0 1 0 0 1 0 0 0.9585365 0 -0.2849697 0.9596633 -5.69179e-4 -0.2811512 0.9599732 0 -0.280092 0.8418785 0 -0.5396671 0.8408741 2.12565e-4 -0.5412307 0.840663 0 -0.5415588 0.6543759 0 -0.7561693 0.6546447 -3.01789e-5 -0.7559368 0.6546844 0 -0.7559022 0.4121701 0 -0.911107 0.4154945 -2.07829e-4 -0.9095956 0.4158082 0 -0.9094523 0.129338 0 -0.9916005 0.1424711 -3.79589e-4 -0.9897989 0.1430675 0 -0.9897129 -0.1430675 0 -0.9897129 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9838701 0.1788842 -0.007730364 0.9677938 0.2516258 -0.008649408 0.7070808 0.7070799 0.006879746 0.8947982 0.4464178 0.006871819 0.8719238 0.4895934 0.002814829 0.377206 0.9261251 -0.008792817 0.2516237 0.9677851 0 0.1293374 0.9916006 -0.9629649 0 0.269627 -0.9629649 0 0.269627 -0.251012 0.07028329 0.965429 -0.1845505 0.1845505 0.9653404 -0.07028359 0.2510112 0.9654293 -0.1942211 0.6936423 0.6936414 -0.1935422 0.6935194 0.6939541 -0.5112335 0.5112336 0.690855 -0.5112314 0.5112344 0.690856 -0.6932809 0.1941184 0.6940315 -0.7049736 0.1803423 0.6859219 -0.2607492 0.9343423 0.2429284 -0.243086 0.9349478 0.2584215 -0.682882 0.6828859 0.2594976 -0.6944488 0.6756823 0.2473751 -0.9403539 0.2405559 0.2405565 -0.9297617 0.2603295 0.2603303 -0.2516335 0.9678226 0 -0.2516335 0.9678226 0 -0.7167247 0.6973562 0 -0.7167247 0.6973562 0 -0.962965 0.2696263 0 -0.962965 0.2696263 0 -0.7167251 0 -0.6973558 -0.9629649 0 -0.269627 -0.9629649 0 -0.269627 -0.07028359 0.2510112 -0.9654293 -0.1845506 0.1845506 -0.9653404 -0.2440263 0.938564 -0.2440261 -0.2595868 0.9301772 -0.2595866 -0.6923445 0.673635 -0.2586021 -0.6852509 0.685255 -0.2466917 -0.9343009 0.2616005 -0.2421712 -0.9350127 0.2391895 -0.2618005 -0.1936007 0.6937291 -0.6937282 -0.1941202 0.693282 -0.6940299 -0.5112318 0.5112348 -0.6908552 -0.5112326 0.5112326 -0.6908563 -0.6994224 0.1789222 -0.6919503 -0.7027144 0.1967598 -0.6837237 -0.251012 0.07028329 -0.965429 0 0.1543763 -0.9880121 -0.009795784 0.2516214 -0.9677761 -0.007334709 0.722306 -0.6915347 0.00679636 0.4472005 -0.8944079 0.006780803 0.5067117 -0.8620889 -0.009076535 0.9677828 -0.2516229 0 0.9892032 -0.1465499 -0.2263051 0.7072249 0.6697902 0.3015977 0.696307 0.6513029 0.7167264 0.6973544 0 0.5183387 0.69911 -0.4925142 0.03862148 0.6995103 -0.7135781 -0.1644762 0.9669772 0.1946862 -0.1248043 0.9671578 0.2214269 0.01370066 0.9675313 0.2523798 0.06004744 0.9683741 0.2421693 0.1849305 0.9670732 0.1748434 0.1059339 0.9677575 -0.2285243 -0.1261059 0.966584 -0.2231875 -0.199501 0.9668129 -0.1596003 -0.6712515 0.704275 -0.2311238 -0.4654791 0.8727707 -0.1469718 -0.4844728 0.8612704 -0.1532949 -0.8913083 0.3450198 -0.2941612 -0.915989 0.251125 -0.3128905 -0.944593 0.09943693 -0.3128201 -0.9346077 0.1752427 0.3095133 -0.9163941 0.251105 0.3117182 -0.8494461 0.4497035 0.2760577 -0.6587777 0.7186641 0.2225626 -0.11454 0.9926847 0.03817999 -0.2079164 0.9745261 0.08408081 -0.2403051 0.9673867 0.08010166 -0.2239108 0.9672326 0.119688 -0.2239329 0.9672339 -0.1196353 -0.2369856 0.9674997 -0.08821576 -0.168695 0.984063 -0.05623167 -0.220901 0.9681158 -0.1181289 -0.195109 0.9681603 -0.1568376 -0.1642051 0.9670629 -0.194489 -0.1243403 0.9671458 -0.2217399 -0.03328311 0.9677709 -0.249623 0.01294058 0.9675522 -0.2523397 0.01371669 0.9672559 -0.2534325 0.01418453 0.9682756 -0.2494817 0.05979275 0.9683793 -0.2422114 0.1485582 0.966945 -0.2072386 0.1849181 0.9670735 -0.1748546 0.1827625 0.9676989 -0.173657 0.181624 0.9682638 -0.1716915 0.2103747 0.9683087 -0.1346127 0.2516335 0.9678226 0 0.2516335 0.9678226 0 0.2516335 0.9678227 0 0.2469634 0.9678903 -0.04687726 0.2482241 0.9675434 0.04737603 0.2343087 0.9675045 0.09504997 0.2367252 0.9670455 0.09372389 0.21423 0.9671535 0.1368191 0.1064419 0.9675605 0.2291214 0.1058055 0.9677801 0.2284879 0.1058276 0.9677543 0.2285876 0.1467888 0.9679301 0.2038734 -0.0766099 0.966454 0.245148 -0.08143335 0.9670985 0.2410164 -0.07958346 0.9681548 0.2373665 -0.03413015 0.9680389 0.2484672 -0.1947117 0.9681448 0.1574264 -0.2211804 0.9681038 0.1177042 -0.6276769 0.7031698 0.3340269 -0.6718416 0.7042246 0.2295574 -0.8316648 0.4851421 0.270131 -0.224141 0.7071188 -0.6706294 -0.08158397 0.9665949 -0.242978 -0.08118349 0.9673035 -0.240277 -0.230294 0.6945442 -0.6815959 -0.09658795 0.6949279 -0.7125629 -0.1300739 0.2494957 -0.9596003 0.05087167 0.2513077 -0.9665695 0.3019366 0.6962896 -0.6511644 0.06135189 0.9674767 -0.2454073 0.1061488 0.9675673 -0.2292293 0.3024179 0.6942894 -0.653074 0.4201316 0.6941274 -0.584531 0.5638182 0.2583763 -0.7844429 0.7015674 0.2590524 -0.6638488 0.657499 0.7065963 -0.2615662 0.6635753 0.6994388 -0.2654304 0.7016292 0.6998641 -0.133816 0.5189352 0.6991608 0.4918134 0.2101477 0.9683169 0.1349092 0.1812267 0.9682484 0.1721977 0.5147917 0.7040795 0.4891439 0.4141255 0.7046437 0.5761747 0.562515 0.2665852 0.7826297 0.4170309 0.2669032 0.8688198 0.03983807 0.6995611 0.7134614 0.01843094 0.9683725 0.2488275 0.01364505 0.9676027 0.2521088 0.03827118 0.7060714 0.7071057 -0.09523808 0.7051784 0.7026044 -0.1298174 0.2567928 0.9577082 -0.305629 0.2567279 0.916887 -0.4603919 0.7019324 0.5434429 -0.1641054 0.967066 0.194558 -0.164548 0.966937 0.1948249 -0.463243 0.6961148 0.5484799 -0.5580259 0.6967077 0.4507831 -0.8506854 0.2602313 -0.4567428 -0.2229626 0.9675791 -0.1186526 -0.6337479 0.6961472 -0.3372576 -0.6271286 0.7031058 -0.3351895 -0.8501825 0.2659004 -0.454408 -0.8554773 0.2506282 -0.4531491 -0.7517282 0.2706233 -0.6013882 -0.1978173 0.9671215 -0.159826 -0.5579887 0.6967101 -0.4508255 -0.5582559 0.6964031 -0.4509689 -0.7490752 0.2696682 -0.6051161 -0.7513393 0.2621917 -0.6055946 -0.1644515 0.9669765 -0.1947106 -0.4595423 0.7019816 -0.5440982 -0.464033 0.6961706 -0.5477408 -0.6238481 0.261821 -0.7363854 -0.621176 0.2712791 -0.7352197 -0.1242595 0.9673138 -0.221051 -0.3465486 0.7069951 -0.6164916 -0.3499536 0.7017597 -0.6205367 -0.4731478 0.2687683 -0.8389843 -0.4767771 0.2609524 -0.839397 -0.1288474 0.2567702 -0.9578452 -0.305629 0.2567279 -0.9168869 -0.3062461 0.2581284 -0.9162877 -0.3065935 0.2567667 -0.916554 -0.4726419 0.2588881 -0.8423696 0.05413478 0.2532923 -0.965874 0.05391412 0.2545722 -0.9655498 0.03948223 0.7060217 -0.7070888 -0.09333491 0.7052802 -0.7027577 -0.03303414 0.9680098 -0.2487279 -0.07829689 0.9681807 -0.2376884 0.06135183 0.9674766 -0.2454078 0.1740778 0.696309 -0.6963121 0.1739403 0.6986982 -0.6939493 0.2341818 0.2688215 -0.9342879 0.2314112 0.2534631 -0.9392579 0.5634199 0.2665578 -0.7819878 0.4170309 0.2669032 -0.8688198 0.4046592 0.2732187 -0.8726983 0.4044461 0.2603067 -0.8767347 0.2365246 0.2621741 -0.9355859 0.7046238 0.2473371 -0.6650787 0.7013934 0.2572429 -0.6647355 0.5154538 0.7040323 -0.488514 0.415661 0.7047259 -0.5749672 0.1455301 0.9686573 -0.2013059 0.15098 0.9678227 -0.2013067 0.2147524 0.9670686 -0.1366009 0.5968894 0.7068039 -0.3796725 0.6017773 0.7001448 -0.3842673 0.8154708 0.2526968 -0.5207222 0.8161497 0.2468252 -0.5224721 0.9629638 0.2696306 0 0.9449788 0.2718722 -0.1819358 0.9482918 0.2608299 -0.18086 0.9482879 0.261008 -0.1806234 0.8967889 0.2617092 -0.3567605 0.8974719 0.258296 -0.3575298 0.8130294 0.2577725 -0.5220504 0.9629638 0.2696306 0 0.9629638 0.2696306 0 0.7167264 0.6973544 0 0.70467 0.6965711 -0.1350152 0.2486808 0.9674128 -0.04764741 0.2481271 0.9675516 -0.04771661 0.9482879 0.261008 0.1806234 0.2469177 0.9678809 0.04730957 0.7014893 0.6998912 0.1344058 0.7047534 0.6966033 0.1344119 0.9482918 0.2608299 0.18086 0.9449788 0.2718721 0.1819358 0.2322279 0.9682156 0.09289127 0.6569463 0.7066604 0.2627788 0.6640112 0.699507 0.2641569 0.8976452 0.2582861 0.3571012 0.8966205 0.2616998 0.3571906 0.2123748 0.9678058 0.1350885 0.6024934 0.7000937 0.3832371 0.59627 0.7067469 0.3807505 0.8154708 0.2526969 0.5207222 0.8130294 0.2577725 0.5220504 0.5647161 0.2584066 0.7837867 0.7015674 0.2590524 0.6638488 0.7013934 0.2572429 0.6647355 0.7046238 0.2473371 0.6650787 0.8161497 0.2468252 0.5224721 0.4044461 0.2603067 0.8767347 0.4046592 0.2732187 0.8726983 0.3027438 0.6943063 0.6529051 0.4217932 0.6940296 0.5834496 0.1488554 0.9671839 0.2059057 0.1488695 0.9669557 0.2069647 0.06135171 0.9674767 0.2454074 0.1735082 0.6987219 0.6940336 0.1745008 0.6963297 0.6961856 0.2341818 0.2688215 0.9342879 0.2365246 0.2621741 0.9355859 -0.1291 0.2495277 0.9597235 0.05087167 0.2513077 0.9665695 0.05391412 0.2545722 0.9655498 0.05413478 0.2532923 0.965874 0.2314112 0.2534631 0.9392579 -0.3065935 0.2567667 0.916554 -0.3062461 0.2581284 0.9162877 -0.2280214 0.6946619 0.6822397 -0.09468263 0.6948394 0.7129049 -0.03354847 0.9669889 0.2526004 -0.03234249 0.9677872 0.2496837 -0.1255912 0.9665973 0.22342 -0.3491178 0.7017115 0.6210619 -0.3474251 0.7069473 0.616053 -0.4731478 0.2687683 0.8389843 -0.4726419 0.2588881 0.8423696 -0.8506854 0.2602313 0.4567428 -0.7513393 0.2621915 0.6055946 -0.7490752 0.2696682 0.6051161 -0.7517282 0.2706233 0.6013882 -0.6221522 0.2713071 0.7343835 -0.6228598 0.2618451 0.7372128 -0.4767771 0.2609524 0.839397 -0.8554773 0.2506282 0.4531491 -0.8501825 0.2659004 0.454408 -0.6330834 0.6962109 0.3383722 -0.5582225 0.6964006 0.4510145 -0.1946848 0.9681715 0.1572951 -0.1992351 0.9668231 0.15987 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2576645 0 -0.9662344 -0.05074721 0 -0.9987115 -0.05074721 0 -0.9987115 -0.3301701 0 -0.9439214 -0.3301701 0 -0.9439214 0.2314149 -0.04166501 -0.9719626 0.2337992 -0.0328713 -0.9717291 -0.2353472 -0.01319801 0.9718218 0.2360719 0 -0.9717356 0.498471 0 -0.8669065 0.5025548 0.05025458 -0.8630836 0.4977039 -0.0518344 -0.8657968 0.5000953 0.04980254 -0.8645372 0.5044022 0 -0.8634689 0.7249996 0 -0.6887493 0.7241208 -0.006897449 -0.6896386 0.8897777 0 -0.4563943 0.8898923 -0.008304476 -0.4560952 0.8900858 0 -0.4557931 0.7240293 0 -0.6897691 -0.9833266 0 0.1818479 -0.9818185 -0.044227 0.1845983 0.9825241 -0.002599418 -0.1861173 0.9825702 0 -0.1858918 0.6556872 0 0.7550326 -0.6556872 0 0.7550326 -0.6515577 -0.04579263 0.7572157 -0.6516571 -0.04426085 0.7572213 -0.6510875 0 0.7590027 -0.8414006 0 0.540412 -0.8395078 -0.03620713 0.54214 -0.8394931 0 0.5433704 -0.9587494 0 0.2842525 -0.9582376 0.04984301 0.2815961 -0.9599216 0 0.2802686 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9598937 0 -0.2803642 -0.9588532 0.03467482 -0.281777 -0.9590831 0 -0.2831244 -0.8426965 0 -0.5383889 0.8393291 -0.04166615 0.5420246 0.8395044 0 0.5433529 0.6522963 0 0.757964 0.6490944 0.0781871 0.7566791 0.6515577 0.04579263 0.7572157 0.8899229 0 0.4561109 0.9838697 0 0.1788867 0.9821668 0.01870387 0.187079 0.9826549 -0.003704786 0.1854068 0.9822553 -0.03267395 0.1846804 0.9842713 0 0.1766641 0.8899229 0 0.4561109 0.7249996 0 0.6887493 0.7241208 -0.006897449 0.6896386 0.7232667 0.02902907 0.6899583 0.7348049 0 0.6782786 0.5044022 0 0.8634689 0.4990119 0.0604375 0.864485 0.5005733 0.02391499 0.8653637 0.498471 0 0.8669065 0.2360719 0 0.9717356 0.2353472 0.01319825 0.9718218 0.2337992 -0.03287124 0.9717291 0.2314148 -0.04166501 0.9719625 0.2576645 0 0.9662344 -0.05074721 0 0.9987115 -0.05074721 0 0.9987115 -0.3301701 0 0.9439214 0.3301701 0 -0.9439214 0 -1 0 0 -1 0 0 -1 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 1 0 0 0 0 -1 -0.260666 0 0.9654291 -0.9654291 0 -0.260666 -0.9654291 0 -0.260666 -0.260666 0 -0.9654291 -0.9645484 0.04270619 -0.2604277 -0.9646556 0.04270696 -0.2600302 0.9654291 0 -0.260666 0.2604277 0.04270619 -0.9645484 0.7071068 0 0.7071068 0.2689354 0.9604846 -0.07171601 0.2758985 0.9581687 -0.07611 0.2031767 0.95783 -0.2031767 0.2031767 0.95783 -0.2031767 0.07389479 0.9579936 -0.2771059 0.07417577 0.9603113 -0.2688869 0.6940287 0.6940234 -0.1914564 0.6821739 0.707958 -0.1828504 0.4946855 0.7145437 -0.4946855 0.4946855 0.7145437 -0.4946855 0.1876068 0.7087336 -0.6800739 0.1862189 0.6947355 -0.694741 0.9324051 0.2610736 -0.2499225 0.9336825 0.2543331 -0.2520944 0.6852533 0.2466892 -0.6852533 0.6852534 0.2466892 -0.6852534 0.2503941 0.2542446 -0.9341641 0.2516342 0.2609541 -0.9319781 0 0 0 0 0.7071041 -0.7071095 0 0.7071041 -0.7071095 0 0.2696301 -0.9629639 0 0.2696301 -0.9629639 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.7071095 0.7071041 0 0.7071095 0.7071041 0 0.9629639 0.2696301 0 0.9629639 0.2696301 0 -0.07611 0.9581687 -0.2758985 -0.2031767 0.95783 -0.2031767 -0.2031767 0.95783 -0.2031767 -0.2771059 0.9579936 -0.07389479 -0.2688869 0.9603113 -0.07417577 -0.1914564 0.6940234 -0.6940287 -0.1828504 0.7079579 -0.6821739 -0.4946855 0.7145437 -0.4946855 -0.4946855 0.7145437 -0.4946855 -0.6800737 0.7087335 -0.1876068 -0.694741 0.6947355 -0.1862189 -0.2499225 0.2610736 -0.9324051 -0.2520944 0.2543331 -0.9336825 -0.6852533 0.2466892 -0.6852533 -0.6852534 0.2466892 -0.6852534 -0.9341641 0.2542446 -0.2503941 -0.9319781 0.2609541 -0.2516342 0.07171601 0.9604846 0.2689354 0.07611 0.9581687 0.2758985 0.2031767 0.95783 0.2031767 0.2031767 0.95783 0.2031767 0.2771059 0.9579936 0.07389479 0.2688869 0.9603113 0.07417577 0.1914564 0.6940234 0.6940287 0.1828504 0.7079579 0.6821739 0.4946855 0.7145437 0.4946855 0.4946855 0.7145437 0.4946855 0.6800737 0.7087335 0.1876068 0.694741 0.6947355 0.1862189 0.2499225 0.2610736 0.9324051 0.2520944 0.2543331 0.9336825 0.6852533 0.2466892 0.6852533 0.6852534 0.2466892 0.6852534 0.9341641 0.2542446 0.2503941 0.9319781 0.2609541 0.2516342 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.7071095 0.7071041 0 -0.7071095 0.7071041 0 -0.9629639 0.2696301 0 -0.9629639 0.2696301 0 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2696301 0.9629639 0 0.2696301 0.9629639 -0.2689354 0.9604846 0.07171601 -0.2758985 0.9581687 0.07611 -0.2031767 0.95783 0.2031767 -0.2031767 0.95783 0.2031767 -0.07389479 0.9579936 0.2771059 -0.07417577 0.9603113 0.2688869 -0.6940287 0.6940234 0.1914564 -0.6821739 0.707958 0.1828504 -0.4946855 0.7145437 0.4946855 -0.4946855 0.7145437 0.4946855 -0.1876068 0.7087336 0.6800739 -0.1862189 0.6947355 0.694741 -0.9324051 0.2610736 0.2499225 -0.9336825 0.2543331 0.2520944 -0.6852533 0.2466892 0.6852533 -0.6852534 0.2466892 0.6852534 -0.2503941 0.2542446 0.9341641 -0.2516342 0.2609541 0.9319781 -0.9629639 0 -0.2696301 -0.9629639 0 -0.2696301 -0.7167251 0 -0.6973558 -0.7167237 -2.52567e-7 -0.6973572 -0.2516344 0 -0.9678224 -0.2516335 0 -0.9678226 -0.2516344 0 -0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.9629639 0 0.2696301 -0.9629639 0 0.2696301 -1 0 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.9122474 0 0.4096398 -0.8835567 -0.01679629 -0.4680228 -0.957763 0.01149314 -0.2873293 -0.957763 0.01149314 0.2873293 -0.8835567 -0.01679629 0.4680228 -0.9086417 0.007449328 0.4175103 -0.881016 0.007450222 0.4730277 -0.8049004 -0.01266139 0.5932749 -0.9122221 0.007446944 -0.4096284 -0.901296 0 -0.4332039 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 -0.9190827 0.28875 -0.2681613 -0.9068856 0.3034356 -0.292379 -0.9189138 0.2091057 0.3344731 0.9175001 0.1444488 -0.3705781 0.8302804 0.1654177 -0.5322325 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2516344 0 0.9678224 0.002348303 0.6348381 0.7726417 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 -0.9678224 -0.2516344 0 -0.9678224 -0.7167251 0 -0.6973558 -0.004324674 0.7071006 -0.7070997 0.003669202 0.9127396 -0.4085254 0.2344187 0.967514 -0.09468168 -0.7256583 0.6450302 -0.2394912 -0.3975354 0.9086532 0.1277299 0.2290577 0.9690912 -0.09162318 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 -0.9993925 0.03485059 0 -0.9993925 0.03485059 0 0 0 1 0 0 1 1 0 0 0 0 -1 -1 0 0 -1 0 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.260666 0 0.9654291 -0.9654291 0 0.260666 -0.9654291 0 0.260666 -0.9646556 0.04270696 0.2600302 -0.9645484 0.04270619 0.2604277 -0.706249 0.04924374 0.7062489 -0.7062489 0.04924374 0.7062489 -0.2604277 0.04270619 0.9645484 -0.2600302 0.04270696 0.9646556 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.260666 0 -0.9654291 -0.2600301 0.04270696 -0.9646555 -0.2604277 0.04270619 -0.9645484 -0.7062489 0.04924374 -0.706249 -0.7062489 0.04924374 -0.7062489 0.260666 0 -0.9654291 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.260666 0 -0.9654291 0.9654291 0 -0.260666 0.9646556 0.04270696 -0.2600302 0.9645484 0.04270619 -0.2604277 0.706249 0.04924374 -0.7062489 0.7062489 0.04924374 -0.7062489 0.2600302 0.04270696 -0.9646556 0.2604278 0.04270619 0.9645484 0.2600301 0.04270696 0.9646556 0.9645479 0.04271709 0.2604277 0.964656 0.04269605 0.2600303 0.7062489 0.04924374 0.7062489 0.706249 0.04924374 0.7062489 0.7071068 0 0.7071068 0.9654291 0 0.260666 0.9654291 0 0.260666 0.260666 0 0.9654291 0.260666 0 0.9654291 0 0 0 0 0 0 -1.5404e-7 1 -6.36081e-7 3.24032e-7 1 5.61656e-7 6.54708e-7 1 0 -6.48629e-7 1 0 -5.82531e-7 1 2.98564e-7 4.26935e-7 1 4.96095e-7 -3.27791e-7 1 5.66667e-7 6.28108e-7 1 1.84581e-7 -1.5404e-7 1 6.36081e-7 5.49908e-7 1 -3.55121e-7 5.49908e-7 1 3.55121e-7 -4.74061e-7 1 -4.51486e-7 0 1 6.53629e-7 2.16121e-7 1 -6.17868e-7 3.24032e-7 1 -5.61656e-7 -5.82531e-7 1 -2.98564e-7 -4.74061e-7 1 4.51486e-7 4.26935e-7 1 -4.96095e-7 -3.27791e-7 1 -5.66667e-7 -6.43363e-7 1 1.20963e-7 2.16121e-7 1 6.17868e-7 6.28108e-7 1 -1.84581e-7 -6.43363e-7 1 -1.20963e-7 0 1 -6.53629e-7 0 0.9629641 -0.2696297 0 0.9629641 -0.2696297 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1872387 -0.9823144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1364855 -0.9817008 -0.1327975 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.08765232 -0.9373711 -0.3371237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0.9629641 -0.2696297 0 0 0 -0.07171601 0.9604846 -0.2689354 -0.08764123 -0.9899891 0.1106374 0.07545632 -0.9970984 0.01005166 -0.165484 -0.9851234 -0.04633498 0.06710433 -0.9963871 -0.05205571 -0.01855289 -0.9915714 -0.1282264 -0.1596735 -0.9861569 0.0447086 0.01166564 -0.9952132 0.09702873 0.1506127 0.98234 0.1110134 0.01357448 -0.9934884 -0.1131218 0 0 0 -0.1199531 -0.9858954 0.1167114 0.0334047 -0.9960209 0.08262425 0.07395762 -0.9967855 -0.03080356 -0.1550459 -0.986953 0.04341232 -0.04902708 -0.9923275 0.1135011 -0.05939245 -0.9717465 0.2284322 0.01359909 -0.9934894 -0.1131098 0 0 0 -0.1297165 -0.9869306 0.09561127 0.05006933 -0.9965522 0.06615769 0.07658731 -0.9970107 -0.01020228 -0.1044685 -0.9857454 -0.1318801 0.1044685 0.9857454 0.1318801 0 -0.9662557 0.2575849 -0.01562213 -0.9940313 0.1079711 -0.1443563 -0.9795069 -0.1404551 0.03801149 -0.9948446 -0.09401881 0.06233876 -0.9968829 0.04835891 -0.05876457 -0.9889584 -0.136044 -0.05089199 -0.9793348 0.195738 0.01164436 -0.9952126 0.09703755 -0.1872387 -0.9823144 0 0.05545455 -0.995769 -0.0732733 -0.1144365 -0.9871711 0.1113438 0.07075601 -0.9970582 0.02947002 -0.1506127 -0.98234 -0.1110134 0.05876457 0.9889584 0.136044 -0.1603716 -0.9844262 0.07201397 -0.01855289 -0.9915714 -0.1282265 0 0.03485065 0.9993925 0 0.03485059 0.9993926 0 0.03485053 0.9993925 0 0.03485059 0.9993926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.1707559 -0.9841526 -0.04781168 0.070692 0.9597275 0.2718927 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1790391 0.9805517 0.08039653 -0.1790391 -0.9805517 -0.08039653 0 -0.9156407 -0.4019977 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

376 0 371 0 375 0 325 1 326 1 329 1 161 2 75 2 120 2 122 3 76 3 284 3 277 4 404 4 278 4 278 5 404 5 280 5 280 6 404 6 406 6 280 7 406 7 282 7 408 8 275 8 406 8 406 9 275 9 281 9 406 10 281 10 282 10 410 11 259 11 408 11 408 12 259 12 266 12 408 13 266 13 275 13 414 14 263 14 264 14 414 15 264 15 412 15 412 16 264 16 262 16 412 17 262 17 410 17 410 18 262 18 260 18 410 19 260 19 259 19 263 20 414 20 257 20 257 21 414 21 416 21 257 22 416 22 248 22 248 23 416 23 241 23 241 24 416 24 418 24 241 25 418 25 242 25 420 26 246 26 418 26 418 27 246 27 244 27 418 28 244 28 242 28 230 29 234 29 423 29 423 30 234 30 239 30 423 31 239 31 420 31 420 32 239 32 245 32 420 33 245 33 246 33 230 34 423 34 229 34 229 35 423 35 422 35 229 36 422 36 221 36 221 37 422 37 214 37 214 38 422 38 421 38 214 39 421 39 215 39 215 40 421 40 217 40 217 41 421 41 419 41 217 42 419 42 219 42 417 43 212 43 419 43 419 44 212 44 218 44 419 45 218 45 219 45 199 46 197 46 415 46 415 47 197 47 196 47 415 48 196 48 417 48 417 49 196 49 203 49 417 50 203 50 212 50 199 51 415 51 201 51 201 52 415 52 413 52 201 53 413 53 200 53 200 54 413 54 194 54 194 55 413 55 411 55 194 56 411 56 185 56 185 57 411 57 409 57 185 58 409 58 178 58 178 59 409 59 407 59 178 60 407 60 179 60 405 61 183 61 407 61 407 62 183 62 181 62 407 63 181 63 179 63 167 64 171 64 403 64 403 65 171 65 176 65 403 66 176 66 405 66 405 67 176 67 182 67 405 68 182 68 183 68 167 69 403 69 166 69 166 70 403 70 402 70 166 71 402 71 162 71 84 72 76 72 122 72 122 73 123 73 84 73 84 74 123 74 150 74 84 75 150 75 151 75 151 76 124 76 84 76 126 77 125 77 84 77 84 78 125 78 27 78 84 79 27 79 82 79 118 80 117 80 107 80 107 81 106 81 28 81 120 82 107 82 121 82 121 83 107 83 119 83 118 84 107 84 130 84 130 85 107 85 28 85 130 86 28 86 129 86 41 87 40 87 127 87 31 88 30 88 173 88 114 89 74 89 36 89 28 90 106 90 34 90 108 91 35 91 110 91 110 92 35 92 34 92 110 93 34 93 109 93 109 94 34 94 106 94 108 95 111 95 35 95 36 96 116 96 114 96 78 97 40 97 80 97 80 98 40 98 79 98 40 99 81 99 83 99 125 100 127 100 27 100 27 101 127 101 40 101 27 102 40 102 82 102 82 103 40 103 83 103 79 104 40 104 77 104 77 105 40 105 39 105 77 106 39 106 73 106 73 107 39 107 38 107 73 108 38 108 74 108 74 109 38 109 37 109 74 110 37 110 36 110 173 111 30 111 152 111 152 112 30 112 29 112 152 113 29 113 188 113 188 114 29 114 71 114 188 115 71 115 190 115 190 116 71 116 72 116 190 117 72 117 134 117 173 118 133 118 31 118 31 119 133 119 169 119 31 120 169 120 32 120 32 121 169 121 164 121 32 122 164 122 33 122 33 123 164 123 132 123 33 124 132 124 34 124 34 125 132 125 159 125 34 126 159 126 28 126 28 127 159 127 131 127 28 128 131 128 129 128 127 129 128 129 41 129 41 130 128 130 148 130 41 131 148 131 42 131 42 132 148 132 291 132 42 133 291 133 43 133 43 134 291 134 289 134 43 135 289 135 44 135 44 136 289 136 158 136 44 137 158 137 45 137 158 138 157 138 45 138 45 139 157 139 272 139 45 140 272 140 46 140 46 141 272 141 146 141 46 142 146 142 47 142 47 143 146 143 147 143 47 144 147 144 48 144 48 145 147 145 271 145 48 146 271 146 49 146 49 147 271 147 269 147 49 148 269 148 50 148 269 149 156 149 50 149 50 150 156 150 155 150 50 151 155 151 51 151 51 152 155 152 254 152 51 153 254 153 52 153 52 154 254 154 144 154 52 155 144 155 53 155 53 156 144 156 145 156 53 157 145 157 54 157 145 158 253 158 54 158 54 159 253 159 251 159 54 160 251 160 55 160 55 161 251 161 154 161 55 162 154 162 56 162 56 163 154 163 236 163 56 164 236 164 57 164 57 165 236 165 143 165 57 166 143 166 58 166 143 167 232 167 58 167 58 168 232 168 142 168 58 169 142 169 59 169 59 170 142 170 227 170 59 171 227 171 60 171 60 172 227 172 140 172 60 173 140 173 61 173 61 174 140 174 141 174 61 175 141 175 62 175 141 176 226 176 62 176 62 177 226 177 224 177 62 178 224 178 63 178 64 179 209 179 139 179 64 180 139 180 65 180 65 181 139 181 138 181 65 182 138 182 66 182 66 183 138 183 137 183 66 184 137 184 67 184 67 185 137 185 208 185 67 186 208 186 68 186 208 187 206 187 68 187 68 188 206 188 153 188 68 189 153 189 69 189 69 190 153 190 191 190 69 191 191 191 70 191 70 192 191 192 136 192 70 193 136 193 72 193 72 194 136 194 135 194 72 195 135 195 134 195 71 196 308 196 309 196 71 197 29 197 308 197 308 198 29 198 30 198 308 199 30 199 292 199 30 200 31 200 292 200 292 201 31 201 32 201 292 202 32 202 307 202 32 203 33 203 307 203 307 204 33 204 34 204 307 205 34 205 306 205 34 206 35 206 306 206 306 207 35 207 36 207 306 208 36 208 305 208 36 209 37 209 305 209 305 210 37 210 38 210 305 211 38 211 304 211 38 212 39 212 304 212 304 213 39 213 40 213 304 214 40 214 303 214 40 215 41 215 303 215 303 216 41 216 42 216 303 217 42 217 302 217 42 218 43 218 302 218 302 219 43 219 44 219 302 220 44 220 301 220 44 221 45 221 301 221 301 222 45 222 46 222 301 223 46 223 293 223 46 224 47 224 293 224 293 225 47 225 48 225 293 226 48 226 294 226 48 227 49 227 294 227 294 228 49 228 50 228 294 229 50 229 295 229 50 230 51 230 295 230 295 231 51 231 52 231 295 232 52 232 296 232 52 233 53 233 296 233 296 234 53 234 54 234 296 235 54 235 297 235 54 236 55 236 297 236 297 237 55 237 56 237 297 238 56 238 298 238 56 239 57 239 298 239 298 240 57 240 58 240 298 241 58 241 299 241 58 242 59 242 299 242 299 243 59 243 60 243 299 244 60 244 300 244 60 245 61 245 300 245 300 246 61 246 62 246 300 247 62 247 313 247 62 248 63 248 313 248 313 249 63 249 64 249 313 250 64 250 312 250 64 251 65 251 312 251 312 252 65 252 66 252 312 253 66 253 311 253 66 254 67 254 311 254 311 255 67 255 68 255 311 256 68 256 310 256 68 257 69 257 310 257 310 258 69 258 70 258 310 259 70 259 309 259 309 260 70 260 72 260 309 261 72 261 71 261 399 262 95 262 398 262 398 263 95 263 99 263 398 264 99 264 397 264 93 265 77 265 73 265 93 266 73 266 115 266 115 267 73 267 74 267 115 268 74 268 114 268 77 269 93 269 79 269 79 270 93 270 89 270 85 271 78 271 89 271 89 272 78 272 80 272 89 273 80 273 79 273 81 274 85 274 83 274 83 275 85 275 84 275 83 276 84 276 82 276 95 277 399 277 401 277 95 278 401 278 92 278 84 279 87 279 88 279 86 280 87 280 84 280 85 281 86 281 84 281 85 282 89 282 86 282 86 283 89 283 90 283 86 284 90 284 87 284 87 285 90 285 91 285 87 286 91 286 88 286 88 287 91 287 92 287 89 288 93 288 90 288 90 289 93 289 94 289 90 290 94 290 91 290 91 291 94 291 96 291 91 292 96 292 92 292 92 293 96 293 95 293 93 294 115 294 97 294 93 295 97 295 94 295 94 296 97 296 98 296 94 297 98 297 96 297 96 298 98 298 99 298 96 299 99 299 95 299 105 300 400 300 103 300 103 301 400 301 397 301 103 302 397 302 99 302 101 303 112 303 107 303 101 304 107 304 104 304 115 305 113 305 97 305 97 306 113 306 100 306 97 307 100 307 98 307 98 308 100 308 102 308 98 309 102 309 99 309 99 310 102 310 103 310 113 311 112 311 100 311 100 312 112 312 101 312 100 313 101 313 102 313 102 314 101 314 104 314 102 315 104 315 103 315 103 316 104 316 105 316 105 317 104 317 107 317 106 318 107 318 109 318 109 319 107 319 112 319 111 320 108 320 112 320 112 321 108 321 110 321 112 322 110 322 109 322 116 323 113 323 115 323 116 324 115 324 114 324 268 325 274 325 276 325 250 326 256 326 258 326 223 327 228 327 231 327 205 328 211 328 213 328 187 329 193 329 195 329 158 330 289 330 290 330 272 331 157 331 273 331 156 332 269 332 270 332 254 333 155 333 255 333 154 334 251 334 252 334 153 335 206 335 207 335 173 336 152 336 174 336 164 337 169 337 170 337 163 338 117 338 160 338 160 339 117 339 118 339 160 340 118 340 130 340 119 341 163 341 121 341 121 342 163 342 161 342 121 343 161 343 120 343 122 344 284 344 123 344 123 345 284 345 286 345 123 346 286 346 150 346 149 347 124 347 151 347 125 348 126 348 127 348 127 349 126 349 149 349 127 350 149 350 128 350 128 351 149 351 148 351 159 352 160 352 131 352 131 353 160 353 130 353 131 354 130 354 129 354 159 355 132 355 165 355 165 356 132 356 164 356 169 357 133 357 175 357 175 358 133 358 173 358 190 359 134 359 187 359 187 360 134 360 135 360 187 361 135 361 193 361 193 362 135 362 136 362 193 363 136 363 191 363 208 364 137 364 205 364 205 365 137 365 138 365 205 366 138 366 211 366 211 367 138 367 139 367 211 368 139 368 209 368 227 369 228 369 140 369 140 370 228 370 223 370 140 371 223 371 141 371 141 372 223 372 226 372 227 373 142 373 233 373 233 374 142 374 232 374 232 375 143 375 238 375 238 376 143 376 236 376 254 377 256 377 144 377 144 378 256 378 250 378 144 379 250 379 145 379 145 380 250 380 253 380 272 381 274 381 146 381 146 382 274 382 268 382 146 383 268 383 147 383 147 384 268 384 271 384 291 385 148 385 288 385 288 386 148 386 149 386 288 387 149 387 286 387 286 388 149 388 151 388 286 389 151 389 150 389 180 390 184 390 174 390 152 391 188 391 174 391 174 392 188 392 189 392 174 393 189 393 180 393 180 394 189 394 186 394 180 395 186 395 178 395 178 396 186 396 185 396 198 397 202 397 192 397 191 398 153 398 192 398 192 399 153 399 207 399 192 400 207 400 198 400 198 401 207 401 204 401 198 402 204 402 196 402 196 403 204 403 203 403 216 404 220 404 210 404 210 405 225 405 216 405 216 406 225 406 222 406 243 407 247 407 237 407 236 408 154 408 237 408 237 409 154 409 252 409 237 410 252 410 243 410 243 411 252 411 249 411 243 412 249 412 241 412 241 413 249 413 248 413 261 414 265 414 255 414 155 415 156 415 255 415 255 416 156 416 270 416 255 417 270 417 261 417 261 418 270 418 267 418 261 419 267 419 259 419 259 420 267 420 266 420 279 421 283 421 273 421 157 422 158 422 273 422 273 423 158 423 290 423 273 424 290 424 279 424 279 425 290 425 287 425 168 426 166 426 162 426 159 427 165 427 160 427 160 428 165 428 168 428 160 429 168 429 163 429 163 430 168 430 162 430 163 431 162 431 161 431 172 432 171 432 167 432 164 433 170 433 165 433 165 434 170 434 172 434 165 435 172 435 168 435 168 436 172 436 167 436 168 437 167 437 166 437 169 438 175 438 170 438 170 439 175 439 177 439 170 440 177 440 172 440 172 441 177 441 176 441 172 442 176 442 171 442 173 443 174 443 175 443 175 444 174 444 184 444 175 445 184 445 177 445 177 446 184 446 182 446 177 447 182 447 176 447 178 448 179 448 180 448 180 449 179 449 181 449 180 450 181 450 184 450 184 451 181 451 183 451 184 452 183 452 182 452 194 453 185 453 195 453 195 454 185 454 186 454 195 455 186 455 187 455 187 456 186 456 189 456 187 457 189 457 190 457 190 458 189 458 188 458 191 459 192 459 193 459 193 460 192 460 202 460 193 461 202 461 195 461 195 462 202 462 200 462 195 463 200 463 194 463 196 464 197 464 198 464 198 465 197 465 199 465 198 466 199 466 202 466 202 467 199 467 201 467 202 468 201 468 200 468 212 469 203 469 213 469 213 470 203 470 204 470 213 471 204 471 205 471 205 472 204 472 207 472 205 473 207 473 208 473 208 474 207 474 206 474 209 475 210 475 211 475 211 476 210 476 220 476 211 477 220 477 213 477 213 478 220 478 218 478 213 479 218 479 212 479 221 480 214 480 222 480 222 481 214 481 215 481 222 482 215 482 216 482 216 483 215 483 217 483 216 484 217 484 220 484 220 485 217 485 219 485 220 486 219 486 218 486 229 487 221 487 231 487 231 488 221 488 222 488 231 489 222 489 223 489 223 490 222 490 225 490 223 491 225 491 226 491 226 492 225 492 224 492 235 493 234 493 230 493 227 494 233 494 228 494 228 495 233 495 235 495 228 496 235 496 231 496 231 497 235 497 230 497 231 498 230 498 229 498 232 499 238 499 233 499 233 500 238 500 240 500 233 501 240 501 235 501 235 502 240 502 239 502 235 503 239 503 234 503 236 504 237 504 238 504 238 505 237 505 247 505 238 506 247 506 240 506 240 507 247 507 245 507 240 508 245 508 239 508 241 509 242 509 243 509 243 510 242 510 244 510 243 511 244 511 247 511 247 512 244 512 246 512 247 513 246 513 245 513 257 514 248 514 258 514 258 515 248 515 249 515 258 516 249 516 250 516 250 517 249 517 252 517 250 518 252 518 253 518 253 519 252 519 251 519 254 520 255 520 256 520 256 521 255 521 265 521 256 522 265 522 258 522 258 523 265 523 263 523 258 524 263 524 257 524 259 525 260 525 261 525 261 526 260 526 262 526 261 527 262 527 265 527 265 528 262 528 264 528 265 529 264 529 263 529 275 530 266 530 276 530 276 531 266 531 267 531 276 532 267 532 268 532 268 533 267 533 270 533 268 534 270 534 271 534 271 535 270 535 269 535 272 536 273 536 274 536 274 537 273 537 283 537 274 538 283 538 276 538 276 539 283 539 281 539 276 540 281 540 275 540 285 541 277 541 287 541 287 542 277 542 278 542 287 543 278 543 279 543 279 544 278 544 280 544 279 545 280 545 283 545 283 546 280 546 282 546 283 547 282 547 281 547 284 548 285 548 286 548 286 549 285 549 287 549 286 550 287 550 288 550 288 551 287 551 290 551 288 552 290 552 291 552 291 553 290 553 289 553 301 554 293 554 389 554 308 555 292 555 363 555 363 556 292 556 307 556 389 557 293 557 385 557 385 558 293 558 294 558 385 559 294 559 380 559 380 560 294 560 295 560 380 561 295 561 377 561 377 562 295 562 296 562 377 563 296 563 373 563 373 564 296 564 297 564 373 565 297 565 370 565 370 566 297 566 298 566 370 567 298 567 390 567 390 568 298 568 299 568 390 569 299 569 393 569 393 570 299 570 300 570 393 571 300 571 313 571 389 572 387 572 301 572 301 573 387 573 365 573 301 574 365 574 302 574 302 575 365 575 342 575 302 576 342 576 303 576 303 577 342 577 345 577 303 578 345 578 304 578 304 579 345 579 351 579 304 580 351 580 305 580 305 581 351 581 354 581 305 582 354 582 306 582 306 583 354 583 357 583 306 584 357 584 307 584 307 585 357 585 359 585 307 586 359 586 363 586 363 587 337 587 308 587 308 588 337 588 315 588 308 589 315 589 309 589 309 590 315 590 319 590 309 591 319 591 310 591 310 592 319 592 324 592 310 593 324 593 311 593 311 594 324 594 327 594 311 595 327 595 312 595 312 596 327 596 330 596 312 597 330 597 313 597 313 598 330 598 334 598 313 599 334 599 393 599 317 600 314 600 319 600 314 601 315 601 319 601 314 602 316 602 315 602 316 603 337 603 315 603 316 604 336 604 337 604 317 605 319 605 318 605 319 606 320 606 318 606 319 607 320 607 324 607 324 608 321 608 320 608 324 609 322 609 321 609 322 610 324 610 323 610 324 611 325 611 323 611 324 612 327 612 325 612 325 613 327 613 326 613 327 614 329 614 326 614 327 615 330 615 329 615 333 616 328 616 334 616 328 617 330 617 334 617 328 618 331 618 330 618 331 619 329 619 330 619 392 620 393 620 332 620 332 621 393 621 334 621 332 622 335 622 334 622 335 623 333 623 334 623 361 624 338 624 363 624 364 625 365 625 339 625 365 626 340 626 339 626 365 627 342 627 340 627 340 628 342 628 341 628 342 629 343 629 341 629 342 630 345 630 343 630 343 631 345 631 344 631 345 632 346 632 344 632 345 633 351 633 346 633 346 634 351 634 347 634 351 635 348 635 347 635 351 636 349 636 348 636 349 637 351 637 350 637 351 638 352 638 350 638 351 639 354 639 352 639 352 640 354 640 353 640 354 641 355 641 353 641 354 642 357 642 355 642 355 643 357 643 356 643 357 644 358 644 356 644 357 645 358 645 359 645 359 646 358 646 360 646 359 647 360 647 363 647 363 648 360 648 362 648 363 649 362 649 361 649 372 650 370 650 373 650 390 651 366 651 391 651 366 652 390 652 367 652 390 653 368 653 367 653 390 654 370 654 368 654 370 655 369 655 368 655 370 656 372 656 369 656 375 657 371 657 377 657 371 658 373 658 377 658 371 659 374 659 373 659 374 660 372 660 373 660 375 661 377 661 376 661 377 662 378 662 376 662 377 663 380 663 378 663 378 664 380 664 379 664 380 665 381 665 379 665 380 666 385 666 381 666 385 667 382 667 381 667 385 668 383 668 382 668 383 669 385 669 384 669 385 670 386 670 384 670 385 671 389 671 386 671 389 672 388 672 386 672 389 673 388 673 387 673 559 708 557 708 593 708 595 708 6 787 26 787 3 787 6 788 22 788 26 788 8 789 22 789 6 789 8 790 20 790 22 790 11 791 20 791 8 791 11 792 18 792 20 792 25 793 0 793 2 793 1 794 24 794 4 794 9 795 19 795 10 795 7 796 19 796 9 796 7 797 21 797 19 797 5 798 21 798 7 798 5 799 23 799 21 799 23 800 4 800 24 800 5 801 4 801 23 801 10 802 15 802 12 802 18 803 13 803 14 803 11 804 13 804 18 804 3 805 25 805 2 805 26 806 25 806 3 806 16 807 15 807 17 807 162 808 13 808 161 808 161 809 13 809 75 809 284 810 76 810 16 810 284 811 16 811 285 811 285 812 16 812 17 812 285 813 17 813 277 813 277 814 17 814 404 814 162 815 402 815 14 815 162 816 14 816 13 816 4 817 76 817 84 817 84 818 124 818 126 818 107 819 117 819 119 819 75 820 2 820 120 820 120 821 2 821 107 821 35 822 111 822 36 822 36 823 111 823 116 823 78 824 81 824 40 824 63 825 224 825 209 825 63 826 209 826 64 826 75 827 13 827 11 827 2 828 75 828 3 828 3 829 75 829 11 829 3 830 11 830 6 830 6 831 11 831 8 831 12 832 15 832 16 832 16 833 76 833 12 833 12 834 76 834 4 834 12 835 4 835 9 835 9 836 4 836 5 836 9 837 5 837 7 837 9 838 10 838 12 838 85 839 81 839 78 839 92 840 401 840 1 840 92 841 1 841 88 841 88 842 1 842 4 842 88 843 4 843 84 843 105 844 107 844 2 844 2 845 0 845 105 845 105 846 0 846 400 846 111 847 112 847 113 847 111 848 113 848 116 848 209 849 224 849 225 849 163 850 119 850 117 850 126 851 124 851 149 851 210 852 209 852 225 852 550 859 548 859 407 859 409 859 544 860 543 860 402 860 403 860 545 868 534 868 570 868 581 868 423 869 420 869 561 869 564 869 590 919 588 919 552 919 554 919 558 920 556 920 415 920 417 920 530 921 385 921 380 921 530 922 337 922 363 922 530 923 354 923 351 923 530 924 390 924 393 924 530 925 334 925 330 925 530 926 363 926 359 926 530 927 327 927 324 927 530 928 357 928 354 928 530 929 324 929 319 929 530 930 345 930 342 930 530 931 359 931 357 931 530 932 377 932 373 932 530 933 319 933 315 933 389 934 530 934 387 934 530 935 365 935 387 935 530 936 373 936 370 936 530 937 330 937 327 937 365 938 530 938 342 938 530 939 380 939 377 939 530 940 393 940 334 940 337 941 530 941 315 941 530 942 351 942 345 942 390 943 530 943 370 943 530 944 389 944 385 944 395 947 574 947 538 947 531 947 414 948 412 948 553 948 555 948 1 949 401 949 542 949 531 949 536 950 535 950 19 950 21 950 560 951 558 951 417 951 419 951 541 952 539 952 397 952 400 952 25 953 26 953 644 953 535 954 532 954 10 954 19 954 476 955 477 955 567 955 566 955 422 956 423 956 564 956 563 956 406 957 404 957 545 957 547 957 552 958 550 958 409 958 411 958 416 959 414 959 555 959 557 959 531 960 538 960 24 960 1 960 537 961 536 961 21 961 23 961 562 962 560 962 419 962 421 962 401 963 399 963 540 963 542 963 408 964 406 964 547 964 549 964 554 965 552 965 411 965 413 965 400 966 0 966 479 966 541 966 533 967 534 967 17 967 15 967 418 968 416 968 557 968 559 968 23 969 24 969 538 969 537 969 475 970 476 970 566 970 565 970 421 971 422 971 563 971 562 971 546 972 544 972 403 972 405 972 404 973 17 973 534 973 545 973 410 974 408 974 549 974 551 974 556 975 554 975 413 975 415 975 532 976 533 976 15 976 10 976 420 977 418 977 559 977 561 977 409 978 475 978 565 978 550 978 477 979 478 979 568 979 567 979 548 980 546 980 405 980 407 980 412 981 410 981 551 981 553 981 587 982 585 982 624 982 626 982 605 983 608 983 569 983 394 983 602 984 603 984 642 984 641 984 621 985 619 985 580 985 582 985 598 986 599 986 638 986 637 986 595 987 593 987 632 987 634 987 581 988 570 988 609 988 620 988 573 989 572 989 536 989 537 989 562 990 563 990 599 990 598 990 582 991 580 991 544 991 546 991 566 992 567 992 603 992 602 992 394 993 569 993 533 993 532 993 551 994 549 994 585 994 587 994 396 995 577 995 541 995 479 995 592 996 590 996 554 996 556 996 561 997 559 997 595 997 597 997 537 998 538 998 574 998 573 998 584 999 582 999 546 999 548 999 571 1000 394 1000 532 1000 535 1000 553 1001 551 1001 587 1001 589 1001 594 1002 592 1002 556 1002 558 1002 564 1003 561 1003 597 1003 600 1003 580 1004 579 1004 543 1004 544 1004 565 1005 566 1005 602 1005 601 1005 569 1006 570 1006 534 1006 533 1006 586 1007 584 1007 548 1007 550 1007 555 1008 553 1008 589 1008 591 1008 550 1009 565 1009 601 1009 586 1009 596 1010 594 1010 558 1010 560 1010 577 1011 575 1011 539 1011 541 1011 644 1012 22 1012 20 1012 563 1013 564 1013 600 1013 599 1013 547 1014 545 1014 581 1014 583 1014 567 1015 568 1015 604 1015 603 1015 572 1016 571 1016 535 1016 536 1016 588 1017 586 1017 550 1017 552 1017 531 1018 542 1018 578 1018 395 1018 557 1019 555 1019 591 1019 593 1019 598 1020 596 1020 560 1020 562 1020 542 1021 540 1021 576 1021 578 1021 549 1022 547 1022 583 1022 585 1022 607 1023 616 1023 577 1023 396 1023 631 1024 629 1024 590 1024 592 1024 597 1025 595 1025 634 1025 636 1025 623 1026 621 1026 582 1026 584 1026 610 1027 605 1027 394 1027 571 1027 589 1028 587 1028 626 1028 628 1028 573 1029 574 1029 613 1029 612 1029 633 1030 631 1030 592 1030 594 1030 611 1031 610 1031 571 1031 572 1031 600 1032 597 1032 636 1032 639 1032 619 1033 618 1033 579 1033 580 1033 601 1034 602 1034 641 1034 640 1034 608 1035 609 1035 570 1035 569 1035 625 1036 623 1036 584 1036 586 1036 591 1037 589 1037 628 1037 630 1037 612 1038 611 1038 572 1038 573 1038 586 1039 601 1039 640 1039 625 1039 635 1040 633 1040 594 1040 596 1040 616 1041 614 1041 575 1041 577 1041 599 1042 600 1042 639 1042 638 1042 583 1043 581 1043 620 1043 622 1043 603 1044 604 1044 643 1044 642 1044 627 1045 625 1045 586 1045 588 1045 607 1046 25 1046 644 1046 395 1047 578 1047 617 1047 606 1047 593 1048 591 1048 630 1048 632 1048 637 1049 635 1049 596 1049 598 1049 578 1050 576 1050 615 1050 617 1050 585 1051 583 1051 622 1051 624 1051 606 1052 613 1052 574 1052 395 1052 629 1053 627 1053 588 1053 590 1053 396 1054 25 1054 607 1054 644 1055 615 1055 398 1055 398 1056 615 1056 576 1056 614 1057 398 1057 575 1057 398 1058 540 1058 399 1058 644 1059 398 1059 614 1059 398 1060 576 1060 540 1060 539 1061 398 1061 397 1061 575 1063 398 1063 539 1063 622 1065 620 1065 644 1065 638 1066 639 1066 644 1066 644 1067 614 1067 616 1067 644 1068 633 1068 635 1068 625 1069 644 1069 640 1069 644 1070 611 1070 612 1070 630 1071 628 1071 644 1071 642 1072 643 1072 644 1072 644 1073 625 1073 627 1073 479 1074 25 1074 396 1074 606 1075 617 1075 644 1075 632 1076 630 1076 644 1076 644 1077 635 1077 637 1077 617 1078 615 1078 644 1078 624 1079 622 1079 644 1079 644 1080 613 1080 606 1080 644 1081 627 1081 629 1081 0 1082 25 1082 479 1082 620 1083 609 1083 644 1083 634 1084 632 1084 644 1084 637 1085 638 1085 644 1085 644 1086 619 1086 621 1086 641 1087 642 1087 644 1087 644 1088 608 1088 605 1088 626 1089 624 1089 644 1089 644 1090 616 1090 607 1090 644 1091 629 1091 631 1091 636 1092 634 1092 644 1092 644 1093 621 1093 623 1093 644 1094 605 1094 610 1094 628 1095 626 1095 644 1095 612 1096 613 1096 644 1096 644 1097 631 1097 633 1097 644 1098 610 1098 611 1098 639 1099 636 1099 644 1099 644 1100 618 1100 619 1100 640 1101 641 1101 644 1101 644 1102 609 1102 608 1102 644 1103 623 1103 625 1103 26 1128 22 1128 644 1128 644 1129 18 1129 20 1129 543 1130 14 1130 402 1130 478 1131 14 1131 568 1131 568 1132 14 1132 604 1132 579 1133 14 1133 543 1133 604 1134 14 1134 643 1134 618 1135 14 1135 579 1135 643 1136 14 1136 644 1136 644 1137 14 1137 618 1137 18 1138 14 1138 644 1138

+
+ + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

453 674 526 674 528 674 453 675 503 675 524 675 453 676 449 676 503 676 503 677 449 677 466 677 529 678 528 678 520 678 523 679 521 679 522 679 483 680 481 680 468 680 467 681 469 681 457 681 430 682 432 682 439 682 439 683 441 683 430 683 466 684 456 684 468 684 426 685 424 685 441 685 441 686 424 686 430 686 520 687 514 687 522 687 497 688 524 688 503 688 498 689 515 689 500 689 505 690 516 690 501 690 501 691 516 691 508 691 501 692 508 692 491 692 491 693 508 693 493 693 491 694 493 694 489 694 489 695 493 695 487 695 516 696 518 696 508 696 508 697 518 697 510 697 508 698 510 698 493 698 493 699 510 699 495 699 493 700 495 700 487 700 487 701 495 701 485 701 518 702 522 702 510 702 510 703 522 703 514 703 510 704 514 704 495 704 495 705 514 705 499 705 495 706 499 706 485 706 485 707 499 707 483 707 472 709 487 709 485 709 472 710 485 710 470 710 470 711 485 711 483 711 470 712 483 712 468 712 506 713 507 713 517 713 516 714 505 714 506 714 506 715 517 715 516 715 516 716 517 716 519 716 516 717 519 717 518 717 518 718 519 718 523 718 518 719 523 719 522 719 464 720 472 720 460 720 464 721 460 721 451 721 451 722 460 722 444 722 451 723 444 723 446 723 446 724 444 724 436 724 472 725 470 725 460 725 460 726 470 726 458 726 460 727 458 727 444 727 444 728 458 728 442 728 444 729 442 729 436 729 436 730 442 730 434 730 470 731 468 731 458 731 458 732 468 732 456 732 458 733 456 733 442 733 442 734 456 734 439 734 442 735 439 735 434 735 434 736 439 736 432 736 490 737 488 737 492 737 492 738 488 738 494 738 492 739 494 739 502 739 502 740 494 740 509 740 502 741 509 741 507 741 507 742 509 742 517 742 488 743 486 743 494 743 494 744 486 744 496 744 494 745 496 745 509 745 509 746 496 746 511 746 509 747 511 747 517 747 517 748 511 748 519 748 486 749 484 749 496 749 496 750 484 750 500 750 496 751 500 751 511 751 511 752 500 752 515 752 511 753 515 753 519 753 519 754 515 754 523 754 447 755 446 755 436 755 437 756 448 756 447 756 447 757 436 757 437 757 437 758 436 758 434 758 437 759 434 759 435 759 435 760 434 760 432 760 435 761 432 761 433 761 480 762 474 762 473 762 488 763 490 763 480 763 480 764 473 764 488 764 488 765 473 765 471 765 488 766 471 766 486 766 486 767 471 767 469 767 486 768 469 768 484 768 448 769 437 769 452 769 452 770 437 770 445 770 452 771 445 771 465 771 465 772 445 772 461 772 465 773 461 773 474 773 474 774 461 774 473 774 437 775 435 775 445 775 445 776 435 776 443 776 445 777 443 777 461 777 461 778 443 778 459 778 461 779 459 779 473 779 473 780 459 780 471 780 435 781 433 781 443 781 443 782 433 782 440 782 443 783 440 783 459 783 459 784 440 784 457 784 459 785 457 785 471 785 471 786 457 786 469 786 529 853 527 853 453 853 450 854 429 854 453 854 528 855 529 855 453 855 429 856 427 856 453 856 525 857 504 857 453 857 504 858 450 858 453 858 453 861 425 861 424 861 453 862 428 862 449 862 453 863 426 863 428 863 453 864 424 864 426 864 527 865 525 865 453 865 453 866 524 866 526 866 427 867 425 867 453 867 503 870 466 870 481 870 529 871 520 871 521 871 424 872 425 872 431 872 424 873 431 873 430 873 469 874 467 874 484 874 484 875 467 875 482 875 522 876 521 876 520 876 468 877 481 877 466 877 432 878 430 878 433 878 433 879 430 879 431 879 440 880 438 880 457 880 457 881 438 881 454 881 457 882 454 882 467 882 438 883 440 883 431 883 431 884 440 884 433 884 438 885 431 885 425 885 438 886 425 886 427 886 438 887 427 887 454 887 454 888 427 888 429 888 454 889 429 889 450 889 454 890 450 890 467 890 456 891 455 891 439 891 439 892 455 892 441 892 455 893 456 893 466 893 455 894 466 894 449 894 455 895 449 895 428 895 455 896 428 896 441 896 441 897 428 897 426 897 481 898 483 898 499 898 514 899 512 899 499 899 499 900 512 900 497 900 499 901 497 901 481 901 512 902 514 902 520 902 512 903 520 903 528 903 512 904 528 904 526 904 512 905 526 905 497 905 497 906 526 906 524 906 497 907 503 907 481 907 525 908 498 908 504 908 504 909 498 909 482 909 529 910 521 910 527 910 527 911 521 911 513 911 498 912 525 912 527 912 498 913 527 913 513 913 498 914 513 914 515 914 515 915 513 915 523 915 523 916 513 916 521 916 498 917 500 917 482 917 482 918 500 918 484 918 462 945 489 945 487 945 462 946 487 946 472 946 472 1062 463 1062 462 1062 463 1064 472 1064 464 1064 645 1104 450 1104 504 1104 504 1105 482 1105 645 1105 482 1106 467 1106 645 1106 467 1107 450 1107 645 1107 646 1108 452 1108 465 1108 489 1109 462 1109 646 1109 646 1110 506 1110 505 1110 646 1111 465 1111 474 1111 463 1112 464 1112 646 1112 447 1113 448 1113 646 1113 646 1114 492 1114 502 1114 646 1115 490 1115 492 1115 646 1116 502 1116 507 1116 646 1117 448 1117 452 1117 646 1118 507 1118 506 1118 446 1119 447 1119 646 1119 462 1120 463 1120 646 1120 501 1121 491 1121 646 1121 505 1122 501 1122 646 1122 451 1123 446 1123 646 1123 646 1124 480 1124 490 1124 646 1125 474 1125 480 1125 491 1126 489 1126 646 1126 464 1127 451 1127 646 1127

+
+
+ 1 +
+
+ + + + 7.481132 -6.50764 5.343665 + 0 0 1 46.69194 + 0 1 0 0.619768 + 1 0 0 63.5593 + 1 1 1 + + + + 4.076245 1.005454 5.903862 + 0 0 1 106.9363 + 0 1 0 3.163707 + 1 0 0 37.26105 + 1 1 1 + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 90.00001 + 1 1 1 + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.STL new file mode 100755 index 0000000..880c11b Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.dae new file mode 100755 index 0000000..18515d0 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:01 2016 GMT + Tue Jan 19 19:53:01 2016 GMT + Y_UP + + + + + + -0.0499122 7.98557e-17 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -4.71309e-17 -0.01 0.05 -4.67605e-17 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -4.98767e-17 1.78814e-09 -2.40741e-18 1.32111e-17 1.78814e-09 0.0397192 -0.00473093 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.00590586 -0.0395616 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.0252035 -0.031061 1.78814e-09 -0.0399297 0.00236963 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0393692 0.00707561 1.78814e-09 -0.0128108 0.0378931 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0193117 0.0350294 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0397192 0.00473093 1.78814e-09 0.0374968 0.0139281 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 0 1.38778e-17 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 8.0226e-17 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -5.28837e-17 -0.035 0.0496593 -5.23914e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -5.10248e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -4.88769e-17 -0.0420711 0.045 -4.60941e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -4.28661e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -3.94129e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0422893 -0.00503704 -0.000340743 0.0388809 -0.00939544 1.78814e-09 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0233192 -0.0324995 1.78814e-09 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.00823914 -0.0391423 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0425134 0.00252295 -0.000340743 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.038256 0.0116823 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.043038 0.0131426 -0.00133975 -0.0389744 0.0171683 -0.000340743 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.0252035 0.031061 1.78814e-09 -0.0305573 0.0296648 -0.000340743 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0136397 0.0403449 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00118533 0.0399824 1.78814e-09 0.00126203 0.0425695 -0.000340743 0.006288 0.0421214 -0.000340743 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.0353229 0.0237918 -0.000340743 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -4.35227e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -5.28385e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.0413967 -0.0100034 -0.000340743 0.0355863 -0.0182652 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0205612 -0.037296 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0172026 -0.0361119 1.78814e-09 -0.0213529 -0.0338238 1.78814e-09 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0227346 -0.0360124 -0.000340743 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0317942 -0.024272 1.78814e-09 -0.0305573 -0.0296648 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0366058 -0.0161249 1.78814e-09 -0.038256 -0.0116823 1.78814e-09 -0.0407314 -0.0124382 -0.000340743 -0.0393692 -0.00707561 1.78814e-09 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0419166 -0.00753344 -0.000340743 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0287003 0.027862 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0268343 0.0330707 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0172026 0.0361119 1.78814e-09 -0.0227346 0.0360124 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00877226 0.0416749 -0.000340743 -0.00823914 0.0391423 1.78814e-09 -0.00355184 0.039842 1.78814e-09 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 -0.00378166 0.04242 -0.000340743 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0066441 0.0445068 -0.00133975 0.00590586 0.0395616 1.78814e-09 0.0112257 0.0410821 -0.000340743 0.0150331 0.0370676 1.78814e-09 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0160058 0.039466 -0.000340743 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.0205612 0.037296 -0.000340743 0.0233192 0.0324995 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.024828 0.0346023 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0287463 0.031423 -0.000340743 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0378889 0.019447 -0.000340743 0.0355863 0.0182652 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0388809 0.00939544 1.78814e-09 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.043741 0.0105699 -0.00133975 0.04 -4.00796e-17 1.78814e-09 0.0422893 0.00503704 -0.000340743 0.0446841 0.00532229 -0.00133975 0.045 -4.67211e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -4.94567e-17 -0.00292893 0.0486603 -5.15433e-17 -0.005 0.05 -5.32541e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -8.7761e-19 0.998244 0.0592405 8.7761e-19 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 181 181 0 0 0 0 0 0 1 181 181 1 180 180 1 0 0 2 180 180 2 1 1 2 1 1 3 180 180 3 178 178 3 1 1 4 178 178 4 2 2 4 2 2 5 178 178 5 177 177 5 2 2 6 177 177 6 3 3 6 3 3 7 177 177 7 175 175 7 3 3 8 175 175 8 4 4 8 4 4 9 175 175 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 173 173 15 9 9 16 173 173 16 666 666 16 666 666 17 173 173 17 11 11 17 666 666 18 11 11 18 665 665 18 665 665 19 11 11 19 171 171 19 665 665 20 171 171 20 12 12 20 12 12 21 171 171 21 169 169 21 12 12 22 169 169 22 13 13 22 13 13 23 169 169 23 168 168 23 13 13 24 168 168 24 649 649 24 649 649 25 168 168 25 14 14 25 649 649 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 166 166 29 16 16 30 166 166 30 642 642 30 642 642 31 166 166 31 165 165 31 642 642 32 165 165 32 640 640 32 640 640 33 165 165 33 164 164 33 640 640 34 164 164 34 627 627 34 627 627 35 164 164 35 163 163 35 627 627 36 163 163 36 625 625 36 625 625 37 163 163 37 162 162 37 625 625 38 162 162 38 18 18 38 18 18 39 162 162 39 161 161 39 18 18 40 161 161 40 626 626 40 626 626 41 161 161 41 159 159 41 626 626 42 159 159 42 20 20 42 20 20 43 159 159 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 604 604 50 604 604 51 26 26 51 27 27 51 604 604 52 27 27 52 28 28 52 28 28 53 27 27 53 156 156 53 28 28 54 156 156 54 489 489 54 489 489 55 156 156 55 29 29 55 489 489 56 29 29 56 603 603 56 603 603 57 29 29 57 30 30 57 603 603 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 151 151 67 39 39 68 151 151 68 40 40 68 40 40 69 151 151 69 41 41 69 40 40 70 41 41 70 490 490 70 490 490 71 41 41 71 42 42 71 490 490 72 42 42 72 43 43 72 43 43 73 42 42 73 148 148 73 43 43 74 148 148 74 44 44 74 44 44 75 148 148 75 147 147 75 44 44 76 147 147 76 566 566 76 566 566 77 147 147 77 146 146 77 566 566 78 146 146 78 45 45 78 45 45 79 146 146 79 46 46 79 45 45 80 46 46 80 554 554 80 554 554 81 46 46 81 145 145 81 554 554 82 145 145 82 494 494 82 494 494 83 145 145 83 219 219 83 494 494 84 219 219 84 553 553 84 553 553 85 219 219 85 218 218 85 553 553 86 218 218 86 47 47 86 47 47 87 218 218 87 217 217 87 47 47 88 217 217 88 48 48 88 48 48 89 217 217 89 215 215 89 48 48 90 215 215 90 49 49 90 49 49 91 215 215 91 50 50 91 49 49 92 50 50 92 807 807 92 807 807 93 50 50 93 51 51 93 807 807 94 51 51 94 483 483 94 483 483 95 51 51 95 52 52 95 483 483 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 211 211 99 800 800 100 211 211 100 56 56 100 56 56 101 211 211 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 787 787 108 787 787 109 62 62 109 210 210 109 787 787 110 210 210 110 63 63 110 63 63 111 210 210 111 64 64 111 63 63 112 64 64 112 781 781 112 781 781 113 64 64 113 65 65 113 781 781 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 780 780 116 780 780 117 67 67 117 208 208 117 780 780 118 208 208 118 766 766 118 766 766 119 208 208 119 207 207 119 766 766 120 207 207 120 68 68 120 68 68 121 207 207 121 206 206 121 68 68 122 206 206 122 69 69 122 69 69 123 206 206 123 203 203 123 69 69 124 203 203 124 70 70 124 70 70 125 203 203 125 202 202 125 70 70 126 202 202 126 71 71 126 71 71 127 202 202 127 201 201 127 71 71 128 201 201 128 485 485 128 485 485 129 201 201 129 72 72 129 485 485 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 749 749 134 749 749 135 76 76 135 77 77 135 749 749 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 197 197 139 80 80 140 197 197 140 81 81 140 81 81 141 197 197 141 82 82 141 81 81 142 82 82 142 486 486 142 486 486 143 82 82 143 83 83 143 486 486 144 83 83 144 728 728 144 728 728 145 83 83 145 195 195 145 728 728 146 195 195 146 84 84 146 84 84 147 195 195 147 85 85 147 84 84 148 85 85 148 727 727 148 727 727 149 85 85 149 86 86 149 727 727 150 86 86 150 87 87 150 87 87 151 86 86 151 192 192 151 87 87 152 192 192 152 88 88 152 88 88 153 192 192 153 191 191 153 88 88 154 191 191 154 89 89 154 89 89 155 191 191 155 190 190 155 89 89 156 190 190 156 715 715 156 715 715 157 190 190 157 90 90 157 715 715 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 187 187 161 93 93 162 187 187 162 94 94 162 94 94 163 187 187 163 186 186 163 94 94 164 186 186 164 697 697 164 697 697 165 186 186 165 95 95 165 697 697 166 95 95 166 96 96 166 96 96 167 95 95 167 184 184 167 96 96 168 184 184 168 487 487 168 487 487 169 184 184 169 183 183 169 487 487 170 183 183 170 696 696 170 696 696 171 183 183 171 97 97 171 696 696 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 686 686 176 686 686 177 101 101 177 102 102 177 686 686 178 102 102 178 103 103 178 103 103 179 102 102 179 181 181 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 562 562 182 560 560 182 105 105 182 105 105 183 560 560 183 496 496 183 105 105 184 496 496 184 106 106 184 585 585 185 578 578 185 105 105 185 105 105 186 578 578 186 571 571 186 105 105 187 571 571 187 562 562 187 597 597 188 107 107 188 105 105 188 105 105 189 107 107 189 501 501 189 105 105 190 501 501 190 585 585 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 598 598 192 105 105 193 598 598 193 597 597 193 506 506 194 505 505 194 105 105 194 105 105 195 505 505 195 620 620 195 105 105 196 620 620 196 109 109 196 110 110 197 633 633 197 105 105 197 105 105 198 633 633 198 632 632 198 105 105 199 632 632 199 506 506 199 661 661 200 658 658 200 105 105 200 105 105 201 658 658 201 660 660 201 105 105 202 660 660 202 110 110 202 675 675 203 673 673 203 105 105 203 105 105 204 673 673 204 672 672 204 105 105 205 672 672 205 661 661 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 675 675 208 701 701 209 524 524 209 105 105 209 105 105 210 524 524 210 523 523 210 105 105 211 523 523 211 113 113 211 530 530 212 713 713 212 105 105 212 105 105 213 713 713 213 714 714 213 105 105 214 714 714 214 701 701 214 114 114 215 722 722 215 105 105 215 105 105 216 722 722 216 721 721 216 105 105 217 721 721 217 530 530 217 541 541 218 738 738 218 105 105 218 105 105 219 738 738 219 737 737 219 105 105 220 737 737 220 114 114 220 757 757 221 115 115 221 105 105 221 105 105 222 115 115 222 755 755 222 105 105 223 755 755 223 541 541 223 772 772 224 771 771 224 105 105 224 105 105 225 771 771 225 116 116 225 105 105 226 116 116 226 757 757 226 795 795 227 117 117 227 105 105 227 105 105 228 117 117 228 786 786 228 105 105 229 786 786 229 772 772 229 118 118 230 806 806 230 105 105 230 105 105 231 806 806 231 119 119 231 105 105 232 119 119 232 795 795 232 482 482 233 480 480 233 138 138 233 482 482 234 138 138 234 120 120 234 431 431 235 429 429 235 138 138 235 138 138 236 429 429 236 121 121 236 138 138 237 121 121 237 120 120 237 122 122 238 123 123 238 138 138 238 138 138 239 123 123 239 124 124 239 138 138 240 124 124 240 431 431 240 128 128 241 434 434 241 138 138 241 138 138 242 434 434 242 125 125 242 138 138 243 125 125 243 122 122 243 436 436 244 126 126 244 138 138 244 138 138 245 126 126 245 127 127 245 138 138 246 127 127 246 128 128 246 129 129 247 438 438 247 138 138 247 138 138 248 438 438 248 130 130 248 138 138 249 130 130 249 436 436 249 441 441 250 131 131 250 138 138 250 138 138 251 131 131 251 440 440 251 138 138 252 440 440 252 129 129 252 132 132 253 443 443 253 138 138 253 138 138 254 443 443 254 133 133 254 138 138 255 133 133 255 441 441 255 449 449 256 447 447 256 138 138 256 138 138 257 447 447 257 444 444 257 138 138 258 444 444 258 132 132 258 453 453 259 134 134 259 138 138 259 138 138 260 134 134 260 450 450 260 138 138 261 450 450 261 449 449 261 455 455 262 135 135 262 138 138 262 138 138 263 135 135 263 136 136 263 138 138 264 136 136 264 453 453 264 460 460 265 458 458 265 138 138 265 138 138 266 458 458 266 137 137 266 138 138 267 137 137 267 455 455 267 463 463 268 462 462 268 138 138 268 138 138 269 462 462 269 461 461 269 138 138 270 461 461 270 460 460 270 467 467 271 466 466 271 138 138 271 138 138 272 466 466 272 464 464 272 138 138 273 464 464 273 463 463 273 470 470 274 139 139 274 138 138 274 138 138 275 139 139 275 468 468 275 138 138 276 468 468 276 467 467 276 142 142 277 140 140 277 138 138 277 138 138 278 140 140 278 141 141 278 138 138 279 141 141 279 470 470 279 477 477 280 476 476 280 138 138 280 138 138 281 476 476 281 474 474 281 138 138 282 474 474 282 142 142 282 480 480 283 143 143 283 138 138 283 138 138 284 143 143 284 144 144 284 138 138 285 144 144 285 477 477 285 219 219 286 268 268 286 270 270 286 219 219 287 145 145 287 268 268 287 268 268 288 145 145 288 46 46 288 268 268 289 46 46 289 266 266 289 266 266 290 46 46 290 146 146 290 266 266 291 146 146 291 264 264 291 264 264 292 146 146 292 147 147 292 264 264 293 147 147 293 149 149 293 149 149 294 147 147 294 148 148 294 148 148 295 42 42 295 149 149 295 149 149 296 42 42 296 41 41 296 149 149 297 41 41 297 150 150 297 41 41 298 151 151 298 150 150 298 150 150 299 151 151 299 38 38 299 150 150 300 38 38 300 152 152 300 152 152 301 38 38 301 37 37 301 152 152 302 37 37 302 153 153 302 37 37 303 33 33 303 153 153 303 153 153 304 33 33 304 32 32 304 153 153 305 32 32 305 260 260 305 32 32 306 30 30 306 260 260 306 260 260 307 30 30 307 29 29 307 260 260 308 29 29 308 154 154 308 154 154 309 29 29 309 156 156 309 154 154 310 156 156 310 155 155 310 155 155 311 156 156 311 27 27 311 155 155 312 27 27 312 157 157 312 157 157 313 27 27 313 26 26 313 26 26 314 24 24 314 157 157 314 157 157 315 24 24 315 22 22 315 157 157 316 22 22 316 158 158 316 22 22 317 19 19 317 158 158 317 158 158 318 19 19 318 159 159 318 158 158 319 159 159 319 160 160 319 160 160 320 159 159 320 161 161 320 160 160 321 161 161 321 254 254 321 254 254 322 161 161 322 162 162 322 254 254 323 162 162 323 253 253 323 253 253 324 162 162 324 163 163 324 163 163 325 164 164 325 253 253 325 253 253 326 164 164 326 165 165 326 253 253 327 165 165 327 252 252 327 252 252 328 165 165 328 166 166 328 252 252 329 166 166 329 167 167 329 167 167 330 166 166 330 17 17 330 167 167 331 17 17 331 250 250 331 250 250 332 17 17 332 14 14 332 14 14 333 168 168 333 250 250 333 250 250 334 168 168 334 169 169 334 250 250 335 169 169 335 170 170 335 169 169 336 171 171 336 170 170 336 170 170 337 171 171 337 11 11 337 170 170 338 11 11 338 172 172 338 172 172 339 11 11 339 173 173 339 172 172 340 173 173 340 247 247 340 247 247 341 173 173 341 10 10 341 247 247 342 10 10 342 174 174 342 174 174 343 10 10 343 7 7 343 7 7 344 5 5 344 174 174 344 174 174 345 5 5 345 175 175 345 174 174 346 175 175 346 176 176 346 176 176 347 175 175 347 177 177 347 176 176 348 177 177 348 179 179 348 177 177 349 178 178 349 179 179 349 179 179 350 178 178 350 180 180 350 179 179 351 180 180 351 182 182 351 180 180 352 181 181 352 182 182 352 182 182 353 181 181 353 102 102 353 182 182 354 102 102 354 242 242 354 102 102 355 101 101 355 242 242 355 242 242 356 101 101 356 100 100 356 242 242 357 100 100 357 240 240 357 240 240 358 100 100 358 97 97 358 240 240 359 97 97 359 239 239 359 239 239 360 97 97 360 183 183 360 239 239 361 183 183 361 185 185 361 185 185 362 183 183 362 184 184 362 184 184 363 95 95 363 185 185 363 185 185 364 95 95 364 186 186 364 185 185 365 186 186 365 237 237 365 237 237 366 186 186 366 187 187 366 237 237 367 187 187 367 188 188 367 187 187 368 92 92 368 188 188 368 188 188 369 92 92 369 90 90 369 188 188 370 90 90 370 189 189 370 90 90 371 190 190 371 189 189 371 189 189 372 190 190 372 191 191 372 189 189 373 191 191 373 235 235 373 191 191 374 192 192 374 235 235 374 235 235 375 192 192 375 86 86 375 235 235 376 86 86 376 193 193 376 193 193 377 86 86 377 85 85 377 193 193 378 85 85 378 194 194 378 194 194 379 85 85 379 195 195 379 194 194 380 195 195 380 196 196 380 196 196 381 195 195 381 83 83 381 83 83 382 82 82 382 196 196 382 196 196 383 82 82 383 197 197 383 196 196 384 197 197 384 198 198 384 198 198 385 197 197 385 79 79 385 198 198 386 79 79 386 199 199 386 79 79 387 77 77 387 199 199 387 199 199 388 77 77 388 76 76 388 199 199 389 76 76 389 200 200 389 76 76 390 74 74 390 200 200 390 200 200 391 74 74 391 72 72 391 200 200 392 72 72 392 230 230 392 72 72 393 201 201 393 230 230 393 230 230 394 201 201 394 202 202 394 230 230 395 202 202 395 229 229 395 229 229 396 202 202 396 203 203 396 229 229 397 203 203 397 204 204 397 204 204 398 203 203 398 206 206 398 204 204 399 206 206 399 205 205 399 205 205 400 206 206 400 207 207 400 207 207 401 208 208 401 205 205 401 205 205 402 208 208 402 67 67 402 205 205 403 67 67 403 226 226 403 226 226 404 67 67 404 65 65 404 226 226 405 65 65 405 209 209 405 65 65 406 64 64 406 209 209 406 209 209 407 64 64 407 210 210 407 209 209 408 210 210 408 223 223 408 210 210 409 62 62 409 223 223 409 223 223 410 62 62 410 60 60 410 223 223 411 60 60 411 222 222 411 60 60 412 59 59 412 222 222 412 222 222 413 59 59 413 55 55 413 222 222 414 55 55 414 221 221 414 221 221 415 55 55 415 211 211 415 221 221 416 211 211 416 212 212 416 212 212 417 211 211 417 54 54 417 212 212 418 54 54 418 220 220 418 220 220 419 54 54 419 52 52 419 52 52 420 51 51 420 220 220 420 220 220 421 51 51 421 213 213 421 220 220 422 213 213 422 214 214 422 214 214 423 213 213 423 215 215 423 214 214 424 215 215 424 216 216 424 216 216 425 215 215 425 217 217 425 216 216 426 217 217 426 270 270 426 270 270 427 217 217 427 218 218 427 270 270 428 218 218 428 219 219 428 214 214 429 272 272 429 220 220 429 220 220 430 272 272 430 275 275 430 220 220 431 275 275 431 212 212 431 212 212 432 275 275 432 277 277 432 212 212 433 277 277 433 221 221 433 221 221 434 277 277 434 278 278 434 221 221 435 278 278 435 222 222 435 222 222 436 278 278 436 224 224 436 222 222 437 224 224 437 223 223 437 223 223 438 224 224 438 281 281 438 223 223 439 281 281 439 209 209 439 209 209 440 281 281 440 225 225 440 209 209 441 225 225 441 226 226 441 226 226 442 225 225 442 283 283 442 226 226 443 283 283 443 205 205 443 205 205 444 283 283 444 227 227 444 205 205 445 227 227 445 204 204 445 204 204 446 227 227 446 228 228 446 204 204 447 228 228 447 229 229 447 229 229 448 228 228 448 231 231 448 229 229 449 231 231 449 230 230 449 230 230 450 231 231 450 288 288 450 230 230 451 288 288 451 200 200 451 200 200 452 288 288 452 232 232 452 200 200 453 232 232 453 199 199 453 199 199 454 232 232 454 233 233 454 199 199 455 233 233 455 198 198 455 198 198 456 233 233 456 234 234 456 198 198 457 234 234 457 196 196 457 196 196 458 234 234 458 292 292 458 196 196 459 292 292 459 194 194 459 194 194 460 292 292 460 293 293 460 194 194 461 293 293 461 193 193 461 193 193 462 293 293 462 294 294 462 193 193 463 294 294 463 235 235 463 235 235 464 294 294 464 236 236 464 235 235 465 236 236 465 189 189 465 189 189 466 236 236 466 297 297 466 189 189 467 297 297 467 188 188 467 188 188 468 297 297 468 298 298 468 188 188 469 298 298 469 237 237 469 237 237 470 298 298 470 238 238 470 237 237 471 238 238 471 185 185 471 185 185 472 238 238 472 299 299 472 185 185 473 299 299 473 239 239 473 239 239 474 299 299 474 241 241 474 239 239 475 241 241 475 240 240 475 240 240 476 241 241 476 301 301 476 240 240 477 301 301 477 242 242 477 242 242 478 301 301 478 243 243 478 242 242 479 243 243 479 182 182 479 182 182 480 243 243 480 303 303 480 182 182 481 303 303 481 179 179 481 179 179 482 303 303 482 244 244 482 179 179 483 244 244 483 176 176 483 176 176 484 244 244 484 245 245 484 176 176 485 245 245 485 174 174 485 174 174 486 245 245 486 246 246 486 174 174 487 246 246 487 247 247 487 247 247 488 246 246 488 248 248 488 247 247 489 248 248 489 172 172 489 172 172 490 248 248 490 249 249 490 172 172 491 249 249 491 170 170 491 170 170 492 249 249 492 308 308 492 170 170 493 308 308 493 250 250 493 250 250 494 308 308 494 309 309 494 250 250 495 309 309 495 167 167 495 167 167 496 309 309 496 251 251 496 167 167 497 251 251 497 252 252 497 252 252 498 251 251 498 310 310 498 252 252 499 310 310 499 253 253 499 253 253 500 310 310 500 255 255 500 253 253 501 255 255 501 254 254 501 254 254 502 255 255 502 256 256 502 254 254 503 256 256 503 160 160 503 160 160 504 256 256 504 257 257 504 160 160 505 257 257 505 158 158 505 158 158 506 257 257 506 258 258 506 158 158 507 258 258 507 157 157 507 157 157 508 258 258 508 259 259 508 157 157 509 259 259 509 155 155 509 155 155 510 259 259 510 316 316 510 155 155 511 316 316 511 154 154 511 154 154 512 316 316 512 261 261 512 154 154 513 261 261 513 260 260 513 260 260 514 261 261 514 319 319 514 260 260 515 319 319 515 153 153 515 153 153 516 319 319 516 262 262 516 153 153 517 262 262 517 152 152 517 152 152 518 262 262 518 321 321 518 152 152 519 321 321 519 150 150 519 150 150 520 321 321 520 263 263 520 150 150 521 263 263 521 149 149 521 149 149 522 263 263 522 322 322 522 149 149 523 322 322 523 264 264 523 264 264 524 322 322 524 265 265 524 264 264 525 265 265 525 266 266 525 266 266 526 265 265 526 267 267 526 266 266 527 267 267 527 268 268 527 268 268 528 267 267 528 269 269 528 268 268 529 269 269 529 270 270 529 270 270 530 269 269 530 325 325 530 270 270 531 325 325 531 216 216 531 216 216 532 325 325 532 271 271 532 216 216 533 271 271 533 214 214 533 214 214 534 271 271 534 272 272 534 271 271 535 273 273 535 272 272 535 272 272 536 273 273 536 274 274 536 272 272 537 274 274 537 275 275 537 275 275 538 274 274 538 329 329 538 275 275 539 329 329 539 277 277 539 277 277 540 329 329 540 276 276 540 277 277 541 276 276 541 278 278 541 278 278 542 276 276 542 279 279 542 278 278 543 279 279 543 224 224 543 224 224 544 279 279 544 280 280 544 224 224 545 280 280 545 281 281 545 281 281 546 280 280 546 332 332 546 281 281 547 332 332 547 225 225 547 225 225 548 332 332 548 282 282 548 225 225 549 282 282 549 283 283 549 283 283 550 282 282 550 284 284 550 283 283 551 284 284 551 227 227 551 227 227 552 284 284 552 285 285 552 227 227 553 285 285 553 228 228 553 228 228 554 285 285 554 286 286 554 228 228 555 286 286 555 231 231 555 231 231 556 286 286 556 287 287 556 231 231 557 287 287 557 288 288 557 288 288 558 287 287 558 289 289 558 288 288 559 289 289 559 232 232 559 232 232 560 289 289 560 290 290 560 232 232 561 290 290 561 233 233 561 233 233 562 290 290 562 291 291 562 233 233 563 291 291 563 234 234 563 234 234 564 291 291 564 336 336 564 234 234 565 336 336 565 292 292 565 292 292 566 336 336 566 337 337 566 292 292 567 337 337 567 293 293 567 293 293 568 337 337 568 338 338 568 293 293 569 338 338 569 294 294 569 294 294 570 338 338 570 295 295 570 294 294 571 295 295 571 236 236 571 236 236 572 295 295 572 296 296 572 236 236 573 296 296 573 297 297 573 297 297 574 296 296 574 343 343 574 297 297 575 343 343 575 298 298 575 298 298 576 343 343 576 344 344 576 298 298 577 344 344 577 238 238 577 238 238 578 344 344 578 345 345 578 238 238 579 345 345 579 299 299 579 299 299 580 345 345 580 300 300 580 299 299 581 300 300 581 241 241 581 241 241 582 300 300 582 346 346 582 241 241 583 346 346 583 301 301 583 301 301 584 346 346 584 302 302 584 301 301 585 302 302 585 243 243 585 243 243 586 302 302 586 348 348 586 243 243 587 348 348 587 303 303 587 303 303 588 348 348 588 304 304 588 303 303 589 304 304 589 244 244 589 244 244 590 304 304 590 305 305 590 244 244 591 305 305 591 245 245 591 245 245 592 305 305 592 350 350 592 245 245 593 350 350 593 246 246 593 246 246 594 350 350 594 306 306 594 246 246 595 306 306 595 248 248 595 248 248 596 306 306 596 351 351 596 248 248 597 351 351 597 249 249 597 249 249 598 351 351 598 307 307 598 249 249 599 307 307 599 308 308 599 308 308 600 307 307 600 354 354 600 308 308 601 354 354 601 309 309 601 309 309 602 354 354 602 355 355 602 309 309 603 355 355 603 251 251 603 251 251 604 355 355 604 356 356 604 251 251 605 356 356 605 310 310 605 310 310 606 356 356 606 357 357 606 310 310 607 357 357 607 255 255 607 255 255 608 357 357 608 311 311 608 255 255 609 311 311 609 256 256 609 256 256 610 311 311 610 312 312 610 256 256 611 312 312 611 257 257 611 257 257 612 312 312 612 313 313 612 257 257 613 313 313 613 258 258 613 258 258 614 313 313 614 314 314 614 258 258 615 314 314 615 259 259 615 259 259 616 314 314 616 315 315 616 259 259 617 315 315 617 316 316 617 316 316 618 315 315 618 317 317 618 316 316 619 317 317 619 261 261 619 261 261 620 317 317 620 318 318 620 261 261 621 318 318 621 319 319 621 319 319 622 318 318 622 360 360 622 319 319 623 360 360 623 262 262 623 262 262 624 360 360 624 320 320 624 262 262 625 320 320 625 321 321 625 321 321 626 320 320 626 362 362 626 321 321 627 362 362 627 263 263 627 263 263 628 362 362 628 365 365 628 263 263 629 365 365 629 322 322 629 322 322 630 365 365 630 323 323 630 322 322 631 323 323 631 265 265 631 265 265 632 323 323 632 324 324 632 265 265 633 324 324 633 267 267 633 267 267 634 324 324 634 367 367 634 267 267 635 367 367 635 269 269 635 269 269 636 367 367 636 368 368 636 269 269 637 368 368 637 325 325 637 325 325 638 368 368 638 369 369 638 325 325 639 369 369 639 271 271 639 271 271 640 369 369 640 273 273 640 369 369 641 371 371 641 273 273 641 273 273 642 371 371 642 326 326 642 273 273 643 326 326 643 274 274 643 274 274 644 326 326 644 327 327 644 274 274 645 327 327 645 329 329 645 329 329 646 327 327 646 328 328 646 329 329 647 328 328 647 276 276 647 276 276 648 328 328 648 330 330 648 276 276 649 330 330 649 279 279 649 279 279 650 330 330 650 331 331 650 279 279 651 331 331 651 280 280 651 280 280 652 331 331 652 375 375 652 280 280 653 375 375 653 332 332 653 332 332 654 375 375 654 377 377 654 332 332 655 377 377 655 282 282 655 282 282 656 377 377 656 379 379 656 282 282 657 379 379 657 284 284 657 284 284 658 379 379 658 333 333 658 284 284 659 333 333 659 285 285 659 285 285 660 333 333 660 381 381 660 285 285 661 381 381 661 286 286 661 286 286 662 381 381 662 383 383 662 286 286 663 383 383 663 287 287 663 287 287 664 383 383 664 334 334 664 287 287 665 334 334 665 289 289 665 289 289 666 334 334 666 385 385 666 289 289 667 385 385 667 290 290 667 290 290 668 385 385 668 335 335 668 290 290 669 335 335 669 291 291 669 291 291 670 335 335 670 386 386 670 291 291 671 386 386 671 336 336 671 336 336 672 386 386 672 389 389 672 336 336 673 389 389 673 337 337 673 337 337 674 389 389 674 339 339 674 337 337 675 339 339 675 338 338 675 338 338 676 339 339 676 340 340 676 338 338 677 340 340 677 295 295 677 295 295 678 340 340 678 341 341 678 295 295 679 341 341 679 296 296 679 296 296 680 341 341 680 342 342 680 296 296 681 342 342 681 343 343 681 343 343 682 342 342 682 393 393 682 343 343 683 393 393 683 344 344 683 344 344 684 393 393 684 394 394 684 344 344 685 394 394 685 345 345 685 345 345 686 394 394 686 396 396 686 345 345 687 396 396 687 300 300 687 300 300 688 396 396 688 397 397 688 300 300 689 397 397 689 346 346 689 346 346 690 397 397 690 347 347 690 346 346 691 347 347 691 302 302 691 302 302 692 347 347 692 398 398 692 302 302 693 398 398 693 348 348 693 348 348 694 398 398 694 400 400 694 348 348 695 400 400 695 304 304 695 304 304 696 400 400 696 349 349 696 304 304 697 349 349 697 305 305 697 305 305 698 349 349 698 402 402 698 305 305 699 402 402 699 350 350 699 350 350 700 402 402 700 403 403 700 350 350 701 403 403 701 306 306 701 306 306 702 403 403 702 404 404 702 306 306 703 404 404 703 351 351 703 351 351 704 404 404 704 352 352 704 351 351 705 352 352 705 307 307 705 307 307 706 352 352 706 406 406 706 307 307 707 406 406 707 354 354 707 354 354 708 406 406 708 353 353 708 354 354 709 353 353 709 355 355 709 355 355 710 353 353 710 409 409 710 355 355 711 409 409 711 356 356 711 356 356 712 409 409 712 410 410 712 356 356 713 410 410 713 357 357 713 357 357 714 410 410 714 411 411 714 357 357 715 411 411 715 311 311 715 311 311 716 411 411 716 413 413 716 311 311 717 413 413 717 312 312 717 312 312 718 413 413 718 358 358 718 312 312 719 358 358 719 313 313 719 313 313 720 358 358 720 359 359 720 313 313 721 359 359 721 314 314 721 314 314 722 359 359 722 417 417 722 314 314 723 417 417 723 315 315 723 315 315 724 417 417 724 418 418 724 315 315 725 418 418 725 317 317 725 317 317 726 418 418 726 420 420 726 317 317 727 420 420 727 318 318 727 318 318 728 420 420 728 421 421 728 318 318 729 421 421 729 360 360 729 360 360 730 421 421 730 361 361 730 360 360 731 361 361 731 320 320 731 320 320 732 361 361 732 363 363 732 320 320 733 363 363 733 362 362 733 362 362 734 363 363 734 364 364 734 362 362 735 364 364 735 365 365 735 365 365 736 364 364 736 366 366 736 365 365 737 366 366 737 323 323 737 323 323 738 366 366 738 424 424 738 323 323 739 424 424 739 324 324 739 324 324 740 424 424 740 425 425 740 324 324 741 425 425 741 367 367 741 367 367 742 425 425 742 426 426 742 367 367 743 426 426 743 368 368 743 368 368 744 426 426 744 370 370 744 368 368 745 370 370 745 369 369 745 369 369 746 370 370 746 371 371 746 370 370 747 427 427 747 371 371 747 371 371 748 427 427 748 372 372 748 371 371 749 372 372 749 326 326 749 326 326 750 372 372 750 430 430 750 326 326 751 430 430 751 327 327 751 327 327 752 430 430 752 373 373 752 327 327 753 373 373 753 328 328 753 328 328 754 373 373 754 432 432 754 328 328 755 432 432 755 330 330 755 330 330 756 432 432 756 374 374 756 330 330 757 374 374 757 331 331 757 331 331 758 374 374 758 433 433 758 331 331 759 433 433 759 375 375 759 375 375 760 433 433 760 376 376 760 375 375 761 376 376 761 377 377 761 377 377 762 376 376 762 378 378 762 377 377 763 378 378 763 379 379 763 379 379 764 378 378 764 380 380 764 379 379 765 380 380 765 333 333 765 333 333 766 380 380 766 435 435 766 333 333 767 435 435 767 381 381 767 381 381 768 435 435 768 382 382 768 381 381 769 382 382 769 383 383 769 383 383 770 382 382 770 384 384 770 383 383 771 384 384 771 334 334 771 334 334 772 384 384 772 437 437 772 334 334 773 437 437 773 385 385 773 385 385 774 437 437 774 439 439 774 385 385 775 439 439 775 335 335 775 335 335 776 439 439 776 387 387 776 335 335 777 387 387 777 386 386 777 386 386 778 387 387 778 388 388 778 386 386 779 388 388 779 389 389 779 389 389 780 388 388 780 442 442 780 389 389 781 442 442 781 339 339 781 339 339 782 442 442 782 390 390 782 339 339 783 390 390 783 340 340 783 340 340 784 390 390 784 391 391 784 340 340 785 391 391 785 341 341 785 341 341 786 391 391 786 392 392 786 341 341 787 392 392 787 342 342 787 342 342 788 392 392 788 445 445 788 342 342 789 445 445 789 393 393 789 393 393 790 445 445 790 446 446 790 393 393 791 446 446 791 394 394 791 394 394 792 446 446 792 395 395 792 394 394 793 395 395 793 396 396 793 396 396 794 395 395 794 448 448 794 396 396 795 448 448 795 397 397 795 397 397 796 448 448 796 451 451 796 397 397 797 451 451 797 347 347 797 347 347 798 451 451 798 452 452 798 347 347 799 452 452 799 398 398 799 398 398 800 452 452 800 399 399 800 398 398 801 399 399 801 400 400 801 400 400 802 399 399 802 454 454 802 400 400 803 454 454 803 349 349 803 349 349 804 454 454 804 401 401 804 349 349 805 401 401 805 402 402 805 402 402 806 401 401 806 456 456 806 402 402 807 456 456 807 403 403 807 403 403 808 456 456 808 457 457 808 403 403 809 457 457 809 404 404 809 404 404 810 457 457 810 459 459 810 404 404 811 459 459 811 352 352 811 352 352 812 459 459 812 405 405 812 352 352 813 405 405 813 406 406 813 406 406 814 405 405 814 407 407 814 406 406 815 407 407 815 353 353 815 353 353 816 407 407 816 408 408 816 353 353 817 408 408 817 409 409 817 409 409 818 408 408 818 465 465 818 409 409 819 465 465 819 410 410 819 410 410 820 465 465 820 412 412 820 410 410 821 412 412 821 411 411 821 411 411 822 412 412 822 414 414 822 411 411 823 414 414 823 413 413 823 413 413 824 414 414 824 415 415 824 413 413 825 415 415 825 358 358 825 358 358 826 415 415 826 469 469 826 358 358 827 469 469 827 359 359 827 359 359 828 469 469 828 416 416 828 359 359 829 416 416 829 417 417 829 417 417 830 416 416 830 471 471 830 417 417 831 471 471 831 418 418 831 418 418 832 471 471 832 419 419 832 418 418 833 419 419 833 420 420 833 420 420 834 419 419 834 472 472 834 420 420 835 472 472 835 421 421 835 421 421 836 472 472 836 473 473 836 421 421 837 473 473 837 361 361 837 361 361 838 473 473 838 475 475 838 361 361 839 475 475 839 363 363 839 363 363 840 475 475 840 422 422 840 363 363 841 422 422 841 364 364 841 364 364 842 422 422 842 423 423 842 364 364 843 423 423 843 366 366 843 366 366 844 423 423 844 478 478 844 366 366 845 478 478 845 424 424 845 424 424 846 478 478 846 479 479 846 424 424 847 479 479 847 425 425 847 425 425 848 479 479 848 481 481 848 425 425 849 481 481 849 426 426 849 426 426 850 481 481 850 428 428 850 426 426 851 428 428 851 370 370 851 370 370 852 428 428 852 427 427 852 428 428 853 120 120 853 427 427 853 427 427 854 120 120 854 121 121 854 427 427 855 121 121 855 372 372 855 372 372 856 121 121 856 429 429 856 372 372 857 429 429 857 430 430 857 430 430 858 429 429 858 431 431 858 430 430 859 431 431 859 373 373 859 373 373 860 431 431 860 124 124 860 373 373 861 124 124 861 432 432 861 432 432 862 124 124 862 123 123 862 432 432 863 123 123 863 374 374 863 374 374 864 123 123 864 122 122 864 374 374 865 122 122 865 433 433 865 433 433 866 122 122 866 125 125 866 433 433 867 125 125 867 376 376 867 376 376 868 125 125 868 434 434 868 376 376 869 434 434 869 378 378 869 378 378 870 434 434 870 128 128 870 378 378 871 128 128 871 380 380 871 380 380 872 128 128 872 127 127 872 380 380 873 127 127 873 435 435 873 435 435 874 127 127 874 126 126 874 435 435 875 126 126 875 382 382 875 382 382 876 126 126 876 436 436 876 382 382 877 436 436 877 384 384 877 384 384 878 436 436 878 130 130 878 384 384 879 130 130 879 437 437 879 437 437 880 130 130 880 438 438 880 437 437 881 438 438 881 439 439 881 439 439 882 438 438 882 129 129 882 439 439 883 129 129 883 387 387 883 387 387 884 129 129 884 440 440 884 387 387 885 440 440 885 388 388 885 388 388 886 440 440 886 131 131 886 388 388 887 131 131 887 442 442 887 442 442 888 131 131 888 441 441 888 442 442 889 441 441 889 390 390 889 390 390 890 441 441 890 133 133 890 390 390 891 133 133 891 391 391 891 391 391 892 133 133 892 443 443 892 391 391 893 443 443 893 392 392 893 392 392 894 443 443 894 132 132 894 392 392 895 132 132 895 445 445 895 445 445 896 132 132 896 444 444 896 445 445 897 444 444 897 446 446 897 446 446 898 444 444 898 447 447 898 446 446 899 447 447 899 395 395 899 395 395 900 447 447 900 449 449 900 395 395 901 449 449 901 448 448 901 448 448 902 449 449 902 450 450 902 448 448 903 450 450 903 451 451 903 451 451 904 450 450 904 134 134 904 451 451 905 134 134 905 452 452 905 452 452 906 134 134 906 453 453 906 452 452 907 453 453 907 399 399 907 399 399 908 453 453 908 136 136 908 399 399 909 136 136 909 454 454 909 454 454 910 136 136 910 135 135 910 454 454 911 135 135 911 401 401 911 401 401 912 135 135 912 455 455 912 401 401 913 455 455 913 456 456 913 456 456 914 455 455 914 137 137 914 456 456 915 137 137 915 457 457 915 457 457 916 137 137 916 458 458 916 457 457 917 458 458 917 459 459 917 459 459 918 458 458 918 460 460 918 459 459 919 460 460 919 405 405 919 405 405 920 460 460 920 461 461 920 405 405 921 461 461 921 407 407 921 407 407 922 461 461 922 462 462 922 407 407 923 462 462 923 408 408 923 408 408 924 462 462 924 463 463 924 408 408 925 463 463 925 465 465 925 465 465 926 463 463 926 464 464 926 465 465 927 464 464 927 412 412 927 412 412 928 464 464 928 466 466 928 412 412 929 466 466 929 414 414 929 414 414 930 466 466 930 467 467 930 414 414 931 467 467 931 415 415 931 415 415 932 467 467 932 468 468 932 415 415 933 468 468 933 469 469 933 469 469 934 468 468 934 139 139 934 469 469 935 139 139 935 416 416 935 416 416 936 139 139 936 470 470 936 416 416 937 470 470 937 471 471 937 471 471 938 470 470 938 141 141 938 471 471 939 141 141 939 419 419 939 419 419 940 141 141 940 140 140 940 419 419 941 140 140 941 472 472 941 472 472 942 140 140 942 142 142 942 472 472 943 142 142 943 473 473 943 473 473 944 142 142 944 474 474 944 473 473 945 474 474 945 475 475 945 475 475 946 474 474 946 476 476 946 475 475 947 476 476 947 422 422 947 422 422 948 476 476 948 477 477 948 422 422 949 477 477 949 423 423 949 423 423 950 477 477 950 144 144 950 423 423 951 144 144 951 478 478 951 478 478 952 144 144 952 143 143 952 478 478 953 143 143 953 479 479 953 479 479 954 143 143 954 480 480 954 479 479 955 480 480 955 481 481 955 481 481 956 480 480 956 482 482 956 481 481 957 482 482 957 428 428 957 428 428 958 482 482 958 120 120 958 483 483 959 53 53 959 809 809 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 789 789 961 781 781 962 66 66 962 484 484 962 766 766 963 68 68 963 768 768 963 69 69 964 70 70 964 762 762 964 485 485 965 73 73 965 751 751 965 78 78 966 80 80 966 742 742 966 486 486 967 728 728 967 731 731 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 710 710 969 96 96 970 487 487 970 695 695 970 686 686 971 103 103 971 488 488 971 2 2 972 3 3 972 678 678 972 6 6 973 8 8 973 518 518 973 12 12 974 13 13 974 655 655 974 649 649 975 15 15 975 643 643 975 16 16 976 642 642 976 641 641 976 627 627 977 625 625 977 511 511 977 21 21 978 23 23 978 609 609 978 25 25 979 604 604 979 610 610 979 28 28 980 489 489 980 602 602 980 31 31 981 34 34 981 504 504 981 40 40 982 490 490 982 491 491 982 43 43 983 44 44 983 492 492 983 566 566 984 45 45 984 493 493 984 494 494 985 553 553 985 555 555 985 106 106 986 496 496 986 495 495 986 495 495 987 496 496 987 561 561 987 495 495 988 561 561 988 550 550 988 550 550 989 561 561 989 497 497 989 550 550 990 497 497 990 498 498 990 498 498 991 497 497 991 557 557 991 498 498 992 557 557 992 499 499 992 499 499 993 557 557 993 500 500 993 499 499 994 500 500 994 552 552 994 552 552 995 500 500 995 555 555 995 501 501 996 107 107 996 586 586 996 586 586 997 107 107 997 596 596 997 586 586 998 596 596 998 587 587 998 587 587 999 596 596 999 594 594 999 587 587 1000 594 594 1000 588 588 1000 588 588 1001 594 594 1001 502 502 1001 588 588 1002 502 502 1002 503 503 1002 503 503 1003 502 502 1003 591 591 1003 503 503 1004 591 591 1004 589 589 1004 589 589 1005 591 591 1005 504 504 1005 505 505 1006 506 506 1006 508 508 1006 508 508 1007 506 506 1007 507 507 1007 508 508 1008 507 507 1008 509 509 1008 509 509 1009 507 507 1009 631 631 1009 509 509 1010 631 631 1010 622 622 1010 622 622 1011 631 631 1011 629 629 1011 622 622 1012 629 629 1012 623 623 1012 623 623 1013 629 629 1013 628 628 1013 623 623 1014 628 628 1014 510 510 1014 510 510 1015 628 628 1015 511 511 1015 661 661 1016 672 672 1016 512 512 1016 512 512 1017 672 672 1017 514 514 1017 512 512 1018 514 514 1018 513 513 1018 513 513 1019 514 514 1019 671 671 1019 513 513 1020 671 671 1020 516 516 1020 516 516 1021 671 671 1021 515 515 1021 516 516 1022 515 515 1022 517 517 1022 517 517 1023 515 515 1023 668 668 1023 517 517 1024 668 668 1024 664 664 1024 664 664 1025 668 668 1025 518 518 1025 112 112 1026 111 111 1026 685 685 1026 685 685 1027 111 111 1027 519 519 1027 685 685 1028 519 519 1028 520 520 1028 520 520 1029 519 519 1029 521 521 1029 520 520 1030 521 521 1030 682 682 1030 682 682 1031 521 521 1031 689 689 1031 682 682 1032 689 689 1032 680 680 1032 680 680 1033 689 689 1033 522 522 1033 680 680 1034 522 522 1034 679 679 1034 679 679 1035 522 522 1035 488 488 1035 523 523 1036 524 524 1036 691 691 1036 691 691 1037 524 524 1037 526 526 1037 691 691 1038 526 526 1038 525 525 1038 525 525 1039 526 526 1039 699 699 1039 525 525 1040 699 699 1040 527 527 1040 527 527 1041 699 699 1041 698 698 1041 527 527 1042 698 698 1042 528 528 1042 528 528 1043 698 698 1043 529 529 1043 528 528 1044 529 529 1044 694 694 1044 694 694 1045 529 529 1045 695 695 1045 713 713 1046 530 530 1046 531 531 1046 531 531 1047 530 530 1047 720 720 1047 531 531 1048 720 720 1048 533 533 1048 533 533 1049 720 720 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 718 718 1051 534 534 1052 718 718 1052 711 711 1052 711 711 1053 718 718 1053 535 535 1053 711 711 1054 535 535 1054 709 709 1054 709 709 1055 535 535 1055 536 536 1055 722 722 1056 114 114 1056 724 724 1056 724 724 1057 114 114 1057 537 537 1057 724 724 1058 537 537 1058 538 538 1058 538 538 1059 537 537 1059 735 735 1059 538 538 1060 735 735 1060 539 539 1060 539 539 1061 735 735 1061 540 540 1061 539 539 1062 540 540 1062 725 725 1062 725 725 1063 540 540 1063 732 732 1063 725 725 1064 732 732 1064 729 729 1064 729 729 1065 732 732 1065 731 731 1065 541 541 1066 755 755 1066 542 542 1066 542 542 1067 755 755 1067 543 543 1067 542 542 1068 543 543 1068 747 747 1068 747 747 1069 543 543 1069 754 754 1069 747 747 1070 754 754 1070 746 746 1070 746 746 1071 754 754 1071 544 544 1071 746 746 1072 544 544 1072 744 744 1072 744 744 1073 544 544 1073 545 545 1073 744 744 1074 545 545 1074 743 743 1074 743 743 1075 545 545 1075 751 751 1075 786 786 1076 117 117 1076 547 547 1076 547 547 1077 117 117 1077 546 546 1077 547 547 1078 546 546 1078 548 548 1078 548 548 1079 546 546 1079 793 793 1079 548 548 1080 793 793 1080 785 785 1080 785 785 1081 793 793 1081 792 792 1081 785 785 1082 792 792 1082 783 783 1082 783 783 1083 792 792 1083 791 791 1083 783 783 1084 791 791 1084 782 782 1084 782 782 1085 791 791 1085 789 789 1085 813 813 1086 106 106 1086 549 549 1086 549 549 1087 106 106 1087 495 495 1087 549 549 1088 495 495 1088 816 816 1088 816 816 1089 495 495 1089 550 550 1089 816 816 1090 550 550 1090 818 818 1090 818 818 1091 550 550 1091 498 498 1091 818 818 1092 498 498 1092 819 819 1092 819 819 1093 498 498 1093 499 499 1093 819 819 1094 499 499 1094 551 551 1094 551 551 1095 499 499 1095 552 552 1095 551 551 1096 552 552 1096 820 820 1096 820 820 1097 552 552 1097 48 48 1097 555 555 1098 553 553 1098 552 552 1098 552 552 1099 553 553 1099 47 47 1099 552 552 1100 47 47 1100 48 48 1100 554 554 1101 494 494 1101 565 565 1101 565 565 1102 494 494 1102 555 555 1102 565 565 1103 555 555 1103 556 556 1103 556 556 1104 555 555 1104 500 500 1104 556 556 1105 500 500 1105 558 558 1105 558 558 1106 500 500 1106 557 557 1106 558 558 1107 557 557 1107 559 559 1107 559 559 1108 557 557 1108 497 497 1108 559 559 1109 497 497 1109 563 563 1109 563 563 1110 497 497 1110 561 561 1110 563 563 1111 561 561 1111 560 560 1111 560 560 1112 561 561 1112 496 496 1112 560 560 1113 562 562 1113 563 563 1113 563 563 1114 562 562 1114 564 564 1114 563 563 1115 564 564 1115 559 559 1115 559 559 1116 564 564 1116 569 569 1116 559 559 1117 569 569 1117 558 558 1117 558 558 1118 569 569 1118 568 568 1118 558 558 1119 568 568 1119 556 556 1119 556 556 1120 568 568 1120 567 567 1120 556 556 1121 567 567 1121 565 565 1121 565 565 1122 567 567 1122 493 493 1122 565 565 1123 493 493 1123 554 554 1123 554 554 1124 493 493 1124 45 45 1124 44 44 1125 566 566 1125 492 492 1125 492 492 1126 566 566 1126 493 493 1126 492 492 1127 493 493 1127 574 574 1127 574 574 1128 493 493 1128 567 567 1128 574 574 1129 567 567 1129 575 575 1129 575 575 1130 567 567 1130 568 568 1130 575 575 1131 568 568 1131 570 570 1131 570 570 1132 568 568 1132 569 569 1132 570 570 1133 569 569 1133 577 577 1133 577 577 1134 569 569 1134 564 564 1134 577 577 1135 564 564 1135 571 571 1135 571 571 1136 564 564 1136 562 562 1136 490 490 1137 43 43 1137 491 491 1137 491 491 1138 43 43 1138 492 492 1138 491 491 1139 492 492 1139 572 572 1139 572 572 1140 492 492 1140 574 574 1140 572 572 1141 574 574 1141 573 573 1141 573 573 1142 574 574 1142 575 575 1142 573 573 1143 575 575 1143 576 576 1143 576 576 1144 575 575 1144 570 570 1144 576 576 1145 570 570 1145 584 584 1145 584 584 1146 570 570 1146 577 577 1146 584 584 1147 577 577 1147 578 578 1147 578 578 1148 577 577 1148 571 571 1148 39 39 1149 40 40 1149 579 579 1149 579 579 1150 40 40 1150 491 491 1150 579 579 1151 491 491 1151 580 580 1151 580 580 1152 491 491 1152 572 572 1152 580 580 1153 572 572 1153 581 581 1153 581 581 1154 572 572 1154 573 573 1154 581 581 1155 573 573 1155 582 582 1155 582 582 1156 573 573 1156 576 576 1156 582 582 1157 576 576 1157 583 583 1157 583 583 1158 576 576 1158 584 584 1158 583 583 1159 584 584 1159 585 585 1159 585 585 1160 584 584 1160 578 578 1160 585 585 1161 501 501 1161 583 583 1161 583 583 1162 501 501 1162 586 586 1162 583 583 1163 586 586 1163 582 582 1163 582 582 1164 586 586 1164 587 587 1164 582 582 1165 587 587 1165 581 581 1165 581 581 1166 587 587 1166 588 588 1166 581 581 1167 588 588 1167 580 580 1167 580 580 1168 588 588 1168 503 503 1168 580 580 1169 503 503 1169 579 579 1169 579 579 1170 503 503 1170 589 589 1170 579 579 1171 589 589 1171 39 39 1171 39 39 1172 589 589 1172 36 36 1172 504 504 1173 34 34 1173 589 589 1173 589 589 1174 34 34 1174 35 35 1174 589 589 1175 35 35 1175 36 36 1175 603 603 1176 31 31 1176 601 601 1176 601 601 1177 31 31 1177 504 504 1177 601 601 1178 504 504 1178 590 590 1178 590 590 1179 504 504 1179 591 591 1179 590 590 1180 591 591 1180 592 592 1180 592 592 1181 591 591 1181 502 502 1181 592 592 1182 502 502 1182 593 593 1182 593 593 1183 502 502 1183 594 594 1183 593 593 1184 594 594 1184 595 595 1184 595 595 1185 594 594 1185 596 596 1185 595 595 1186 596 596 1186 597 597 1186 597 597 1187 596 596 1187 107 107 1187 597 597 1188 598 598 1188 595 595 1188 595 595 1189 598 598 1189 608 608 1189 595 595 1190 608 608 1190 593 593 1190 593 593 1191 608 608 1191 599 599 1191 593 593 1192 599 599 1192 592 592 1192 592 592 1193 599 599 1193 600 600 1193 592 592 1194 600 600 1194 590 590 1194 590 590 1195 600 600 1195 606 606 1195 590 590 1196 606 606 1196 601 601 1196 601 601 1197 606 606 1197 602 602 1197 601 601 1198 602 602 1198 603 603 1198 603 603 1199 602 602 1199 489 489 1199 604 604 1200 28 28 1200 610 610 1200 610 610 1201 28 28 1201 602 602 1201 610 610 1202 602 602 1202 605 605 1202 605 605 1203 602 602 1203 606 606 1203 605 605 1204 606 606 1204 613 613 1204 613 613 1205 606 606 1205 600 600 1205 613 613 1206 600 600 1206 607 607 1206 607 607 1207 600 600 1207 599 599 1207 607 607 1208 599 599 1208 615 615 1208 615 615 1209 599 599 1209 608 608 1209 615 615 1210 608 608 1210 108 108 1210 108 108 1211 608 608 1211 598 598 1211 23 23 1212 25 25 1212 609 609 1212 609 609 1213 25 25 1213 610 610 1213 609 609 1214 610 610 1214 611 611 1214 611 611 1215 610 610 1215 605 605 1215 611 611 1216 605 605 1216 612 612 1216 612 612 1217 605 605 1217 613 613 1217 612 612 1218 613 613 1218 619 619 1218 619 619 1219 613 613 1219 607 607 1219 619 619 1220 607 607 1220 614 614 1220 614 614 1221 607 607 1221 615 615 1221 614 614 1222 615 615 1222 109 109 1222 109 109 1223 615 615 1223 108 108 1223 20 20 1224 21 21 1224 616 616 1224 616 616 1225 21 21 1225 609 609 1225 616 616 1226 609 609 1226 624 624 1226 624 624 1227 609 609 1227 611 611 1227 624 624 1228 611 611 1228 617 617 1228 617 617 1229 611 611 1229 612 612 1229 617 617 1230 612 612 1230 618 618 1230 618 618 1231 612 612 1231 619 619 1231 618 618 1232 619 619 1232 621 621 1232 621 621 1233 619 619 1233 614 614 1233 621 621 1234 614 614 1234 620 620 1234 620 620 1235 614 614 1235 109 109 1235 620 620 1236 505 505 1236 621 621 1236 621 621 1237 505 505 1237 508 508 1237 621 621 1238 508 508 1238 618 618 1238 618 618 1239 508 508 1239 509 509 1239 618 618 1240 509 509 1240 617 617 1240 617 617 1241 509 509 1241 622 622 1241 617 617 1242 622 622 1242 624 624 1242 624 624 1243 622 622 1243 623 623 1243 624 624 1244 623 623 1244 616 616 1244 616 616 1245 623 623 1245 510 510 1245 616 616 1246 510 510 1246 20 20 1246 20 20 1247 510 510 1247 626 626 1247 511 511 1248 625 625 1248 510 510 1248 510 510 1249 625 625 1249 18 18 1249 510 510 1250 18 18 1250 626 626 1250 640 640 1251 627 627 1251 639 639 1251 639 639 1252 627 627 1252 511 511 1252 639 639 1253 511 511 1253 638 638 1253 638 638 1254 511 511 1254 628 628 1254 638 638 1255 628 628 1255 635 635 1255 635 635 1256 628 628 1256 629 629 1256 635 635 1257 629 629 1257 634 634 1257 634 634 1258 629 629 1258 631 631 1258 634 634 1259 631 631 1259 630 630 1259 630 630 1260 631 631 1260 507 507 1260 630 630 1261 507 507 1261 632 632 1261 632 632 1262 507 507 1262 506 506 1262 632 632 1263 633 633 1263 630 630 1263 630 630 1264 633 633 1264 648 648 1264 630 630 1265 648 648 1265 634 634 1265 634 634 1266 648 648 1266 647 647 1266 634 634 1267 647 647 1267 635 635 1267 635 635 1268 647 647 1268 636 636 1268 635 635 1269 636 636 1269 638 638 1269 638 638 1270 636 636 1270 637 637 1270 638 638 1271 637 637 1271 639 639 1271 639 639 1272 637 637 1272 641 641 1272 639 639 1273 641 641 1273 640 640 1273 640 640 1274 641 641 1274 642 642 1274 15 15 1275 16 16 1275 643 643 1275 643 643 1276 16 16 1276 641 641 1276 643 643 1277 641 641 1277 644 644 1277 644 644 1278 641 641 1278 637 637 1278 644 644 1279 637 637 1279 645 645 1279 645 645 1280 637 637 1280 636 636 1280 645 645 1281 636 636 1281 646 646 1281 646 646 1282 636 636 1282 647 647 1282 646 646 1283 647 647 1283 653 653 1283 653 653 1284 647 647 1284 648 648 1284 653 653 1285 648 648 1285 110 110 1285 110 110 1286 648 648 1286 633 633 1286 13 13 1287 649 649 1287 655 655 1287 655 655 1288 649 649 1288 643 643 1288 655 655 1289 643 643 1289 650 650 1289 650 650 1290 643 643 1290 644 644 1290 650 650 1291 644 644 1291 651 651 1291 651 651 1292 644 644 1292 645 645 1292 651 651 1293 645 645 1293 652 652 1293 652 652 1294 645 645 1294 646 646 1294 652 652 1295 646 646 1295 659 659 1295 659 659 1296 646 646 1296 653 653 1296 659 659 1297 653 653 1297 660 660 1297 660 660 1298 653 653 1298 110 110 1298 665 665 1299 12 12 1299 663 663 1299 663 663 1300 12 12 1300 655 655 1300 663 663 1301 655 655 1301 654 654 1301 654 654 1302 655 655 1302 650 650 1302 654 654 1303 650 650 1303 656 656 1303 656 656 1304 650 650 1304 651 651 1304 656 656 1305 651 651 1305 657 657 1305 657 657 1306 651 651 1306 652 652 1306 657 657 1307 652 652 1307 662 662 1307 662 662 1308 652 652 1308 659 659 1308 662 662 1309 659 659 1309 658 658 1309 658 658 1310 659 659 1310 660 660 1310 658 658 1311 661 661 1311 662 662 1311 662 662 1312 661 661 1312 512 512 1312 662 662 1313 512 512 1313 657 657 1313 657 657 1314 512 512 1314 513 513 1314 657 657 1315 513 513 1315 656 656 1315 656 656 1316 513 513 1316 516 516 1316 656 656 1317 516 516 1317 654 654 1317 654 654 1318 516 516 1318 517 517 1318 654 654 1319 517 517 1319 663 663 1319 663 663 1320 517 517 1320 664 664 1320 663 663 1321 664 664 1321 665 665 1321 665 665 1322 664 664 1322 666 666 1322 518 518 1323 8 8 1323 664 664 1323 664 664 1324 8 8 1324 9 9 1324 664 664 1325 9 9 1325 666 666 1325 4 4 1326 6 6 1326 667 667 1326 667 667 1327 6 6 1327 518 518 1327 667 667 1328 518 518 1328 677 677 1328 677 677 1329 518 518 1329 668 668 1329 677 677 1330 668 668 1330 669 669 1330 669 669 1331 668 668 1331 515 515 1331 669 669 1332 515 515 1332 670 670 1332 670 670 1333 515 515 1333 671 671 1333 670 670 1334 671 671 1334 674 674 1334 674 674 1335 671 671 1335 514 514 1335 674 674 1336 514 514 1336 673 673 1336 673 673 1337 514 514 1337 672 672 1337 673 673 1338 675 675 1338 674 674 1338 674 674 1339 675 675 1339 684 684 1339 674 674 1340 684 684 1340 670 670 1340 670 670 1341 684 684 1341 676 676 1341 670 670 1342 676 676 1342 669 669 1342 669 669 1343 676 676 1343 683 683 1343 669 669 1344 683 683 1344 677 677 1344 677 677 1345 683 683 1345 681 681 1345 677 677 1346 681 681 1346 667 667 1346 667 667 1347 681 681 1347 678 678 1347 667 667 1348 678 678 1348 4 4 1348 4 4 1349 678 678 1349 3 3 1349 1 1 1350 2 2 1350 679 679 1350 679 679 1351 2 2 1351 678 678 1351 679 679 1352 678 678 1352 680 680 1352 680 680 1353 678 678 1353 681 681 1353 680 680 1354 681 681 1354 682 682 1354 682 682 1355 681 681 1355 683 683 1355 682 682 1356 683 683 1356 520 520 1356 520 520 1357 683 683 1357 676 676 1357 520 520 1358 676 676 1358 685 685 1358 685 685 1359 676 676 1359 684 684 1359 685 685 1360 684 684 1360 112 112 1360 112 112 1361 684 684 1361 675 675 1361 488 488 1362 103 103 1362 679 679 1362 679 679 1363 103 103 1363 0 0 1363 679 679 1364 0 0 1364 1 1 1364 99 99 1365 686 686 1365 693 693 1365 693 693 1366 686 686 1366 488 488 1366 693 693 1367 488 488 1367 687 687 1367 687 687 1368 488 488 1368 522 522 1368 687 687 1369 522 522 1369 688 688 1369 688 688 1370 522 522 1370 689 689 1370 688 688 1371 689 689 1371 692 692 1371 692 692 1372 689 689 1372 521 521 1372 692 692 1373 521 521 1373 690 690 1373 690 690 1374 521 521 1374 519 519 1374 690 690 1375 519 519 1375 113 113 1375 113 113 1376 519 519 1376 111 111 1376 113 113 1377 523 523 1377 690 690 1377 690 690 1378 523 523 1378 691 691 1378 690 690 1379 691 691 1379 692 692 1379 692 692 1380 691 691 1380 525 525 1380 692 692 1381 525 525 1381 688 688 1381 688 688 1382 525 525 1382 527 527 1382 688 688 1383 527 527 1383 687 687 1383 687 687 1384 527 527 1384 528 528 1384 687 687 1385 528 528 1385 693 693 1385 693 693 1386 528 528 1386 694 694 1386 693 693 1387 694 694 1387 99 99 1387 99 99 1388 694 694 1388 98 98 1388 695 695 1389 487 487 1389 694 694 1389 694 694 1390 487 487 1390 696 696 1390 694 694 1391 696 696 1391 98 98 1391 697 697 1392 96 96 1392 708 708 1392 708 708 1393 96 96 1393 695 695 1393 708 708 1394 695 695 1394 707 707 1394 707 707 1395 695 695 1395 529 529 1395 707 707 1396 529 529 1396 705 705 1396 705 705 1397 529 529 1397 698 698 1397 705 705 1398 698 698 1398 702 702 1398 702 702 1399 698 698 1399 699 699 1399 702 702 1400 699 699 1400 700 700 1400 700 700 1401 699 699 1401 526 526 1401 700 700 1402 526 526 1402 701 701 1402 701 701 1403 526 526 1403 524 524 1403 701 701 1404 714 714 1404 700 700 1404 700 700 1405 714 714 1405 703 703 1405 700 700 1406 703 703 1406 702 702 1406 702 702 1407 703 703 1407 704 704 1407 702 702 1408 704 704 1408 705 705 1408 705 705 1409 704 704 1409 706 706 1409 705 705 1410 706 706 1410 707 707 1410 707 707 1411 706 706 1411 712 712 1411 707 707 1412 712 712 1412 708 708 1412 708 708 1413 712 712 1413 710 710 1413 708 708 1414 710 710 1414 697 697 1414 697 697 1415 710 710 1415 94 94 1415 91 91 1416 93 93 1416 709 709 1416 709 709 1417 93 93 1417 710 710 1417 709 709 1418 710 710 1418 711 711 1418 711 711 1419 710 710 1419 712 712 1419 711 711 1420 712 712 1420 534 534 1420 534 534 1421 712 712 1421 706 706 1421 534 534 1422 706 706 1422 533 533 1422 533 533 1423 706 706 1423 704 704 1423 533 533 1424 704 704 1424 531 531 1424 531 531 1425 704 704 1425 703 703 1425 531 531 1426 703 703 1426 713 713 1426 713 713 1427 703 703 1427 714 714 1427 536 536 1428 89 89 1428 709 709 1428 709 709 1429 89 89 1429 715 715 1429 709 709 1430 715 715 1430 91 91 1430 87 87 1431 88 88 1431 726 726 1431 726 726 1432 88 88 1432 536 536 1432 726 726 1433 536 536 1433 716 716 1433 716 716 1434 536 536 1434 535 535 1434 716 716 1435 535 535 1435 717 717 1435 717 717 1436 535 535 1436 718 718 1436 717 717 1437 718 718 1437 719 719 1437 719 719 1438 718 718 1438 532 532 1438 719 719 1439 532 532 1439 723 723 1439 723 723 1440 532 532 1440 720 720 1440 723 723 1441 720 720 1441 721 721 1441 721 721 1442 720 720 1442 530 530 1442 721 721 1443 722 722 1443 723 723 1443 723 723 1444 722 722 1444 724 724 1444 723 723 1445 724 724 1445 719 719 1445 719 719 1446 724 724 1446 538 538 1446 719 719 1447 538 538 1447 717 717 1447 717 717 1448 538 538 1448 539 539 1448 717 717 1449 539 539 1449 716 716 1449 716 716 1450 539 539 1450 725 725 1450 716 716 1451 725 725 1451 726 726 1451 726 726 1452 725 725 1452 729 729 1452 726 726 1453 729 729 1453 87 87 1453 87 87 1454 729 729 1454 727 727 1454 731 731 1455 728 728 1455 729 729 1455 729 729 1456 728 728 1456 84 84 1456 729 729 1457 84 84 1457 727 727 1457 81 81 1458 486 486 1458 741 741 1458 741 741 1459 486 486 1459 731 731 1459 741 741 1460 731 731 1460 730 730 1460 730 730 1461 731 731 1461 732 732 1461 730 730 1462 732 732 1462 733 733 1462 733 733 1463 732 732 1463 540 540 1463 733 733 1464 540 540 1464 734 734 1464 734 734 1465 540 540 1465 735 735 1465 734 734 1466 735 735 1466 736 736 1466 736 736 1467 735 735 1467 537 537 1467 736 736 1468 537 537 1468 737 737 1468 737 737 1469 537 537 1469 114 114 1469 737 737 1470 738 738 1470 736 736 1470 736 736 1471 738 738 1471 748 748 1471 736 736 1472 748 748 1472 734 734 1472 734 734 1473 748 748 1473 739 739 1473 734 734 1474 739 739 1474 733 733 1474 733 733 1475 739 739 1475 740 740 1475 733 733 1476 740 740 1476 730 730 1476 730 730 1477 740 740 1477 745 745 1477 730 730 1478 745 745 1478 741 741 1478 741 741 1479 745 745 1479 742 742 1479 741 741 1480 742 742 1480 81 81 1480 81 81 1481 742 742 1481 80 80 1481 749 749 1482 78 78 1482 743 743 1482 743 743 1483 78 78 1483 742 742 1483 743 743 1484 742 742 1484 744 744 1484 744 744 1485 742 742 1485 745 745 1485 744 744 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 740 740 1487 746 746 1488 740 740 1488 747 747 1488 747 747 1489 740 740 1489 739 739 1489 747 747 1490 739 739 1490 542 542 1490 542 542 1491 739 739 1491 748 748 1491 542 542 1492 748 748 1492 541 541 1492 541 541 1493 748 748 1493 738 738 1493 751 751 1494 73 73 1494 743 743 1494 743 743 1495 73 73 1495 75 75 1495 743 743 1496 75 75 1496 749 749 1496 71 71 1497 485 485 1497 750 750 1497 750 750 1498 485 485 1498 751 751 1498 750 750 1499 751 751 1499 760 760 1499 760 760 1500 751 751 1500 545 545 1500 760 760 1501 545 545 1501 752 752 1501 752 752 1502 545 545 1502 544 544 1502 752 752 1503 544 544 1503 753 753 1503 753 753 1504 544 544 1504 754 754 1504 753 753 1505 754 754 1505 756 756 1505 756 756 1506 754 754 1506 543 543 1506 756 756 1507 543 543 1507 115 115 1507 115 115 1508 543 543 1508 755 755 1508 115 115 1509 757 757 1509 756 756 1509 756 756 1510 757 757 1510 765 765 1510 756 756 1511 765 765 1511 753 753 1511 753 753 1512 765 765 1512 758 758 1512 753 753 1513 758 758 1513 752 752 1513 752 752 1514 758 758 1514 759 759 1514 752 752 1515 759 759 1515 760 760 1515 760 760 1516 759 759 1516 761 761 1516 760 760 1517 761 761 1517 750 750 1517 750 750 1518 761 761 1518 762 762 1518 750 750 1519 762 762 1519 71 71 1519 71 71 1520 762 762 1520 70 70 1520 68 68 1521 69 69 1521 768 768 1521 768 768 1522 69 69 1522 762 762 1522 768 768 1523 762 762 1523 769 769 1523 769 769 1524 762 762 1524 761 761 1524 769 769 1525 761 761 1525 763 763 1525 763 763 1526 761 761 1526 759 759 1526 763 763 1527 759 759 1527 764 764 1527 764 764 1528 759 759 1528 758 758 1528 764 764 1529 758 758 1529 770 770 1529 770 770 1530 758 758 1530 765 765 1530 770 770 1531 765 765 1531 116 116 1531 116 116 1532 765 765 1532 757 757 1532 780 780 1533 766 766 1533 767 767 1533 767 767 1534 766 766 1534 768 768 1534 767 767 1535 768 768 1535 779 779 1535 779 779 1536 768 768 1536 769 769 1536 779 779 1537 769 769 1537 777 777 1537 777 777 1538 769 769 1538 763 763 1538 777 777 1539 763 763 1539 774 774 1539 774 774 1540 763 763 1540 764 764 1540 774 774 1541 764 764 1541 773 773 1541 773 773 1542 764 764 1542 770 770 1542 773 773 1543 770 770 1543 771 771 1543 771 771 1544 770 770 1544 116 116 1544 771 771 1545 772 772 1545 773 773 1545 773 773 1546 772 772 1546 775 775 1546 773 773 1547 775 775 1547 774 774 1547 774 774 1548 775 775 1548 776 776 1548 774 774 1549 776 776 1549 777 777 1549 777 777 1550 776 776 1550 778 778 1550 777 777 1551 778 778 1551 779 779 1551 779 779 1552 778 778 1552 784 784 1552 779 779 1553 784 784 1553 767 767 1553 767 767 1554 784 784 1554 484 484 1554 767 767 1555 484 484 1555 780 780 1555 780 780 1556 484 484 1556 66 66 1556 63 63 1557 781 781 1557 782 782 1557 782 782 1558 781 781 1558 484 484 1558 782 782 1559 484 484 1559 783 783 1559 783 783 1560 484 484 1560 784 784 1560 783 783 1561 784 784 1561 785 785 1561 785 785 1562 784 784 1562 778 778 1562 785 785 1563 778 778 1563 548 548 1563 548 548 1564 778 778 1564 776 776 1564 548 548 1565 776 776 1565 547 547 1565 547 547 1566 776 776 1566 775 775 1566 547 547 1567 775 775 1567 786 786 1567 786 786 1568 775 775 1568 772 772 1568 789 789 1569 61 61 1569 782 782 1569 782 782 1570 61 61 1570 787 787 1570 782 782 1571 787 787 1571 63 63 1571 57 57 1572 58 58 1572 788 788 1572 788 788 1573 58 58 1573 789 789 1573 788 788 1574 789 789 1574 790 790 1574 790 790 1575 789 789 1575 791 791 1575 790 790 1576 791 791 1576 798 798 1576 798 798 1577 791 791 1577 792 792 1577 798 798 1578 792 792 1578 797 797 1578 797 797 1579 792 792 1579 793 793 1579 797 797 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 546 546 1581 794 794 1582 546 546 1582 795 795 1582 795 795 1583 546 546 1583 117 117 1583 795 795 1584 119 119 1584 794 794 1584 794 794 1585 119 119 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 790 790 1590 790 790 1591 803 803 1591 802 802 1591 790 790 1592 802 802 1592 788 788 1592 788 788 1593 802 802 1593 799 799 1593 788 788 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 809 809 1596 809 809 1597 800 800 1597 799 799 1597 809 809 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 811 811 1600 811 811 1601 802 802 1601 803 803 1601 811 811 1602 803 803 1602 812 812 1602 812 812 1603 803 803 1603 804 804 1603 812 812 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 796 796 1605 805 805 1606 796 796 1606 806 806 1606 806 806 1607 796 796 1607 119 119 1607 807 807 1608 483 483 1608 808 808 1608 808 808 1609 483 483 1609 809 809 1609 808 808 1610 809 809 1610 817 817 1610 817 817 1611 809 809 1611 801 801 1611 817 817 1612 801 801 1612 810 810 1612 810 810 1613 801 801 1613 811 811 1613 810 810 1614 811 811 1614 815 815 1614 815 815 1615 811 811 1615 812 812 1615 815 815 1616 812 812 1616 814 814 1616 814 814 1617 812 812 1617 805 805 1617 814 814 1618 805 805 1618 118 118 1618 118 118 1619 805 805 1619 806 806 1619 118 118 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 549 549 1621 814 814 1622 549 549 1622 815 815 1622 815 815 1623 549 549 1623 816 816 1623 815 815 1624 816 816 1624 810 810 1624 810 810 1625 816 816 1625 818 818 1625 810 810 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 808 808 1628 808 808 1629 819 819 1629 551 551 1629 808 808 1630 551 551 1630 807 807 1630 807 807 1631 551 551 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.STL new file mode 100755 index 0000000..d2e59ed Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.dae new file mode 100755 index 0000000..c376542 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:28 2016 GMT + Tue Jan 19 19:53:28 2016 GMT + Y_UP + + + + + + -0.0499122 3.7271e-18 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -6.78839e-18 -0.01 0.05 -7.97172e-18 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -2.05701e-17 1.78814e-09 0.0355863 -0.0182652 1.78814e-09 2.04635e-17 -4.11162e-18 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.0233192 -0.0324995 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 -0.00823914 -0.0391423 1.78814e-09 -0.0172026 -0.0361119 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0317942 -0.024272 1.78814e-09 -0.0393692 -0.00707561 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.0252035 0.031061 1.78814e-09 0.0233192 0.0324995 1.78814e-09 0.0355863 0.0182652 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.0388809 0.00939544 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 1.53808e-17 -6.24162e-18 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 2.54376e-18 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -1.4095e-17 -0.035 0.0496593 -1.41607e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -1.41085e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -1.39419e-17 -0.0420711 0.045 -1.36722e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -1.33178e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -1.2903e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0397192 -0.00473093 1.78814e-09 0.0388809 -0.00939544 1.78814e-09 0.0422893 -0.00503704 -0.000340743 0.0413967 -0.0100034 -0.000340743 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.0366058 -0.0161249 1.78814e-09 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0399297 0.00236963 1.78814e-09 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.043038 0.0131426 -0.00133975 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0128108 0.0378931 1.78814e-09 -0.0136397 0.0403449 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -1.12201e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -1.27324e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0205612 -0.037296 -0.000340743 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.00590586 -0.0395616 1.78814e-09 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0252035 -0.031061 1.78814e-09 -0.0227346 -0.0360124 -0.000340743 -0.0213529 -0.0338238 1.78814e-09 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0305573 -0.0296648 -0.000340743 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0407314 -0.0124382 -0.000340743 -0.038256 -0.0116823 1.78814e-09 -0.0419166 -0.00753344 -0.000340743 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0425134 0.00252295 -0.000340743 -0.0393692 0.00707561 1.78814e-09 -0.038256 0.0116823 1.78814e-09 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0389744 0.0171683 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0305573 0.0296648 -0.000340743 -0.0287003 0.027862 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0227346 0.0360124 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0268343 0.0330707 -0.000340743 -0.0172026 0.0361119 1.78814e-09 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00823914 0.0391423 1.78814e-09 -0.00877226 0.0416749 -0.000340743 -0.00378166 0.04242 -0.000340743 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 0.00126203 0.0425695 -0.000340743 0.00118533 0.0399824 1.78814e-09 -0.00355184 0.039842 1.78814e-09 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0112257 0.0410821 -0.000340743 0.0066441 0.0445068 -0.00133975 0.006288 0.0421214 -0.000340743 0.00590586 0.0395616 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0150331 0.0370676 1.78814e-09 0.0160058 0.039466 -0.000340743 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0205612 0.037296 -0.000340743 0.0193117 0.0350294 1.78814e-09 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.024828 0.0346023 -0.000340743 0.0287463 0.031423 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0353229 0.0237918 -0.000340743 0.0378889 0.019447 -0.000340743 0.0374968 0.0139281 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.0422893 0.00503704 -0.000340743 0.043741 0.0105699 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0397192 0.00473093 1.78814e-09 0.04 -1.0773e-17 1.78814e-09 0.0446841 0.00532229 -0.00133975 0.045 -1.1669e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -1.20892e-17 -0.00292893 0.0486603 -1.24518e-17 -0.005 0.05 -1.29116e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 2.80405e-18 0.998244 0.0592405 -2.80405e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.62094e-15 2.25907e-15 1 1.34237e-15 2.43493e-15 1 2.22312e-14 -7.51588e-15 1 2.30611e-15 1.55328e-15 1 2.10621e-15 1.81513e-15 1 1.87675e-15 2.0515e-15 1 2.70265e-15 6.53087e-16 1 2.60644e-15 9.68154e-16 1 2.47364e-15 1.26963e-15 1 2.76093e-15 -3.28851e-16 1 2.78044e-15 0 1 2.76093e-15 3.28851e-16 1 0 0 1 9.46024e-15 2.1476e-14 1 2.70265e-15 -6.53087e-16 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 186 186 0 0 0 0 0 0 1 186 186 1 185 185 1 0 0 2 185 185 2 1 1 2 1 1 3 185 185 3 183 183 3 1 1 4 183 183 4 2 2 4 2 2 5 183 183 5 182 182 5 2 2 6 182 182 6 3 3 6 3 3 7 182 182 7 180 180 7 3 3 8 180 180 8 4 4 8 4 4 9 180 180 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 178 178 15 9 9 16 178 178 16 661 661 16 661 661 17 178 178 17 11 11 17 661 661 18 11 11 18 660 660 18 660 660 19 11 11 19 176 176 19 660 660 20 176 176 20 12 12 20 12 12 21 176 176 21 174 174 21 12 12 22 174 174 22 13 13 22 13 13 23 174 174 23 173 173 23 13 13 24 173 173 24 646 646 24 646 646 25 173 173 25 14 14 25 646 646 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 171 171 29 16 16 30 171 171 30 637 637 30 637 637 31 171 171 31 170 170 31 637 637 32 170 170 32 635 635 32 635 635 33 170 170 33 169 169 33 635 635 34 169 169 34 624 624 34 624 624 35 169 169 35 168 168 35 624 624 36 168 168 36 622 622 36 622 622 37 168 168 37 167 167 37 622 622 38 167 167 38 18 18 38 18 18 39 167 167 39 166 166 39 18 18 40 166 166 40 623 623 40 623 623 41 166 166 41 164 164 41 623 623 42 164 164 42 20 20 42 20 20 43 164 164 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 599 599 50 599 599 51 26 26 51 27 27 51 599 599 52 27 27 52 28 28 52 28 28 53 27 27 53 161 161 53 28 28 54 161 161 54 494 494 54 494 494 55 161 161 55 29 29 55 494 494 56 29 29 56 598 598 56 598 598 57 29 29 57 30 30 57 598 598 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 156 156 67 39 39 68 156 156 68 40 40 68 40 40 69 156 156 69 41 41 69 40 40 70 41 41 70 495 495 70 495 495 71 41 41 71 42 42 71 495 495 72 42 42 72 43 43 72 43 43 73 42 42 73 153 153 73 43 43 74 153 153 74 44 44 74 44 44 75 153 153 75 152 152 75 44 44 76 152 152 76 562 562 76 562 562 77 152 152 77 151 151 77 562 562 78 151 151 78 45 45 78 45 45 79 151 151 79 46 46 79 45 45 80 46 46 80 552 552 80 552 552 81 46 46 81 150 150 81 552 552 82 150 150 82 499 499 82 499 499 83 150 150 83 224 224 83 499 499 84 224 224 84 551 551 84 551 551 85 224 224 85 223 223 85 551 551 86 223 223 86 47 47 86 47 47 87 223 223 87 222 222 87 47 47 88 222 222 88 48 48 88 48 48 89 222 222 89 220 220 89 48 48 90 220 220 90 49 49 90 49 49 91 220 220 91 50 50 91 49 49 92 50 50 92 805 805 92 805 805 93 50 50 93 51 51 93 805 805 94 51 51 94 488 488 94 488 488 95 51 51 95 52 52 95 488 488 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 216 216 99 800 800 100 216 216 100 56 56 100 56 56 101 216 216 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 786 786 108 786 786 109 62 62 109 215 215 109 786 786 110 215 215 110 63 63 110 63 63 111 215 215 111 64 64 111 63 63 112 64 64 112 780 780 112 780 780 113 64 64 113 65 65 113 780 780 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 779 779 116 779 779 117 67 67 117 213 213 117 779 779 118 213 213 118 768 768 118 768 768 119 213 213 119 212 212 119 768 768 120 212 212 120 68 68 120 68 68 121 212 212 121 211 211 121 68 68 122 211 211 122 69 69 122 69 69 123 211 211 123 208 208 123 69 69 124 208 208 124 70 70 124 70 70 125 208 208 125 207 207 125 70 70 126 207 207 126 71 71 126 71 71 127 207 207 127 206 206 127 71 71 128 206 206 128 490 490 128 490 490 129 206 206 129 72 72 129 490 490 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 747 747 134 747 747 135 76 76 135 77 77 135 747 747 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 202 202 139 80 80 140 202 202 140 81 81 140 81 81 141 202 202 141 82 82 141 81 81 142 82 82 142 491 491 142 491 491 143 82 82 143 83 83 143 491 491 144 83 83 144 724 724 144 724 724 145 83 83 145 200 200 145 724 724 146 200 200 146 84 84 146 84 84 147 200 200 147 85 85 147 84 84 148 85 85 148 723 723 148 723 723 149 85 85 149 86 86 149 723 723 150 86 86 150 87 87 150 87 87 151 86 86 151 197 197 151 87 87 152 197 197 152 88 88 152 88 88 153 197 197 153 196 196 153 88 88 154 196 196 154 89 89 154 89 89 155 196 196 155 195 195 155 89 89 156 195 195 156 712 712 156 712 712 157 195 195 157 90 90 157 712 712 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 192 192 161 93 93 162 192 192 162 94 94 162 94 94 163 192 192 163 191 191 163 94 94 164 191 191 164 693 693 164 693 693 165 191 191 165 95 95 165 693 693 166 95 95 166 96 96 166 96 96 167 95 95 167 189 189 167 96 96 168 189 189 168 492 492 168 492 492 169 189 189 169 188 188 169 492 492 170 188 188 170 692 692 170 692 692 171 188 188 171 97 97 171 692 692 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 679 679 176 679 679 177 101 101 177 102 102 177 679 679 178 102 102 178 103 103 178 103 103 179 102 102 179 186 186 179 104 104 180 813 813 180 106 106 180 104 104 181 106 106 181 500 500 181 105 105 182 558 558 182 106 106 182 106 106 183 558 558 183 501 501 183 106 106 184 501 501 184 500 500 184 581 581 185 574 574 185 106 106 185 106 106 186 574 574 186 567 567 186 106 106 187 567 567 187 105 105 187 592 592 188 107 107 188 106 106 188 106 106 189 107 107 189 108 108 189 106 106 190 108 108 190 581 581 190 617 617 191 603 603 191 106 106 191 106 106 192 603 603 192 109 109 192 106 106 193 109 109 193 592 592 193 112 112 194 110 110 194 106 106 194 106 106 195 110 110 195 616 616 195 106 106 196 616 616 196 617 617 196 643 643 197 645 645 197 106 106 197 106 106 198 645 645 198 111 111 198 106 106 199 111 111 199 112 112 199 113 113 200 114 114 200 106 106 200 106 106 201 114 114 201 651 651 201 106 106 202 651 651 202 643 643 202 115 115 203 668 668 203 106 106 203 106 106 204 668 668 204 517 517 204 106 106 205 517 517 205 113 113 205 684 684 206 524 524 206 106 106 206 106 106 207 524 524 207 116 116 207 106 106 208 116 116 208 115 115 208 698 698 209 117 117 209 106 106 209 106 106 210 117 117 210 685 685 210 106 106 211 685 685 211 684 684 211 119 119 212 711 711 212 106 106 212 106 106 213 711 711 213 118 118 213 106 106 214 118 118 214 698 698 214 537 537 215 720 720 215 106 106 215 106 106 216 720 720 216 718 718 216 106 106 217 718 718 217 119 119 217 745 745 218 746 746 218 106 106 218 106 106 219 746 746 219 732 732 219 106 106 220 732 732 220 537 537 220 757 757 221 756 756 221 106 106 221 106 106 222 756 756 222 755 755 222 106 106 223 755 755 223 745 745 223 123 123 224 120 120 224 106 106 224 106 106 225 120 120 225 767 767 225 106 106 226 767 767 226 757 757 226 121 121 227 122 122 227 106 106 227 106 106 228 122 122 228 785 785 228 106 106 229 785 785 229 123 123 229 813 813 230 124 124 230 106 106 230 106 106 231 124 124 231 795 795 231 106 106 232 795 795 232 121 121 232 487 487 233 485 485 233 143 143 233 487 487 234 143 143 234 125 125 234 436 436 235 434 434 235 143 143 235 143 143 236 434 434 236 126 126 236 143 143 237 126 126 237 125 125 237 127 127 238 128 128 238 143 143 238 143 143 239 128 128 239 129 129 239 143 143 240 129 129 240 436 436 240 133 133 241 439 439 241 143 143 241 143 143 242 439 439 242 130 130 242 143 143 243 130 130 243 127 127 243 441 441 244 131 131 244 143 143 244 143 143 245 131 131 245 132 132 245 143 143 246 132 132 246 133 133 246 134 134 247 443 443 247 143 143 247 143 143 248 443 443 248 135 135 248 143 143 249 135 135 249 441 441 249 446 446 250 136 136 250 143 143 250 143 143 251 136 136 251 445 445 251 143 143 252 445 445 252 134 134 252 137 137 253 448 448 253 143 143 253 143 143 254 448 448 254 138 138 254 143 143 255 138 138 255 446 446 255 454 454 256 452 452 256 143 143 256 143 143 257 452 452 257 449 449 257 143 143 258 449 449 258 137 137 258 458 458 259 139 139 259 143 143 259 143 143 260 139 139 260 455 455 260 143 143 261 455 455 261 454 454 261 460 460 262 140 140 262 143 143 262 143 143 263 140 140 263 141 141 263 143 143 264 141 141 264 458 458 264 465 465 265 463 463 265 143 143 265 143 143 266 463 463 266 142 142 266 143 143 267 142 142 267 460 460 267 468 468 268 467 467 268 143 143 268 143 143 269 467 467 269 466 466 269 143 143 270 466 466 270 465 465 270 472 472 271 471 471 271 143 143 271 143 143 272 471 471 272 469 469 272 143 143 273 469 469 273 468 468 273 475 475 274 144 144 274 143 143 274 143 143 275 144 144 275 473 473 275 143 143 276 473 473 276 472 472 276 147 147 277 145 145 277 143 143 277 143 143 278 145 145 278 146 146 278 143 143 279 146 146 279 475 475 279 482 482 280 481 481 280 143 143 280 143 143 281 481 481 281 479 479 281 143 143 282 479 479 282 147 147 282 485 485 283 148 148 283 143 143 283 143 143 284 148 148 284 149 149 284 143 143 285 149 149 285 482 482 285 224 224 286 273 273 286 275 275 286 224 224 287 150 150 287 273 273 287 273 273 288 150 150 288 46 46 288 273 273 289 46 46 289 271 271 289 271 271 290 46 46 290 151 151 290 271 271 291 151 151 291 269 269 291 269 269 292 151 151 292 152 152 292 269 269 293 152 152 293 154 154 293 154 154 294 152 152 294 153 153 294 153 153 295 42 42 295 154 154 295 154 154 296 42 42 296 41 41 296 154 154 297 41 41 297 155 155 297 41 41 298 156 156 298 155 155 298 155 155 299 156 156 299 38 38 299 155 155 300 38 38 300 157 157 300 157 157 301 38 38 301 37 37 301 157 157 302 37 37 302 158 158 302 37 37 303 33 33 303 158 158 303 158 158 304 33 33 304 32 32 304 158 158 305 32 32 305 265 265 305 32 32 306 30 30 306 265 265 306 265 265 307 30 30 307 29 29 307 265 265 308 29 29 308 159 159 308 159 159 309 29 29 309 161 161 309 159 159 310 161 161 310 160 160 310 160 160 311 161 161 311 27 27 311 160 160 312 27 27 312 162 162 312 162 162 313 27 27 313 26 26 313 26 26 314 24 24 314 162 162 314 162 162 315 24 24 315 22 22 315 162 162 316 22 22 316 163 163 316 22 22 317 19 19 317 163 163 317 163 163 318 19 19 318 164 164 318 163 163 319 164 164 319 165 165 319 165 165 320 164 164 320 166 166 320 165 165 321 166 166 321 259 259 321 259 259 322 166 166 322 167 167 322 259 259 323 167 167 323 258 258 323 258 258 324 167 167 324 168 168 324 168 168 325 169 169 325 258 258 325 258 258 326 169 169 326 170 170 326 258 258 327 170 170 327 257 257 327 257 257 328 170 170 328 171 171 328 257 257 329 171 171 329 172 172 329 172 172 330 171 171 330 17 17 330 172 172 331 17 17 331 255 255 331 255 255 332 17 17 332 14 14 332 14 14 333 173 173 333 255 255 333 255 255 334 173 173 334 174 174 334 255 255 335 174 174 335 175 175 335 174 174 336 176 176 336 175 175 336 175 175 337 176 176 337 11 11 337 175 175 338 11 11 338 177 177 338 177 177 339 11 11 339 178 178 339 177 177 340 178 178 340 252 252 340 252 252 341 178 178 341 10 10 341 252 252 342 10 10 342 179 179 342 179 179 343 10 10 343 7 7 343 7 7 344 5 5 344 179 179 344 179 179 345 5 5 345 180 180 345 179 179 346 180 180 346 181 181 346 181 181 347 180 180 347 182 182 347 181 181 348 182 182 348 184 184 348 182 182 349 183 183 349 184 184 349 184 184 350 183 183 350 185 185 350 184 184 351 185 185 351 187 187 351 185 185 352 186 186 352 187 187 352 187 187 353 186 186 353 102 102 353 187 187 354 102 102 354 247 247 354 102 102 355 101 101 355 247 247 355 247 247 356 101 101 356 100 100 356 247 247 357 100 100 357 245 245 357 245 245 358 100 100 358 97 97 358 245 245 359 97 97 359 244 244 359 244 244 360 97 97 360 188 188 360 244 244 361 188 188 361 190 190 361 190 190 362 188 188 362 189 189 362 189 189 363 95 95 363 190 190 363 190 190 364 95 95 364 191 191 364 190 190 365 191 191 365 242 242 365 242 242 366 191 191 366 192 192 366 242 242 367 192 192 367 193 193 367 192 192 368 92 92 368 193 193 368 193 193 369 92 92 369 90 90 369 193 193 370 90 90 370 194 194 370 90 90 371 195 195 371 194 194 371 194 194 372 195 195 372 196 196 372 194 194 373 196 196 373 240 240 373 196 196 374 197 197 374 240 240 374 240 240 375 197 197 375 86 86 375 240 240 376 86 86 376 198 198 376 198 198 377 86 86 377 85 85 377 198 198 378 85 85 378 199 199 378 199 199 379 85 85 379 200 200 379 199 199 380 200 200 380 201 201 380 201 201 381 200 200 381 83 83 381 83 83 382 82 82 382 201 201 382 201 201 383 82 82 383 202 202 383 201 201 384 202 202 384 203 203 384 203 203 385 202 202 385 79 79 385 203 203 386 79 79 386 204 204 386 79 79 387 77 77 387 204 204 387 204 204 388 77 77 388 76 76 388 204 204 389 76 76 389 205 205 389 76 76 390 74 74 390 205 205 390 205 205 391 74 74 391 72 72 391 205 205 392 72 72 392 235 235 392 72 72 393 206 206 393 235 235 393 235 235 394 206 206 394 207 207 394 235 235 395 207 207 395 234 234 395 234 234 396 207 207 396 208 208 396 234 234 397 208 208 397 209 209 397 209 209 398 208 208 398 211 211 398 209 209 399 211 211 399 210 210 399 210 210 400 211 211 400 212 212 400 212 212 401 213 213 401 210 210 401 210 210 402 213 213 402 67 67 402 210 210 403 67 67 403 231 231 403 231 231 404 67 67 404 65 65 404 231 231 405 65 65 405 214 214 405 65 65 406 64 64 406 214 214 406 214 214 407 64 64 407 215 215 407 214 214 408 215 215 408 228 228 408 215 215 409 62 62 409 228 228 409 228 228 410 62 62 410 60 60 410 228 228 411 60 60 411 227 227 411 60 60 412 59 59 412 227 227 412 227 227 413 59 59 413 55 55 413 227 227 414 55 55 414 226 226 414 226 226 415 55 55 415 216 216 415 226 226 416 216 216 416 217 217 416 217 217 417 216 216 417 54 54 417 217 217 418 54 54 418 225 225 418 225 225 419 54 54 419 52 52 419 52 52 420 51 51 420 225 225 420 225 225 421 51 51 421 218 218 421 225 225 422 218 218 422 219 219 422 219 219 423 218 218 423 220 220 423 219 219 424 220 220 424 221 221 424 221 221 425 220 220 425 222 222 425 221 221 426 222 222 426 275 275 426 275 275 427 222 222 427 223 223 427 275 275 428 223 223 428 224 224 428 219 219 429 277 277 429 225 225 429 225 225 430 277 277 430 280 280 430 225 225 431 280 280 431 217 217 431 217 217 432 280 280 432 282 282 432 217 217 433 282 282 433 226 226 433 226 226 434 282 282 434 283 283 434 226 226 435 283 283 435 227 227 435 227 227 436 283 283 436 229 229 436 227 227 437 229 229 437 228 228 437 228 228 438 229 229 438 286 286 438 228 228 439 286 286 439 214 214 439 214 214 440 286 286 440 230 230 440 214 214 441 230 230 441 231 231 441 231 231 442 230 230 442 288 288 442 231 231 443 288 288 443 210 210 443 210 210 444 288 288 444 232 232 444 210 210 445 232 232 445 209 209 445 209 209 446 232 232 446 233 233 446 209 209 447 233 233 447 234 234 447 234 234 448 233 233 448 236 236 448 234 234 449 236 236 449 235 235 449 235 235 450 236 236 450 293 293 450 235 235 451 293 293 451 205 205 451 205 205 452 293 293 452 237 237 452 205 205 453 237 237 453 204 204 453 204 204 454 237 237 454 238 238 454 204 204 455 238 238 455 203 203 455 203 203 456 238 238 456 239 239 456 203 203 457 239 239 457 201 201 457 201 201 458 239 239 458 297 297 458 201 201 459 297 297 459 199 199 459 199 199 460 297 297 460 298 298 460 199 199 461 298 298 461 198 198 461 198 198 462 298 298 462 299 299 462 198 198 463 299 299 463 240 240 463 240 240 464 299 299 464 241 241 464 240 240 465 241 241 465 194 194 465 194 194 466 241 241 466 302 302 466 194 194 467 302 302 467 193 193 467 193 193 468 302 302 468 303 303 468 193 193 469 303 303 469 242 242 469 242 242 470 303 303 470 243 243 470 242 242 471 243 243 471 190 190 471 190 190 472 243 243 472 304 304 472 190 190 473 304 304 473 244 244 473 244 244 474 304 304 474 246 246 474 244 244 475 246 246 475 245 245 475 245 245 476 246 246 476 306 306 476 245 245 477 306 306 477 247 247 477 247 247 478 306 306 478 248 248 478 247 247 479 248 248 479 187 187 479 187 187 480 248 248 480 308 308 480 187 187 481 308 308 481 184 184 481 184 184 482 308 308 482 249 249 482 184 184 483 249 249 483 181 181 483 181 181 484 249 249 484 250 250 484 181 181 485 250 250 485 179 179 485 179 179 486 250 250 486 251 251 486 179 179 487 251 251 487 252 252 487 252 252 488 251 251 488 253 253 488 252 252 489 253 253 489 177 177 489 177 177 490 253 253 490 254 254 490 177 177 491 254 254 491 175 175 491 175 175 492 254 254 492 313 313 492 175 175 493 313 313 493 255 255 493 255 255 494 313 313 494 314 314 494 255 255 495 314 314 495 172 172 495 172 172 496 314 314 496 256 256 496 172 172 497 256 256 497 257 257 497 257 257 498 256 256 498 315 315 498 257 257 499 315 315 499 258 258 499 258 258 500 315 315 500 260 260 500 258 258 501 260 260 501 259 259 501 259 259 502 260 260 502 261 261 502 259 259 503 261 261 503 165 165 503 165 165 504 261 261 504 262 262 504 165 165 505 262 262 505 163 163 505 163 163 506 262 262 506 263 263 506 163 163 507 263 263 507 162 162 507 162 162 508 263 263 508 264 264 508 162 162 509 264 264 509 160 160 509 160 160 510 264 264 510 321 321 510 160 160 511 321 321 511 159 159 511 159 159 512 321 321 512 266 266 512 159 159 513 266 266 513 265 265 513 265 265 514 266 266 514 324 324 514 265 265 515 324 324 515 158 158 515 158 158 516 324 324 516 267 267 516 158 158 517 267 267 517 157 157 517 157 157 518 267 267 518 326 326 518 157 157 519 326 326 519 155 155 519 155 155 520 326 326 520 268 268 520 155 155 521 268 268 521 154 154 521 154 154 522 268 268 522 327 327 522 154 154 523 327 327 523 269 269 523 269 269 524 327 327 524 270 270 524 269 269 525 270 270 525 271 271 525 271 271 526 270 270 526 272 272 526 271 271 527 272 272 527 273 273 527 273 273 528 272 272 528 274 274 528 273 273 529 274 274 529 275 275 529 275 275 530 274 274 530 330 330 530 275 275 531 330 330 531 221 221 531 221 221 532 330 330 532 276 276 532 221 221 533 276 276 533 219 219 533 219 219 534 276 276 534 277 277 534 276 276 535 278 278 535 277 277 535 277 277 536 278 278 536 279 279 536 277 277 537 279 279 537 280 280 537 280 280 538 279 279 538 334 334 538 280 280 539 334 334 539 282 282 539 282 282 540 334 334 540 281 281 540 282 282 541 281 281 541 283 283 541 283 283 542 281 281 542 284 284 542 283 283 543 284 284 543 229 229 543 229 229 544 284 284 544 285 285 544 229 229 545 285 285 545 286 286 545 286 286 546 285 285 546 337 337 546 286 286 547 337 337 547 230 230 547 230 230 548 337 337 548 287 287 548 230 230 549 287 287 549 288 288 549 288 288 550 287 287 550 289 289 550 288 288 551 289 289 551 232 232 551 232 232 552 289 289 552 290 290 552 232 232 553 290 290 553 233 233 553 233 233 554 290 290 554 291 291 554 233 233 555 291 291 555 236 236 555 236 236 556 291 291 556 292 292 556 236 236 557 292 292 557 293 293 557 293 293 558 292 292 558 294 294 558 293 293 559 294 294 559 237 237 559 237 237 560 294 294 560 295 295 560 237 237 561 295 295 561 238 238 561 238 238 562 295 295 562 296 296 562 238 238 563 296 296 563 239 239 563 239 239 564 296 296 564 341 341 564 239 239 565 341 341 565 297 297 565 297 297 566 341 341 566 342 342 566 297 297 567 342 342 567 298 298 567 298 298 568 342 342 568 343 343 568 298 298 569 343 343 569 299 299 569 299 299 570 343 343 570 300 300 570 299 299 571 300 300 571 241 241 571 241 241 572 300 300 572 301 301 572 241 241 573 301 301 573 302 302 573 302 302 574 301 301 574 348 348 574 302 302 575 348 348 575 303 303 575 303 303 576 348 348 576 349 349 576 303 303 577 349 349 577 243 243 577 243 243 578 349 349 578 350 350 578 243 243 579 350 350 579 304 304 579 304 304 580 350 350 580 305 305 580 304 304 581 305 305 581 246 246 581 246 246 582 305 305 582 351 351 582 246 246 583 351 351 583 306 306 583 306 306 584 351 351 584 307 307 584 306 306 585 307 307 585 248 248 585 248 248 586 307 307 586 353 353 586 248 248 587 353 353 587 308 308 587 308 308 588 353 353 588 309 309 588 308 308 589 309 309 589 249 249 589 249 249 590 309 309 590 310 310 590 249 249 591 310 310 591 250 250 591 250 250 592 310 310 592 355 355 592 250 250 593 355 355 593 251 251 593 251 251 594 355 355 594 311 311 594 251 251 595 311 311 595 253 253 595 253 253 596 311 311 596 356 356 596 253 253 597 356 356 597 254 254 597 254 254 598 356 356 598 312 312 598 254 254 599 312 312 599 313 313 599 313 313 600 312 312 600 359 359 600 313 313 601 359 359 601 314 314 601 314 314 602 359 359 602 360 360 602 314 314 603 360 360 603 256 256 603 256 256 604 360 360 604 361 361 604 256 256 605 361 361 605 315 315 605 315 315 606 361 361 606 362 362 606 315 315 607 362 362 607 260 260 607 260 260 608 362 362 608 316 316 608 260 260 609 316 316 609 261 261 609 261 261 610 316 316 610 317 317 610 261 261 611 317 317 611 262 262 611 262 262 612 317 317 612 318 318 612 262 262 613 318 318 613 263 263 613 263 263 614 318 318 614 319 319 614 263 263 615 319 319 615 264 264 615 264 264 616 319 319 616 320 320 616 264 264 617 320 320 617 321 321 617 321 321 618 320 320 618 322 322 618 321 321 619 322 322 619 266 266 619 266 266 620 322 322 620 323 323 620 266 266 621 323 323 621 324 324 621 324 324 622 323 323 622 365 365 622 324 324 623 365 365 623 267 267 623 267 267 624 365 365 624 325 325 624 267 267 625 325 325 625 326 326 625 326 326 626 325 325 626 367 367 626 326 326 627 367 367 627 268 268 627 268 268 628 367 367 628 370 370 628 268 268 629 370 370 629 327 327 629 327 327 630 370 370 630 328 328 630 327 327 631 328 328 631 270 270 631 270 270 632 328 328 632 329 329 632 270 270 633 329 329 633 272 272 633 272 272 634 329 329 634 372 372 634 272 272 635 372 372 635 274 274 635 274 274 636 372 372 636 373 373 636 274 274 637 373 373 637 330 330 637 330 330 638 373 373 638 374 374 638 330 330 639 374 374 639 276 276 639 276 276 640 374 374 640 278 278 640 374 374 641 376 376 641 278 278 641 278 278 642 376 376 642 331 331 642 278 278 643 331 331 643 279 279 643 279 279 644 331 331 644 332 332 644 279 279 645 332 332 645 334 334 645 334 334 646 332 332 646 333 333 646 334 334 647 333 333 647 281 281 647 281 281 648 333 333 648 335 335 648 281 281 649 335 335 649 284 284 649 284 284 650 335 335 650 336 336 650 284 284 651 336 336 651 285 285 651 285 285 652 336 336 652 380 380 652 285 285 653 380 380 653 337 337 653 337 337 654 380 380 654 382 382 654 337 337 655 382 382 655 287 287 655 287 287 656 382 382 656 384 384 656 287 287 657 384 384 657 289 289 657 289 289 658 384 384 658 338 338 658 289 289 659 338 338 659 290 290 659 290 290 660 338 338 660 386 386 660 290 290 661 386 386 661 291 291 661 291 291 662 386 386 662 388 388 662 291 291 663 388 388 663 292 292 663 292 292 664 388 388 664 339 339 664 292 292 665 339 339 665 294 294 665 294 294 666 339 339 666 390 390 666 294 294 667 390 390 667 295 295 667 295 295 668 390 390 668 340 340 668 295 295 669 340 340 669 296 296 669 296 296 670 340 340 670 391 391 670 296 296 671 391 391 671 341 341 671 341 341 672 391 391 672 394 394 672 341 341 673 394 394 673 342 342 673 342 342 674 394 394 674 344 344 674 342 342 675 344 344 675 343 343 675 343 343 676 344 344 676 345 345 676 343 343 677 345 345 677 300 300 677 300 300 678 345 345 678 346 346 678 300 300 679 346 346 679 301 301 679 301 301 680 346 346 680 347 347 680 301 301 681 347 347 681 348 348 681 348 348 682 347 347 682 398 398 682 348 348 683 398 398 683 349 349 683 349 349 684 398 398 684 399 399 684 349 349 685 399 399 685 350 350 685 350 350 686 399 399 686 401 401 686 350 350 687 401 401 687 305 305 687 305 305 688 401 401 688 402 402 688 305 305 689 402 402 689 351 351 689 351 351 690 402 402 690 352 352 690 351 351 691 352 352 691 307 307 691 307 307 692 352 352 692 403 403 692 307 307 693 403 403 693 353 353 693 353 353 694 403 403 694 405 405 694 353 353 695 405 405 695 309 309 695 309 309 696 405 405 696 354 354 696 309 309 697 354 354 697 310 310 697 310 310 698 354 354 698 407 407 698 310 310 699 407 407 699 355 355 699 355 355 700 407 407 700 408 408 700 355 355 701 408 408 701 311 311 701 311 311 702 408 408 702 409 409 702 311 311 703 409 409 703 356 356 703 356 356 704 409 409 704 357 357 704 356 356 705 357 357 705 312 312 705 312 312 706 357 357 706 411 411 706 312 312 707 411 411 707 359 359 707 359 359 708 411 411 708 358 358 708 359 359 709 358 358 709 360 360 709 360 360 710 358 358 710 414 414 710 360 360 711 414 414 711 361 361 711 361 361 712 414 414 712 415 415 712 361 361 713 415 415 713 362 362 713 362 362 714 415 415 714 416 416 714 362 362 715 416 416 715 316 316 715 316 316 716 416 416 716 418 418 716 316 316 717 418 418 717 317 317 717 317 317 718 418 418 718 363 363 718 317 317 719 363 363 719 318 318 719 318 318 720 363 363 720 364 364 720 318 318 721 364 364 721 319 319 721 319 319 722 364 364 722 422 422 722 319 319 723 422 422 723 320 320 723 320 320 724 422 422 724 423 423 724 320 320 725 423 423 725 322 322 725 322 322 726 423 423 726 425 425 726 322 322 727 425 425 727 323 323 727 323 323 728 425 425 728 426 426 728 323 323 729 426 426 729 365 365 729 365 365 730 426 426 730 366 366 730 365 365 731 366 366 731 325 325 731 325 325 732 366 366 732 368 368 732 325 325 733 368 368 733 367 367 733 367 367 734 368 368 734 369 369 734 367 367 735 369 369 735 370 370 735 370 370 736 369 369 736 371 371 736 370 370 737 371 371 737 328 328 737 328 328 738 371 371 738 429 429 738 328 328 739 429 429 739 329 329 739 329 329 740 429 429 740 430 430 740 329 329 741 430 430 741 372 372 741 372 372 742 430 430 742 431 431 742 372 372 743 431 431 743 373 373 743 373 373 744 431 431 744 375 375 744 373 373 745 375 375 745 374 374 745 374 374 746 375 375 746 376 376 746 375 375 747 432 432 747 376 376 747 376 376 748 432 432 748 377 377 748 376 376 749 377 377 749 331 331 749 331 331 750 377 377 750 435 435 750 331 331 751 435 435 751 332 332 751 332 332 752 435 435 752 378 378 752 332 332 753 378 378 753 333 333 753 333 333 754 378 378 754 437 437 754 333 333 755 437 437 755 335 335 755 335 335 756 437 437 756 379 379 756 335 335 757 379 379 757 336 336 757 336 336 758 379 379 758 438 438 758 336 336 759 438 438 759 380 380 759 380 380 760 438 438 760 381 381 760 380 380 761 381 381 761 382 382 761 382 382 762 381 381 762 383 383 762 382 382 763 383 383 763 384 384 763 384 384 764 383 383 764 385 385 764 384 384 765 385 385 765 338 338 765 338 338 766 385 385 766 440 440 766 338 338 767 440 440 767 386 386 767 386 386 768 440 440 768 387 387 768 386 386 769 387 387 769 388 388 769 388 388 770 387 387 770 389 389 770 388 388 771 389 389 771 339 339 771 339 339 772 389 389 772 442 442 772 339 339 773 442 442 773 390 390 773 390 390 774 442 442 774 444 444 774 390 390 775 444 444 775 340 340 775 340 340 776 444 444 776 392 392 776 340 340 777 392 392 777 391 391 777 391 391 778 392 392 778 393 393 778 391 391 779 393 393 779 394 394 779 394 394 780 393 393 780 447 447 780 394 394 781 447 447 781 344 344 781 344 344 782 447 447 782 395 395 782 344 344 783 395 395 783 345 345 783 345 345 784 395 395 784 396 396 784 345 345 785 396 396 785 346 346 785 346 346 786 396 396 786 397 397 786 346 346 787 397 397 787 347 347 787 347 347 788 397 397 788 450 450 788 347 347 789 450 450 789 398 398 789 398 398 790 450 450 790 451 451 790 398 398 791 451 451 791 399 399 791 399 399 792 451 451 792 400 400 792 399 399 793 400 400 793 401 401 793 401 401 794 400 400 794 453 453 794 401 401 795 453 453 795 402 402 795 402 402 796 453 453 796 456 456 796 402 402 797 456 456 797 352 352 797 352 352 798 456 456 798 457 457 798 352 352 799 457 457 799 403 403 799 403 403 800 457 457 800 404 404 800 403 403 801 404 404 801 405 405 801 405 405 802 404 404 802 459 459 802 405 405 803 459 459 803 354 354 803 354 354 804 459 459 804 406 406 804 354 354 805 406 406 805 407 407 805 407 407 806 406 406 806 461 461 806 407 407 807 461 461 807 408 408 807 408 408 808 461 461 808 462 462 808 408 408 809 462 462 809 409 409 809 409 409 810 462 462 810 464 464 810 409 409 811 464 464 811 357 357 811 357 357 812 464 464 812 410 410 812 357 357 813 410 410 813 411 411 813 411 411 814 410 410 814 412 412 814 411 411 815 412 412 815 358 358 815 358 358 816 412 412 816 413 413 816 358 358 817 413 413 817 414 414 817 414 414 818 413 413 818 470 470 818 414 414 819 470 470 819 415 415 819 415 415 820 470 470 820 417 417 820 415 415 821 417 417 821 416 416 821 416 416 822 417 417 822 419 419 822 416 416 823 419 419 823 418 418 823 418 418 824 419 419 824 420 420 824 418 418 825 420 420 825 363 363 825 363 363 826 420 420 826 474 474 826 363 363 827 474 474 827 364 364 827 364 364 828 474 474 828 421 421 828 364 364 829 421 421 829 422 422 829 422 422 830 421 421 830 476 476 830 422 422 831 476 476 831 423 423 831 423 423 832 476 476 832 424 424 832 423 423 833 424 424 833 425 425 833 425 425 834 424 424 834 477 477 834 425 425 835 477 477 835 426 426 835 426 426 836 477 477 836 478 478 836 426 426 837 478 478 837 366 366 837 366 366 838 478 478 838 480 480 838 366 366 839 480 480 839 368 368 839 368 368 840 480 480 840 427 427 840 368 368 841 427 427 841 369 369 841 369 369 842 427 427 842 428 428 842 369 369 843 428 428 843 371 371 843 371 371 844 428 428 844 483 483 844 371 371 845 483 483 845 429 429 845 429 429 846 483 483 846 484 484 846 429 429 847 484 484 847 430 430 847 430 430 848 484 484 848 486 486 848 430 430 849 486 486 849 431 431 849 431 431 850 486 486 850 433 433 850 431 431 851 433 433 851 375 375 851 375 375 852 433 433 852 432 432 852 433 433 853 125 125 853 432 432 853 432 432 854 125 125 854 126 126 854 432 432 855 126 126 855 377 377 855 377 377 856 126 126 856 434 434 856 377 377 857 434 434 857 435 435 857 435 435 858 434 434 858 436 436 858 435 435 859 436 436 859 378 378 859 378 378 860 436 436 860 129 129 860 378 378 861 129 129 861 437 437 861 437 437 862 129 129 862 128 128 862 437 437 863 128 128 863 379 379 863 379 379 864 128 128 864 127 127 864 379 379 865 127 127 865 438 438 865 438 438 866 127 127 866 130 130 866 438 438 867 130 130 867 381 381 867 381 381 868 130 130 868 439 439 868 381 381 869 439 439 869 383 383 869 383 383 870 439 439 870 133 133 870 383 383 871 133 133 871 385 385 871 385 385 872 133 133 872 132 132 872 385 385 873 132 132 873 440 440 873 440 440 874 132 132 874 131 131 874 440 440 875 131 131 875 387 387 875 387 387 876 131 131 876 441 441 876 387 387 877 441 441 877 389 389 877 389 389 878 441 441 878 135 135 878 389 389 879 135 135 879 442 442 879 442 442 880 135 135 880 443 443 880 442 442 881 443 443 881 444 444 881 444 444 882 443 443 882 134 134 882 444 444 883 134 134 883 392 392 883 392 392 884 134 134 884 445 445 884 392 392 885 445 445 885 393 393 885 393 393 886 445 445 886 136 136 886 393 393 887 136 136 887 447 447 887 447 447 888 136 136 888 446 446 888 447 447 889 446 446 889 395 395 889 395 395 890 446 446 890 138 138 890 395 395 891 138 138 891 396 396 891 396 396 892 138 138 892 448 448 892 396 396 893 448 448 893 397 397 893 397 397 894 448 448 894 137 137 894 397 397 895 137 137 895 450 450 895 450 450 896 137 137 896 449 449 896 450 450 897 449 449 897 451 451 897 451 451 898 449 449 898 452 452 898 451 451 899 452 452 899 400 400 899 400 400 900 452 452 900 454 454 900 400 400 901 454 454 901 453 453 901 453 453 902 454 454 902 455 455 902 453 453 903 455 455 903 456 456 903 456 456 904 455 455 904 139 139 904 456 456 905 139 139 905 457 457 905 457 457 906 139 139 906 458 458 906 457 457 907 458 458 907 404 404 907 404 404 908 458 458 908 141 141 908 404 404 909 141 141 909 459 459 909 459 459 910 141 141 910 140 140 910 459 459 911 140 140 911 406 406 911 406 406 912 140 140 912 460 460 912 406 406 913 460 460 913 461 461 913 461 461 914 460 460 914 142 142 914 461 461 915 142 142 915 462 462 915 462 462 916 142 142 916 463 463 916 462 462 917 463 463 917 464 464 917 464 464 918 463 463 918 465 465 918 464 464 919 465 465 919 410 410 919 410 410 920 465 465 920 466 466 920 410 410 921 466 466 921 412 412 921 412 412 922 466 466 922 467 467 922 412 412 923 467 467 923 413 413 923 413 413 924 467 467 924 468 468 924 413 413 925 468 468 925 470 470 925 470 470 926 468 468 926 469 469 926 470 470 927 469 469 927 417 417 927 417 417 928 469 469 928 471 471 928 417 417 929 471 471 929 419 419 929 419 419 930 471 471 930 472 472 930 419 419 931 472 472 931 420 420 931 420 420 932 472 472 932 473 473 932 420 420 933 473 473 933 474 474 933 474 474 934 473 473 934 144 144 934 474 474 935 144 144 935 421 421 935 421 421 936 144 144 936 475 475 936 421 421 937 475 475 937 476 476 937 476 476 938 475 475 938 146 146 938 476 476 939 146 146 939 424 424 939 424 424 940 146 146 940 145 145 940 424 424 941 145 145 941 477 477 941 477 477 942 145 145 942 147 147 942 477 477 943 147 147 943 478 478 943 478 478 944 147 147 944 479 479 944 478 478 945 479 479 945 480 480 945 480 480 946 479 479 946 481 481 946 480 480 947 481 481 947 427 427 947 427 427 948 481 481 948 482 482 948 427 427 949 482 482 949 428 428 949 428 428 950 482 482 950 149 149 950 428 428 951 149 149 951 483 483 951 483 483 952 149 149 952 148 148 952 483 483 953 148 148 953 484 484 953 484 484 954 148 148 954 485 485 954 484 484 955 485 485 955 486 486 955 486 486 956 485 485 956 487 487 956 486 486 957 487 487 957 433 433 957 433 433 958 487 487 958 125 125 958 488 488 959 53 53 959 807 807 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 788 788 961 780 780 962 66 66 962 489 489 962 768 768 963 68 68 963 770 770 963 69 69 964 70 70 964 763 763 964 490 490 965 73 73 965 749 749 965 78 78 966 80 80 966 738 738 966 491 491 967 724 724 967 727 727 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 707 707 969 96 96 970 492 492 970 691 691 970 679 679 971 103 103 971 493 493 971 2 2 972 3 3 972 672 672 972 6 6 973 8 8 973 523 523 973 12 12 974 13 13 974 653 653 974 646 646 975 15 15 975 638 638 975 16 16 976 637 637 976 636 636 976 624 624 977 622 622 977 515 515 977 21 21 978 23 23 978 605 605 978 25 25 979 599 599 979 606 606 979 28 28 980 494 494 980 597 597 980 31 31 981 34 34 981 510 510 981 40 40 982 495 495 982 496 496 982 43 43 983 44 44 983 497 497 983 562 562 984 45 45 984 498 498 984 499 499 985 551 551 985 553 553 985 500 500 986 501 501 986 502 502 986 502 502 987 501 501 987 503 503 987 502 502 988 503 503 988 548 548 988 548 548 989 503 503 989 504 504 989 548 548 990 504 504 990 505 505 990 505 505 991 504 504 991 555 555 991 505 505 992 555 555 992 506 506 992 506 506 993 555 555 993 507 507 993 506 506 994 507 507 994 550 550 994 550 550 995 507 507 995 553 553 995 108 108 996 107 107 996 582 582 996 582 582 997 107 107 997 593 593 997 582 582 998 593 593 998 583 583 998 583 583 999 593 593 999 590 590 999 583 583 1000 590 590 1000 584 584 1000 584 584 1001 590 590 1001 508 508 1001 584 584 1002 508 508 1002 509 509 1002 509 509 1003 508 508 1003 587 587 1003 509 509 1004 587 587 1004 585 585 1004 585 585 1005 587 587 1005 510 510 1005 110 110 1006 112 112 1006 512 512 1006 512 512 1007 112 112 1007 511 511 1007 512 512 1008 511 511 1008 513 513 1008 513 513 1009 511 511 1009 628 628 1009 513 513 1010 628 628 1010 619 619 1010 619 619 1011 628 628 1011 626 626 1011 619 619 1012 626 626 1012 620 620 1012 620 620 1013 626 626 1013 625 625 1013 620 620 1014 625 625 1014 514 514 1014 514 514 1015 625 625 1015 515 515 1015 113 113 1016 517 517 1016 516 516 1016 516 516 1017 517 517 1017 519 519 1017 516 516 1018 519 519 1018 518 518 1018 518 518 1019 519 519 1019 666 666 1019 518 518 1020 666 666 1020 521 521 1020 521 521 1021 666 666 1021 520 520 1021 521 521 1022 520 520 1022 522 522 1022 522 522 1023 520 520 1023 663 663 1023 522 522 1024 663 663 1024 659 659 1024 659 659 1025 663 663 1025 523 523 1025 116 116 1026 524 524 1026 678 678 1026 678 678 1027 524 524 1027 683 683 1027 678 678 1028 683 683 1028 525 525 1028 525 525 1029 683 683 1029 526 526 1029 525 525 1030 526 526 1030 676 676 1030 676 676 1031 526 526 1031 682 682 1031 676 676 1032 682 682 1032 674 674 1032 674 674 1033 682 682 1033 527 527 1033 674 674 1034 527 527 1034 673 673 1034 673 673 1035 527 527 1035 493 493 1035 685 685 1036 117 117 1036 687 687 1036 687 687 1037 117 117 1037 697 697 1037 687 687 1038 697 697 1038 528 528 1038 528 528 1039 697 697 1039 695 695 1039 528 528 1040 695 695 1040 529 529 1040 529 529 1041 695 695 1041 694 694 1041 529 529 1042 694 694 1042 530 530 1042 530 530 1043 694 694 1043 531 531 1043 530 530 1044 531 531 1044 690 690 1044 690 690 1045 531 531 1045 691 691 1045 711 711 1046 119 119 1046 710 710 1046 710 710 1047 119 119 1047 719 719 1047 710 710 1048 719 719 1048 533 533 1048 533 533 1049 719 719 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 715 715 1051 534 534 1052 715 715 1052 708 708 1052 708 708 1053 715 715 1053 535 535 1053 708 708 1054 535 535 1054 706 706 1054 706 706 1055 535 535 1055 536 536 1055 720 720 1056 537 537 1056 539 539 1056 539 539 1057 537 537 1057 538 538 1057 539 539 1058 538 538 1058 540 540 1058 540 540 1059 538 538 1059 731 731 1059 540 540 1060 731 731 1060 541 541 1060 541 541 1061 731 731 1061 542 542 1061 541 541 1062 542 542 1062 721 721 1062 721 721 1063 542 542 1063 728 728 1063 721 721 1064 728 728 1064 725 725 1064 725 725 1065 728 728 1065 727 727 1065 745 745 1066 755 755 1066 744 744 1066 744 744 1067 755 755 1067 754 754 1067 744 744 1068 754 754 1068 743 743 1068 743 743 1069 754 754 1069 753 753 1069 743 743 1070 753 753 1070 742 742 1070 742 742 1071 753 753 1071 543 543 1071 742 742 1072 543 543 1072 740 740 1072 740 740 1073 543 543 1073 544 544 1073 740 740 1074 544 544 1074 739 739 1074 739 739 1075 544 544 1075 749 749 1075 785 785 1076 122 122 1076 545 545 1076 545 545 1077 122 122 1077 793 793 1077 545 545 1078 793 793 1078 546 546 1078 546 546 1079 793 793 1079 792 792 1079 546 546 1080 792 792 1080 784 784 1080 784 784 1081 792 792 1081 791 791 1081 784 784 1082 791 791 1082 782 782 1082 782 782 1083 791 791 1083 790 790 1083 782 782 1084 790 790 1084 781 781 1084 781 781 1085 790 790 1085 788 788 1085 814 814 1086 500 500 1086 547 547 1086 547 547 1087 500 500 1087 502 502 1087 547 547 1088 502 502 1088 816 816 1088 816 816 1089 502 502 1089 548 548 1089 816 816 1090 548 548 1090 818 818 1090 818 818 1091 548 548 1091 505 505 1091 818 818 1092 505 505 1092 819 819 1092 819 819 1093 505 505 1093 506 506 1093 819 819 1094 506 506 1094 549 549 1094 549 549 1095 506 506 1095 550 550 1095 549 549 1096 550 550 1096 820 820 1096 820 820 1097 550 550 1097 48 48 1097 553 553 1098 551 551 1098 550 550 1098 550 550 1099 551 551 1099 47 47 1099 550 550 1100 47 47 1100 48 48 1100 552 552 1101 499 499 1101 561 561 1101 561 561 1102 499 499 1102 553 553 1102 561 561 1103 553 553 1103 554 554 1103 554 554 1104 553 553 1104 507 507 1104 554 554 1105 507 507 1105 556 556 1105 556 556 1106 507 507 1106 555 555 1106 556 556 1107 555 555 1107 557 557 1107 557 557 1108 555 555 1108 504 504 1108 557 557 1109 504 504 1109 559 559 1109 559 559 1110 504 504 1110 503 503 1110 559 559 1111 503 503 1111 558 558 1111 558 558 1112 503 503 1112 501 501 1112 558 558 1113 105 105 1113 559 559 1113 559 559 1114 105 105 1114 560 560 1114 559 559 1115 560 560 1115 557 557 1115 557 557 1116 560 560 1116 565 565 1116 557 557 1117 565 565 1117 556 556 1117 556 556 1118 565 565 1118 564 564 1118 556 556 1119 564 564 1119 554 554 1119 554 554 1120 564 564 1120 563 563 1120 554 554 1121 563 563 1121 561 561 1121 561 561 1122 563 563 1122 498 498 1122 561 561 1123 498 498 1123 552 552 1123 552 552 1124 498 498 1124 45 45 1124 44 44 1125 562 562 1125 497 497 1125 497 497 1126 562 562 1126 498 498 1126 497 497 1127 498 498 1127 570 570 1127 570 570 1128 498 498 1128 563 563 1128 570 570 1129 563 563 1129 571 571 1129 571 571 1130 563 563 1130 564 564 1130 571 571 1131 564 564 1131 566 566 1131 566 566 1132 564 564 1132 565 565 1132 566 566 1133 565 565 1133 573 573 1133 573 573 1134 565 565 1134 560 560 1134 573 573 1135 560 560 1135 567 567 1135 567 567 1136 560 560 1136 105 105 1136 495 495 1137 43 43 1137 496 496 1137 496 496 1138 43 43 1138 497 497 1138 496 496 1139 497 497 1139 568 568 1139 568 568 1140 497 497 1140 570 570 1140 568 568 1141 570 570 1141 569 569 1141 569 569 1142 570 570 1142 571 571 1142 569 569 1143 571 571 1143 572 572 1143 572 572 1144 571 571 1144 566 566 1144 572 572 1145 566 566 1145 580 580 1145 580 580 1146 566 566 1146 573 573 1146 580 580 1147 573 573 1147 574 574 1147 574 574 1148 573 573 1148 567 567 1148 39 39 1149 40 40 1149 575 575 1149 575 575 1150 40 40 1150 496 496 1150 575 575 1151 496 496 1151 576 576 1151 576 576 1152 496 496 1152 568 568 1152 576 576 1153 568 568 1153 577 577 1153 577 577 1154 568 568 1154 569 569 1154 577 577 1155 569 569 1155 578 578 1155 578 578 1156 569 569 1156 572 572 1156 578 578 1157 572 572 1157 579 579 1157 579 579 1158 572 572 1158 580 580 1158 579 579 1159 580 580 1159 581 581 1159 581 581 1160 580 580 1160 574 574 1160 581 581 1161 108 108 1161 579 579 1161 579 579 1162 108 108 1162 582 582 1162 579 579 1163 582 582 1163 578 578 1163 578 578 1164 582 582 1164 583 583 1164 578 578 1165 583 583 1165 577 577 1165 577 577 1166 583 583 1166 584 584 1166 577 577 1167 584 584 1167 576 576 1167 576 576 1168 584 584 1168 509 509 1168 576 576 1169 509 509 1169 575 575 1169 575 575 1170 509 509 1170 585 585 1170 575 575 1171 585 585 1171 39 39 1171 39 39 1172 585 585 1172 36 36 1172 510 510 1173 34 34 1173 585 585 1173 585 585 1174 34 34 1174 35 35 1174 585 585 1175 35 35 1175 36 36 1175 598 598 1176 31 31 1176 596 596 1176 596 596 1177 31 31 1177 510 510 1177 596 596 1178 510 510 1178 586 586 1178 586 586 1179 510 510 1179 587 587 1179 586 586 1180 587 587 1180 588 588 1180 588 588 1181 587 587 1181 508 508 1181 588 588 1182 508 508 1182 589 589 1182 589 589 1183 508 508 1183 590 590 1183 589 589 1184 590 590 1184 591 591 1184 591 591 1185 590 590 1185 593 593 1185 591 591 1186 593 593 1186 592 592 1186 592 592 1187 593 593 1187 107 107 1187 592 592 1188 109 109 1188 591 591 1188 591 591 1189 109 109 1189 604 604 1189 591 591 1190 604 604 1190 589 589 1190 589 589 1191 604 604 1191 594 594 1191 589 589 1192 594 594 1192 588 588 1192 588 588 1193 594 594 1193 595 595 1193 588 588 1194 595 595 1194 586 586 1194 586 586 1195 595 595 1195 601 601 1195 586 586 1196 601 601 1196 596 596 1196 596 596 1197 601 601 1197 597 597 1197 596 596 1198 597 597 1198 598 598 1198 598 598 1199 597 597 1199 494 494 1199 599 599 1200 28 28 1200 606 606 1200 606 606 1201 28 28 1201 597 597 1201 606 606 1202 597 597 1202 600 600 1202 600 600 1203 597 597 1203 601 601 1203 600 600 1204 601 601 1204 609 609 1204 609 609 1205 601 601 1205 595 595 1205 609 609 1206 595 595 1206 602 602 1206 602 602 1207 595 595 1207 594 594 1207 602 602 1208 594 594 1208 611 611 1208 611 611 1209 594 594 1209 604 604 1209 611 611 1210 604 604 1210 603 603 1210 603 603 1211 604 604 1211 109 109 1211 23 23 1212 25 25 1212 605 605 1212 605 605 1213 25 25 1213 606 606 1213 605 605 1214 606 606 1214 607 607 1214 607 607 1215 606 606 1215 600 600 1215 607 607 1216 600 600 1216 608 608 1216 608 608 1217 600 600 1217 609 609 1217 608 608 1218 609 609 1218 615 615 1218 615 615 1219 609 609 1219 602 602 1219 615 615 1220 602 602 1220 610 610 1220 610 610 1221 602 602 1221 611 611 1221 610 610 1222 611 611 1222 617 617 1222 617 617 1223 611 611 1223 603 603 1223 20 20 1224 21 21 1224 612 612 1224 612 612 1225 21 21 1225 605 605 1225 612 612 1226 605 605 1226 621 621 1226 621 621 1227 605 605 1227 607 607 1227 621 621 1228 607 607 1228 613 613 1228 613 613 1229 607 607 1229 608 608 1229 613 613 1230 608 608 1230 614 614 1230 614 614 1231 608 608 1231 615 615 1231 614 614 1232 615 615 1232 618 618 1232 618 618 1233 615 615 1233 610 610 1233 618 618 1234 610 610 1234 616 616 1234 616 616 1235 610 610 1235 617 617 1235 616 616 1236 110 110 1236 618 618 1236 618 618 1237 110 110 1237 512 512 1237 618 618 1238 512 512 1238 614 614 1238 614 614 1239 512 512 1239 513 513 1239 614 614 1240 513 513 1240 613 613 1240 613 613 1241 513 513 1241 619 619 1241 613 613 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 620 620 1243 621 621 1244 620 620 1244 612 612 1244 612 612 1245 620 620 1245 514 514 1245 612 612 1246 514 514 1246 20 20 1246 20 20 1247 514 514 1247 623 623 1247 515 515 1248 622 622 1248 514 514 1248 514 514 1249 622 622 1249 18 18 1249 514 514 1250 18 18 1250 623 623 1250 635 635 1251 624 624 1251 634 634 1251 634 634 1252 624 624 1252 515 515 1252 634 634 1253 515 515 1253 633 633 1253 633 633 1254 515 515 1254 625 625 1254 633 633 1255 625 625 1255 630 630 1255 630 630 1256 625 625 1256 626 626 1256 630 630 1257 626 626 1257 629 629 1257 629 629 1258 626 626 1258 628 628 1258 629 629 1259 628 628 1259 627 627 1259 627 627 1260 628 628 1260 511 511 1260 627 627 1261 511 511 1261 111 111 1261 111 111 1262 511 511 1262 112 112 1262 111 111 1263 645 645 1263 627 627 1263 627 627 1264 645 645 1264 644 644 1264 627 627 1265 644 644 1265 629 629 1265 629 629 1266 644 644 1266 642 642 1266 629 629 1267 642 642 1267 630 630 1267 630 630 1268 642 642 1268 631 631 1268 630 630 1269 631 631 1269 633 633 1269 633 633 1270 631 631 1270 632 632 1270 633 633 1271 632 632 1271 634 634 1271 634 634 1272 632 632 1272 636 636 1272 634 634 1273 636 636 1273 635 635 1273 635 635 1274 636 636 1274 637 637 1274 15 15 1275 16 16 1275 638 638 1275 638 638 1276 16 16 1276 636 636 1276 638 638 1277 636 636 1277 639 639 1277 639 639 1278 636 636 1278 632 632 1278 639 639 1279 632 632 1279 640 640 1279 640 640 1280 632 632 1280 631 631 1280 640 640 1281 631 631 1281 641 641 1281 641 641 1282 631 631 1282 642 642 1282 641 641 1283 642 642 1283 650 650 1283 650 650 1284 642 642 1284 644 644 1284 650 650 1285 644 644 1285 643 643 1285 643 643 1286 644 644 1286 645 645 1286 13 13 1287 646 646 1287 653 653 1287 653 653 1288 646 646 1288 638 638 1288 653 653 1289 638 638 1289 647 647 1289 647 647 1290 638 638 1290 639 639 1290 647 647 1291 639 639 1291 648 648 1291 648 648 1292 639 639 1292 640 640 1292 648 648 1293 640 640 1293 649 649 1293 649 649 1294 640 640 1294 641 641 1294 649 649 1295 641 641 1295 656 656 1295 656 656 1296 641 641 1296 650 650 1296 656 656 1297 650 650 1297 651 651 1297 651 651 1298 650 650 1298 643 643 1298 660 660 1299 12 12 1299 658 658 1299 658 658 1300 12 12 1300 653 653 1300 658 658 1301 653 653 1301 652 652 1301 652 652 1302 653 653 1302 647 647 1302 652 652 1303 647 647 1303 654 654 1303 654 654 1304 647 647 1304 648 648 1304 654 654 1305 648 648 1305 655 655 1305 655 655 1306 648 648 1306 649 649 1306 655 655 1307 649 649 1307 657 657 1307 657 657 1308 649 649 1308 656 656 1308 657 657 1309 656 656 1309 114 114 1309 114 114 1310 656 656 1310 651 651 1310 114 114 1311 113 113 1311 657 657 1311 657 657 1312 113 113 1312 516 516 1312 657 657 1313 516 516 1313 655 655 1313 655 655 1314 516 516 1314 518 518 1314 655 655 1315 518 518 1315 654 654 1315 654 654 1316 518 518 1316 521 521 1316 654 654 1317 521 521 1317 652 652 1317 652 652 1318 521 521 1318 522 522 1318 652 652 1319 522 522 1319 658 658 1319 658 658 1320 522 522 1320 659 659 1320 658 658 1321 659 659 1321 660 660 1321 660 660 1322 659 659 1322 661 661 1322 523 523 1323 8 8 1323 659 659 1323 659 659 1324 8 8 1324 9 9 1324 659 659 1325 9 9 1325 661 661 1325 4 4 1326 6 6 1326 662 662 1326 662 662 1327 6 6 1327 523 523 1327 662 662 1328 523 523 1328 671 671 1328 671 671 1329 523 523 1329 663 663 1329 671 671 1330 663 663 1330 664 664 1330 664 664 1331 663 663 1331 520 520 1331 664 664 1332 520 520 1332 665 665 1332 665 665 1333 520 520 1333 666 666 1333 665 665 1334 666 666 1334 667 667 1334 667 667 1335 666 666 1335 519 519 1335 667 667 1336 519 519 1336 668 668 1336 668 668 1337 519 519 1337 517 517 1337 668 668 1338 115 115 1338 667 667 1338 667 667 1339 115 115 1339 669 669 1339 667 667 1340 669 669 1340 665 665 1340 665 665 1341 669 669 1341 670 670 1341 665 665 1342 670 670 1342 664 664 1342 664 664 1343 670 670 1343 677 677 1343 664 664 1344 677 677 1344 671 671 1344 671 671 1345 677 677 1345 675 675 1345 671 671 1346 675 675 1346 662 662 1346 662 662 1347 675 675 1347 672 672 1347 662 662 1348 672 672 1348 4 4 1348 4 4 1349 672 672 1349 3 3 1349 1 1 1350 2 2 1350 673 673 1350 673 673 1351 2 2 1351 672 672 1351 673 673 1352 672 672 1352 674 674 1352 674 674 1353 672 672 1353 675 675 1353 674 674 1354 675 675 1354 676 676 1354 676 676 1355 675 675 1355 677 677 1355 676 676 1356 677 677 1356 525 525 1356 525 525 1357 677 677 1357 670 670 1357 525 525 1358 670 670 1358 678 678 1358 678 678 1359 670 670 1359 669 669 1359 678 678 1360 669 669 1360 116 116 1360 116 116 1361 669 669 1361 115 115 1361 493 493 1362 103 103 1362 673 673 1362 673 673 1363 103 103 1363 0 0 1363 673 673 1364 0 0 1364 1 1 1364 99 99 1365 679 679 1365 689 689 1365 689 689 1366 679 679 1366 493 493 1366 689 689 1367 493 493 1367 680 680 1367 680 680 1368 493 493 1368 527 527 1368 680 680 1369 527 527 1369 681 681 1369 681 681 1370 527 527 1370 682 682 1370 681 681 1371 682 682 1371 688 688 1371 688 688 1372 682 682 1372 526 526 1372 688 688 1373 526 526 1373 686 686 1373 686 686 1374 526 526 1374 683 683 1374 686 686 1375 683 683 1375 684 684 1375 684 684 1376 683 683 1376 524 524 1376 684 684 1377 685 685 1377 686 686 1377 686 686 1378 685 685 1378 687 687 1378 686 686 1379 687 687 1379 688 688 1379 688 688 1380 687 687 1380 528 528 1380 688 688 1381 528 528 1381 681 681 1381 681 681 1382 528 528 1382 529 529 1382 681 681 1383 529 529 1383 680 680 1383 680 680 1384 529 529 1384 530 530 1384 680 680 1385 530 530 1385 689 689 1385 689 689 1386 530 530 1386 690 690 1386 689 689 1387 690 690 1387 99 99 1387 99 99 1388 690 690 1388 98 98 1388 691 691 1389 492 492 1389 690 690 1389 690 690 1390 492 492 1390 692 692 1390 690 690 1391 692 692 1391 98 98 1391 693 693 1392 96 96 1392 705 705 1392 705 705 1393 96 96 1393 691 691 1393 705 705 1394 691 691 1394 704 704 1394 704 704 1395 691 691 1395 531 531 1395 704 704 1396 531 531 1396 702 702 1396 702 702 1397 531 531 1397 694 694 1397 702 702 1398 694 694 1398 699 699 1398 699 699 1399 694 694 1399 695 695 1399 699 699 1400 695 695 1400 696 696 1400 696 696 1401 695 695 1401 697 697 1401 696 696 1402 697 697 1402 698 698 1402 698 698 1403 697 697 1403 117 117 1403 698 698 1404 118 118 1404 696 696 1404 696 696 1405 118 118 1405 700 700 1405 696 696 1406 700 700 1406 699 699 1406 699 699 1407 700 700 1407 701 701 1407 699 699 1408 701 701 1408 702 702 1408 702 702 1409 701 701 1409 703 703 1409 702 702 1410 703 703 1410 704 704 1410 704 704 1411 703 703 1411 709 709 1411 704 704 1412 709 709 1412 705 705 1412 705 705 1413 709 709 1413 707 707 1413 705 705 1414 707 707 1414 693 693 1414 693 693 1415 707 707 1415 94 94 1415 91 91 1416 93 93 1416 706 706 1416 706 706 1417 93 93 1417 707 707 1417 706 706 1418 707 707 1418 708 708 1418 708 708 1419 707 707 1419 709 709 1419 708 708 1420 709 709 1420 534 534 1420 534 534 1421 709 709 1421 703 703 1421 534 534 1422 703 703 1422 533 533 1422 533 533 1423 703 703 1423 701 701 1423 533 533 1424 701 701 1424 710 710 1424 710 710 1425 701 701 1425 700 700 1425 710 710 1426 700 700 1426 711 711 1426 711 711 1427 700 700 1427 118 118 1427 536 536 1428 89 89 1428 706 706 1428 706 706 1429 89 89 1429 712 712 1429 706 706 1430 712 712 1430 91 91 1430 87 87 1431 88 88 1431 722 722 1431 722 722 1432 88 88 1432 536 536 1432 722 722 1433 536 536 1433 713 713 1433 713 713 1434 536 536 1434 535 535 1434 713 713 1435 535 535 1435 714 714 1435 714 714 1436 535 535 1436 715 715 1436 714 714 1437 715 715 1437 716 716 1437 716 716 1438 715 715 1438 532 532 1438 716 716 1439 532 532 1439 717 717 1439 717 717 1440 532 532 1440 719 719 1440 717 717 1441 719 719 1441 718 718 1441 718 718 1442 719 719 1442 119 119 1442 718 718 1443 720 720 1443 717 717 1443 717 717 1444 720 720 1444 539 539 1444 717 717 1445 539 539 1445 716 716 1445 716 716 1446 539 539 1446 540 540 1446 716 716 1447 540 540 1447 714 714 1447 714 714 1448 540 540 1448 541 541 1448 714 714 1449 541 541 1449 713 713 1449 713 713 1450 541 541 1450 721 721 1450 713 713 1451 721 721 1451 722 722 1451 722 722 1452 721 721 1452 725 725 1452 722 722 1453 725 725 1453 87 87 1453 87 87 1454 725 725 1454 723 723 1454 727 727 1455 724 724 1455 725 725 1455 725 725 1456 724 724 1456 84 84 1456 725 725 1457 84 84 1457 723 723 1457 81 81 1458 491 491 1458 737 737 1458 737 737 1459 491 491 1459 727 727 1459 737 737 1460 727 727 1460 726 726 1460 726 726 1461 727 727 1461 728 728 1461 726 726 1462 728 728 1462 729 729 1462 729 729 1463 728 728 1463 542 542 1463 729 729 1464 542 542 1464 730 730 1464 730 730 1465 542 542 1465 731 731 1465 730 730 1466 731 731 1466 733 733 1466 733 733 1467 731 731 1467 538 538 1467 733 733 1468 538 538 1468 732 732 1468 732 732 1469 538 538 1469 537 537 1469 732 732 1470 746 746 1470 733 733 1470 733 733 1471 746 746 1471 734 734 1471 733 733 1472 734 734 1472 730 730 1472 730 730 1473 734 734 1473 735 735 1473 730 730 1474 735 735 1474 729 729 1474 729 729 1475 735 735 1475 736 736 1475 729 729 1476 736 736 1476 726 726 1476 726 726 1477 736 736 1477 741 741 1477 726 726 1478 741 741 1478 737 737 1478 737 737 1479 741 741 1479 738 738 1479 737 737 1480 738 738 1480 81 81 1480 81 81 1481 738 738 1481 80 80 1481 747 747 1482 78 78 1482 739 739 1482 739 739 1483 78 78 1483 738 738 1483 739 739 1484 738 738 1484 740 740 1484 740 740 1485 738 738 1485 741 741 1485 740 740 1486 741 741 1486 742 742 1486 742 742 1487 741 741 1487 736 736 1487 742 742 1488 736 736 1488 743 743 1488 743 743 1489 736 736 1489 735 735 1489 743 743 1490 735 735 1490 744 744 1490 744 744 1491 735 735 1491 734 734 1491 744 744 1492 734 734 1492 745 745 1492 745 745 1493 734 734 1493 746 746 1493 749 749 1494 73 73 1494 739 739 1494 739 739 1495 73 73 1495 75 75 1495 739 739 1496 75 75 1496 747 747 1496 71 71 1497 490 490 1497 748 748 1497 748 748 1498 490 490 1498 749 749 1498 748 748 1499 749 749 1499 761 761 1499 761 761 1500 749 749 1500 544 544 1500 761 761 1501 544 544 1501 750 750 1501 750 750 1502 544 544 1502 543 543 1502 750 750 1503 543 543 1503 751 751 1503 751 751 1504 543 543 1504 753 753 1504 751 751 1505 753 753 1505 752 752 1505 752 752 1506 753 753 1506 754 754 1506 752 752 1507 754 754 1507 756 756 1507 756 756 1508 754 754 1508 755 755 1508 756 756 1509 757 757 1509 752 752 1509 752 752 1510 757 757 1510 758 758 1510 752 752 1511 758 758 1511 751 751 1511 751 751 1512 758 758 1512 759 759 1512 751 751 1513 759 759 1513 750 750 1513 750 750 1514 759 759 1514 760 760 1514 750 750 1515 760 760 1515 761 761 1515 761 761 1516 760 760 1516 762 762 1516 761 761 1517 762 762 1517 748 748 1517 748 748 1518 762 762 1518 763 763 1518 748 748 1519 763 763 1519 71 71 1519 71 71 1520 763 763 1520 70 70 1520 68 68 1521 69 69 1521 770 770 1521 770 770 1522 69 69 1522 763 763 1522 770 770 1523 763 763 1523 771 771 1523 771 771 1524 763 763 1524 762 762 1524 771 771 1525 762 762 1525 764 764 1525 764 764 1526 762 762 1526 760 760 1526 764 764 1527 760 760 1527 765 765 1527 765 765 1528 760 760 1528 759 759 1528 765 765 1529 759 759 1529 766 766 1529 766 766 1530 759 759 1530 758 758 1530 766 766 1531 758 758 1531 767 767 1531 767 767 1532 758 758 1532 757 757 1532 779 779 1533 768 768 1533 769 769 1533 769 769 1534 768 768 1534 770 770 1534 769 769 1535 770 770 1535 778 778 1535 778 778 1536 770 770 1536 771 771 1536 778 778 1537 771 771 1537 776 776 1537 776 776 1538 771 771 1538 764 764 1538 776 776 1539 764 764 1539 774 774 1539 774 774 1540 764 764 1540 765 765 1540 774 774 1541 765 765 1541 772 772 1541 772 772 1542 765 765 1542 766 766 1542 772 772 1543 766 766 1543 120 120 1543 120 120 1544 766 766 1544 767 767 1544 120 120 1545 123 123 1545 772 772 1545 772 772 1546 123 123 1546 773 773 1546 772 772 1547 773 773 1547 774 774 1547 774 774 1548 773 773 1548 775 775 1548 774 774 1549 775 775 1549 776 776 1549 776 776 1550 775 775 1550 777 777 1550 776 776 1551 777 777 1551 778 778 1551 778 778 1552 777 777 1552 783 783 1552 778 778 1553 783 783 1553 769 769 1553 769 769 1554 783 783 1554 489 489 1554 769 769 1555 489 489 1555 779 779 1555 779 779 1556 489 489 1556 66 66 1556 63 63 1557 780 780 1557 781 781 1557 781 781 1558 780 780 1558 489 489 1558 781 781 1559 489 489 1559 782 782 1559 782 782 1560 489 489 1560 783 783 1560 782 782 1561 783 783 1561 784 784 1561 784 784 1562 783 783 1562 777 777 1562 784 784 1563 777 777 1563 546 546 1563 546 546 1564 777 777 1564 775 775 1564 546 546 1565 775 775 1565 545 545 1565 545 545 1566 775 775 1566 773 773 1566 545 545 1567 773 773 1567 785 785 1567 785 785 1568 773 773 1568 123 123 1568 788 788 1569 61 61 1569 781 781 1569 781 781 1570 61 61 1570 786 786 1570 781 781 1571 786 786 1571 63 63 1571 57 57 1572 58 58 1572 787 787 1572 787 787 1573 58 58 1573 788 788 1573 787 787 1574 788 788 1574 789 789 1574 789 789 1575 788 788 1575 790 790 1575 789 789 1576 790 790 1576 798 798 1576 798 798 1577 790 790 1577 791 791 1577 798 798 1578 791 791 1578 797 797 1578 797 797 1579 791 791 1579 792 792 1579 797 797 1580 792 792 1580 794 794 1580 794 794 1581 792 792 1581 793 793 1581 794 794 1582 793 793 1582 121 121 1582 121 121 1583 793 793 1583 122 122 1583 121 121 1584 795 795 1584 794 794 1584 794 794 1585 795 795 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 789 789 1590 789 789 1591 803 803 1591 802 802 1591 789 789 1592 802 802 1592 787 787 1592 787 787 1593 802 802 1593 799 799 1593 787 787 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 807 807 1596 807 807 1597 800 800 1597 799 799 1597 807 807 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 809 809 1600 809 809 1601 802 802 1601 803 803 1601 809 809 1602 803 803 1602 811 811 1602 811 811 1603 803 803 1603 804 804 1603 811 811 1604 804 804 1604 812 812 1604 812 812 1605 804 804 1605 796 796 1605 812 812 1606 796 796 1606 124 124 1606 124 124 1607 796 796 1607 795 795 1607 805 805 1608 488 488 1608 806 806 1608 806 806 1609 488 488 1609 807 807 1609 806 806 1610 807 807 1610 817 817 1610 817 817 1611 807 807 1611 801 801 1611 817 817 1612 801 801 1612 808 808 1612 808 808 1613 801 801 1613 809 809 1613 808 808 1614 809 809 1614 815 815 1614 815 815 1615 809 809 1615 811 811 1615 815 815 1616 811 811 1616 810 810 1616 810 810 1617 811 811 1617 812 812 1617 810 810 1618 812 812 1618 813 813 1618 813 813 1619 812 812 1619 124 124 1619 813 813 1620 814 814 1620 810 810 1620 810 810 1621 814 814 1621 547 547 1621 810 810 1622 547 547 1622 815 815 1622 815 815 1623 547 547 1623 816 816 1623 815 815 1624 816 816 1624 808 808 1624 808 808 1625 816 816 1625 818 818 1625 808 808 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 806 806 1628 806 806 1629 819 819 1629 549 549 1629 806 806 1630 549 549 1630 805 805 1630 805 805 1631 549 549 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.STL new file mode 100755 index 0000000..e60d4d8 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.dae new file mode 100755 index 0000000..25beafa --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/left_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:38:01 2016 GMT + Tue Jan 19 20:38:01 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 -0.0010504 0.00992115 0.000683737 0.00090033 0.00992115 -0.000871921 0.00190833 0.00929776 -0.00314799 0.00155056 0.00968583 -0.00194434 0.00229522 0.00929776 -0.00287811 0.000649718 0.00992115 -0.00107178 0.00100666 0.00968583 -0.00227405 0.00149011 0.00929776 -0.00336618 0.00128919 0.00968583 -0.00212665 0.00249738 0.00876307 -0.00411968 0.000356608 0.00992115 -0.00120153 0.000507328 0.00992115 -0.00114606 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000200032 0.00992115 -0.00123727 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 4.01713e-05 0.00992115 -0.00125269 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 -0.000120349 0.00992115 -0.00124754 -0.0002388 0.00968583 -0.00247541 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.00567642 0.00535827 0.00625037 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000278893 0.00992115 -0.00122191 -0.000858888 0.00968583 -0.00233388 -0.000553387 0.00968583 -0.00242455 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -0.000432857 0.00992115 -0.00117621 -0.00170272 0.00929776 -0.00326379 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000579714 0.00992115 -0.0011112 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.000717052 0.00992115 -0.00102795 -0.00115029 0.00968583 -0.00220488 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00167194 0.00968583 -0.001841 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.0010504 0.00992115 -0.000683737 -0.00308521 0.00929776 -0.00200825 -0.00403752 0.00876307 -0.00262813 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00118948 0.00992115 -0.000394935 -0.00112921 0.00992115 -0.000543801 -0.00236021 0.00968583 -0.000783642 -0.00349371 0.00929776 -0.00115999 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00457211 0.00876307 -0.00151805 -0.00434045 0.00876307 -0.00209025 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00123022 0.00992115 -0.000239585 -0.00244104 0.00968583 -0.000475392 -0.00361336 0.00929776 -0.000703702 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 0.000627905 -0.00190781 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00932245 -0.00187381 -0.00309527 -0.00888141 -0.00425779 -0.00172965 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00671923 -0.00728969 -0.00130857 -0.00125076 0.00992115 -8.03013e-05 -0.00248179 0.00968583 -0.000159336 -0.00480764 0.00876307 -0.000308661 -0.0047287 0.00876307 -0.000920914 -0.00576946 0.00809017 -0.0011236 -0.00683141 0.00728969 -0.000438591 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.0076893 0.00637424 -0.00049367 -0.00828758 0.00535827 -0.00161401 -0.00842593 0.00535827 -0.000540963 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00980269 0.00187381 -0.000629354 -0.00964173 0.00187381 -0.00187773 -0.00995976 0.000627905 -0.000639438 -0.00964173 -0.00187381 -0.00187773 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00933518 -0.00309017 -0.00181803 -0.00828758 -0.00535827 -0.00161401 -0.00683141 -0.00728969 -0.000438591 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 8.03013e-05 6.98426e-19 0.01 5.55111e-19 -0.00248179 0.00968583 0.000159336 -0.00367368 0.00929776 0.000235858 -0.00367368 0.00929776 -0.000235858 -0.00480764 0.00876307 0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00949102 0.00309017 -0.000609344 -0.00995976 -0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00980269 -0.00187381 -0.000629354 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.0076893 -0.00637424 -0.00049367 -0.00586578 -0.00809017 0.000376595 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00123022 0.00992115 0.000239585 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 6.98426e-19 -0.01 -5.55111e-19 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.00123022 -0.00992115 0.000239585 -0.00367368 -0.00929776 0.000235858 -0.00367368 -0.00929776 -0.000235858 -0.0047287 -0.00876307 -0.000920914 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00264442 0.00929776 -0.00256098 0.00346067 0.00876307 -0.00335148 0.0029502 0.00929776 -0.00220179 0.00216688 0.00968583 -0.00122036 0.00109205 0.00992115 -0.000615032 0.00116173 0.00992115 -0.000470334 -0.00361336 -0.00929776 -0.000703702 -0.00349371 -0.00929776 -0.00115999 -0.00457211 -0.00876307 -0.00151805 -0.00529576 -0.00809017 -0.0025503 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00320754 0.00929776 -0.00180645 0.00230515 0.00968583 -0.000933251 0.00121234 0.00992115 -0.000317913 0.00240556 0.00968583 -0.000630813 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 7.04223e-19 0.00341221 0.00929776 -0.00138145 0.00356085 0.00929776 -0.000933765 0.00419761 0.00876307 -0.00236405 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00123022 -0.00992115 -0.000239585 -0.00125076 -0.00992115 -8.03013e-05 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 8.42229e-19 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00465998 0.00876307 -0.00122199 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00224062 -0.00968583 -0.00107902 -0.00118948 -0.00992115 -0.000394935 0.00121234 0.00992115 0.000317913 0.00368125 0.00929776 9.66952e-19 0.00365102 0.00929776 -0.000470747 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00481754 0.00876307 1.07643e-18 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00112921 -0.00992115 -0.000543801 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.0058296 0.00809017 -0.000751643 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.00189364 -0.00968583 -0.00161208 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00587785 0.00809017 1.16892e-18 0.00684547 0.00728969 1.24299e-18 0.00678927 0.00728969 -0.000875379 0.00764187 0.00637424 -0.00098531 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.0014228 -0.00968583 -0.00203969 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00770513 0.00637424 1.29745e-18 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000858888 -0.00968583 -0.00233388 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 1.33145e-18 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000432857 -0.00992115 -0.00117621 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00904827 0.00425779 1.34445e-18 0.00943248 0.00309017 -0.00121618 0.00974223 0.00187381 -0.00125612 0.00965386 0.000627905 -0.00253154 0.00950161 0.00187381 -0.00249162 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000278893 -0.00992115 -0.00122191 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00951057 0.00309017 1.33625e-18 0.00982287 0.00187381 1.30697e-18 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 -0.000120349 -0.00992115 -0.00124754 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00998027 0.000627905 1.25709e-18 0.00989833 0.000627905 -0.00127625 0.00989833 -0.000627905 -0.00127625 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 7.9709e-05 -0.00968583 -0.00248562 0.000396909 -0.00968583 -0.00245502 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000200032 -0.00992115 -0.00123727 4.01713e-05 -0.00992115 -0.00125269 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00982287 -0.00187381 1.09894e-18 0.00998027 -0.000627905 1.18737e-18 0.00919952 -0.00309017 -0.0024124 0.00943248 -0.00309017 -0.00121618 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.000707591 -0.00968583 -0.00238411 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00951057 -0.00309017 9.93169e-19 0.00897398 -0.00425779 -0.00115707 0.00875235 -0.00425779 -0.00229514 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00904827 -0.00425779 8.71738e-19 0.00837396 -0.00535827 -0.0010797 0.00816714 -0.00535827 -0.00214168 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 0.000649718 -0.00992115 -0.00107178 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00745314 -0.00637424 -0.00195444 0.00662159 -0.00728969 -0.00173639 0.00386084 -0.00876307 -0.00288142 0.0029502 -0.00929776 -0.00220179 0.00264442 -0.00929776 -0.00256098 0.00178646 -0.00968583 -0.00173009 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 7.3656e-19 0.00770513 -0.00637424 5.89765e-19 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00544828 -0.00809017 -0.00220576 0.00446546 -0.00876307 -0.00180786 0.00419761 -0.00876307 -0.00236405 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 0.00090033 -0.00992115 -0.000871921 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00678927 -0.00728969 -0.000875379 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00684547 -0.00728969 4.3367e-19 0.0058296 -0.00809017 -0.000751643 0.00477798 -0.00876307 -0.000616053 0.00230515 -0.00968583 -0.000933251 0.00109205 -0.00992115 -0.000615032 0.00587785 -0.00809017 2.70735e-19 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00481754 -0.00876307 1.0353e-19 0.00368125 -0.00929776 -6.53071e-20 0.00121234 -0.00992115 -0.000317913 0.00240556 -0.00968583 -0.000630813 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00246648 -0.00968583 -0.000318018 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 -2.33114e-19 0.00125333 -0.00992115 -3.97245e-19 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 0.000159336 -0.00248179 -0.00968583 -0.000159336 -0.00557841 -0.00809017 -0.00185216 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00480764 -0.00876307 0.000308661 -0.00480764 -0.00876307 -0.000308661 -0.00586578 -0.00809017 -0.000376595 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.0073126 -0.00637424 -0.00242795 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00199303 0.00968583 -0.00148744 0.00178646 0.00968583 -0.00173009 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 0.00124304 -0.00992115 0.000160273 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 -3.55661e-18 0.0640702 0.997945 3.55661e-18 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1134 1134 0 0 0 0 391 391 0 1092 1092 1 4 4 1 1 1 1 1 1 2 4 4 2 201 201 2 2 2 3 201 201 3 4 4 3 3 3 4 425 425 4 1176 1176 4 2 2 5 4 4 5 6 6 5 6 6 6 4 4 6 1092 1092 6 6 6 7 1092 1092 7 7 7 7 8 8 8 201 201 8 2 2 8 8 8 9 2 2 9 11 11 9 11 11 10 2 2 10 6 6 10 11 11 11 6 6 11 5 5 11 5 5 12 6 6 12 7 7 12 5 5 13 7 7 13 12 12 13 14 14 14 201 201 14 8 8 14 14 14 15 8 8 15 9 9 15 9 9 16 8 8 16 11 11 16 9 9 17 11 11 17 10 10 17 10 10 18 11 11 18 5 5 18 10 10 19 5 5 19 15 15 19 15 15 20 5 5 20 12 12 20 15 15 21 12 12 21 1088 1088 21 13 13 22 201 201 22 14 14 22 13 13 23 14 14 23 18 18 23 18 18 24 14 14 24 9 9 24 18 18 25 9 9 25 19 19 25 19 19 26 9 9 26 10 10 26 19 19 27 10 10 27 22 22 27 22 22 28 10 10 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1088 1088 30 16 16 31 1088 1088 31 1087 1087 31 17 17 32 201 201 32 13 13 32 17 17 33 13 13 33 26 26 33 26 26 34 13 13 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1087 1087 42 30 30 43 1087 1087 43 23 23 43 24 24 44 201 201 44 17 17 44 24 24 45 17 17 45 25 25 45 25 25 46 17 17 46 26 26 46 25 25 47 26 26 47 33 33 47 33 33 48 26 26 48 27 27 48 33 33 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 36 36 53 36 36 54 21 21 54 30 30 54 36 36 55 30 30 55 38 38 55 38 38 56 30 30 56 23 23 56 38 38 57 23 23 57 1086 1086 57 31 31 58 201 201 58 24 24 58 1118 1118 59 407 407 59 39 39 59 31 31 60 24 24 60 32 32 60 32 32 61 24 24 61 25 25 61 32 32 62 25 25 62 40 40 62 40 40 63 25 25 63 33 33 63 40 40 64 33 33 64 42 42 64 42 42 65 33 33 65 28 28 65 42 42 66 28 28 66 34 34 66 34 34 67 28 28 67 29 29 67 34 34 68 29 29 68 35 35 68 35 35 69 29 29 69 36 36 69 35 35 70 36 36 70 47 47 70 47 47 71 36 36 71 38 38 71 47 47 72 38 38 72 37 37 72 37 37 73 38 38 73 1086 1086 73 37 37 74 1086 1086 74 1084 1084 74 49 49 75 201 201 75 31 31 75 39 39 76 408 408 76 392 392 76 49 49 77 31 31 77 51 51 77 51 51 78 31 31 78 32 32 78 51 51 79 32 32 79 41 41 79 41 41 80 32 32 80 40 40 80 41 41 81 40 40 81 52 52 81 52 52 82 40 40 82 42 42 82 52 52 83 42 42 83 43 43 83 43 43 84 42 42 84 34 34 84 43 43 85 34 34 85 44 44 85 44 44 86 34 34 86 35 35 86 44 44 87 35 35 87 45 45 87 45 45 88 35 35 88 47 47 88 45 45 89 47 47 89 46 46 89 46 46 90 47 47 90 37 37 90 46 46 91 37 37 91 48 48 91 48 48 92 37 37 92 1084 1084 92 48 48 93 1084 1084 93 1083 1083 93 56 56 94 201 201 94 49 49 94 392 392 95 375 375 95 1121 1121 95 56 56 96 49 49 96 50 50 96 50 50 97 49 49 97 51 51 97 50 50 98 51 51 98 58 58 98 58 58 99 51 51 99 41 41 99 58 58 100 41 41 100 59 59 100 59 59 101 41 41 101 52 52 101 59 59 102 52 52 102 61 61 102 61 61 103 52 52 103 43 43 103 61 61 104 43 43 104 53 53 104 53 53 105 43 43 105 44 44 105 53 53 106 44 44 106 63 63 106 63 63 107 44 44 107 45 45 107 63 63 108 45 45 108 54 54 108 54 54 109 45 45 109 46 46 109 54 54 110 46 46 110 64 64 110 64 64 111 46 46 111 48 48 111 64 64 112 48 48 112 66 66 112 66 66 113 48 48 113 1083 1083 113 66 66 114 1083 1083 114 55 55 114 69 69 115 201 201 115 56 56 115 1121 1121 116 376 376 116 1122 1122 116 69 69 117 56 56 117 73 73 117 73 73 118 56 56 118 50 50 118 73 73 119 50 50 119 57 57 119 57 57 120 50 50 120 58 58 120 57 57 121 58 58 121 60 60 121 60 60 122 58 58 122 59 59 122 60 60 123 59 59 123 76 76 123 76 76 124 59 59 124 61 61 124 76 76 125 61 61 125 77 77 125 77 77 126 61 61 126 53 53 126 77 77 127 53 53 127 62 62 127 62 62 128 53 53 128 63 63 128 62 62 129 63 63 129 79 79 129 79 79 130 63 63 130 54 54 130 79 79 131 54 54 131 81 81 131 81 81 132 54 54 132 64 64 132 81 81 133 64 64 133 65 65 133 65 65 134 64 64 134 66 66 134 65 65 135 66 66 135 67 67 135 67 67 136 66 66 136 55 55 136 67 67 137 55 55 137 68 68 137 72 72 138 201 201 138 69 69 138 1122 1122 139 70 70 139 71 71 139 72 72 140 69 69 140 86 86 140 86 86 141 69 69 141 73 73 141 86 86 142 73 73 142 88 88 142 88 88 143 73 73 143 57 57 143 88 88 144 57 57 144 74 74 144 74 74 145 57 57 145 60 60 145 74 74 146 60 60 146 75 75 146 75 75 147 60 60 147 76 76 147 75 75 148 76 76 148 90 90 148 90 90 149 76 76 149 77 77 149 90 90 150 77 77 150 78 78 150 78 78 151 77 77 151 62 62 151 78 78 152 62 62 152 92 92 152 92 92 153 62 62 153 79 79 153 92 92 154 79 79 154 80 80 154 80 80 155 79 79 155 81 81 155 80 80 156 81 81 156 82 82 156 82 82 157 81 81 157 65 65 157 82 82 158 65 65 158 83 83 158 83 83 159 65 65 159 67 67 159 83 83 160 67 67 160 84 84 160 84 84 161 67 67 161 68 68 161 84 84 162 68 68 162 97 97 162 98 98 163 201 201 163 72 72 163 71 71 164 338 338 164 85 85 164 98 98 165 72 72 165 99 99 165 99 99 166 72 72 166 86 86 166 99 99 167 86 86 167 87 87 167 87 87 168 86 86 168 88 88 168 87 87 169 88 88 169 100 100 169 100 100 170 88 88 170 74 74 170 100 100 171 74 74 171 101 101 171 101 101 172 74 74 172 75 75 172 101 101 173 75 75 173 89 89 173 89 89 174 75 75 174 90 90 174 89 89 175 90 90 175 91 91 175 91 91 176 90 90 176 78 78 176 91 91 177 78 78 177 103 103 177 103 103 178 78 78 178 92 92 178 103 103 179 92 92 179 105 105 179 105 105 180 92 92 180 80 80 180 105 105 181 80 80 181 93 93 181 93 93 182 80 80 182 82 82 182 93 93 183 82 82 183 94 94 183 94 94 184 82 82 184 83 83 184 94 94 185 83 83 185 95 95 185 95 95 186 83 83 186 84 84 186 95 95 187 84 84 187 96 96 187 96 96 188 84 84 188 97 97 188 96 96 189 97 97 189 1080 1080 189 109 109 190 201 201 190 98 98 190 85 85 191 337 337 191 1124 1124 191 109 109 192 98 98 192 111 111 192 111 111 193 98 98 193 99 99 193 111 111 194 99 99 194 112 112 194 112 112 195 99 99 195 87 87 195 112 112 196 87 87 196 113 113 196 113 113 197 87 87 197 100 100 197 113 113 198 100 100 198 116 116 198 116 116 199 100 100 199 101 101 199 116 116 200 101 101 200 102 102 200 102 102 201 101 101 201 89 89 201 102 102 202 89 89 202 117 117 202 117 117 203 89 89 203 91 91 203 117 117 204 91 91 204 119 119 204 119 119 205 91 91 205 103 103 205 119 119 206 103 103 206 104 104 206 104 104 207 103 103 207 105 105 207 104 104 208 105 105 208 123 123 208 123 123 209 105 105 209 93 93 209 123 123 210 93 93 210 106 106 210 106 106 211 93 93 211 94 94 211 106 106 212 94 94 212 107 107 212 107 107 213 94 94 213 95 95 213 107 107 214 95 95 214 125 125 214 125 125 215 95 95 215 96 96 215 125 125 216 96 96 216 108 108 216 108 108 217 96 96 217 1080 1080 217 108 108 218 1080 1080 218 1078 1078 218 126 126 219 201 201 219 109 109 219 1124 1124 220 329 329 220 1126 1126 220 126 126 221 109 109 221 110 110 221 110 110 222 109 109 222 111 111 222 110 110 223 111 111 223 127 127 223 127 127 224 111 111 224 112 112 224 127 127 225 112 112 225 128 128 225 128 128 226 112 112 226 113 113 226 128 128 227 113 113 227 114 114 227 114 114 228 113 113 228 116 116 228 114 114 229 116 116 229 115 115 229 115 115 230 116 116 230 102 102 230 115 115 231 102 102 231 118 118 231 118 118 232 102 102 232 117 117 232 118 118 233 117 117 233 120 120 233 120 120 234 117 117 234 119 119 234 120 120 235 119 119 235 131 131 235 131 131 236 119 119 236 104 104 236 131 131 237 104 104 237 121 121 237 121 121 238 104 104 238 123 123 238 121 121 239 123 123 239 122 122 239 122 122 240 123 123 240 106 106 240 122 122 241 106 106 241 132 132 241 132 132 242 106 106 242 107 107 242 132 132 243 107 107 243 124 124 243 124 124 244 107 107 244 125 125 244 124 124 245 125 125 245 133 133 245 133 133 246 125 125 246 108 108 246 133 133 247 108 108 247 135 135 247 135 135 248 108 108 248 1078 1078 248 135 135 249 1078 1078 249 136 136 249 138 138 250 201 201 250 126 126 250 1126 1126 251 309 309 251 1127 1127 251 138 138 252 126 126 252 141 141 252 141 141 253 126 126 253 110 110 253 141 141 254 110 110 254 142 142 254 142 142 255 110 110 255 127 127 255 142 142 256 127 127 256 144 144 256 144 144 257 127 127 257 128 128 257 144 144 258 128 128 258 146 146 258 146 146 259 128 128 259 114 114 259 146 146 260 114 114 260 148 148 260 148 148 261 114 114 261 115 115 261 148 148 262 115 115 262 149 149 262 149 149 263 115 115 263 118 118 263 149 149 264 118 118 264 150 150 264 150 150 265 118 118 265 120 120 265 150 150 266 120 120 266 129 129 266 129 129 267 120 120 267 131 131 267 129 129 268 131 131 268 130 130 268 130 130 269 131 131 269 121 121 269 130 130 270 121 121 270 153 153 270 153 153 271 121 121 271 122 122 271 153 153 272 122 122 272 155 155 272 155 155 273 122 122 273 132 132 273 155 155 274 132 132 274 156 156 274 156 156 275 132 132 275 124 124 275 156 156 276 124 124 276 157 157 276 157 157 277 124 124 277 133 133 277 157 157 278 133 133 278 134 134 278 134 134 279 133 133 279 135 135 279 134 134 280 135 135 280 159 159 280 159 159 281 135 135 281 136 136 281 159 159 282 136 136 282 160 160 282 137 137 283 201 201 283 138 138 283 1127 1127 284 308 308 284 161 161 284 137 137 285 138 138 285 139 139 285 139 139 286 138 138 286 141 141 286 139 139 287 141 141 287 140 140 287 140 140 288 141 141 288 142 142 288 140 140 289 142 142 289 143 143 289 143 143 290 142 142 290 144 144 290 143 143 291 144 144 291 145 145 291 145 145 292 144 144 292 146 146 292 145 145 293 146 146 293 147 147 293 147 147 294 146 146 294 148 148 294 147 147 295 148 148 295 166 166 295 166 166 296 148 148 296 149 149 296 166 166 297 149 149 297 167 167 297 167 167 298 149 149 298 150 150 298 167 167 299 150 150 299 168 168 299 168 168 300 150 150 300 129 129 300 168 168 301 129 129 301 151 151 301 151 151 302 129 129 302 130 130 302 151 151 303 130 130 303 152 152 303 152 152 304 130 130 304 153 153 304 152 152 305 153 153 305 154 154 305 154 154 306 153 153 306 155 155 306 154 154 307 155 155 307 171 171 307 171 171 308 155 155 308 156 156 308 171 171 309 156 156 309 172 172 309 172 172 310 156 156 310 157 157 310 172 172 311 157 157 311 174 174 311 174 174 312 157 157 312 134 134 312 174 174 313 134 134 313 158 158 313 158 158 314 134 134 314 159 159 314 158 158 315 159 159 315 175 175 315 175 175 316 159 159 316 160 160 316 175 175 317 160 160 317 1077 1077 317 163 163 318 201 201 318 137 137 318 161 161 319 302 302 319 162 162 319 163 163 320 137 137 320 164 164 320 164 164 321 137 137 321 139 139 321 164 164 322 139 139 322 165 165 322 165 165 323 139 139 323 140 140 323 165 165 324 140 140 324 180 180 324 180 180 325 140 140 325 143 143 325 180 180 326 143 143 326 181 181 326 181 181 327 143 143 327 145 145 327 181 181 328 145 145 328 183 183 328 183 183 329 145 145 329 147 147 329 183 183 330 147 147 330 184 184 330 184 184 331 147 147 331 166 166 331 184 184 332 166 166 332 186 186 332 186 186 333 166 166 333 167 167 333 186 186 334 167 167 334 188 188 334 188 188 335 167 167 335 168 168 335 188 188 336 168 168 336 189 189 336 189 189 337 168 168 337 151 151 337 189 189 338 151 151 338 191 191 338 191 191 339 151 151 339 152 152 339 191 191 340 152 152 340 169 169 340 169 169 341 152 152 341 154 154 341 169 169 342 154 154 342 170 170 342 170 170 343 154 154 343 171 171 343 170 170 344 171 171 344 193 193 344 193 193 345 171 171 345 172 172 345 193 193 346 172 172 346 196 196 346 196 196 347 172 172 347 174 174 347 196 196 348 174 174 348 173 173 348 173 173 349 174 174 349 158 158 349 173 173 350 158 158 350 197 197 350 197 197 351 158 158 351 175 175 351 197 197 352 175 175 352 199 199 352 199 199 353 175 175 353 1077 1077 353 199 199 354 1077 1077 354 176 176 354 177 177 355 201 201 355 163 163 355 162 162 356 290 290 356 289 289 356 177 177 357 163 163 357 178 178 357 178 178 358 163 163 358 164 164 358 178 178 359 164 164 359 204 204 359 204 204 360 164 164 360 165 165 360 204 204 361 165 165 361 179 179 361 179 179 362 165 165 362 180 180 362 179 179 363 180 180 363 206 206 363 206 206 364 180 180 364 181 181 364 206 206 365 181 181 365 182 182 365 182 182 366 181 181 366 183 183 366 182 182 367 183 183 367 185 185 367 185 185 368 183 183 368 184 184 368 185 185 369 184 184 369 187 187 369 187 187 370 184 184 370 186 186 370 187 187 371 186 186 371 209 209 371 209 209 372 186 186 372 188 188 372 209 209 373 188 188 373 210 210 373 210 210 374 188 188 374 189 189 374 210 210 375 189 189 375 190 190 375 190 190 376 189 189 376 191 191 376 190 190 377 191 191 377 192 192 377 192 192 378 191 191 378 169 169 378 192 192 379 169 169 379 211 211 379 211 211 380 169 169 380 170 170 380 211 211 381 170 170 381 213 213 381 213 213 382 170 170 382 193 193 382 213 213 383 193 193 383 194 194 383 194 194 384 193 193 384 196 196 384 194 194 385 196 196 385 195 195 385 195 195 386 196 196 386 173 173 386 195 195 387 173 173 387 214 214 387 214 214 388 173 173 388 197 197 388 214 214 389 197 197 389 216 216 389 216 216 390 197 197 390 199 199 390 216 216 391 199 199 391 198 198 391 198 198 392 199 199 392 176 176 392 198 198 393 176 176 393 1074 1074 393 200 200 394 201 201 394 177 177 394 289 289 395 291 291 395 1131 1131 395 200 200 396 177 177 396 202 202 396 202 202 397 177 177 397 178 178 397 202 202 398 178 178 398 203 203 398 203 203 399 178 178 399 204 204 399 203 203 400 204 204 400 205 205 400 205 205 401 204 204 401 179 179 401 205 205 402 179 179 402 223 223 402 223 223 403 179 179 403 206 206 403 223 223 404 206 206 404 224 224 404 224 224 405 206 206 405 182 182 405 224 224 406 182 182 406 225 225 406 225 225 407 182 182 407 185 185 407 225 225 408 185 185 408 207 207 408 207 207 409 185 185 409 187 187 409 207 207 410 187 187 410 208 208 410 208 208 411 187 187 411 209 209 411 208 208 412 209 209 412 227 227 412 227 227 413 209 209 413 210 210 413 227 227 414 210 210 414 230 230 414 230 230 415 210 210 415 190 190 415 230 230 416 190 190 416 233 233 416 233 233 417 190 190 417 192 192 417 233 233 418 192 192 418 235 235 418 235 235 419 192 192 419 211 211 419 235 235 420 211 211 420 212 212 420 212 212 421 211 211 421 213 213 421 212 212 422 213 213 422 238 238 422 238 238 423 213 213 423 194 194 423 238 238 424 194 194 424 239 239 424 239 239 425 194 194 425 195 195 425 239 239 426 195 195 426 240 240 426 240 240 427 195 195 427 214 214 427 240 240 428 214 214 428 215 215 428 215 215 429 214 214 429 216 216 429 215 215 430 216 216 430 244 244 430 244 244 431 216 216 431 198 198 431 244 244 432 198 198 432 217 217 432 217 217 433 198 198 433 1074 1074 433 217 217 434 1074 1074 434 1072 1072 434 220 220 435 201 201 435 200 200 435 1131 1131 436 218 218 436 219 219 436 220 220 437 200 200 437 247 247 437 247 247 438 200 200 438 202 202 438 247 247 439 202 202 439 221 221 439 221 221 440 202 202 440 203 203 440 221 221 441 203 203 441 222 222 441 222 222 442 203 203 442 205 205 442 222 222 443 205 205 443 249 249 443 249 249 444 205 205 444 223 223 444 249 249 445 223 223 445 250 250 445 250 250 446 223 223 446 224 224 446 250 250 447 224 224 447 226 226 447 226 226 448 224 224 448 225 225 448 226 226 449 225 225 449 252 252 449 252 252 450 225 225 450 207 207 450 252 252 451 207 207 451 254 254 451 254 254 452 207 207 452 208 208 452 254 254 453 208 208 453 228 228 453 228 228 454 208 208 454 227 227 454 228 228 455 227 227 455 229 229 455 229 229 456 227 227 456 230 230 456 229 229 457 230 230 457 231 231 457 231 231 458 230 230 458 233 233 458 231 231 459 233 233 459 232 232 459 232 232 460 233 233 460 235 235 460 232 232 461 235 235 461 234 234 461 234 234 462 235 235 462 212 212 462 234 234 463 212 212 463 236 236 463 236 236 464 212 212 464 238 238 464 236 236 465 238 238 465 237 237 465 237 237 466 238 238 466 239 239 466 237 237 467 239 239 467 241 241 467 241 241 468 239 239 468 240 240 468 241 241 469 240 240 469 242 242 469 242 242 470 240 240 470 215 215 470 242 242 471 215 215 471 243 243 471 243 243 472 215 215 472 244 244 472 243 243 473 244 244 473 245 245 473 245 245 474 244 244 474 217 217 474 245 245 475 217 217 475 246 246 475 246 246 476 217 217 476 1072 1072 476 246 246 477 1072 1072 477 1071 1071 477 1093 1093 478 201 201 478 220 220 478 219 219 479 283 283 479 1132 1132 479 1093 1093 480 220 220 480 1095 1095 480 1095 1095 481 220 220 481 247 247 481 1095 1095 482 247 247 482 1096 1096 482 1096 1096 483 247 247 483 221 221 483 1096 1096 484 221 221 484 248 248 484 248 248 485 221 221 485 222 222 485 248 248 486 222 222 486 1097 1097 486 1097 1097 487 222 222 487 249 249 487 1097 1097 488 249 249 488 1098 1098 488 1098 1098 489 249 249 489 250 250 489 1098 1098 490 250 250 490 251 251 490 251 251 491 250 250 491 226 226 491 251 251 492 226 226 492 1100 1100 492 1100 1100 493 226 226 493 252 252 493 1100 1100 494 252 252 494 253 253 494 253 253 495 252 252 495 254 254 495 253 253 496 254 254 496 1103 1103 496 1103 1103 497 254 254 497 228 228 497 1103 1103 498 228 228 498 255 255 498 255 255 499 228 228 499 229 229 499 255 255 500 229 229 500 256 256 500 256 256 501 229 229 501 231 231 501 256 256 502 231 231 502 1105 1105 502 1105 1105 503 231 231 503 232 232 503 1105 1105 504 232 232 504 257 257 504 257 257 505 232 232 505 234 234 505 257 257 506 234 234 506 258 258 506 258 258 507 234 234 507 236 236 507 258 258 508 236 236 508 1107 1107 508 1107 1107 509 236 236 509 237 237 509 1107 1107 510 237 237 510 1108 1108 510 1108 1108 511 237 237 511 241 241 511 1108 1108 512 241 241 512 259 259 512 259 259 513 241 241 513 242 242 513 259 259 514 242 242 514 260 260 514 260 260 515 242 242 515 243 243 515 260 260 516 243 243 516 1112 1112 516 1112 1112 517 243 243 517 245 245 517 1112 1112 518 245 245 518 261 261 518 261 261 519 245 245 519 246 246 519 261 261 520 246 246 520 262 262 520 262 262 521 246 246 521 1071 1071 521 262 262 522 1071 1071 522 1114 1114 522 424 424 523 201 201 523 1093 1093 523 1132 1132 524 263 263 524 280 280 524 1138 1138 525 264 264 525 1024 1024 525 1024 1024 526 264 264 526 1119 1119 526 1024 1024 527 1119 1119 527 1025 1025 527 1025 1025 528 1119 1119 528 1120 1120 528 1025 1025 529 1120 1120 529 265 265 529 265 265 530 1120 1120 530 266 266 530 265 265 531 266 266 531 268 268 531 268 268 532 266 266 532 267 267 532 268 268 533 267 267 533 269 269 533 269 269 534 267 267 534 1123 1123 534 269 269 535 1123 1123 535 1030 1030 535 1030 1030 536 1123 1123 536 270 270 536 1030 1030 537 270 270 537 1031 1031 537 1031 1031 538 270 270 538 271 271 538 1031 1031 539 271 271 539 1032 1032 539 1032 1032 540 271 271 540 272 272 540 1032 1032 541 272 272 541 1034 1034 541 1034 1034 542 272 272 542 1125 1125 542 1034 1034 543 1125 1125 543 1036 1036 543 1036 1036 544 1125 1125 544 1128 1128 544 1036 1036 545 1128 1128 545 273 273 545 273 273 546 1128 1128 546 1129 1129 546 273 273 547 1129 1129 547 275 275 547 275 275 548 1129 1129 548 274 274 548 275 275 549 274 274 549 1039 1039 549 1039 1039 550 274 274 550 1130 1130 550 1039 1039 551 1130 1130 551 1040 1040 551 1040 1040 552 1130 1130 552 276 276 552 1040 1040 553 276 276 553 1041 1041 553 1041 1041 554 276 276 554 277 277 554 1041 1041 555 277 277 555 1043 1043 555 1043 1043 556 277 277 556 278 278 556 1043 1043 557 278 278 557 1044 1044 557 1044 1044 558 278 278 558 1133 1133 558 1044 1044 559 1133 1133 559 279 279 559 279 279 560 1133 1133 560 1117 1117 560 279 279 561 1117 1117 561 1047 1047 561 0 0 562 1134 1134 562 280 280 562 280 280 563 263 263 563 0 0 563 0 0 564 263 263 564 281 281 564 0 0 565 281 281 565 391 391 565 1132 1132 566 283 283 566 263 263 566 263 263 567 283 283 567 282 282 567 263 263 568 282 282 568 281 281 568 281 281 569 282 282 569 286 286 569 281 281 570 286 286 570 391 391 570 219 219 571 218 218 571 283 283 571 283 283 572 218 218 572 284 284 572 283 283 573 284 284 573 282 282 573 282 282 574 284 284 574 285 285 574 282 282 575 285 285 575 286 286 575 286 286 576 285 285 576 287 287 576 286 286 577 287 287 577 391 391 577 1131 1131 578 291 291 578 218 218 578 218 218 579 291 291 579 293 293 579 218 218 580 293 293 580 284 284 580 284 284 581 293 293 581 295 295 581 284 284 582 295 295 582 285 285 582 285 285 583 295 295 583 288 288 583 285 285 584 288 288 584 287 287 584 287 287 585 288 288 585 297 297 585 287 287 586 297 297 586 391 391 586 289 289 587 290 290 587 291 291 587 291 291 588 290 290 588 292 292 588 291 291 589 292 292 589 293 293 589 293 293 590 292 292 590 294 294 590 293 293 591 294 294 591 295 295 591 295 295 592 294 294 592 296 296 592 295 295 593 296 296 593 288 288 593 288 288 594 296 296 594 299 299 594 288 288 595 299 299 595 297 297 595 297 297 596 299 299 596 301 301 596 297 297 597 301 301 597 391 391 597 162 162 598 302 302 598 290 290 598 290 290 599 302 302 599 303 303 599 290 290 600 303 303 600 292 292 600 292 292 601 303 303 601 304 304 601 292 292 602 304 304 602 294 294 602 294 294 603 304 304 603 305 305 603 294 294 604 305 305 604 296 296 604 296 296 605 305 305 605 298 298 605 296 296 606 298 298 606 299 299 606 299 299 607 298 298 607 300 300 607 299 299 608 300 300 608 301 301 608 301 301 609 300 300 609 306 306 609 301 301 610 306 306 610 391 391 610 161 161 611 308 308 611 302 302 611 302 302 612 308 308 612 310 310 612 302 302 613 310 310 613 303 303 613 303 303 614 310 310 614 313 313 614 303 303 615 313 313 615 304 304 615 304 304 616 313 313 616 314 314 616 304 304 617 314 314 617 305 305 617 305 305 618 314 314 618 316 316 618 305 305 619 316 316 619 298 298 619 298 298 620 316 316 620 317 317 620 298 298 621 317 317 621 300 300 621 300 300 622 317 317 622 319 319 622 300 300 623 319 319 623 306 306 623 306 306 624 319 319 624 307 307 624 306 306 625 307 307 625 391 391 625 1127 1127 626 309 309 626 308 308 626 308 308 627 309 309 627 321 321 627 308 308 628 321 321 628 310 310 628 310 310 629 321 321 629 311 311 629 310 310 630 311 311 630 313 313 630 313 313 631 311 311 631 312 312 631 313 313 632 312 312 632 314 314 632 314 314 633 312 312 633 315 315 633 314 314 634 315 315 634 316 316 634 316 316 635 315 315 635 324 324 635 316 316 636 324 324 636 317 317 636 317 317 637 324 324 637 318 318 637 317 317 638 318 318 638 319 319 638 319 319 639 318 318 639 326 326 639 319 319 640 326 326 640 307 307 640 307 307 641 326 326 641 327 327 641 307 307 642 327 327 642 391 391 642 1126 1126 643 329 329 643 309 309 643 309 309 644 329 329 644 320 320 644 309 309 645 320 320 645 321 321 645 321 321 646 320 320 646 332 332 646 321 321 647 332 332 647 311 311 647 311 311 648 332 332 648 333 333 648 311 311 649 333 333 649 312 312 649 312 312 650 333 333 650 322 322 650 312 312 651 322 322 651 315 315 651 315 315 652 322 322 652 323 323 652 315 315 653 323 323 653 324 324 653 324 324 654 323 323 654 325 325 654 324 324 655 325 325 655 318 318 655 318 318 656 325 325 656 334 334 656 318 318 657 334 334 657 326 326 657 326 326 658 334 334 658 336 336 658 326 326 659 336 336 659 327 327 659 327 327 660 336 336 660 328 328 660 327 327 661 328 328 661 391 391 661 1124 1124 662 337 337 662 329 329 662 329 329 663 337 337 663 330 330 663 329 329 664 330 330 664 320 320 664 320 320 665 330 330 665 339 339 665 320 320 666 339 339 666 332 332 666 332 332 667 339 339 667 331 331 667 332 332 668 331 331 668 333 333 668 333 333 669 331 331 669 340 340 669 333 333 670 340 340 670 322 322 670 322 322 671 340 340 671 344 344 671 322 322 672 344 344 672 323 323 672 323 323 673 344 344 673 346 346 673 323 323 674 346 346 674 325 325 674 325 325 675 346 346 675 347 347 675 325 325 676 347 347 676 334 334 676 334 334 677 347 347 677 335 335 677 334 334 678 335 335 678 336 336 678 336 336 679 335 335 679 350 350 679 336 336 680 350 350 680 328 328 680 328 328 681 350 350 681 352 352 681 328 328 682 352 352 682 391 391 682 85 85 683 338 338 683 337 337 683 337 337 684 338 338 684 353 353 684 337 337 685 353 353 685 330 330 685 330 330 686 353 353 686 355 355 686 330 330 687 355 355 687 339 339 687 339 339 688 355 355 688 356 356 688 339 339 689 356 356 689 331 331 689 331 331 690 356 356 690 341 341 690 331 331 691 341 341 691 340 340 691 340 340 692 341 341 692 342 342 692 340 340 693 342 342 693 344 344 693 344 344 694 342 342 694 343 343 694 344 344 695 343 343 695 346 346 695 346 346 696 343 343 696 345 345 696 346 346 697 345 345 697 347 347 697 347 347 698 345 345 698 348 348 698 347 347 699 348 348 699 335 335 699 335 335 700 348 348 700 349 349 700 335 335 701 349 349 701 350 350 701 350 350 702 349 349 702 361 361 702 350 350 703 361 361 703 352 352 703 352 352 704 361 361 704 351 351 704 352 352 705 351 351 705 391 391 705 71 71 706 70 70 706 338 338 706 338 338 707 70 70 707 354 354 707 338 338 708 354 354 708 353 353 708 353 353 709 354 354 709 364 364 709 353 353 710 364 364 710 355 355 710 355 355 711 364 364 711 365 365 711 355 355 712 365 365 712 356 356 712 356 356 713 365 365 713 357 357 713 356 356 714 357 357 714 341 341 714 341 341 715 357 357 715 367 367 715 341 341 716 367 367 716 342 342 716 342 342 717 367 367 717 368 368 717 342 342 718 368 368 718 343 343 718 343 343 719 368 368 719 358 358 719 343 343 720 358 358 720 345 345 720 345 345 721 358 358 721 369 369 721 345 345 722 369 369 722 348 348 722 348 348 723 369 369 723 359 359 723 348 348 724 359 359 724 349 349 724 349 349 725 359 359 725 360 360 725 349 349 726 360 360 726 361 361 726 361 361 727 360 360 727 373 373 727 361 361 728 373 373 728 351 351 728 351 351 729 373 373 729 362 362 729 351 351 730 362 362 730 391 391 730 1122 1122 731 376 376 731 70 70 731 70 70 732 376 376 732 363 363 732 70 70 733 363 363 733 354 354 733 354 354 734 363 363 734 380 380 734 354 354 735 380 380 735 364 364 735 364 364 736 380 380 736 381 381 736 364 364 737 381 381 737 365 365 737 365 365 738 381 381 738 366 366 738 365 365 739 366 366 739 357 357 739 357 357 740 366 366 740 383 383 740 357 357 741 383 383 741 367 367 741 367 367 742 383 383 742 385 385 742 367 367 743 385 385 743 368 368 743 368 368 744 385 385 744 386 386 744 368 368 745 386 386 745 358 358 745 358 358 746 386 386 746 387 387 746 358 358 747 387 387 747 369 369 747 369 369 748 387 387 748 370 370 748 369 369 749 370 370 749 359 359 749 359 359 750 370 370 750 371 371 750 359 359 751 371 371 751 360 360 751 360 360 752 371 371 752 372 372 752 360 360 753 372 372 753 373 373 753 373 373 754 372 372 754 374 374 754 373 373 755 374 374 755 362 362 755 362 362 756 374 374 756 390 390 756 362 362 757 390 390 757 391 391 757 1121 1121 758 375 375 758 376 376 758 376 376 759 375 375 759 377 377 759 376 376 760 377 377 760 363 363 760 363 363 761 377 377 761 378 378 761 363 363 762 378 378 762 380 380 762 380 380 763 378 378 763 379 379 763 380 380 764 379 379 764 381 381 764 381 381 765 379 379 765 382 382 765 381 381 766 382 382 766 366 366 766 366 366 767 382 382 767 396 396 767 366 366 768 396 396 768 383 383 768 383 383 769 396 396 769 384 384 769 383 383 770 384 384 770 385 385 770 385 385 771 384 384 771 397 397 771 385 385 772 397 397 772 386 386 772 386 386 773 397 397 773 399 399 773 386 386 774 399 399 774 387 387 774 387 387 775 399 399 775 400 400 775 387 387 776 400 400 776 370 370 776 370 370 777 400 400 777 401 401 777 370 370 778 401 401 778 371 371 778 371 371 779 401 401 779 402 402 779 371 371 780 402 402 780 372 372 780 372 372 781 402 402 781 388 388 781 372 372 782 388 388 782 374 374 782 374 374 783 388 388 783 406 406 783 374 374 784 406 406 784 390 390 784 390 390 785 406 406 785 389 389 785 390 390 786 389 389 786 391 391 786 392 392 787 408 408 787 375 375 787 375 375 788 408 408 788 393 393 788 375 375 789 393 393 789 377 377 789 377 377 790 393 393 790 409 409 790 377 377 791 409 409 791 378 378 791 378 378 792 409 409 792 411 411 792 378 378 793 411 411 793 379 379 793 379 379 794 411 411 794 394 394 794 379 379 795 394 394 795 382 382 795 382 382 796 394 394 796 395 395 796 382 382 797 395 395 797 396 396 797 396 396 798 395 395 798 412 412 798 396 396 799 412 412 799 384 384 799 384 384 800 412 412 800 414 414 800 384 384 801 414 414 801 397 397 801 397 397 802 414 414 802 398 398 802 397 397 803 398 398 803 399 399 803 399 399 804 398 398 804 415 415 804 399 399 805 415 415 805 400 400 805 400 400 806 415 415 806 417 417 806 400 400 807 417 417 807 401 401 807 401 401 808 417 417 808 403 403 808 401 401 809 403 403 809 402 402 809 402 402 810 403 403 810 420 420 810 402 402 811 420 420 811 388 388 811 388 388 812 420 420 812 404 404 812 388 388 813 404 404 813 406 406 813 406 406 814 404 404 814 405 405 814 406 406 815 405 405 815 389 389 815 389 389 816 405 405 816 422 422 816 389 389 817 422 422 817 391 391 817 39 39 818 407 407 818 408 408 818 408 408 819 407 407 819 1141 1141 819 408 408 820 1141 1141 820 393 393 820 393 393 821 1141 1141 821 410 410 821 393 393 822 410 410 822 409 409 822 409 409 823 410 410 823 1144 1144 823 409 409 824 1144 1144 824 411 411 824 411 411 825 1144 1144 825 1145 1145 825 411 411 826 1145 1145 826 394 394 826 394 394 827 1145 1145 827 1146 1146 827 394 394 828 1146 1146 828 395 395 828 395 395 829 1146 1146 829 1148 1148 829 395 395 830 1148 1148 830 412 412 830 412 412 831 1148 1148 831 1149 1149 831 412 412 832 1149 1149 832 414 414 832 414 414 833 1149 1149 833 413 413 833 414 414 834 413 413 834 398 398 834 398 398 835 413 413 835 1151 1151 835 398 398 836 1151 1151 836 415 415 836 415 415 837 1151 1151 837 416 416 837 415 415 838 416 416 838 417 417 838 417 417 839 416 416 839 418 418 839 417 417 840 418 418 840 403 403 840 403 403 841 418 418 841 419 419 841 403 403 842 419 419 842 420 420 842 420 420 843 419 419 843 421 421 843 420 420 844 421 421 844 404 404 844 404 404 845 421 421 845 1154 1154 845 404 404 846 1154 1154 846 405 405 846 405 405 847 1154 1154 847 423 423 847 405 405 848 423 423 848 422 422 848 422 422 849 423 423 849 1155 1155 849 422 422 850 1155 1155 850 391 391 850 3 3 851 424 424 851 425 425 851 425 425 852 424 424 852 1094 1094 852 425 425 853 1094 1094 853 1136 1136 853 1136 1136 854 1094 1094 854 426 426 854 1136 1136 855 426 426 855 1137 1137 855 1137 1137 856 426 426 856 427 427 856 1137 1137 857 427 427 857 1139 1139 857 1139 1139 858 427 427 858 428 428 858 1139 1139 859 428 428 859 1140 1140 859 1140 1140 860 428 428 860 429 429 860 1140 1140 861 429 429 861 430 430 861 430 430 862 429 429 862 431 431 862 430 430 863 431 431 863 1142 1142 863 1142 1142 864 431 431 864 1099 1099 864 1142 1142 865 1099 1099 865 432 432 865 432 432 866 1099 1099 866 433 433 866 432 432 867 433 433 867 434 434 867 434 434 868 433 433 868 1101 1101 868 434 434 869 1101 1101 869 1143 1143 869 1143 1143 870 1101 1101 870 1102 1102 870 1143 1143 871 1102 1102 871 435 435 871 435 435 872 1102 1102 872 436 436 872 435 435 873 436 436 873 1147 1147 873 1147 1147 874 436 436 874 1104 1104 874 1147 1147 875 1104 1104 875 437 437 875 437 437 876 1104 1104 876 438 438 876 437 437 877 438 438 877 1150 1150 877 1150 1150 878 438 438 878 439 439 878 1150 1150 879 439 439 879 440 440 879 440 440 880 439 439 880 1106 1106 880 440 440 881 1106 1106 881 1152 1152 881 1152 1152 882 1106 1106 882 441 441 882 1152 1152 883 441 441 883 1153 1153 883 1153 1153 884 441 441 884 1109 1109 884 1153 1153 885 1109 1109 885 442 442 885 442 442 886 1109 1109 886 1110 1110 886 442 442 887 1110 1110 887 443 443 887 443 443 888 1110 1110 888 1111 1111 888 443 443 889 1111 1111 889 444 444 889 444 444 890 1111 1111 890 445 445 890 444 444 891 445 445 891 446 446 891 446 446 892 445 445 892 447 447 892 446 446 893 447 447 893 448 448 893 448 448 894 447 447 894 1113 1113 894 448 448 895 1113 1113 895 1156 1156 895 1156 1156 896 1113 1113 896 1115 1115 896 1156 1156 897 1115 1115 897 391 391 897 391 391 898 1116 1116 898 449 449 898 449 449 899 1116 1116 899 1070 1070 899 449 449 900 1070 1070 900 1049 1049 900 1049 1049 901 1070 1070 901 450 450 901 1049 1049 902 450 450 902 451 451 902 451 451 903 450 450 903 1073 1073 903 451 451 904 1073 1073 904 452 452 904 452 452 905 1073 1073 905 1075 1075 905 452 452 906 1075 1075 906 1051 1051 906 1051 1051 907 1075 1075 907 1076 1076 907 1051 1051 908 1076 1076 908 453 453 908 453 453 909 1076 1076 909 454 454 909 453 453 910 454 454 910 1054 1054 910 1054 1054 911 454 454 911 455 455 911 1054 1054 912 455 455 912 1055 1055 912 1055 1055 913 455 455 913 456 456 913 1055 1055 914 456 456 914 457 457 914 457 457 915 456 456 915 1079 1079 915 457 457 916 1079 1079 916 1058 1058 916 1058 1058 917 1079 1079 917 1081 1081 917 1058 1058 918 1081 1081 918 459 459 918 459 459 919 1081 1081 919 458 458 919 459 459 920 458 458 920 1061 1061 920 1061 1061 921 458 458 921 460 460 921 1061 1061 922 460 460 922 1062 1062 922 1062 1062 923 460 460 923 1082 1082 923 1062 1062 924 1082 1082 924 461 461 924 461 461 925 1082 1082 925 462 462 925 461 461 926 462 462 926 463 463 926 463 463 927 462 462 927 1085 1085 927 463 463 928 1085 1085 928 1065 1065 928 1065 1065 929 1085 1085 929 464 464 929 1065 1065 930 464 464 930 1067 1067 930 1067 1067 931 464 464 931 465 465 931 1067 1067 932 465 465 932 466 466 932 466 466 933 465 465 933 467 467 933 466 466 934 467 467 934 468 468 934 468 468 935 467 467 935 1089 1089 935 468 468 936 1089 1089 936 469 469 936 469 469 937 1089 1089 937 1090 1090 937 469 469 938 1090 1090 938 471 471 938 471 471 939 1090 1090 939 470 470 939 471 471 940 470 470 940 472 472 940 472 472 941 470 470 941 1091 1091 941 472 472 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 474 474 943 473 473 944 474 474 944 475 475 944 475 475 945 474 474 945 201 201 945 391 391 946 1048 1048 946 522 522 946 522 522 947 1048 1048 947 1050 1050 947 522 522 948 1050 1050 948 520 520 948 520 520 949 1050 1050 949 476 476 949 520 520 950 476 476 950 477 477 950 477 477 951 476 476 951 478 478 951 477 477 952 478 478 952 517 517 952 517 517 953 478 478 953 479 479 953 517 517 954 479 479 954 516 516 954 516 516 955 479 479 955 1052 1052 955 516 516 956 1052 1052 956 515 515 956 515 515 957 1052 1052 957 1053 1053 957 515 515 958 1053 1053 958 514 514 958 514 514 959 1053 1053 959 1056 1056 959 514 514 960 1056 1056 960 512 512 960 512 512 961 1056 1056 961 1057 1057 961 512 512 962 1057 1057 962 510 510 962 510 510 963 1057 1057 963 1059 1059 963 510 510 964 1059 1059 964 481 481 964 481 481 965 1059 1059 965 480 480 965 481 481 966 480 480 966 509 509 966 509 509 967 480 480 967 1060 1060 967 509 509 968 1060 1060 968 506 506 968 506 506 969 1060 1060 969 1063 1063 969 506 506 970 1063 1063 970 504 504 970 504 504 971 1063 1063 971 483 483 971 504 504 972 483 483 972 482 482 972 482 482 973 483 483 973 1064 1064 973 482 482 974 1064 1064 974 503 503 974 503 503 975 1064 1064 975 1066 1066 975 503 503 976 1066 1066 976 502 502 976 502 502 977 1066 1066 977 1068 1068 977 502 502 978 1068 1068 978 501 501 978 501 501 979 1068 1068 979 484 484 979 501 501 980 484 484 980 500 500 980 500 500 981 484 484 981 1069 1069 981 500 500 982 1069 1069 982 499 499 982 499 499 983 1069 1069 983 485 485 983 499 499 984 485 485 984 497 497 984 497 497 985 485 485 985 486 486 985 497 497 986 486 486 986 495 495 986 495 495 987 486 486 987 487 487 987 495 495 988 487 487 988 493 493 988 493 493 989 487 487 989 488 488 989 493 493 990 488 488 990 490 490 990 490 490 991 488 488 991 489 489 991 490 490 992 489 489 992 491 491 992 491 491 993 489 489 993 201 201 993 201 201 994 492 492 994 491 491 994 491 491 995 492 492 995 525 525 995 491 491 996 525 525 996 490 490 996 490 490 997 525 525 997 494 494 997 490 490 998 494 494 998 493 493 998 493 493 999 494 494 999 526 526 999 493 493 1000 526 526 1000 495 495 1000 495 495 1001 526 526 1001 496 496 1001 495 495 1002 496 496 1002 497 497 1002 497 497 1003 496 496 1003 498 498 1003 497 497 1004 498 498 1004 499 499 1004 499 499 1005 498 498 1005 529 529 1005 499 499 1006 529 529 1006 500 500 1006 500 500 1007 529 529 1007 531 531 1007 500 500 1008 531 531 1008 501 501 1008 501 501 1009 531 531 1009 532 532 1009 501 501 1010 532 532 1010 502 502 1010 502 502 1011 532 532 1011 535 535 1011 502 502 1012 535 535 1012 503 503 1012 503 503 1013 535 535 1013 536 536 1013 503 503 1014 536 536 1014 482 482 1014 482 482 1015 536 536 1015 538 538 1015 482 482 1016 538 538 1016 504 504 1016 504 504 1017 538 538 1017 505 505 1017 504 504 1018 505 505 1018 506 506 1018 506 506 1019 505 505 1019 507 507 1019 506 506 1020 507 507 1020 509 509 1020 509 509 1021 507 507 1021 508 508 1021 509 509 1022 508 508 1022 481 481 1022 481 481 1023 508 508 1023 542 542 1023 481 481 1024 542 542 1024 510 510 1024 510 510 1025 542 542 1025 511 511 1025 510 510 1026 511 511 1026 512 512 1026 512 512 1027 511 511 1027 546 546 1027 512 512 1028 546 546 1028 514 514 1028 514 514 1029 546 546 1029 513 513 1029 514 514 1030 513 513 1030 515 515 1030 515 515 1031 513 513 1031 549 549 1031 515 515 1032 549 549 1032 516 516 1032 516 516 1033 549 549 1033 518 518 1033 516 516 1034 518 518 1034 517 517 1034 517 517 1035 518 518 1035 550 550 1035 517 517 1036 550 550 1036 477 477 1036 477 477 1037 550 550 1037 519 519 1037 477 477 1038 519 519 1038 520 520 1038 520 520 1039 519 519 1039 521 521 1039 520 520 1040 521 521 1040 522 522 1040 522 522 1041 521 521 1041 391 391 1041 201 201 1042 523 523 1042 492 492 1042 492 492 1043 523 523 1043 524 524 1043 492 492 1044 524 524 1044 525 525 1044 525 525 1045 524 524 1045 555 555 1045 525 525 1046 555 555 1046 494 494 1046 494 494 1047 555 555 1047 527 527 1047 494 494 1048 527 527 1048 526 526 1048 526 526 1049 527 527 1049 558 558 1049 526 526 1050 558 558 1050 496 496 1050 496 496 1051 558 558 1051 559 559 1051 496 496 1052 559 559 1052 498 498 1052 498 498 1053 559 559 1053 528 528 1053 498 498 1054 528 528 1054 529 529 1054 529 529 1055 528 528 1055 530 530 1055 529 529 1056 530 530 1056 531 531 1056 531 531 1057 530 530 1057 533 533 1057 531 531 1058 533 533 1058 532 532 1058 532 532 1059 533 533 1059 562 562 1059 532 532 1060 562 562 1060 535 535 1060 535 535 1061 562 562 1061 534 534 1061 535 535 1062 534 534 1062 536 536 1062 536 536 1063 534 534 1063 537 537 1063 536 536 1064 537 537 1064 538 538 1064 538 538 1065 537 537 1065 539 539 1065 538 538 1066 539 539 1066 505 505 1066 505 505 1067 539 539 1067 540 540 1067 505 505 1068 540 540 1068 507 507 1068 507 507 1069 540 540 1069 541 541 1069 507 507 1070 541 541 1070 508 508 1070 508 508 1071 541 541 1071 543 543 1071 508 508 1072 543 543 1072 542 542 1072 542 542 1073 543 543 1073 544 544 1073 542 542 1074 544 544 1074 511 511 1074 511 511 1075 544 544 1075 545 545 1075 511 511 1076 545 545 1076 546 546 1076 546 546 1077 545 545 1077 547 547 1077 546 546 1078 547 547 1078 513 513 1078 513 513 1079 547 547 1079 548 548 1079 513 513 1080 548 548 1080 549 549 1080 549 549 1081 548 548 1081 568 568 1081 549 549 1082 568 568 1082 518 518 1082 518 518 1083 568 568 1083 569 569 1083 518 518 1084 569 569 1084 550 550 1084 550 550 1085 569 569 1085 551 551 1085 550 550 1086 551 551 1086 519 519 1086 519 519 1087 551 551 1087 552 552 1087 519 519 1088 552 552 1088 521 521 1088 521 521 1089 552 552 1089 391 391 1089 201 201 1090 553 553 1090 523 523 1090 523 523 1091 553 553 1091 570 570 1091 523 523 1092 570 570 1092 524 524 1092 524 524 1093 570 570 1093 554 554 1093 524 524 1094 554 554 1094 555 555 1094 555 555 1095 554 554 1095 556 556 1095 555 555 1096 556 556 1096 527 527 1096 527 527 1097 556 556 1097 557 557 1097 527 527 1098 557 557 1098 558 558 1098 558 558 1099 557 557 1099 573 573 1099 558 558 1100 573 573 1100 559 559 1100 559 559 1101 573 573 1101 574 574 1101 559 559 1102 574 574 1102 528 528 1102 528 528 1103 574 574 1103 560 560 1103 528 528 1104 560 560 1104 530 530 1104 530 530 1105 560 560 1105 576 576 1105 530 530 1106 576 576 1106 533 533 1106 533 533 1107 576 576 1107 578 578 1107 533 533 1108 578 578 1108 562 562 1108 562 562 1109 578 578 1109 561 561 1109 562 562 1110 561 561 1110 534 534 1110 534 534 1111 561 561 1111 579 579 1111 534 534 1112 579 579 1112 537 537 1112 537 537 1113 579 579 1113 563 563 1113 537 537 1114 563 563 1114 539 539 1114 539 539 1115 563 563 1115 564 564 1115 539 539 1116 564 564 1116 540 540 1116 540 540 1117 564 564 1117 583 583 1117 540 540 1118 583 583 1118 541 541 1118 541 541 1119 583 583 1119 584 584 1119 541 541 1120 584 584 1120 543 543 1120 543 543 1121 584 584 1121 565 565 1121 543 543 1122 565 565 1122 544 544 1122 544 544 1123 565 565 1123 566 566 1123 544 544 1124 566 566 1124 545 545 1124 545 545 1125 566 566 1125 586 586 1125 545 545 1126 586 586 1126 547 547 1126 547 547 1127 586 586 1127 567 567 1127 547 547 1128 567 567 1128 548 548 1128 548 548 1129 567 567 1129 587 587 1129 548 548 1130 587 587 1130 568 568 1130 568 568 1131 587 587 1131 589 589 1131 568 568 1132 589 589 1132 569 569 1132 569 569 1133 589 589 1133 590 590 1133 569 569 1134 590 590 1134 551 551 1134 551 551 1135 590 590 1135 591 591 1135 551 551 1136 591 591 1136 552 552 1136 552 552 1137 591 591 1137 391 391 1137 201 201 1138 594 594 1138 553 553 1138 553 553 1139 594 594 1139 595 595 1139 553 553 1140 595 595 1140 570 570 1140 570 570 1141 595 595 1141 571 571 1141 570 570 1142 571 571 1142 554 554 1142 554 554 1143 571 571 1143 572 572 1143 554 554 1144 572 572 1144 556 556 1144 556 556 1145 572 572 1145 596 596 1145 556 556 1146 596 596 1146 557 557 1146 557 557 1147 596 596 1147 597 597 1147 557 557 1148 597 597 1148 573 573 1148 573 573 1149 597 597 1149 598 598 1149 573 573 1150 598 598 1150 574 574 1150 574 574 1151 598 598 1151 575 575 1151 574 574 1152 575 575 1152 560 560 1152 560 560 1153 575 575 1153 600 600 1153 560 560 1154 600 600 1154 576 576 1154 576 576 1155 600 600 1155 577 577 1155 576 576 1156 577 577 1156 578 578 1156 578 578 1157 577 577 1157 602 602 1157 578 578 1158 602 602 1158 561 561 1158 561 561 1159 602 602 1159 603 603 1159 561 561 1160 603 603 1160 579 579 1160 579 579 1161 603 603 1161 604 604 1161 579 579 1162 604 604 1162 563 563 1162 563 563 1163 604 604 1163 580 580 1163 563 563 1164 580 580 1164 564 564 1164 564 564 1165 580 580 1165 581 581 1165 564 564 1166 581 581 1166 583 583 1166 583 583 1167 581 581 1167 582 582 1167 583 583 1168 582 582 1168 584 584 1168 584 584 1169 582 582 1169 585 585 1169 584 584 1170 585 585 1170 565 565 1170 565 565 1171 585 585 1171 608 608 1171 565 565 1172 608 608 1172 566 566 1172 566 566 1173 608 608 1173 610 610 1173 566 566 1174 610 610 1174 586 586 1174 586 586 1175 610 610 1175 611 611 1175 586 586 1176 611 611 1176 567 567 1176 567 567 1177 611 611 1177 588 588 1177 567 567 1178 588 588 1178 587 587 1178 587 587 1179 588 588 1179 612 612 1179 587 587 1180 612 612 1180 589 589 1180 589 589 1181 612 612 1181 614 614 1181 589 589 1182 614 614 1182 590 590 1182 590 590 1183 614 614 1183 592 592 1183 590 590 1184 592 592 1184 591 591 1184 591 591 1185 592 592 1185 391 391 1185 201 201 1186 593 593 1186 594 594 1186 594 594 1187 593 593 1187 616 616 1187 594 594 1188 616 616 1188 595 595 1188 595 595 1189 616 616 1189 617 617 1189 595 595 1190 617 617 1190 571 571 1190 571 571 1191 617 617 1191 620 620 1191 571 571 1192 620 620 1192 572 572 1192 572 572 1193 620 620 1193 621 621 1193 572 572 1194 621 621 1194 596 596 1194 596 596 1195 621 621 1195 623 623 1195 596 596 1196 623 623 1196 597 597 1196 597 597 1197 623 623 1197 625 625 1197 597 597 1198 625 625 1198 598 598 1198 598 598 1199 625 625 1199 599 599 1199 598 598 1200 599 599 1200 575 575 1200 575 575 1201 599 599 1201 601 601 1201 575 575 1202 601 601 1202 600 600 1202 600 600 1203 601 601 1203 629 629 1203 600 600 1204 629 629 1204 577 577 1204 577 577 1205 629 629 1205 630 630 1205 577 577 1206 630 630 1206 602 602 1206 602 602 1207 630 630 1207 632 632 1207 602 602 1208 632 632 1208 603 603 1208 603 603 1209 632 632 1209 633 633 1209 603 603 1210 633 633 1210 604 604 1210 604 604 1211 633 633 1211 605 605 1211 604 604 1212 605 605 1212 580 580 1212 580 580 1213 605 605 1213 606 606 1213 580 580 1214 606 606 1214 581 581 1214 581 581 1215 606 606 1215 607 607 1215 581 581 1216 607 607 1216 582 582 1216 582 582 1217 607 607 1217 636 636 1217 582 582 1218 636 636 1218 585 585 1218 585 585 1219 636 636 1219 609 609 1219 585 585 1220 609 609 1220 608 608 1220 608 608 1221 609 609 1221 638 638 1221 608 608 1222 638 638 1222 610 610 1222 610 610 1223 638 638 1223 640 640 1223 610 610 1224 640 640 1224 611 611 1224 611 611 1225 640 640 1225 642 642 1225 611 611 1226 642 642 1226 588 588 1226 588 588 1227 642 642 1227 644 644 1227 588 588 1228 644 644 1228 612 612 1228 612 612 1229 644 644 1229 613 613 1229 612 612 1230 613 613 1230 614 614 1230 614 614 1231 613 613 1231 615 615 1231 614 614 1232 615 615 1232 592 592 1232 592 592 1233 615 615 1233 391 391 1233 201 201 1234 647 647 1234 593 593 1234 593 593 1235 647 647 1235 650 650 1235 593 593 1236 650 650 1236 616 616 1236 616 616 1237 650 650 1237 652 652 1237 616 616 1238 652 652 1238 617 617 1238 617 617 1239 652 652 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 622 622 1243 621 621 1244 622 622 1244 623 623 1244 623 623 1245 622 622 1245 624 624 1245 623 623 1246 624 624 1246 625 625 1246 625 625 1247 624 624 1247 626 626 1247 625 625 1248 626 626 1248 599 599 1248 599 599 1249 626 626 1249 627 627 1249 599 599 1250 627 627 1250 601 601 1250 601 601 1251 627 627 1251 628 628 1251 601 601 1252 628 628 1252 629 629 1252 629 629 1253 628 628 1253 656 656 1253 629 629 1254 656 656 1254 630 630 1254 630 630 1255 656 656 1255 631 631 1255 630 630 1256 631 631 1256 632 632 1256 632 632 1257 631 631 1257 659 659 1257 632 632 1258 659 659 1258 633 633 1258 633 633 1259 659 659 1259 661 661 1259 633 633 1260 661 661 1260 605 605 1260 605 605 1261 661 661 1261 634 634 1261 605 605 1262 634 634 1262 606 606 1262 606 606 1263 634 634 1263 662 662 1263 606 606 1264 662 662 1264 607 607 1264 607 607 1265 662 662 1265 635 635 1265 607 607 1266 635 635 1266 636 636 1266 636 636 1267 635 635 1267 665 665 1267 636 636 1268 665 665 1268 609 609 1268 609 609 1269 665 665 1269 637 637 1269 609 609 1270 637 637 1270 638 638 1270 638 638 1271 637 637 1271 639 639 1271 638 638 1272 639 639 1272 640 640 1272 640 640 1273 639 639 1273 641 641 1273 640 640 1274 641 641 1274 642 642 1274 642 642 1275 641 641 1275 643 643 1275 642 642 1276 643 643 1276 644 644 1276 644 644 1277 643 643 1277 645 645 1277 644 644 1278 645 645 1278 613 613 1278 613 613 1279 645 645 1279 646 646 1279 613 613 1280 646 646 1280 615 615 1280 615 615 1281 646 646 1281 391 391 1281 201 201 1282 648 648 1282 647 647 1282 647 647 1283 648 648 1283 649 649 1283 647 647 1284 649 649 1284 650 650 1284 650 650 1285 649 649 1285 651 651 1285 650 650 1286 651 651 1286 652 652 1286 652 652 1287 651 651 1287 670 670 1287 652 652 1288 670 670 1288 618 618 1288 618 618 1289 670 670 1289 671 671 1289 618 618 1290 671 671 1290 619 619 1290 619 619 1291 671 671 1291 653 653 1291 619 619 1292 653 653 1292 622 622 1292 622 622 1293 653 653 1293 673 673 1293 622 622 1294 673 673 1294 624 624 1294 624 624 1295 673 673 1295 674 674 1295 624 624 1296 674 674 1296 626 626 1296 626 626 1297 674 674 1297 676 676 1297 626 626 1298 676 676 1298 627 627 1298 627 627 1299 676 676 1299 654 654 1299 627 627 1300 654 654 1300 628 628 1300 628 628 1301 654 654 1301 655 655 1301 628 628 1302 655 655 1302 656 656 1302 656 656 1303 655 655 1303 657 657 1303 656 656 1304 657 657 1304 631 631 1304 631 631 1305 657 657 1305 658 658 1305 631 631 1306 658 658 1306 659 659 1306 659 659 1307 658 658 1307 660 660 1307 659 659 1308 660 660 1308 661 661 1308 661 661 1309 660 660 1309 679 679 1309 661 661 1310 679 679 1310 634 634 1310 634 634 1311 679 679 1311 663 663 1311 634 634 1312 663 663 1312 662 662 1312 662 662 1313 663 663 1313 664 664 1313 662 662 1314 664 664 1314 635 635 1314 635 635 1315 664 664 1315 682 682 1315 635 635 1316 682 682 1316 665 665 1316 665 665 1317 682 682 1317 684 684 1317 665 665 1318 684 684 1318 637 637 1318 637 637 1319 684 684 1319 685 685 1319 637 637 1320 685 685 1320 639 639 1320 639 639 1321 685 685 1321 666 666 1321 639 639 1322 666 666 1322 641 641 1322 641 641 1323 666 666 1323 686 686 1323 641 641 1324 686 686 1324 643 643 1324 643 643 1325 686 686 1325 667 667 1325 643 643 1326 667 667 1326 645 645 1326 645 645 1327 667 667 1327 668 668 1327 645 645 1328 668 668 1328 646 646 1328 646 646 1329 668 668 1329 391 391 1329 201 201 1330 691 691 1330 648 648 1330 648 648 1331 691 691 1331 669 669 1331 648 648 1332 669 669 1332 649 649 1332 649 649 1333 669 669 1333 694 694 1333 649 649 1334 694 694 1334 651 651 1334 651 651 1335 694 694 1335 695 695 1335 651 651 1336 695 695 1336 670 670 1336 670 670 1337 695 695 1337 697 697 1337 670 670 1338 697 697 1338 671 671 1338 671 671 1339 697 697 1339 672 672 1339 671 671 1340 672 672 1340 653 653 1340 653 653 1341 672 672 1341 700 700 1341 653 653 1342 700 700 1342 673 673 1342 673 673 1343 700 700 1343 702 702 1343 673 673 1344 702 702 1344 674 674 1344 674 674 1345 702 702 1345 675 675 1345 674 674 1346 675 675 1346 676 676 1346 676 676 1347 675 675 1347 703 703 1347 676 676 1348 703 703 1348 654 654 1348 654 654 1349 703 703 1349 704 704 1349 654 654 1350 704 704 1350 655 655 1350 655 655 1351 704 704 1351 677 677 1351 655 655 1352 677 677 1352 657 657 1352 657 657 1353 677 677 1353 705 705 1353 657 657 1354 705 705 1354 658 658 1354 658 658 1355 705 705 1355 678 678 1355 658 658 1356 678 678 1356 660 660 1356 660 660 1357 678 678 1357 708 708 1357 660 660 1358 708 708 1358 679 679 1358 679 679 1359 708 708 1359 680 680 1359 679 679 1360 680 680 1360 663 663 1360 663 663 1361 680 680 1361 681 681 1361 663 663 1362 681 681 1362 664 664 1362 664 664 1363 681 681 1363 711 711 1363 664 664 1364 711 711 1364 682 682 1364 682 682 1365 711 711 1365 683 683 1365 682 682 1366 683 683 1366 684 684 1366 684 684 1367 683 683 1367 712 712 1367 684 684 1368 712 712 1368 685 685 1368 685 685 1369 712 712 1369 714 714 1369 685 685 1370 714 714 1370 666 666 1370 666 666 1371 714 714 1371 687 687 1371 666 666 1372 687 687 1372 686 686 1372 686 686 1373 687 687 1373 688 688 1373 686 686 1374 688 688 1374 667 667 1374 667 667 1375 688 688 1375 689 689 1375 667 667 1376 689 689 1376 668 668 1376 668 668 1377 689 689 1377 391 391 1377 201 201 1378 690 690 1378 691 691 1378 691 691 1379 690 690 1379 692 692 1379 691 691 1380 692 692 1380 669 669 1380 669 669 1381 692 692 1381 693 693 1381 669 669 1382 693 693 1382 694 694 1382 694 694 1383 693 693 1383 717 717 1383 694 694 1384 717 717 1384 695 695 1384 695 695 1385 717 717 1385 696 696 1385 695 695 1386 696 696 1386 697 697 1386 697 697 1387 696 696 1387 698 698 1387 697 697 1388 698 698 1388 672 672 1388 672 672 1389 698 698 1389 699 699 1389 672 672 1390 699 699 1390 700 700 1390 700 700 1391 699 699 1391 701 701 1391 700 700 1392 701 701 1392 702 702 1392 702 702 1393 701 701 1393 721 721 1393 702 702 1394 721 721 1394 675 675 1394 675 675 1395 721 721 1395 722 722 1395 675 675 1396 722 722 1396 703 703 1396 703 703 1397 722 722 1397 725 725 1397 703 703 1398 725 725 1398 704 704 1398 704 704 1399 725 725 1399 726 726 1399 704 704 1400 726 726 1400 677 677 1400 677 677 1401 726 726 1401 727 727 1401 677 677 1402 727 727 1402 705 705 1402 705 705 1403 727 727 1403 731 731 1403 705 705 1404 731 731 1404 678 678 1404 678 678 1405 731 731 1405 706 706 1405 678 678 1406 706 706 1406 708 708 1406 708 708 1407 706 706 1407 707 707 1407 708 708 1408 707 707 1408 680 680 1408 680 680 1409 707 707 1409 709 709 1409 680 680 1410 709 709 1410 681 681 1410 681 681 1411 709 709 1411 710 710 1411 681 681 1412 710 710 1412 711 711 1412 711 711 1413 710 710 1413 734 734 1413 711 711 1414 734 734 1414 683 683 1414 683 683 1415 734 734 1415 736 736 1415 683 683 1416 736 736 1416 712 712 1416 712 712 1417 736 736 1417 713 713 1417 712 712 1418 713 713 1418 714 714 1418 714 714 1419 713 713 1419 737 737 1419 714 714 1420 737 737 1420 687 687 1420 687 687 1421 737 737 1421 715 715 1421 687 687 1422 715 715 1422 688 688 1422 688 688 1423 715 715 1423 716 716 1423 688 688 1424 716 716 1424 689 689 1424 689 689 1425 716 716 1425 391 391 1425 201 201 1426 739 739 1426 690 690 1426 690 690 1427 739 739 1427 741 741 1427 690 690 1428 741 741 1428 692 692 1428 692 692 1429 741 741 1429 742 742 1429 692 692 1430 742 742 1430 693 693 1430 693 693 1431 742 742 1431 743 743 1431 693 693 1432 743 743 1432 717 717 1432 717 717 1433 743 743 1433 718 718 1433 717 717 1434 718 718 1434 696 696 1434 696 696 1435 718 718 1435 719 719 1435 696 696 1436 719 719 1436 698 698 1436 698 698 1437 719 719 1437 746 746 1437 698 698 1438 746 746 1438 699 699 1438 699 699 1439 746 746 1439 747 747 1439 699 699 1440 747 747 1440 701 701 1440 701 701 1441 747 747 1441 720 720 1441 701 701 1442 720 720 1442 721 721 1442 721 721 1443 720 720 1443 751 751 1443 721 721 1444 751 751 1444 722 722 1444 722 722 1445 751 751 1445 723 723 1445 722 722 1446 723 723 1446 725 725 1446 725 725 1447 723 723 1447 724 724 1447 725 725 1448 724 724 1448 726 726 1448 726 726 1449 724 724 1449 728 728 1449 726 726 1450 728 728 1450 727 727 1450 727 727 1451 728 728 1451 729 729 1451 727 727 1452 729 729 1452 731 731 1452 731 731 1453 729 729 1453 730 730 1453 731 731 1454 730 730 1454 706 706 1454 706 706 1455 730 730 1455 732 732 1455 706 706 1456 732 732 1456 707 707 1456 707 707 1457 732 732 1457 754 754 1457 707 707 1458 754 754 1458 709 709 1458 709 709 1459 754 754 1459 733 733 1459 709 709 1460 733 733 1460 710 710 1460 710 710 1461 733 733 1461 756 756 1461 710 710 1462 756 756 1462 734 734 1462 734 734 1463 756 756 1463 735 735 1463 734 734 1464 735 735 1464 736 736 1464 736 736 1465 735 735 1465 759 759 1465 736 736 1466 759 759 1466 713 713 1466 713 713 1467 759 759 1467 760 760 1467 713 713 1468 760 760 1468 737 737 1468 737 737 1469 760 760 1469 761 761 1469 737 737 1470 761 761 1470 715 715 1470 715 715 1471 761 761 1471 738 738 1471 715 715 1472 738 738 1472 716 716 1472 716 716 1473 738 738 1473 391 391 1473 201 201 1474 763 763 1474 739 739 1474 739 739 1475 763 763 1475 764 764 1475 739 739 1476 764 764 1476 741 741 1476 741 741 1477 764 764 1477 740 740 1477 741 741 1478 740 740 1478 742 742 1478 742 742 1479 740 740 1479 766 766 1479 742 742 1480 766 766 1480 743 743 1480 743 743 1481 766 766 1481 744 744 1481 743 743 1482 744 744 1482 718 718 1482 718 718 1483 744 744 1483 767 767 1483 718 718 1484 767 767 1484 719 719 1484 719 719 1485 767 767 1485 745 745 1485 719 719 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 748 748 1487 746 746 1488 748 748 1488 747 747 1488 747 747 1489 748 748 1489 749 749 1489 747 747 1490 749 749 1490 720 720 1490 720 720 1491 749 749 1491 750 750 1491 720 720 1492 750 750 1492 751 751 1492 751 751 1493 750 750 1493 752 752 1493 751 751 1494 752 752 1494 723 723 1494 723 723 1495 752 752 1495 772 772 1495 723 723 1496 772 772 1496 724 724 1496 724 724 1497 772 772 1497 774 774 1497 724 724 1498 774 774 1498 728 728 1498 728 728 1499 774 774 1499 776 776 1499 728 728 1500 776 776 1500 729 729 1500 729 729 1501 776 776 1501 777 777 1501 729 729 1502 777 777 1502 730 730 1502 730 730 1503 777 777 1503 753 753 1503 730 730 1504 753 753 1504 732 732 1504 732 732 1505 753 753 1505 755 755 1505 732 732 1506 755 755 1506 754 754 1506 754 754 1507 755 755 1507 780 780 1507 754 754 1508 780 780 1508 733 733 1508 733 733 1509 780 780 1509 782 782 1509 733 733 1510 782 782 1510 756 756 1510 756 756 1511 782 782 1511 757 757 1511 756 756 1512 757 757 1512 735 735 1512 735 735 1513 757 757 1513 758 758 1513 735 735 1514 758 758 1514 759 759 1514 759 759 1515 758 758 1515 784 784 1515 759 759 1516 784 784 1516 760 760 1516 760 760 1517 784 784 1517 785 785 1517 760 760 1518 785 785 1518 761 761 1518 761 761 1519 785 785 1519 762 762 1519 761 761 1520 762 762 1520 738 738 1520 738 738 1521 762 762 1521 391 391 1521 201 201 1522 787 787 1522 763 763 1522 763 763 1523 787 787 1523 788 788 1523 763 763 1524 788 788 1524 764 764 1524 764 764 1525 788 788 1525 789 789 1525 764 764 1526 789 789 1526 740 740 1526 740 740 1527 789 789 1527 791 791 1527 740 740 1528 791 791 1528 766 766 1528 766 766 1529 791 791 1529 765 765 1529 766 766 1530 765 765 1530 744 744 1530 744 744 1531 765 765 1531 794 794 1531 744 744 1532 794 794 1532 767 767 1532 767 767 1533 794 794 1533 768 768 1533 767 767 1534 768 768 1534 745 745 1534 745 745 1535 768 768 1535 769 769 1535 745 745 1536 769 769 1536 748 748 1536 748 748 1537 769 769 1537 798 798 1537 748 748 1538 798 798 1538 749 749 1538 749 749 1539 798 798 1539 799 799 1539 749 749 1540 799 799 1540 750 750 1540 750 750 1541 799 799 1541 770 770 1541 750 750 1542 770 770 1542 752 752 1542 752 752 1543 770 770 1543 771 771 1543 752 752 1544 771 771 1544 772 772 1544 772 772 1545 771 771 1545 773 773 1545 772 772 1546 773 773 1546 774 774 1546 774 774 1547 773 773 1547 775 775 1547 774 774 1548 775 775 1548 776 776 1548 776 776 1549 775 775 1549 802 802 1549 776 776 1550 802 802 1550 777 777 1550 777 777 1551 802 802 1551 778 778 1551 777 777 1552 778 778 1552 753 753 1552 753 753 1553 778 778 1553 779 779 1553 753 753 1554 779 779 1554 755 755 1554 755 755 1555 779 779 1555 805 805 1555 755 755 1556 805 805 1556 780 780 1556 780 780 1557 805 805 1557 781 781 1557 780 780 1558 781 781 1558 782 782 1558 782 782 1559 781 781 1559 806 806 1559 782 782 1560 806 806 1560 757 757 1560 757 757 1561 806 806 1561 783 783 1561 757 757 1562 783 783 1562 758 758 1562 758 758 1563 783 783 1563 808 808 1563 758 758 1564 808 808 1564 784 784 1564 784 784 1565 808 808 1565 786 786 1565 784 784 1566 786 786 1566 785 785 1566 785 785 1567 786 786 1567 810 810 1567 785 785 1568 810 810 1568 762 762 1568 762 762 1569 810 810 1569 391 391 1569 201 201 1570 811 811 1570 787 787 1570 787 787 1571 811 811 1571 814 814 1571 787 787 1572 814 814 1572 788 788 1572 788 788 1573 814 814 1573 815 815 1573 788 788 1574 815 815 1574 789 789 1574 789 789 1575 815 815 1575 790 790 1575 789 789 1576 790 790 1576 791 791 1576 791 791 1577 790 790 1577 792 792 1577 791 791 1578 792 792 1578 765 765 1578 765 765 1579 792 792 1579 793 793 1579 765 765 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 795 795 1581 794 794 1582 795 795 1582 768 768 1582 768 768 1583 795 795 1583 796 796 1583 768 768 1584 796 796 1584 769 769 1584 769 769 1585 796 796 1585 797 797 1585 769 769 1586 797 797 1586 798 798 1586 798 798 1587 797 797 1587 818 818 1587 798 798 1588 818 818 1588 799 799 1588 799 799 1589 818 818 1589 800 800 1589 799 799 1590 800 800 1590 770 770 1590 770 770 1591 800 800 1591 819 819 1591 770 770 1592 819 819 1592 771 771 1592 771 771 1593 819 819 1593 822 822 1593 771 771 1594 822 822 1594 773 773 1594 773 773 1595 822 822 1595 801 801 1595 773 773 1596 801 801 1596 775 775 1596 775 775 1597 801 801 1597 823 823 1597 775 775 1598 823 823 1598 802 802 1598 802 802 1599 823 823 1599 803 803 1599 802 802 1600 803 803 1600 778 778 1600 778 778 1601 803 803 1601 825 825 1601 778 778 1602 825 825 1602 779 779 1602 779 779 1603 825 825 1603 804 804 1603 779 779 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 829 829 1605 805 805 1606 829 829 1606 781 781 1606 781 781 1607 829 829 1607 830 830 1607 781 781 1608 830 830 1608 806 806 1608 806 806 1609 830 830 1609 831 831 1609 806 806 1610 831 831 1610 783 783 1610 783 783 1611 831 831 1611 807 807 1611 783 783 1612 807 807 1612 808 808 1612 808 808 1613 807 807 1613 832 832 1613 808 808 1614 832 832 1614 786 786 1614 786 786 1615 832 832 1615 809 809 1615 786 786 1616 809 809 1616 810 810 1616 810 810 1617 809 809 1617 391 391 1617 201 201 1618 812 812 1618 811 811 1618 811 811 1619 812 812 1619 813 813 1619 811 811 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 835 835 1621 814 814 1622 835 835 1622 815 815 1622 815 815 1623 835 835 1623 816 816 1623 815 815 1624 816 816 1624 790 790 1624 790 790 1625 816 816 1625 837 837 1625 790 790 1626 837 837 1626 792 792 1626 792 792 1627 837 837 1627 840 840 1627 792 792 1628 840 840 1628 793 793 1628 793 793 1629 840 840 1629 817 817 1629 793 793 1630 817 817 1630 795 795 1630 795 795 1631 817 817 1631 841 841 1631 795 795 1632 841 841 1632 796 796 1632 796 796 1633 841 841 1633 842 842 1633 796 796 1634 842 842 1634 797 797 1634 797 797 1635 842 842 1635 844 844 1635 797 797 1636 844 844 1636 818 818 1636 818 818 1637 844 844 1637 845 845 1637 818 818 1638 845 845 1638 800 800 1638 800 800 1639 845 845 1639 846 846 1639 800 800 1640 846 846 1640 819 819 1640 819 819 1641 846 846 1641 820 820 1641 819 819 1642 820 820 1642 822 822 1642 822 822 1643 820 820 1643 821 821 1643 822 822 1644 821 821 1644 801 801 1644 801 801 1645 821 821 1645 824 824 1645 801 801 1646 824 824 1646 823 823 1646 823 823 1647 824 824 1647 850 850 1647 823 823 1648 850 850 1648 803 803 1648 803 803 1649 850 850 1649 826 826 1649 803 803 1650 826 826 1650 825 825 1650 825 825 1651 826 826 1651 827 827 1651 825 825 1652 827 827 1652 804 804 1652 804 804 1653 827 827 1653 828 828 1653 804 804 1654 828 828 1654 829 829 1654 829 829 1655 828 828 1655 852 852 1655 829 829 1656 852 852 1656 830 830 1656 830 830 1657 852 852 1657 853 853 1657 830 830 1658 853 853 1658 831 831 1658 831 831 1659 853 853 1659 854 854 1659 831 831 1660 854 854 1660 807 807 1660 807 807 1661 854 854 1661 855 855 1661 807 807 1662 855 855 1662 832 832 1662 832 832 1663 855 855 1663 856 856 1663 832 832 1664 856 856 1664 809 809 1664 809 809 1665 856 856 1665 391 391 1665 201 201 1666 833 833 1666 812 812 1666 812 812 1667 833 833 1667 857 857 1667 812 812 1668 857 857 1668 813 813 1668 813 813 1669 857 857 1669 834 834 1669 813 813 1670 834 834 1670 835 835 1670 835 835 1671 834 834 1671 836 836 1671 835 835 1672 836 836 1672 816 816 1672 816 816 1673 836 836 1673 838 838 1673 816 816 1674 838 838 1674 837 837 1674 837 837 1675 838 838 1675 839 839 1675 837 837 1676 839 839 1676 840 840 1676 840 840 1677 839 839 1677 861 861 1677 840 840 1678 861 861 1678 817 817 1678 817 817 1679 861 861 1679 862 862 1679 817 817 1680 862 862 1680 841 841 1680 841 841 1681 862 862 1681 863 863 1681 841 841 1682 863 863 1682 842 842 1682 842 842 1683 863 863 1683 843 843 1683 842 842 1684 843 843 1684 844 844 1684 844 844 1685 843 843 1685 865 865 1685 844 844 1686 865 865 1686 845 845 1686 845 845 1687 865 865 1687 866 866 1687 845 845 1688 866 866 1688 846 846 1688 846 846 1689 866 866 1689 847 847 1689 846 846 1690 847 847 1690 820 820 1690 820 820 1691 847 847 1691 867 867 1691 820 820 1692 867 867 1692 821 821 1692 821 821 1693 867 867 1693 848 848 1693 821 821 1694 848 848 1694 824 824 1694 824 824 1695 848 848 1695 849 849 1695 824 824 1696 849 849 1696 850 850 1696 850 850 1697 849 849 1697 871 871 1697 850 850 1698 871 871 1698 826 826 1698 826 826 1699 871 871 1699 851 851 1699 826 826 1700 851 851 1700 827 827 1700 827 827 1701 851 851 1701 872 872 1701 827 827 1702 872 872 1702 828 828 1702 828 828 1703 872 872 1703 875 875 1703 828 828 1704 875 875 1704 852 852 1704 852 852 1705 875 875 1705 876 876 1705 852 852 1706 876 876 1706 853 853 1706 853 853 1707 876 876 1707 877 877 1707 853 853 1708 877 877 1708 854 854 1708 854 854 1709 877 877 1709 879 879 1709 854 854 1710 879 879 1710 855 855 1710 855 855 1711 879 879 1711 880 880 1711 855 855 1712 880 880 1712 856 856 1712 856 856 1713 880 880 1713 391 391 1713 201 201 1714 882 882 1714 833 833 1714 833 833 1715 882 882 1715 883 883 1715 833 833 1716 883 883 1716 857 857 1716 857 857 1717 883 883 1717 884 884 1717 857 857 1718 884 884 1718 834 834 1718 834 834 1719 884 884 1719 885 885 1719 834 834 1720 885 885 1720 836 836 1720 836 836 1721 885 885 1721 858 858 1721 836 836 1722 858 858 1722 838 838 1722 838 838 1723 858 858 1723 859 859 1723 838 838 1724 859 859 1724 839 839 1724 839 839 1725 859 859 1725 860 860 1725 839 839 1726 860 860 1726 861 861 1726 861 861 1727 860 860 1727 888 888 1727 861 861 1728 888 888 1728 862 862 1728 862 862 1729 888 888 1729 864 864 1729 862 862 1730 864 864 1730 863 863 1730 863 863 1731 864 864 1731 889 889 1731 863 863 1732 889 889 1732 843 843 1732 843 843 1733 889 889 1733 891 891 1733 843 843 1734 891 891 1734 865 865 1734 865 865 1735 891 891 1735 893 893 1735 865 865 1736 893 893 1736 866 866 1736 866 866 1737 893 893 1737 894 894 1737 866 866 1738 894 894 1738 847 847 1738 847 847 1739 894 894 1739 895 895 1739 847 847 1740 895 895 1740 867 867 1740 867 867 1741 895 895 1741 868 868 1741 867 867 1742 868 868 1742 848 848 1742 848 848 1743 868 868 1743 869 869 1743 848 848 1744 869 869 1744 849 849 1744 849 849 1745 869 869 1745 870 870 1745 849 849 1746 870 870 1746 871 871 1746 871 871 1747 870 870 1747 896 896 1747 871 871 1748 896 896 1748 851 851 1748 851 851 1749 896 896 1749 873 873 1749 851 851 1750 873 873 1750 872 872 1750 872 872 1751 873 873 1751 874 874 1751 872 872 1752 874 874 1752 875 875 1752 875 875 1753 874 874 1753 898 898 1753 875 875 1754 898 898 1754 876 876 1754 876 876 1755 898 898 1755 900 900 1755 876 876 1756 900 900 1756 877 877 1756 877 877 1757 900 900 1757 878 878 1757 877 877 1758 878 878 1758 879 879 1758 879 879 1759 878 878 1759 881 881 1759 879 879 1760 881 881 1760 880 880 1760 880 880 1761 881 881 1761 391 391 1761 201 201 1762 903 903 1762 882 882 1762 882 882 1763 903 903 1763 904 904 1763 882 882 1764 904 904 1764 883 883 1764 883 883 1765 904 904 1765 906 906 1765 883 883 1766 906 906 1766 884 884 1766 884 884 1767 906 906 1767 907 907 1767 884 884 1768 907 907 1768 885 885 1768 885 885 1769 907 907 1769 886 886 1769 885 885 1770 886 886 1770 858 858 1770 858 858 1771 886 886 1771 887 887 1771 858 858 1772 887 887 1772 859 859 1772 859 859 1773 887 887 1773 909 909 1773 859 859 1774 909 909 1774 860 860 1774 860 860 1775 909 909 1775 910 910 1775 860 860 1776 910 910 1776 888 888 1776 888 888 1777 910 910 1777 911 911 1777 888 888 1778 911 911 1778 864 864 1778 864 864 1779 911 911 1779 914 914 1779 864 864 1780 914 914 1780 889 889 1780 889 889 1781 914 914 1781 890 890 1781 889 889 1782 890 890 1782 891 891 1782 891 891 1783 890 890 1783 892 892 1783 891 891 1784 892 892 1784 893 893 1784 893 893 1785 892 892 1785 918 918 1785 893 893 1786 918 918 1786 894 894 1786 894 894 1787 918 918 1787 919 919 1787 894 894 1788 919 919 1788 895 895 1788 895 895 1789 919 919 1789 921 921 1789 895 895 1790 921 921 1790 868 868 1790 868 868 1791 921 921 1791 922 922 1791 868 868 1792 922 922 1792 869 869 1792 869 869 1793 922 922 1793 924 924 1793 869 869 1794 924 924 1794 870 870 1794 870 870 1795 924 924 1795 926 926 1795 870 870 1796 926 926 1796 896 896 1796 896 896 1797 926 926 1797 897 897 1797 896 896 1798 897 897 1798 873 873 1798 873 873 1799 897 897 1799 928 928 1799 873 873 1800 928 928 1800 874 874 1800 874 874 1801 928 928 1801 930 930 1801 874 874 1802 930 930 1802 898 898 1802 898 898 1803 930 930 1803 899 899 1803 898 898 1804 899 899 1804 900 900 1804 900 900 1805 899 899 1805 901 901 1805 900 900 1806 901 901 1806 878 878 1806 878 878 1807 901 901 1807 902 902 1807 878 878 1808 902 902 1808 881 881 1808 881 881 1809 902 902 1809 391 391 1809 201 201 1810 934 934 1810 903 903 1810 903 903 1811 934 934 1811 936 936 1811 903 903 1812 936 936 1812 904 904 1812 904 904 1813 936 936 1813 905 905 1813 904 904 1814 905 905 1814 906 906 1814 906 906 1815 905 905 1815 938 938 1815 906 906 1816 938 938 1816 907 907 1816 907 907 1817 938 938 1817 908 908 1817 907 907 1818 908 908 1818 886 886 1818 886 886 1819 908 908 1819 940 940 1819 886 886 1820 940 940 1820 887 887 1820 887 887 1821 940 940 1821 942 942 1821 887 887 1822 942 942 1822 909 909 1822 909 909 1823 942 942 1823 943 943 1823 909 909 1824 943 943 1824 910 910 1824 910 910 1825 943 943 1825 912 912 1825 910 910 1826 912 912 1826 911 911 1826 911 911 1827 912 912 1827 913 913 1827 911 911 1828 913 913 1828 914 914 1828 914 914 1829 913 913 1829 915 915 1829 914 914 1830 915 915 1830 890 890 1830 890 890 1831 915 915 1831 916 916 1831 890 890 1832 916 916 1832 892 892 1832 892 892 1833 916 916 1833 917 917 1833 892 892 1834 917 917 1834 918 918 1834 918 918 1835 917 917 1835 947 947 1835 918 918 1836 947 947 1836 919 919 1836 919 919 1837 947 947 1837 920 920 1837 919 919 1838 920 920 1838 921 921 1838 921 921 1839 920 920 1839 949 949 1839 921 921 1840 949 949 1840 922 922 1840 922 922 1841 949 949 1841 923 923 1841 922 922 1842 923 923 1842 924 924 1842 924 924 1843 923 923 1843 925 925 1843 924 924 1844 925 925 1844 926 926 1844 926 926 1845 925 925 1845 951 951 1845 926 926 1846 951 951 1846 897 897 1846 897 897 1847 951 951 1847 927 927 1847 897 897 1848 927 927 1848 928 928 1848 928 928 1849 927 927 1849 929 929 1849 928 928 1850 929 929 1850 930 930 1850 930 930 1851 929 929 1851 931 931 1851 930 930 1852 931 931 1852 899 899 1852 899 899 1853 931 931 1853 932 932 1853 899 899 1854 932 932 1854 901 901 1854 901 901 1855 932 932 1855 933 933 1855 901 901 1856 933 933 1856 902 902 1856 902 902 1857 933 933 1857 391 391 1857 201 201 1858 956 956 1858 934 934 1858 934 934 1859 956 956 1859 935 935 1859 934 934 1860 935 935 1860 936 936 1860 936 936 1861 935 935 1861 937 937 1861 936 936 1862 937 937 1862 905 905 1862 905 905 1863 937 937 1863 957 957 1863 905 905 1864 957 957 1864 938 938 1864 938 938 1865 957 957 1865 939 939 1865 938 938 1866 939 939 1866 908 908 1866 908 908 1867 939 939 1867 961 961 1867 908 908 1868 961 961 1868 940 940 1868 940 940 1869 961 961 1869 941 941 1869 940 940 1870 941 941 1870 942 942 1870 942 942 1871 941 941 1871 962 962 1871 942 942 1872 962 962 1872 943 943 1872 943 943 1873 962 962 1873 944 944 1873 943 943 1874 944 944 1874 912 912 1874 912 912 1875 944 944 1875 945 945 1875 912 912 1876 945 945 1876 913 913 1876 913 913 1877 945 945 1877 965 965 1877 913 913 1878 965 965 1878 915 915 1878 915 915 1879 965 965 1879 968 968 1879 915 915 1880 968 968 1880 916 916 1880 916 916 1881 968 968 1881 969 969 1881 916 916 1882 969 969 1882 917 917 1882 917 917 1883 969 969 1883 946 946 1883 917 917 1884 946 946 1884 947 947 1884 947 947 1885 946 946 1885 948 948 1885 947 947 1886 948 948 1886 920 920 1886 920 920 1887 948 948 1887 950 950 1887 920 920 1888 950 950 1888 949 949 1888 949 949 1889 950 950 1889 971 971 1889 949 949 1890 971 971 1890 923 923 1890 923 923 1891 971 971 1891 973 973 1891 923 923 1892 973 973 1892 925 925 1892 925 925 1893 973 973 1893 974 974 1893 925 925 1894 974 974 1894 951 951 1894 951 951 1895 974 974 1895 975 975 1895 951 951 1896 975 975 1896 927 927 1896 927 927 1897 975 975 1897 952 952 1897 927 927 1898 952 952 1898 929 929 1898 929 929 1899 952 952 1899 953 953 1899 929 929 1900 953 953 1900 931 931 1900 931 931 1901 953 953 1901 954 954 1901 931 931 1902 954 954 1902 932 932 1902 932 932 1903 954 954 1903 955 955 1903 932 932 1904 955 955 1904 933 933 1904 933 933 1905 955 955 1905 391 391 1905 201 201 1906 1177 1177 1906 956 956 1906 956 956 1907 1177 1177 1907 1175 1175 1907 956 956 1908 1175 1175 1908 935 935 1908 935 935 1909 1175 1175 1909 1173 1173 1909 935 935 1910 1173 1173 1910 937 937 1910 937 937 1911 1173 1173 1911 958 958 1911 937 937 1912 958 958 1912 957 957 1912 957 957 1913 958 958 1913 959 959 1913 957 957 1914 959 959 1914 939 939 1914 939 939 1915 959 959 1915 960 960 1915 939 939 1916 960 960 1916 961 961 1916 961 961 1917 960 960 1917 1170 1170 1917 961 961 1918 1170 1170 1918 941 941 1918 941 941 1919 1170 1170 1919 1168 1168 1919 941 941 1920 1168 1168 1920 962 962 1920 962 962 1921 1168 1168 1921 963 963 1921 962 962 1922 963 963 1922 944 944 1922 944 944 1923 963 963 1923 964 964 1923 944 944 1924 964 964 1924 945 945 1924 945 945 1925 964 964 1925 1166 1166 1925 945 945 1926 1166 1166 1926 965 965 1926 965 965 1927 1166 1166 1927 966 966 1927 965 965 1928 966 966 1928 968 968 1928 968 968 1929 966 966 1929 967 967 1929 968 968 1930 967 967 1930 969 969 1930 969 969 1931 967 967 1931 1164 1164 1931 969 969 1932 1164 1164 1932 946 946 1932 946 946 1933 1164 1164 1933 1163 1163 1933 946 946 1934 1163 1163 1934 948 948 1934 948 948 1935 1163 1163 1935 970 970 1935 948 948 1936 970 970 1936 950 950 1936 950 950 1937 970 970 1937 1160 1160 1937 950 950 1938 1160 1160 1938 971 971 1938 971 971 1939 1160 1160 1939 972 972 1939 971 971 1940 972 972 1940 973 973 1940 973 973 1941 972 972 1941 1159 1159 1941 973 973 1942 1159 1159 1942 974 974 1942 974 974 1943 1159 1159 1943 979 979 1943 974 974 1944 979 979 1944 975 975 1944 975 975 1945 979 979 1945 976 976 1945 975 975 1946 976 976 1946 952 952 1946 952 952 1947 976 976 1947 981 981 1947 952 952 1948 981 981 1948 953 953 1948 953 953 1949 981 981 1949 977 977 1949 953 953 1950 977 977 1950 954 954 1950 954 954 1951 977 977 1951 978 978 1951 954 954 1952 978 978 1952 955 955 1952 955 955 1953 978 978 1953 391 391 1953 979 979 1954 996 996 1954 976 976 1954 976 976 1955 996 996 1955 980 980 1955 976 976 1956 980 980 1956 981 981 1956 981 981 1957 980 980 1957 999 999 1957 981 981 1958 999 999 1958 977 977 1958 977 977 1959 999 999 1959 1000 1000 1959 977 977 1960 1000 1000 1960 978 978 1960 978 978 1961 1000 1000 1961 391 391 1961 1176 1176 1962 982 982 1962 1174 1174 1962 1174 1174 1963 982 982 1963 1001 1001 1963 1174 1174 1964 1001 1001 1964 983 983 1964 983 983 1965 1001 1001 1965 1002 1002 1965 983 983 1966 1002 1002 1966 1172 1172 1966 1172 1172 1967 1002 1002 1967 1003 1003 1967 1172 1172 1968 1003 1003 1968 984 984 1968 984 984 1969 1003 1003 1969 1006 1006 1969 984 984 1970 1006 1006 1970 1171 1171 1970 1171 1171 1971 1006 1006 1971 1007 1007 1971 1171 1171 1972 1007 1007 1972 1169 1169 1972 1169 1169 1973 1007 1007 1973 1008 1008 1973 1169 1169 1974 1008 1008 1974 985 985 1974 985 985 1975 1008 1008 1975 1009 1009 1975 985 985 1976 1009 1009 1976 986 986 1976 986 986 1977 1009 1009 1977 1010 1010 1977 986 986 1978 1010 1010 1978 1167 1167 1978 1167 1167 1979 1010 1010 1979 1012 1012 1979 1167 1167 1980 1012 1012 1980 987 987 1980 987 987 1981 1012 1012 1981 988 988 1981 987 987 1982 988 988 1982 1165 1165 1982 1165 1165 1983 988 988 1983 1013 1013 1983 1165 1165 1984 1013 1013 1984 990 990 1984 990 990 1985 1013 1013 1985 989 989 1985 990 990 1986 989 989 1986 1162 1162 1986 1162 1162 1987 989 989 1987 1015 1015 1987 1162 1162 1988 1015 1015 1988 991 991 1988 991 991 1989 1015 1015 1989 1017 1017 1989 991 991 1990 1017 1017 1990 1161 1161 1990 1161 1161 1991 1017 1017 1991 992 992 1991 1161 1161 1992 992 992 1992 993 993 1992 993 993 1993 992 992 1993 994 994 1993 993 993 1994 994 994 1994 1158 1158 1994 1158 1158 1995 994 994 1995 995 995 1995 1158 1158 1996 995 995 1996 1157 1157 1996 1157 1157 1997 995 995 1997 1020 1020 1997 1157 1157 1998 1020 1020 1998 996 996 1998 996 996 1999 1020 1020 1999 997 997 1999 996 996 2000 997 997 2000 980 980 2000 980 980 2001 997 997 2001 1021 1021 2001 980 980 2002 1021 1021 2002 999 999 2002 999 999 2003 1021 1021 2003 998 998 2003 999 999 2004 998 998 2004 1000 1000 2004 1000 1000 2005 998 998 2005 391 391 2005 982 982 2006 1135 1135 2006 1001 1001 2006 1001 1001 2007 1135 1135 2007 1023 1023 2007 1001 1001 2008 1023 1023 2008 1002 1002 2008 1002 1002 2009 1023 1023 2009 1004 1004 2009 1002 1002 2010 1004 1004 2010 1003 1003 2010 1003 1003 2011 1004 1004 2011 1005 1005 2011 1003 1003 2012 1005 1005 2012 1006 1006 2012 1006 1006 2013 1005 1005 2013 1026 1026 2013 1006 1006 2014 1026 1026 2014 1007 1007 2014 1007 1007 2015 1026 1026 2015 1027 1027 2015 1007 1007 2016 1027 1027 2016 1008 1008 2016 1008 1008 2017 1027 1027 2017 1028 1028 2017 1008 1008 2018 1028 1028 2018 1009 1009 2018 1009 1009 2019 1028 1028 2019 1029 1029 2019 1009 1009 2020 1029 1029 2020 1010 1010 2020 1010 1010 2021 1029 1029 2021 1011 1011 2021 1010 1010 2022 1011 1011 2022 1012 1012 2022 1012 1012 2023 1011 1011 2023 1033 1033 2023 1012 1012 2024 1033 1033 2024 988 988 2024 988 988 2025 1033 1033 2025 1035 1035 2025 988 988 2026 1035 1035 2026 1013 1013 2026 1013 1013 2027 1035 1035 2027 1014 1014 2027 1013 1013 2028 1014 1014 2028 989 989 2028 989 989 2029 1014 1014 2029 1016 1016 2029 989 989 2030 1016 1016 2030 1015 1015 2030 1015 1015 2031 1016 1016 2031 1037 1037 2031 1015 1015 2032 1037 1037 2032 1017 1017 2032 1017 1017 2033 1037 1037 2033 1038 1038 2033 1017 1017 2034 1038 1038 2034 992 992 2034 992 992 2035 1038 1038 2035 1018 1018 2035 992 992 2036 1018 1018 2036 994 994 2036 994 994 2037 1018 1018 2037 1042 1042 2037 994 994 2038 1042 1042 2038 995 995 2038 995 995 2039 1042 1042 2039 1019 1019 2039 995 995 2040 1019 1019 2040 1020 1020 2040 1020 1020 2041 1019 1019 2041 1045 1045 2041 1020 1020 2042 1045 1045 2042 997 997 2042 997 997 2043 1045 1045 2043 1046 1046 2043 997 997 2044 1046 1046 2044 1021 1021 2044 1021 1021 2045 1046 1046 2045 1022 1022 2045 1021 1021 2046 1022 1022 2046 998 998 2046 998 998 2047 1022 1022 2047 391 391 2047 1135 1135 2048 1138 1138 2048 1023 1023 2048 1023 1023 2049 1138 1138 2049 1024 1024 2049 1023 1023 2050 1024 1024 2050 1004 1004 2050 1004 1004 2051 1024 1024 2051 1025 1025 2051 1004 1004 2052 1025 1025 2052 1005 1005 2052 1005 1005 2053 1025 1025 2053 265 265 2053 1005 1005 2054 265 265 2054 1026 1026 2054 1026 1026 2055 265 265 2055 268 268 2055 1026 1026 2056 268 268 2056 1027 1027 2056 1027 1027 2057 268 268 2057 269 269 2057 1027 1027 2058 269 269 2058 1028 1028 2058 1028 1028 2059 269 269 2059 1030 1030 2059 1028 1028 2060 1030 1030 2060 1029 1029 2060 1029 1029 2061 1030 1030 2061 1031 1031 2061 1029 1029 2062 1031 1031 2062 1011 1011 2062 1011 1011 2063 1031 1031 2063 1032 1032 2063 1011 1011 2064 1032 1032 2064 1033 1033 2064 1033 1033 2065 1032 1032 2065 1034 1034 2065 1033 1033 2066 1034 1034 2066 1035 1035 2066 1035 1035 2067 1034 1034 2067 1036 1036 2067 1035 1035 2068 1036 1036 2068 1014 1014 2068 1014 1014 2069 1036 1036 2069 273 273 2069 1014 1014 2070 273 273 2070 1016 1016 2070 1016 1016 2071 273 273 2071 275 275 2071 1016 1016 2072 275 275 2072 1037 1037 2072 1037 1037 2073 275 275 2073 1039 1039 2073 1037 1037 2074 1039 1039 2074 1038 1038 2074 1038 1038 2075 1039 1039 2075 1040 1040 2075 1038 1038 2076 1040 1040 2076 1018 1018 2076 1018 1018 2077 1040 1040 2077 1041 1041 2077 1018 1018 2078 1041 1041 2078 1042 1042 2078 1042 1042 2079 1041 1041 2079 1043 1043 2079 1042 1042 2080 1043 1043 2080 1019 1019 2080 1019 1019 2081 1043 1043 2081 1044 1044 2081 1019 1019 2082 1044 1044 2082 1045 1045 2082 1045 1045 2083 1044 1044 2083 279 279 2083 1045 1045 2084 279 279 2084 1046 1046 2084 1046 1046 2085 279 279 2085 1047 1047 2085 1046 1046 2086 1047 1047 2086 1022 1022 2086 1022 1022 2087 1047 1047 2087 391 391 2087 391 391 2088 449 449 2088 1048 1048 2088 1048 1048 2089 449 449 2089 1049 1049 2089 1048 1048 2090 1049 1049 2090 1050 1050 2090 1050 1050 2091 1049 1049 2091 451 451 2091 1050 1050 2092 451 451 2092 476 476 2092 476 476 2093 451 451 2093 452 452 2093 476 476 2094 452 452 2094 478 478 2094 478 478 2095 452 452 2095 1051 1051 2095 478 478 2096 1051 1051 2096 479 479 2096 479 479 2097 1051 1051 2097 453 453 2097 479 479 2098 453 453 2098 1052 1052 2098 1052 1052 2099 453 453 2099 1054 1054 2099 1052 1052 2100 1054 1054 2100 1053 1053 2100 1053 1053 2101 1054 1054 2101 1055 1055 2101 1053 1053 2102 1055 1055 2102 1056 1056 2102 1056 1056 2103 1055 1055 2103 457 457 2103 1056 1056 2104 457 457 2104 1057 1057 2104 1057 1057 2105 457 457 2105 1058 1058 2105 1057 1057 2106 1058 1058 2106 1059 1059 2106 1059 1059 2107 1058 1058 2107 459 459 2107 1059 1059 2108 459 459 2108 480 480 2108 480 480 2109 459 459 2109 1061 1061 2109 480 480 2110 1061 1061 2110 1060 1060 2110 1060 1060 2111 1061 1061 2111 1062 1062 2111 1060 1060 2112 1062 1062 2112 1063 1063 2112 1063 1063 2113 1062 1062 2113 461 461 2113 1063 1063 2114 461 461 2114 483 483 2114 483 483 2115 461 461 2115 463 463 2115 483 483 2116 463 463 2116 1064 1064 2116 1064 1064 2117 463 463 2117 1065 1065 2117 1064 1064 2118 1065 1065 2118 1066 1066 2118 1066 1066 2119 1065 1065 2119 1067 1067 2119 1066 1066 2120 1067 1067 2120 1068 1068 2120 1068 1068 2121 1067 1067 2121 466 466 2121 1068 1068 2122 466 466 2122 484 484 2122 484 484 2123 466 466 2123 468 468 2123 484 484 2124 468 468 2124 1069 1069 2124 1069 1069 2125 468 468 2125 469 469 2125 1069 1069 2126 469 469 2126 485 485 2126 485 485 2127 469 469 2127 471 471 2127 485 485 2128 471 471 2128 486 486 2128 486 486 2129 471 471 2129 472 472 2129 486 486 2130 472 472 2130 487 487 2130 487 487 2131 472 472 2131 473 473 2131 487 487 2132 473 473 2132 488 488 2132 488 488 2133 473 473 2133 475 475 2133 488 488 2134 475 475 2134 489 489 2134 489 489 2135 475 475 2135 201 201 2135 1116 1116 2136 1114 1114 2136 1070 1070 2136 1070 1070 2137 1114 1114 2137 1071 1071 2137 1070 1070 2138 1071 1071 2138 450 450 2138 450 450 2139 1071 1071 2139 1072 1072 2139 450 450 2140 1072 1072 2140 1073 1073 2140 1073 1073 2141 1072 1072 2141 1074 1074 2141 1073 1073 2142 1074 1074 2142 1075 1075 2142 1075 1075 2143 1074 1074 2143 176 176 2143 1075 1075 2144 176 176 2144 1076 1076 2144 1076 1076 2145 176 176 2145 1077 1077 2145 1076 1076 2146 1077 1077 2146 454 454 2146 454 454 2147 1077 1077 2147 160 160 2147 454 454 2148 160 160 2148 455 455 2148 455 455 2149 160 160 2149 136 136 2149 455 455 2150 136 136 2150 456 456 2150 456 456 2151 136 136 2151 1078 1078 2151 456 456 2152 1078 1078 2152 1079 1079 2152 1079 1079 2153 1078 1078 2153 1080 1080 2153 1079 1079 2154 1080 1080 2154 1081 1081 2154 1081 1081 2155 1080 1080 2155 97 97 2155 1081 1081 2156 97 97 2156 458 458 2156 458 458 2157 97 97 2157 68 68 2157 458 458 2158 68 68 2158 460 460 2158 460 460 2159 68 68 2159 55 55 2159 460 460 2160 55 55 2160 1082 1082 2160 1082 1082 2161 55 55 2161 1083 1083 2161 1082 1082 2162 1083 1083 2162 462 462 2162 462 462 2163 1083 1083 2163 1084 1084 2163 462 462 2164 1084 1084 2164 1085 1085 2164 1085 1085 2165 1084 1084 2165 1086 1086 2165 1085 1085 2166 1086 1086 2166 464 464 2166 464 464 2167 1086 1086 2167 23 23 2167 464 464 2168 23 23 2168 465 465 2168 465 465 2169 23 23 2169 1087 1087 2169 465 465 2170 1087 1087 2170 467 467 2170 467 467 2171 1087 1087 2171 1088 1088 2171 467 467 2172 1088 1088 2172 1089 1089 2172 1089 1089 2173 1088 1088 2173 12 12 2173 1089 1089 2174 12 12 2174 1090 1090 2174 1090 1090 2175 12 12 2175 7 7 2175 1090 1090 2176 7 7 2176 470 470 2176 470 470 2177 7 7 2177 1092 1092 2177 470 470 2178 1092 1092 2178 1091 1091 2178 1091 1091 2179 1092 1092 2179 1 1 2179 1091 1091 2180 1 1 2180 474 474 2180 474 474 2181 1 1 2181 201 201 2181 424 424 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 426 426 2184 426 426 2185 1095 1095 2185 1096 1096 2185 426 426 2186 1096 1096 2186 427 427 2186 427 427 2187 1096 1096 2187 248 248 2187 427 427 2188 248 248 2188 428 428 2188 428 428 2189 248 248 2189 1097 1097 2189 428 428 2190 1097 1097 2190 429 429 2190 429 429 2191 1097 1097 2191 1098 1098 2191 429 429 2192 1098 1098 2192 431 431 2192 431 431 2193 1098 1098 2193 251 251 2193 431 431 2194 251 251 2194 1099 1099 2194 1099 1099 2195 251 251 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 433 433 2196 433 433 2197 1100 1100 2197 253 253 2197 433 433 2198 253 253 2198 1101 1101 2198 1101 1101 2199 253 253 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 255 255 2201 1102 1102 2202 255 255 2202 436 436 2202 436 436 2203 255 255 2203 256 256 2203 436 436 2204 256 256 2204 1104 1104 2204 1104 1104 2205 256 256 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 438 438 2206 438 438 2207 1105 1105 2207 257 257 2207 438 438 2208 257 257 2208 439 439 2208 439 439 2209 257 257 2209 258 258 2209 439 439 2210 258 258 2210 1106 1106 2210 1106 1106 2211 258 258 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 441 441 2212 441 441 2213 1107 1107 2213 1108 1108 2213 441 441 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 259 259 2215 1109 1109 2216 259 259 2216 1110 1110 2216 1110 1110 2217 259 259 2217 260 260 2217 1110 1110 2218 260 260 2218 1111 1111 2218 1111 1111 2219 260 260 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 445 445 2220 445 445 2221 1112 1112 2221 261 261 2221 445 445 2222 261 261 2222 447 447 2222 447 447 2223 261 261 2223 262 262 2223 447 447 2224 262 262 2224 1113 1113 2224 1113 1113 2225 262 262 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 391 391 2228 1117 1117 2229 391 391 2229 1047 1047 2229 264 264 2230 1118 1118 2230 1119 1119 2230 1119 1119 2231 1118 1118 2231 39 39 2231 1119 1119 2232 39 39 2232 1120 1120 2232 1120 1120 2233 39 39 2233 392 392 2233 1120 1120 2234 392 392 2234 266 266 2234 266 266 2235 392 392 2235 1121 1121 2235 266 266 2236 1121 1121 2236 267 267 2236 267 267 2237 1121 1121 2237 1122 1122 2237 267 267 2238 1122 1122 2238 1123 1123 2238 1123 1123 2239 1122 1122 2239 71 71 2239 1123 1123 2240 71 71 2240 270 270 2240 270 270 2241 71 71 2241 85 85 2241 270 270 2242 85 85 2242 271 271 2242 271 271 2243 85 85 2243 1124 1124 2243 271 271 2244 1124 1124 2244 272 272 2244 272 272 2245 1124 1124 2245 1126 1126 2245 272 272 2246 1126 1126 2246 1125 1125 2246 1125 1125 2247 1126 1126 2247 1127 1127 2247 1125 1125 2248 1127 1127 2248 1128 1128 2248 1128 1128 2249 1127 1127 2249 161 161 2249 1128 1128 2250 161 161 2250 1129 1129 2250 1129 1129 2251 161 161 2251 162 162 2251 1129 1129 2252 162 162 2252 274 274 2252 274 274 2253 162 162 2253 289 289 2253 274 274 2254 289 289 2254 1130 1130 2254 1130 1130 2255 289 289 2255 1131 1131 2255 1130 1130 2256 1131 1131 2256 276 276 2256 276 276 2257 1131 1131 2257 219 219 2257 276 276 2258 219 219 2258 277 277 2258 277 277 2259 219 219 2259 1132 1132 2259 277 277 2260 1132 1132 2260 278 278 2260 278 278 2261 1132 1132 2261 280 280 2261 278 278 2262 280 280 2262 1133 1133 2262 1133 1133 2263 280 280 2263 1134 1134 2263 1133 1133 2264 1134 1134 2264 1117 1117 2264 1117 1117 2265 1134 1134 2265 391 391 2265 3 3 2266 201 201 2266 424 424 2266 1176 1176 2267 425 425 2267 982 982 2267 982 982 2268 425 425 2268 1136 1136 2268 982 982 2269 1136 1136 2269 1135 1135 2269 1135 1135 2270 1136 1136 2270 1137 1137 2270 1135 1135 2271 1137 1137 2271 1138 1138 2271 1138 1138 2272 1137 1137 2272 1139 1139 2272 1138 1138 2273 1139 1139 2273 264 264 2273 264 264 2274 1139 1139 2274 1140 1140 2274 264 264 2275 1140 1140 2275 1118 1118 2275 1118 1118 2276 1140 1140 2276 430 430 2276 1118 1118 2277 430 430 2277 407 407 2277 407 407 2278 430 430 2278 1142 1142 2278 407 407 2279 1142 1142 2279 1141 1141 2279 1141 1141 2280 1142 1142 2280 432 432 2280 1141 1141 2281 432 432 2281 410 410 2281 410 410 2282 432 432 2282 434 434 2282 410 410 2283 434 434 2283 1144 1144 2283 1144 1144 2284 434 434 2284 1143 1143 2284 1144 1144 2285 1143 1143 2285 1145 1145 2285 1145 1145 2286 1143 1143 2286 435 435 2286 1145 1145 2287 435 435 2287 1146 1146 2287 1146 1146 2288 435 435 2288 1147 1147 2288 1146 1146 2289 1147 1147 2289 1148 1148 2289 1148 1148 2290 1147 1147 2290 437 437 2290 1148 1148 2291 437 437 2291 1149 1149 2291 1149 1149 2292 437 437 2292 1150 1150 2292 1149 1149 2293 1150 1150 2293 413 413 2293 413 413 2294 1150 1150 2294 440 440 2294 413 413 2295 440 440 2295 1151 1151 2295 1151 1151 2296 440 440 2296 1152 1152 2296 1151 1151 2297 1152 1152 2297 416 416 2297 416 416 2298 1152 1152 2298 1153 1153 2298 416 416 2299 1153 1153 2299 418 418 2299 418 418 2300 1153 1153 2300 442 442 2300 418 418 2301 442 442 2301 419 419 2301 419 419 2302 442 442 2302 443 443 2302 419 419 2303 443 443 2303 421 421 2303 421 421 2304 443 443 2304 444 444 2304 421 421 2305 444 444 2305 1154 1154 2305 1154 1154 2306 444 444 2306 446 446 2306 1154 1154 2307 446 446 2307 423 423 2307 423 423 2308 446 446 2308 448 448 2308 423 423 2309 448 448 2309 1155 1155 2309 1155 1155 2310 448 448 2310 1156 1156 2310 1155 1155 2311 1156 1156 2311 391 391 2311 996 996 2312 979 979 2312 1157 1157 2312 1157 1157 2313 979 979 2313 1159 1159 2313 1157 1157 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 972 972 2315 1158 1158 2316 972 972 2316 993 993 2316 993 993 2317 972 972 2317 1160 1160 2317 993 993 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 970 970 2319 1161 1161 2320 970 970 2320 991 991 2320 991 991 2321 970 970 2321 1163 1163 2321 991 991 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 990 990 2324 990 990 2325 1164 1164 2325 967 967 2325 990 990 2326 967 967 2326 1165 1165 2326 1165 1165 2327 967 967 2327 966 966 2327 1165 1165 2328 966 966 2328 987 987 2328 987 987 2329 966 966 2329 1166 1166 2329 987 987 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 964 964 2331 1167 1167 2332 964 964 2332 986 986 2332 986 986 2333 964 964 2333 963 963 2333 986 986 2334 963 963 2334 985 985 2334 985 985 2335 963 963 2335 1168 1168 2335 985 985 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 960 960 2339 1171 1171 2340 960 960 2340 984 984 2340 984 984 2341 960 960 2341 959 959 2341 984 984 2342 959 959 2342 1172 1172 2342 1172 1172 2343 959 959 2343 958 958 2343 1172 1172 2344 958 958 2344 983 983 2344 983 983 2345 958 958 2345 1173 1173 2345 983 983 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 3 3 2350 3 3 2351 1177 1177 2351 201 201 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/parking_1.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/parking_1.dae new file mode 100755 index 0000000..b58c2e3 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/parking_1.dae @@ -0,0 +1,310 @@ + + + + + Blender User + Blender 2.78.0 + + 2017-04-24T15:08:21 + 2017-04-24T15:08:21 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0.64 0.03905561 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

1 0 2 0 0 0 3 1 6 1 2 1 7 2 4 2 6 2 5 3 0 3 4 3 6 4 0 4 2 4 3 5 5 5 7 5 1 0 3 0 2 0 3 1 7 1 6 1 7 2 5 2 4 2 5 3 1 3 0 3 6 4 4 4 0 4 3 5 1 5 5 5

+
+
+
+
+ + + + + 0.1354637 0 0 -3.735135 0 0.3 0 3.623344 0 0 0.15 0.1530263 0 0 0 1 + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.173696 0 0 -4.197643 0 5.482737 0 4.50726 0 0 1 1.015023 0 0 0 1 + + + + 0.1354637 0 0 -3.735135 0 0.3 0 5.201571 0 0 0.15 0.1727542 0 0 0 1 + + + + 0.225 0 0 -3.795233 0 0.38 0 4.425851 0 0 0.005 0.01 0 0 0 1 + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.STL new file mode 100755 index 0000000..1f628d7 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.dae new file mode 100755 index 0000000..2e35588 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:00 2016 GMT + Tue Jan 19 20:36:00 2016 GMT + Y_UP + + + + + + -0.0499122 5.7649e-17 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 -1.66397e-16 0.035 0.05 -1.65094e-16 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.59801e-16 0.045 6.93746e-18 -5.78552e-17 0.045 0.0397192 -0.00473093 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.0399297 0.00236963 0.045 -0.0399297 -0.00236963 0.045 -0.0393692 0.00707561 0.045 -0.0128108 0.0378931 0.045 0.0105435 0.0385854 0.045 0.0193117 0.0350294 0.045 0.0331762 0.0223459 0.045 0.0397192 0.00473093 0.045 0.0374968 0.0139281 0.045 0.04 -1.4766e-16 -6.16663e-18 0.0355863 0.0182652 -4.53474e-18 0.0374968 0.0139281 -5.0552e-18 0.0388809 0.00939544 -5.50469e-18 0.0397192 0.00473093 -5.87691e-18 0.0269993 0.0295133 -2.625e-18 0.0303004 0.0261129 -3.31105e-18 0.0331762 0.0223459 -3.95062e-18 0.0193117 0.0350294 -1.15249e-18 0.0233192 0.0324995 -1.9021e-18 0.00118533 0.0399824 1.89998e-18 0.00590586 0.0395616 1.15031e-18 0.0105435 0.0385854 3.84502e-19 0.0150331 0.0370676 -3.86709e-19 -0.00823914 0.0391423 3.30915e-18 -0.00355184 0.039842 2.62297e-18 -0.0252035 0.031061 5.50351e-18 -0.0213529 0.0338238 5.0538e-18 -0.0172026 0.0361119 4.53315e-18 -0.0128108 0.0378931 3.94887e-18 -0.0317942 0.024272 6.16592e-18 -0.0287003 0.027862 5.87596e-18 -0.0393692 0.00707561 6.43796e-18 -0.038256 0.0116823 6.50631e-18 -0.0366058 0.0161249 6.48333e-18 -0.0344417 0.0203412 6.36933e-18 -0.0393692 -0.00707561 5.70081e-18 -0.0399297 -0.00236963 6.03237e-18 -0.0399297 0.00236963 6.27924e-18 -0.0344417 -0.0203412 4.25015e-18 -0.0366058 -0.0161249 4.8034e-18 -0.038256 -0.0116823 5.28923e-18 -0.0287003 -0.027862 2.97325e-18 -0.0317942 -0.024272 3.63723e-18 -0.0128108 -0.0378931 1.1058e-21 -0.0172026 -0.0361119 7.70954e-19 -0.0213529 -0.0338238 1.52998e-18 -0.0252035 -0.031061 2.26753e-18 -0.00355184 -0.039842 -1.52783e-18 -0.00823914 -0.0391423 -7.68758e-19 0.0105435 -0.0385854 -3.63539e-18 0.00590586 -0.0395616 -2.97128e-18 0.00118533 -0.0399824 -2.26546e-18 0.0233192 -0.0324995 -5.28794e-18 0.0193117 -0.0350294 -4.80191e-18 0.0150331 -0.0370676 -4.24847e-18 0.0331762 -0.0223459 -6.27865e-18 0 -5.55112e-17 0 0.0303004 -0.0261129 -6.03154e-18 0.0269993 -0.0295133 -5.69975e-18 0.0397192 -0.00473093 -6.36979e-18 0.0388809 -0.00939544 -6.48352e-18 0.0374968 -0.0139281 -6.50625e-18 0.0355863 -0.0182652 -6.43764e-18 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 5.89513e-17 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -1.71218e-16 0.01 0.0496593 -1.70298e-16 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -1.67871e-16 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -1.64102e-16 0.00292893 0.045 -1.59248e-16 0.00133975 0.0446841 0.00532229 0.00133975 0.039923 0.0148293 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0366703 0.0216574 0.000340742 -0.038747 0.0228839 0.00133975 -0.0389744 0.0171683 0.000340742 -0.0407314 0.0124382 0.000340742 -0.0411816 0.0181406 0.00133975 -0.043038 0.0131426 0.00133975 -0.0442904 0.00796006 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0425134 0.00252295 0.000340742 -0.0425134 -0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0442904 -0.00796006 0.00133975 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0357684 -0.027306 0.00133975 -0.0268343 -0.0330707 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0227346 -0.0360124 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.00877226 -0.0416749 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00378166 -0.04242 0.000340742 -0.00399582 -0.0448222 0.00133975 0.0118614 -0.0434086 0.00133975 0.0169122 -0.041701 0.00133975 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.0353229 -0.0237918 0.000340742 0.0421839 -0.0156691 0.00133975 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0425882 -1.5364e-16 0.000340742 0.0397192 0.00473093 -4.14219e-18 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 -3.76997e-18 0.0413967 0.0100034 0.000340742 0.0374968 0.0139281 -3.32047e-18 0.0355863 0.0182652 -2.80002e-18 0.0378889 0.019447 0.000340742 0.0331762 0.0223459 -2.2159e-18 0.0353229 0.0237918 0.000340742 0.0303004 0.0261129 -1.57633e-18 0.0269993 0.0295133 -8.90275e-19 0.0287463 0.031423 0.000340742 0.0233192 0.0324995 -1.67372e-19 0.0193117 0.0350294 5.82232e-19 0.0150331 0.0370676 1.34801e-18 0.0105435 0.0385854 2.11922e-18 0.00590586 0.0395616 2.88504e-18 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 3.6347e-18 -0.00355184 0.039842 4.3577e-18 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 5.04387e-18 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 5.68359e-18 -0.0172026 0.0361119 6.26788e-18 -0.0213529 0.0338238 6.78853e-18 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 7.23823e-18 -0.0287003 0.027862 7.61068e-18 -0.0317942 0.024272 7.90065e-18 -0.0338514 0.0258425 0.000340742 -0.0344417 0.0203412 8.10405e-18 -0.0366058 0.0161249 8.21805e-18 -0.038256 0.0116823 8.24104e-18 -0.0393692 0.00707561 8.17269e-18 -0.0399297 0.00236963 8.01396e-18 -0.0399297 -0.00236963 7.76709e-18 -0.0393692 -0.00707561 7.43554e-18 -0.0419166 -0.00753344 0.000340742 -0.038256 -0.0116823 7.02396e-18 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 6.53813e-18 -0.0389744 -0.0171683 0.000340742 -0.0366703 -0.0216574 0.000340742 -0.0344417 -0.0203412 5.98487e-18 -0.0338514 -0.0258425 0.000340742 -0.0317942 -0.024272 5.37195e-18 -0.0305573 -0.0296648 0.000340742 -0.0287003 -0.027862 4.70797e-18 -0.0252035 -0.031061 4.00225e-18 -0.0213529 -0.0338238 3.2647e-18 -0.0183157 -0.0384485 0.000340742 -0.0172026 -0.0361119 2.50568e-18 -0.0128108 -0.0378931 1.73583e-18 -0.0136397 -0.0403449 0.000340742 -0.00823914 -0.0391423 9.65965e-19 -0.00355184 -0.039842 2.06893e-19 0.00118533 -0.0399824 -5.30732e-19 0.00590586 -0.0395616 -1.23656e-18 0.00126203 -0.0425695 0.000340742 0.006288 -0.0421214 0.000340742 0.0105435 -0.0385854 -1.90067e-18 0.0112257 -0.0410821 0.000340742 0.0150331 -0.0370676 -2.51375e-18 0.0160058 -0.039466 0.000340742 0.0193117 -0.0350294 -3.06719e-18 0.0205612 -0.037296 0.000340742 0.024828 -0.0346023 0.000340742 0.0233192 -0.0324995 -3.55322e-18 0.0269993 -0.0295133 -3.96502e-18 0.0303004 -0.0261129 -4.29681e-18 0.032261 -0.0278025 0.000340742 0.0331762 -0.0223459 -4.54393e-18 0.0355863 -0.0182652 -4.70291e-18 0.0378889 -0.019447 0.000340742 0.039923 -0.0148293 0.000340742 0.0374968 -0.0139281 -4.77152e-18 0.0388809 -0.00939544 -4.7488e-18 0.0413967 -0.0100034 0.000340742 0.0397192 -0.00473093 -4.63506e-18 0.0422893 -0.00503704 0.000340742 0.04 -1.4766e-16 -4.43191e-18 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.038256 0.0116823 0.045 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0252035 0.031061 0.045 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0425882 -1.55948e-16 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -1.7187e-16 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.0355863 -0.0182652 0.045 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0366058 -0.0161249 0.045 -0.038256 -0.0116823 0.045 -0.0407314 -0.0124382 0.0446593 -0.0393692 -0.00707561 0.045 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0213529 0.0338238 0.045 -0.0172026 0.0361119 0.045 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.00590586 0.0395616 0.045 0.0112257 0.0410821 0.0446593 0.0150331 0.0370676 0.045 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.0233192 0.0324995 0.045 0.0269993 0.0295133 0.045 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.0303004 0.0261129 0.045 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0355863 0.0182652 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0388809 0.00939544 0.045 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.50004e-16 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.61453e-16 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.66141e-16 0.0420711 0.0486603 -1.69694e-16 0.04 0.05 -1.7252e-16 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -3.0859e-18 0.998244 0.0592405 3.0859e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 210 210 0 0 0 0 0 0 1 210 210 1 209 209 1 0 0 2 209 209 2 1 1 2 1 1 3 209 209 3 207 207 3 1 1 4 207 207 4 2 2 4 2 2 5 207 207 5 206 206 5 2 2 6 206 206 6 3 3 6 3 3 7 206 206 7 204 204 7 3 3 8 204 204 8 4 4 8 4 4 9 204 204 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 202 202 15 9 9 16 202 202 16 719 719 16 719 719 17 202 202 17 11 11 17 719 719 18 11 11 18 718 718 18 718 718 19 11 11 19 200 200 19 718 718 20 200 200 20 12 12 20 12 12 21 200 200 21 198 198 21 12 12 22 198 198 22 13 13 22 13 13 23 198 198 23 197 197 23 13 13 24 197 197 24 702 702 24 702 702 25 197 197 25 14 14 25 702 702 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 195 195 29 16 16 30 195 195 30 695 695 30 695 695 31 195 195 31 194 194 31 695 695 32 194 194 32 693 693 32 693 693 33 194 194 33 193 193 33 693 693 34 193 193 34 680 680 34 680 680 35 193 193 35 192 192 35 680 680 36 192 192 36 678 678 36 678 678 37 192 192 37 191 191 37 678 678 38 191 191 38 18 18 38 18 18 39 191 191 39 190 190 39 18 18 40 190 190 40 679 679 40 679 679 41 190 190 41 188 188 41 679 679 42 188 188 42 20 20 42 20 20 43 188 188 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 657 657 50 657 657 51 26 26 51 27 27 51 657 657 52 27 27 52 28 28 52 28 28 53 27 27 53 185 185 53 28 28 54 185 185 54 542 542 54 542 542 55 185 185 55 29 29 55 542 542 56 29 29 56 656 656 56 656 656 57 29 29 57 30 30 57 656 656 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 180 180 67 39 39 68 180 180 68 40 40 68 40 40 69 180 180 69 41 41 69 40 40 70 41 41 70 543 543 70 543 543 71 41 41 71 42 42 71 543 543 72 42 42 72 43 43 72 43 43 73 42 42 73 177 177 73 43 43 74 177 177 74 44 44 74 44 44 75 177 177 75 176 176 75 44 44 76 176 176 76 619 619 76 619 619 77 176 176 77 175 175 77 619 619 78 175 175 78 45 45 78 45 45 79 175 175 79 46 46 79 45 45 80 46 46 80 607 607 80 607 607 81 46 46 81 174 174 81 607 607 82 174 174 82 547 547 82 547 547 83 174 174 83 248 248 83 547 547 84 248 248 84 606 606 84 606 606 85 248 248 85 247 247 85 606 606 86 247 247 86 47 47 86 47 47 87 247 247 87 246 246 87 47 47 88 246 246 88 48 48 88 48 48 89 246 246 89 244 244 89 48 48 90 244 244 90 49 49 90 49 49 91 244 244 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 536 536 94 536 536 95 51 51 95 52 52 95 536 536 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 853 853 98 853 853 99 54 54 99 240 240 99 853 853 100 240 240 100 56 56 100 56 56 101 240 240 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 840 840 108 840 840 109 62 62 109 239 239 109 840 840 110 239 239 110 63 63 110 63 63 111 239 239 111 64 64 111 63 63 112 64 64 112 834 834 112 834 834 113 64 64 113 65 65 113 834 834 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 833 833 116 833 833 117 67 67 117 237 237 117 833 833 118 237 237 118 819 819 118 819 819 119 237 237 119 236 236 119 819 819 120 236 236 120 68 68 120 68 68 121 236 236 121 235 235 121 68 68 122 235 235 122 69 69 122 69 69 123 235 235 123 232 232 123 69 69 124 232 232 124 70 70 124 70 70 125 232 232 125 231 231 125 70 70 126 231 231 126 71 71 126 71 71 127 231 231 127 230 230 127 71 71 128 230 230 128 538 538 128 538 538 129 230 230 129 72 72 129 538 538 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 802 802 134 802 802 135 76 76 135 77 77 135 802 802 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 226 226 139 80 80 140 226 226 140 81 81 140 81 81 141 226 226 141 82 82 141 81 81 142 82 82 142 539 539 142 539 539 143 82 82 143 83 83 143 539 539 144 83 83 144 781 781 144 781 781 145 83 83 145 224 224 145 781 781 146 224 224 146 84 84 146 84 84 147 224 224 147 85 85 147 84 84 148 85 85 148 780 780 148 780 780 149 85 85 149 86 86 149 780 780 150 86 86 150 87 87 150 87 87 151 86 86 151 221 221 151 87 87 152 221 221 152 88 88 152 88 88 153 221 221 153 220 220 153 88 88 154 220 220 154 89 89 154 89 89 155 220 220 155 219 219 155 89 89 156 219 219 156 768 768 156 768 768 157 219 219 157 90 90 157 768 768 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 216 216 161 93 93 162 216 216 162 94 94 162 94 94 163 216 216 163 215 215 163 94 94 164 215 215 164 750 750 164 750 750 165 215 215 165 95 95 165 750 750 166 95 95 166 96 96 166 96 96 167 95 95 167 213 213 167 96 96 168 213 213 168 540 540 168 540 540 169 213 213 169 212 212 169 540 540 170 212 212 170 749 749 170 749 749 171 212 212 171 97 97 171 749 749 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 739 739 176 739 739 177 101 101 177 102 102 177 739 739 178 102 102 178 103 103 178 103 103 179 102 102 179 210 210 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 615 615 182 613 613 182 105 105 182 105 105 183 613 613 183 549 549 183 105 105 184 549 549 184 106 106 184 638 638 185 631 631 185 105 105 185 105 105 186 631 631 186 624 624 186 105 105 187 624 624 187 615 615 187 650 650 188 107 107 188 105 105 188 105 105 189 107 107 189 554 554 189 105 105 190 554 554 190 638 638 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 651 651 192 105 105 193 651 651 193 650 650 193 559 559 194 558 558 194 105 105 194 105 105 195 558 558 195 673 673 195 105 105 196 673 673 196 109 109 196 110 110 197 686 686 197 105 105 197 105 105 198 686 686 198 685 685 198 105 105 199 685 685 199 559 559 199 714 714 200 711 711 200 105 105 200 105 105 201 711 711 201 713 713 201 105 105 202 713 713 202 110 110 202 728 728 203 726 726 203 105 105 203 105 105 204 726 726 204 725 725 204 105 105 205 725 725 205 714 714 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 728 728 208 754 754 209 577 577 209 105 105 209 105 105 210 577 577 210 576 576 210 105 105 211 576 576 211 113 113 211 583 583 212 766 766 212 105 105 212 105 105 213 766 766 213 767 767 213 105 105 214 767 767 214 754 754 214 114 114 215 775 775 215 105 105 215 105 105 216 775 775 216 774 774 216 105 105 217 774 774 217 583 583 217 594 594 218 791 791 218 105 105 218 105 105 219 791 791 219 790 790 219 105 105 220 790 790 220 114 114 220 810 810 221 115 115 221 105 105 221 105 105 222 115 115 222 808 808 222 105 105 223 808 808 223 594 594 223 825 825 224 824 824 224 105 105 224 105 105 225 824 824 225 116 116 225 105 105 226 116 116 226 810 810 226 848 848 227 117 117 227 105 105 227 105 105 228 117 117 228 839 839 228 105 105 229 839 839 229 825 825 229 118 118 230 859 859 230 105 105 230 105 105 231 859 859 231 119 119 231 105 105 232 119 119 232 848 848 232 120 120 233 170 170 233 167 167 233 120 120 234 167 167 234 124 124 234 121 121 235 122 122 235 167 167 235 167 167 236 122 122 236 123 123 236 167 167 237 123 123 237 124 124 237 125 125 238 126 126 238 167 167 238 167 167 239 126 126 239 127 127 239 167 167 240 127 127 240 121 121 240 133 133 241 128 128 241 167 167 241 167 167 242 128 128 242 129 129 242 167 167 243 129 129 243 125 125 243 130 130 244 131 131 244 167 167 244 167 167 245 131 131 245 132 132 245 167 167 246 132 132 246 133 133 246 139 139 247 134 134 247 167 167 247 167 167 248 134 134 248 135 135 248 167 167 249 135 135 249 130 130 249 136 136 250 137 137 250 167 167 250 167 167 251 137 137 251 138 138 251 167 167 252 138 138 252 139 139 252 145 145 253 140 140 253 167 167 253 167 167 254 140 140 254 141 141 254 167 167 255 141 141 255 136 136 255 142 142 256 143 143 256 167 167 256 167 167 257 143 143 257 144 144 257 167 167 258 144 144 258 145 145 258 146 146 259 147 147 259 167 167 259 167 167 260 147 147 260 148 148 260 167 167 261 148 148 261 142 142 261 149 149 262 150 150 262 167 167 262 167 167 263 150 150 263 151 151 263 167 167 264 151 151 264 146 146 264 157 157 265 152 152 265 167 167 265 167 167 266 152 152 266 153 153 266 167 167 267 153 153 267 149 149 267 154 154 268 155 155 268 167 167 268 167 167 269 155 155 269 156 156 269 167 167 270 156 156 270 157 157 270 162 162 271 158 158 271 167 167 271 167 167 272 158 158 272 159 159 272 167 167 273 159 159 273 154 154 273 165 165 274 160 160 274 167 167 274 167 167 275 160 160 275 161 161 275 167 167 276 161 161 276 162 162 276 169 169 277 163 163 277 167 167 277 167 167 278 163 163 278 164 164 278 167 167 279 164 164 279 165 165 279 173 173 280 166 166 280 167 167 280 167 167 281 166 166 281 168 168 281 167 167 282 168 168 282 169 169 282 170 170 283 171 171 283 167 167 283 167 167 284 171 171 284 172 172 284 167 167 285 172 172 285 173 173 285 248 248 286 297 297 286 299 299 286 248 248 287 174 174 287 297 297 287 297 297 288 174 174 288 46 46 288 297 297 289 46 46 289 295 295 289 295 295 290 46 46 290 175 175 290 295 295 291 175 175 291 293 293 291 293 293 292 175 175 292 176 176 292 293 293 293 176 176 293 178 178 293 178 178 294 176 176 294 177 177 294 177 177 295 42 42 295 178 178 295 178 178 296 42 42 296 41 41 296 178 178 297 41 41 297 179 179 297 41 41 298 180 180 298 179 179 298 179 179 299 180 180 299 38 38 299 179 179 300 38 38 300 181 181 300 181 181 301 38 38 301 37 37 301 181 181 302 37 37 302 182 182 302 37 37 303 33 33 303 182 182 303 182 182 304 33 33 304 32 32 304 182 182 305 32 32 305 289 289 305 32 32 306 30 30 306 289 289 306 289 289 307 30 30 307 29 29 307 289 289 308 29 29 308 183 183 308 183 183 309 29 29 309 185 185 309 183 183 310 185 185 310 184 184 310 184 184 311 185 185 311 27 27 311 184 184 312 27 27 312 186 186 312 186 186 313 27 27 313 26 26 313 26 26 314 24 24 314 186 186 314 186 186 315 24 24 315 22 22 315 186 186 316 22 22 316 187 187 316 22 22 317 19 19 317 187 187 317 187 187 318 19 19 318 188 188 318 187 187 319 188 188 319 189 189 319 189 189 320 188 188 320 190 190 320 189 189 321 190 190 321 283 283 321 283 283 322 190 190 322 191 191 322 283 283 323 191 191 323 282 282 323 282 282 324 191 191 324 192 192 324 192 192 325 193 193 325 282 282 325 282 282 326 193 193 326 194 194 326 282 282 327 194 194 327 281 281 327 281 281 328 194 194 328 195 195 328 281 281 329 195 195 329 196 196 329 196 196 330 195 195 330 17 17 330 196 196 331 17 17 331 279 279 331 279 279 332 17 17 332 14 14 332 14 14 333 197 197 333 279 279 333 279 279 334 197 197 334 198 198 334 279 279 335 198 198 335 199 199 335 198 198 336 200 200 336 199 199 336 199 199 337 200 200 337 11 11 337 199 199 338 11 11 338 201 201 338 201 201 339 11 11 339 202 202 339 201 201 340 202 202 340 276 276 340 276 276 341 202 202 341 10 10 341 276 276 342 10 10 342 203 203 342 203 203 343 10 10 343 7 7 343 7 7 344 5 5 344 203 203 344 203 203 345 5 5 345 204 204 345 203 203 346 204 204 346 205 205 346 205 205 347 204 204 347 206 206 347 205 205 348 206 206 348 208 208 348 206 206 349 207 207 349 208 208 349 208 208 350 207 207 350 209 209 350 208 208 351 209 209 351 211 211 351 209 209 352 210 210 352 211 211 352 211 211 353 210 210 353 102 102 353 211 211 354 102 102 354 271 271 354 102 102 355 101 101 355 271 271 355 271 271 356 101 101 356 100 100 356 271 271 357 100 100 357 269 269 357 269 269 358 100 100 358 97 97 358 269 269 359 97 97 359 268 268 359 268 268 360 97 97 360 212 212 360 268 268 361 212 212 361 214 214 361 214 214 362 212 212 362 213 213 362 213 213 363 95 95 363 214 214 363 214 214 364 95 95 364 215 215 364 214 214 365 215 215 365 266 266 365 266 266 366 215 215 366 216 216 366 266 266 367 216 216 367 217 217 367 216 216 368 92 92 368 217 217 368 217 217 369 92 92 369 90 90 369 217 217 370 90 90 370 218 218 370 90 90 371 219 219 371 218 218 371 218 218 372 219 219 372 220 220 372 218 218 373 220 220 373 264 264 373 220 220 374 221 221 374 264 264 374 264 264 375 221 221 375 86 86 375 264 264 376 86 86 376 222 222 376 222 222 377 86 86 377 85 85 377 222 222 378 85 85 378 223 223 378 223 223 379 85 85 379 224 224 379 223 223 380 224 224 380 225 225 380 225 225 381 224 224 381 83 83 381 83 83 382 82 82 382 225 225 382 225 225 383 82 82 383 226 226 383 225 225 384 226 226 384 227 227 384 227 227 385 226 226 385 79 79 385 227 227 386 79 79 386 228 228 386 79 79 387 77 77 387 228 228 387 228 228 388 77 77 388 76 76 388 228 228 389 76 76 389 229 229 389 76 76 390 74 74 390 229 229 390 229 229 391 74 74 391 72 72 391 229 229 392 72 72 392 259 259 392 72 72 393 230 230 393 259 259 393 259 259 394 230 230 394 231 231 394 259 259 395 231 231 395 258 258 395 258 258 396 231 231 396 232 232 396 258 258 397 232 232 397 233 233 397 233 233 398 232 232 398 235 235 398 233 233 399 235 235 399 234 234 399 234 234 400 235 235 400 236 236 400 236 236 401 237 237 401 234 234 401 234 234 402 237 237 402 67 67 402 234 234 403 67 67 403 255 255 403 255 255 404 67 67 404 65 65 404 255 255 405 65 65 405 238 238 405 65 65 406 64 64 406 238 238 406 238 238 407 64 64 407 239 239 407 238 238 408 239 239 408 252 252 408 239 239 409 62 62 409 252 252 409 252 252 410 62 62 410 60 60 410 252 252 411 60 60 411 251 251 411 60 60 412 59 59 412 251 251 412 251 251 413 59 59 413 55 55 413 251 251 414 55 55 414 250 250 414 250 250 415 55 55 415 240 240 415 250 250 416 240 240 416 241 241 416 241 241 417 240 240 417 54 54 417 241 241 418 54 54 418 249 249 418 249 249 419 54 54 419 52 52 419 52 52 420 51 51 420 249 249 420 249 249 421 51 51 421 242 242 421 249 249 422 242 242 422 243 243 422 243 243 423 242 242 423 244 244 423 243 243 424 244 244 424 245 245 424 245 245 425 244 244 425 246 246 425 245 245 426 246 246 426 299 299 426 299 299 427 246 246 427 247 247 427 299 299 428 247 247 428 248 248 428 243 243 429 301 301 429 249 249 429 249 249 430 301 301 430 304 304 430 249 249 431 304 304 431 241 241 431 241 241 432 304 304 432 306 306 432 241 241 433 306 306 433 250 250 433 250 250 434 306 306 434 307 307 434 250 250 435 307 307 435 251 251 435 251 251 436 307 307 436 253 253 436 251 251 437 253 253 437 252 252 437 252 252 438 253 253 438 310 310 438 252 252 439 310 310 439 238 238 439 238 238 440 310 310 440 254 254 440 238 238 441 254 254 441 255 255 441 255 255 442 254 254 442 312 312 442 255 255 443 312 312 443 234 234 443 234 234 444 312 312 444 256 256 444 234 234 445 256 256 445 233 233 445 233 233 446 256 256 446 257 257 446 233 233 447 257 257 447 258 258 447 258 258 448 257 257 448 260 260 448 258 258 449 260 260 449 259 259 449 259 259 450 260 260 450 317 317 450 259 259 451 317 317 451 229 229 451 229 229 452 317 317 452 261 261 452 229 229 453 261 261 453 228 228 453 228 228 454 261 261 454 262 262 454 228 228 455 262 262 455 227 227 455 227 227 456 262 262 456 263 263 456 227 227 457 263 263 457 225 225 457 225 225 458 263 263 458 321 321 458 225 225 459 321 321 459 223 223 459 223 223 460 321 321 460 322 322 460 223 223 461 322 322 461 222 222 461 222 222 462 322 322 462 323 323 462 222 222 463 323 323 463 264 264 463 264 264 464 323 323 464 265 265 464 264 264 465 265 265 465 218 218 465 218 218 466 265 265 466 326 326 466 218 218 467 326 326 467 217 217 467 217 217 468 326 326 468 327 327 468 217 217 469 327 327 469 266 266 469 266 266 470 327 327 470 267 267 470 266 266 471 267 267 471 214 214 471 214 214 472 267 267 472 328 328 472 214 214 473 328 328 473 268 268 473 268 268 474 328 328 474 270 270 474 268 268 475 270 270 475 269 269 475 269 269 476 270 270 476 330 330 476 269 269 477 330 330 477 271 271 477 271 271 478 330 330 478 272 272 478 271 271 479 272 272 479 211 211 479 211 211 480 272 272 480 332 332 480 211 211 481 332 332 481 208 208 481 208 208 482 332 332 482 273 273 482 208 208 483 273 273 483 205 205 483 205 205 484 273 273 484 274 274 484 205 205 485 274 274 485 203 203 485 203 203 486 274 274 486 275 275 486 203 203 487 275 275 487 276 276 487 276 276 488 275 275 488 277 277 488 276 276 489 277 277 489 201 201 489 201 201 490 277 277 490 278 278 490 201 201 491 278 278 491 199 199 491 199 199 492 278 278 492 337 337 492 199 199 493 337 337 493 279 279 493 279 279 494 337 337 494 338 338 494 279 279 495 338 338 495 196 196 495 196 196 496 338 338 496 280 280 496 196 196 497 280 280 497 281 281 497 281 281 498 280 280 498 339 339 498 281 281 499 339 339 499 282 282 499 282 282 500 339 339 500 284 284 500 282 282 501 284 284 501 283 283 501 283 283 502 284 284 502 285 285 502 283 283 503 285 285 503 189 189 503 189 189 504 285 285 504 286 286 504 189 189 505 286 286 505 187 187 505 187 187 506 286 286 506 287 287 506 187 187 507 287 287 507 186 186 507 186 186 508 287 287 508 288 288 508 186 186 509 288 288 509 184 184 509 184 184 510 288 288 510 345 345 510 184 184 511 345 345 511 183 183 511 183 183 512 345 345 512 290 290 512 183 183 513 290 290 513 289 289 513 289 289 514 290 290 514 348 348 514 289 289 515 348 348 515 182 182 515 182 182 516 348 348 516 291 291 516 182 182 517 291 291 517 181 181 517 181 181 518 291 291 518 350 350 518 181 181 519 350 350 519 179 179 519 179 179 520 350 350 520 292 292 520 179 179 521 292 292 521 178 178 521 178 178 522 292 292 522 351 351 522 178 178 523 351 351 523 293 293 523 293 293 524 351 351 524 294 294 524 293 293 525 294 294 525 295 295 525 295 295 526 294 294 526 296 296 526 295 295 527 296 296 527 297 297 527 297 297 528 296 296 528 298 298 528 297 297 529 298 298 529 299 299 529 299 299 530 298 298 530 354 354 530 299 299 531 354 354 531 245 245 531 245 245 532 354 354 532 300 300 532 245 245 533 300 300 533 243 243 533 243 243 534 300 300 534 301 301 534 300 300 535 302 302 535 301 301 535 301 301 536 302 302 536 303 303 536 301 301 537 303 303 537 304 304 537 304 304 538 303 303 538 358 358 538 304 304 539 358 358 539 306 306 539 306 306 540 358 358 540 305 305 540 306 306 541 305 305 541 307 307 541 307 307 542 305 305 542 308 308 542 307 307 543 308 308 543 253 253 543 253 253 544 308 308 544 309 309 544 253 253 545 309 309 545 310 310 545 310 310 546 309 309 546 361 361 546 310 310 547 361 361 547 254 254 547 254 254 548 361 361 548 311 311 548 254 254 549 311 311 549 312 312 549 312 312 550 311 311 550 313 313 550 312 312 551 313 313 551 256 256 551 256 256 552 313 313 552 314 314 552 256 256 553 314 314 553 257 257 553 257 257 554 314 314 554 315 315 554 257 257 555 315 315 555 260 260 555 260 260 556 315 315 556 316 316 556 260 260 557 316 316 557 317 317 557 317 317 558 316 316 558 318 318 558 317 317 559 318 318 559 261 261 559 261 261 560 318 318 560 319 319 560 261 261 561 319 319 561 262 262 561 262 262 562 319 319 562 320 320 562 262 262 563 320 320 563 263 263 563 263 263 564 320 320 564 365 365 564 263 263 565 365 365 565 321 321 565 321 321 566 365 365 566 366 366 566 321 321 567 366 366 567 322 322 567 322 322 568 366 366 568 367 367 568 322 322 569 367 367 569 323 323 569 323 323 570 367 367 570 324 324 570 323 323 571 324 324 571 265 265 571 265 265 572 324 324 572 325 325 572 265 265 573 325 325 573 326 326 573 326 326 574 325 325 574 372 372 574 326 326 575 372 372 575 327 327 575 327 327 576 372 372 576 373 373 576 327 327 577 373 373 577 267 267 577 267 267 578 373 373 578 374 374 578 267 267 579 374 374 579 328 328 579 328 328 580 374 374 580 329 329 580 328 328 581 329 329 581 270 270 581 270 270 582 329 329 582 375 375 582 270 270 583 375 375 583 330 330 583 330 330 584 375 375 584 331 331 584 330 330 585 331 331 585 272 272 585 272 272 586 331 331 586 377 377 586 272 272 587 377 377 587 332 332 587 332 332 588 377 377 588 333 333 588 332 332 589 333 333 589 273 273 589 273 273 590 333 333 590 334 334 590 273 273 591 334 334 591 274 274 591 274 274 592 334 334 592 379 379 592 274 274 593 379 379 593 275 275 593 275 275 594 379 379 594 335 335 594 275 275 595 335 335 595 277 277 595 277 277 596 335 335 596 380 380 596 277 277 597 380 380 597 278 278 597 278 278 598 380 380 598 336 336 598 278 278 599 336 336 599 337 337 599 337 337 600 336 336 600 383 383 600 337 337 601 383 383 601 338 338 601 338 338 602 383 383 602 384 384 602 338 338 603 384 384 603 280 280 603 280 280 604 384 384 604 385 385 604 280 280 605 385 385 605 339 339 605 339 339 606 385 385 606 386 386 606 339 339 607 386 386 607 284 284 607 284 284 608 386 386 608 340 340 608 284 284 609 340 340 609 285 285 609 285 285 610 340 340 610 341 341 610 285 285 611 341 341 611 286 286 611 286 286 612 341 341 612 342 342 612 286 286 613 342 342 613 287 287 613 287 287 614 342 342 614 343 343 614 287 287 615 343 343 615 288 288 615 288 288 616 343 343 616 344 344 616 288 288 617 344 344 617 345 345 617 345 345 618 344 344 618 346 346 618 345 345 619 346 346 619 290 290 619 290 290 620 346 346 620 347 347 620 290 290 621 347 347 621 348 348 621 348 348 622 347 347 622 389 389 622 348 348 623 389 389 623 291 291 623 291 291 624 389 389 624 349 349 624 291 291 625 349 349 625 350 350 625 350 350 626 349 349 626 391 391 626 350 350 627 391 391 627 292 292 627 292 292 628 391 391 628 394 394 628 292 292 629 394 394 629 351 351 629 351 351 630 394 394 630 352 352 630 351 351 631 352 352 631 294 294 631 294 294 632 352 352 632 353 353 632 294 294 633 353 353 633 296 296 633 296 296 634 353 353 634 396 396 634 296 296 635 396 396 635 298 298 635 298 298 636 396 396 636 397 397 636 298 298 637 397 397 637 354 354 637 354 354 638 397 397 638 398 398 638 354 354 639 398 398 639 300 300 639 300 300 640 398 398 640 302 302 640 398 398 641 400 400 641 302 302 641 302 302 642 400 400 642 355 355 642 302 302 643 355 355 643 303 303 643 303 303 644 355 355 644 356 356 644 303 303 645 356 356 645 358 358 645 358 358 646 356 356 646 357 357 646 358 358 647 357 357 647 305 305 647 305 305 648 357 357 648 359 359 648 305 305 649 359 359 649 308 308 649 308 308 650 359 359 650 360 360 650 308 308 651 360 360 651 309 309 651 309 309 652 360 360 652 403 403 652 309 309 653 403 403 653 361 361 653 361 361 654 403 403 654 405 405 654 361 361 655 405 405 655 311 311 655 311 311 656 405 405 656 407 407 656 311 311 657 407 407 657 313 313 657 313 313 658 407 407 658 362 362 658 313 313 659 362 362 659 314 314 659 314 314 660 362 362 660 409 409 660 314 314 661 409 409 661 315 315 661 315 315 662 409 409 662 411 411 662 315 315 663 411 411 663 316 316 663 316 316 664 411 411 664 363 363 664 316 316 665 363 363 665 318 318 665 318 318 666 363 363 666 413 413 666 318 318 667 413 413 667 319 319 667 319 319 668 413 413 668 364 364 668 319 319 669 364 364 669 320 320 669 320 320 670 364 364 670 414 414 670 320 320 671 414 414 671 365 365 671 365 365 672 414 414 672 417 417 672 365 365 673 417 417 673 366 366 673 366 366 674 417 417 674 368 368 674 366 366 675 368 368 675 367 367 675 367 367 676 368 368 676 369 369 676 367 367 677 369 369 677 324 324 677 324 324 678 369 369 678 370 370 678 324 324 679 370 370 679 325 325 679 325 325 680 370 370 680 371 371 680 325 325 681 371 371 681 372 372 681 372 372 682 371 371 682 421 421 682 372 372 683 421 421 683 373 373 683 373 373 684 421 421 684 424 424 684 373 373 685 424 424 685 374 374 685 374 374 686 424 424 686 425 425 686 374 374 687 425 425 687 329 329 687 329 329 688 425 425 688 426 426 688 329 329 689 426 426 689 375 375 689 375 375 690 426 426 690 376 376 690 375 375 691 376 376 691 331 331 691 331 331 692 376 376 692 430 430 692 331 331 693 430 430 693 377 377 693 377 377 694 430 430 694 431 431 694 377 377 695 431 431 695 333 333 695 333 333 696 431 431 696 378 378 696 333 333 697 378 378 697 334 334 697 334 334 698 378 378 698 432 432 698 334 334 699 432 432 699 379 379 699 379 379 700 432 432 700 433 433 700 379 379 701 433 433 701 335 335 701 335 335 702 433 433 702 434 434 702 335 335 703 434 434 703 380 380 703 380 380 704 434 434 704 381 381 704 380 380 705 381 381 705 336 336 705 336 336 706 381 381 706 436 436 706 336 336 707 436 436 707 383 383 707 383 383 708 436 436 708 382 382 708 383 383 709 382 382 709 384 384 709 384 384 710 382 382 710 438 438 710 384 384 711 438 438 711 385 385 711 385 385 712 438 438 712 440 440 712 385 385 713 440 440 713 386 386 713 386 386 714 440 440 714 441 441 714 386 386 715 441 441 715 340 340 715 340 340 716 441 441 716 443 443 716 340 340 717 443 443 717 341 341 717 341 341 718 443 443 718 387 387 718 341 341 719 387 387 719 342 342 719 342 342 720 387 387 720 388 388 720 342 342 721 388 388 721 343 343 721 343 343 722 388 388 722 444 444 722 343 343 723 444 444 723 344 344 723 344 344 724 444 444 724 445 445 724 344 344 725 445 445 725 346 346 725 346 346 726 445 445 726 446 446 726 346 346 727 446 446 727 347 347 727 347 347 728 446 446 728 447 447 728 347 347 729 447 447 729 389 389 729 389 389 730 447 447 730 390 390 730 389 389 731 390 390 731 349 349 731 349 349 732 390 390 732 392 392 732 349 349 733 392 392 733 391 391 733 391 391 734 392 392 734 393 393 734 391 391 735 393 393 735 394 394 735 394 394 736 393 393 736 395 395 736 394 394 737 395 395 737 352 352 737 352 352 738 395 395 738 450 450 738 352 352 739 450 450 739 353 353 739 353 353 740 450 450 740 451 451 740 353 353 741 451 451 741 396 396 741 396 396 742 451 451 742 452 452 742 396 396 743 452 452 743 397 397 743 397 397 744 452 452 744 399 399 744 397 397 745 399 399 745 398 398 745 398 398 746 399 399 746 400 400 746 399 399 747 455 455 747 400 400 747 400 400 748 455 455 748 457 457 748 400 400 749 457 457 749 355 355 749 355 355 750 457 457 750 401 401 750 355 355 751 401 401 751 356 356 751 356 356 752 401 401 752 460 460 752 356 356 753 460 460 753 357 357 753 357 357 754 460 460 754 462 462 754 357 357 755 462 462 755 359 359 755 359 359 756 462 462 756 402 402 756 359 359 757 402 402 757 360 360 757 360 360 758 402 402 758 465 465 758 360 360 759 465 465 759 403 403 759 403 403 760 465 465 760 404 404 760 403 403 761 404 404 761 405 405 761 405 405 762 404 404 762 406 406 762 405 405 763 406 406 763 407 407 763 407 407 764 406 406 764 408 408 764 407 407 765 408 408 765 362 362 765 362 362 766 408 408 766 471 471 766 362 362 767 471 471 767 409 409 767 409 409 768 471 471 768 410 410 768 409 409 769 410 410 769 411 411 769 411 411 770 410 410 770 412 412 770 411 411 771 412 412 771 363 363 771 363 363 772 412 412 772 474 474 772 363 363 773 474 474 773 413 413 773 413 413 774 474 474 774 476 476 774 413 413 775 476 476 775 364 364 775 364 364 776 476 476 776 415 415 776 364 364 777 415 415 777 414 414 777 414 414 778 415 415 778 416 416 778 414 414 779 416 416 779 417 417 779 417 417 780 416 416 780 480 480 780 417 417 781 480 480 781 368 368 781 368 368 782 480 480 782 418 418 782 368 368 783 418 418 783 369 369 783 369 369 784 418 418 784 419 419 784 369 369 785 419 419 785 370 370 785 370 370 786 419 419 786 484 484 786 370 370 787 484 484 787 371 371 787 371 371 788 484 484 788 420 420 788 371 371 789 420 420 789 421 421 789 421 421 790 420 420 790 422 422 790 421 421 791 422 422 791 424 424 791 424 424 792 422 422 792 423 423 792 424 424 793 423 423 793 425 425 793 425 425 794 423 423 794 427 427 794 425 425 795 427 427 795 426 426 795 426 426 796 427 427 796 428 428 796 426 426 797 428 428 797 376 376 797 376 376 798 428 428 798 429 429 798 376 376 799 429 429 799 430 430 799 430 430 800 429 429 800 492 492 800 430 430 801 492 492 801 431 431 801 431 431 802 492 492 802 494 494 802 431 431 803 494 494 803 378 378 803 378 378 804 494 494 804 496 496 804 378 378 805 496 496 805 432 432 805 432 432 806 496 496 806 497 497 806 432 432 807 497 497 807 433 433 807 433 433 808 497 497 808 499 499 808 433 433 809 499 499 809 434 434 809 434 434 810 499 499 810 501 501 810 434 434 811 501 501 811 381 381 811 381 381 812 501 501 812 435 435 812 381 381 813 435 435 813 436 436 813 436 436 814 435 435 814 437 437 814 436 436 815 437 437 815 382 382 815 382 382 816 437 437 816 505 505 816 382 382 817 505 505 817 438 438 817 438 438 818 505 505 818 508 508 818 438 438 819 508 508 819 440 440 819 440 440 820 508 508 820 439 439 820 440 440 821 439 439 821 441 441 821 441 441 822 439 439 822 442 442 822 441 441 823 442 442 823 443 443 823 443 443 824 442 442 824 513 513 824 443 443 825 513 513 825 387 387 825 387 387 826 513 513 826 514 514 826 387 387 827 514 514 827 388 388 827 388 388 828 514 514 828 516 516 828 388 388 829 516 516 829 444 444 829 444 444 830 516 516 830 518 518 830 444 444 831 518 518 831 445 445 831 445 445 832 518 518 832 520 520 832 445 445 833 520 520 833 446 446 833 446 446 834 520 520 834 521 521 834 446 446 835 521 521 835 447 447 835 447 447 836 521 521 836 448 448 836 447 447 837 448 448 837 390 390 837 390 390 838 448 448 838 525 525 838 390 390 839 525 525 839 392 392 839 392 392 840 525 525 840 449 449 840 392 392 841 449 449 841 393 393 841 393 393 842 449 449 842 528 528 842 393 393 843 528 528 843 395 395 843 395 395 844 528 528 844 529 529 844 395 395 845 529 529 845 450 450 845 450 450 846 529 529 846 532 532 846 450 450 847 532 532 847 451 451 847 451 451 848 532 532 848 534 534 848 451 451 849 534 534 849 452 452 849 452 452 850 534 534 850 453 453 850 452 452 851 453 453 851 399 399 851 399 399 852 453 453 852 455 455 852 453 453 853 454 454 853 455 455 853 455 455 854 454 454 854 456 456 854 455 455 855 456 456 855 457 457 855 457 457 856 456 456 856 458 458 856 457 457 857 458 458 857 401 401 857 401 401 858 458 458 858 459 459 858 401 401 859 459 459 859 460 460 859 460 460 860 459 459 860 461 461 860 460 460 861 461 461 861 462 462 861 462 462 862 461 461 862 463 463 862 462 462 863 463 463 863 402 402 863 402 402 864 463 463 864 464 464 864 402 402 865 464 464 865 465 465 865 465 465 866 464 464 866 466 466 866 465 465 867 466 466 867 404 404 867 404 404 868 466 466 868 467 467 868 404 404 869 467 467 869 406 406 869 406 406 870 467 467 870 468 468 870 406 406 871 468 468 871 408 408 871 408 408 872 468 468 872 469 469 872 408 408 873 469 469 873 471 471 873 471 471 874 469 469 874 470 470 874 471 471 875 470 470 875 410 410 875 410 410 876 470 470 876 472 472 876 410 410 877 472 472 877 412 412 877 412 412 878 472 472 878 473 473 878 412 412 879 473 473 879 474 474 879 474 474 880 473 473 880 475 475 880 474 474 881 475 475 881 476 476 881 476 476 882 475 475 882 477 477 882 476 476 883 477 477 883 415 415 883 415 415 884 477 477 884 478 478 884 415 415 885 478 478 885 416 416 885 416 416 886 478 478 886 479 479 886 416 416 887 479 479 887 480 480 887 480 480 888 479 479 888 481 481 888 480 480 889 481 481 889 418 418 889 418 418 890 481 481 890 482 482 890 418 418 891 482 482 891 419 419 891 419 419 892 482 482 892 483 483 892 419 419 893 483 483 893 484 484 893 484 484 894 483 483 894 485 485 894 484 484 895 485 485 895 420 420 895 420 420 896 485 485 896 486 486 896 420 420 897 486 486 897 422 422 897 422 422 898 486 486 898 487 487 898 422 422 899 487 487 899 423 423 899 423 423 900 487 487 900 488 488 900 423 423 901 488 488 901 427 427 901 427 427 902 488 488 902 489 489 902 427 427 903 489 489 903 428 428 903 428 428 904 489 489 904 490 490 904 428 428 905 490 490 905 429 429 905 429 429 906 490 490 906 491 491 906 429 429 907 491 491 907 492 492 907 492 492 908 491 491 908 493 493 908 492 492 909 493 493 909 494 494 909 494 494 910 493 493 910 495 495 910 494 494 911 495 495 911 496 496 911 496 496 912 495 495 912 498 498 912 496 496 913 498 498 913 497 497 913 497 497 914 498 498 914 500 500 914 497 497 915 500 500 915 499 499 915 499 499 916 500 500 916 502 502 916 499 499 917 502 502 917 501 501 917 501 501 918 502 502 918 503 503 918 501 501 919 503 503 919 435 435 919 435 435 920 503 503 920 504 504 920 435 435 921 504 504 921 437 437 921 437 437 922 504 504 922 506 506 922 437 437 923 506 506 923 505 505 923 505 505 924 506 506 924 507 507 924 505 505 925 507 507 925 508 508 925 508 508 926 507 507 926 509 509 926 508 508 927 509 509 927 439 439 927 439 439 928 509 509 928 510 510 928 439 439 929 510 510 929 442 442 929 442 442 930 510 510 930 511 511 930 442 442 931 511 511 931 513 513 931 513 513 932 511 511 932 512 512 932 513 513 933 512 512 933 514 514 933 514 514 934 512 512 934 515 515 934 514 514 935 515 515 935 516 516 935 516 516 936 515 515 936 517 517 936 516 516 937 517 517 937 518 518 937 518 518 938 517 517 938 519 519 938 518 518 939 519 519 939 520 520 939 520 520 940 519 519 940 522 522 940 520 520 941 522 522 941 521 521 941 521 521 942 522 522 942 523 523 942 521 521 943 523 523 943 448 448 943 448 448 944 523 523 944 524 524 944 448 448 945 524 524 945 525 525 945 525 525 946 524 524 946 526 526 946 525 525 947 526 526 947 449 449 947 449 449 948 526 526 948 527 527 948 449 449 949 527 527 949 528 528 949 528 528 950 527 527 950 530 530 950 528 528 951 530 530 951 529 529 951 529 529 952 530 530 952 531 531 952 529 529 953 531 531 953 532 532 953 532 532 954 531 531 954 533 533 954 532 532 955 533 533 955 534 534 955 534 534 956 533 533 956 535 535 956 534 534 957 535 535 957 453 453 957 453 453 958 535 535 958 454 454 958 536 536 959 53 53 959 862 862 959 853 853 960 56 56 960 852 852 960 58 58 961 61 61 961 842 842 961 834 834 962 66 66 962 537 537 962 819 819 963 68 68 963 821 821 963 69 69 964 70 70 964 815 815 964 538 538 965 73 73 965 804 804 965 78 78 966 80 80 966 795 795 966 539 539 967 781 781 967 784 784 967 88 88 968 89 89 968 589 589 968 93 93 969 94 94 969 763 763 969 96 96 970 540 540 970 748 748 970 739 739 971 103 103 971 541 541 971 2 2 972 3 3 972 731 731 972 6 6 973 8 8 973 571 571 973 12 12 974 13 13 974 708 708 974 702 702 975 15 15 975 696 696 975 16 16 976 695 695 976 694 694 976 680 680 977 678 678 977 564 564 977 21 21 978 23 23 978 662 662 978 25 25 979 657 657 979 663 663 979 28 28 980 542 542 980 655 655 980 31 31 981 34 34 981 557 557 981 40 40 982 543 543 982 544 544 982 43 43 983 44 44 983 545 545 983 619 619 984 45 45 984 546 546 984 547 547 985 606 606 985 608 608 985 106 106 986 549 549 986 548 548 986 548 548 987 549 549 987 614 614 987 548 548 988 614 614 988 603 603 988 603 603 989 614 614 989 550 550 989 603 603 990 550 550 990 551 551 990 551 551 991 550 550 991 610 610 991 551 551 992 610 610 992 552 552 992 552 552 993 610 610 993 553 553 993 552 552 994 553 553 994 605 605 994 605 605 995 553 553 995 608 608 995 554 554 996 107 107 996 639 639 996 639 639 997 107 107 997 649 649 997 639 639 998 649 649 998 640 640 998 640 640 999 649 649 999 647 647 999 640 640 1000 647 647 1000 641 641 1000 641 641 1001 647 647 1001 555 555 1001 641 641 1002 555 555 1002 556 556 1002 556 556 1003 555 555 1003 644 644 1003 556 556 1004 644 644 1004 642 642 1004 642 642 1005 644 644 1005 557 557 1005 558 558 1006 559 559 1006 561 561 1006 561 561 1007 559 559 1007 560 560 1007 561 561 1008 560 560 1008 562 562 1008 562 562 1009 560 560 1009 684 684 1009 562 562 1010 684 684 1010 675 675 1010 675 675 1011 684 684 1011 682 682 1011 675 675 1012 682 682 1012 676 676 1012 676 676 1013 682 682 1013 681 681 1013 676 676 1014 681 681 1014 563 563 1014 563 563 1015 681 681 1015 564 564 1015 714 714 1016 725 725 1016 565 565 1016 565 565 1017 725 725 1017 567 567 1017 565 565 1018 567 567 1018 566 566 1018 566 566 1019 567 567 1019 724 724 1019 566 566 1020 724 724 1020 569 569 1020 569 569 1021 724 724 1021 568 568 1021 569 569 1022 568 568 1022 570 570 1022 570 570 1023 568 568 1023 721 721 1023 570 570 1024 721 721 1024 717 717 1024 717 717 1025 721 721 1025 571 571 1025 112 112 1026 111 111 1026 738 738 1026 738 738 1027 111 111 1027 572 572 1027 738 738 1028 572 572 1028 573 573 1028 573 573 1029 572 572 1029 574 574 1029 573 573 1030 574 574 1030 735 735 1030 735 735 1031 574 574 1031 742 742 1031 735 735 1032 742 742 1032 733 733 1032 733 733 1033 742 742 1033 575 575 1033 733 733 1034 575 575 1034 732 732 1034 732 732 1035 575 575 1035 541 541 1035 576 576 1036 577 577 1036 744 744 1036 744 744 1037 577 577 1037 579 579 1037 744 744 1038 579 579 1038 578 578 1038 578 578 1039 579 579 1039 752 752 1039 578 578 1040 752 752 1040 580 580 1040 580 580 1041 752 752 1041 751 751 1041 580 580 1042 751 751 1042 581 581 1042 581 581 1043 751 751 1043 582 582 1043 581 581 1044 582 582 1044 747 747 1044 747 747 1045 582 582 1045 748 748 1045 766 766 1046 583 583 1046 584 584 1046 584 584 1047 583 583 1047 773 773 1047 584 584 1048 773 773 1048 586 586 1048 586 586 1049 773 773 1049 585 585 1049 586 586 1050 585 585 1050 587 587 1050 587 587 1051 585 585 1051 771 771 1051 587 587 1052 771 771 1052 764 764 1052 764 764 1053 771 771 1053 588 588 1053 764 764 1054 588 588 1054 762 762 1054 762 762 1055 588 588 1055 589 589 1055 775 775 1056 114 114 1056 777 777 1056 777 777 1057 114 114 1057 590 590 1057 777 777 1058 590 590 1058 591 591 1058 591 591 1059 590 590 1059 788 788 1059 591 591 1060 788 788 1060 592 592 1060 592 592 1061 788 788 1061 593 593 1061 592 592 1062 593 593 1062 778 778 1062 778 778 1063 593 593 1063 785 785 1063 778 778 1064 785 785 1064 782 782 1064 782 782 1065 785 785 1065 784 784 1065 594 594 1066 808 808 1066 595 595 1066 595 595 1067 808 808 1067 596 596 1067 595 595 1068 596 596 1068 800 800 1068 800 800 1069 596 596 1069 807 807 1069 800 800 1070 807 807 1070 799 799 1070 799 799 1071 807 807 1071 597 597 1071 799 799 1072 597 597 1072 797 797 1072 797 797 1073 597 597 1073 598 598 1073 797 797 1074 598 598 1074 796 796 1074 796 796 1075 598 598 1075 804 804 1075 839 839 1076 117 117 1076 600 600 1076 600 600 1077 117 117 1077 599 599 1077 600 600 1078 599 599 1078 601 601 1078 601 601 1079 599 599 1079 846 846 1079 601 601 1080 846 846 1080 838 838 1080 838 838 1081 846 846 1081 845 845 1081 838 838 1082 845 845 1082 836 836 1082 836 836 1083 845 845 1083 844 844 1083 836 836 1084 844 844 1084 835 835 1084 835 835 1085 844 844 1085 842 842 1085 866 866 1086 106 106 1086 602 602 1086 602 602 1087 106 106 1087 548 548 1087 602 602 1088 548 548 1088 869 869 1088 869 869 1089 548 548 1089 603 603 1089 869 869 1090 603 603 1090 871 871 1090 871 871 1091 603 603 1091 551 551 1091 871 871 1092 551 551 1092 872 872 1092 872 872 1093 551 551 1093 552 552 1093 872 872 1094 552 552 1094 604 604 1094 604 604 1095 552 552 1095 605 605 1095 604 604 1096 605 605 1096 873 873 1096 873 873 1097 605 605 1097 48 48 1097 608 608 1098 606 606 1098 605 605 1098 605 605 1099 606 606 1099 47 47 1099 605 605 1100 47 47 1100 48 48 1100 607 607 1101 547 547 1101 618 618 1101 618 618 1102 547 547 1102 608 608 1102 618 618 1103 608 608 1103 609 609 1103 609 609 1104 608 608 1104 553 553 1104 609 609 1105 553 553 1105 611 611 1105 611 611 1106 553 553 1106 610 610 1106 611 611 1107 610 610 1107 612 612 1107 612 612 1108 610 610 1108 550 550 1108 612 612 1109 550 550 1109 616 616 1109 616 616 1110 550 550 1110 614 614 1110 616 616 1111 614 614 1111 613 613 1111 613 613 1112 614 614 1112 549 549 1112 613 613 1113 615 615 1113 616 616 1113 616 616 1114 615 615 1114 617 617 1114 616 616 1115 617 617 1115 612 612 1115 612 612 1116 617 617 1116 622 622 1116 612 612 1117 622 622 1117 611 611 1117 611 611 1118 622 622 1118 621 621 1118 611 611 1119 621 621 1119 609 609 1119 609 609 1120 621 621 1120 620 620 1120 609 609 1121 620 620 1121 618 618 1121 618 618 1122 620 620 1122 546 546 1122 618 618 1123 546 546 1123 607 607 1123 607 607 1124 546 546 1124 45 45 1124 44 44 1125 619 619 1125 545 545 1125 545 545 1126 619 619 1126 546 546 1126 545 545 1127 546 546 1127 627 627 1127 627 627 1128 546 546 1128 620 620 1128 627 627 1129 620 620 1129 628 628 1129 628 628 1130 620 620 1130 621 621 1130 628 628 1131 621 621 1131 623 623 1131 623 623 1132 621 621 1132 622 622 1132 623 623 1133 622 622 1133 630 630 1133 630 630 1134 622 622 1134 617 617 1134 630 630 1135 617 617 1135 624 624 1135 624 624 1136 617 617 1136 615 615 1136 543 543 1137 43 43 1137 544 544 1137 544 544 1138 43 43 1138 545 545 1138 544 544 1139 545 545 1139 625 625 1139 625 625 1140 545 545 1140 627 627 1140 625 625 1141 627 627 1141 626 626 1141 626 626 1142 627 627 1142 628 628 1142 626 626 1143 628 628 1143 629 629 1143 629 629 1144 628 628 1144 623 623 1144 629 629 1145 623 623 1145 637 637 1145 637 637 1146 623 623 1146 630 630 1146 637 637 1147 630 630 1147 631 631 1147 631 631 1148 630 630 1148 624 624 1148 39 39 1149 40 40 1149 632 632 1149 632 632 1150 40 40 1150 544 544 1150 632 632 1151 544 544 1151 633 633 1151 633 633 1152 544 544 1152 625 625 1152 633 633 1153 625 625 1153 634 634 1153 634 634 1154 625 625 1154 626 626 1154 634 634 1155 626 626 1155 635 635 1155 635 635 1156 626 626 1156 629 629 1156 635 635 1157 629 629 1157 636 636 1157 636 636 1158 629 629 1158 637 637 1158 636 636 1159 637 637 1159 638 638 1159 638 638 1160 637 637 1160 631 631 1160 638 638 1161 554 554 1161 636 636 1161 636 636 1162 554 554 1162 639 639 1162 636 636 1163 639 639 1163 635 635 1163 635 635 1164 639 639 1164 640 640 1164 635 635 1165 640 640 1165 634 634 1165 634 634 1166 640 640 1166 641 641 1166 634 634 1167 641 641 1167 633 633 1167 633 633 1168 641 641 1168 556 556 1168 633 633 1169 556 556 1169 632 632 1169 632 632 1170 556 556 1170 642 642 1170 632 632 1171 642 642 1171 39 39 1171 39 39 1172 642 642 1172 36 36 1172 557 557 1173 34 34 1173 642 642 1173 642 642 1174 34 34 1174 35 35 1174 642 642 1175 35 35 1175 36 36 1175 656 656 1176 31 31 1176 654 654 1176 654 654 1177 31 31 1177 557 557 1177 654 654 1178 557 557 1178 643 643 1178 643 643 1179 557 557 1179 644 644 1179 643 643 1180 644 644 1180 645 645 1180 645 645 1181 644 644 1181 555 555 1181 645 645 1182 555 555 1182 646 646 1182 646 646 1183 555 555 1183 647 647 1183 646 646 1184 647 647 1184 648 648 1184 648 648 1185 647 647 1185 649 649 1185 648 648 1186 649 649 1186 650 650 1186 650 650 1187 649 649 1187 107 107 1187 650 650 1188 651 651 1188 648 648 1188 648 648 1189 651 651 1189 661 661 1189 648 648 1190 661 661 1190 646 646 1190 646 646 1191 661 661 1191 652 652 1191 646 646 1192 652 652 1192 645 645 1192 645 645 1193 652 652 1193 653 653 1193 645 645 1194 653 653 1194 643 643 1194 643 643 1195 653 653 1195 659 659 1195 643 643 1196 659 659 1196 654 654 1196 654 654 1197 659 659 1197 655 655 1197 654 654 1198 655 655 1198 656 656 1198 656 656 1199 655 655 1199 542 542 1199 657 657 1200 28 28 1200 663 663 1200 663 663 1201 28 28 1201 655 655 1201 663 663 1202 655 655 1202 658 658 1202 658 658 1203 655 655 1203 659 659 1203 658 658 1204 659 659 1204 666 666 1204 666 666 1205 659 659 1205 653 653 1205 666 666 1206 653 653 1206 660 660 1206 660 660 1207 653 653 1207 652 652 1207 660 660 1208 652 652 1208 668 668 1208 668 668 1209 652 652 1209 661 661 1209 668 668 1210 661 661 1210 108 108 1210 108 108 1211 661 661 1211 651 651 1211 23 23 1212 25 25 1212 662 662 1212 662 662 1213 25 25 1213 663 663 1213 662 662 1214 663 663 1214 664 664 1214 664 664 1215 663 663 1215 658 658 1215 664 664 1216 658 658 1216 665 665 1216 665 665 1217 658 658 1217 666 666 1217 665 665 1218 666 666 1218 672 672 1218 672 672 1219 666 666 1219 660 660 1219 672 672 1220 660 660 1220 667 667 1220 667 667 1221 660 660 1221 668 668 1221 667 667 1222 668 668 1222 109 109 1222 109 109 1223 668 668 1223 108 108 1223 20 20 1224 21 21 1224 669 669 1224 669 669 1225 21 21 1225 662 662 1225 669 669 1226 662 662 1226 677 677 1226 677 677 1227 662 662 1227 664 664 1227 677 677 1228 664 664 1228 670 670 1228 670 670 1229 664 664 1229 665 665 1229 670 670 1230 665 665 1230 671 671 1230 671 671 1231 665 665 1231 672 672 1231 671 671 1232 672 672 1232 674 674 1232 674 674 1233 672 672 1233 667 667 1233 674 674 1234 667 667 1234 673 673 1234 673 673 1235 667 667 1235 109 109 1235 673 673 1236 558 558 1236 674 674 1236 674 674 1237 558 558 1237 561 561 1237 674 674 1238 561 561 1238 671 671 1238 671 671 1239 561 561 1239 562 562 1239 671 671 1240 562 562 1240 670 670 1240 670 670 1241 562 562 1241 675 675 1241 670 670 1242 675 675 1242 677 677 1242 677 677 1243 675 675 1243 676 676 1243 677 677 1244 676 676 1244 669 669 1244 669 669 1245 676 676 1245 563 563 1245 669 669 1246 563 563 1246 20 20 1246 20 20 1247 563 563 1247 679 679 1247 564 564 1248 678 678 1248 563 563 1248 563 563 1249 678 678 1249 18 18 1249 563 563 1250 18 18 1250 679 679 1250 693 693 1251 680 680 1251 692 692 1251 692 692 1252 680 680 1252 564 564 1252 692 692 1253 564 564 1253 691 691 1253 691 691 1254 564 564 1254 681 681 1254 691 691 1255 681 681 1255 688 688 1255 688 688 1256 681 681 1256 682 682 1256 688 688 1257 682 682 1257 687 687 1257 687 687 1258 682 682 1258 684 684 1258 687 687 1259 684 684 1259 683 683 1259 683 683 1260 684 684 1260 560 560 1260 683 683 1261 560 560 1261 685 685 1261 685 685 1262 560 560 1262 559 559 1262 685 685 1263 686 686 1263 683 683 1263 683 683 1264 686 686 1264 701 701 1264 683 683 1265 701 701 1265 687 687 1265 687 687 1266 701 701 1266 700 700 1266 687 687 1267 700 700 1267 688 688 1267 688 688 1268 700 700 1268 689 689 1268 688 688 1269 689 689 1269 691 691 1269 691 691 1270 689 689 1270 690 690 1270 691 691 1271 690 690 1271 692 692 1271 692 692 1272 690 690 1272 694 694 1272 692 692 1273 694 694 1273 693 693 1273 693 693 1274 694 694 1274 695 695 1274 15 15 1275 16 16 1275 696 696 1275 696 696 1276 16 16 1276 694 694 1276 696 696 1277 694 694 1277 697 697 1277 697 697 1278 694 694 1278 690 690 1278 697 697 1279 690 690 1279 698 698 1279 698 698 1280 690 690 1280 689 689 1280 698 698 1281 689 689 1281 699 699 1281 699 699 1282 689 689 1282 700 700 1282 699 699 1283 700 700 1283 706 706 1283 706 706 1284 700 700 1284 701 701 1284 706 706 1285 701 701 1285 110 110 1285 110 110 1286 701 701 1286 686 686 1286 13 13 1287 702 702 1287 708 708 1287 708 708 1288 702 702 1288 696 696 1288 708 708 1289 696 696 1289 703 703 1289 703 703 1290 696 696 1290 697 697 1290 703 703 1291 697 697 1291 704 704 1291 704 704 1292 697 697 1292 698 698 1292 704 704 1293 698 698 1293 705 705 1293 705 705 1294 698 698 1294 699 699 1294 705 705 1295 699 699 1295 712 712 1295 712 712 1296 699 699 1296 706 706 1296 712 712 1297 706 706 1297 713 713 1297 713 713 1298 706 706 1298 110 110 1298 718 718 1299 12 12 1299 716 716 1299 716 716 1300 12 12 1300 708 708 1300 716 716 1301 708 708 1301 707 707 1301 707 707 1302 708 708 1302 703 703 1302 707 707 1303 703 703 1303 709 709 1303 709 709 1304 703 703 1304 704 704 1304 709 709 1305 704 704 1305 710 710 1305 710 710 1306 704 704 1306 705 705 1306 710 710 1307 705 705 1307 715 715 1307 715 715 1308 705 705 1308 712 712 1308 715 715 1309 712 712 1309 711 711 1309 711 711 1310 712 712 1310 713 713 1310 711 711 1311 714 714 1311 715 715 1311 715 715 1312 714 714 1312 565 565 1312 715 715 1313 565 565 1313 710 710 1313 710 710 1314 565 565 1314 566 566 1314 710 710 1315 566 566 1315 709 709 1315 709 709 1316 566 566 1316 569 569 1316 709 709 1317 569 569 1317 707 707 1317 707 707 1318 569 569 1318 570 570 1318 707 707 1319 570 570 1319 716 716 1319 716 716 1320 570 570 1320 717 717 1320 716 716 1321 717 717 1321 718 718 1321 718 718 1322 717 717 1322 719 719 1322 571 571 1323 8 8 1323 717 717 1323 717 717 1324 8 8 1324 9 9 1324 717 717 1325 9 9 1325 719 719 1325 4 4 1326 6 6 1326 720 720 1326 720 720 1327 6 6 1327 571 571 1327 720 720 1328 571 571 1328 730 730 1328 730 730 1329 571 571 1329 721 721 1329 730 730 1330 721 721 1330 722 722 1330 722 722 1331 721 721 1331 568 568 1331 722 722 1332 568 568 1332 723 723 1332 723 723 1333 568 568 1333 724 724 1333 723 723 1334 724 724 1334 727 727 1334 727 727 1335 724 724 1335 567 567 1335 727 727 1336 567 567 1336 726 726 1336 726 726 1337 567 567 1337 725 725 1337 726 726 1338 728 728 1338 727 727 1338 727 727 1339 728 728 1339 737 737 1339 727 727 1340 737 737 1340 723 723 1340 723 723 1341 737 737 1341 729 729 1341 723 723 1342 729 729 1342 722 722 1342 722 722 1343 729 729 1343 736 736 1343 722 722 1344 736 736 1344 730 730 1344 730 730 1345 736 736 1345 734 734 1345 730 730 1346 734 734 1346 720 720 1346 720 720 1347 734 734 1347 731 731 1347 720 720 1348 731 731 1348 4 4 1348 4 4 1349 731 731 1349 3 3 1349 1 1 1350 2 2 1350 732 732 1350 732 732 1351 2 2 1351 731 731 1351 732 732 1352 731 731 1352 733 733 1352 733 733 1353 731 731 1353 734 734 1353 733 733 1354 734 734 1354 735 735 1354 735 735 1355 734 734 1355 736 736 1355 735 735 1356 736 736 1356 573 573 1356 573 573 1357 736 736 1357 729 729 1357 573 573 1358 729 729 1358 738 738 1358 738 738 1359 729 729 1359 737 737 1359 738 738 1360 737 737 1360 112 112 1360 112 112 1361 737 737 1361 728 728 1361 541 541 1362 103 103 1362 732 732 1362 732 732 1363 103 103 1363 0 0 1363 732 732 1364 0 0 1364 1 1 1364 99 99 1365 739 739 1365 746 746 1365 746 746 1366 739 739 1366 541 541 1366 746 746 1367 541 541 1367 740 740 1367 740 740 1368 541 541 1368 575 575 1368 740 740 1369 575 575 1369 741 741 1369 741 741 1370 575 575 1370 742 742 1370 741 741 1371 742 742 1371 745 745 1371 745 745 1372 742 742 1372 574 574 1372 745 745 1373 574 574 1373 743 743 1373 743 743 1374 574 574 1374 572 572 1374 743 743 1375 572 572 1375 113 113 1375 113 113 1376 572 572 1376 111 111 1376 113 113 1377 576 576 1377 743 743 1377 743 743 1378 576 576 1378 744 744 1378 743 743 1379 744 744 1379 745 745 1379 745 745 1380 744 744 1380 578 578 1380 745 745 1381 578 578 1381 741 741 1381 741 741 1382 578 578 1382 580 580 1382 741 741 1383 580 580 1383 740 740 1383 740 740 1384 580 580 1384 581 581 1384 740 740 1385 581 581 1385 746 746 1385 746 746 1386 581 581 1386 747 747 1386 746 746 1387 747 747 1387 99 99 1387 99 99 1388 747 747 1388 98 98 1388 748 748 1389 540 540 1389 747 747 1389 747 747 1390 540 540 1390 749 749 1390 747 747 1391 749 749 1391 98 98 1391 750 750 1392 96 96 1392 761 761 1392 761 761 1393 96 96 1393 748 748 1393 761 761 1394 748 748 1394 760 760 1394 760 760 1395 748 748 1395 582 582 1395 760 760 1396 582 582 1396 758 758 1396 758 758 1397 582 582 1397 751 751 1397 758 758 1398 751 751 1398 755 755 1398 755 755 1399 751 751 1399 752 752 1399 755 755 1400 752 752 1400 753 753 1400 753 753 1401 752 752 1401 579 579 1401 753 753 1402 579 579 1402 754 754 1402 754 754 1403 579 579 1403 577 577 1403 754 754 1404 767 767 1404 753 753 1404 753 753 1405 767 767 1405 756 756 1405 753 753 1406 756 756 1406 755 755 1406 755 755 1407 756 756 1407 757 757 1407 755 755 1408 757 757 1408 758 758 1408 758 758 1409 757 757 1409 759 759 1409 758 758 1410 759 759 1410 760 760 1410 760 760 1411 759 759 1411 765 765 1411 760 760 1412 765 765 1412 761 761 1412 761 761 1413 765 765 1413 763 763 1413 761 761 1414 763 763 1414 750 750 1414 750 750 1415 763 763 1415 94 94 1415 91 91 1416 93 93 1416 762 762 1416 762 762 1417 93 93 1417 763 763 1417 762 762 1418 763 763 1418 764 764 1418 764 764 1419 763 763 1419 765 765 1419 764 764 1420 765 765 1420 587 587 1420 587 587 1421 765 765 1421 759 759 1421 587 587 1422 759 759 1422 586 586 1422 586 586 1423 759 759 1423 757 757 1423 586 586 1424 757 757 1424 584 584 1424 584 584 1425 757 757 1425 756 756 1425 584 584 1426 756 756 1426 766 766 1426 766 766 1427 756 756 1427 767 767 1427 589 589 1428 89 89 1428 762 762 1428 762 762 1429 89 89 1429 768 768 1429 762 762 1430 768 768 1430 91 91 1430 87 87 1431 88 88 1431 779 779 1431 779 779 1432 88 88 1432 589 589 1432 779 779 1433 589 589 1433 769 769 1433 769 769 1434 589 589 1434 588 588 1434 769 769 1435 588 588 1435 770 770 1435 770 770 1436 588 588 1436 771 771 1436 770 770 1437 771 771 1437 772 772 1437 772 772 1438 771 771 1438 585 585 1438 772 772 1439 585 585 1439 776 776 1439 776 776 1440 585 585 1440 773 773 1440 776 776 1441 773 773 1441 774 774 1441 774 774 1442 773 773 1442 583 583 1442 774 774 1443 775 775 1443 776 776 1443 776 776 1444 775 775 1444 777 777 1444 776 776 1445 777 777 1445 772 772 1445 772 772 1446 777 777 1446 591 591 1446 772 772 1447 591 591 1447 770 770 1447 770 770 1448 591 591 1448 592 592 1448 770 770 1449 592 592 1449 769 769 1449 769 769 1450 592 592 1450 778 778 1450 769 769 1451 778 778 1451 779 779 1451 779 779 1452 778 778 1452 782 782 1452 779 779 1453 782 782 1453 87 87 1453 87 87 1454 782 782 1454 780 780 1454 784 784 1455 781 781 1455 782 782 1455 782 782 1456 781 781 1456 84 84 1456 782 782 1457 84 84 1457 780 780 1457 81 81 1458 539 539 1458 794 794 1458 794 794 1459 539 539 1459 784 784 1459 794 794 1460 784 784 1460 783 783 1460 783 783 1461 784 784 1461 785 785 1461 783 783 1462 785 785 1462 786 786 1462 786 786 1463 785 785 1463 593 593 1463 786 786 1464 593 593 1464 787 787 1464 787 787 1465 593 593 1465 788 788 1465 787 787 1466 788 788 1466 789 789 1466 789 789 1467 788 788 1467 590 590 1467 789 789 1468 590 590 1468 790 790 1468 790 790 1469 590 590 1469 114 114 1469 790 790 1470 791 791 1470 789 789 1470 789 789 1471 791 791 1471 801 801 1471 789 789 1472 801 801 1472 787 787 1472 787 787 1473 801 801 1473 792 792 1473 787 787 1474 792 792 1474 786 786 1474 786 786 1475 792 792 1475 793 793 1475 786 786 1476 793 793 1476 783 783 1476 783 783 1477 793 793 1477 798 798 1477 783 783 1478 798 798 1478 794 794 1478 794 794 1479 798 798 1479 795 795 1479 794 794 1480 795 795 1480 81 81 1480 81 81 1481 795 795 1481 80 80 1481 802 802 1482 78 78 1482 796 796 1482 796 796 1483 78 78 1483 795 795 1483 796 796 1484 795 795 1484 797 797 1484 797 797 1485 795 795 1485 798 798 1485 797 797 1486 798 798 1486 799 799 1486 799 799 1487 798 798 1487 793 793 1487 799 799 1488 793 793 1488 800 800 1488 800 800 1489 793 793 1489 792 792 1489 800 800 1490 792 792 1490 595 595 1490 595 595 1491 792 792 1491 801 801 1491 595 595 1492 801 801 1492 594 594 1492 594 594 1493 801 801 1493 791 791 1493 804 804 1494 73 73 1494 796 796 1494 796 796 1495 73 73 1495 75 75 1495 796 796 1496 75 75 1496 802 802 1496 71 71 1497 538 538 1497 803 803 1497 803 803 1498 538 538 1498 804 804 1498 803 803 1499 804 804 1499 813 813 1499 813 813 1500 804 804 1500 598 598 1500 813 813 1501 598 598 1501 805 805 1501 805 805 1502 598 598 1502 597 597 1502 805 805 1503 597 597 1503 806 806 1503 806 806 1504 597 597 1504 807 807 1504 806 806 1505 807 807 1505 809 809 1505 809 809 1506 807 807 1506 596 596 1506 809 809 1507 596 596 1507 115 115 1507 115 115 1508 596 596 1508 808 808 1508 115 115 1509 810 810 1509 809 809 1509 809 809 1510 810 810 1510 818 818 1510 809 809 1511 818 818 1511 806 806 1511 806 806 1512 818 818 1512 811 811 1512 806 806 1513 811 811 1513 805 805 1513 805 805 1514 811 811 1514 812 812 1514 805 805 1515 812 812 1515 813 813 1515 813 813 1516 812 812 1516 814 814 1516 813 813 1517 814 814 1517 803 803 1517 803 803 1518 814 814 1518 815 815 1518 803 803 1519 815 815 1519 71 71 1519 71 71 1520 815 815 1520 70 70 1520 68 68 1521 69 69 1521 821 821 1521 821 821 1522 69 69 1522 815 815 1522 821 821 1523 815 815 1523 822 822 1523 822 822 1524 815 815 1524 814 814 1524 822 822 1525 814 814 1525 816 816 1525 816 816 1526 814 814 1526 812 812 1526 816 816 1527 812 812 1527 817 817 1527 817 817 1528 812 812 1528 811 811 1528 817 817 1529 811 811 1529 823 823 1529 823 823 1530 811 811 1530 818 818 1530 823 823 1531 818 818 1531 116 116 1531 116 116 1532 818 818 1532 810 810 1532 833 833 1533 819 819 1533 820 820 1533 820 820 1534 819 819 1534 821 821 1534 820 820 1535 821 821 1535 832 832 1535 832 832 1536 821 821 1536 822 822 1536 832 832 1537 822 822 1537 830 830 1537 830 830 1538 822 822 1538 816 816 1538 830 830 1539 816 816 1539 827 827 1539 827 827 1540 816 816 1540 817 817 1540 827 827 1541 817 817 1541 826 826 1541 826 826 1542 817 817 1542 823 823 1542 826 826 1543 823 823 1543 824 824 1543 824 824 1544 823 823 1544 116 116 1544 824 824 1545 825 825 1545 826 826 1545 826 826 1546 825 825 1546 828 828 1546 826 826 1547 828 828 1547 827 827 1547 827 827 1548 828 828 1548 829 829 1548 827 827 1549 829 829 1549 830 830 1549 830 830 1550 829 829 1550 831 831 1550 830 830 1551 831 831 1551 832 832 1551 832 832 1552 831 831 1552 837 837 1552 832 832 1553 837 837 1553 820 820 1553 820 820 1554 837 837 1554 537 537 1554 820 820 1555 537 537 1555 833 833 1555 833 833 1556 537 537 1556 66 66 1556 63 63 1557 834 834 1557 835 835 1557 835 835 1558 834 834 1558 537 537 1558 835 835 1559 537 537 1559 836 836 1559 836 836 1560 537 537 1560 837 837 1560 836 836 1561 837 837 1561 838 838 1561 838 838 1562 837 837 1562 831 831 1562 838 838 1563 831 831 1563 601 601 1563 601 601 1564 831 831 1564 829 829 1564 601 601 1565 829 829 1565 600 600 1565 600 600 1566 829 829 1566 828 828 1566 600 600 1567 828 828 1567 839 839 1567 839 839 1568 828 828 1568 825 825 1568 842 842 1569 61 61 1569 835 835 1569 835 835 1570 61 61 1570 840 840 1570 835 835 1571 840 840 1571 63 63 1571 57 57 1572 58 58 1572 841 841 1572 841 841 1573 58 58 1573 842 842 1573 841 841 1574 842 842 1574 843 843 1574 843 843 1575 842 842 1575 844 844 1575 843 843 1576 844 844 1576 851 851 1576 851 851 1577 844 844 1577 845 845 1577 851 851 1578 845 845 1578 850 850 1578 850 850 1579 845 845 1579 846 846 1579 850 850 1580 846 846 1580 847 847 1580 847 847 1581 846 846 1581 599 599 1581 847 847 1582 599 599 1582 848 848 1582 848 848 1583 599 599 1583 117 117 1583 848 848 1584 119 119 1584 847 847 1584 847 847 1585 119 119 1585 849 849 1585 847 847 1586 849 849 1586 850 850 1586 850 850 1587 849 849 1587 857 857 1587 850 850 1588 857 857 1588 851 851 1588 851 851 1589 857 857 1589 856 856 1589 851 851 1590 856 856 1590 843 843 1590 843 843 1591 856 856 1591 855 855 1591 843 843 1592 855 855 1592 841 841 1592 841 841 1593 855 855 1593 852 852 1593 841 841 1594 852 852 1594 57 57 1594 57 57 1595 852 852 1595 56 56 1595 53 53 1596 853 853 1596 862 862 1596 862 862 1597 853 853 1597 852 852 1597 862 862 1598 852 852 1598 854 854 1598 854 854 1599 852 852 1599 855 855 1599 854 854 1600 855 855 1600 864 864 1600 864 864 1601 855 855 1601 856 856 1601 864 864 1602 856 856 1602 865 865 1602 865 865 1603 856 856 1603 857 857 1603 865 865 1604 857 857 1604 858 858 1604 858 858 1605 857 857 1605 849 849 1605 858 858 1606 849 849 1606 859 859 1606 859 859 1607 849 849 1607 119 119 1607 860 860 1608 536 536 1608 861 861 1608 861 861 1609 536 536 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 854 854 1611 870 870 1612 854 854 1612 863 863 1612 863 863 1613 854 854 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 858 858 1617 867 867 1618 858 858 1618 118 118 1618 118 118 1619 858 858 1619 859 859 1619 118 118 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 602 602 1621 867 867 1622 602 602 1622 868 868 1622 868 868 1623 602 602 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 604 604 1629 861 861 1630 604 604 1630 860 860 1630 860 860 1631 604 604 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.STL new file mode 100755 index 0000000..79e16a1 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.dae new file mode 100755 index 0000000..04b7d31 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:36 2016 GMT + Tue Jan 19 20:36:36 2016 GMT + Y_UP + + + + + + -0.0499122 -2.69381e-18 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 3.42942e-18 0.035 0.05 3.67803e-19 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.12663e-17 0.045 0.0355863 -0.0182652 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.038256 -0.0116823 0.045 -0.038256 0.0116823 0.045 -0.0252035 0.031061 0.045 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.0128108 0.0378931 0.045 -0.0172026 0.0361119 0.045 0 -1.46917e-18 0.045 -0.0213529 0.0338238 0.045 0.0269993 0.0295133 0.045 0.0233192 0.0324995 0.045 0.0355863 0.0182652 0.045 0.0303004 0.0261129 0.045 0.0397192 0.00473093 0.045 0.0388809 0.00939544 0.045 0.04 -6.98008e-18 1.38778e-17 0.0355863 0.0182652 1.16409e-17 0.0374968 0.0139281 1.21721e-17 0.0388809 0.00939544 1.27272e-17 0.0397192 0.00473093 1.32984e-17 0.0303004 0.0261129 1.06799e-17 0.0331762 0.0223459 1.11412e-17 0.0193117 0.0350294 9.58792e-18 0.0233192 0.0324995 9.89775e-18 0.0269993 0.0295133 1.02634e-17 0.00590586 0.0395616 9.03289e-18 0.0105435 0.0385854 9.15244e-18 0.0150331 0.0370676 9.33832e-18 -0.0128108 0.0378931 9.23723e-18 -0.00823914 0.0391423 9.08424e-18 -0.00355184 0.039842 8.99855e-18 0.00118533 0.0399824 8.98135e-18 -0.0213529 0.0338238 9.73556e-18 -0.0172026 0.0361119 9.45535e-18 -0.0317942 0.024272 1.09053e-17 -0.0287003 0.027862 1.04657e-17 -0.0252035 0.031061 1.00739e-17 -0.0393692 0.00707561 1.30113e-17 -0.038256 0.0116823 1.24471e-17 -0.0366058 0.0161249 1.19031e-17 -0.0344417 0.0203412 1.13867e-17 -0.0399297 -0.00236963 1.4168e-17 -0.0399297 0.00236963 1.35876e-17 -0.0344417 -0.0203412 1.63689e-17 -0.0366058 -0.0161249 1.58525e-17 -0.038256 -0.0116823 1.53085e-17 -0.0393692 -0.00707561 1.47443e-17 -0.0252035 -0.031061 1.76817e-17 -0.0287003 -0.027862 1.72899e-17 0 -6.98008e-18 1.38778e-17 -0.0317942 -0.024272 1.68503e-17 -0.0172026 -0.0361119 1.83002e-17 -0.0213529 -0.0338238 1.802e-17 0.00118533 -0.0399824 1.87742e-17 -0.00355184 -0.039842 1.8757e-17 -0.00823914 -0.0391423 1.86713e-17 -0.0128108 -0.0378931 1.85183e-17 0.0105435 -0.0385854 1.86031e-17 0.00590586 -0.0395616 1.87227e-17 0.0269993 -0.0295133 1.74921e-17 0.0233192 -0.0324995 1.78578e-17 0.0193117 -0.0350294 1.81677e-17 0.0150331 -0.0370676 1.84173e-17 0.0331762 -0.0223459 1.66144e-17 0.0303004 -0.0261129 1.70757e-17 0.0397192 -0.00473093 1.44572e-17 0.0388809 -0.00939544 1.50284e-17 0.0374968 -0.0139281 1.55835e-17 0.0355863 -0.0182652 1.61146e-17 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 -5.75543e-18 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -5.75543e-18 0.01 0.0496593 -6.07239e-18 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -6.36775e-18 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -6.62139e-18 0.00292893 0.045 -6.81601e-18 0.00133975 0.0446841 0.00532229 0.00133975 0.0413967 0.0100034 0.000340742 0.0353229 0.0237918 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0338514 0.0258425 0.000340742 -0.038747 0.0228839 0.00133975 -0.0366703 0.0216574 0.000340742 -0.0411816 0.0181406 0.00133975 -0.0407314 0.0124382 0.000340742 -0.043038 0.0131426 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0442904 0.00796006 0.00133975 -0.0425134 0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0419166 -0.00753344 0.000340742 -0.0442904 -0.00796006 0.00133975 -0.0389744 -0.0171683 0.000340742 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0366703 -0.0216574 0.000340742 -0.0357684 -0.027306 0.00133975 -0.0305573 -0.0296648 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0183157 -0.0384485 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.0136397 -0.0403449 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00399582 -0.0448222 0.00133975 0.006288 -0.0421214 0.000340742 0.0118614 -0.0434086 0.00133975 0.0112257 -0.0410821 0.000340742 0.0169122 -0.041701 0.00133975 0.024828 -0.0346023 0.000340742 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.032261 -0.0278025 0.000340742 0.0353229 -0.0237918 0.000340742 0.039923 -0.0148293 0.000340742 0.0421839 -0.0156691 0.00133975 0.0413967 -0.0100034 0.000340742 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0397192 0.00473093 1.50331e-17 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 1.44619e-17 0.0374968 0.0139281 1.39068e-17 0.0355863 0.0182652 1.33757e-17 0.039923 0.0148293 0.000340742 0.0331762 0.0223459 1.28759e-17 0.0378889 0.019447 0.000340742 0.0303004 0.0261129 1.24146e-17 0.0269993 0.0295133 1.19982e-17 0.0233192 0.0324995 1.16325e-17 0.0287463 0.031423 0.000340742 0.0193117 0.0350294 1.13226e-17 0.0150331 0.0370676 1.1073e-17 0.0105435 0.0385854 1.08872e-17 0.00590586 0.0395616 1.07676e-17 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 1.07161e-17 -0.00355184 0.039842 1.07333e-17 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 1.0819e-17 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 1.0972e-17 -0.0172026 0.0361119 1.11901e-17 -0.0213529 0.0338238 1.14703e-17 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 1.18086e-17 -0.0287003 0.027862 1.22004e-17 -0.0317942 0.024272 1.264e-17 -0.0344417 0.0203412 1.31214e-17 -0.0366058 0.0161249 1.36378e-17 -0.0389744 0.0171683 0.000340742 -0.038256 0.0116823 1.41818e-17 -0.0393692 0.00707561 1.4746e-17 -0.0399297 0.00236963 1.53223e-17 -0.0399297 -0.00236963 1.59027e-17 -0.0393692 -0.00707561 1.6479e-17 -0.0425134 -0.00252295 0.000340742 -0.038256 -0.0116823 1.70432e-17 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 1.75872e-17 -0.0344417 -0.0203412 1.81036e-17 -0.0317942 -0.024272 1.8585e-17 -0.0338514 -0.0258425 0.000340742 -0.0287003 -0.027862 1.90246e-17 -0.0252035 -0.031061 1.94164e-17 -0.0268343 -0.0330707 0.000340742 -0.0227346 -0.0360124 0.000340742 -0.0213529 -0.0338238 1.97547e-17 -0.0172026 -0.0361119 2.00349e-17 -0.0128108 -0.0378931 2.02531e-17 -0.00823914 -0.0391423 2.04061e-17 -0.00877226 -0.0416749 0.000340742 -0.00355184 -0.039842 2.04917e-17 -0.00378166 -0.04242 0.000340742 0.00126203 -0.0425695 0.000340742 0.00118533 -0.0399824 2.05089e-17 0.00590586 -0.0395616 2.04574e-17 0.0105435 -0.0385854 2.03379e-17 0.0160058 -0.039466 0.000340742 0.0150331 -0.0370676 2.0152e-17 0.0193117 -0.0350294 1.99024e-17 0.0205612 -0.037296 0.000340742 0.0233192 -0.0324995 1.95925e-17 0.0269993 -0.0295133 1.92269e-17 0.0303004 -0.0261129 1.88104e-17 0.0331762 -0.0223459 1.83491e-17 0.0355863 -0.0182652 1.78493e-17 0.0374968 -0.0139281 1.73182e-17 0.0378889 -0.019447 0.000340742 0.0388809 -0.00939544 1.67631e-17 0.0397192 -0.00473093 1.61919e-17 0.0422893 -0.00503704 0.000340742 0.0425882 -6.93835e-18 0.000340742 0.04 -6.98008e-18 1.56125e-17 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366058 -0.0161249 0.045 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0399297 0.00236963 0.045 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.00590586 0.0395616 0.045 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0331762 0.0223459 0.045 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0397192 -0.00473093 0.045 0.0425882 -1.5109e-18 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -2.37685e-18 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0407314 -0.0124382 0.0446593 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0399297 -0.00236963 0.045 -0.0393692 -0.00707561 0.045 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0393692 0.00707561 0.045 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.0105435 0.0385854 0.045 0.0150331 0.0370676 0.045 0.0112257 0.0410821 0.0446593 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0193117 0.0350294 0.045 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0374968 0.0139281 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.46917e-18 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.63324e-18 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.82786e-18 0.0420711 0.0486603 -2.08149e-18 0.04 0.05 -2.69381e-18 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 7.25487e-18 0.998244 0.0592405 -7.25487e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -2.13434e-23 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 6.40303e-24 -1.22465e-16 -1 5.12242e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 1.23792e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.10986e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.56121e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 2.77465e-23 -1.22465e-16 -1 1.04049e-23 -1.22465e-16 -1 1.28061e-23 -1.22465e-16 -1 5.54929e-23 -1.22465e-16 -1 1.70747e-23 -1.22465e-16 -1 -5.54929e-23 -1.22464e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 1.66479e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 -3.52167e-23 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.23792e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.04897e-22 -1.22465e-16 -1 2.04897e-22 -1.22465e-16 -1 7.25677e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 1.02448e-22 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 8.53737e-24 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 215 215 0 0 0 0 0 0 1 215 215 1 214 214 1 0 0 2 214 214 2 1 1 2 1 1 3 214 214 3 212 212 3 1 1 4 212 212 4 2 2 4 2 2 5 212 212 5 211 211 5 2 2 6 211 211 6 3 3 6 3 3 7 211 211 7 209 209 7 3 3 8 209 209 8 4 4 8 4 4 9 209 209 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 207 207 15 9 9 16 207 207 16 726 726 16 726 726 17 207 207 17 11 11 17 726 726 18 11 11 18 725 725 18 725 725 19 11 11 19 205 205 19 725 725 20 205 205 20 12 12 20 12 12 21 205 205 21 203 203 21 12 12 22 203 203 22 13 13 22 13 13 23 203 203 23 202 202 23 13 13 24 202 202 24 709 709 24 709 709 25 202 202 25 14 14 25 709 709 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 200 200 29 16 16 30 200 200 30 702 702 30 702 702 31 200 200 31 199 199 31 702 702 32 199 199 32 700 700 32 700 700 33 199 199 33 198 198 33 700 700 34 198 198 34 687 687 34 687 687 35 198 198 35 197 197 35 687 687 36 197 197 36 685 685 36 685 685 37 197 197 37 196 196 37 685 685 38 196 196 38 18 18 38 18 18 39 196 196 39 195 195 39 18 18 40 195 195 40 686 686 40 686 686 41 195 195 41 193 193 41 686 686 42 193 193 42 20 20 42 20 20 43 193 193 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 664 664 50 664 664 51 26 26 51 27 27 51 664 664 52 27 27 52 28 28 52 28 28 53 27 27 53 190 190 53 28 28 54 190 190 54 547 547 54 547 547 55 190 190 55 29 29 55 547 547 56 29 29 56 663 663 56 663 663 57 29 29 57 30 30 57 663 663 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 185 185 67 39 39 68 185 185 68 40 40 68 40 40 69 185 185 69 41 41 69 40 40 70 41 41 70 548 548 70 548 548 71 41 41 71 42 42 71 548 548 72 42 42 72 43 43 72 43 43 73 42 42 73 182 182 73 43 43 74 182 182 74 44 44 74 44 44 75 182 182 75 181 181 75 44 44 76 181 181 76 626 626 76 626 626 77 181 181 77 180 180 77 626 626 78 180 180 78 45 45 78 45 45 79 180 180 79 46 46 79 45 45 80 46 46 80 615 615 80 615 615 81 46 46 81 179 179 81 615 615 82 179 179 82 552 552 82 552 552 83 179 179 83 253 253 83 552 552 84 253 253 84 614 614 84 614 614 85 253 253 85 252 252 85 614 614 86 252 252 86 47 47 86 47 47 87 252 252 87 251 251 87 47 47 88 251 251 88 48 48 88 48 48 89 251 251 89 249 249 89 48 48 90 249 249 90 49 49 90 49 49 91 249 249 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 541 541 94 541 541 95 51 51 95 52 52 95 541 541 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 854 854 98 854 854 99 54 54 99 245 245 99 854 854 100 245 245 100 56 56 100 56 56 101 245 245 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 841 841 108 841 841 109 62 62 109 244 244 109 841 841 110 244 244 110 63 63 110 63 63 111 244 244 111 64 64 111 63 63 112 64 64 112 836 836 112 836 836 113 64 64 113 65 65 113 836 836 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 835 835 116 835 835 117 67 67 117 242 242 117 835 835 118 242 242 118 823 823 118 823 823 119 242 242 119 241 241 119 823 823 120 241 241 120 68 68 120 68 68 121 241 241 121 240 240 121 68 68 122 240 240 122 69 69 122 69 69 123 240 240 123 237 237 123 69 69 124 237 237 124 70 70 124 70 70 125 237 237 125 236 236 125 70 70 126 236 236 126 71 71 126 71 71 127 236 236 127 235 235 127 71 71 128 235 235 128 543 543 128 543 543 129 235 235 129 72 72 129 543 543 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 805 805 134 805 805 135 76 76 135 77 77 135 805 805 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 231 231 139 80 80 140 231 231 140 81 81 140 81 81 141 231 231 141 82 82 141 81 81 142 82 82 142 544 544 142 544 544 143 82 82 143 83 83 143 544 544 144 83 83 144 784 784 144 784 784 145 83 83 145 229 229 145 784 784 146 229 229 146 84 84 146 84 84 147 229 229 147 85 85 147 84 84 148 85 85 148 783 783 148 783 783 149 85 85 149 86 86 149 783 783 150 86 86 150 87 87 150 87 87 151 86 86 151 226 226 151 87 87 152 226 226 152 88 88 152 88 88 153 226 226 153 225 225 153 88 88 154 225 225 154 89 89 154 89 89 155 225 225 155 224 224 155 89 89 156 224 224 156 773 773 156 773 773 157 224 224 157 90 90 157 773 773 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 221 221 161 93 93 162 221 221 162 94 94 162 94 94 163 221 221 163 220 220 163 94 94 164 220 220 164 757 757 164 757 757 165 220 220 165 95 95 165 757 757 166 95 95 166 96 96 166 96 96 167 95 95 167 218 218 167 96 96 168 218 218 168 545 545 168 545 545 169 218 218 169 217 217 169 545 545 170 217 217 170 756 756 170 756 756 171 217 217 171 97 97 171 756 756 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 745 745 176 745 745 177 101 101 177 102 102 177 745 745 178 102 102 178 103 103 178 103 103 179 102 102 179 215 215 179 104 104 180 123 123 180 117 117 180 104 104 181 117 117 181 609 609 181 105 105 182 621 621 182 117 117 182 117 117 183 621 621 183 554 554 183 117 117 184 554 554 184 609 609 184 645 645 185 638 638 185 117 117 185 117 117 186 638 638 186 631 631 186 117 117 187 631 631 187 105 105 187 657 657 188 106 106 188 117 117 188 117 117 189 106 106 189 559 559 189 117 117 190 559 559 190 645 645 190 108 108 191 107 107 191 117 117 191 117 117 192 107 107 192 658 658 192 117 117 193 658 658 193 657 657 193 564 564 194 563 563 194 117 117 194 117 117 195 563 563 195 680 680 195 117 117 196 680 680 196 108 108 196 109 109 197 693 693 197 117 117 197 117 117 198 693 693 198 692 692 198 117 117 199 692 692 199 564 564 199 721 721 200 718 718 200 117 117 200 117 117 201 718 718 201 720 720 201 117 117 202 720 720 202 109 109 202 744 744 203 110 110 203 117 117 203 117 117 204 110 110 204 570 570 204 117 117 205 570 570 205 721 721 205 750 750 206 578 578 206 117 117 206 117 117 207 578 578 207 743 743 207 117 117 208 743 743 208 744 744 208 761 761 209 583 583 209 117 117 209 117 117 210 583 583 210 111 111 210 117 117 211 111 111 211 750 750 211 112 112 212 113 113 212 117 117 212 117 117 213 113 113 213 114 114 213 117 117 214 114 114 214 761 761 214 115 115 215 116 116 215 117 117 215 117 117 216 116 116 216 118 118 216 117 117 217 118 118 217 112 112 217 599 599 218 794 794 218 117 117 218 117 117 219 794 794 219 793 793 219 117 117 220 793 793 220 115 115 220 812 812 221 811 811 221 117 117 221 117 117 222 811 811 222 601 601 222 117 117 223 601 601 223 599 599 223 119 119 224 120 120 224 117 117 224 117 117 225 120 120 225 822 822 225 117 117 226 822 822 226 812 812 226 121 121 227 605 605 227 117 117 227 117 117 228 605 605 228 122 122 228 117 117 229 122 122 229 119 119 229 123 123 230 124 124 230 117 117 230 117 117 231 124 124 231 849 849 231 117 117 232 849 849 232 121 121 232 125 125 233 175 175 233 159 159 233 125 125 234 159 159 234 129 129 234 126 126 235 127 127 235 159 159 235 159 159 236 127 127 236 128 128 236 159 159 237 128 128 237 129 129 237 134 134 238 130 130 238 159 159 238 159 159 239 130 130 239 131 131 239 159 159 240 131 131 240 126 126 240 137 137 241 132 132 241 159 159 241 159 159 242 132 132 242 133 133 242 159 159 243 133 133 243 134 134 243 141 141 244 135 135 244 159 159 244 159 159 245 135 135 245 136 136 245 159 159 246 136 136 246 137 137 246 138 138 247 139 139 247 159 159 247 159 159 248 139 139 248 140 140 248 159 159 249 140 140 249 141 141 249 146 146 250 142 142 250 159 159 250 159 159 251 142 142 251 143 143 251 159 159 252 143 143 252 138 138 252 150 150 253 144 144 253 159 159 253 159 159 254 144 144 254 145 145 254 159 159 255 145 145 255 146 146 255 147 147 256 148 148 256 159 159 256 159 159 257 148 148 257 149 149 257 159 159 258 149 149 258 150 150 258 156 156 259 151 151 259 159 159 259 159 159 260 151 151 260 152 152 260 159 159 261 152 152 261 147 147 261 153 153 262 154 154 262 159 159 262 159 159 263 154 154 263 155 155 263 159 159 264 155 155 264 156 156 264 157 157 265 158 158 265 159 159 265 159 159 266 158 158 266 160 160 266 159 159 267 160 160 267 153 153 267 166 166 268 161 161 268 159 159 268 159 159 269 161 161 269 162 162 269 159 159 270 162 162 270 157 157 270 163 163 271 164 164 271 159 159 271 159 159 272 164 164 272 165 165 272 159 159 273 165 165 273 166 166 273 172 172 274 167 167 274 159 159 274 159 159 275 167 167 275 168 168 275 159 159 276 168 168 276 163 163 276 169 169 277 170 170 277 159 159 277 159 159 278 170 170 278 171 171 278 159 159 279 171 171 279 172 172 279 178 178 280 173 173 280 159 159 280 159 159 281 173 173 281 174 174 281 159 159 282 174 174 282 169 169 282 175 175 283 176 176 283 159 159 283 159 159 284 176 176 284 177 177 284 159 159 285 177 177 285 178 178 285 253 253 286 302 302 286 304 304 286 253 253 287 179 179 287 302 302 287 302 302 288 179 179 288 46 46 288 302 302 289 46 46 289 300 300 289 300 300 290 46 46 290 180 180 290 300 300 291 180 180 291 298 298 291 298 298 292 180 180 292 181 181 292 298 298 293 181 181 293 183 183 293 183 183 294 181 181 294 182 182 294 182 182 295 42 42 295 183 183 295 183 183 296 42 42 296 41 41 296 183 183 297 41 41 297 184 184 297 41 41 298 185 185 298 184 184 298 184 184 299 185 185 299 38 38 299 184 184 300 38 38 300 186 186 300 186 186 301 38 38 301 37 37 301 186 186 302 37 37 302 187 187 302 37 37 303 33 33 303 187 187 303 187 187 304 33 33 304 32 32 304 187 187 305 32 32 305 294 294 305 32 32 306 30 30 306 294 294 306 294 294 307 30 30 307 29 29 307 294 294 308 29 29 308 188 188 308 188 188 309 29 29 309 190 190 309 188 188 310 190 190 310 189 189 310 189 189 311 190 190 311 27 27 311 189 189 312 27 27 312 191 191 312 191 191 313 27 27 313 26 26 313 26 26 314 24 24 314 191 191 314 191 191 315 24 24 315 22 22 315 191 191 316 22 22 316 192 192 316 22 22 317 19 19 317 192 192 317 192 192 318 19 19 318 193 193 318 192 192 319 193 193 319 194 194 319 194 194 320 193 193 320 195 195 320 194 194 321 195 195 321 288 288 321 288 288 322 195 195 322 196 196 322 288 288 323 196 196 323 287 287 323 287 287 324 196 196 324 197 197 324 197 197 325 198 198 325 287 287 325 287 287 326 198 198 326 199 199 326 287 287 327 199 199 327 286 286 327 286 286 328 199 199 328 200 200 328 286 286 329 200 200 329 201 201 329 201 201 330 200 200 330 17 17 330 201 201 331 17 17 331 284 284 331 284 284 332 17 17 332 14 14 332 14 14 333 202 202 333 284 284 333 284 284 334 202 202 334 203 203 334 284 284 335 203 203 335 204 204 335 203 203 336 205 205 336 204 204 336 204 204 337 205 205 337 11 11 337 204 204 338 11 11 338 206 206 338 206 206 339 11 11 339 207 207 339 206 206 340 207 207 340 281 281 340 281 281 341 207 207 341 10 10 341 281 281 342 10 10 342 208 208 342 208 208 343 10 10 343 7 7 343 7 7 344 5 5 344 208 208 344 208 208 345 5 5 345 209 209 345 208 208 346 209 209 346 210 210 346 210 210 347 209 209 347 211 211 347 210 210 348 211 211 348 213 213 348 211 211 349 212 212 349 213 213 349 213 213 350 212 212 350 214 214 350 213 213 351 214 214 351 216 216 351 214 214 352 215 215 352 216 216 352 216 216 353 215 215 353 102 102 353 216 216 354 102 102 354 276 276 354 102 102 355 101 101 355 276 276 355 276 276 356 101 101 356 100 100 356 276 276 357 100 100 357 274 274 357 274 274 358 100 100 358 97 97 358 274 274 359 97 97 359 273 273 359 273 273 360 97 97 360 217 217 360 273 273 361 217 217 361 219 219 361 219 219 362 217 217 362 218 218 362 218 218 363 95 95 363 219 219 363 219 219 364 95 95 364 220 220 364 219 219 365 220 220 365 271 271 365 271 271 366 220 220 366 221 221 366 271 271 367 221 221 367 222 222 367 221 221 368 92 92 368 222 222 368 222 222 369 92 92 369 90 90 369 222 222 370 90 90 370 223 223 370 90 90 371 224 224 371 223 223 371 223 223 372 224 224 372 225 225 372 223 223 373 225 225 373 269 269 373 225 225 374 226 226 374 269 269 374 269 269 375 226 226 375 86 86 375 269 269 376 86 86 376 227 227 376 227 227 377 86 86 377 85 85 377 227 227 378 85 85 378 228 228 378 228 228 379 85 85 379 229 229 379 228 228 380 229 229 380 230 230 380 230 230 381 229 229 381 83 83 381 83 83 382 82 82 382 230 230 382 230 230 383 82 82 383 231 231 383 230 230 384 231 231 384 232 232 384 232 232 385 231 231 385 79 79 385 232 232 386 79 79 386 233 233 386 79 79 387 77 77 387 233 233 387 233 233 388 77 77 388 76 76 388 233 233 389 76 76 389 234 234 389 76 76 390 74 74 390 234 234 390 234 234 391 74 74 391 72 72 391 234 234 392 72 72 392 264 264 392 72 72 393 235 235 393 264 264 393 264 264 394 235 235 394 236 236 394 264 264 395 236 236 395 263 263 395 263 263 396 236 236 396 237 237 396 263 263 397 237 237 397 238 238 397 238 238 398 237 237 398 240 240 398 238 238 399 240 240 399 239 239 399 239 239 400 240 240 400 241 241 400 241 241 401 242 242 401 239 239 401 239 239 402 242 242 402 67 67 402 239 239 403 67 67 403 260 260 403 260 260 404 67 67 404 65 65 404 260 260 405 65 65 405 243 243 405 65 65 406 64 64 406 243 243 406 243 243 407 64 64 407 244 244 407 243 243 408 244 244 408 257 257 408 244 244 409 62 62 409 257 257 409 257 257 410 62 62 410 60 60 410 257 257 411 60 60 411 256 256 411 60 60 412 59 59 412 256 256 412 256 256 413 59 59 413 55 55 413 256 256 414 55 55 414 255 255 414 255 255 415 55 55 415 245 245 415 255 255 416 245 245 416 246 246 416 246 246 417 245 245 417 54 54 417 246 246 418 54 54 418 254 254 418 254 254 419 54 54 419 52 52 419 52 52 420 51 51 420 254 254 420 254 254 421 51 51 421 247 247 421 254 254 422 247 247 422 248 248 422 248 248 423 247 247 423 249 249 423 248 248 424 249 249 424 250 250 424 250 250 425 249 249 425 251 251 425 250 250 426 251 251 426 304 304 426 304 304 427 251 251 427 252 252 427 304 304 428 252 252 428 253 253 428 248 248 429 306 306 429 254 254 429 254 254 430 306 306 430 309 309 430 254 254 431 309 309 431 246 246 431 246 246 432 309 309 432 311 311 432 246 246 433 311 311 433 255 255 433 255 255 434 311 311 434 312 312 434 255 255 435 312 312 435 256 256 435 256 256 436 312 312 436 258 258 436 256 256 437 258 258 437 257 257 437 257 257 438 258 258 438 315 315 438 257 257 439 315 315 439 243 243 439 243 243 440 315 315 440 259 259 440 243 243 441 259 259 441 260 260 441 260 260 442 259 259 442 317 317 442 260 260 443 317 317 443 239 239 443 239 239 444 317 317 444 261 261 444 239 239 445 261 261 445 238 238 445 238 238 446 261 261 446 262 262 446 238 238 447 262 262 447 263 263 447 263 263 448 262 262 448 265 265 448 263 263 449 265 265 449 264 264 449 264 264 450 265 265 450 322 322 450 264 264 451 322 322 451 234 234 451 234 234 452 322 322 452 266 266 452 234 234 453 266 266 453 233 233 453 233 233 454 266 266 454 267 267 454 233 233 455 267 267 455 232 232 455 232 232 456 267 267 456 268 268 456 232 232 457 268 268 457 230 230 457 230 230 458 268 268 458 326 326 458 230 230 459 326 326 459 228 228 459 228 228 460 326 326 460 327 327 460 228 228 461 327 327 461 227 227 461 227 227 462 327 327 462 328 328 462 227 227 463 328 328 463 269 269 463 269 269 464 328 328 464 270 270 464 269 269 465 270 270 465 223 223 465 223 223 466 270 270 466 331 331 466 223 223 467 331 331 467 222 222 467 222 222 468 331 331 468 332 332 468 222 222 469 332 332 469 271 271 469 271 271 470 332 332 470 272 272 470 271 271 471 272 272 471 219 219 471 219 219 472 272 272 472 333 333 472 219 219 473 333 333 473 273 273 473 273 273 474 333 333 474 275 275 474 273 273 475 275 275 475 274 274 475 274 274 476 275 275 476 335 335 476 274 274 477 335 335 477 276 276 477 276 276 478 335 335 478 277 277 478 276 276 479 277 277 479 216 216 479 216 216 480 277 277 480 337 337 480 216 216 481 337 337 481 213 213 481 213 213 482 337 337 482 278 278 482 213 213 483 278 278 483 210 210 483 210 210 484 278 278 484 279 279 484 210 210 485 279 279 485 208 208 485 208 208 486 279 279 486 280 280 486 208 208 487 280 280 487 281 281 487 281 281 488 280 280 488 282 282 488 281 281 489 282 282 489 206 206 489 206 206 490 282 282 490 283 283 490 206 206 491 283 283 491 204 204 491 204 204 492 283 283 492 342 342 492 204 204 493 342 342 493 284 284 493 284 284 494 342 342 494 343 343 494 284 284 495 343 343 495 201 201 495 201 201 496 343 343 496 285 285 496 201 201 497 285 285 497 286 286 497 286 286 498 285 285 498 344 344 498 286 286 499 344 344 499 287 287 499 287 287 500 344 344 500 289 289 500 287 287 501 289 289 501 288 288 501 288 288 502 289 289 502 290 290 502 288 288 503 290 290 503 194 194 503 194 194 504 290 290 504 291 291 504 194 194 505 291 291 505 192 192 505 192 192 506 291 291 506 292 292 506 192 192 507 292 292 507 191 191 507 191 191 508 292 292 508 293 293 508 191 191 509 293 293 509 189 189 509 189 189 510 293 293 510 350 350 510 189 189 511 350 350 511 188 188 511 188 188 512 350 350 512 295 295 512 188 188 513 295 295 513 294 294 513 294 294 514 295 295 514 353 353 514 294 294 515 353 353 515 187 187 515 187 187 516 353 353 516 296 296 516 187 187 517 296 296 517 186 186 517 186 186 518 296 296 518 355 355 518 186 186 519 355 355 519 184 184 519 184 184 520 355 355 520 297 297 520 184 184 521 297 297 521 183 183 521 183 183 522 297 297 522 356 356 522 183 183 523 356 356 523 298 298 523 298 298 524 356 356 524 299 299 524 298 298 525 299 299 525 300 300 525 300 300 526 299 299 526 301 301 526 300 300 527 301 301 527 302 302 527 302 302 528 301 301 528 303 303 528 302 302 529 303 303 529 304 304 529 304 304 530 303 303 530 359 359 530 304 304 531 359 359 531 250 250 531 250 250 532 359 359 532 305 305 532 250 250 533 305 305 533 248 248 533 248 248 534 305 305 534 306 306 534 305 305 535 307 307 535 306 306 535 306 306 536 307 307 536 308 308 536 306 306 537 308 308 537 309 309 537 309 309 538 308 308 538 363 363 538 309 309 539 363 363 539 311 311 539 311 311 540 363 363 540 310 310 540 311 311 541 310 310 541 312 312 541 312 312 542 310 310 542 313 313 542 312 312 543 313 313 543 258 258 543 258 258 544 313 313 544 314 314 544 258 258 545 314 314 545 315 315 545 315 315 546 314 314 546 366 366 546 315 315 547 366 366 547 259 259 547 259 259 548 366 366 548 316 316 548 259 259 549 316 316 549 317 317 549 317 317 550 316 316 550 318 318 550 317 317 551 318 318 551 261 261 551 261 261 552 318 318 552 319 319 552 261 261 553 319 319 553 262 262 553 262 262 554 319 319 554 320 320 554 262 262 555 320 320 555 265 265 555 265 265 556 320 320 556 321 321 556 265 265 557 321 321 557 322 322 557 322 322 558 321 321 558 323 323 558 322 322 559 323 323 559 266 266 559 266 266 560 323 323 560 324 324 560 266 266 561 324 324 561 267 267 561 267 267 562 324 324 562 325 325 562 267 267 563 325 325 563 268 268 563 268 268 564 325 325 564 370 370 564 268 268 565 370 370 565 326 326 565 326 326 566 370 370 566 371 371 566 326 326 567 371 371 567 327 327 567 327 327 568 371 371 568 372 372 568 327 327 569 372 372 569 328 328 569 328 328 570 372 372 570 329 329 570 328 328 571 329 329 571 270 270 571 270 270 572 329 329 572 330 330 572 270 270 573 330 330 573 331 331 573 331 331 574 330 330 574 377 377 574 331 331 575 377 377 575 332 332 575 332 332 576 377 377 576 378 378 576 332 332 577 378 378 577 272 272 577 272 272 578 378 378 578 379 379 578 272 272 579 379 379 579 333 333 579 333 333 580 379 379 580 334 334 580 333 333 581 334 334 581 275 275 581 275 275 582 334 334 582 380 380 582 275 275 583 380 380 583 335 335 583 335 335 584 380 380 584 336 336 584 335 335 585 336 336 585 277 277 585 277 277 586 336 336 586 382 382 586 277 277 587 382 382 587 337 337 587 337 337 588 382 382 588 338 338 588 337 337 589 338 338 589 278 278 589 278 278 590 338 338 590 339 339 590 278 278 591 339 339 591 279 279 591 279 279 592 339 339 592 384 384 592 279 279 593 384 384 593 280 280 593 280 280 594 384 384 594 340 340 594 280 280 595 340 340 595 282 282 595 282 282 596 340 340 596 385 385 596 282 282 597 385 385 597 283 283 597 283 283 598 385 385 598 341 341 598 283 283 599 341 341 599 342 342 599 342 342 600 341 341 600 388 388 600 342 342 601 388 388 601 343 343 601 343 343 602 388 388 602 389 389 602 343 343 603 389 389 603 285 285 603 285 285 604 389 389 604 390 390 604 285 285 605 390 390 605 344 344 605 344 344 606 390 390 606 391 391 606 344 344 607 391 391 607 289 289 607 289 289 608 391 391 608 345 345 608 289 289 609 345 345 609 290 290 609 290 290 610 345 345 610 346 346 610 290 290 611 346 346 611 291 291 611 291 291 612 346 346 612 347 347 612 291 291 613 347 347 613 292 292 613 292 292 614 347 347 614 348 348 614 292 292 615 348 348 615 293 293 615 293 293 616 348 348 616 349 349 616 293 293 617 349 349 617 350 350 617 350 350 618 349 349 618 351 351 618 350 350 619 351 351 619 295 295 619 295 295 620 351 351 620 352 352 620 295 295 621 352 352 621 353 353 621 353 353 622 352 352 622 394 394 622 353 353 623 394 394 623 296 296 623 296 296 624 394 394 624 354 354 624 296 296 625 354 354 625 355 355 625 355 355 626 354 354 626 396 396 626 355 355 627 396 396 627 297 297 627 297 297 628 396 396 628 399 399 628 297 297 629 399 399 629 356 356 629 356 356 630 399 399 630 357 357 630 356 356 631 357 357 631 299 299 631 299 299 632 357 357 632 358 358 632 299 299 633 358 358 633 301 301 633 301 301 634 358 358 634 401 401 634 301 301 635 401 401 635 303 303 635 303 303 636 401 401 636 402 402 636 303 303 637 402 402 637 359 359 637 359 359 638 402 402 638 403 403 638 359 359 639 403 403 639 305 305 639 305 305 640 403 403 640 307 307 640 403 403 641 405 405 641 307 307 641 307 307 642 405 405 642 360 360 642 307 307 643 360 360 643 308 308 643 308 308 644 360 360 644 361 361 644 308 308 645 361 361 645 363 363 645 363 363 646 361 361 646 362 362 646 363 363 647 362 362 647 310 310 647 310 310 648 362 362 648 364 364 648 310 310 649 364 364 649 313 313 649 313 313 650 364 364 650 365 365 650 313 313 651 365 365 651 314 314 651 314 314 652 365 365 652 409 409 652 314 314 653 409 409 653 366 366 653 366 366 654 409 409 654 411 411 654 366 366 655 411 411 655 316 316 655 316 316 656 411 411 656 413 413 656 316 316 657 413 413 657 318 318 657 318 318 658 413 413 658 367 367 658 318 318 659 367 367 659 319 319 659 319 319 660 367 367 660 415 415 660 319 319 661 415 415 661 320 320 661 320 320 662 415 415 662 417 417 662 320 320 663 417 417 663 321 321 663 321 321 664 417 417 664 368 368 664 321 321 665 368 368 665 323 323 665 323 323 666 368 368 666 419 419 666 323 323 667 419 419 667 324 324 667 324 324 668 419 419 668 369 369 668 324 324 669 369 369 669 325 325 669 325 325 670 369 369 670 420 420 670 325 325 671 420 420 671 370 370 671 370 370 672 420 420 672 423 423 672 370 370 673 423 423 673 371 371 673 371 371 674 423 423 674 373 373 674 371 371 675 373 373 675 372 372 675 372 372 676 373 373 676 374 374 676 372 372 677 374 374 677 329 329 677 329 329 678 374 374 678 375 375 678 329 329 679 375 375 679 330 330 679 330 330 680 375 375 680 376 376 680 330 330 681 376 376 681 377 377 681 377 377 682 376 376 682 427 427 682 377 377 683 427 427 683 378 378 683 378 378 684 427 427 684 429 429 684 378 378 685 429 429 685 379 379 685 379 379 686 429 429 686 431 431 686 379 379 687 431 431 687 334 334 687 334 334 688 431 431 688 433 433 688 334 334 689 433 433 689 380 380 689 380 380 690 433 433 690 381 381 690 380 380 691 381 381 691 336 336 691 336 336 692 381 381 692 435 435 692 336 336 693 435 435 693 382 382 693 382 382 694 435 435 694 437 437 694 382 382 695 437 437 695 338 338 695 338 338 696 437 437 696 383 383 696 338 338 697 383 383 697 339 339 697 339 339 698 383 383 698 439 439 698 339 339 699 439 439 699 384 384 699 384 384 700 439 439 700 440 440 700 384 384 701 440 440 701 340 340 701 340 340 702 440 440 702 442 442 702 340 340 703 442 442 703 385 385 703 385 385 704 442 442 704 386 386 704 385 385 705 386 386 705 341 341 705 341 341 706 386 386 706 444 444 706 341 341 707 444 444 707 388 388 707 388 388 708 444 444 708 387 387 708 388 388 709 387 387 709 389 389 709 389 389 710 387 387 710 446 446 710 389 389 711 446 446 711 390 390 711 390 390 712 446 446 712 448 448 712 390 390 713 448 448 713 391 391 713 391 391 714 448 448 714 449 449 714 391 391 715 449 449 715 345 345 715 345 345 716 449 449 716 450 450 716 345 345 717 450 450 717 346 346 717 346 346 718 450 450 718 392 392 718 346 346 719 392 392 719 347 347 719 347 347 720 392 392 720 393 393 720 347 347 721 393 393 721 348 348 721 348 348 722 393 393 722 452 452 722 348 348 723 452 452 723 349 349 723 349 349 724 452 452 724 454 454 724 349 349 725 454 454 725 351 351 725 351 351 726 454 454 726 456 456 726 351 351 727 456 456 727 352 352 727 352 352 728 456 456 728 457 457 728 352 352 729 457 457 729 394 394 729 394 394 730 457 457 730 395 395 730 394 394 731 395 395 731 354 354 731 354 354 732 395 395 732 397 397 732 354 354 733 397 397 733 396 396 733 396 396 734 397 397 734 398 398 734 396 396 735 398 398 735 399 399 735 399 399 736 398 398 736 400 400 736 399 399 737 400 400 737 357 357 737 357 357 738 400 400 738 462 462 738 357 357 739 462 462 739 358 358 739 358 358 740 462 462 740 464 464 740 358 358 741 464 464 741 401 401 741 401 401 742 464 464 742 465 465 742 401 401 743 465 465 743 402 402 743 402 402 744 465 465 744 404 404 744 402 402 745 404 404 745 403 403 745 403 403 746 404 404 746 405 405 746 404 404 747 467 467 747 405 405 747 405 405 748 467 467 748 406 406 748 405 405 749 406 406 749 360 360 749 360 360 750 406 406 750 471 471 750 360 360 751 471 471 751 361 361 751 361 361 752 471 471 752 473 473 752 361 361 753 473 473 753 362 362 753 362 362 754 473 473 754 407 407 754 362 362 755 407 407 755 364 364 755 364 364 756 407 407 756 408 408 756 364 364 757 408 408 757 365 365 757 365 365 758 408 408 758 477 477 758 365 365 759 477 477 759 409 409 759 409 409 760 477 477 760 410 410 760 409 409 761 410 410 761 411 411 761 411 411 762 410 410 762 412 412 762 411 411 763 412 412 763 413 413 763 413 413 764 412 412 764 414 414 764 413 413 765 414 414 765 367 367 765 367 367 766 414 414 766 482 482 766 367 367 767 482 482 767 415 415 767 415 415 768 482 482 768 416 416 768 415 415 769 416 416 769 417 417 769 417 417 770 416 416 770 418 418 770 417 417 771 418 418 771 368 368 771 368 368 772 418 418 772 485 485 772 368 368 773 485 485 773 419 419 773 419 419 774 485 485 774 487 487 774 419 419 775 487 487 775 369 369 775 369 369 776 487 487 776 421 421 776 369 369 777 421 421 777 420 420 777 420 420 778 421 421 778 422 422 778 420 420 779 422 422 779 423 423 779 423 423 780 422 422 780 491 491 780 423 423 781 491 491 781 373 373 781 373 373 782 491 491 782 424 424 782 373 373 783 424 424 783 374 374 783 374 374 784 424 424 784 425 425 784 374 374 785 425 425 785 375 375 785 375 375 786 425 425 786 426 426 786 375 375 787 426 426 787 376 376 787 376 376 788 426 426 788 428 428 788 376 376 789 428 428 789 427 427 789 427 427 790 428 428 790 497 497 790 427 427 791 497 497 791 429 429 791 429 429 792 497 497 792 430 430 792 429 429 793 430 430 793 431 431 793 431 431 794 430 430 794 432 432 794 431 431 795 432 432 795 433 433 795 433 433 796 432 432 796 434 434 796 433 433 797 434 434 797 381 381 797 381 381 798 434 434 798 503 503 798 381 381 799 503 503 799 435 435 799 435 435 800 503 503 800 436 436 800 435 435 801 436 436 801 437 437 801 437 437 802 436 436 802 505 505 802 437 437 803 505 505 803 383 383 803 383 383 804 505 505 804 438 438 804 383 383 805 438 438 805 439 439 805 439 439 806 438 438 806 441 441 806 439 439 807 441 441 807 440 440 807 440 440 808 441 441 808 509 509 808 440 440 809 509 509 809 442 442 809 442 442 810 509 509 810 443 443 810 442 442 811 443 443 811 386 386 811 386 386 812 443 443 812 512 512 812 386 386 813 512 512 813 444 444 813 444 444 814 512 512 814 513 513 814 444 444 815 513 513 815 387 387 815 387 387 816 513 513 816 445 445 816 387 387 817 445 445 817 446 446 817 446 446 818 445 445 818 447 447 818 446 446 819 447 447 819 448 448 819 448 448 820 447 447 820 518 518 820 448 448 821 518 518 821 449 449 821 449 449 822 518 518 822 520 520 822 449 449 823 520 520 823 450 450 823 450 450 824 520 520 824 521 521 824 450 450 825 521 521 825 392 392 825 392 392 826 521 521 826 451 451 826 392 392 827 451 451 827 393 393 827 393 393 828 451 451 828 453 453 828 393 393 829 453 453 829 452 452 829 452 452 830 453 453 830 525 525 830 452 452 831 525 525 831 454 454 831 454 454 832 525 525 832 528 528 832 454 454 833 528 528 833 456 456 833 456 456 834 528 528 834 455 455 834 456 456 835 455 455 835 457 457 835 457 457 836 455 455 836 458 458 836 457 457 837 458 458 837 395 395 837 395 395 838 458 458 838 459 459 838 395 395 839 459 459 839 397 397 839 397 397 840 459 459 840 460 460 840 397 397 841 460 460 841 398 398 841 398 398 842 460 460 842 535 535 842 398 398 843 535 535 843 400 400 843 400 400 844 535 535 844 461 461 844 400 400 845 461 461 845 462 462 845 462 462 846 461 461 846 463 463 846 462 462 847 463 463 847 464 464 847 464 464 848 463 463 848 538 538 848 464 464 849 538 538 849 465 465 849 465 465 850 538 538 850 539 539 850 465 465 851 539 539 851 404 404 851 404 404 852 539 539 852 467 467 852 539 539 853 466 466 853 467 467 853 467 467 854 466 466 854 468 468 854 467 467 855 468 468 855 406 406 855 406 406 856 468 468 856 469 469 856 406 406 857 469 469 857 471 471 857 471 471 858 469 469 858 470 470 858 471 471 859 470 470 859 473 473 859 473 473 860 470 470 860 472 472 860 473 473 861 472 472 861 407 407 861 407 407 862 472 472 862 474 474 862 407 407 863 474 474 863 408 408 863 408 408 864 474 474 864 475 475 864 408 408 865 475 475 865 477 477 865 477 477 866 475 475 866 476 476 866 477 477 867 476 476 867 410 410 867 410 410 868 476 476 868 478 478 868 410 410 869 478 478 869 412 412 869 412 412 870 478 478 870 479 479 870 412 412 871 479 479 871 414 414 871 414 414 872 479 479 872 480 480 872 414 414 873 480 480 873 482 482 873 482 482 874 480 480 874 481 481 874 482 482 875 481 481 875 416 416 875 416 416 876 481 481 876 483 483 876 416 416 877 483 483 877 418 418 877 418 418 878 483 483 878 484 484 878 418 418 879 484 484 879 485 485 879 485 485 880 484 484 880 486 486 880 485 485 881 486 486 881 487 487 881 487 487 882 486 486 882 488 488 882 487 487 883 488 488 883 421 421 883 421 421 884 488 488 884 489 489 884 421 421 885 489 489 885 422 422 885 422 422 886 489 489 886 490 490 886 422 422 887 490 490 887 491 491 887 491 491 888 490 490 888 492 492 888 491 491 889 492 492 889 424 424 889 424 424 890 492 492 890 493 493 890 424 424 891 493 493 891 425 425 891 425 425 892 493 493 892 494 494 892 425 425 893 494 494 893 426 426 893 426 426 894 494 494 894 495 495 894 426 426 895 495 495 895 428 428 895 428 428 896 495 495 896 496 496 896 428 428 897 496 496 897 497 497 897 497 497 898 496 496 898 498 498 898 497 497 899 498 498 899 430 430 899 430 430 900 498 498 900 499 499 900 430 430 901 499 499 901 432 432 901 432 432 902 499 499 902 500 500 902 432 432 903 500 500 903 434 434 903 434 434 904 500 500 904 501 501 904 434 434 905 501 501 905 503 503 905 503 503 906 501 501 906 502 502 906 503 503 907 502 502 907 436 436 907 436 436 908 502 502 908 504 504 908 436 436 909 504 504 909 505 505 909 505 505 910 504 504 910 506 506 910 505 505 911 506 506 911 438 438 911 438 438 912 506 506 912 507 507 912 438 438 913 507 507 913 441 441 913 441 441 914 507 507 914 508 508 914 441 441 915 508 508 915 509 509 915 509 509 916 508 508 916 510 510 916 509 509 917 510 510 917 443 443 917 443 443 918 510 510 918 511 511 918 443 443 919 511 511 919 512 512 919 512 512 920 511 511 920 514 514 920 512 512 921 514 514 921 513 513 921 513 513 922 514 514 922 515 515 922 513 513 923 515 515 923 445 445 923 445 445 924 515 515 924 516 516 924 445 445 925 516 516 925 447 447 925 447 447 926 516 516 926 517 517 926 447 447 927 517 517 927 518 518 927 518 518 928 517 517 928 519 519 928 518 518 929 519 519 929 520 520 929 520 520 930 519 519 930 522 522 930 520 520 931 522 522 931 521 521 931 521 521 932 522 522 932 523 523 932 521 521 933 523 523 933 451 451 933 451 451 934 523 523 934 524 524 934 451 451 935 524 524 935 453 453 935 453 453 936 524 524 936 526 526 936 453 453 937 526 526 937 525 525 937 525 525 938 526 526 938 527 527 938 525 525 939 527 527 939 528 528 939 528 528 940 527 527 940 529 529 940 528 528 941 529 529 941 455 455 941 455 455 942 529 529 942 530 530 942 455 455 943 530 530 943 458 458 943 458 458 944 530 530 944 531 531 944 458 458 945 531 531 945 459 459 945 459 459 946 531 531 946 532 532 946 459 459 947 532 532 947 460 460 947 460 460 948 532 532 948 533 533 948 460 460 949 533 533 949 535 535 949 535 535 950 533 533 950 534 534 950 535 535 951 534 534 951 461 461 951 461 461 952 534 534 952 536 536 952 461 461 953 536 536 953 463 463 953 463 463 954 536 536 954 537 537 954 463 463 955 537 537 955 538 538 955 538 538 956 537 537 956 540 540 956 538 538 957 540 540 957 539 539 957 539 539 958 540 540 958 466 466 958 541 541 959 53 53 959 862 862 959 854 854 960 56 56 960 853 853 960 58 58 961 61 61 961 843 843 961 836 836 962 66 66 962 542 542 962 823 823 963 68 68 963 825 825 963 69 69 964 70 70 964 818 818 964 543 543 965 73 73 965 807 807 965 78 78 966 80 80 966 798 798 966 544 544 967 784 784 967 787 787 967 88 88 968 89 89 968 594 594 968 93 93 969 94 94 969 770 770 969 96 96 970 545 545 970 755 755 970 745 745 971 103 103 971 546 546 971 2 2 972 3 3 972 735 735 972 6 6 973 8 8 973 577 577 973 12 12 974 13 13 974 715 715 974 709 709 975 15 15 975 703 703 975 16 16 976 702 702 976 701 701 976 687 687 977 685 685 977 569 569 977 21 21 978 23 23 978 669 669 978 25 25 979 664 664 979 670 670 979 28 28 980 547 547 980 662 662 980 31 31 981 34 34 981 562 562 981 40 40 982 548 548 982 549 549 982 43 43 983 44 44 983 550 550 983 626 626 984 45 45 984 551 551 984 552 552 985 614 614 985 616 616 985 609 609 986 554 554 986 553 553 986 553 553 987 554 554 987 622 622 987 553 553 988 622 622 988 611 611 988 611 611 989 622 622 989 555 555 989 611 611 990 555 555 990 556 556 990 556 556 991 555 555 991 618 618 991 556 556 992 618 618 992 557 557 992 557 557 993 618 618 993 558 558 993 557 557 994 558 558 994 613 613 994 613 613 995 558 558 995 616 616 995 559 559 996 106 106 996 646 646 996 646 646 997 106 106 997 656 656 997 646 646 998 656 656 998 647 647 998 647 647 999 656 656 999 654 654 999 647 647 1000 654 654 1000 648 648 1000 648 648 1001 654 654 1001 560 560 1001 648 648 1002 560 560 1002 561 561 1002 561 561 1003 560 560 1003 651 651 1003 561 561 1004 651 651 1004 649 649 1004 649 649 1005 651 651 1005 562 562 1005 563 563 1006 564 564 1006 566 566 1006 566 566 1007 564 564 1007 565 565 1007 566 566 1008 565 565 1008 567 567 1008 567 567 1009 565 565 1009 691 691 1009 567 567 1010 691 691 1010 682 682 1010 682 682 1011 691 691 1011 689 689 1011 682 682 1012 689 689 1012 683 683 1012 683 683 1013 689 689 1013 688 688 1013 683 683 1014 688 688 1014 568 568 1014 568 568 1015 688 688 1015 569 569 1015 721 721 1016 570 570 1016 571 571 1016 571 571 1017 570 570 1017 573 573 1017 571 571 1018 573 573 1018 572 572 1018 572 572 1019 573 573 1019 731 731 1019 572 572 1020 731 731 1020 575 575 1020 575 575 1021 731 731 1021 574 574 1021 575 575 1022 574 574 1022 576 576 1022 576 576 1023 574 574 1023 728 728 1023 576 576 1024 728 728 1024 724 724 1024 724 724 1025 728 728 1025 577 577 1025 743 743 1026 578 578 1026 742 742 1026 742 742 1027 578 578 1027 579 579 1027 742 742 1028 579 579 1028 580 580 1028 580 580 1029 579 579 1029 581 581 1029 580 580 1030 581 581 1030 739 739 1030 739 739 1031 581 581 1031 748 748 1031 739 739 1032 748 748 1032 737 737 1032 737 737 1033 748 748 1033 582 582 1033 737 737 1034 582 582 1034 736 736 1034 736 736 1035 582 582 1035 546 546 1035 111 111 1036 583 583 1036 751 751 1036 751 751 1037 583 583 1037 585 585 1037 751 751 1038 585 585 1038 584 584 1038 584 584 1039 585 585 1039 759 759 1039 584 584 1040 759 759 1040 586 586 1040 586 586 1041 759 759 1041 758 758 1041 586 586 1042 758 758 1042 587 587 1042 587 587 1043 758 758 1043 588 588 1043 587 587 1044 588 588 1044 754 754 1044 754 754 1045 588 588 1045 755 755 1045 113 113 1046 112 112 1046 589 589 1046 589 589 1047 112 112 1047 778 778 1047 589 589 1048 778 778 1048 591 591 1048 591 591 1049 778 778 1049 590 590 1049 591 591 1050 590 590 1050 592 592 1050 592 592 1051 590 590 1051 776 776 1051 592 592 1052 776 776 1052 771 771 1052 771 771 1053 776 776 1053 593 593 1053 771 771 1054 593 593 1054 769 769 1054 769 769 1055 593 593 1055 594 594 1055 116 116 1056 115 115 1056 780 780 1056 780 780 1057 115 115 1057 595 595 1057 780 780 1058 595 595 1058 596 596 1058 596 596 1059 595 595 1059 791 791 1059 596 596 1060 791 791 1060 597 597 1060 597 597 1061 791 791 1061 598 598 1061 597 597 1062 598 598 1062 781 781 1062 781 781 1063 598 598 1063 788 788 1063 781 781 1064 788 788 1064 785 785 1064 785 785 1065 788 788 1065 787 787 1065 599 599 1066 601 601 1066 600 600 1066 600 600 1067 601 601 1067 602 602 1067 600 600 1068 602 602 1068 803 803 1068 803 803 1069 602 602 1069 810 810 1069 803 803 1070 810 810 1070 802 802 1070 802 802 1071 810 810 1071 603 603 1071 802 802 1072 603 603 1072 800 800 1072 800 800 1073 603 603 1073 604 604 1073 800 800 1074 604 604 1074 799 799 1074 799 799 1075 604 604 1075 807 807 1075 122 122 1076 605 605 1076 607 607 1076 607 607 1077 605 605 1077 606 606 1077 607 607 1078 606 606 1078 608 608 1078 608 608 1079 606 606 1079 847 847 1079 608 608 1080 847 847 1080 840 840 1080 840 840 1081 847 847 1081 846 846 1081 840 840 1082 846 846 1082 838 838 1082 838 838 1083 846 846 1083 845 845 1083 838 838 1084 845 845 1084 837 837 1084 837 837 1085 845 845 1085 843 843 1085 866 866 1086 609 609 1086 610 610 1086 610 610 1087 609 609 1087 553 553 1087 610 610 1088 553 553 1088 869 869 1088 869 869 1089 553 553 1089 611 611 1089 869 869 1090 611 611 1090 871 871 1090 871 871 1091 611 611 1091 556 556 1091 871 871 1092 556 556 1092 872 872 1092 872 872 1093 556 556 1093 557 557 1093 872 872 1094 557 557 1094 612 612 1094 612 612 1095 557 557 1095 613 613 1095 612 612 1096 613 613 1096 873 873 1096 873 873 1097 613 613 1097 48 48 1097 616 616 1098 614 614 1098 613 613 1098 613 613 1099 614 614 1099 47 47 1099 613 613 1100 47 47 1100 48 48 1100 615 615 1101 552 552 1101 625 625 1101 625 625 1102 552 552 1102 616 616 1102 625 625 1103 616 616 1103 617 617 1103 617 617 1104 616 616 1104 558 558 1104 617 617 1105 558 558 1105 619 619 1105 619 619 1106 558 558 1106 618 618 1106 619 619 1107 618 618 1107 620 620 1107 620 620 1108 618 618 1108 555 555 1108 620 620 1109 555 555 1109 623 623 1109 623 623 1110 555 555 1110 622 622 1110 623 623 1111 622 622 1111 621 621 1111 621 621 1112 622 622 1112 554 554 1112 621 621 1113 105 105 1113 623 623 1113 623 623 1114 105 105 1114 624 624 1114 623 623 1115 624 624 1115 620 620 1115 620 620 1116 624 624 1116 629 629 1116 620 620 1117 629 629 1117 619 619 1117 619 619 1118 629 629 1118 628 628 1118 619 619 1119 628 628 1119 617 617 1119 617 617 1120 628 628 1120 627 627 1120 617 617 1121 627 627 1121 625 625 1121 625 625 1122 627 627 1122 551 551 1122 625 625 1123 551 551 1123 615 615 1123 615 615 1124 551 551 1124 45 45 1124 44 44 1125 626 626 1125 550 550 1125 550 550 1126 626 626 1126 551 551 1126 550 550 1127 551 551 1127 634 634 1127 634 634 1128 551 551 1128 627 627 1128 634 634 1129 627 627 1129 635 635 1129 635 635 1130 627 627 1130 628 628 1130 635 635 1131 628 628 1131 630 630 1131 630 630 1132 628 628 1132 629 629 1132 630 630 1133 629 629 1133 637 637 1133 637 637 1134 629 629 1134 624 624 1134 637 637 1135 624 624 1135 631 631 1135 631 631 1136 624 624 1136 105 105 1136 548 548 1137 43 43 1137 549 549 1137 549 549 1138 43 43 1138 550 550 1138 549 549 1139 550 550 1139 632 632 1139 632 632 1140 550 550 1140 634 634 1140 632 632 1141 634 634 1141 633 633 1141 633 633 1142 634 634 1142 635 635 1142 633 633 1143 635 635 1143 636 636 1143 636 636 1144 635 635 1144 630 630 1144 636 636 1145 630 630 1145 644 644 1145 644 644 1146 630 630 1146 637 637 1146 644 644 1147 637 637 1147 638 638 1147 638 638 1148 637 637 1148 631 631 1148 39 39 1149 40 40 1149 639 639 1149 639 639 1150 40 40 1150 549 549 1150 639 639 1151 549 549 1151 640 640 1151 640 640 1152 549 549 1152 632 632 1152 640 640 1153 632 632 1153 641 641 1153 641 641 1154 632 632 1154 633 633 1154 641 641 1155 633 633 1155 642 642 1155 642 642 1156 633 633 1156 636 636 1156 642 642 1157 636 636 1157 643 643 1157 643 643 1158 636 636 1158 644 644 1158 643 643 1159 644 644 1159 645 645 1159 645 645 1160 644 644 1160 638 638 1160 645 645 1161 559 559 1161 643 643 1161 643 643 1162 559 559 1162 646 646 1162 643 643 1163 646 646 1163 642 642 1163 642 642 1164 646 646 1164 647 647 1164 642 642 1165 647 647 1165 641 641 1165 641 641 1166 647 647 1166 648 648 1166 641 641 1167 648 648 1167 640 640 1167 640 640 1168 648 648 1168 561 561 1168 640 640 1169 561 561 1169 639 639 1169 639 639 1170 561 561 1170 649 649 1170 639 639 1171 649 649 1171 39 39 1171 39 39 1172 649 649 1172 36 36 1172 562 562 1173 34 34 1173 649 649 1173 649 649 1174 34 34 1174 35 35 1174 649 649 1175 35 35 1175 36 36 1175 663 663 1176 31 31 1176 661 661 1176 661 661 1177 31 31 1177 562 562 1177 661 661 1178 562 562 1178 650 650 1178 650 650 1179 562 562 1179 651 651 1179 650 650 1180 651 651 1180 652 652 1180 652 652 1181 651 651 1181 560 560 1181 652 652 1182 560 560 1182 653 653 1182 653 653 1183 560 560 1183 654 654 1183 653 653 1184 654 654 1184 655 655 1184 655 655 1185 654 654 1185 656 656 1185 655 655 1186 656 656 1186 657 657 1186 657 657 1187 656 656 1187 106 106 1187 657 657 1188 658 658 1188 655 655 1188 655 655 1189 658 658 1189 668 668 1189 655 655 1190 668 668 1190 653 653 1190 653 653 1191 668 668 1191 659 659 1191 653 653 1192 659 659 1192 652 652 1192 652 652 1193 659 659 1193 660 660 1193 652 652 1194 660 660 1194 650 650 1194 650 650 1195 660 660 1195 666 666 1195 650 650 1196 666 666 1196 661 661 1196 661 661 1197 666 666 1197 662 662 1197 661 661 1198 662 662 1198 663 663 1198 663 663 1199 662 662 1199 547 547 1199 664 664 1200 28 28 1200 670 670 1200 670 670 1201 28 28 1201 662 662 1201 670 670 1202 662 662 1202 665 665 1202 665 665 1203 662 662 1203 666 666 1203 665 665 1204 666 666 1204 673 673 1204 673 673 1205 666 666 1205 660 660 1205 673 673 1206 660 660 1206 667 667 1206 667 667 1207 660 660 1207 659 659 1207 667 667 1208 659 659 1208 675 675 1208 675 675 1209 659 659 1209 668 668 1209 675 675 1210 668 668 1210 107 107 1210 107 107 1211 668 668 1211 658 658 1211 23 23 1212 25 25 1212 669 669 1212 669 669 1213 25 25 1213 670 670 1213 669 669 1214 670 670 1214 671 671 1214 671 671 1215 670 670 1215 665 665 1215 671 671 1216 665 665 1216 672 672 1216 672 672 1217 665 665 1217 673 673 1217 672 672 1218 673 673 1218 679 679 1218 679 679 1219 673 673 1219 667 667 1219 679 679 1220 667 667 1220 674 674 1220 674 674 1221 667 667 1221 675 675 1221 674 674 1222 675 675 1222 108 108 1222 108 108 1223 675 675 1223 107 107 1223 20 20 1224 21 21 1224 676 676 1224 676 676 1225 21 21 1225 669 669 1225 676 676 1226 669 669 1226 684 684 1226 684 684 1227 669 669 1227 671 671 1227 684 684 1228 671 671 1228 677 677 1228 677 677 1229 671 671 1229 672 672 1229 677 677 1230 672 672 1230 678 678 1230 678 678 1231 672 672 1231 679 679 1231 678 678 1232 679 679 1232 681 681 1232 681 681 1233 679 679 1233 674 674 1233 681 681 1234 674 674 1234 680 680 1234 680 680 1235 674 674 1235 108 108 1235 680 680 1236 563 563 1236 681 681 1236 681 681 1237 563 563 1237 566 566 1237 681 681 1238 566 566 1238 678 678 1238 678 678 1239 566 566 1239 567 567 1239 678 678 1240 567 567 1240 677 677 1240 677 677 1241 567 567 1241 682 682 1241 677 677 1242 682 682 1242 684 684 1242 684 684 1243 682 682 1243 683 683 1243 684 684 1244 683 683 1244 676 676 1244 676 676 1245 683 683 1245 568 568 1245 676 676 1246 568 568 1246 20 20 1246 20 20 1247 568 568 1247 686 686 1247 569 569 1248 685 685 1248 568 568 1248 568 568 1249 685 685 1249 18 18 1249 568 568 1250 18 18 1250 686 686 1250 700 700 1251 687 687 1251 699 699 1251 699 699 1252 687 687 1252 569 569 1252 699 699 1253 569 569 1253 698 698 1253 698 698 1254 569 569 1254 688 688 1254 698 698 1255 688 688 1255 695 695 1255 695 695 1256 688 688 1256 689 689 1256 695 695 1257 689 689 1257 694 694 1257 694 694 1258 689 689 1258 691 691 1258 694 694 1259 691 691 1259 690 690 1259 690 690 1260 691 691 1260 565 565 1260 690 690 1261 565 565 1261 692 692 1261 692 692 1262 565 565 1262 564 564 1262 692 692 1263 693 693 1263 690 690 1263 690 690 1264 693 693 1264 708 708 1264 690 690 1265 708 708 1265 694 694 1265 694 694 1266 708 708 1266 707 707 1266 694 694 1267 707 707 1267 695 695 1267 695 695 1268 707 707 1268 696 696 1268 695 695 1269 696 696 1269 698 698 1269 698 698 1270 696 696 1270 697 697 1270 698 698 1271 697 697 1271 699 699 1271 699 699 1272 697 697 1272 701 701 1272 699 699 1273 701 701 1273 700 700 1273 700 700 1274 701 701 1274 702 702 1274 15 15 1275 16 16 1275 703 703 1275 703 703 1276 16 16 1276 701 701 1276 703 703 1277 701 701 1277 704 704 1277 704 704 1278 701 701 1278 697 697 1278 704 704 1279 697 697 1279 705 705 1279 705 705 1280 697 697 1280 696 696 1280 705 705 1281 696 696 1281 706 706 1281 706 706 1282 696 696 1282 707 707 1282 706 706 1283 707 707 1283 713 713 1283 713 713 1284 707 707 1284 708 708 1284 713 713 1285 708 708 1285 109 109 1285 109 109 1286 708 708 1286 693 693 1286 13 13 1287 709 709 1287 715 715 1287 715 715 1288 709 709 1288 703 703 1288 715 715 1289 703 703 1289 710 710 1289 710 710 1290 703 703 1290 704 704 1290 710 710 1291 704 704 1291 711 711 1291 711 711 1292 704 704 1292 705 705 1292 711 711 1293 705 705 1293 712 712 1293 712 712 1294 705 705 1294 706 706 1294 712 712 1295 706 706 1295 719 719 1295 719 719 1296 706 706 1296 713 713 1296 719 719 1297 713 713 1297 720 720 1297 720 720 1298 713 713 1298 109 109 1298 725 725 1299 12 12 1299 723 723 1299 723 723 1300 12 12 1300 715 715 1300 723 723 1301 715 715 1301 714 714 1301 714 714 1302 715 715 1302 710 710 1302 714 714 1303 710 710 1303 716 716 1303 716 716 1304 710 710 1304 711 711 1304 716 716 1305 711 711 1305 717 717 1305 717 717 1306 711 711 1306 712 712 1306 717 717 1307 712 712 1307 722 722 1307 722 722 1308 712 712 1308 719 719 1308 722 722 1309 719 719 1309 718 718 1309 718 718 1310 719 719 1310 720 720 1310 718 718 1311 721 721 1311 722 722 1311 722 722 1312 721 721 1312 571 571 1312 722 722 1313 571 571 1313 717 717 1313 717 717 1314 571 571 1314 572 572 1314 717 717 1315 572 572 1315 716 716 1315 716 716 1316 572 572 1316 575 575 1316 716 716 1317 575 575 1317 714 714 1317 714 714 1318 575 575 1318 576 576 1318 714 714 1319 576 576 1319 723 723 1319 723 723 1320 576 576 1320 724 724 1320 723 723 1321 724 724 1321 725 725 1321 725 725 1322 724 724 1322 726 726 1322 577 577 1323 8 8 1323 724 724 1323 724 724 1324 8 8 1324 9 9 1324 724 724 1325 9 9 1325 726 726 1325 4 4 1326 6 6 1326 727 727 1326 727 727 1327 6 6 1327 577 577 1327 727 727 1328 577 577 1328 734 734 1328 734 734 1329 577 577 1329 728 728 1329 734 734 1330 728 728 1330 729 729 1330 729 729 1331 728 728 1331 574 574 1331 729 729 1332 574 574 1332 730 730 1332 730 730 1333 574 574 1333 731 731 1333 730 730 1334 731 731 1334 732 732 1334 732 732 1335 731 731 1335 573 573 1335 732 732 1336 573 573 1336 110 110 1336 110 110 1337 573 573 1337 570 570 1337 110 110 1338 744 744 1338 732 732 1338 732 732 1339 744 744 1339 741 741 1339 732 732 1340 741 741 1340 730 730 1340 730 730 1341 741 741 1341 733 733 1341 730 730 1342 733 733 1342 729 729 1342 729 729 1343 733 733 1343 740 740 1343 729 729 1344 740 740 1344 734 734 1344 734 734 1345 740 740 1345 738 738 1345 734 734 1346 738 738 1346 727 727 1346 727 727 1347 738 738 1347 735 735 1347 727 727 1348 735 735 1348 4 4 1348 4 4 1349 735 735 1349 3 3 1349 1 1 1350 2 2 1350 736 736 1350 736 736 1351 2 2 1351 735 735 1351 736 736 1352 735 735 1352 737 737 1352 737 737 1353 735 735 1353 738 738 1353 737 737 1354 738 738 1354 739 739 1354 739 739 1355 738 738 1355 740 740 1355 739 739 1356 740 740 1356 580 580 1356 580 580 1357 740 740 1357 733 733 1357 580 580 1358 733 733 1358 742 742 1358 742 742 1359 733 733 1359 741 741 1359 742 742 1360 741 741 1360 743 743 1360 743 743 1361 741 741 1361 744 744 1361 546 546 1362 103 103 1362 736 736 1362 736 736 1363 103 103 1363 0 0 1363 736 736 1364 0 0 1364 1 1 1364 99 99 1365 745 745 1365 753 753 1365 753 753 1366 745 745 1366 546 546 1366 753 753 1367 546 546 1367 746 746 1367 746 746 1368 546 546 1368 582 582 1368 746 746 1369 582 582 1369 747 747 1369 747 747 1370 582 582 1370 748 748 1370 747 747 1371 748 748 1371 752 752 1371 752 752 1372 748 748 1372 581 581 1372 752 752 1373 581 581 1373 749 749 1373 749 749 1374 581 581 1374 579 579 1374 749 749 1375 579 579 1375 750 750 1375 750 750 1376 579 579 1376 578 578 1376 750 750 1377 111 111 1377 749 749 1377 749 749 1378 111 111 1378 751 751 1378 749 749 1379 751 751 1379 752 752 1379 752 752 1380 751 751 1380 584 584 1380 752 752 1381 584 584 1381 747 747 1381 747 747 1382 584 584 1382 586 586 1382 747 747 1383 586 586 1383 746 746 1383 746 746 1384 586 586 1384 587 587 1384 746 746 1385 587 587 1385 753 753 1385 753 753 1386 587 587 1386 754 754 1386 753 753 1387 754 754 1387 99 99 1387 99 99 1388 754 754 1388 98 98 1388 755 755 1389 545 545 1389 754 754 1389 754 754 1390 545 545 1390 756 756 1390 754 754 1391 756 756 1391 98 98 1391 757 757 1392 96 96 1392 768 768 1392 768 768 1393 96 96 1393 755 755 1393 768 768 1394 755 755 1394 767 767 1394 767 767 1395 755 755 1395 588 588 1395 767 767 1396 588 588 1396 765 765 1396 765 765 1397 588 588 1397 758 758 1397 765 765 1398 758 758 1398 762 762 1398 762 762 1399 758 758 1399 759 759 1399 762 762 1400 759 759 1400 760 760 1400 760 760 1401 759 759 1401 585 585 1401 760 760 1402 585 585 1402 761 761 1402 761 761 1403 585 585 1403 583 583 1403 761 761 1404 114 114 1404 760 760 1404 760 760 1405 114 114 1405 763 763 1405 760 760 1406 763 763 1406 762 762 1406 762 762 1407 763 763 1407 764 764 1407 762 762 1408 764 764 1408 765 765 1408 765 765 1409 764 764 1409 766 766 1409 765 765 1410 766 766 1410 767 767 1410 767 767 1411 766 766 1411 772 772 1411 767 767 1412 772 772 1412 768 768 1412 768 768 1413 772 772 1413 770 770 1413 768 768 1414 770 770 1414 757 757 1414 757 757 1415 770 770 1415 94 94 1415 91 91 1416 93 93 1416 769 769 1416 769 769 1417 93 93 1417 770 770 1417 769 769 1418 770 770 1418 771 771 1418 771 771 1419 770 770 1419 772 772 1419 771 771 1420 772 772 1420 592 592 1420 592 592 1421 772 772 1421 766 766 1421 592 592 1422 766 766 1422 591 591 1422 591 591 1423 766 766 1423 764 764 1423 591 591 1424 764 764 1424 589 589 1424 589 589 1425 764 764 1425 763 763 1425 589 589 1426 763 763 1426 113 113 1426 113 113 1427 763 763 1427 114 114 1427 594 594 1428 89 89 1428 769 769 1428 769 769 1429 89 89 1429 773 773 1429 769 769 1430 773 773 1430 91 91 1430 87 87 1431 88 88 1431 782 782 1431 782 782 1432 88 88 1432 594 594 1432 782 782 1433 594 594 1433 774 774 1433 774 774 1434 594 594 1434 593 593 1434 774 774 1435 593 593 1435 775 775 1435 775 775 1436 593 593 1436 776 776 1436 775 775 1437 776 776 1437 777 777 1437 777 777 1438 776 776 1438 590 590 1438 777 777 1439 590 590 1439 779 779 1439 779 779 1440 590 590 1440 778 778 1440 779 779 1441 778 778 1441 118 118 1441 118 118 1442 778 778 1442 112 112 1442 118 118 1443 116 116 1443 779 779 1443 779 779 1444 116 116 1444 780 780 1444 779 779 1445 780 780 1445 777 777 1445 777 777 1446 780 780 1446 596 596 1446 777 777 1447 596 596 1447 775 775 1447 775 775 1448 596 596 1448 597 597 1448 775 775 1449 597 597 1449 774 774 1449 774 774 1450 597 597 1450 781 781 1450 774 774 1451 781 781 1451 782 782 1451 782 782 1452 781 781 1452 785 785 1452 782 782 1453 785 785 1453 87 87 1453 87 87 1454 785 785 1454 783 783 1454 787 787 1455 784 784 1455 785 785 1455 785 785 1456 784 784 1456 84 84 1456 785 785 1457 84 84 1457 783 783 1457 81 81 1458 544 544 1458 797 797 1458 797 797 1459 544 544 1459 787 787 1459 797 797 1460 787 787 1460 786 786 1460 786 786 1461 787 787 1461 788 788 1461 786 786 1462 788 788 1462 789 789 1462 789 789 1463 788 788 1463 598 598 1463 789 789 1464 598 598 1464 790 790 1464 790 790 1465 598 598 1465 791 791 1465 790 790 1466 791 791 1466 792 792 1466 792 792 1467 791 791 1467 595 595 1467 792 792 1468 595 595 1468 793 793 1468 793 793 1469 595 595 1469 115 115 1469 793 793 1470 794 794 1470 792 792 1470 792 792 1471 794 794 1471 804 804 1471 792 792 1472 804 804 1472 790 790 1472 790 790 1473 804 804 1473 795 795 1473 790 790 1474 795 795 1474 789 789 1474 789 789 1475 795 795 1475 796 796 1475 789 789 1476 796 796 1476 786 786 1476 786 786 1477 796 796 1477 801 801 1477 786 786 1478 801 801 1478 797 797 1478 797 797 1479 801 801 1479 798 798 1479 797 797 1480 798 798 1480 81 81 1480 81 81 1481 798 798 1481 80 80 1481 805 805 1482 78 78 1482 799 799 1482 799 799 1483 78 78 1483 798 798 1483 799 799 1484 798 798 1484 800 800 1484 800 800 1485 798 798 1485 801 801 1485 800 800 1486 801 801 1486 802 802 1486 802 802 1487 801 801 1487 796 796 1487 802 802 1488 796 796 1488 803 803 1488 803 803 1489 796 796 1489 795 795 1489 803 803 1490 795 795 1490 600 600 1490 600 600 1491 795 795 1491 804 804 1491 600 600 1492 804 804 1492 599 599 1492 599 599 1493 804 804 1493 794 794 1493 807 807 1494 73 73 1494 799 799 1494 799 799 1495 73 73 1495 75 75 1495 799 799 1496 75 75 1496 805 805 1496 71 71 1497 543 543 1497 806 806 1497 806 806 1498 543 543 1498 807 807 1498 806 806 1499 807 807 1499 816 816 1499 816 816 1500 807 807 1500 604 604 1500 816 816 1501 604 604 1501 808 808 1501 808 808 1502 604 604 1502 603 603 1502 808 808 1503 603 603 1503 809 809 1503 809 809 1504 603 603 1504 810 810 1504 809 809 1505 810 810 1505 813 813 1505 813 813 1506 810 810 1506 602 602 1506 813 813 1507 602 602 1507 811 811 1507 811 811 1508 602 602 1508 601 601 1508 811 811 1509 812 812 1509 813 813 1509 813 813 1510 812 812 1510 821 821 1510 813 813 1511 821 821 1511 809 809 1511 809 809 1512 821 821 1512 814 814 1512 809 809 1513 814 814 1513 808 808 1513 808 808 1514 814 814 1514 815 815 1514 808 808 1515 815 815 1515 816 816 1515 816 816 1516 815 815 1516 817 817 1516 816 816 1517 817 817 1517 806 806 1517 806 806 1518 817 817 1518 818 818 1518 806 806 1519 818 818 1519 71 71 1519 71 71 1520 818 818 1520 70 70 1520 68 68 1521 69 69 1521 825 825 1521 825 825 1522 69 69 1522 818 818 1522 825 825 1523 818 818 1523 826 826 1523 826 826 1524 818 818 1524 817 817 1524 826 826 1525 817 817 1525 819 819 1525 819 819 1526 817 817 1526 815 815 1526 819 819 1527 815 815 1527 820 820 1527 820 820 1528 815 815 1528 814 814 1528 820 820 1529 814 814 1529 827 827 1529 827 827 1530 814 814 1530 821 821 1530 827 827 1531 821 821 1531 822 822 1531 822 822 1532 821 821 1532 812 812 1532 835 835 1533 823 823 1533 824 824 1533 824 824 1534 823 823 1534 825 825 1534 824 824 1535 825 825 1535 834 834 1535 834 834 1536 825 825 1536 826 826 1536 834 834 1537 826 826 1537 832 832 1537 832 832 1538 826 826 1538 819 819 1538 832 832 1539 819 819 1539 829 829 1539 829 829 1540 819 819 1540 820 820 1540 829 829 1541 820 820 1541 828 828 1541 828 828 1542 820 820 1542 827 827 1542 828 828 1543 827 827 1543 120 120 1543 120 120 1544 827 827 1544 822 822 1544 120 120 1545 119 119 1545 828 828 1545 828 828 1546 119 119 1546 830 830 1546 828 828 1547 830 830 1547 829 829 1547 829 829 1548 830 830 1548 831 831 1548 829 829 1549 831 831 1549 832 832 1549 832 832 1550 831 831 1550 833 833 1550 832 832 1551 833 833 1551 834 834 1551 834 834 1552 833 833 1552 839 839 1552 834 834 1553 839 839 1553 824 824 1553 824 824 1554 839 839 1554 542 542 1554 824 824 1555 542 542 1555 835 835 1555 835 835 1556 542 542 1556 66 66 1556 63 63 1557 836 836 1557 837 837 1557 837 837 1558 836 836 1558 542 542 1558 837 837 1559 542 542 1559 838 838 1559 838 838 1560 542 542 1560 839 839 1560 838 838 1561 839 839 1561 840 840 1561 840 840 1562 839 839 1562 833 833 1562 840 840 1563 833 833 1563 608 608 1563 608 608 1564 833 833 1564 831 831 1564 608 608 1565 831 831 1565 607 607 1565 607 607 1566 831 831 1566 830 830 1566 607 607 1567 830 830 1567 122 122 1567 122 122 1568 830 830 1568 119 119 1568 843 843 1569 61 61 1569 837 837 1569 837 837 1570 61 61 1570 841 841 1570 837 837 1571 841 841 1571 63 63 1571 57 57 1572 58 58 1572 842 842 1572 842 842 1573 58 58 1573 843 843 1573 842 842 1574 843 843 1574 844 844 1574 844 844 1575 843 843 1575 845 845 1575 844 844 1576 845 845 1576 852 852 1576 852 852 1577 845 845 1577 846 846 1577 852 852 1578 846 846 1578 851 851 1578 851 851 1579 846 846 1579 847 847 1579 851 851 1580 847 847 1580 848 848 1580 848 848 1581 847 847 1581 606 606 1581 848 848 1582 606 606 1582 121 121 1582 121 121 1583 606 606 1583 605 605 1583 121 121 1584 849 849 1584 848 848 1584 848 848 1585 849 849 1585 850 850 1585 848 848 1586 850 850 1586 851 851 1586 851 851 1587 850 850 1587 858 858 1587 851 851 1588 858 858 1588 852 852 1588 852 852 1589 858 858 1589 857 857 1589 852 852 1590 857 857 1590 844 844 1590 844 844 1591 857 857 1591 856 856 1591 844 844 1592 856 856 1592 842 842 1592 842 842 1593 856 856 1593 853 853 1593 842 842 1594 853 853 1594 57 57 1594 57 57 1595 853 853 1595 56 56 1595 53 53 1596 854 854 1596 862 862 1596 862 862 1597 854 854 1597 853 853 1597 862 862 1598 853 853 1598 855 855 1598 855 855 1599 853 853 1599 856 856 1599 855 855 1600 856 856 1600 864 864 1600 864 864 1601 856 856 1601 857 857 1601 864 864 1602 857 857 1602 865 865 1602 865 865 1603 857 857 1603 858 858 1603 865 865 1604 858 858 1604 859 859 1604 859 859 1605 858 858 1605 850 850 1605 859 859 1606 850 850 1606 124 124 1606 124 124 1607 850 850 1607 849 849 1607 860 860 1608 541 541 1608 861 861 1608 861 861 1609 541 541 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 855 855 1611 870 870 1612 855 855 1612 863 863 1612 863 863 1613 855 855 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 859 859 1617 867 867 1618 859 859 1618 123 123 1618 123 123 1619 859 859 1619 124 124 1619 123 123 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 610 610 1621 867 867 1622 610 610 1622 868 868 1622 868 868 1623 610 610 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 612 612 1629 861 861 1630 612 612 1630 860 860 1630 860 860 1631 612 612 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.STL b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.STL new file mode 100755 index 0000000..9da4621 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.STL differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.dae new file mode 100755 index 0000000..dc21009 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/right_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:37:18 2016 GMT + Tue Jan 19 20:37:18 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00178646 0.00968583 -0.00173009 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 0.00090033 0.00992115 -0.000871921 -0.0010504 0.00992115 0.000683737 0.000649718 0.00992115 -0.00107178 0.00155056 0.00968583 -0.00194434 0.00190833 0.00929776 -0.00314799 0.00229522 0.00929776 -0.00287811 0.000507328 0.00992115 -0.00114606 0.00128919 0.00968583 -0.00212665 0.00149011 0.00929776 -0.00336618 0.00249738 0.00876307 -0.00411968 0.00100666 0.00968583 -0.00227405 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000356608 0.00992115 -0.00120153 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 0.000200032 0.00992115 -0.00123727 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 4.01713e-05 0.00992115 -0.00125269 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.000120349 0.00992115 -0.00124754 -0.00567642 0.00535827 0.00625037 -0.000553387 0.00968583 -0.00242455 -0.0002388 0.00968583 -0.00247541 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000432857 0.00992115 -0.00117621 -0.000278893 0.00992115 -0.00122191 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -5.1238e-19 0.01 -2.22804e-18 -0.000579714 0.00992115 -0.0011112 -0.00115029 0.00968583 -0.00220488 -0.00170272 0.00929776 -0.00326379 -0.000858888 0.00968583 -0.00233388 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000717052 0.00992115 -0.00102795 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.00167194 0.00968583 -0.001841 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.0010504 0.00992115 -0.000683737 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00403752 0.00876307 -0.00262813 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00434045 0.00876307 -0.00209025 -0.00308521 0.00929776 -0.00200825 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00112921 0.00992115 -0.000543801 -0.00349371 0.00929776 -0.00115999 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 -0.0073126 -0.00637424 -0.00242795 -0.00118948 0.00992115 -0.000394935 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00244104 0.00968583 -0.000475392 -0.00236021 0.00968583 -0.000783642 -0.0047287 0.00876307 -0.000920914 -0.00457211 0.00876307 -0.00151805 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.00828758 0.00535827 -0.00161401 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00964173 -0.00187381 -0.00187773 -0.00932245 -0.00187381 -0.00309527 -0.00933518 -0.00309017 -0.00181803 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 -8.03013e-05 -0.00123022 0.00992115 -0.000239585 -0.00248179 0.00968583 -0.000159336 -0.00367368 0.00929776 -0.000235858 -0.00361336 0.00929776 -0.000703702 -0.00576946 0.00809017 -0.0011236 -0.0076893 0.00637424 -0.00049367 -0.00842593 0.00535827 -0.000540963 -0.00949102 0.00309017 -0.000609344 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00964173 0.00187381 -0.00187773 -0.00979622 0.000627905 -0.00190781 -0.00980269 -0.00187381 -0.000629354 -0.00888141 -0.00425779 -0.00172965 -0.00828758 -0.00535827 -0.00161401 -0.0076893 -0.00637424 -0.00049367 -0.00683141 -0.00728969 -0.000438591 -0.00125076 0.00992115 8.03013e-05 -0.00367368 0.00929776 0.000235858 -0.00480764 0.00876307 0.000308661 -0.00480764 0.00876307 -0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00683141 0.00728969 -0.000438591 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00980269 0.00187381 -0.000629354 -0.00995976 0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00995976 -0.000627905 -0.000639438 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.00586578 -0.00809017 0.000376595 -0.00480764 -0.00876307 0.000308661 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00248179 0.00968583 0.000159336 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00123022 0.00992115 0.000239585 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00124304 -0.00992115 0.000160273 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 1.73703e-18 -0.01 2.22804e-18 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.0047287 -0.00876307 -0.000920914 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00346067 0.00876307 -0.00335148 0.00216688 0.00968583 -0.00122036 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 -0.000159336 -0.00361336 -0.00929776 -0.000703702 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00419761 0.00876307 -0.00236405 0.00320754 0.00929776 -0.00180645 0.00341221 0.00929776 -0.00138145 0.00230515 0.00968583 -0.000933251 0.00240556 0.00968583 -0.000630813 0.00121234 0.00992115 -0.000317913 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 -2.00175e-18 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00349371 -0.00929776 -0.00115999 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00125076 -0.00992115 -8.03013e-05 0.00356085 0.00929776 -0.000933765 0.00365102 0.00929776 -0.000470747 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00123022 -0.00992115 -0.000239585 0.00121234 0.00992115 0.000317913 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 -1.74389e-18 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00465998 0.00876307 -0.00122199 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 -0.00224062 -0.00968583 -0.00107902 -0.00112921 -0.00992115 -0.000543801 -0.00118948 -0.00992115 -0.000394935 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00368125 0.00929776 -1.45853e-18 0.0058296 0.00809017 -0.000751643 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00189364 -0.00968583 -0.00161208 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.00481754 0.00876307 -1.15016e-18 0.00587785 0.00809017 -8.23663e-19 0.00678927 0.00728969 -0.000875379 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00684547 0.00728969 -4.84171e-19 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.00770513 0.00637424 -1.37043e-19 0.00764187 0.00637424 -0.00098531 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 -0.0014228 -0.00968583 -0.00203969 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 2.12245e-19 0.00904827 0.00425779 5.58187e-19 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000858888 -0.00968583 -0.00233388 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00951057 0.00309017 8.95325e-19 0.00943248 0.00309017 -0.00121618 0.00950161 0.00187381 -0.00249162 0.00965386 0.000627905 -0.00253154 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000432857 -0.00992115 -0.00117621 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00974223 0.00187381 -0.00125612 0.00989833 0.000627905 -0.00127625 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 7.9709e-05 -0.00968583 -0.00248562 -0.000120349 -0.00992115 -0.00124754 -0.000278893 -0.00992115 -0.00122191 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00982287 0.00187381 1.21834e-18 0.00998027 0.000627905 1.52215e-18 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 0.000396909 -0.00968583 -0.00245502 4.01713e-05 -0.00992115 -0.00125269 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00989833 -0.000627905 -0.00127625 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000707591 -0.00968583 -0.00238411 0.000200032 -0.00992115 -0.00123727 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00998027 -0.000627905 1.80195e-18 0.00982287 -0.00187381 2.05333e-18 0.00919952 -0.00309017 -0.0024124 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00943248 -0.00309017 -0.00121618 0.00951057 -0.00309017 2.27233e-18 0.00875235 -0.00425779 -0.00229514 0.00897398 -0.00425779 -0.00115707 0.00816714 -0.00535827 -0.00214168 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00745314 -0.00637424 -0.00195444 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00264442 -0.00929776 -0.00256098 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00904827 -0.00425779 2.45549e-18 0.00837396 -0.00535827 -0.0010797 0.00662159 -0.00728969 -0.00173639 0.00544828 -0.00809017 -0.00220576 0.00386084 -0.00876307 -0.00288142 0.00419761 -0.00876307 -0.00236405 0.0029502 -0.00929776 -0.00220179 0.000649718 -0.00992115 -0.00107178 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 2.59993e-18 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00446546 -0.00876307 -0.00180786 0.00090033 -0.00992115 -0.000871921 0.00178646 -0.00968583 -0.00173009 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00684547 -0.00728969 2.76417e-18 0.00770513 -0.00637424 2.70337e-18 0.00678927 -0.00728969 -0.000875379 0.0058296 -0.00809017 -0.000751643 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00230515 -0.00968583 -0.000933251 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 0.00477798 -0.00876307 -0.000616053 0.00481754 -0.00876307 2.75473e-18 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 0.00109205 -0.00992115 -0.000615032 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00246648 -0.00968583 -0.000318018 0.00240556 -0.00968583 -0.000630813 0.00121234 -0.00992115 -0.000317913 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00368125 -0.00929776 2.68463e-18 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 2.57219e-18 0.00125333 -0.00992115 2.41919e-18 -0.00123022 -0.00992115 0.000239585 -0.00248179 -0.00968583 0.000159336 -0.00367368 -0.00929776 -0.000235858 -0.00457211 -0.00876307 -0.00151805 -0.00557841 -0.00809017 -0.00185216 -0.00529576 -0.00809017 -0.0025503 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 0.0029502 0.00929776 -0.00220179 0.00116173 0.00992115 -0.000470334 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00367368 -0.00929776 0.000235858 -0.00586578 -0.00809017 -0.000376595 -0.00480764 -0.00876307 -0.000308661 -0.00671923 -0.00728969 -0.00130857 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00264442 0.00929776 -0.00256098 0.00199303 0.00968583 -0.00148744 0.00109205 0.00992115 -0.000615032 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00587785 -0.00809017 2.78138e-18 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 1.42751e-17 0.0640702 0.997945 -1.42751e-17 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1133 1133 0 0 0 0 292 292 0 1 1 1 4 4 1 2 2 1 2 2 2 4 4 2 57 57 2 3 3 3 57 57 3 4 4 3 5 5 4 428 428 4 1176 1176 4 3 3 5 4 4 5 7 7 5 7 7 6 4 4 6 1 1 6 7 7 7 1 1 7 9 9 7 6 6 8 57 57 8 3 3 8 6 6 9 3 3 9 11 11 9 11 11 10 3 3 10 7 7 10 11 11 11 7 7 11 8 8 11 8 8 12 7 7 12 9 9 12 8 8 13 9 9 13 13 13 13 10 10 14 57 57 14 6 6 14 10 10 15 6 6 15 14 14 15 14 14 16 6 6 16 11 11 16 14 14 17 11 11 17 12 12 17 12 12 18 11 11 18 8 8 18 12 12 19 8 8 19 15 15 19 15 15 20 8 8 20 13 13 20 15 15 21 13 13 21 1087 1087 21 17 17 22 57 57 22 10 10 22 17 17 23 10 10 23 18 18 23 18 18 24 10 10 24 14 14 24 18 18 25 14 14 25 19 19 25 19 19 26 14 14 26 12 12 26 19 19 27 12 12 27 22 22 27 22 22 28 12 12 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1087 1087 30 16 16 31 1087 1087 31 1086 1086 31 24 24 32 57 57 32 17 17 32 24 24 33 17 17 33 26 26 33 26 26 34 17 17 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1086 1086 42 30 30 43 1086 1086 43 23 23 43 31 31 44 57 57 44 24 24 44 31 31 45 24 24 45 25 25 45 25 25 46 24 24 46 26 26 46 25 25 47 26 26 47 32 32 47 32 32 48 26 26 48 27 27 48 32 32 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 35 35 53 35 35 54 21 21 54 30 30 54 35 35 55 30 30 55 37 37 55 37 37 56 30 30 56 23 23 56 37 37 57 23 23 57 1085 1085 57 38 38 58 57 57 58 31 31 58 1117 1117 59 410 410 59 39 39 59 38 38 60 31 31 60 41 41 60 41 41 61 31 31 61 25 25 61 41 41 62 25 25 62 42 42 62 42 42 63 25 25 63 32 32 63 42 42 64 32 32 64 44 44 64 44 44 65 32 32 65 28 28 65 44 44 66 28 28 66 33 33 66 33 33 67 28 28 67 29 29 67 33 33 68 29 29 68 34 34 68 34 34 69 29 29 69 35 35 69 34 34 70 35 35 70 49 49 70 49 49 71 35 35 71 37 37 71 49 49 72 37 37 72 36 36 72 36 36 73 37 37 73 1085 1085 73 36 36 74 1085 1085 74 1083 1083 74 52 52 75 57 57 75 38 38 75 39 39 76 411 411 76 395 395 76 52 52 77 38 38 77 40 40 77 40 40 78 38 38 78 41 41 78 40 40 79 41 41 79 43 43 79 43 43 80 41 41 80 42 42 80 43 43 81 42 42 81 53 53 81 53 53 82 42 42 82 44 44 82 53 53 83 44 44 83 45 45 83 45 45 84 44 44 84 33 33 84 45 45 85 33 33 85 46 46 85 46 46 86 33 33 86 34 34 86 46 46 87 34 34 87 47 47 87 47 47 88 34 34 88 49 49 88 47 47 89 49 49 89 48 48 89 48 48 90 49 49 90 36 36 90 48 48 91 36 36 91 50 50 91 50 50 92 36 36 92 1083 1083 92 50 50 93 1083 1083 93 1082 1082 93 51 51 94 57 57 94 52 52 94 395 395 95 379 379 95 1120 1120 95 51 51 96 52 52 96 61 61 96 61 61 97 52 52 97 40 40 97 61 61 98 40 40 98 62 62 98 62 62 99 40 40 99 43 43 99 62 62 100 43 43 100 63 63 100 63 63 101 43 43 101 53 53 101 63 63 102 53 53 102 65 65 102 65 65 103 53 53 103 45 45 103 65 65 104 45 45 104 54 54 104 54 54 105 45 45 105 46 46 105 54 54 106 46 46 106 67 67 106 67 67 107 46 46 107 47 47 107 67 67 108 47 47 108 55 55 108 55 55 109 47 47 109 48 48 109 55 55 110 48 48 110 68 68 110 68 68 111 48 48 111 50 50 111 68 68 112 50 50 112 70 70 112 70 70 113 50 50 113 1082 1082 113 70 70 114 1082 1082 114 56 56 114 58 58 115 57 57 115 51 51 115 1120 1120 116 380 380 116 1121 1121 116 58 58 117 51 51 117 59 59 117 59 59 118 51 51 118 61 61 118 59 59 119 61 61 119 60 60 119 60 60 120 61 61 120 62 62 120 60 60 121 62 62 121 64 64 121 64 64 122 62 62 122 63 63 122 64 64 123 63 63 123 78 78 123 78 78 124 63 63 124 65 65 124 78 78 125 65 65 125 79 79 125 79 79 126 65 65 126 54 54 126 79 79 127 54 54 127 66 66 127 66 66 128 54 54 128 67 67 128 66 66 129 67 67 129 81 81 129 81 81 130 67 67 130 55 55 130 81 81 131 55 55 131 83 83 131 83 83 132 55 55 132 68 68 132 83 83 133 68 68 133 69 69 133 69 69 134 68 68 134 70 70 134 69 69 135 70 70 135 71 71 135 71 71 136 70 70 136 56 56 136 71 71 137 56 56 137 72 72 137 73 73 138 57 57 138 58 58 138 1121 1121 139 74 74 139 75 75 139 73 73 140 58 58 140 89 89 140 89 89 141 58 58 141 59 59 141 89 89 142 59 59 142 91 91 142 91 91 143 59 59 143 60 60 143 91 91 144 60 60 144 76 76 144 76 76 145 60 60 145 64 64 145 76 76 146 64 64 146 77 77 146 77 77 147 64 64 147 78 78 147 77 77 148 78 78 148 93 93 148 93 93 149 78 78 149 79 79 149 93 93 150 79 79 150 80 80 150 80 80 151 79 79 151 66 66 151 80 80 152 66 66 152 95 95 152 95 95 153 66 66 153 81 81 153 95 95 154 81 81 154 82 82 154 82 82 155 81 81 155 83 83 155 82 82 156 83 83 156 84 84 156 84 84 157 83 83 157 69 69 157 84 84 158 69 69 158 85 85 158 85 85 159 69 69 159 71 71 159 85 85 160 71 71 160 86 86 160 86 86 161 71 71 161 72 72 161 86 86 162 72 72 162 100 100 162 101 101 163 57 57 163 73 73 163 75 75 164 342 342 164 87 87 164 101 101 165 73 73 165 88 88 165 88 88 166 73 73 166 89 89 166 88 88 167 89 89 167 90 90 167 90 90 168 89 89 168 91 91 168 90 90 169 91 91 169 104 104 169 104 104 170 91 91 170 76 76 170 104 104 171 76 76 171 105 105 171 105 105 172 76 76 172 77 77 172 105 105 173 77 77 173 92 92 173 92 92 174 77 77 174 93 93 174 92 92 175 93 93 175 94 94 175 94 94 176 93 93 176 80 80 176 94 94 177 80 80 177 107 107 177 107 107 178 80 80 178 95 95 178 107 107 179 95 95 179 109 109 179 109 109 180 95 95 180 82 82 180 109 109 181 82 82 181 96 96 181 96 96 182 82 82 182 84 84 182 96 96 183 84 84 183 97 97 183 97 97 184 84 84 184 85 85 184 97 97 185 85 85 185 98 98 185 98 98 186 85 85 186 86 86 186 98 98 187 86 86 187 99 99 187 99 99 188 86 86 188 100 100 188 99 99 189 100 100 189 1079 1079 189 114 114 190 57 57 190 101 101 190 87 87 191 341 341 191 1123 1123 191 114 114 192 101 101 192 102 102 192 102 102 193 101 101 193 88 88 193 102 102 194 88 88 194 103 103 194 103 103 195 88 88 195 90 90 195 103 103 196 90 90 196 117 117 196 117 117 197 90 90 197 104 104 197 117 117 198 104 104 198 120 120 198 120 120 199 104 104 199 105 105 199 120 120 200 105 105 200 106 106 200 106 106 201 105 105 201 92 92 201 106 106 202 92 92 202 121 121 202 121 121 203 92 92 203 94 94 203 121 121 204 94 94 204 123 123 204 123 123 205 94 94 205 107 107 205 123 123 206 107 107 206 108 108 206 108 108 207 107 107 207 109 109 207 108 108 208 109 109 208 127 127 208 127 127 209 109 109 209 96 96 209 127 127 210 96 96 210 110 110 210 110 110 211 96 96 211 97 97 211 110 110 212 97 97 212 111 111 212 111 111 213 97 97 213 98 98 213 111 111 214 98 98 214 129 129 214 129 129 215 98 98 215 99 99 215 129 129 216 99 99 216 112 112 216 112 112 217 99 99 217 1079 1079 217 112 112 218 1079 1079 218 1077 1077 218 113 113 219 57 57 219 114 114 219 1123 1123 220 333 333 220 1125 1125 220 113 113 221 114 114 221 115 115 221 115 115 222 114 114 222 102 102 222 115 115 223 102 102 223 133 133 223 133 133 224 102 102 224 103 103 224 133 133 225 103 103 225 116 116 225 116 116 226 103 103 226 117 117 226 116 116 227 117 117 227 118 118 227 118 118 228 117 117 228 120 120 228 118 118 229 120 120 229 119 119 229 119 119 230 120 120 230 106 106 230 119 119 231 106 106 231 122 122 231 122 122 232 106 106 232 121 121 232 122 122 233 121 121 233 124 124 233 124 124 234 121 121 234 123 123 234 124 124 235 123 123 235 136 136 235 136 136 236 123 123 236 108 108 236 136 136 237 108 108 237 125 125 237 125 125 238 108 108 238 127 127 238 125 125 239 127 127 239 126 126 239 126 126 240 127 127 240 110 110 240 126 126 241 110 110 241 137 137 241 137 137 242 110 110 242 111 111 242 137 137 243 111 111 243 128 128 243 128 128 244 111 111 244 129 129 244 128 128 245 129 129 245 138 138 245 138 138 246 129 129 246 112 112 246 138 138 247 112 112 247 140 140 247 140 140 248 112 112 248 1077 1077 248 140 140 249 1077 1077 249 141 141 249 142 142 250 57 57 250 113 113 250 1125 1125 251 313 313 251 1126 1126 251 142 142 252 113 113 252 130 130 252 130 130 253 113 113 253 115 115 253 130 130 254 115 115 254 131 131 254 131 131 255 115 115 255 133 133 255 131 131 256 133 133 256 132 132 256 132 132 257 133 133 257 116 116 257 132 132 258 116 116 258 145 145 258 145 145 259 116 116 259 118 118 259 145 145 260 118 118 260 147 147 260 147 147 261 118 118 261 119 119 261 147 147 262 119 119 262 148 148 262 148 148 263 119 119 263 122 122 263 148 148 264 122 122 264 149 149 264 149 149 265 122 122 265 124 124 265 149 149 266 124 124 266 134 134 266 134 134 267 124 124 267 136 136 267 134 134 268 136 136 268 135 135 268 135 135 269 136 136 269 125 125 269 135 135 270 125 125 270 152 152 270 152 152 271 125 125 271 126 126 271 152 152 272 126 126 272 154 154 272 154 154 273 126 126 273 137 137 273 154 154 274 137 137 274 155 155 274 155 155 275 137 137 275 128 128 275 155 155 276 128 128 276 156 156 276 156 156 277 128 128 277 138 138 277 156 156 278 138 138 278 139 139 278 139 139 279 138 138 279 140 140 279 139 139 280 140 140 280 158 158 280 158 158 281 140 140 281 141 141 281 158 158 282 141 141 282 159 159 282 161 161 283 57 57 283 142 142 283 1126 1126 284 312 312 284 162 162 284 161 161 285 142 142 285 165 165 285 165 165 286 142 142 286 130 130 286 165 165 287 130 130 287 143 143 287 143 143 288 130 130 288 131 131 288 143 143 289 131 131 289 167 167 289 167 167 290 131 131 290 132 132 290 167 167 291 132 132 291 144 144 291 144 144 292 132 132 292 145 145 292 144 144 293 145 145 293 146 146 293 146 146 294 145 145 294 147 147 294 146 146 295 147 147 295 171 171 295 171 171 296 147 147 296 148 148 296 171 171 297 148 148 297 172 172 297 172 172 298 148 148 298 149 149 298 172 172 299 149 149 299 173 173 299 173 173 300 149 149 300 134 134 300 173 173 301 134 134 301 150 150 301 150 150 302 134 134 302 135 135 302 150 150 303 135 135 303 151 151 303 151 151 304 135 135 304 152 152 304 151 151 305 152 152 305 153 153 305 153 153 306 152 152 306 154 154 306 153 153 307 154 154 307 175 175 307 175 175 308 154 154 308 155 155 308 175 175 309 155 155 309 177 177 309 177 177 310 155 155 310 156 156 310 177 177 311 156 156 311 179 179 311 179 179 312 156 156 312 139 139 312 179 179 313 139 139 313 157 157 313 157 157 314 139 139 314 158 158 314 157 157 315 158 158 315 180 180 315 180 180 316 158 158 316 159 159 316 180 180 317 159 159 317 160 160 317 183 183 318 57 57 318 161 161 318 162 162 319 306 306 319 163 163 319 183 183 320 161 161 320 164 164 320 164 164 321 161 161 321 165 165 321 164 164 322 165 165 322 186 186 322 186 186 323 165 165 323 143 143 323 186 186 324 143 143 324 166 166 324 166 166 325 143 143 325 167 167 325 166 166 326 167 167 326 187 187 326 187 187 327 167 167 327 144 144 327 187 187 328 144 144 328 168 168 328 168 168 329 144 144 329 146 146 329 168 168 330 146 146 330 169 169 330 169 169 331 146 146 331 171 171 331 169 169 332 171 171 332 170 170 332 170 170 333 171 171 333 172 172 333 170 170 334 172 172 334 191 191 334 191 191 335 172 172 335 173 173 335 191 191 336 173 173 336 192 192 336 192 192 337 173 173 337 150 150 337 192 192 338 150 150 338 193 193 338 193 193 339 150 150 339 151 151 339 193 193 340 151 151 340 194 194 340 194 194 341 151 151 341 153 153 341 194 194 342 153 153 342 174 174 342 174 174 343 153 153 343 175 175 343 174 174 344 175 175 344 176 176 344 176 176 345 175 175 345 177 177 345 176 176 346 177 177 346 178 178 346 178 178 347 177 177 347 179 179 347 178 178 348 179 179 348 196 196 348 196 196 349 179 179 349 157 157 349 196 196 350 157 157 350 197 197 350 197 197 351 157 157 351 180 180 351 197 197 352 180 180 352 181 181 352 181 181 353 180 180 353 160 160 353 181 181 354 160 160 354 1076 1076 354 182 182 355 57 57 355 183 183 355 163 163 356 294 294 356 293 293 356 182 182 357 183 183 357 184 184 357 184 184 358 183 183 358 164 164 358 184 184 359 164 164 359 185 185 359 185 185 360 164 164 360 186 186 360 185 185 361 186 186 361 203 203 361 203 203 362 186 186 362 166 166 362 203 203 363 166 166 363 204 204 363 204 204 364 166 166 364 187 187 364 204 204 365 187 187 365 205 205 365 205 205 366 187 187 366 168 168 366 205 205 367 168 168 367 188 188 367 188 188 368 168 168 368 169 169 368 188 188 369 169 169 369 189 189 369 189 189 370 169 169 370 170 170 370 189 189 371 170 170 371 208 208 371 208 208 372 170 170 372 191 191 372 208 208 373 191 191 373 190 190 373 190 190 374 191 191 374 192 192 374 190 190 375 192 192 375 209 209 375 209 209 376 192 192 376 193 193 376 209 209 377 193 193 377 210 210 377 210 210 378 193 193 378 194 194 378 210 210 379 194 194 379 212 212 379 212 212 380 194 194 380 174 174 380 212 212 381 174 174 381 195 195 381 195 195 382 174 174 382 176 176 382 195 195 383 176 176 383 213 213 383 213 213 384 176 176 384 178 178 384 213 213 385 178 178 385 214 214 385 214 214 386 178 178 386 196 196 386 214 214 387 196 196 387 215 215 387 215 215 388 196 196 388 197 197 388 215 215 389 197 197 389 198 198 389 198 198 390 197 197 390 181 181 390 198 198 391 181 181 391 199 199 391 199 199 392 181 181 392 1076 1076 392 199 199 393 1076 1076 393 1074 1074 393 200 200 394 57 57 394 182 182 394 293 293 395 295 295 395 1130 1130 395 200 200 396 182 182 396 221 221 396 221 221 397 182 182 397 184 184 397 221 221 398 184 184 398 201 201 398 201 201 399 184 184 399 185 185 399 201 201 400 185 185 400 202 202 400 202 202 401 185 185 401 203 203 401 202 202 402 203 203 402 224 224 402 224 224 403 203 203 403 204 204 403 224 224 404 204 204 404 225 225 404 225 225 405 204 204 405 205 205 405 225 225 406 205 205 406 226 226 406 226 226 407 205 205 407 188 188 407 226 226 408 188 188 408 206 206 408 206 206 409 188 188 409 189 189 409 206 206 410 189 189 410 207 207 410 207 207 411 189 189 411 208 208 411 207 207 412 208 208 412 228 228 412 228 228 413 208 208 413 190 190 413 228 228 414 190 190 414 231 231 414 231 231 415 190 190 415 209 209 415 231 231 416 209 209 416 234 234 416 234 234 417 209 209 417 210 210 417 234 234 418 210 210 418 236 236 418 236 236 419 210 210 419 212 212 419 236 236 420 212 212 420 211 211 420 211 211 421 212 212 421 195 195 421 211 211 422 195 195 422 239 239 422 239 239 423 195 195 423 213 213 423 239 239 424 213 213 424 240 240 424 240 240 425 213 213 425 214 214 425 240 240 426 214 214 426 241 241 426 241 241 427 214 214 427 215 215 427 241 241 428 215 215 428 216 216 428 216 216 429 215 215 429 198 198 429 216 216 430 198 198 430 245 245 430 245 245 431 198 198 431 199 199 431 245 245 432 199 199 432 217 217 432 217 217 433 199 199 433 1074 1074 433 217 217 434 1074 1074 434 218 218 434 248 248 435 57 57 435 200 200 435 1130 1130 436 219 219 436 220 220 436 248 248 437 200 200 437 249 249 437 249 249 438 200 200 438 221 221 438 249 249 439 221 221 439 222 222 439 222 222 440 221 221 440 201 201 440 222 222 441 201 201 441 223 223 441 223 223 442 201 201 442 202 202 442 223 223 443 202 202 443 251 251 443 251 251 444 202 202 444 224 224 444 251 251 445 224 224 445 252 252 445 252 252 446 224 224 446 225 225 446 252 252 447 225 225 447 227 227 447 227 227 448 225 225 448 226 226 448 227 227 449 226 226 449 254 254 449 254 254 450 226 226 450 206 206 450 254 254 451 206 206 451 256 256 451 256 256 452 206 206 452 207 207 452 256 256 453 207 207 453 229 229 453 229 229 454 207 207 454 228 228 454 229 229 455 228 228 455 230 230 455 230 230 456 228 228 456 231 231 456 230 230 457 231 231 457 232 232 457 232 232 458 231 231 458 234 234 458 232 232 459 234 234 459 233 233 459 233 233 460 234 234 460 236 236 460 233 233 461 236 236 461 235 235 461 235 235 462 236 236 462 211 211 462 235 235 463 211 211 463 237 237 463 237 237 464 211 211 464 239 239 464 237 237 465 239 239 465 238 238 465 238 238 466 239 239 466 240 240 466 238 238 467 240 240 467 242 242 467 242 242 468 240 240 468 241 241 468 242 242 469 241 241 469 243 243 469 243 243 470 241 241 470 216 216 470 243 243 471 216 216 471 244 244 471 244 244 472 216 216 472 245 245 472 244 244 473 245 245 473 246 246 473 246 246 474 245 245 474 217 217 474 246 246 475 217 217 475 247 247 475 247 247 476 217 217 476 218 218 476 247 247 477 218 218 477 1072 1072 477 1093 1093 478 57 57 478 248 248 478 220 220 479 286 286 479 1131 1131 479 1093 1093 480 248 248 480 1095 1095 480 1095 1095 481 248 248 481 249 249 481 1095 1095 482 249 249 482 1096 1096 482 1096 1096 483 249 249 483 222 222 483 1096 1096 484 222 222 484 250 250 484 250 250 485 222 222 485 223 223 485 250 250 486 223 223 486 1097 1097 486 1097 1097 487 223 223 487 251 251 487 1097 1097 488 251 251 488 1098 1098 488 1098 1098 489 251 251 489 252 252 489 1098 1098 490 252 252 490 253 253 490 253 253 491 252 252 491 227 227 491 253 253 492 227 227 492 1100 1100 492 1100 1100 493 227 227 493 254 254 493 1100 1100 494 254 254 494 255 255 494 255 255 495 254 254 495 256 256 495 255 255 496 256 256 496 1103 1103 496 1103 1103 497 256 256 497 229 229 497 1103 1103 498 229 229 498 257 257 498 257 257 499 229 229 499 230 230 499 257 257 500 230 230 500 258 258 500 258 258 501 230 230 501 232 232 501 258 258 502 232 232 502 1105 1105 502 1105 1105 503 232 232 503 233 233 503 1105 1105 504 233 233 504 259 259 504 259 259 505 233 233 505 235 235 505 259 259 506 235 235 506 260 260 506 260 260 507 235 235 507 237 237 507 260 260 508 237 237 508 1107 1107 508 1107 1107 509 237 237 509 238 238 509 1107 1107 510 238 238 510 1108 1108 510 1108 1108 511 238 238 511 242 242 511 1108 1108 512 242 242 512 261 261 512 261 261 513 242 242 513 243 243 513 261 261 514 243 243 514 262 262 514 262 262 515 243 243 515 244 244 515 262 262 516 244 244 516 1112 1112 516 1112 1112 517 244 244 517 246 246 517 1112 1112 518 246 246 518 263 263 518 263 263 519 246 246 519 247 247 519 263 263 520 247 247 520 264 264 520 264 264 521 247 247 521 1072 1072 521 264 264 522 1072 1072 522 1114 1114 522 427 427 523 57 57 523 1093 1093 523 1131 1131 524 265 265 524 283 283 524 1137 1137 525 266 266 525 1021 1021 525 1021 1021 526 266 266 526 1118 1118 526 1021 1021 527 1118 1118 527 1022 1022 527 1022 1022 528 1118 1118 528 1119 1119 528 1022 1022 529 1119 1119 529 267 267 529 267 267 530 1119 1119 530 268 268 530 267 267 531 268 268 531 270 270 531 270 270 532 268 268 532 269 269 532 270 270 533 269 269 533 271 271 533 271 271 534 269 269 534 1122 1122 534 271 271 535 1122 1122 535 1027 1027 535 1027 1027 536 1122 1122 536 272 272 536 1027 1027 537 272 272 537 1028 1028 537 1028 1028 538 272 272 538 273 273 538 1028 1028 539 273 273 539 1029 1029 539 1029 1029 540 273 273 540 274 274 540 1029 1029 541 274 274 541 1031 1031 541 1031 1031 542 274 274 542 1124 1124 542 1031 1031 543 1124 1124 543 1033 1033 543 1033 1033 544 1124 1124 544 1127 1127 544 1033 1033 545 1127 1127 545 275 275 545 275 275 546 1127 1127 546 1128 1128 546 275 275 547 1128 1128 547 277 277 547 277 277 548 1128 1128 548 276 276 548 277 277 549 276 276 549 1036 1036 549 1036 1036 550 276 276 550 1129 1129 550 1036 1036 551 1129 1129 551 1037 1037 551 1037 1037 552 1129 1129 552 278 278 552 1037 1037 553 278 278 553 1038 1038 553 1038 1038 554 278 278 554 279 279 554 1038 1038 555 279 279 555 1040 1040 555 1040 1040 556 279 279 556 280 280 556 1040 1040 557 280 280 557 1041 1041 557 1041 1041 558 280 280 558 1132 1132 558 1041 1041 559 1132 1132 559 281 281 559 281 281 560 1132 1132 560 282 282 560 281 281 561 282 282 561 1044 1044 561 0 0 562 1133 1133 562 283 283 562 283 283 563 265 265 563 0 0 563 0 0 564 265 265 564 284 284 564 0 0 565 284 284 565 292 292 565 1131 1131 566 286 286 566 265 265 566 265 265 567 286 286 567 285 285 567 265 265 568 285 285 568 284 284 568 284 284 569 285 285 569 289 289 569 284 284 570 289 289 570 292 292 570 220 220 571 219 219 571 286 286 571 286 286 572 219 219 572 287 287 572 286 286 573 287 287 573 285 285 573 285 285 574 287 287 574 288 288 574 285 285 575 288 288 575 289 289 575 289 289 576 288 288 576 290 290 576 289 289 577 290 290 577 292 292 577 1130 1130 578 295 295 578 219 219 578 219 219 579 295 295 579 297 297 579 219 219 580 297 297 580 287 287 580 287 287 581 297 297 581 299 299 581 287 287 582 299 299 582 288 288 582 288 288 583 299 299 583 291 291 583 288 288 584 291 291 584 290 290 584 290 290 585 291 291 585 301 301 585 290 290 586 301 301 586 292 292 586 293 293 587 294 294 587 295 295 587 295 295 588 294 294 588 296 296 588 295 295 589 296 296 589 297 297 589 297 297 590 296 296 590 298 298 590 297 297 591 298 298 591 299 299 591 299 299 592 298 298 592 300 300 592 299 299 593 300 300 593 291 291 593 291 291 594 300 300 594 303 303 594 291 291 595 303 303 595 301 301 595 301 301 596 303 303 596 305 305 596 301 301 597 305 305 597 292 292 597 163 163 598 306 306 598 294 294 598 294 294 599 306 306 599 307 307 599 294 294 600 307 307 600 296 296 600 296 296 601 307 307 601 308 308 601 296 296 602 308 308 602 298 298 602 298 298 603 308 308 603 309 309 603 298 298 604 309 309 604 300 300 604 300 300 605 309 309 605 302 302 605 300 300 606 302 302 606 303 303 606 303 303 607 302 302 607 304 304 607 303 303 608 304 304 608 305 305 608 305 305 609 304 304 609 310 310 609 305 305 610 310 310 610 292 292 610 162 162 611 312 312 611 306 306 611 306 306 612 312 312 612 314 314 612 306 306 613 314 314 613 307 307 613 307 307 614 314 314 614 317 317 614 307 307 615 317 317 615 308 308 615 308 308 616 317 317 616 318 318 616 308 308 617 318 318 617 309 309 617 309 309 618 318 318 618 320 320 618 309 309 619 320 320 619 302 302 619 302 302 620 320 320 620 321 321 620 302 302 621 321 321 621 304 304 621 304 304 622 321 321 622 323 323 622 304 304 623 323 323 623 310 310 623 310 310 624 323 323 624 311 311 624 310 310 625 311 311 625 292 292 625 1126 1126 626 313 313 626 312 312 626 312 312 627 313 313 627 325 325 627 312 312 628 325 325 628 314 314 628 314 314 629 325 325 629 315 315 629 314 314 630 315 315 630 317 317 630 317 317 631 315 315 631 316 316 631 317 317 632 316 316 632 318 318 632 318 318 633 316 316 633 319 319 633 318 318 634 319 319 634 320 320 634 320 320 635 319 319 635 328 328 635 320 320 636 328 328 636 321 321 636 321 321 637 328 328 637 322 322 637 321 321 638 322 322 638 323 323 638 323 323 639 322 322 639 330 330 639 323 323 640 330 330 640 311 311 640 311 311 641 330 330 641 331 331 641 311 311 642 331 331 642 292 292 642 1125 1125 643 333 333 643 313 313 643 313 313 644 333 333 644 324 324 644 313 313 645 324 324 645 325 325 645 325 325 646 324 324 646 336 336 646 325 325 647 336 336 647 315 315 647 315 315 648 336 336 648 337 337 648 315 315 649 337 337 649 316 316 649 316 316 650 337 337 650 326 326 650 316 316 651 326 326 651 319 319 651 319 319 652 326 326 652 327 327 652 319 319 653 327 327 653 328 328 653 328 328 654 327 327 654 329 329 654 328 328 655 329 329 655 322 322 655 322 322 656 329 329 656 338 338 656 322 322 657 338 338 657 330 330 657 330 330 658 338 338 658 340 340 658 330 330 659 340 340 659 331 331 659 331 331 660 340 340 660 332 332 660 331 331 661 332 332 661 292 292 661 1123 1123 662 341 341 662 333 333 662 333 333 663 341 341 663 334 334 663 333 333 664 334 334 664 324 324 664 324 324 665 334 334 665 343 343 665 324 324 666 343 343 666 336 336 666 336 336 667 343 343 667 335 335 667 336 336 668 335 335 668 337 337 668 337 337 669 335 335 669 344 344 669 337 337 670 344 344 670 326 326 670 326 326 671 344 344 671 348 348 671 326 326 672 348 348 672 327 327 672 327 327 673 348 348 673 350 350 673 327 327 674 350 350 674 329 329 674 329 329 675 350 350 675 351 351 675 329 329 676 351 351 676 338 338 676 338 338 677 351 351 677 339 339 677 338 338 678 339 339 678 340 340 678 340 340 679 339 339 679 354 354 679 340 340 680 354 354 680 332 332 680 332 332 681 354 354 681 356 356 681 332 332 682 356 356 682 292 292 682 87 87 683 342 342 683 341 341 683 341 341 684 342 342 684 357 357 684 341 341 685 357 357 685 334 334 685 334 334 686 357 357 686 359 359 686 334 334 687 359 359 687 343 343 687 343 343 688 359 359 688 360 360 688 343 343 689 360 360 689 335 335 689 335 335 690 360 360 690 345 345 690 335 335 691 345 345 691 344 344 691 344 344 692 345 345 692 346 346 692 344 344 693 346 346 693 348 348 693 348 348 694 346 346 694 347 347 694 348 348 695 347 347 695 350 350 695 350 350 696 347 347 696 349 349 696 350 350 697 349 349 697 351 351 697 351 351 698 349 349 698 352 352 698 351 351 699 352 352 699 339 339 699 339 339 700 352 352 700 353 353 700 339 339 701 353 353 701 354 354 701 354 354 702 353 353 702 365 365 702 354 354 703 365 365 703 356 356 703 356 356 704 365 365 704 355 355 704 356 356 705 355 355 705 292 292 705 75 75 706 74 74 706 342 342 706 342 342 707 74 74 707 358 358 707 342 342 708 358 358 708 357 357 708 357 357 709 358 358 709 368 368 709 357 357 710 368 368 710 359 359 710 359 359 711 368 368 711 369 369 711 359 359 712 369 369 712 360 360 712 360 360 713 369 369 713 361 361 713 360 360 714 361 361 714 345 345 714 345 345 715 361 361 715 371 371 715 345 345 716 371 371 716 346 346 716 346 346 717 371 371 717 372 372 717 346 346 718 372 372 718 347 347 718 347 347 719 372 372 719 362 362 719 347 347 720 362 362 720 349 349 720 349 349 721 362 362 721 373 373 721 349 349 722 373 373 722 352 352 722 352 352 723 373 373 723 363 363 723 352 352 724 363 363 724 353 353 724 353 353 725 363 363 725 364 364 725 353 353 726 364 364 726 365 365 726 365 365 727 364 364 727 377 377 727 365 365 728 377 377 728 355 355 728 355 355 729 377 377 729 366 366 729 355 355 730 366 366 730 292 292 730 1121 1121 731 380 380 731 74 74 731 74 74 732 380 380 732 367 367 732 74 74 733 367 367 733 358 358 733 358 358 734 367 367 734 384 384 734 358 358 735 384 384 735 368 368 735 368 368 736 384 384 736 385 385 736 368 368 737 385 385 737 369 369 737 369 369 738 385 385 738 370 370 738 369 369 739 370 370 739 361 361 739 361 361 740 370 370 740 387 387 740 361 361 741 387 387 741 371 371 741 371 371 742 387 387 742 389 389 742 371 371 743 389 389 743 372 372 743 372 372 744 389 389 744 390 390 744 372 372 745 390 390 745 362 362 745 362 362 746 390 390 746 391 391 746 362 362 747 391 391 747 373 373 747 373 373 748 391 391 748 374 374 748 373 373 749 374 374 749 363 363 749 363 363 750 374 374 750 375 375 750 363 363 751 375 375 751 364 364 751 364 364 752 375 375 752 376 376 752 364 364 753 376 376 753 377 377 753 377 377 754 376 376 754 378 378 754 377 377 755 378 378 755 366 366 755 366 366 756 378 378 756 394 394 756 366 366 757 394 394 757 292 292 757 1120 1120 758 379 379 758 380 380 758 380 380 759 379 379 759 381 381 759 380 380 760 381 381 760 367 367 760 367 367 761 381 381 761 382 382 761 367 367 762 382 382 762 384 384 762 384 384 763 382 382 763 383 383 763 384 384 764 383 383 764 385 385 764 385 385 765 383 383 765 386 386 765 385 385 766 386 386 766 370 370 766 370 370 767 386 386 767 399 399 767 370 370 768 399 399 768 387 387 768 387 387 769 399 399 769 388 388 769 387 387 770 388 388 770 389 389 770 389 389 771 388 388 771 400 400 771 389 389 772 400 400 772 390 390 772 390 390 773 400 400 773 402 402 773 390 390 774 402 402 774 391 391 774 391 391 775 402 402 775 403 403 775 391 391 776 403 403 776 374 374 776 374 374 777 403 403 777 404 404 777 374 374 778 404 404 778 375 375 778 375 375 779 404 404 779 405 405 779 375 375 780 405 405 780 376 376 780 376 376 781 405 405 781 392 392 781 376 376 782 392 392 782 378 378 782 378 378 783 392 392 783 409 409 783 378 378 784 409 409 784 394 394 784 394 394 785 409 409 785 393 393 785 394 394 786 393 393 786 292 292 786 395 395 787 411 411 787 379 379 787 379 379 788 411 411 788 396 396 788 379 379 789 396 396 789 381 381 789 381 381 790 396 396 790 412 412 790 381 381 791 412 412 791 382 382 791 382 382 792 412 412 792 414 414 792 382 382 793 414 414 793 383 383 793 383 383 794 414 414 794 397 397 794 383 383 795 397 397 795 386 386 795 386 386 796 397 397 796 398 398 796 386 386 797 398 398 797 399 399 797 399 399 798 398 398 798 415 415 798 399 399 799 415 415 799 388 388 799 388 388 800 415 415 800 417 417 800 388 388 801 417 417 801 400 400 801 400 400 802 417 417 802 401 401 802 400 400 803 401 401 803 402 402 803 402 402 804 401 401 804 418 418 804 402 402 805 418 418 805 403 403 805 403 403 806 418 418 806 420 420 806 403 403 807 420 420 807 404 404 807 404 404 808 420 420 808 406 406 808 404 404 809 406 406 809 405 405 809 405 405 810 406 406 810 423 423 810 405 405 811 423 423 811 392 392 811 392 392 812 423 423 812 407 407 812 392 392 813 407 407 813 409 409 813 409 409 814 407 407 814 408 408 814 409 409 815 408 408 815 393 393 815 393 393 816 408 408 816 425 425 816 393 393 817 425 425 817 292 292 817 39 39 818 410 410 818 411 411 818 411 411 819 410 410 819 1140 1140 819 411 411 820 1140 1140 820 396 396 820 396 396 821 1140 1140 821 413 413 821 396 396 822 413 413 822 412 412 822 412 412 823 413 413 823 1143 1143 823 412 412 824 1143 1143 824 414 414 824 414 414 825 1143 1143 825 1144 1144 825 414 414 826 1144 1144 826 397 397 826 397 397 827 1144 1144 827 1145 1145 827 397 397 828 1145 1145 828 398 398 828 398 398 829 1145 1145 829 1147 1147 829 398 398 830 1147 1147 830 415 415 830 415 415 831 1147 1147 831 1148 1148 831 415 415 832 1148 1148 832 417 417 832 417 417 833 1148 1148 833 416 416 833 417 417 834 416 416 834 401 401 834 401 401 835 416 416 835 1150 1150 835 401 401 836 1150 1150 836 418 418 836 418 418 837 1150 1150 837 419 419 837 418 418 838 419 419 838 420 420 838 420 420 839 419 419 839 421 421 839 420 420 840 421 421 840 406 406 840 406 406 841 421 421 841 422 422 841 406 406 842 422 422 842 423 423 842 423 423 843 422 422 843 424 424 843 423 423 844 424 424 844 407 407 844 407 407 845 424 424 845 1153 1153 845 407 407 846 1153 1153 846 408 408 846 408 408 847 1153 1153 847 426 426 847 408 408 848 426 426 848 425 425 848 425 425 849 426 426 849 1154 1154 849 425 425 850 1154 1154 850 292 292 850 5 5 851 427 427 851 428 428 851 428 428 852 427 427 852 1094 1094 852 428 428 853 1094 1094 853 1135 1135 853 1135 1135 854 1094 1094 854 429 429 854 1135 1135 855 429 429 855 1136 1136 855 1136 1136 856 429 429 856 430 430 856 1136 1136 857 430 430 857 1138 1138 857 1138 1138 858 430 430 858 431 431 858 1138 1138 859 431 431 859 1139 1139 859 1139 1139 860 431 431 860 432 432 860 1139 1139 861 432 432 861 433 433 861 433 433 862 432 432 862 434 434 862 433 433 863 434 434 863 1141 1141 863 1141 1141 864 434 434 864 1099 1099 864 1141 1141 865 1099 1099 865 435 435 865 435 435 866 1099 1099 866 436 436 866 435 435 867 436 436 867 437 437 867 437 437 868 436 436 868 1101 1101 868 437 437 869 1101 1101 869 1142 1142 869 1142 1142 870 1101 1101 870 1102 1102 870 1142 1142 871 1102 1102 871 438 438 871 438 438 872 1102 1102 872 439 439 872 438 438 873 439 439 873 1146 1146 873 1146 1146 874 439 439 874 1104 1104 874 1146 1146 875 1104 1104 875 440 440 875 440 440 876 1104 1104 876 441 441 876 440 440 877 441 441 877 1149 1149 877 1149 1149 878 441 441 878 442 442 878 1149 1149 879 442 442 879 443 443 879 443 443 880 442 442 880 1106 1106 880 443 443 881 1106 1106 881 1151 1151 881 1151 1151 882 1106 1106 882 444 444 882 1151 1151 883 444 444 883 1152 1152 883 1152 1152 884 444 444 884 1109 1109 884 1152 1152 885 1109 1109 885 445 445 885 445 445 886 1109 1109 886 1110 1110 886 445 445 887 1110 1110 887 446 446 887 446 446 888 1110 1110 888 1111 1111 888 446 446 889 1111 1111 889 447 447 889 447 447 890 1111 1111 890 448 448 890 447 447 891 448 448 891 449 449 891 449 449 892 448 448 892 450 450 892 449 449 893 450 450 893 451 451 893 451 451 894 450 450 894 1113 1113 894 451 451 895 1113 1113 895 1155 1155 895 1155 1155 896 1113 1113 896 1115 1115 896 1155 1155 897 1115 1115 897 292 292 897 292 292 898 1116 1116 898 1045 1045 898 1045 1045 899 1116 1116 899 1071 1071 899 1045 1045 900 1071 1071 900 1046 1046 900 1046 1046 901 1071 1071 901 1073 1073 901 1046 1046 902 1073 1073 902 1047 1047 902 1047 1047 903 1073 1073 903 1075 1075 903 1047 1047 904 1075 1075 904 452 452 904 452 452 905 1075 1075 905 453 453 905 452 452 906 453 453 906 1049 1049 906 1049 1049 907 453 453 907 454 454 907 1049 1049 908 454 454 908 455 455 908 455 455 909 454 454 909 456 456 909 455 455 910 456 456 910 1053 1053 910 1053 1053 911 456 456 911 457 457 911 1053 1053 912 457 457 912 1054 1054 912 1054 1054 913 457 457 913 458 458 913 1054 1054 914 458 458 914 459 459 914 459 459 915 458 458 915 1078 1078 915 459 459 916 1078 1078 916 1057 1057 916 1057 1057 917 1078 1078 917 1080 1080 917 1057 1057 918 1080 1080 918 461 461 918 461 461 919 1080 1080 919 460 460 919 461 461 920 460 460 920 1060 1060 920 1060 1060 921 460 460 921 462 462 921 1060 1060 922 462 462 922 1061 1061 922 1061 1061 923 462 462 923 1081 1081 923 1061 1061 924 1081 1081 924 463 463 924 463 463 925 1081 1081 925 464 464 925 463 463 926 464 464 926 465 465 926 465 465 927 464 464 927 1084 1084 927 465 465 928 1084 1084 928 1064 1064 928 1064 1064 929 1084 1084 929 466 466 929 1064 1064 930 466 466 930 1066 1066 930 1066 1066 931 466 466 931 467 467 931 1066 1066 932 467 467 932 468 468 932 468 468 933 467 467 933 469 469 933 468 468 934 469 469 934 470 470 934 470 470 935 469 469 935 1088 1088 935 470 470 936 1088 1088 936 471 471 936 471 471 937 1088 1088 937 1089 1089 937 471 471 938 1089 1089 938 472 472 938 472 472 939 1089 1089 939 1090 1090 939 472 472 940 1090 1090 940 1069 1069 940 1069 1069 941 1090 1090 941 1091 1091 941 1069 1069 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 1092 1092 943 473 473 944 1092 1092 944 1070 1070 944 1070 1070 945 1092 1092 945 57 57 945 292 292 946 474 474 946 520 520 946 520 520 947 474 474 947 475 475 947 520 520 948 475 475 948 519 519 948 519 519 949 475 475 949 476 476 949 519 519 950 476 476 950 517 517 950 517 517 951 476 476 951 1048 1048 951 517 517 952 1048 1048 952 515 515 952 515 515 953 1048 1048 953 1050 1050 953 515 515 954 1050 1050 954 514 514 954 514 514 955 1050 1050 955 1051 1051 955 514 514 956 1051 1051 956 513 513 956 513 513 957 1051 1051 957 1052 1052 957 513 513 958 1052 1052 958 512 512 958 512 512 959 1052 1052 959 1055 1055 959 512 512 960 1055 1055 960 510 510 960 510 510 961 1055 1055 961 1056 1056 961 510 510 962 1056 1056 962 508 508 962 508 508 963 1056 1056 963 1058 1058 963 508 508 964 1058 1058 964 478 478 964 478 478 965 1058 1058 965 477 477 965 478 478 966 477 477 966 507 507 966 507 507 967 477 477 967 1059 1059 967 507 507 968 1059 1059 968 504 504 968 504 504 969 1059 1059 969 1062 1062 969 504 504 970 1062 1062 970 502 502 970 502 502 971 1062 1062 971 480 480 971 502 502 972 480 480 972 479 479 972 479 479 973 480 480 973 1063 1063 973 479 479 974 1063 1063 974 501 501 974 501 501 975 1063 1063 975 1065 1065 975 501 501 976 1065 1065 976 500 500 976 500 500 977 1065 1065 977 1067 1067 977 500 500 978 1067 1067 978 499 499 978 499 499 979 1067 1067 979 481 481 979 499 499 980 481 481 980 498 498 980 498 498 981 481 481 981 1068 1068 981 498 498 982 1068 1068 982 497 497 982 497 497 983 1068 1068 983 482 482 983 497 497 984 482 482 984 495 495 984 495 495 985 482 482 985 483 483 985 495 495 986 483 483 986 484 484 986 484 484 987 483 483 987 485 485 987 484 484 988 485 485 988 486 486 988 486 486 989 485 485 989 487 487 989 486 486 990 487 487 990 488 488 990 488 488 991 487 487 991 489 489 991 488 488 992 489 489 992 490 490 992 490 490 993 489 489 993 57 57 993 57 57 994 491 491 994 490 490 994 490 490 995 491 491 995 492 492 995 490 490 996 492 492 996 488 488 996 488 488 997 492 492 997 521 521 997 488 488 998 521 521 998 486 486 998 486 486 999 521 521 999 493 493 999 486 486 1000 493 493 1000 484 484 1000 484 484 1001 493 493 1001 494 494 1001 484 484 1002 494 494 1002 495 495 1002 495 495 1003 494 494 1003 496 496 1003 495 495 1004 496 496 1004 497 497 1004 497 497 1005 496 496 1005 524 524 1005 497 497 1006 524 524 1006 498 498 1006 498 498 1007 524 524 1007 526 526 1007 498 498 1008 526 526 1008 499 499 1008 499 499 1009 526 526 1009 527 527 1009 499 499 1010 527 527 1010 500 500 1010 500 500 1011 527 527 1011 530 530 1011 500 500 1012 530 530 1012 501 501 1012 501 501 1013 530 530 1013 531 531 1013 501 501 1014 531 531 1014 479 479 1014 479 479 1015 531 531 1015 533 533 1015 479 479 1016 533 533 1016 502 502 1016 502 502 1017 533 533 1017 503 503 1017 502 502 1018 503 503 1018 504 504 1018 504 504 1019 503 503 1019 505 505 1019 504 504 1020 505 505 1020 507 507 1020 507 507 1021 505 505 1021 506 506 1021 507 507 1022 506 506 1022 478 478 1022 478 478 1023 506 506 1023 537 537 1023 478 478 1024 537 537 1024 508 508 1024 508 508 1025 537 537 1025 509 509 1025 508 508 1026 509 509 1026 510 510 1026 510 510 1027 509 509 1027 541 541 1027 510 510 1028 541 541 1028 512 512 1028 512 512 1029 541 541 1029 511 511 1029 512 512 1030 511 511 1030 513 513 1030 513 513 1031 511 511 1031 544 544 1031 513 513 1032 544 544 1032 514 514 1032 514 514 1033 544 544 1033 516 516 1033 514 514 1034 516 516 1034 515 515 1034 515 515 1035 516 516 1035 545 545 1035 515 515 1036 545 545 1036 517 517 1036 517 517 1037 545 545 1037 518 518 1037 517 517 1038 518 518 1038 519 519 1038 519 519 1039 518 518 1039 546 546 1039 519 519 1040 546 546 1040 520 520 1040 520 520 1041 546 546 1041 292 292 1041 57 57 1042 548 548 1042 491 491 1042 491 491 1043 548 548 1043 549 549 1043 491 491 1044 549 549 1044 492 492 1044 492 492 1045 549 549 1045 522 522 1045 492 492 1046 522 522 1046 521 521 1046 521 521 1047 522 522 1047 552 552 1047 521 521 1048 552 552 1048 493 493 1048 493 493 1049 552 552 1049 553 553 1049 493 493 1050 553 553 1050 494 494 1050 494 494 1051 553 553 1051 554 554 1051 494 494 1052 554 554 1052 496 496 1052 496 496 1053 554 554 1053 523 523 1053 496 496 1054 523 523 1054 524 524 1054 524 524 1055 523 523 1055 525 525 1055 524 524 1056 525 525 1056 526 526 1056 526 526 1057 525 525 1057 528 528 1057 526 526 1058 528 528 1058 527 527 1058 527 527 1059 528 528 1059 557 557 1059 527 527 1060 557 557 1060 530 530 1060 530 530 1061 557 557 1061 529 529 1061 530 530 1062 529 529 1062 531 531 1062 531 531 1063 529 529 1063 532 532 1063 531 531 1064 532 532 1064 533 533 1064 533 533 1065 532 532 1065 534 534 1065 533 533 1066 534 534 1066 503 503 1066 503 503 1067 534 534 1067 535 535 1067 503 503 1068 535 535 1068 505 505 1068 505 505 1069 535 535 1069 536 536 1069 505 505 1070 536 536 1070 506 506 1070 506 506 1071 536 536 1071 538 538 1071 506 506 1072 538 538 1072 537 537 1072 537 537 1073 538 538 1073 539 539 1073 537 537 1074 539 539 1074 509 509 1074 509 509 1075 539 539 1075 540 540 1075 509 509 1076 540 540 1076 541 541 1076 541 541 1077 540 540 1077 542 542 1077 541 541 1078 542 542 1078 511 511 1078 511 511 1079 542 542 1079 543 543 1079 511 511 1080 543 543 1080 544 544 1080 544 544 1081 543 543 1081 563 563 1081 544 544 1082 563 563 1082 516 516 1082 516 516 1083 563 563 1083 564 564 1083 516 516 1084 564 564 1084 545 545 1084 545 545 1085 564 564 1085 565 565 1085 545 545 1086 565 565 1086 518 518 1086 518 518 1087 565 565 1087 567 567 1087 518 518 1088 567 567 1088 546 546 1088 546 546 1089 567 567 1089 292 292 1089 57 57 1090 547 547 1090 548 548 1090 548 548 1091 547 547 1091 568 568 1091 548 548 1092 568 568 1092 549 549 1092 549 549 1093 568 568 1093 570 570 1093 549 549 1094 570 570 1094 522 522 1094 522 522 1095 570 570 1095 550 550 1095 522 522 1096 550 550 1096 552 552 1096 552 552 1097 550 550 1097 551 551 1097 552 552 1098 551 551 1098 553 553 1098 553 553 1099 551 551 1099 572 572 1099 553 553 1100 572 572 1100 554 554 1100 554 554 1101 572 572 1101 573 573 1101 554 554 1102 573 573 1102 523 523 1102 523 523 1103 573 573 1103 555 555 1103 523 523 1104 555 555 1104 525 525 1104 525 525 1105 555 555 1105 575 575 1105 525 525 1106 575 575 1106 528 528 1106 528 528 1107 575 575 1107 577 577 1107 528 528 1108 577 577 1108 557 557 1108 557 557 1109 577 577 1109 556 556 1109 557 557 1110 556 556 1110 529 529 1110 529 529 1111 556 556 1111 578 578 1111 529 529 1112 578 578 1112 532 532 1112 532 532 1113 578 578 1113 558 558 1113 532 532 1114 558 558 1114 534 534 1114 534 534 1115 558 558 1115 559 559 1115 534 534 1116 559 559 1116 535 535 1116 535 535 1117 559 559 1117 582 582 1117 535 535 1118 582 582 1118 536 536 1118 536 536 1119 582 582 1119 583 583 1119 536 536 1120 583 583 1120 538 538 1120 538 538 1121 583 583 1121 560 560 1121 538 538 1122 560 560 1122 539 539 1122 539 539 1123 560 560 1123 561 561 1123 539 539 1124 561 561 1124 540 540 1124 540 540 1125 561 561 1125 585 585 1125 540 540 1126 585 585 1126 542 542 1126 542 542 1127 585 585 1127 562 562 1127 542 542 1128 562 562 1128 543 543 1128 543 543 1129 562 562 1129 586 586 1129 543 543 1130 586 586 1130 563 563 1130 563 563 1131 586 586 1131 588 588 1131 563 563 1132 588 588 1132 564 564 1132 564 564 1133 588 588 1133 589 589 1133 564 564 1134 589 589 1134 565 565 1134 565 565 1135 589 589 1135 566 566 1135 565 565 1136 566 566 1136 567 567 1136 567 567 1137 566 566 1137 292 292 1137 57 57 1138 593 593 1138 547 547 1138 547 547 1139 593 593 1139 594 594 1139 547 547 1140 594 594 1140 568 568 1140 568 568 1141 594 594 1141 569 569 1141 568 568 1142 569 569 1142 570 570 1142 570 570 1143 569 569 1143 595 595 1143 570 570 1144 595 595 1144 550 550 1144 550 550 1145 595 595 1145 571 571 1145 550 550 1146 571 571 1146 551 551 1146 551 551 1147 571 571 1147 598 598 1147 551 551 1148 598 598 1148 572 572 1148 572 572 1149 598 598 1149 599 599 1149 572 572 1150 599 599 1150 573 573 1150 573 573 1151 599 599 1151 574 574 1151 573 573 1152 574 574 1152 555 555 1152 555 555 1153 574 574 1153 601 601 1153 555 555 1154 601 601 1154 575 575 1154 575 575 1155 601 601 1155 576 576 1155 575 575 1156 576 576 1156 577 577 1156 577 577 1157 576 576 1157 603 603 1157 577 577 1158 603 603 1158 556 556 1158 556 556 1159 603 603 1159 604 604 1159 556 556 1160 604 604 1160 578 578 1160 578 578 1161 604 604 1161 605 605 1161 578 578 1162 605 605 1162 558 558 1162 558 558 1163 605 605 1163 579 579 1163 558 558 1164 579 579 1164 559 559 1164 559 559 1165 579 579 1165 580 580 1165 559 559 1166 580 580 1166 582 582 1166 582 582 1167 580 580 1167 581 581 1167 582 582 1168 581 581 1168 583 583 1168 583 583 1169 581 581 1169 584 584 1169 583 583 1170 584 584 1170 560 560 1170 560 560 1171 584 584 1171 609 609 1171 560 560 1172 609 609 1172 561 561 1172 561 561 1173 609 609 1173 611 611 1173 561 561 1174 611 611 1174 585 585 1174 585 585 1175 611 611 1175 612 612 1175 585 585 1176 612 612 1176 562 562 1176 562 562 1177 612 612 1177 587 587 1177 562 562 1178 587 587 1178 586 586 1178 586 586 1179 587 587 1179 613 613 1179 586 586 1180 613 613 1180 588 588 1180 588 588 1181 613 613 1181 590 590 1181 588 588 1182 590 590 1182 589 589 1182 589 589 1183 590 590 1183 591 591 1183 589 589 1184 591 591 1184 566 566 1184 566 566 1185 591 591 1185 292 292 1185 57 57 1186 592 592 1186 593 593 1186 593 593 1187 592 592 1187 616 616 1187 593 593 1188 616 616 1188 594 594 1188 594 594 1189 616 616 1189 617 617 1189 594 594 1190 617 617 1190 569 569 1190 569 569 1191 617 617 1191 620 620 1191 569 569 1192 620 620 1192 595 595 1192 595 595 1193 620 620 1193 596 596 1193 595 595 1194 596 596 1194 571 571 1194 571 571 1195 596 596 1195 597 597 1195 571 571 1196 597 597 1196 598 598 1196 598 598 1197 597 597 1197 622 622 1197 598 598 1198 622 622 1198 599 599 1198 599 599 1199 622 622 1199 600 600 1199 599 599 1200 600 600 1200 574 574 1200 574 574 1201 600 600 1201 602 602 1201 574 574 1202 602 602 1202 601 601 1202 601 601 1203 602 602 1203 626 626 1203 601 601 1204 626 626 1204 576 576 1204 576 576 1205 626 626 1205 627 627 1205 576 576 1206 627 627 1206 603 603 1206 603 603 1207 627 627 1207 629 629 1207 603 603 1208 629 629 1208 604 604 1208 604 604 1209 629 629 1209 630 630 1209 604 604 1210 630 630 1210 605 605 1210 605 605 1211 630 630 1211 606 606 1211 605 605 1212 606 606 1212 579 579 1212 579 579 1213 606 606 1213 607 607 1213 579 579 1214 607 607 1214 580 580 1214 580 580 1215 607 607 1215 608 608 1215 580 580 1216 608 608 1216 581 581 1216 581 581 1217 608 608 1217 633 633 1217 581 581 1218 633 633 1218 584 584 1218 584 584 1219 633 633 1219 610 610 1219 584 584 1220 610 610 1220 609 609 1220 609 609 1221 610 610 1221 635 635 1221 609 609 1222 635 635 1222 611 611 1222 611 611 1223 635 635 1223 637 637 1223 611 611 1224 637 637 1224 612 612 1224 612 612 1225 637 637 1225 639 639 1225 612 612 1226 639 639 1226 587 587 1226 587 587 1227 639 639 1227 641 641 1227 587 587 1228 641 641 1228 613 613 1228 613 613 1229 641 641 1229 614 614 1229 613 613 1230 614 614 1230 590 590 1230 590 590 1231 614 614 1231 615 615 1231 590 590 1232 615 615 1232 591 591 1232 591 591 1233 615 615 1233 292 292 1233 57 57 1234 643 643 1234 592 592 1234 592 592 1235 643 643 1235 646 646 1235 592 592 1236 646 646 1236 616 616 1236 616 616 1237 646 646 1237 648 648 1237 616 616 1238 648 648 1238 617 617 1238 617 617 1239 648 648 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 596 596 1242 596 596 1243 619 619 1243 621 621 1243 596 596 1244 621 621 1244 597 597 1244 597 597 1245 621 621 1245 651 651 1245 597 597 1246 651 651 1246 622 622 1246 622 622 1247 651 651 1247 623 623 1247 622 622 1248 623 623 1248 600 600 1248 600 600 1249 623 623 1249 624 624 1249 600 600 1250 624 624 1250 602 602 1250 602 602 1251 624 624 1251 625 625 1251 602 602 1252 625 625 1252 626 626 1252 626 626 1253 625 625 1253 654 654 1253 626 626 1254 654 654 1254 627 627 1254 627 627 1255 654 654 1255 628 628 1255 627 627 1256 628 628 1256 629 629 1256 629 629 1257 628 628 1257 657 657 1257 629 629 1258 657 657 1258 630 630 1258 630 630 1259 657 657 1259 659 659 1259 630 630 1260 659 659 1260 606 606 1260 606 606 1261 659 659 1261 631 631 1261 606 606 1262 631 631 1262 607 607 1262 607 607 1263 631 631 1263 660 660 1263 607 607 1264 660 660 1264 608 608 1264 608 608 1265 660 660 1265 632 632 1265 608 608 1266 632 632 1266 633 633 1266 633 633 1267 632 632 1267 663 663 1267 633 633 1268 663 663 1268 610 610 1268 610 610 1269 663 663 1269 634 634 1269 610 610 1270 634 634 1270 635 635 1270 635 635 1271 634 634 1271 636 636 1271 635 635 1272 636 636 1272 637 637 1272 637 637 1273 636 636 1273 638 638 1273 637 637 1274 638 638 1274 639 639 1274 639 639 1275 638 638 1275 640 640 1275 639 639 1276 640 640 1276 641 641 1276 641 641 1277 640 640 1277 667 667 1277 641 641 1278 667 667 1278 614 614 1278 614 614 1279 667 667 1279 642 642 1279 614 614 1280 642 642 1280 615 615 1280 615 615 1281 642 642 1281 292 292 1281 57 57 1282 644 644 1282 643 643 1282 643 643 1283 644 644 1283 645 645 1283 643 643 1284 645 645 1284 646 646 1284 646 646 1285 645 645 1285 647 647 1285 646 646 1286 647 647 1286 648 648 1286 648 648 1287 647 647 1287 669 669 1287 648 648 1288 669 669 1288 618 618 1288 618 618 1289 669 669 1289 670 670 1289 618 618 1290 670 670 1290 619 619 1290 619 619 1291 670 670 1291 649 649 1291 619 619 1292 649 649 1292 621 621 1292 621 621 1293 649 649 1293 650 650 1293 621 621 1294 650 650 1294 651 651 1294 651 651 1295 650 650 1295 672 672 1295 651 651 1296 672 672 1296 623 623 1296 623 623 1297 672 672 1297 674 674 1297 623 623 1298 674 674 1298 624 624 1298 624 624 1299 674 674 1299 652 652 1299 624 624 1300 652 652 1300 625 625 1300 625 625 1301 652 652 1301 653 653 1301 625 625 1302 653 653 1302 654 654 1302 654 654 1303 653 653 1303 655 655 1303 654 654 1304 655 655 1304 628 628 1304 628 628 1305 655 655 1305 656 656 1305 628 628 1306 656 656 1306 657 657 1306 657 657 1307 656 656 1307 658 658 1307 657 657 1308 658 658 1308 659 659 1308 659 659 1309 658 658 1309 677 677 1309 659 659 1310 677 677 1310 631 631 1310 631 631 1311 677 677 1311 661 661 1311 631 631 1312 661 661 1312 660 660 1312 660 660 1313 661 661 1313 662 662 1313 660 660 1314 662 662 1314 632 632 1314 632 632 1315 662 662 1315 680 680 1315 632 632 1316 680 680 1316 663 663 1316 663 663 1317 680 680 1317 682 682 1317 663 663 1318 682 682 1318 634 634 1318 634 634 1319 682 682 1319 683 683 1319 634 634 1320 683 683 1320 636 636 1320 636 636 1321 683 683 1321 664 664 1321 636 636 1322 664 664 1322 638 638 1322 638 638 1323 664 664 1323 684 684 1323 638 638 1324 684 684 1324 640 640 1324 640 640 1325 684 684 1325 665 665 1325 640 640 1326 665 665 1326 667 667 1326 667 667 1327 665 665 1327 666 666 1327 667 667 1328 666 666 1328 642 642 1328 642 642 1329 666 666 1329 292 292 1329 57 57 1330 688 688 1330 644 644 1330 644 644 1331 688 688 1331 668 668 1331 644 644 1332 668 668 1332 645 645 1332 645 645 1333 668 668 1333 691 691 1333 645 645 1334 691 691 1334 647 647 1334 647 647 1335 691 691 1335 692 692 1335 647 647 1336 692 692 1336 669 669 1336 669 669 1337 692 692 1337 694 694 1337 669 669 1338 694 694 1338 670 670 1338 670 670 1339 694 694 1339 671 671 1339 670 670 1340 671 671 1340 649 649 1340 649 649 1341 671 671 1341 697 697 1341 649 649 1342 697 697 1342 650 650 1342 650 650 1343 697 697 1343 699 699 1343 650 650 1344 699 699 1344 672 672 1344 672 672 1345 699 699 1345 673 673 1345 672 672 1346 673 673 1346 674 674 1346 674 674 1347 673 673 1347 701 701 1347 674 674 1348 701 701 1348 652 652 1348 652 652 1349 701 701 1349 702 702 1349 652 652 1350 702 702 1350 653 653 1350 653 653 1351 702 702 1351 675 675 1351 653 653 1352 675 675 1352 655 655 1352 655 655 1353 675 675 1353 703 703 1353 655 655 1354 703 703 1354 656 656 1354 656 656 1355 703 703 1355 676 676 1355 656 656 1356 676 676 1356 658 658 1356 658 658 1357 676 676 1357 706 706 1357 658 658 1358 706 706 1358 677 677 1358 677 677 1359 706 706 1359 678 678 1359 677 677 1360 678 678 1360 661 661 1360 661 661 1361 678 678 1361 679 679 1361 661 661 1362 679 679 1362 662 662 1362 662 662 1363 679 679 1363 709 709 1363 662 662 1364 709 709 1364 680 680 1364 680 680 1365 709 709 1365 681 681 1365 680 680 1366 681 681 1366 682 682 1366 682 682 1367 681 681 1367 710 710 1367 682 682 1368 710 710 1368 683 683 1368 683 683 1369 710 710 1369 712 712 1369 683 683 1370 712 712 1370 664 664 1370 664 664 1371 712 712 1371 685 685 1371 664 664 1372 685 685 1372 684 684 1372 684 684 1373 685 685 1373 714 714 1373 684 684 1374 714 714 1374 665 665 1374 665 665 1375 714 714 1375 686 686 1375 665 665 1376 686 686 1376 666 666 1376 666 666 1377 686 686 1377 292 292 1377 57 57 1378 687 687 1378 688 688 1378 688 688 1379 687 687 1379 689 689 1379 688 688 1380 689 689 1380 668 668 1380 668 668 1381 689 689 1381 690 690 1381 668 668 1382 690 690 1382 691 691 1382 691 691 1383 690 690 1383 715 715 1383 691 691 1384 715 715 1384 692 692 1384 692 692 1385 715 715 1385 693 693 1385 692 692 1386 693 693 1386 694 694 1386 694 694 1387 693 693 1387 695 695 1387 694 694 1388 695 695 1388 671 671 1388 671 671 1389 695 695 1389 696 696 1389 671 671 1390 696 696 1390 697 697 1390 697 697 1391 696 696 1391 698 698 1391 697 697 1392 698 698 1392 699 699 1392 699 699 1393 698 698 1393 700 700 1393 699 699 1394 700 700 1394 673 673 1394 673 673 1395 700 700 1395 720 720 1395 673 673 1396 720 720 1396 701 701 1396 701 701 1397 720 720 1397 721 721 1397 701 701 1398 721 721 1398 702 702 1398 702 702 1399 721 721 1399 723 723 1399 702 702 1400 723 723 1400 675 675 1400 675 675 1401 723 723 1401 724 724 1401 675 675 1402 724 724 1402 703 703 1402 703 703 1403 724 724 1403 728 728 1403 703 703 1404 728 728 1404 676 676 1404 676 676 1405 728 728 1405 704 704 1405 676 676 1406 704 704 1406 706 706 1406 706 706 1407 704 704 1407 705 705 1407 706 706 1408 705 705 1408 678 678 1408 678 678 1409 705 705 1409 707 707 1409 678 678 1410 707 707 1410 679 679 1410 679 679 1411 707 707 1411 708 708 1411 679 679 1412 708 708 1412 709 709 1412 709 709 1413 708 708 1413 731 731 1413 709 709 1414 731 731 1414 681 681 1414 681 681 1415 731 731 1415 733 733 1415 681 681 1416 733 733 1416 710 710 1416 710 710 1417 733 733 1417 711 711 1417 710 710 1418 711 711 1418 712 712 1418 712 712 1419 711 711 1419 734 734 1419 712 712 1420 734 734 1420 685 685 1420 685 685 1421 734 734 1421 713 713 1421 685 685 1422 713 713 1422 714 714 1422 714 714 1423 713 713 1423 735 735 1423 714 714 1424 735 735 1424 686 686 1424 686 686 1425 735 735 1425 292 292 1425 57 57 1426 736 736 1426 687 687 1426 687 687 1427 736 736 1427 738 738 1427 687 687 1428 738 738 1428 689 689 1428 689 689 1429 738 738 1429 739 739 1429 689 689 1430 739 739 1430 690 690 1430 690 690 1431 739 739 1431 740 740 1431 690 690 1432 740 740 1432 715 715 1432 715 715 1433 740 740 1433 716 716 1433 715 715 1434 716 716 1434 693 693 1434 693 693 1435 716 716 1435 717 717 1435 693 693 1436 717 717 1436 695 695 1436 695 695 1437 717 717 1437 743 743 1437 695 695 1438 743 743 1438 696 696 1438 696 696 1439 743 743 1439 744 744 1439 696 696 1440 744 744 1440 698 698 1440 698 698 1441 744 744 1441 718 718 1441 698 698 1442 718 718 1442 700 700 1442 700 700 1443 718 718 1443 719 719 1443 700 700 1444 719 719 1444 720 720 1444 720 720 1445 719 719 1445 748 748 1445 720 720 1446 748 748 1446 721 721 1446 721 721 1447 748 748 1447 722 722 1447 721 721 1448 722 722 1448 723 723 1448 723 723 1449 722 722 1449 725 725 1449 723 723 1450 725 725 1450 724 724 1450 724 724 1451 725 725 1451 726 726 1451 724 724 1452 726 726 1452 728 728 1452 728 728 1453 726 726 1453 727 727 1453 728 728 1454 727 727 1454 704 704 1454 704 704 1455 727 727 1455 729 729 1455 704 704 1456 729 729 1456 705 705 1456 705 705 1457 729 729 1457 751 751 1457 705 705 1458 751 751 1458 707 707 1458 707 707 1459 751 751 1459 730 730 1459 707 707 1460 730 730 1460 708 708 1460 708 708 1461 730 730 1461 753 753 1461 708 708 1462 753 753 1462 731 731 1462 731 731 1463 753 753 1463 732 732 1463 731 731 1464 732 732 1464 733 733 1464 733 733 1465 732 732 1465 756 756 1465 733 733 1466 756 756 1466 711 711 1466 711 711 1467 756 756 1467 757 757 1467 711 711 1468 757 757 1468 734 734 1468 734 734 1469 757 757 1469 758 758 1469 734 734 1470 758 758 1470 713 713 1470 713 713 1471 758 758 1471 761 761 1471 713 713 1472 761 761 1472 735 735 1472 735 735 1473 761 761 1473 292 292 1473 57 57 1474 762 762 1474 736 736 1474 736 736 1475 762 762 1475 763 763 1475 736 736 1476 763 763 1476 738 738 1476 738 738 1477 763 763 1477 737 737 1477 738 738 1478 737 737 1478 739 739 1478 739 739 1479 737 737 1479 765 765 1479 739 739 1480 765 765 1480 740 740 1480 740 740 1481 765 765 1481 741 741 1481 740 740 1482 741 741 1482 716 716 1482 716 716 1483 741 741 1483 766 766 1483 716 716 1484 766 766 1484 717 717 1484 717 717 1485 766 766 1485 742 742 1485 717 717 1486 742 742 1486 743 743 1486 743 743 1487 742 742 1487 745 745 1487 743 743 1488 745 745 1488 744 744 1488 744 744 1489 745 745 1489 746 746 1489 744 744 1490 746 746 1490 718 718 1490 718 718 1491 746 746 1491 747 747 1491 718 718 1492 747 747 1492 719 719 1492 719 719 1493 747 747 1493 770 770 1493 719 719 1494 770 770 1494 748 748 1494 748 748 1495 770 770 1495 749 749 1495 748 748 1496 749 749 1496 722 722 1496 722 722 1497 749 749 1497 772 772 1497 722 722 1498 772 772 1498 725 725 1498 725 725 1499 772 772 1499 774 774 1499 725 725 1500 774 774 1500 726 726 1500 726 726 1501 774 774 1501 775 775 1501 726 726 1502 775 775 1502 727 727 1502 727 727 1503 775 775 1503 750 750 1503 727 727 1504 750 750 1504 729 729 1504 729 729 1505 750 750 1505 752 752 1505 729 729 1506 752 752 1506 751 751 1506 751 751 1507 752 752 1507 778 778 1507 751 751 1508 778 778 1508 730 730 1508 730 730 1509 778 778 1509 780 780 1509 730 730 1510 780 780 1510 753 753 1510 753 753 1511 780 780 1511 754 754 1511 753 753 1512 754 754 1512 732 732 1512 732 732 1513 754 754 1513 755 755 1513 732 732 1514 755 755 1514 756 756 1514 756 756 1515 755 755 1515 782 782 1515 756 756 1516 782 782 1516 757 757 1516 757 757 1517 782 782 1517 759 759 1517 757 757 1518 759 759 1518 758 758 1518 758 758 1519 759 759 1519 760 760 1519 758 758 1520 760 760 1520 761 761 1520 761 761 1521 760 760 1521 292 292 1521 57 57 1522 785 785 1522 762 762 1522 762 762 1523 785 785 1523 786 786 1523 762 762 1524 786 786 1524 763 763 1524 763 763 1525 786 786 1525 787 787 1525 763 763 1526 787 787 1526 737 737 1526 737 737 1527 787 787 1527 789 789 1527 737 737 1528 789 789 1528 765 765 1528 765 765 1529 789 789 1529 764 764 1529 765 765 1530 764 764 1530 741 741 1530 741 741 1531 764 764 1531 792 792 1531 741 741 1532 792 792 1532 766 766 1532 766 766 1533 792 792 1533 767 767 1533 766 766 1534 767 767 1534 742 742 1534 742 742 1535 767 767 1535 768 768 1535 742 742 1536 768 768 1536 745 745 1536 745 745 1537 768 768 1537 796 796 1537 745 745 1538 796 796 1538 746 746 1538 746 746 1539 796 796 1539 797 797 1539 746 746 1540 797 797 1540 747 747 1540 747 747 1541 797 797 1541 769 769 1541 747 747 1542 769 769 1542 770 770 1542 770 770 1543 769 769 1543 771 771 1543 770 770 1544 771 771 1544 749 749 1544 749 749 1545 771 771 1545 799 799 1545 749 749 1546 799 799 1546 772 772 1546 772 772 1547 799 799 1547 773 773 1547 772 772 1548 773 773 1548 774 774 1548 774 774 1549 773 773 1549 801 801 1549 774 774 1550 801 801 1550 775 775 1550 775 775 1551 801 801 1551 776 776 1551 775 775 1552 776 776 1552 750 750 1552 750 750 1553 776 776 1553 777 777 1553 750 750 1554 777 777 1554 752 752 1554 752 752 1555 777 777 1555 804 804 1555 752 752 1556 804 804 1556 778 778 1556 778 778 1557 804 804 1557 779 779 1557 778 778 1558 779 779 1558 780 780 1558 780 780 1559 779 779 1559 805 805 1559 780 780 1560 805 805 1560 754 754 1560 754 754 1561 805 805 1561 781 781 1561 754 754 1562 781 781 1562 755 755 1562 755 755 1563 781 781 1563 807 807 1563 755 755 1564 807 807 1564 782 782 1564 782 782 1565 807 807 1565 783 783 1565 782 782 1566 783 783 1566 759 759 1566 759 759 1567 783 783 1567 784 784 1567 759 759 1568 784 784 1568 760 760 1568 760 760 1569 784 784 1569 292 292 1569 57 57 1570 810 810 1570 785 785 1570 785 785 1571 810 810 1571 813 813 1571 785 785 1572 813 813 1572 786 786 1572 786 786 1573 813 813 1573 814 814 1573 786 786 1574 814 814 1574 787 787 1574 787 787 1575 814 814 1575 788 788 1575 787 787 1576 788 788 1576 789 789 1576 789 789 1577 788 788 1577 790 790 1577 789 789 1578 790 790 1578 764 764 1578 764 764 1579 790 790 1579 791 791 1579 764 764 1580 791 791 1580 792 792 1580 792 792 1581 791 791 1581 793 793 1581 792 792 1582 793 793 1582 767 767 1582 767 767 1583 793 793 1583 794 794 1583 767 767 1584 794 794 1584 768 768 1584 768 768 1585 794 794 1585 795 795 1585 768 768 1586 795 795 1586 796 796 1586 796 796 1587 795 795 1587 817 817 1587 796 796 1588 817 817 1588 797 797 1588 797 797 1589 817 817 1589 798 798 1589 797 797 1590 798 798 1590 769 769 1590 769 769 1591 798 798 1591 818 818 1591 769 769 1592 818 818 1592 771 771 1592 771 771 1593 818 818 1593 820 820 1593 771 771 1594 820 820 1594 799 799 1594 799 799 1595 820 820 1595 800 800 1595 799 799 1596 800 800 1596 773 773 1596 773 773 1597 800 800 1597 822 822 1597 773 773 1598 822 822 1598 801 801 1598 801 801 1599 822 822 1599 802 802 1599 801 801 1600 802 802 1600 776 776 1600 776 776 1601 802 802 1601 823 823 1601 776 776 1602 823 823 1602 777 777 1602 777 777 1603 823 823 1603 803 803 1603 777 777 1604 803 803 1604 804 804 1604 804 804 1605 803 803 1605 827 827 1605 804 804 1606 827 827 1606 779 779 1606 779 779 1607 827 827 1607 828 828 1607 779 779 1608 828 828 1608 805 805 1608 805 805 1609 828 828 1609 829 829 1609 805 805 1610 829 829 1610 781 781 1610 781 781 1611 829 829 1611 806 806 1611 781 781 1612 806 806 1612 807 807 1612 807 807 1613 806 806 1613 808 808 1613 807 807 1614 808 808 1614 783 783 1614 783 783 1615 808 808 1615 809 809 1615 783 783 1616 809 809 1616 784 784 1616 784 784 1617 809 809 1617 292 292 1617 57 57 1618 811 811 1618 810 810 1618 810 810 1619 811 811 1619 812 812 1619 810 810 1620 812 812 1620 813 813 1620 813 813 1621 812 812 1621 834 834 1621 813 813 1622 834 834 1622 814 814 1622 814 814 1623 834 834 1623 815 815 1623 814 814 1624 815 815 1624 788 788 1624 788 788 1625 815 815 1625 836 836 1625 788 788 1626 836 836 1626 790 790 1626 790 790 1627 836 836 1627 839 839 1627 790 790 1628 839 839 1628 791 791 1628 791 791 1629 839 839 1629 816 816 1629 791 791 1630 816 816 1630 793 793 1630 793 793 1631 816 816 1631 840 840 1631 793 793 1632 840 840 1632 794 794 1632 794 794 1633 840 840 1633 841 841 1633 794 794 1634 841 841 1634 795 795 1634 795 795 1635 841 841 1635 843 843 1635 795 795 1636 843 843 1636 817 817 1636 817 817 1637 843 843 1637 844 844 1637 817 817 1638 844 844 1638 798 798 1638 798 798 1639 844 844 1639 845 845 1639 798 798 1640 845 845 1640 818 818 1640 818 818 1641 845 845 1641 819 819 1641 818 818 1642 819 819 1642 820 820 1642 820 820 1643 819 819 1643 821 821 1643 820 820 1644 821 821 1644 800 800 1644 800 800 1645 821 821 1645 847 847 1645 800 800 1646 847 847 1646 822 822 1646 822 822 1647 847 847 1647 849 849 1647 822 822 1648 849 849 1648 802 802 1648 802 802 1649 849 849 1649 824 824 1649 802 802 1650 824 824 1650 823 823 1650 823 823 1651 824 824 1651 825 825 1651 823 823 1652 825 825 1652 803 803 1652 803 803 1653 825 825 1653 826 826 1653 803 803 1654 826 826 1654 827 827 1654 827 827 1655 826 826 1655 853 853 1655 827 827 1656 853 853 1656 828 828 1656 828 828 1657 853 853 1657 854 854 1657 828 828 1658 854 854 1658 829 829 1658 829 829 1659 854 854 1659 855 855 1659 829 829 1660 855 855 1660 806 806 1660 806 806 1661 855 855 1661 830 830 1661 806 806 1662 830 830 1662 808 808 1662 808 808 1663 830 830 1663 831 831 1663 808 808 1664 831 831 1664 809 809 1664 809 809 1665 831 831 1665 292 292 1665 57 57 1666 832 832 1666 811 811 1666 811 811 1667 832 832 1667 856 856 1667 811 811 1668 856 856 1668 812 812 1668 812 812 1669 856 856 1669 833 833 1669 812 812 1670 833 833 1670 834 834 1670 834 834 1671 833 833 1671 835 835 1671 834 834 1672 835 835 1672 815 815 1672 815 815 1673 835 835 1673 837 837 1673 815 815 1674 837 837 1674 836 836 1674 836 836 1675 837 837 1675 838 838 1675 836 836 1676 838 838 1676 839 839 1676 839 839 1677 838 838 1677 860 860 1677 839 839 1678 860 860 1678 816 816 1678 816 816 1679 860 860 1679 861 861 1679 816 816 1680 861 861 1680 840 840 1680 840 840 1681 861 861 1681 862 862 1681 840 840 1682 862 862 1682 841 841 1682 841 841 1683 862 862 1683 842 842 1683 841 841 1684 842 842 1684 843 843 1684 843 843 1685 842 842 1685 864 864 1685 843 843 1686 864 864 1686 844 844 1686 844 844 1687 864 864 1687 865 865 1687 844 844 1688 865 865 1688 845 845 1688 845 845 1689 865 865 1689 846 846 1689 845 845 1690 846 846 1690 819 819 1690 819 819 1691 846 846 1691 866 866 1691 819 819 1692 866 866 1692 821 821 1692 821 821 1693 866 866 1693 848 848 1693 821 821 1694 848 848 1694 847 847 1694 847 847 1695 848 848 1695 850 850 1695 847 847 1696 850 850 1696 849 849 1696 849 849 1697 850 850 1697 851 851 1697 849 849 1698 851 851 1698 824 824 1698 824 824 1699 851 851 1699 852 852 1699 824 824 1700 852 852 1700 825 825 1700 825 825 1701 852 852 1701 869 869 1701 825 825 1702 869 869 1702 826 826 1702 826 826 1703 869 869 1703 872 872 1703 826 826 1704 872 872 1704 853 853 1704 853 853 1705 872 872 1705 873 873 1705 853 853 1706 873 873 1706 854 854 1706 854 854 1707 873 873 1707 875 875 1707 854 854 1708 875 875 1708 855 855 1708 855 855 1709 875 875 1709 877 877 1709 855 855 1710 877 877 1710 830 830 1710 830 830 1711 877 877 1711 878 878 1711 830 830 1712 878 878 1712 831 831 1712 831 831 1713 878 878 1713 292 292 1713 57 57 1714 879 879 1714 832 832 1714 832 832 1715 879 879 1715 880 880 1715 832 832 1716 880 880 1716 856 856 1716 856 856 1717 880 880 1717 881 881 1717 856 856 1718 881 881 1718 833 833 1718 833 833 1719 881 881 1719 882 882 1719 833 833 1720 882 882 1720 835 835 1720 835 835 1721 882 882 1721 857 857 1721 835 835 1722 857 857 1722 837 837 1722 837 837 1723 857 857 1723 858 858 1723 837 837 1724 858 858 1724 838 838 1724 838 838 1725 858 858 1725 859 859 1725 838 838 1726 859 859 1726 860 860 1726 860 860 1727 859 859 1727 885 885 1727 860 860 1728 885 885 1728 861 861 1728 861 861 1729 885 885 1729 863 863 1729 861 861 1730 863 863 1730 862 862 1730 862 862 1731 863 863 1731 886 886 1731 862 862 1732 886 886 1732 842 842 1732 842 842 1733 886 886 1733 888 888 1733 842 842 1734 888 888 1734 864 864 1734 864 864 1735 888 888 1735 890 890 1735 864 864 1736 890 890 1736 865 865 1736 865 865 1737 890 890 1737 891 891 1737 865 865 1738 891 891 1738 846 846 1738 846 846 1739 891 891 1739 892 892 1739 846 846 1740 892 892 1740 866 866 1740 866 866 1741 892 892 1741 867 867 1741 866 866 1742 867 867 1742 848 848 1742 848 848 1743 867 867 1743 893 893 1743 848 848 1744 893 893 1744 850 850 1744 850 850 1745 893 893 1745 894 894 1745 850 850 1746 894 894 1746 851 851 1746 851 851 1747 894 894 1747 868 868 1747 851 851 1748 868 868 1748 852 852 1748 852 852 1749 868 868 1749 870 870 1749 852 852 1750 870 870 1750 869 869 1750 869 869 1751 870 870 1751 871 871 1751 869 869 1752 871 871 1752 872 872 1752 872 872 1753 871 871 1753 897 897 1753 872 872 1754 897 897 1754 873 873 1754 873 873 1755 897 897 1755 874 874 1755 873 873 1756 874 874 1756 875 875 1756 875 875 1757 874 874 1757 876 876 1757 875 875 1758 876 876 1758 877 877 1758 877 877 1759 876 876 1759 900 900 1759 877 877 1760 900 900 1760 878 878 1760 878 878 1761 900 900 1761 292 292 1761 57 57 1762 902 902 1762 879 879 1762 879 879 1763 902 902 1763 903 903 1763 879 879 1764 903 903 1764 880 880 1764 880 880 1765 903 903 1765 905 905 1765 880 880 1766 905 905 1766 881 881 1766 881 881 1767 905 905 1767 906 906 1767 881 881 1768 906 906 1768 882 882 1768 882 882 1769 906 906 1769 883 883 1769 882 882 1770 883 883 1770 857 857 1770 857 857 1771 883 883 1771 884 884 1771 857 857 1772 884 884 1772 858 858 1772 858 858 1773 884 884 1773 908 908 1773 858 858 1774 908 908 1774 859 859 1774 859 859 1775 908 908 1775 909 909 1775 859 859 1776 909 909 1776 885 885 1776 885 885 1777 909 909 1777 910 910 1777 885 885 1778 910 910 1778 863 863 1778 863 863 1779 910 910 1779 913 913 1779 863 863 1780 913 913 1780 886 886 1780 886 886 1781 913 913 1781 887 887 1781 886 886 1782 887 887 1782 888 888 1782 888 888 1783 887 887 1783 889 889 1783 888 888 1784 889 889 1784 890 890 1784 890 890 1785 889 889 1785 917 917 1785 890 890 1786 917 917 1786 891 891 1786 891 891 1787 917 917 1787 918 918 1787 891 891 1788 918 918 1788 892 892 1788 892 892 1789 918 918 1789 920 920 1789 892 892 1790 920 920 1790 867 867 1790 867 867 1791 920 920 1791 921 921 1791 867 867 1792 921 921 1792 893 893 1792 893 893 1793 921 921 1793 923 923 1793 893 893 1794 923 923 1794 894 894 1794 894 894 1795 923 923 1795 924 924 1795 894 894 1796 924 924 1796 868 868 1796 868 868 1797 924 924 1797 895 895 1797 868 868 1798 895 895 1798 870 870 1798 870 870 1799 895 895 1799 896 896 1799 870 870 1800 896 896 1800 871 871 1800 871 871 1801 896 896 1801 898 898 1801 871 871 1802 898 898 1802 897 897 1802 897 897 1803 898 898 1803 899 899 1803 897 897 1804 899 899 1804 874 874 1804 874 874 1805 899 899 1805 928 928 1805 874 874 1806 928 928 1806 876 876 1806 876 876 1807 928 928 1807 901 901 1807 876 876 1808 901 901 1808 900 900 1808 900 900 1809 901 901 1809 292 292 1809 57 57 1810 929 929 1810 902 902 1810 902 902 1811 929 929 1811 931 931 1811 902 902 1812 931 931 1812 903 903 1812 903 903 1813 931 931 1813 904 904 1813 903 903 1814 904 904 1814 905 905 1814 905 905 1815 904 904 1815 933 933 1815 905 905 1816 933 933 1816 906 906 1816 906 906 1817 933 933 1817 907 907 1817 906 906 1818 907 907 1818 883 883 1818 883 883 1819 907 907 1819 935 935 1819 883 883 1820 935 935 1820 884 884 1820 884 884 1821 935 935 1821 937 937 1821 884 884 1822 937 937 1822 908 908 1822 908 908 1823 937 937 1823 938 938 1823 908 908 1824 938 938 1824 909 909 1824 909 909 1825 938 938 1825 911 911 1825 909 909 1826 911 911 1826 910 910 1826 910 910 1827 911 911 1827 912 912 1827 910 910 1828 912 912 1828 913 913 1828 913 913 1829 912 912 1829 914 914 1829 913 913 1830 914 914 1830 887 887 1830 887 887 1831 914 914 1831 915 915 1831 887 887 1832 915 915 1832 889 889 1832 889 889 1833 915 915 1833 916 916 1833 889 889 1834 916 916 1834 917 917 1834 917 917 1835 916 916 1835 942 942 1835 917 917 1836 942 942 1836 918 918 1836 918 918 1837 942 942 1837 919 919 1837 918 918 1838 919 919 1838 920 920 1838 920 920 1839 919 919 1839 944 944 1839 920 920 1840 944 944 1840 921 921 1840 921 921 1841 944 944 1841 922 922 1841 921 921 1842 922 922 1842 923 923 1842 923 923 1843 922 922 1843 947 947 1843 923 923 1844 947 947 1844 924 924 1844 924 924 1845 947 947 1845 948 948 1845 924 924 1846 948 948 1846 895 895 1846 895 895 1847 948 948 1847 925 925 1847 895 895 1848 925 925 1848 896 896 1848 896 896 1849 925 925 1849 926 926 1849 896 896 1850 926 926 1850 898 898 1850 898 898 1851 926 926 1851 950 950 1851 898 898 1852 950 950 1852 899 899 1852 899 899 1853 950 950 1853 951 951 1853 899 899 1854 951 951 1854 928 928 1854 928 928 1855 951 951 1855 927 927 1855 928 928 1856 927 927 1856 901 901 1856 901 901 1857 927 927 1857 292 292 1857 57 57 1858 952 952 1858 929 929 1858 929 929 1859 952 952 1859 930 930 1859 929 929 1860 930 930 1860 931 931 1860 931 931 1861 930 930 1861 932 932 1861 931 931 1862 932 932 1862 904 904 1862 904 904 1863 932 932 1863 953 953 1863 904 904 1864 953 953 1864 933 933 1864 933 933 1865 953 953 1865 934 934 1865 933 933 1866 934 934 1866 907 907 1866 907 907 1867 934 934 1867 957 957 1867 907 907 1868 957 957 1868 935 935 1868 935 935 1869 957 957 1869 936 936 1869 935 935 1870 936 936 1870 937 937 1870 937 937 1871 936 936 1871 958 958 1871 937 937 1872 958 958 1872 938 938 1872 938 938 1873 958 958 1873 939 939 1873 938 938 1874 939 939 1874 911 911 1874 911 911 1875 939 939 1875 940 940 1875 911 911 1876 940 940 1876 912 912 1876 912 912 1877 940 940 1877 961 961 1877 912 912 1878 961 961 1878 914 914 1878 914 914 1879 961 961 1879 964 964 1879 914 914 1880 964 964 1880 915 915 1880 915 915 1881 964 964 1881 965 965 1881 915 915 1882 965 965 1882 916 916 1882 916 916 1883 965 965 1883 941 941 1883 916 916 1884 941 941 1884 942 942 1884 942 942 1885 941 941 1885 943 943 1885 942 942 1886 943 943 1886 919 919 1886 919 919 1887 943 943 1887 945 945 1887 919 919 1888 945 945 1888 944 944 1888 944 944 1889 945 945 1889 967 967 1889 944 944 1890 967 967 1890 922 922 1890 922 922 1891 967 967 1891 969 969 1891 922 922 1892 969 969 1892 947 947 1892 947 947 1893 969 969 1893 946 946 1893 947 947 1894 946 946 1894 948 948 1894 948 948 1895 946 946 1895 949 949 1895 948 948 1896 949 949 1896 925 925 1896 925 925 1897 949 949 1897 970 970 1897 925 925 1898 970 970 1898 926 926 1898 926 926 1899 970 970 1899 971 971 1899 926 926 1900 971 971 1900 950 950 1900 950 950 1901 971 971 1901 973 973 1901 950 950 1902 973 973 1902 951 951 1902 951 951 1903 973 973 1903 974 974 1903 951 951 1904 974 974 1904 927 927 1904 927 927 1905 974 974 1905 292 292 1905 57 57 1906 1177 1177 1906 952 952 1906 952 952 1907 1177 1177 1907 1175 1175 1907 952 952 1908 1175 1175 1908 930 930 1908 930 930 1909 1175 1175 1909 1173 1173 1909 930 930 1910 1173 1173 1910 932 932 1910 932 932 1911 1173 1173 1911 954 954 1911 932 932 1912 954 954 1912 953 953 1912 953 953 1913 954 954 1913 955 955 1913 953 953 1914 955 955 1914 934 934 1914 934 934 1915 955 955 1915 956 956 1915 934 934 1916 956 956 1916 957 957 1916 957 957 1917 956 956 1917 1170 1170 1917 957 957 1918 1170 1170 1918 936 936 1918 936 936 1919 1170 1170 1919 1168 1168 1919 936 936 1920 1168 1168 1920 958 958 1920 958 958 1921 1168 1168 1921 959 959 1921 958 958 1922 959 959 1922 939 939 1922 939 939 1923 959 959 1923 960 960 1923 939 939 1924 960 960 1924 940 940 1924 940 940 1925 960 960 1925 1166 1166 1925 940 940 1926 1166 1166 1926 961 961 1926 961 961 1927 1166 1166 1927 962 962 1927 961 961 1928 962 962 1928 964 964 1928 964 964 1929 962 962 1929 963 963 1929 964 964 1930 963 963 1930 965 965 1930 965 965 1931 963 963 1931 1164 1164 1931 965 965 1932 1164 1164 1932 941 941 1932 941 941 1933 1164 1164 1933 1163 1163 1933 941 941 1934 1163 1163 1934 943 943 1934 943 943 1935 1163 1163 1935 966 966 1935 943 943 1936 966 966 1936 945 945 1936 945 945 1937 966 966 1937 1160 1160 1937 945 945 1938 1160 1160 1938 967 967 1938 967 967 1939 1160 1160 1939 968 968 1939 967 967 1940 968 968 1940 969 969 1940 969 969 1941 968 968 1941 1159 1159 1941 969 969 1942 1159 1159 1942 946 946 1942 946 946 1943 1159 1159 1943 1157 1157 1943 946 946 1944 1157 1157 1944 949 949 1944 949 949 1945 1157 1157 1945 975 975 1945 949 949 1946 975 975 1946 970 970 1946 970 970 1947 975 975 1947 978 978 1947 970 970 1948 978 978 1948 971 971 1948 971 971 1949 978 978 1949 972 972 1949 971 971 1950 972 972 1950 973 973 1950 973 973 1951 972 972 1951 979 979 1951 973 973 1952 979 979 1952 974 974 1952 974 974 1953 979 979 1953 292 292 1953 1157 1157 1954 976 976 1954 975 975 1954 975 975 1955 976 976 1955 977 977 1955 975 975 1956 977 977 1956 978 978 1956 978 978 1957 977 977 1957 995 995 1957 978 978 1958 995 995 1958 972 972 1958 972 972 1959 995 995 1959 997 997 1959 972 972 1960 997 997 1960 979 979 1960 979 979 1961 997 997 1961 292 292 1961 1176 1176 1962 980 980 1962 1174 1174 1962 1174 1174 1963 980 980 1963 998 998 1963 1174 1174 1964 998 998 1964 981 981 1964 981 981 1965 998 998 1965 999 999 1965 981 981 1966 999 999 1966 1172 1172 1966 1172 1172 1967 999 999 1967 1000 1000 1967 1172 1172 1968 1000 1000 1968 982 982 1968 982 982 1969 1000 1000 1969 1003 1003 1969 982 982 1970 1003 1003 1970 1171 1171 1970 1171 1171 1971 1003 1003 1971 1004 1004 1971 1171 1171 1972 1004 1004 1972 1169 1169 1972 1169 1169 1973 1004 1004 1973 1005 1005 1973 1169 1169 1974 1005 1005 1974 983 983 1974 983 983 1975 1005 1005 1975 1006 1006 1975 983 983 1976 1006 1006 1976 984 984 1976 984 984 1977 1006 1006 1977 1007 1007 1977 984 984 1978 1007 1007 1978 1167 1167 1978 1167 1167 1979 1007 1007 1979 1009 1009 1979 1167 1167 1980 1009 1009 1980 985 985 1980 985 985 1981 1009 1009 1981 986 986 1981 985 985 1982 986 986 1982 1165 1165 1982 1165 1165 1983 986 986 1983 1010 1010 1983 1165 1165 1984 1010 1010 1984 988 988 1984 988 988 1985 1010 1010 1985 987 987 1985 988 988 1986 987 987 1986 1162 1162 1986 1162 1162 1987 987 987 1987 1012 1012 1987 1162 1162 1988 1012 1012 1988 989 989 1988 989 989 1989 1012 1012 1989 1014 1014 1989 989 989 1990 1014 1014 1990 1161 1161 1990 1161 1161 1991 1014 1014 1991 990 990 1991 1161 1161 1992 990 990 1992 991 991 1992 991 991 1993 990 990 1993 992 992 1993 991 991 1994 992 992 1994 1158 1158 1994 1158 1158 1995 992 992 1995 993 993 1995 1158 1158 1996 993 993 1996 1156 1156 1996 1156 1156 1997 993 993 1997 1017 1017 1997 1156 1156 1998 1017 1017 1998 976 976 1998 976 976 1999 1017 1017 1999 1018 1018 1999 976 976 2000 1018 1018 2000 977 977 2000 977 977 2001 1018 1018 2001 994 994 2001 977 977 2002 994 994 2002 995 995 2002 995 995 2003 994 994 2003 996 996 2003 995 995 2004 996 996 2004 997 997 2004 997 997 2005 996 996 2005 292 292 2005 980 980 2006 1134 1134 2006 998 998 2006 998 998 2007 1134 1134 2007 1020 1020 2007 998 998 2008 1020 1020 2008 999 999 2008 999 999 2009 1020 1020 2009 1001 1001 2009 999 999 2010 1001 1001 2010 1000 1000 2010 1000 1000 2011 1001 1001 2011 1002 1002 2011 1000 1000 2012 1002 1002 2012 1003 1003 2012 1003 1003 2013 1002 1002 2013 1023 1023 2013 1003 1003 2014 1023 1023 2014 1004 1004 2014 1004 1004 2015 1023 1023 2015 1024 1024 2015 1004 1004 2016 1024 1024 2016 1005 1005 2016 1005 1005 2017 1024 1024 2017 1025 1025 2017 1005 1005 2018 1025 1025 2018 1006 1006 2018 1006 1006 2019 1025 1025 2019 1026 1026 2019 1006 1006 2020 1026 1026 2020 1007 1007 2020 1007 1007 2021 1026 1026 2021 1008 1008 2021 1007 1007 2022 1008 1008 2022 1009 1009 2022 1009 1009 2023 1008 1008 2023 1030 1030 2023 1009 1009 2024 1030 1030 2024 986 986 2024 986 986 2025 1030 1030 2025 1032 1032 2025 986 986 2026 1032 1032 2026 1010 1010 2026 1010 1010 2027 1032 1032 2027 1011 1011 2027 1010 1010 2028 1011 1011 2028 987 987 2028 987 987 2029 1011 1011 2029 1013 1013 2029 987 987 2030 1013 1013 2030 1012 1012 2030 1012 1012 2031 1013 1013 2031 1034 1034 2031 1012 1012 2032 1034 1034 2032 1014 1014 2032 1014 1014 2033 1034 1034 2033 1035 1035 2033 1014 1014 2034 1035 1035 2034 990 990 2034 990 990 2035 1035 1035 2035 1015 1015 2035 990 990 2036 1015 1015 2036 992 992 2036 992 992 2037 1015 1015 2037 1039 1039 2037 992 992 2038 1039 1039 2038 993 993 2038 993 993 2039 1039 1039 2039 1016 1016 2039 993 993 2040 1016 1016 2040 1017 1017 2040 1017 1017 2041 1016 1016 2041 1042 1042 2041 1017 1017 2042 1042 1042 2042 1018 1018 2042 1018 1018 2043 1042 1042 2043 1043 1043 2043 1018 1018 2044 1043 1043 2044 994 994 2044 994 994 2045 1043 1043 2045 1019 1019 2045 994 994 2046 1019 1019 2046 996 996 2046 996 996 2047 1019 1019 2047 292 292 2047 1134 1134 2048 1137 1137 2048 1020 1020 2048 1020 1020 2049 1137 1137 2049 1021 1021 2049 1020 1020 2050 1021 1021 2050 1001 1001 2050 1001 1001 2051 1021 1021 2051 1022 1022 2051 1001 1001 2052 1022 1022 2052 1002 1002 2052 1002 1002 2053 1022 1022 2053 267 267 2053 1002 1002 2054 267 267 2054 1023 1023 2054 1023 1023 2055 267 267 2055 270 270 2055 1023 1023 2056 270 270 2056 1024 1024 2056 1024 1024 2057 270 270 2057 271 271 2057 1024 1024 2058 271 271 2058 1025 1025 2058 1025 1025 2059 271 271 2059 1027 1027 2059 1025 1025 2060 1027 1027 2060 1026 1026 2060 1026 1026 2061 1027 1027 2061 1028 1028 2061 1026 1026 2062 1028 1028 2062 1008 1008 2062 1008 1008 2063 1028 1028 2063 1029 1029 2063 1008 1008 2064 1029 1029 2064 1030 1030 2064 1030 1030 2065 1029 1029 2065 1031 1031 2065 1030 1030 2066 1031 1031 2066 1032 1032 2066 1032 1032 2067 1031 1031 2067 1033 1033 2067 1032 1032 2068 1033 1033 2068 1011 1011 2068 1011 1011 2069 1033 1033 2069 275 275 2069 1011 1011 2070 275 275 2070 1013 1013 2070 1013 1013 2071 275 275 2071 277 277 2071 1013 1013 2072 277 277 2072 1034 1034 2072 1034 1034 2073 277 277 2073 1036 1036 2073 1034 1034 2074 1036 1036 2074 1035 1035 2074 1035 1035 2075 1036 1036 2075 1037 1037 2075 1035 1035 2076 1037 1037 2076 1015 1015 2076 1015 1015 2077 1037 1037 2077 1038 1038 2077 1015 1015 2078 1038 1038 2078 1039 1039 2078 1039 1039 2079 1038 1038 2079 1040 1040 2079 1039 1039 2080 1040 1040 2080 1016 1016 2080 1016 1016 2081 1040 1040 2081 1041 1041 2081 1016 1016 2082 1041 1041 2082 1042 1042 2082 1042 1042 2083 1041 1041 2083 281 281 2083 1042 1042 2084 281 281 2084 1043 1043 2084 1043 1043 2085 281 281 2085 1044 1044 2085 1043 1043 2086 1044 1044 2086 1019 1019 2086 1019 1019 2087 1044 1044 2087 292 292 2087 292 292 2088 1045 1045 2088 474 474 2088 474 474 2089 1045 1045 2089 1046 1046 2089 474 474 2090 1046 1046 2090 475 475 2090 475 475 2091 1046 1046 2091 1047 1047 2091 475 475 2092 1047 1047 2092 476 476 2092 476 476 2093 1047 1047 2093 452 452 2093 476 476 2094 452 452 2094 1048 1048 2094 1048 1048 2095 452 452 2095 1049 1049 2095 1048 1048 2096 1049 1049 2096 1050 1050 2096 1050 1050 2097 1049 1049 2097 455 455 2097 1050 1050 2098 455 455 2098 1051 1051 2098 1051 1051 2099 455 455 2099 1053 1053 2099 1051 1051 2100 1053 1053 2100 1052 1052 2100 1052 1052 2101 1053 1053 2101 1054 1054 2101 1052 1052 2102 1054 1054 2102 1055 1055 2102 1055 1055 2103 1054 1054 2103 459 459 2103 1055 1055 2104 459 459 2104 1056 1056 2104 1056 1056 2105 459 459 2105 1057 1057 2105 1056 1056 2106 1057 1057 2106 1058 1058 2106 1058 1058 2107 1057 1057 2107 461 461 2107 1058 1058 2108 461 461 2108 477 477 2108 477 477 2109 461 461 2109 1060 1060 2109 477 477 2110 1060 1060 2110 1059 1059 2110 1059 1059 2111 1060 1060 2111 1061 1061 2111 1059 1059 2112 1061 1061 2112 1062 1062 2112 1062 1062 2113 1061 1061 2113 463 463 2113 1062 1062 2114 463 463 2114 480 480 2114 480 480 2115 463 463 2115 465 465 2115 480 480 2116 465 465 2116 1063 1063 2116 1063 1063 2117 465 465 2117 1064 1064 2117 1063 1063 2118 1064 1064 2118 1065 1065 2118 1065 1065 2119 1064 1064 2119 1066 1066 2119 1065 1065 2120 1066 1066 2120 1067 1067 2120 1067 1067 2121 1066 1066 2121 468 468 2121 1067 1067 2122 468 468 2122 481 481 2122 481 481 2123 468 468 2123 470 470 2123 481 481 2124 470 470 2124 1068 1068 2124 1068 1068 2125 470 470 2125 471 471 2125 1068 1068 2126 471 471 2126 482 482 2126 482 482 2127 471 471 2127 472 472 2127 482 482 2128 472 472 2128 483 483 2128 483 483 2129 472 472 2129 1069 1069 2129 483 483 2130 1069 1069 2130 485 485 2130 485 485 2131 1069 1069 2131 473 473 2131 485 485 2132 473 473 2132 487 487 2132 487 487 2133 473 473 2133 1070 1070 2133 487 487 2134 1070 1070 2134 489 489 2134 489 489 2135 1070 1070 2135 57 57 2135 1116 1116 2136 1114 1114 2136 1071 1071 2136 1071 1071 2137 1114 1114 2137 1072 1072 2137 1071 1071 2138 1072 1072 2138 1073 1073 2138 1073 1073 2139 1072 1072 2139 218 218 2139 1073 1073 2140 218 218 2140 1075 1075 2140 1075 1075 2141 218 218 2141 1074 1074 2141 1075 1075 2142 1074 1074 2142 453 453 2142 453 453 2143 1074 1074 2143 1076 1076 2143 453 453 2144 1076 1076 2144 454 454 2144 454 454 2145 1076 1076 2145 160 160 2145 454 454 2146 160 160 2146 456 456 2146 456 456 2147 160 160 2147 159 159 2147 456 456 2148 159 159 2148 457 457 2148 457 457 2149 159 159 2149 141 141 2149 457 457 2150 141 141 2150 458 458 2150 458 458 2151 141 141 2151 1077 1077 2151 458 458 2152 1077 1077 2152 1078 1078 2152 1078 1078 2153 1077 1077 2153 1079 1079 2153 1078 1078 2154 1079 1079 2154 1080 1080 2154 1080 1080 2155 1079 1079 2155 100 100 2155 1080 1080 2156 100 100 2156 460 460 2156 460 460 2157 100 100 2157 72 72 2157 460 460 2158 72 72 2158 462 462 2158 462 462 2159 72 72 2159 56 56 2159 462 462 2160 56 56 2160 1081 1081 2160 1081 1081 2161 56 56 2161 1082 1082 2161 1081 1081 2162 1082 1082 2162 464 464 2162 464 464 2163 1082 1082 2163 1083 1083 2163 464 464 2164 1083 1083 2164 1084 1084 2164 1084 1084 2165 1083 1083 2165 1085 1085 2165 1084 1084 2166 1085 1085 2166 466 466 2166 466 466 2167 1085 1085 2167 23 23 2167 466 466 2168 23 23 2168 467 467 2168 467 467 2169 23 23 2169 1086 1086 2169 467 467 2170 1086 1086 2170 469 469 2170 469 469 2171 1086 1086 2171 1087 1087 2171 469 469 2172 1087 1087 2172 1088 1088 2172 1088 1088 2173 1087 1087 2173 13 13 2173 1088 1088 2174 13 13 2174 1089 1089 2174 1089 1089 2175 13 13 2175 9 9 2175 1089 1089 2176 9 9 2176 1090 1090 2176 1090 1090 2177 9 9 2177 1 1 2177 1090 1090 2178 1 1 2178 1091 1091 2178 1091 1091 2179 1 1 2179 2 2 2179 1091 1091 2180 2 2 2180 1092 1092 2180 1092 1092 2181 2 2 2181 57 57 2181 427 427 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 429 429 2184 429 429 2185 1095 1095 2185 1096 1096 2185 429 429 2186 1096 1096 2186 430 430 2186 430 430 2187 1096 1096 2187 250 250 2187 430 430 2188 250 250 2188 431 431 2188 431 431 2189 250 250 2189 1097 1097 2189 431 431 2190 1097 1097 2190 432 432 2190 432 432 2191 1097 1097 2191 1098 1098 2191 432 432 2192 1098 1098 2192 434 434 2192 434 434 2193 1098 1098 2193 253 253 2193 434 434 2194 253 253 2194 1099 1099 2194 1099 1099 2195 253 253 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 436 436 2196 436 436 2197 1100 1100 2197 255 255 2197 436 436 2198 255 255 2198 1101 1101 2198 1101 1101 2199 255 255 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 257 257 2201 1102 1102 2202 257 257 2202 439 439 2202 439 439 2203 257 257 2203 258 258 2203 439 439 2204 258 258 2204 1104 1104 2204 1104 1104 2205 258 258 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 441 441 2206 441 441 2207 1105 1105 2207 259 259 2207 441 441 2208 259 259 2208 442 442 2208 442 442 2209 259 259 2209 260 260 2209 442 442 2210 260 260 2210 1106 1106 2210 1106 1106 2211 260 260 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 444 444 2212 444 444 2213 1107 1107 2213 1108 1108 2213 444 444 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 261 261 2215 1109 1109 2216 261 261 2216 1110 1110 2216 1110 1110 2217 261 261 2217 262 262 2217 1110 1110 2218 262 262 2218 1111 1111 2218 1111 1111 2219 262 262 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 448 448 2220 448 448 2221 1112 1112 2221 263 263 2221 448 448 2222 263 263 2222 450 450 2222 450 450 2223 263 263 2223 264 264 2223 450 450 2224 264 264 2224 1113 1113 2224 1113 1113 2225 264 264 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 292 292 2228 282 282 2229 292 292 2229 1044 1044 2229 266 266 2230 1117 1117 2230 1118 1118 2230 1118 1118 2231 1117 1117 2231 39 39 2231 1118 1118 2232 39 39 2232 1119 1119 2232 1119 1119 2233 39 39 2233 395 395 2233 1119 1119 2234 395 395 2234 268 268 2234 268 268 2235 395 395 2235 1120 1120 2235 268 268 2236 1120 1120 2236 269 269 2236 269 269 2237 1120 1120 2237 1121 1121 2237 269 269 2238 1121 1121 2238 1122 1122 2238 1122 1122 2239 1121 1121 2239 75 75 2239 1122 1122 2240 75 75 2240 272 272 2240 272 272 2241 75 75 2241 87 87 2241 272 272 2242 87 87 2242 273 273 2242 273 273 2243 87 87 2243 1123 1123 2243 273 273 2244 1123 1123 2244 274 274 2244 274 274 2245 1123 1123 2245 1125 1125 2245 274 274 2246 1125 1125 2246 1124 1124 2246 1124 1124 2247 1125 1125 2247 1126 1126 2247 1124 1124 2248 1126 1126 2248 1127 1127 2248 1127 1127 2249 1126 1126 2249 162 162 2249 1127 1127 2250 162 162 2250 1128 1128 2250 1128 1128 2251 162 162 2251 163 163 2251 1128 1128 2252 163 163 2252 276 276 2252 276 276 2253 163 163 2253 293 293 2253 276 276 2254 293 293 2254 1129 1129 2254 1129 1129 2255 293 293 2255 1130 1130 2255 1129 1129 2256 1130 1130 2256 278 278 2256 278 278 2257 1130 1130 2257 220 220 2257 278 278 2258 220 220 2258 279 279 2258 279 279 2259 220 220 2259 1131 1131 2259 279 279 2260 1131 1131 2260 280 280 2260 280 280 2261 1131 1131 2261 283 283 2261 280 280 2262 283 283 2262 1132 1132 2262 1132 1132 2263 283 283 2263 1133 1133 2263 1132 1132 2264 1133 1133 2264 282 282 2264 282 282 2265 1133 1133 2265 292 292 2265 5 5 2266 57 57 2266 427 427 2266 1176 1176 2267 428 428 2267 980 980 2267 980 980 2268 428 428 2268 1135 1135 2268 980 980 2269 1135 1135 2269 1134 1134 2269 1134 1134 2270 1135 1135 2270 1136 1136 2270 1134 1134 2271 1136 1136 2271 1137 1137 2271 1137 1137 2272 1136 1136 2272 1138 1138 2272 1137 1137 2273 1138 1138 2273 266 266 2273 266 266 2274 1138 1138 2274 1139 1139 2274 266 266 2275 1139 1139 2275 1117 1117 2275 1117 1117 2276 1139 1139 2276 433 433 2276 1117 1117 2277 433 433 2277 410 410 2277 410 410 2278 433 433 2278 1141 1141 2278 410 410 2279 1141 1141 2279 1140 1140 2279 1140 1140 2280 1141 1141 2280 435 435 2280 1140 1140 2281 435 435 2281 413 413 2281 413 413 2282 435 435 2282 437 437 2282 413 413 2283 437 437 2283 1143 1143 2283 1143 1143 2284 437 437 2284 1142 1142 2284 1143 1143 2285 1142 1142 2285 1144 1144 2285 1144 1144 2286 1142 1142 2286 438 438 2286 1144 1144 2287 438 438 2287 1145 1145 2287 1145 1145 2288 438 438 2288 1146 1146 2288 1145 1145 2289 1146 1146 2289 1147 1147 2289 1147 1147 2290 1146 1146 2290 440 440 2290 1147 1147 2291 440 440 2291 1148 1148 2291 1148 1148 2292 440 440 2292 1149 1149 2292 1148 1148 2293 1149 1149 2293 416 416 2293 416 416 2294 1149 1149 2294 443 443 2294 416 416 2295 443 443 2295 1150 1150 2295 1150 1150 2296 443 443 2296 1151 1151 2296 1150 1150 2297 1151 1151 2297 419 419 2297 419 419 2298 1151 1151 2298 1152 1152 2298 419 419 2299 1152 1152 2299 421 421 2299 421 421 2300 1152 1152 2300 445 445 2300 421 421 2301 445 445 2301 422 422 2301 422 422 2302 445 445 2302 446 446 2302 422 422 2303 446 446 2303 424 424 2303 424 424 2304 446 446 2304 447 447 2304 424 424 2305 447 447 2305 1153 1153 2305 1153 1153 2306 447 447 2306 449 449 2306 1153 1153 2307 449 449 2307 426 426 2307 426 426 2308 449 449 2308 451 451 2308 426 426 2309 451 451 2309 1154 1154 2309 1154 1154 2310 451 451 2310 1155 1155 2310 1154 1154 2311 1155 1155 2311 292 292 2311 976 976 2312 1157 1157 2312 1156 1156 2312 1156 1156 2313 1157 1157 2313 1159 1159 2313 1156 1156 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 968 968 2315 1158 1158 2316 968 968 2316 991 991 2316 991 991 2317 968 968 2317 1160 1160 2317 991 991 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 966 966 2319 1161 1161 2320 966 966 2320 989 989 2320 989 989 2321 966 966 2321 1163 1163 2321 989 989 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 988 988 2324 988 988 2325 1164 1164 2325 963 963 2325 988 988 2326 963 963 2326 1165 1165 2326 1165 1165 2327 963 963 2327 962 962 2327 1165 1165 2328 962 962 2328 985 985 2328 985 985 2329 962 962 2329 1166 1166 2329 985 985 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 960 960 2331 1167 1167 2332 960 960 2332 984 984 2332 984 984 2333 960 960 2333 959 959 2333 984 984 2334 959 959 2334 983 983 2334 983 983 2335 959 959 2335 1168 1168 2335 983 983 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 956 956 2339 1171 1171 2340 956 956 2340 982 982 2340 982 982 2341 956 956 2341 955 955 2341 982 982 2342 955 955 2342 1172 1172 2342 1172 1172 2343 955 955 2343 954 954 2343 1172 1172 2344 954 954 2344 981 981 2344 981 981 2345 954 954 2345 1173 1173 2345 981 981 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 5 5 2350 5 5 2351 1177 1177 2351 57 57 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/meshes/walker_racecourse.dae b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/walker_racecourse.dae new file mode 100755 index 0000000..84269f2 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/meshes/walker_racecourse.dae @@ -0,0 +1,506 @@ + + + + + Blender User + Blender 2.77.0 commit date:2016-04-05, commit time:18:12, hash:abf6f08 + + 2016-07-27T16:34:38 + 2016-07-27T16:34:38 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.273904 0.1081182 0.02791987 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.01523832 0.01630333 0.01550063 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.64 0.64 0.64 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0.8 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 609.6001 304.8 609.6001 0 304.8 0 609.6001 304.8 30175.2 0 304.8 30784.8 25603.2 304.8 30175.2 26212.8 304.8 30784.8 25603.2 304.8 609.6001 26212.8 304.8 0 5342.319 304.8 13012.63 5377.231 304.8 13081.88 6588.161 304.8 14169.09 5406.497 304.8 13310.42 5390.16 304.8 13386.23 5361.246 304.8 13458.18 5399.938 304.8 13156.03 5409.788 304.8 13232.94 3624.467 304.8 9360.415 3570.321 304.8 9272.057 2369.898 304.8 9883.703 24117.28 304.8 14785.5 23742.11 304.8 14414.03 22260.17 304.8 15680.97 23289.62 304.8 19994.42 23820.05 304.8 19470.24 22268.94 304.8 18354.05 1894.678 304.8 17151.7 1744.71 304.8 17539.68 3139.134 304.8 17820.35 12794.19 304.8 20730.74 17396.63 304.8 20175.11 11431.7 304.8 19012.63 12766.32 304.8 18513.77 3691.769 304.8 9439.215 5296.208 304.8 12950.29 22181.37 304.8 15613.67 23308.47 304.8 14112.88 22093.02 304.8 15559.53 22829.37 304.8 13891.07 21997.28 304.8 15519.87 22319.17 304.8 13755.27 21896.51 304.8 15495.68 24251.72 304.8 18862.15 24571.61 304.8 18188.51 22445.86 304.8 17996.85 24770.05 304.8 17469.67 22453.6 304.8 16147.95 22453.6 304.8 17896.01 22327.48 304.8 15759.77 22381.62 304.8 15848.13 24422.72 304.8 15216.13 22421.28 304.8 15943.87 24649.26 304.8 15693.01 22445.47 304.8 16044.64 24790.11 304.8 16201.83 24841.05 304.8 16727.33 22422.81 304.8 18095.32 22384.99 304.8 18189.12 22333.3 304.8 18276.04 8191.751 304.8 22382.09 8191.751 304.8 20175.11 3589.312 304.8 20730.74 3572.155 304.8 18517.61 3234.311 304.8 20585.15 3135.704 304.8 17930.87 1661.168 304.8 17947.17 3150.766 304.8 18040.42 1646.365 304.8 18362.87 3183.897 304.8 18145.92 1700.713 304.8 18775.26 3234.166 304.8 18244.42 1822.704 304.8 19172.93 3300.166 304.8 18333.15 2008.961 304.8 19544.86 3380.044 304.8 18409.62 2254.323 304.8 19880.75 3471.563 304.8 18471.68 2551.995 304.8 20171.29 2893.732 304.8 20408.43 2249.338 304.8 9592.644 3530.665 304.8 9176.317 2175.794 304.8 9286.31 3506.473 304.8 9075.55 2151.075 304.8 8972.242 3498.342 304.8 8972.242 2175.794 304.8 8658.173 3506.473 304.8 8868.932 2249.338 304.8 8351.838 3530.665 304.8 8768.167 2369.898 304.8 8060.78 3570.321 304.8 8672.426 2534.506 304.8 7792.165 3624.467 304.8 8584.068 2739.107 304.8 7552.606 3691.769 304.8 8505.269 5773.322 304.8 4518.393 5990.675 304.8 6206.362 6069.474 304.8 6139.06 22193.43 304.8 18421.32 22108.52 304.8 18476.27 22676.46 304.8 20418.86 22016.23 304.8 18517.61 21999.07 304.8 20730.74 17396.63 304.8 22382.09 2534.506 304.8 10152.32 2739.107 304.8 10391.88 5276.29 304.8 12929.06 3160.955 304.8 17711.94 3200.562 304.8 17608.69 2106.917 304.8 16793.96 3256.839 304.8 17513.5 2375.549 304.8 16476.38 3328.211 304.8 17429.04 5276.29 304.8 13575.64 5320.588 304.8 13524.21 6157.833 304.8 6084.914 6253.573 304.8 6045.258 5888.799 304.8 4419.766 6354.339 304.8 6021.066 6018.284 304.8 4340.417 6158.586 304.8 4282.302 6457.648 304.8 6012.935 6306.253 304.8 4246.85 21793.2 304.8 15487.55 21793.2 304.8 13709.55 15697.2 304.8 15487.55 15697.2 304.8 13709.55 15323.7 304.8 15458.15 15601.84 304.8 13702.04 14959.39 304.8 15370.69 15508.82 304.8 13679.71 14613.25 304.8 15227.31 15420.45 304.8 13643.1 14293.8 304.8 15031.56 15338.89 304.8 13593.12 14008.91 304.8 14788.23 15266.15 304.8 13531 13765.59 304.8 14503.34 15204.02 304.8 13458.26 13569.83 304.8 14183.9 15154.04 304.8 13376.7 13426.46 304.8 13837.76 15117.44 304.8 13288.32 13339 304.8 13473.45 15095.11 304.8 13195.31 13309.6 304.8 13099.95 15087.6 304.8 13099.95 13309.6 304.8 6673.335 15087.6 304.8 6673.335 13301.47 304.8 6570.026 15057.58 304.8 6291.885 13277.28 304.8 6469.26 14968.26 304.8 5919.828 13237.62 304.8 6373.52 14821.83 304.8 5566.325 13183.48 304.8 6285.162 14621.91 304.8 5240.08 13116.17 304.8 6206.362 14373.41 304.8 4949.126 13037.37 304.8 6139.06 14082.46 304.8 4700.628 12949.02 304.8 6084.914 13756.21 304.8 4500.705 12853.28 304.8 6045.258 13402.71 304.8 4354.278 12752.51 304.8 6021.066 13030.65 304.8 4264.956 12649.2 304.8 6012.935 12649.2 304.8 4234.935 6457.648 304.8 4234.935 914.4001 304.8 28126.14 914.4001 304.8 29870.4 3044.261 304.8 29870.4 3387.684 304.8 6832.188 3044.261 304.8 6832.188 3044.261 304.8 7175.611 23322.15 304.8 20033.44 23304.43 304.8 20045.71 23304.43 304.8 22299.51 17396.63 304.8 22436.06 17016.07 304.8 22299.51 13106.4 304.8 22299.51 13106.4 304.8 20896.73 3441.079 304.8 15339 3044.261 304.8 15339 3044.261 304.8 15735.82 2703.186 304.8 7516.686 2125.619 304.8 8650.227 2201.024 304.8 8336.14 914.4001 304.8 6832.188 2324.635 304.8 8037.717 2493.407 304.8 7762.305 3044.261 304.8 10768.87 2703.186 304.8 10427.8 914.4001 304.8 15339 2493.407 304.8 10182.18 2324.635 304.8 9906.765 2201.024 304.8 9608.342 2125.619 304.8 9294.256 2100.275 304.8 8972.242 4585.413 304.8 13524.21 4544.755 304.8 13458.18 4800.689 304.8 12821.26 4875.733 304.8 12801.72 4953 304.8 12795.15 5030.268 304.8 12801.72 5092.262 304.8 12816.87 5092.262 304.8 13687.82 5068.205 304.8 13694.79 4991.773 304.8 13707.9 4914.228 304.8 13707.9 4837.796 304.8 13694.79 4764.679 304.8 13668.96 4696.979 304.8 13631.14 4636.646 304.8 13582.43 4506.062 304.8 13156.03 4528.77 304.8 13081.88 4563.682 304.8 13012.63 4609.792 304.8 12950.29 4665.778 304.8 12896.63 4730.026 304.8 12853.2 4515.841 304.8 13386.23 4499.503 304.8 13310.42 4496.212 304.8 13232.94 2339.628 304.8 16440.46 1695.967 304.8 17525.38 1848.983 304.8 17129.51 2065.537 304.8 16764.5 1775.546 304.8 19191.82 914.4001 304.8 22299.51 1965.589 304.8 19571.31 2215.938 304.8 19914.02 1651.075 304.8 18786.07 1595.623 304.8 18365.29 1610.726 304.8 17941.14 3044.261 304.8 20543.71 2868.344 304.8 20452.43 2519.661 304.8 20210.47 7811.189 304.8 22285.11 5287.396 304.8 21393.98 5296.208 304.8 21403.71 4665.778 304.8 21350.05 4730.026 304.8 21306.63 3572.155 304.8 20778.56 5342.319 304.8 21466.06 5377.231 304.8 21535.3 5399.938 304.8 21609.45 5409.788 304.8 21686.37 5406.497 304.8 21763.84 5390.16 304.8 21839.65 4800.689 304.8 21274.69 4875.733 304.8 21255.15 4893.101 304.8 21252.51 5361.246 304.8 21911.6 5320.588 304.8 21977.64 5269.355 304.8 22035.85 4991.773 304.8 22161.32 4914.228 304.8 22161.32 3044.261 304.8 22299.51 5209.02 304.8 22084.57 5141.322 304.8 22122.38 5068.205 304.8 22148.22 4696.979 304.8 22084.57 4636.646 304.8 22035.85 4585.413 304.8 21977.64 4544.755 304.8 21911.6 4515.841 304.8 21839.65 4499.503 304.8 21763.84 4496.212 304.8 21686.37 4506.062 304.8 21609.45 4528.77 304.8 21535.3 4837.796 304.8 22148.22 4764.679 304.8 22122.38 3212.954 304.8 20631.24 4563.682 304.8 21466.06 4609.792 304.8 21403.71 8572.314 304.8 22299.51 8191.751 304.8 22436.06 13106.4 304.8 23951.77 17777.2 304.8 22299.51 23304.43 304.8 23951.77 12794.19 304.8 20784.71 22701.69 304.8 20462.95 21036.83 304.8 21306.63 21107.49 304.8 21274.69 21182.53 304.8 21255.15 21259.8 304.8 21248.57 21337.07 304.8 21255.15 21713.3 304.8 21763.84 21696.96 304.8 21839.65 21144.6 304.8 22148.22 21071.48 304.8 22122.38 21003.78 304.8 22084.57 20943.45 304.8 22035.85 20892.21 304.8 21977.64 20851.56 304.8 21911.6 20822.64 304.8 21839.65 20806.3 304.8 21763.84 20803.01 304.8 21686.37 20812.86 304.8 21609.45 21412.11 304.8 21274.69 21482.78 304.8 21306.63 21547.02 304.8 21350.05 20835.57 304.8 21535.3 20870.48 304.8 21466.06 20916.59 304.8 21403.71 20972.58 304.8 21350.05 22016.23 304.8 20778.56 21576.16 304.8 22035.85 21515.82 304.8 22084.57 21448.12 304.8 22122.38 21375 304.8 22148.22 21298.57 304.8 22161.32 21259.8 304.8 22162.97 21221.03 304.8 22161.32 21668.05 304.8 21911.6 21627.39 304.8 21977.64 21603.01 304.8 21403.71 21649.12 304.8 21466.06 21684.03 304.8 21535.3 21706.74 304.8 21609.45 21716.59 304.8 21686.37 25298.4 304.8 15339 24537.13 304.8 15339 24696.99 304.8 15675.61 24820.08 304.8 17478.49 25298.4 304.8 22299.51 24891.85 304.8 16727.28 24840.14 304.8 16192.97 24619.34 304.8 18205.93 24295.68 304.8 18887.62 23858.89 304.8 19502.99 23304.43 304.8 14055.25 23333.86 304.8 14068.88 25298.4 304.8 6832.188 23774.75 304.8 14375.1 24156.18 304.8 14752.83 24466.69 304.8 15190.71 23304.43 304.8 6832.188 22327.99 304.8 13705.24 22846.73 304.8 13843.33 21050.35 304.8 13658.75 21003.78 304.8 13631.14 15697.2 304.8 13658.75 20943.45 304.8 13582.43 20892.21 304.8 13524.21 20851.56 304.8 13458.18 20822.64 304.8 13386.23 20806.3 304.8 13310.42 20803.01 304.8 13232.94 20812.86 304.8 13156.03 15138.4 304.8 13099.95 20835.57 304.8 13081.88 15138.4 304.8 6832.188 20870.48 304.8 13012.63 20916.59 304.8 12950.29 20812.86 304.8 8875.918 20803.01 304.8 8952.837 20806.3 304.8 9030.314 15443.51 304.8 13597.84 15524.52 304.8 13631.4 15165.75 304.8 13272.63 15199.31 304.8 13353.64 15368.75 304.8 13552.03 15245.12 304.8 13428.4 15302.07 304.8 13495.08 15609.79 304.8 13651.87 20972.58 304.8 12896.63 21036.83 304.8 12853.2 21107.49 304.8 12821.26 20822.64 304.8 9106.12 15145.28 304.8 13187.36 20943.45 304.8 9302.32 21003.78 304.8 9351.037 21071.48 304.8 9388.856 20835.57 304.8 8801.772 20870.48 304.8 8732.528 20916.59 304.8 8670.181 21337.07 304.8 8521.619 21412.11 304.8 8541.159 21713.3 304.8 13310.42 21716.59 304.8 13232.94 21706.74 304.8 13156.03 21469.25 304.8 13658.75 21793.2 304.8 13658.75 21515.82 304.8 13631.14 21576.16 304.8 13582.43 21144.6 304.8 9414.689 21182.53 304.8 12801.72 21221.03 304.8 9427.794 20892.21 304.8 9244.108 20851.56 304.8 9178.075 21482.78 304.8 8573.1 21547.02 304.8 8616.524 21603.01 304.8 8670.181 21649.12 304.8 8732.528 21684.03 304.8 8801.772 21706.74 304.8 8875.918 21716.59 304.8 8952.837 21713.3 304.8 9030.314 21696.96 304.8 9106.12 21668.05 304.8 9178.075 21696.96 304.8 13386.23 21668.05 304.8 13458.18 21627.39 304.8 13524.21 20972.58 304.8 8616.524 21036.83 304.8 8573.1 21107.49 304.8 8541.159 21547.02 304.8 12896.63 21482.78 304.8 12853.2 21627.39 304.8 9244.108 21576.16 304.8 9302.32 21603.01 304.8 12950.29 21649.12 304.8 13012.63 21684.03 304.8 13081.88 21515.82 304.8 9351.037 21448.12 304.8 9388.856 21375 304.8 9414.689 21182.53 304.8 8521.619 21259.8 304.8 8515.041 21259.8 304.8 9429.442 21259.8 304.8 12795.15 21298.57 304.8 9427.794 21337.07 304.8 12801.72 21412.11 304.8 12821.26 20812.86 304.8 4595.813 13106.4 304.8 4231.059 13418.41 304.8 4305.965 20972.58 304.8 4336.417 13106.4 304.8 914.4001 20916.59 304.8 4390.075 20870.48 304.8 4452.422 21713.3 304.8 4750.208 21696.96 304.8 4826.014 21221.03 304.8 5147.688 21144.6 304.8 5134.583 21071.48 304.8 5108.749 21003.78 304.8 5070.93 20943.45 304.8 5022.213 20822.64 304.8 4826.014 20806.3 304.8 4750.208 15016.57 304.8 5904.13 20803.01 304.8 4672.731 13779.27 304.8 4455.441 14112.32 304.8 4659.53 20835.57 304.8 4521.665 21259.8 304.8 4234.935 21337.07 304.8 4241.511 23304.43 304.8 914.4001 21412.11 304.8 4261.051 21603.01 304.8 4390.075 21649.12 304.8 4452.422 21668.05 304.8 4897.968 21627.39 304.8 4964.001 21576.16 304.8 5022.213 20892.21 304.8 4964.001 20851.56 304.8 4897.968 15138.4 304.8 6673.335 15107.75 304.8 6283.938 14409.33 304.8 4913.205 14663.01 304.8 5210.22 14867.09 304.8 5543.262 21036.83 304.8 4292.993 21107.49 304.8 4261.051 21182.53 304.8 4241.511 21482.78 304.8 4292.993 21547.02 304.8 4336.417 21684.03 304.8 4521.665 21706.74 304.8 4595.813 21716.59 304.8 4672.731 21375 304.8 5134.583 21298.57 304.8 5147.688 21259.8 304.8 5149.335 21515.82 304.8 5070.93 21448.12 304.8 5108.749 5409.788 304.8 4672.731 5406.497 304.8 4750.208 5737.401 304.8 4482.472 5390.16 304.8 4826.014 5388.475 304.8 4831.397 4544.755 304.8 4897.968 4515.841 304.8 4826.014 5092.262 304.8 5127.609 5068.205 304.8 5134.583 4991.773 304.8 5147.688 4914.228 304.8 5147.688 4837.796 304.8 5134.583 4585.413 304.8 4964.001 3044.261 304.8 914.4001 5030.268 304.8 4241.511 5105.312 304.8 4261.051 5175.975 304.8 4292.993 5240.223 304.8 4336.417 4764.679 304.8 5108.749 4696.979 304.8 5070.93 4636.646 304.8 5022.213 4499.503 304.8 4750.208 4496.212 304.8 4672.731 4506.062 304.8 4595.813 4528.77 304.8 4521.665 4563.682 304.8 4452.422 4609.792 304.8 4390.075 4665.778 304.8 4336.417 4730.026 304.8 4292.993 4800.689 304.8 4261.051 4875.733 304.8 4241.511 4953 304.8 4234.935 5858.939 304.8 4378.667 5377.231 304.8 4521.665 5399.938 304.8 4595.813 6142.888 304.8 4233.988 6298.307 304.8 4196.675 6457.648 304.8 4184.135 5296.208 304.8 4390.075 5342.319 304.8 4452.422 5995.221 304.8 4295.154 12649.2 304.8 4184.135 13038.6 304.8 4214.781 914.4001 304.8 914.4001 3044.261 304.8 28126.14 914.4001 304.8 23951.77 3044.261 304.8 23951.77 4665.778 304.8 25568.96 4730.026 304.8 25525.53 4800.689 304.8 25493.59 4991.773 304.8 26380.23 5068.205 304.8 26367.12 13106.4 304.8 28126.14 4506.062 304.8 25828.35 4528.77 304.8 25754.2 4563.682 304.8 25684.96 4609.792 304.8 25622.61 4914.228 304.8 26380.23 4837.796 304.8 26367.12 4764.679 304.8 26341.29 4585.413 304.8 26196.54 4544.755 304.8 26130.5 4875.733 304.8 25474.05 4953 304.8 25467.47 5030.268 304.8 25474.05 5105.312 304.8 25493.59 5175.975 304.8 25525.53 5240.223 304.8 25568.96 5296.208 304.8 25622.61 5342.319 304.8 25684.96 5377.231 304.8 25754.2 4696.979 304.8 26303.47 4636.646 304.8 26254.75 4515.841 304.8 26058.55 4499.503 304.8 25982.75 4496.212 304.8 25905.27 5390.16 304.8 26058.55 5361.246 304.8 26130.5 5320.588 304.8 26196.54 5269.355 304.8 26254.75 5399.938 304.8 25828.35 5409.788 304.8 25905.27 5406.497 304.8 25982.75 5209.02 304.8 26303.47 5141.322 304.8 26341.29 21259.8 304.8 25467.47 21337.07 304.8 25474.05 23304.43 304.8 28126.14 21221.03 304.8 26380.23 20972.58 304.8 25568.96 21036.83 304.8 25525.53 21107.49 304.8 25493.59 21182.53 304.8 25474.05 21375 304.8 26367.12 21298.57 304.8 26380.23 21259.8 304.8 26381.87 21144.6 304.8 26367.12 21071.48 304.8 26341.29 21003.78 304.8 26303.47 20812.86 304.8 25828.35 20835.57 304.8 25754.2 21412.11 304.8 25493.59 21482.78 304.8 25525.53 21547.02 304.8 25568.96 20943.45 304.8 26254.75 20892.21 304.8 26196.54 20851.56 304.8 26130.5 20822.64 304.8 26058.55 20806.3 304.8 25982.75 20803.01 304.8 25905.27 20870.48 304.8 25684.96 20916.59 304.8 25622.61 21576.16 304.8 26254.75 21515.82 304.8 26303.47 21448.12 304.8 26341.29 21603.01 304.8 25622.61 21649.12 304.8 25684.96 21684.03 304.8 25754.2 21706.74 304.8 25828.35 21716.59 304.8 25905.27 21713.3 304.8 25982.75 21696.96 304.8 26058.55 21668.05 304.8 26130.5 21627.39 304.8 26196.54 13106.4 304.8 29870.4 23304.43 304.8 29870.4 25298.4 304.8 914.4001 25298.4 304.8 29870.4 25298.4 304.8 28126.14 25298.4 304.8 23951.77 21448.12 609.6 13668.96 21469.25 609.6 13658.75 21515.82 914.4 13631.14 21448.12 914.4 13668.96 21375 914.4 13694.79 21375 609.6 13694.79 21298.57 914.4 13707.9 21298.57 609.6 13707.9 21259.8 609.6 13709.55 21259.8 914.4 13709.55 21221.03 609.6 13707.9 21221.03 914.4 13707.9 21144.6 914.4 13694.79 21144.6 609.6 13694.79 21071.48 914.4 13668.96 21071.48 609.6 13668.96 21050.35 609.6 13658.75 21003.78 914.4 13631.14 20943.45 914.4 13582.43 20892.21 914.4 13524.21 20851.56 914.4 13458.18 20822.64 914.4 13386.23 20806.3 914.4 13310.42 20803.01 914.4 13232.94 20812.86 914.4 13156.03 20835.57 914.4 13081.88 20870.48 914.4 13012.63 20916.59 914.4 12950.29 20972.58 914.4 12896.63 21036.83 914.4 12853.2 21107.49 914.4 12821.26 21182.53 914.4 12801.72 21259.8 914.4 12795.15 21337.07 914.4 12801.72 21412.11 914.4 12821.26 21482.78 914.4 12853.2 21547.02 914.4 12896.63 21603.01 914.4 12950.29 21649.12 914.4 13012.63 21684.03 914.4 13081.88 21706.74 914.4 13156.03 21716.59 914.4 13232.94 21713.3 914.4 13310.42 21696.96 914.4 13386.23 21668.05 914.4 13458.18 21627.39 914.4 13524.21 21576.16 914.4 13582.43 5269.355 609.6 13582.43 5276.29 609.6 13575.64 5320.588 914.4 13524.21 5269.355 914.4 13582.43 5209.02 914.4 13631.14 5209.02 609.6 13631.14 5141.322 914.4 13668.96 5141.322 609.6 13668.96 5092.262 609.6 13687.82 5105.312 609.6 12821.26 5092.262 609.6 12816.87 5030.268 914.4 12801.72 5105.312 914.4 12821.26 5175.975 914.4 12853.2 5175.975 609.6 12853.2 5240.223 914.4 12896.63 5240.223 609.6 12896.63 5276.29 609.6 12929.06 5068.205 914.4 13694.79 4991.773 914.4 13707.9 4953 914.4 13709.55 5296.208 914.4 12950.29 5342.319 914.4 13012.63 5377.231 914.4 13081.88 5399.938 914.4 13156.03 5409.788 914.4 13232.94 5406.497 914.4 13310.42 5390.16 914.4 13386.23 5361.246 914.4 13458.18 4914.228 914.4 13707.9 4837.796 914.4 13694.79 4764.679 914.4 13668.96 4696.979 914.4 13631.14 4636.646 914.4 13582.43 4585.413 914.4 13524.21 4544.755 914.4 13458.18 4515.841 914.4 13386.23 4499.503 914.4 13310.42 4496.212 914.4 13232.94 4506.062 914.4 13156.03 4528.77 914.4 13081.88 4563.682 914.4 13012.63 4609.792 914.4 12950.29 4665.778 914.4 12896.63 4730.026 914.4 12853.2 4800.689 914.4 12821.26 4875.733 914.4 12801.72 4953 914.4 12795.15 609.6001 914.4 609.6001 25603.2 914.4 609.6001 609.6001 914.4 30175.2 25603.2 914.4 30175.2 25298.4 914.4 29870.4 25298.4 914.4 914.4001 914.4001 914.4 29870.4 914.4001 914.4 914.4001 21298.57 914.4 26380.23 21259.8 914.4 26381.87 21221.03 914.4 26380.23 21144.6 914.4 26367.12 21071.48 914.4 26341.29 21003.78 914.4 26303.47 20943.45 914.4 26254.75 20892.21 914.4 26196.54 20851.56 914.4 26130.5 20822.64 914.4 26058.55 20806.3 914.4 25982.75 20803.01 914.4 25905.27 20812.86 914.4 25828.35 20835.57 914.4 25754.2 20870.48 914.4 25684.96 20916.59 914.4 25622.61 20972.58 914.4 25568.96 21036.83 914.4 25525.53 21107.49 914.4 25493.59 21182.53 914.4 25474.05 21259.8 914.4 25467.47 21337.07 914.4 25474.05 21412.11 914.4 25493.59 21482.78 914.4 25525.53 21547.02 914.4 25568.96 21603.01 914.4 25622.61 21649.12 914.4 25684.96 21684.03 914.4 25754.2 21706.74 914.4 25828.35 21716.59 914.4 25905.27 21713.3 914.4 25982.75 21696.96 914.4 26058.55 21668.05 914.4 26130.5 21627.39 914.4 26196.54 21576.16 914.4 26254.75 21515.82 914.4 26303.47 21448.12 914.4 26341.29 21375 914.4 26367.12 21259.8 914.4 25924.67 21298.57 914.4 22161.32 21259.8 914.4 22162.97 21221.03 914.4 22161.32 21144.6 914.4 22148.22 21071.48 914.4 22122.38 21003.78 914.4 22084.57 20943.45 914.4 22035.85 20892.21 914.4 21977.64 20851.56 914.4 21911.6 20822.64 914.4 21839.65 20806.3 914.4 21763.84 20803.01 914.4 21686.37 20812.86 914.4 21609.45 20835.57 914.4 21535.3 20870.48 914.4 21466.06 20916.59 914.4 21403.71 20972.58 914.4 21350.05 21036.83 914.4 21306.63 21107.49 914.4 21274.69 21182.53 914.4 21255.15 21259.8 914.4 21248.57 21337.07 914.4 21255.15 21412.11 914.4 21274.69 21482.78 914.4 21306.63 21547.02 914.4 21350.05 21603.01 914.4 21403.71 21649.12 914.4 21466.06 21684.03 914.4 21535.3 21706.74 914.4 21609.45 21716.59 914.4 21686.37 21713.3 914.4 21763.84 21696.96 914.4 21839.65 21668.05 914.4 21911.6 21627.39 914.4 21977.64 21576.16 914.4 22035.85 21515.82 914.4 22084.57 21448.12 914.4 22122.38 21375 914.4 22148.22 21259.8 914.4 21705.77 21259.8 914.4 13252.35 21298.57 914.4 9427.794 21259.8 914.4 9429.442 21221.03 914.4 9427.794 21144.6 914.4 9414.689 21071.48 914.4 9388.856 21003.78 914.4 9351.037 20943.45 914.4 9302.32 20892.21 914.4 9244.108 20851.56 914.4 9178.075 20822.64 914.4 9106.12 20806.3 914.4 9030.314 20803.01 914.4 8952.837 20812.86 914.4 8875.918 20835.57 914.4 8801.772 20870.48 914.4 8732.528 20916.59 914.4 8670.181 20972.58 914.4 8616.524 21036.83 914.4 8573.1 21107.49 914.4 8541.159 21182.53 914.4 8521.619 21259.8 914.4 8515.041 21337.07 914.4 8521.619 21412.11 914.4 8541.159 21482.78 914.4 8573.1 21547.02 914.4 8616.524 21603.01 914.4 8670.181 21649.12 914.4 8732.528 21684.03 914.4 8801.772 21706.74 914.4 8875.918 21716.59 914.4 8952.837 21713.3 914.4 9030.314 21696.96 914.4 9106.12 21668.05 914.4 9178.075 21627.39 914.4 9244.108 21576.16 914.4 9302.32 21515.82 914.4 9351.037 21448.12 914.4 9388.856 21375 914.4 9414.689 21259.8 914.4 8972.242 21298.57 914.4 5147.688 21259.8 914.4 5149.335 21221.03 914.4 5147.688 21144.6 914.4 5134.583 21071.48 914.4 5108.749 21003.78 914.4 5070.93 20943.45 914.4 5022.213 20892.21 914.4 4964.001 20851.56 914.4 4897.968 20822.64 914.4 4826.014 20806.3 914.4 4750.208 20803.01 914.4 4672.731 20812.86 914.4 4595.813 20835.57 914.4 4521.665 20870.48 914.4 4452.422 20916.59 914.4 4390.075 20972.58 914.4 4336.417 21036.83 914.4 4292.993 21107.49 914.4 4261.051 21182.53 914.4 4241.511 21259.8 914.4 4234.935 21337.07 914.4 4241.511 21412.11 914.4 4261.051 21482.78 914.4 4292.993 21547.02 914.4 4336.417 21603.01 914.4 4390.075 21649.12 914.4 4452.422 21684.03 914.4 4521.665 21706.74 914.4 4595.813 21716.59 914.4 4672.731 21713.3 914.4 4750.208 21696.96 914.4 4826.014 21668.05 914.4 4897.968 21627.39 914.4 4964.001 21576.16 914.4 5022.213 21515.82 914.4 5070.93 21448.12 914.4 5108.749 21375 914.4 5134.583 21259.8 914.4 4692.135 4953 914.4 26381.87 4914.228 914.4 26380.23 4837.796 914.4 26367.12 4764.679 914.4 26341.29 4696.979 914.4 26303.47 4636.646 914.4 26254.75 4585.413 914.4 26196.54 4544.755 914.4 26130.5 4515.841 914.4 26058.55 4499.503 914.4 25982.75 4496.212 914.4 25905.27 4506.062 914.4 25828.35 4528.77 914.4 25754.2 4563.682 914.4 25684.96 4609.792 914.4 25622.61 4665.778 914.4 25568.96 4730.026 914.4 25525.53 4800.689 914.4 25493.59 4875.733 914.4 25474.05 4953 914.4 25467.47 5030.268 914.4 25474.05 5105.312 914.4 25493.59 5175.975 914.4 25525.53 5240.223 914.4 25568.96 5296.208 914.4 25622.61 5342.319 914.4 25684.96 5377.231 914.4 25754.2 5399.938 914.4 25828.35 5409.788 914.4 25905.27 5406.497 914.4 25982.75 5390.16 914.4 26058.55 5361.246 914.4 26130.5 5320.588 914.4 26196.54 5269.355 914.4 26254.75 5209.02 914.4 26303.47 5141.322 914.4 26341.29 5068.205 914.4 26367.12 4991.773 914.4 26380.23 4953 914.4 25924.67 4953 609.6 21248.57 4893.101 609.6 21252.51 4875.733 914.4 21255.15 4953 914.4 21248.57 5030.268 914.4 21255.15 5030.268 609.6 21255.15 5105.312 914.4 21274.69 5105.312 609.6 21274.69 5107.405 609.6 21275.43 5175.975 914.4 21306.63 5175.975 609.6 21306.63 5240.223 914.4 21350.05 5240.223 609.6 21350.05 5287.396 609.6 21393.98 4837.796 914.4 22148.22 4764.679 914.4 22122.38 4696.979 914.4 22084.57 4636.646 914.4 22035.85 4585.413 914.4 21977.64 4544.755 914.4 21911.6 4515.841 914.4 21839.65 4499.503 914.4 21763.84 4496.212 914.4 21686.37 4506.062 914.4 21609.45 4528.77 914.4 21535.3 4563.682 914.4 21466.06 4609.792 914.4 21403.71 4665.778 914.4 21350.05 4730.026 914.4 21306.63 4800.689 914.4 21274.69 5296.208 914.4 21403.71 5342.319 914.4 21466.06 5377.231 914.4 21535.3 5399.938 914.4 21609.45 5409.788 914.4 21686.37 5406.497 914.4 21763.84 5390.16 914.4 21839.65 5361.246 914.4 21911.6 5320.588 914.4 21977.64 5269.355 914.4 22035.85 5209.02 914.4 22084.57 5141.322 914.4 22122.38 5068.205 914.4 22148.22 4991.773 914.4 22161.32 4953 914.4 22162.97 4914.228 914.4 22161.32 4953 914.4 21705.77 4953 914.4 13252.35 5361.246 609.6 4897.968 5388.475 609.6 4831.397 5390.16 914.4 4826.014 5361.246 914.4 4897.968 5320.588 914.4 4964.001 5320.588 609.6 4964.001 5276.29 609.6 5015.424 5269.355 914.4 5022.213 5269.355 609.6 5022.213 5209.02 914.4 5070.93 5209.02 609.6 5070.93 5141.322 914.4 5108.749 5141.322 609.6 5108.749 5092.262 609.6 5127.609 5068.205 914.4 5134.583 4991.773 914.4 5147.688 4953 914.4 5149.335 4914.228 914.4 5147.688 4837.796 914.4 5134.583 4764.679 914.4 5108.749 4696.979 914.4 5070.93 4636.646 914.4 5022.213 4585.413 914.4 4964.001 4544.755 914.4 4897.968 4515.841 914.4 4826.014 4499.503 914.4 4750.208 4496.212 914.4 4672.731 4506.062 914.4 4595.813 4528.77 914.4 4521.665 4563.682 914.4 4452.422 4609.792 914.4 4390.075 4665.778 914.4 4336.417 4730.026 914.4 4292.993 4800.689 914.4 4261.051 4875.733 914.4 4241.511 4953 914.4 4234.935 5030.268 914.4 4241.511 5105.312 914.4 4261.051 5175.975 914.4 4292.993 5240.223 914.4 4336.417 5296.208 914.4 4390.075 5342.319 914.4 4452.422 5377.231 914.4 4521.665 5399.938 914.4 4595.813 5409.788 914.4 4672.731 5406.497 914.4 4750.208 4953 914.4 4692.135 15697.2 609.6 13658.75 15697.2 609.6 13709.55 21793.2 609.6 13709.55 3572.155 609.6 20778.56 8191.751 609.6 22436.06 8191.751 609.6 22382.09 3589.312 609.6 20730.74 2703.186 609.6 10427.8 2339.628 609.6 16440.46 5737.401 609.6 4482.472 2703.186 609.6 7516.686 5773.322 609.6 4518.393 5858.939 609.6 4378.667 5888.799 609.6 4419.766 5995.221 609.6 4295.154 6018.284 609.6 4340.417 6142.888 609.6 4233.988 6158.586 609.6 4282.302 6298.307 609.6 4196.675 6306.253 609.6 4246.85 6457.648 609.6 4184.135 6457.648 609.6 4234.935 12649.2 609.6 4184.135 12649.2 609.6 4234.935 13038.6 609.6 4214.781 13030.65 609.6 4264.956 13418.41 609.6 4305.965 13402.71 609.6 4354.278 13779.27 609.6 4455.441 13756.21 609.6 4500.705 14112.32 609.6 4659.53 14082.46 609.6 4700.628 14409.33 609.6 4913.205 14373.41 609.6 4949.126 14663.01 609.6 5210.22 14621.91 609.6 5240.08 14867.09 609.6 5543.262 14821.83 609.6 5566.325 15016.57 609.6 5904.13 14968.26 609.6 5919.828 15107.75 609.6 6283.938 15057.58 609.6 6291.885 15138.4 609.6 6673.335 15087.6 609.6 6673.335 15138.4 609.6 13099.95 15087.6 609.6 13099.95 15145.28 609.6 13187.36 15095.11 609.6 13195.31 15165.75 609.6 13272.63 15117.44 609.6 13288.32 15199.31 609.6 13353.64 15154.04 609.6 13376.7 15245.12 609.6 13428.4 15204.02 609.6 13458.26 15302.07 609.6 13495.08 15266.15 609.6 13531 15368.75 609.6 13552.03 15338.89 609.6 13593.12 15443.51 609.6 13597.84 15420.45 609.6 13643.1 15524.52 609.6 13631.4 15508.82 609.6 13679.71 15609.79 609.6 13651.87 15601.84 609.6 13702.04 22327.99 609.6 13705.24 21793.2 609.6 13658.75 12794.19 609.6 20730.74 12794.19 609.6 20784.71 17396.63 609.6 22382.09 17396.63 609.6 22436.06 21999.07 609.6 20730.74 22016.23 609.6 20778.56 22676.46 609.6 20418.86 22701.69 609.6 20462.95 23289.62 609.6 19994.42 23322.15 609.6 20033.44 23820.05 609.6 19470.24 23858.89 609.6 19502.99 24251.72 609.6 18862.15 24295.68 609.6 18887.62 24571.61 609.6 18188.51 24619.34 609.6 18205.93 24770.05 609.6 17469.67 24820.08 609.6 17478.49 24841.05 609.6 16727.33 24891.85 609.6 16727.28 24790.11 609.6 16201.83 24840.14 609.6 16192.97 24649.26 609.6 15693.01 24696.99 609.6 15675.61 24422.72 609.6 15216.13 24466.69 609.6 15190.71 24117.28 609.6 14785.5 24156.18 609.6 14752.83 23742.11 609.6 14414.03 23774.75 609.6 14375.1 23308.47 609.6 14112.88 23333.86 609.6 14068.88 22829.37 609.6 13891.07 22846.73 609.6 13843.33 22319.17 609.6 13755.27 2375.549 609.6 16476.38 2106.917 609.6 16793.96 2065.537 609.6 16764.5 1894.678 609.6 17151.7 1848.983 609.6 17129.51 1744.71 609.6 17539.68 1695.967 609.6 17525.38 1661.168 609.6 17947.17 1610.726 609.6 17941.14 1646.365 609.6 18362.87 1595.623 609.6 18365.29 1700.713 609.6 18775.26 1651.075 609.6 18786.07 1822.704 609.6 19172.93 1775.546 609.6 19191.82 2008.961 609.6 19544.86 1965.589 609.6 19571.31 2254.323 609.6 19880.75 2215.938 609.6 19914.02 2551.995 609.6 20171.29 2519.661 609.6 20210.47 2893.732 609.6 20408.43 2868.344 609.6 20452.43 3234.311 609.6 20585.15 3212.954 609.6 20631.24 2739.107 609.6 7552.606 2493.407 609.6 7762.305 2324.635 609.6 8037.717 2201.024 609.6 8336.14 2125.619 609.6 8650.227 2100.275 609.6 8972.242 2125.619 609.6 9294.256 2201.024 609.6 9608.342 2324.635 609.6 9906.765 2493.407 609.6 10182.18 2739.107 609.6 10391.88 2534.506 609.6 7792.165 2369.898 609.6 8060.78 2249.338 609.6 8351.838 2175.794 609.6 8658.173 2151.075 609.6 8972.242 2175.794 609.6 9286.31 2249.338 609.6 9592.644 2369.898 609.6 9883.703 2534.506 609.6 10152.32 3230.919 609.6 18126.7 3183.897 609.6 18145.92 3277.322 609.6 18217.62 3234.166 609.6 18244.42 3338.244 609.6 18299.52 3300.166 609.6 18333.15 3411.979 609.6 18370.11 3380.044 609.6 18409.62 3496.457 609.6 18427.4 3471.563 609.6 18471.68 3589.312 609.6 18469.8 3572.155 609.6 18517.61 8191.751 609.6 20121.14 8191.751 609.6 20175.11 11339.11 609.6 18991.88 11431.7 609.6 19012.63 6588.161 609.6 14240.93 6588.161 609.6 14169.09 3364.132 609.6 17464.96 3328.211 609.6 17429.04 3298.25 609.6 17542.93 3256.839 609.6 17513.5 3246.302 609.6 17630.8 3200.562 609.6 17608.69 3209.742 609.6 17726.1 3160.955 609.6 17711.94 3189.598 609.6 17826.16 3139.134 609.6 17820.35 3186.434 609.6 17928.19 3135.704 609.6 17930.87 3200.337 609.6 18029.32 3150.766 609.6 18040.42 8191.751 304.8 20121.14 11339.11 304.8 18991.88 6588.161 304.8 14240.93 3364.132 304.8 17464.96 3589.312 304.8 18469.8 3496.457 304.8 18427.4 3411.979 304.8 18370.11 3338.244 304.8 18299.52 3277.322 304.8 18217.62 3230.919 304.8 18126.7 3200.337 304.8 18029.32 3186.434 304.8 17928.19 3189.598 304.8 17826.16 3209.742 304.8 17726.1 3246.302 304.8 17630.8 3298.25 304.8 17542.93 4953 914.4 17989.65 4991.773 914.4 17988.01 4953 914.4 17532.45 4914.228 914.4 17988.01 4696.979 914.4 17911.25 4764.679 914.4 17949.07 4837.796 914.4 17974.9 4544.755 914.4 17738.29 4585.413 914.4 17804.32 4636.646 914.4 17862.53 4496.212 914.4 17513.05 4499.503 914.4 17590.53 4515.841 914.4 17666.33 4563.682 914.4 17292.74 4528.77 914.4 17361.98 4506.062 914.4 17436.13 4730.026 914.4 17133.31 4665.778 914.4 17176.74 4609.792 914.4 17230.39 4953 914.4 17075.25 4875.733 914.4 17081.83 4800.689 914.4 17101.37 5175.975 914.4 17133.31 5105.312 914.4 17101.37 5030.268 914.4 17081.83 5342.319 914.4 17292.74 5296.208 914.4 17230.39 5240.223 914.4 17176.74 5409.788 914.4 17513.05 5399.938 914.4 17436.13 5377.231 914.4 17361.98 5361.246 914.4 17738.29 5390.16 914.4 17666.33 5406.497 914.4 17590.53 5209.02 914.4 17911.25 5269.355 914.4 17862.53 5320.588 914.4 17804.32 5068.205 914.4 17974.9 5141.322 914.4 17949.07 4914.228 304.8 17988.01 4837.796 304.8 17974.9 4764.679 304.8 17949.07 4696.979 304.8 17911.25 4636.646 304.8 17862.53 4585.413 304.8 17804.32 4544.755 304.8 17738.29 4515.841 304.8 17666.33 4499.503 304.8 17590.53 4496.212 304.8 17513.05 4506.062 304.8 17436.13 4528.77 304.8 17361.98 4563.682 304.8 17292.74 4609.792 304.8 17230.39 4665.778 304.8 17176.74 4730.026 304.8 17133.31 4800.689 304.8 17101.37 4875.733 304.8 17081.83 4953 304.8 17075.25 5030.268 304.8 17081.83 5105.312 304.8 17101.37 5175.975 304.8 17133.31 5240.223 304.8 17176.74 5296.208 304.8 17230.39 5342.319 304.8 17292.74 5377.231 304.8 17361.98 5399.938 304.8 17436.13 5409.788 304.8 17513.05 5406.497 304.8 17590.53 5390.16 304.8 17666.33 5361.246 304.8 17738.29 5320.588 304.8 17804.32 5269.355 304.8 17862.53 5209.02 304.8 17911.25 5141.322 304.8 17949.07 5068.205 304.8 17974.9 4991.773 304.8 17988.01 3691.769 609.6 8505.269 3624.467 609.6 8584.068 3570.321 609.6 8672.426 3530.665 609.6 8768.167 3506.473 609.6 8868.932 3498.342 609.6 8972.242 3506.473 609.6 9075.55 3530.665 609.6 9176.317 3570.321 609.6 9272.057 3624.467 609.6 9360.415 3691.769 609.6 9439.215 12766.32 609.6 18513.77 17396.63 609.6 20175.11 22016.23 609.6 18517.61 22108.52 609.6 18476.27 22193.43 609.6 18421.32 22268.94 609.6 18354.05 22333.3 609.6 18276.04 22384.99 609.6 18189.12 22422.81 609.6 18095.32 22445.86 609.6 17996.85 22453.6 609.6 17896.01 22453.6 609.6 16147.95 22445.47 609.6 16044.64 22421.28 609.6 15943.87 22381.62 609.6 15848.13 22327.48 609.6 15759.77 22260.17 609.6 15680.97 22181.37 609.6 15613.67 22093.02 609.6 15559.53 21997.28 609.6 15519.87 21896.51 609.6 15495.68 21793.2 609.6 15487.55 15697.2 609.6 15487.55 15323.7 609.6 15458.15 14959.39 609.6 15370.69 14613.25 609.6 15227.31 14293.8 609.6 15031.56 14008.91 609.6 14788.23 13765.59 609.6 14503.34 13569.83 609.6 14183.9 13426.46 609.6 13837.76 13339 609.6 13473.45 13309.6 609.6 13099.95 13309.6 609.6 6673.335 13301.47 609.6 6570.026 13277.28 609.6 6469.26 13237.62 609.6 6373.52 13183.48 609.6 6285.162 13116.17 609.6 6206.362 13037.37 609.6 6139.06 12949.02 609.6 6084.914 12853.28 609.6 6045.258 12752.51 609.6 6021.066 12649.2 609.6 6012.935 6457.648 609.6 6012.935 6354.339 609.6 6021.066 6253.573 609.6 6045.258 6157.833 609.6 6084.914 6069.474 609.6 6139.06 5990.675 609.6 6206.362 6457.648 609.6 6063.735 6362.286 609.6 6071.24 6269.271 609.6 6093.571 6180.896 609.6 6130.178 6099.334 609.6 6180.158 6026.596 609.6 6242.283 3727.69 609.6 8541.19 3665.565 609.6 8613.928 3615.584 609.6 8695.489 3578.978 609.6 8783.865 3556.647 609.6 8876.879 3549.142 609.6 8972.242 3556.647 609.6 9067.605 3578.978 609.6 9160.619 3615.584 609.6 9248.995 3665.565 609.6 9330.555 3727.69 609.6 9403.294 12794.19 609.6 18469.8 17396.63 609.6 20121.14 21999.07 609.6 18469.8 22084.27 609.6 18431.63 22162.64 609.6 18380.91 22232.35 609.6 18318.82 22291.75 609.6 18246.81 22339.47 609.6 18166.57 22374.38 609.6 18079.99 22395.65 609.6 17989.09 22402.8 609.6 17896.01 22402.8 609.6 16147.95 22395.3 609.6 16052.59 22372.97 609.6 15959.57 22336.36 609.6 15871.2 22286.38 609.6 15789.63 22224.25 609.6 15716.89 22151.51 609.6 15654.77 22069.95 609.6 15604.79 21981.58 609.6 15568.18 21888.56 609.6 15545.85 21793.2 609.6 15538.35 15697.2 609.6 15538.35 15315.75 609.6 15508.33 14943.69 609.6 15419 14590.19 609.6 15272.58 14263.94 609.6 15072.65 13972.99 609.6 14824.16 13724.49 609.6 14533.2 13524.57 609.6 14206.96 13378.14 609.6 13853.45 13288.82 609.6 13481.4 13258.8 609.6 13099.95 13258.8 609.6 6673.335 13251.29 609.6 6577.973 13228.96 609.6 6484.958 13192.36 609.6 6396.583 13142.38 609.6 6315.021 13080.25 609.6 6242.283 13007.51 609.6 6180.158 12925.95 609.6 6130.178 12837.58 609.6 6093.571 12744.56 609.6 6071.24 12649.2 609.6 6063.735 3727.69 304.8 9403.294 3665.565 304.8 9330.555 3615.584 304.8 9248.995 3578.978 304.8 9160.619 3556.647 304.8 9067.605 3549.142 304.8 8972.242 3556.647 304.8 8876.879 3578.978 304.8 8783.865 3615.584 304.8 8695.489 3665.565 304.8 8613.928 3727.69 304.8 8541.19 12794.19 304.8 18469.8 17396.63 304.8 20121.14 21999.07 304.8 18469.8 22402.8 304.8 17896.01 22395.65 304.8 17989.09 22374.38 304.8 18079.99 22339.47 304.8 18166.57 22291.75 304.8 18246.81 22232.35 304.8 18318.82 22162.64 304.8 18380.91 22084.27 304.8 18431.63 22402.8 304.8 16147.95 21793.2 304.8 15538.35 21888.56 304.8 15545.85 21981.58 304.8 15568.18 22069.95 304.8 15604.79 22151.51 304.8 15654.77 22224.25 304.8 15716.89 22286.38 304.8 15789.63 22336.36 304.8 15871.2 22372.97 304.8 15959.57 22395.3 304.8 16052.59 15697.2 304.8 15538.35 13258.8 304.8 13099.95 13288.82 304.8 13481.4 13378.14 304.8 13853.45 13524.57 304.8 14206.96 13724.49 304.8 14533.2 13972.99 304.8 14824.16 14263.94 304.8 15072.65 14590.19 304.8 15272.58 14943.69 304.8 15419 15315.75 304.8 15508.33 13258.8 304.8 6673.335 12649.2 304.8 6063.735 12744.56 304.8 6071.24 12837.58 304.8 6093.571 12925.95 304.8 6130.178 13007.51 304.8 6180.158 13080.25 304.8 6242.283 13142.38 304.8 6315.021 13192.36 304.8 6396.583 13228.96 304.8 6484.958 13251.29 304.8 6577.973 6457.648 304.8 6063.735 6026.596 304.8 6242.283 6099.334 304.8 6180.158 6180.896 304.8 6130.178 6269.271 304.8 6093.571 6362.286 304.8 6071.24 4953 914.4 9429.442 4991.773 914.4 9427.794 4953 914.4 8972.242 4914.228 914.4 9427.794 4696.979 914.4 9351.037 4764.679 914.4 9388.856 4837.796 914.4 9414.689 4544.755 914.4 9178.075 4585.413 914.4 9244.108 4636.646 914.4 9302.32 4496.212 914.4 8952.837 4499.503 914.4 9030.314 4515.841 914.4 9106.12 4563.682 914.4 8732.528 4528.77 914.4 8801.772 4506.062 914.4 8875.918 4730.026 914.4 8573.1 4665.778 914.4 8616.524 4609.792 914.4 8670.181 4953 914.4 8515.041 4875.733 914.4 8521.619 4800.689 914.4 8541.159 5175.975 914.4 8573.1 5105.312 914.4 8541.159 5030.268 914.4 8521.619 5342.319 914.4 8732.528 5296.208 914.4 8670.181 5240.223 914.4 8616.524 5409.788 914.4 8952.837 5399.938 914.4 8875.918 5377.231 914.4 8801.772 5361.246 914.4 9178.075 5390.16 914.4 9106.12 5406.497 914.4 9030.314 5209.02 914.4 9351.037 5269.355 914.4 9302.32 5320.588 914.4 9244.108 5068.205 914.4 9414.689 5141.322 914.4 9388.856 21259.8 914.4 17989.65 21298.57 914.4 17988.01 21259.8 914.4 17532.45 21221.03 914.4 17988.01 21003.78 914.4 17911.25 21071.48 914.4 17949.07 21144.6 914.4 17974.9 20851.56 914.4 17738.29 20892.21 914.4 17804.32 20943.45 914.4 17862.53 20803.01 914.4 17513.05 20806.3 914.4 17590.53 20822.64 914.4 17666.33 20870.48 914.4 17292.74 20835.57 914.4 17361.98 20812.86 914.4 17436.13 21036.83 914.4 17133.31 20972.58 914.4 17176.74 20916.59 914.4 17230.39 21259.8 914.4 17075.25 21182.53 914.4 17081.83 21107.49 914.4 17101.37 21482.78 914.4 17133.31 21412.11 914.4 17101.37 21337.07 914.4 17081.83 21649.12 914.4 17292.74 21603.01 914.4 17230.39 21547.02 914.4 17176.74 21716.59 914.4 17513.05 21706.74 914.4 17436.13 21684.03 914.4 17361.98 21668.05 914.4 17738.29 21696.96 914.4 17666.33 21713.3 914.4 17590.53 21515.82 914.4 17911.25 21576.16 914.4 17862.53 21627.39 914.4 17804.32 21375 914.4 17974.9 21448.12 914.4 17949.07 4914.228 304.8 9427.794 4837.796 304.8 9414.689 4764.679 304.8 9388.856 4696.979 304.8 9351.037 4636.646 304.8 9302.32 4585.413 304.8 9244.108 4544.755 304.8 9178.075 4515.841 304.8 9106.12 4499.503 304.8 9030.314 4496.212 304.8 8952.837 4506.062 304.8 8875.918 4528.77 304.8 8801.772 4563.682 304.8 8732.528 4609.792 304.8 8670.181 4665.778 304.8 8616.524 4730.026 304.8 8573.1 4800.689 304.8 8541.159 4875.733 304.8 8521.619 4953 304.8 8515.041 5030.268 304.8 8521.619 5105.312 304.8 8541.159 5175.975 304.8 8573.1 5240.223 304.8 8616.524 5296.208 304.8 8670.181 5342.319 304.8 8732.528 5377.231 304.8 8801.772 5399.938 304.8 8875.918 5409.788 304.8 8952.837 5406.497 304.8 9030.314 5390.16 304.8 9106.12 5361.246 304.8 9178.075 5320.588 304.8 9244.108 5269.355 304.8 9302.32 5209.02 304.8 9351.037 5141.322 304.8 9388.856 5068.205 304.8 9414.689 4991.773 304.8 9427.794 21259.8 304.8 17989.65 21221.03 304.8 17988.01 21144.6 304.8 17974.9 21071.48 304.8 17949.07 21003.78 304.8 17911.25 20943.45 304.8 17862.53 20892.21 304.8 17804.32 20851.56 304.8 17738.29 20822.64 304.8 17666.33 20806.3 304.8 17590.53 20803.01 304.8 17513.05 20812.86 304.8 17436.13 20835.57 304.8 17361.98 20870.48 304.8 17292.74 20916.59 304.8 17230.39 20972.58 304.8 17176.74 21036.83 304.8 17133.31 21107.49 304.8 17101.37 21182.53 304.8 17081.83 21259.8 304.8 17075.25 21337.07 304.8 17081.83 21412.11 304.8 17101.37 21482.78 304.8 17133.31 21547.02 304.8 17176.74 21603.01 304.8 17230.39 21649.12 304.8 17292.74 21684.03 304.8 17361.98 21706.74 304.8 17436.13 21716.59 304.8 17513.05 21713.3 304.8 17590.53 21696.96 304.8 17666.33 21668.05 304.8 17738.29 21627.39 304.8 17804.32 21576.16 304.8 17862.53 21515.82 304.8 17911.25 21448.12 304.8 17949.07 21375 304.8 17974.9 21298.57 304.8 17988.01 26212.8 0 30784.8 26212.8 0 0 0 0 30784.8 0 0 0 15087.6 304.8001 10113.62 13309.6 304.8001 10113.62 14198.48 304.8001 10113.62 15087.6 304.8001 10372.94 13309.6 304.8001 10372.94 14198.48 304.8001 10372.94 15087.6 304.8001 10243.28 13309.6 304.8001 10243.28 14198.48 304.8001 10243.28 13754.04 304.8001 10113.62 14643.04 304.8001 10113.62 13754.04 304.8001 10372.94 14643.04 304.8001 10372.94 14643.04 304.8001 10243.28 13754.04 304.8001 10243.28 15087.6 304.8001 10178.45 13309.6 304.8001 10178.45 14198.48 304.8001 10178.45 13531.82 304.8001 10113.62 14865.32 304.8001 10113.62 13531.82 304.8001 10372.94 14865.32 304.8001 10372.94 15087.6 304.8001 10308.11 13309.6 304.8001 10308.11 14198.48 304.8001 10308.11 13976.26 304.8001 10113.62 14420.76 304.8001 10113.62 13976.26 304.8001 10372.94 14420.76 304.8001 10372.94 14865.32 304.8001 10243.28 14420.76 304.8001 10243.28 14643.04 304.8001 10178.45 14643.04 304.8001 10308.11 13754.04 304.8001 10178.45 13754.04 304.8001 10308.11 13531.82 304.8001 10243.28 13976.26 304.8001 10243.28 13976.26 304.8001 10308.11 13531.82 304.8001 10308.11 13531.82 304.8001 10178.45 14420.76 304.8001 10308.11 14420.76 304.8001 10178.45 14865.32 304.8001 10178.45 14865.32 304.8001 10308.11 13976.26 304.8001 10178.45 13420.71 304.8001 10113.62 14976.46 304.8001 10113.62 13420.71 304.8001 10372.94 14976.46 304.8001 10372.94 13865.15 304.8001 10113.62 14531.9 304.8001 10113.62 13865.15 304.8001 10372.94 14531.9 304.8001 10372.94 14976.46 304.8001 10243.28 14531.9 304.8001 10243.28 13420.71 304.8001 10243.28 13865.15 304.8001 10243.28 13642.93 304.8001 10113.62 14754.18 304.8001 10113.62 13642.93 304.8001 10372.94 14754.18 304.8001 10372.94 14087.37 304.8001 10113.62 14309.62 304.8001 10113.62 14087.37 304.8001 10372.94 14309.62 304.8001 10372.94 14754.18 304.8001 10243.28 14309.62 304.8001 10243.28 13642.93 304.8001 10243.28 14087.37 304.8001 10243.28 13865.15 304.8001 10308.11 14087.37 304.8001 10308.11 13420.71 304.8001 10308.11 13642.93 304.8001 10308.11 13420.71 304.8001 10178.45 13642.93 304.8001 10178.45 14531.9 304.8001 10308.11 14309.62 304.8001 10308.11 14531.9 304.8001 10178.45 14309.62 304.8001 10178.45 14976.46 304.8001 10178.45 14754.18 304.8001 10178.45 14976.46 304.8001 10308.11 14754.18 304.8001 10308.11 13865.15 304.8001 10178.45 14087.37 304.8001 10178.45 + + + + + + + + + + 0 1 0 0 1 -1.36195e-6 0 1 2.69182e-7 0 1 9.60032e-7 0 1 -1.19947e-7 0 1 1.66854e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.13176e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86357e-7 0 1 0 0 1 2.18864e-7 0 1 0 0 1 0 0 1 -2.14779e-7 0 1 2.02566e-7 0 1 0 0 1 0 0 1 4.03013e-7 0 1 0 0 1 -3.86322e-7 0 1 0 0 1 0 0 1 3.51669e-7 0 1 0 0 1 0 0 1 0 0 1 1.47708e-7 0 1 -1.82424e-7 0 1 0 0 1 2.42063e-7 0 1 -1.47707e-7 0 1 2.0698e-7 0 1 0 0 1 -2.66618e-7 0 1 1.47707e-7 0 1 0 0 1 2.52587e-7 0 1 0 0 1 -1.4109e-7 0 1 0 0 1 0 0 1 -1.47707e-7 0 1 0 0 1 -4.49039e-7 0 1 -2.72226e-7 0 1 0 0 1 0 0 1 1.31561e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.84307e-7 0 1 0 0 1 1.61267e-7 0 1 0 0 1 1.95822e-7 0 1 -1.26713e-7 0 1 -4.95321e-7 0 1 4.26209e-7 0 1 0 0 1 -6.80518e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.40266e-7 0 1 3.40266e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86662e-7 0 1 3.79746e-7 0 1 -5.70014e-7 0 1 -8.30863e-7 0 1 -1.23531e-7 0 1 4.06975e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -2.33059e-7 0 1 0 0 1 -4.47898e-7 0 1 1.47255e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.94378e-6 0 1 5.35069e-7 0 1 2.62896e-7 0 1 -6.99035e-7 0 1 -2.48655e-7 0 1 1.63782e-7 0 1 -8.41199e-7 0 1 5.74106e-7 0 1 -3.25127e-6 0 1 6.68142e-7 0 1 0 0 1 -2.55171e-7 0 1 -2.09289e-7 0 1 -1.44906e-7 0 1 0 0 1 0 0 1 0 0 1 -4.08287e-7 0 1 -1.47309e-7 0 1 6.80571e-7 0 1 -7.0972e-7 0 1 1.67399e-6 0 1 0 0 1 -4.80344e-7 0 1 3.44634e-7 0 1 -2.00338e-7 0 1 0 0 1 -1.52528e-7 0 1 0 0 1 -4.00417e-7 0 1 -1.60696e-7 0 1 2.32111e-7 0 1 0 0 1 0 0 1 -3.18761e-7 0 1 0 0 1 0 0 1 -2.63805e-7 0 1 2.15004e-7 0 1 1.50717e-7 0 1 1.42572e-7 0 1 -1.92404e-7 0 1 -3.15719e-6 0 1 3.54195e-6 0 1 -2.59503e-6 0 1 0 0 1 -2.05381e-7 0 1 2.61852e-7 0 1 -3.77799e-7 0 1 -1.26857e-7 0 1 0 0 1 1.51319e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.69175e-6 0 1 -5.85532e-7 0 1 5.43053e-7 0 1 -7.17334e-7 0 1 0 0 1 2.01279e-7 0 1 0 0 1 1.24325e-7 0 1 0 0 1 -5.45718e-7 0 1 -4.1768e-7 0 1 -1.76178e-7 0 1 0 0 1 4.30178e-7 0 1 -3.37058e-7 0 1 1.64426e-7 0 1 0 0 1 0 0 1 7.37446e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.27513e-7 0 1 0 0 1 0 0 1 1.63064e-7 0 1 0 0 1 0 0 1 0 0 1 -2.50256e-7 0 1 0 0 1 2.37914e-7 0 1 -3.07842e-7 0 1 4.01381e-7 0 1 0 0 1 0 0 1 5.99026e-7 0 1 -5.81391e-7 0 1 0 0 1 0 0 1 -6.0316e-7 0 1 0 0 1 0 0 1 0 0 1 -4.04567e-7 0 1 0 0 1 0 0 1 1.10553e-6 0 1 -8.95172e-7 0 1 5.72646e-7 0 1 -3.88634e-7 0 1 -5.46157e-7 0 1 1.60839e-7 0 1 -2.29594e-7 0 1 4.47285e-7 0 1 -6.41062e-7 0 1 0 0 1 -1.24665e-7 0 1 0 0 1 -1.21222e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 8.90567e-7 0 1 -2.54036e-7 0 1 0 0 1 0 0 1 -2.89199e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.45397e-7 0 1 -3.98484e-7 0 1 6.31295e-7 0 1 0 0 1 0 0 1 -5.39227e-6 0 1 -8.04815e-7 0 1 3.58849e-7 0 1 0 0 1 0 0 1 -2.54038e-7 0 1 1.60025e-7 0 1 0 0 1 0 0 1 0 0 1 -3.90913e-7 0 1 1.34628e-7 0 1 0 0 1 0 0 1 0 0 1 -1.60208e-7 0 1 0 0 1 2.24115e-7 0 1 -4.78945e-7 0 1 -1.41553e-7 0 1 2.16425e-7 0 1 9.76196e-7 0 1 0 0 1 3.6213e-7 0 1 -2.74968e-7 0 1 2.16809e-7 0 1 2.14425e-7 0 1 0 0 1 1.6284e-7 0 1 -2.84007e-7 0 1 0 0 1 -1.76013e-7 0 1 3.70969e-7 0 1 2.23278e-7 0 1 0 0 1 2.10879e-7 0 1 5.23008e-7 0 1 -3.96383e-7 0 1 3.44815e-7 0 1 0 0 1 -3.42936e-7 0 1 2.01671e-7 0 1 4.15565e-7 0 1 1.27353e-7 0 1 -3.36209e-7 0 1 0 0 1 0 0 1 0 0 1 -4.40803e-7 0 1 1.52909e-7 0 1 -8.13019e-7 0 1 4.08692e-7 0 1 1.5212e-7 0 1 2.90774e-7 0 1 -4.91629e-7 0 1 4.54566e-7 0 1 -3.51698e-7 0 1 7.08594e-7 0 1 0 0 1 1.12233e-6 0 1 -3.42933e-7 0 1 0 0 1 -1.61029e-7 0 1 -6.78246e-7 0 1 -3.85095e-7 0 1 6.07892e-7 0 1 -2.08514e-6 0 1 1.51015e-7 0 1 -1.29571e-7 0 1 4.77127e-7 0 1 3.45905e-7 0 1 0 0 1 3.04233e-7 0 1 0 0 1 1.27847e-7 0 1 -8.26306e-7 0 1 2.90771e-7 0 1 -8.35958e-7 0 1 0 0 1 -1.52408e-7 0 1 0 0 1 0 0 1 -1.81308e-7 0 1 0 0 1 0 0 1 1.45177e-7 0 1 0 0 1 0 0 1 -1.19284e-7 0 1 0 0.4350869 0.01505959 0.9002625 0.4876925 0 0.8730156 0.3331517 0 0.9428732 0.3331328 0 0.94288 0.1689983 0 0.9856163 0.1689983 0 0.9856164 0.04244089 0 0.999099 -0.0424388 0 0.9990991 -0.1689983 0 0.9856163 -0.1689983 0 0.9856164 -0.3331407 0 0.9428772 -0.3331596 0 0.9428705 -0.5099561 0 0.8602005 -0.4351604 0 0.900353 -0.4876819 0.004563927 0.8730095 -0.5099336 0 0.8602138 -0.628227 0 0.7780301 -0.6282016 0 0.7780508 -0.7506508 0 0.6606993 -0.7506508 0 0.6606992 -0.8515417 0 0.5242871 -0.8515416 0 0.524287 -0.9278891 0 0.3728566 -0.9278861 0 0.3728639 -0.9775547 0 0.2106818 -0.9775547 0 0.2106819 -0.9991002 0 0.04241389 -0.9991001 0 0.04241478 -0.9919003 0 -0.1270194 -0.9919006 0 -0.1270167 -0.9561694 0 -0.2928141 -0.8929209 0 -0.4502136 -0.8929209 0 -0.4502136 -0.804001 0 -0.5946282 -0.8040084 0 -0.594618 -0.6919487 0 -0.7219467 -0.5599701 0 -0.8285129 -0.55997 0 -0.8285129 -0.4118942 0 -0.9112318 -0.2519842 0 -0.9677314 -0.2519842 0 -0.9677314 -0.08480596 0 -0.9963975 -0.08482694 0 -0.9963957 0.08482909 0 -0.9963956 0.08480811 0 -0.9963973 0.2519842 0 -0.9677314 0.2519842 0 -0.9677314 0.4118847 0 -0.9112361 0.4118847 0 -0.9112361 0.5599701 0 -0.8285129 0.55997 0 -0.8285129 0.6919487 0 -0.7219467 0.8039963 0 -0.5946344 0.8039889 0 -0.5946444 0.8929209 0 -0.4502136 0.8929209 0 -0.4502136 0.9561694 0 -0.2928141 0.9919006 0 -0.1270167 0.9919003 0 -0.1270194 0.999098 0 0.04246503 0.9990981 0 0.04246413 0.9775599 0 0.2106578 0.9775599 0 0.2106578 0.9278774 0 0.3728855 0.9278803 0 0.3728783 0.8515417 0 0.5242871 0.8515416 0 0.524287 0.7506633 0 0.6606851 0.6282138 0 0.7780408 0.6282394 0 0.7780202 0.5099132 0 0.8602259 0.5099244 0 0.8602193 0.6995408 0.01884025 0.7143443 0.7506726 0 0.6606744 0.6281984 0 0.7780532 0.6282242 0 0.7780325 0.4876925 0 0.8730155 0.4877085 0 0.8730066 0.2784087 0 0.9604627 0.3188757 0.01775956 -0.9476302 0.2519843 0 -0.9677314 0.4118766 0 -0.9112397 0.4119117 0 -0.9112238 0.5599671 0 -0.8285149 0.5599672 0 -0.8285148 0.7292699 0 -0.6842263 0.3588242 0 0.9334052 0.333148 0.004719853 0.9428628 0.2784088 0 0.9604627 0.1689983 0 0.9856164 0.04243874 0 0.9990991 0 -0.002700865 0.9999964 0.6686147 0 -0.7436091 0.6919289 0.005069017 -0.7219479 0.7293226 0 -0.68417 0.8040053 0 -0.5946222 0.8039979 0 -0.5946322 0.9990991 0 0.04243993 0.9990991 0 0.04243898 0.977556 0 0.2106758 0.9278883 0 0.3728585 0.9278912 0 0.3728511 0.8515305 0 0.5243053 0.7576253 0 0.6526898 0.7576407 0 0.6526719 -0.04243981 0 0.999099 -0.1689993 0 0.9856163 -0.1689993 0 0.9856162 -0.3331309 0 0.9428807 -0.3331308 0 0.9428806 -0.4877192 0 0.8730006 -0.4876871 0 0.8730186 -0.6282332 0 0.7780251 -0.6282076 0 0.7780457 -0.7506695 0 0.6606779 -0.7506695 0 0.660678 -0.8515305 0 0.5243053 -0.9278912 0 0.3728511 -0.9278883 0 0.3728585 -0.9775534 0 0.2106879 -0.9775535 0 0.2106879 -0.9990991 0 0.04243904 -0.9990991 0 0.04243987 -0.9918987 0 -0.1270318 -0.991899 0 -0.1270291 -0.8040038 0 -0.5946241 -0.8040114 0 -0.5946139 -0.6919393 0 -0.7219558 -0.6919394 0 -0.7219557 -0.4118918 0 -0.9112328 -0.2519857 0 -0.967731 -0.2519857 0 -0.967731 -0.08480703 0 -0.9963974 -0.08482801 0 -0.9963957 0.08482694 0 -0.9963957 0.08480596 0 -0.9963975 0.2373676 0 -0.97142 0.2373797 0 -0.971417 0 0 -1 -1 0 0 0 0 1 -1 6.28758e-6 0 1 0 0 1 1.96487e-7 0 1 2.35675e-7 0 1 0 0 1 -1.92836e-7 0 0.04244089 0 0.999099 -0.04243874 0 0.9990991 -0.04252314 0 0.9990956 -0.1689777 0 0.9856199 -0.1690188 0 0.9856128 -0.3331031 0 0.9428904 -0.3331783 0 0.9428638 -0.4876548 0 0.8730366 -0.7506693 0 0.6606783 -0.7506323 0 0.6607202 -0.8515533 0 0.5242682 -0.9278831 0 0.3728712 -0.9775528 0 0.2106906 -0.9775566 0 0.2106732 -0.9991002 0 0.04241389 -0.991901 0 -0.1270141 -0.9561676 0 -0.2928201 -0.9561713 0 -0.2928082 -0.8039935 0 -0.5946382 -0.6919267 0 -0.7219678 -0.5599846 0 -0.8285031 -0.5599845 0 -0.8285031 -0.4119117 0 -0.9112238 -0.4118415 0 -0.9112556 -0.08478492 0 -0.9963993 0.08478707 0 -0.9963991 0.411832 0 -0.9112598 0.4119022 0 -0.9112281 0.5599846 0 -0.8285031 0.5599845 0 -0.8285031 0.6919267 0 -0.7219678 0.8039814 0 -0.5946545 0.9561713 0 -0.2928082 0.9561676 0 -0.2928201 0.991901 0 -0.1270141 0.9990981 0 0.04246413 0.9775618 0 0.2106491 0.977558 0 0.2106665 0.9278745 0 0.3728929 0.8515533 0 0.5242681 0.7506448 0 0.6607061 0.7506818 0 0.6606641 0.487644 0 0.8730426 0.4877086 0 0.8730066 0.3331704 0 0.9428667 0.3330952 0 0.9428933 0.1690188 0 0.9856128 0.1689777 0 0.98562 0.04252529 0 0.9990954 0 1 4.42303e-7 0 1 1.76919e-6 0 1 -1.54797e-6 0 1 6.63475e-7 0 1 4.97587e-7 0 1 -9.95181e-7 0 1 -2.21148e-7 0 1 -8.84618e-7 0 1 -4.42309e-7 0 1 4.42287e-7 0 1 8.84618e-7 0 1 -4.42279e-7 0 1 -8.84624e-7 0 1 2.21151e-7 0 1 -1.76921e-6 0 1 1.54806e-6 0 1 -1.43748e-6 0 1 -1.76916e-6 0 1 7.18742e-7 0 1 1.79687e-7 0 1 1.76934e-6 0 1 -1.32689e-6 0 1 1.10575e-6 0 1 4.42284e-7 0 1 -6.63428e-7 -0.0423544 0 0.9991027 -0.1690188 0 0.9856128 -0.6282014 0 0.7780508 -0.6282528 0 0.7780094 -0.7506324 0 0.6607202 -0.7506693 0 0.6606782 -0.85153 0 0.5243059 -0.9278891 0 0.3728566 -0.9991001 0 0.04241567 -0.9919017 0 -0.1270087 -0.956164 0 -0.2928319 -0.8929381 0 -0.4501796 -0.5599555 0 -0.8285228 -0.4118765 0 -0.9112397 -0.2519446 0 -0.9677417 0.2519446 0 -0.9677417 0.4119023 0 -0.9112281 0.4118671 0 -0.911244 0.5599555 0 -0.8285228 0.892938 0 -0.4501796 0.956164 0 -0.2928319 0.9919017 0 -0.1270087 0.999098 0 0.04246592 0.9278803 0 0.3728782 0.8515301 0 0.5243059 0.6282651 0 0.7779995 0.6282138 0 0.7780408 0.1690188 0 0.9856128 0.04235649 0 0.9991025 0 1 6.63473e-7 0 1 4.97597e-7 0 1 -9.95167e-7 0 1 -2.21154e-7 0 1 -9.95152e-7 0 1 -4.42302e-7 0 1 4.42292e-7 0 1 -4.42298e-7 0 1 -1.76917e-6 0 1 1.5481e-6 0 1 -1.43745e-6 0 1 -1.76914e-6 0 1 7.18757e-7 0 1 1.10576e-6 0 1 -1.54798e-6 0 1 -9.95195e-7 0 1 -8.84611e-7 0 1 4.4229e-7 0 1 4.42278e-7 0 1 8.84567e-7 0 1 -8.84586e-7 0 1 2.21164e-7 0 1 -1.76924e-6 0.04248309 0 0.9990972 -0.04248094 0 0.9990974 -0.1689983 0 0.9856164 -0.3331595 0 0.9428705 -0.3331219 0 0.9428838 -0.4877031 0 0.8730096 -0.6282272 0 0.7780301 -0.8515359 0 0.5242965 -0.9775538 0 0.2106862 -0.9775538 0 0.2106862 -0.8929253 0 -0.4502052 -0.8929253 0 -0.4502052 -0.8039935 0 -0.5946383 -0.6919377 0 -0.7219572 -0.2519644 0 -0.9677366 -0.252004 0 -0.9677262 0.252004 0 -0.9677263 0.2519644 0 -0.9677366 0.6919377 0 -0.7219572 0.8039813 0 -0.5946546 0.8929253 0 -0.4502052 0.8929253 0 -0.4502052 0.9775589 0 0.2106622 0.977559 0 0.2106621 0.8515358 0 0.5242965 0.6282395 0 0.7780202 0.4876763 0 0.8730247 0.4876924 0 0.8730155 0.333114 0 0.9428867 0.3331516 0 0.9428733 0 1 4.42312e-7 0 1 1.76924e-6 0 1 4.9759e-7 0 1 -4.42292e-7 0 1 -4.42276e-7 0 1 -1.7692e-6 0 1 7.18747e-7 0 1 4.42282e-7 -0.3331501 0 0.9428738 -0.487695 0 0.8730141 -0.4877032 0 0.8730096 -0.6282206 0 0.7780354 -0.6282143 0 0.7780404 -0.9278861 0 0.372864 -0.9919008 0 -0.1270154 -0.9561685 0 -0.2928171 -0.8040009 0 -0.5946282 -0.6919432 0 -0.721952 -0.5599774 0 -0.828508 -0.4119029 0 -0.9112278 -0.2519743 0 -0.9677339 -0.2519743 0 -0.9677339 -0.08481645 0 -0.9963967 -0.08480596 0 -0.9963975 0.08480805 0 -0.9963973 0.0848186 0 -0.9963964 0.2519743 0 -0.9677339 0.2519743 0 -0.9677339 0.4118934 0 -0.9112321 0.5599773 0 -0.828508 0.6919432 0 -0.721952 0.8039888 0 -0.5946446 0.9561685 0 -0.2928171 0.9919008 0 -0.1270154 0.9278774 0 0.3728856 0.6282266 0 0.7780305 0.628233 0 0.7780253 0.4876924 0 0.8730155 0.4876844 0 0.8730201 0.3331422 0 0.9428766 0.3331328 0 0.94288 0 1 4.4232e-7 0 1 6.63463e-7 0 1 4.97594e-7 0 1 -9.9516e-7 0 1 -2.2115e-7 0 1 -8.84599e-7 0 1 4.42273e-7 0 1 1.54807e-6 0 1 -1.43747e-6 0 1 7.18752e-7 0 1 1.79684e-7 0 1 4.42296e-7 -0.04252421 0 0.9990954 -0.1689788 0 0.9856197 -0.1690198 0 0.9856126 -0.3330933 0 0.942894 -0.3331685 0 0.9428673 -0.750688 0 0.6606569 -0.750651 0 0.660699 -0.8515421 0 0.5242864 -0.9278853 0 0.3728658 -0.9775515 0 0.2106966 -0.9775553 0 0.2106792 -0.9990991 0 0.04243898 -0.9918994 0 -0.1270265 -0.8039965 0 -0.5946342 -0.6919172 0 -0.7219769 -0.4119093 0 -0.9112249 -0.411839 0 -0.9112566 -0.08478599 0 -0.9963992 0.08478498 0 -0.9963993 0.4118415 0 -0.9112556 0.4119117 0 -0.9112238 0.5599816 0 -0.8285051 0.5599817 0 -0.828505 0.8039905 0 -0.5946424 0.9990991 0 0.04243904 0.9775579 0 0.2106671 0.9775542 0 0.2106845 0.9278853 0 0.3728657 0.8515421 0 0.5242864 0.7506541 0 0.6606954 0.7506911 0 0.6606534 0.628224 0 0.7780326 0.4876601 0 0.8730336 0.4877246 0 0.8729976 0.04252314 0 0.9990956 0 -0.002704083 0.9999964 0 1 -8.84605e-7 0 1 4.42292e-7 0 1 8.84621e-7 0 1 0 0 1 1.32693e-6 0 1 -2.21149e-7 0 1 6.6346e-7 0 1 8.8463e-7 0 1 -4.42296e-7 0 1 -8.84593e-7 0 1 -2.21149e-7 0 1 3.31729e-7 0 1 9.95175e-7 0 1 -1.32691e-6 0 1 2.2115e-7 0 1 8.84585e-7 0 1 4.42305e-7 0 1 -2.21153e-7 -0.06563907 0.004892766 -0.9978315 -0.08482801 0 -0.9963957 0.084827 0 -0.9963957 0.08478498 0 -0.9963993 0.3366506 0 -0.9416297 0.4118765 5.9629e-4 -0.9112395 0.4141265 0 -0.9102194 0.5599527 0 -0.8285247 0.7410519 0 -0.6714478 -0.6282076 0 0.7780458 -0.6282589 0 0.7780044 -0.7506511 0 0.660699 -0.750688 0 0.660657 -0.8515188 0 0.5243241 -0.9278912 0 0.3728511 -0.999099 0 0.04244083 -0.9918994 0 -0.1270264 -0.9919 0 -0.1270211 -0.4118742 0 -0.9112408 -0.2519461 0 -0.9677413 -0.1502529 0 -0.9886476 -0.1499791 0 -0.9886892 0.6815053 0 -0.7318132 0.6919236 0.003030359 -0.7219644 0.7411645 0 -0.6713235 0.999099 0 0.04244077 0.9278912 0 0.3728511 0.8515188 0 0.5243241 0.7506911 0 0.6606534 0.7506542 0 0.6606954 0.6282497 0 0.7780119 0.0423544 0 0.9991027 -0.04235547 0 0.9991026 -0.1690198 0 0.9856127 0 1 8.84608e-7 0 1 0 0 1 1.32691e-6 0 1 8.84605e-7 0 1 -4.423e-7 0 1 -8.84601e-7 0 1 -2.21154e-7 0 1 3.3172e-7 0 1 9.952e-7 0 1 8.84607e-7 0 1 1.3269e-6 0 1 6.63448e-7 0 1 -8.84607e-7 0 1 3.3173e-7 0 1 2.21152e-7 0 1 4.42299e-7 0 1 -2.21152e-7 0.9255732 0.001568317 0.3785654 0.9278883 0 0.3728583 0.8515304 0 0.5243052 0.8515276 0 0.5243099 0.7576461 0 0.6526657 0.7506706 0.00236392 0.6606726 0.6995354 0 0.714598 0.6282112 0 0.7780429 0.4877007 0 0.8730111 0.3331292 0.004721224 0.9428694 0.278439 0 0.9604539 0 -0.002701699 0.9999964 -0.3331402 0 0.9428773 -0.6282268 0 0.7780303 -0.6282204 0 0.7780354 -0.9278883 0 0.3728585 -0.9775524 0 0.2106923 -0.9775525 0 0.2106922 -0.9918992 0 -0.1270278 -0.804004 0 -0.5946241 -0.6919338 0 -0.7219611 -0.4119006 0 -0.9112289 -0.2519758 0 -0.9677336 -0.2519758 0 -0.9677336 -0.08481752 0 -0.9963965 -0.08480703 0 -0.9963974 0.08480596 0 -0.9963975 0.08481645 0 -0.9963966 0.4119029 0 -0.9112278 0.5599744 0 -0.82851 0.8039979 0 -0.5946323 0.977555 0 0.2106802 0.9543291 0 0.2987575 0.9543486 0 0.2986953 0 1 4.42296e-7 0 1 -2.21151e-7 0 1 8.84613e-7 0 1 0 0 1 1.32691e-6 0 1 -2.2115e-7 0 1 6.63447e-7 0 1 -4.42301e-7 0 1 8.8461e-7 0 1 3.31728e-7 0 1 9.95188e-7 0 1 -1.3269e-6 -0.3377181 0 0.9412473 -0.3377182 0 0.9412473 -0.3377177 0 0.9412475 -0.3325102 -0.05120038 0.9417089 -0.368694 0 0.9295508 0.3377175 0 -0.9412476 0.3377181 1.34193e-6 -0.9412473 0.3377174 0 -0.9412477 -0.7071073 0 0.7071064 -0.7071065 0 0.707107 -0.707108 0 0.7071056 -0.7071067 0 -0.7071068 -0.7071068 1.68559e-6 -0.7071068 -0.7071093 5.84625e-6 -0.7071043 -0.7071067 0 -0.7071069 -0.7071059 0 -0.7071076 -0.7071053 0 -0.7071084 -0.7071068 0 -0.7071068 -0.707107 -7.28285e-7 -0.7071067 -0.7071075 -3.37762e-6 -0.7071061 -0.7071063 0 -0.7071073 0 1 -2.8853e-6 0 1 1.42886e-7 0 1 -1.0989e-6 0 1 9.65132e-7 0 1 -9.65147e-7 0 1 1.57976e-6 0 1 -1.6127e-6 0 1 1.6127e-6 0 1 -1.61265e-6 0 1 8.06368e-7 0 1 -3.9493e-7 0 1 2.01582e-7 0 1 -1.75937e-6 0 1 8.06327e-7 0 1 -1.75923e-6 0 1 -1.75926e-6 0 1 1.75929e-6 0 1 -1.75927e-6 0 1 -2.93972e-6 0 1 1.22953e-5 0 1 -1.65572e-6 0 1 1.63707e-6 0 1 -8.27683e-7 0 1 4.13798e-7 0 1 0 0 1 2.92603e-7 0 1 -1.43676e-7 0 1 5.85162e-7 0 1 -1.17032e-6 0 1 1.14983e-6 0 1 -1.14991e-6 0 1 -2.33982e-6 0 1 2.33962e-6 0 1 8.89577e-6 0 1 -2.09286e-6 0 0.9999857 -0.005343377 0 1 -8.41298e-6 0 1 2.48724e-6 0 1 -2.67851e-6 0 1 1.2025e-6 0 1 -3.7101e-7 0 1 -1.85505e-7 0 1 -1.48399e-6 0 1 1.45445e-6 0 1 1.45444e-6 0 1 1.68718e-6 0.7071065 0 0.7071071 0.7071068 0 0.7071068 0.7071063 0 0.7071073 -0.07846242 0 -0.9969171 -0.07845729 0 -0.9969176 -0.2334424 0 -0.9723708 -0.3826914 0 -0.9238762 -0.382687 0 -0.9238781 -0.5224946 0 -0.8526427 -0.5224907 0 -0.852645 -0.649454 0 -0.760401 -0.6494538 0 -0.7604011 -0.7604047 0 -0.6494495 -0.7604046 0 -0.6494497 -0.8526414 0 -0.5224968 -0.85264 0 -0.522499 -0.9238796 0 -0.3826832 -0.9238803 0 -0.3826816 -0.9723704 0 -0.2334437 -0.9723701 0 -0.2334449 -0.9969173 0 -0.07846075 -0.9969172 0 -0.07846152 -0.9969172 0 0.07846111 -0.9723701 0 0.2334448 -0.9723701 0 0.2334449 -0.9238796 0 0.3826832 -0.9238803 0 0.3826816 -0.85264 0 0.522499 -0.8526428 0 0.5224944 -0.7604026 0 0.6494521 -0.7604067 0 0.6494472 -0.7634967 0 -0.6458117 -0.7634935 0 -0.6458156 -0.8600334 0 -0.5102379 -0.8600313 0 -0.5102413 -0.9327465 0 -0.3605332 -0.9327444 0 -0.3605384 -0.9796238 0 -0.2008416 -0.9796238 0 -0.2008417 -0.9993667 0 -0.03558629 -0.9993667 0 -0.03558576 -0.9914279 0 0.1306555 -0.9914279 0 0.1306555 -0.956027 0 0.2932789 -0.9560283 0 0.2932746 -0.8941457 0 0.4477761 -0.8941457 0 0.4477763 -0.8074998 0 0.5898678 -0.8074971 0 0.5898717 -0.6984835 0 0.7156261 -0.6984796 0 0.71563 -0.5701161 0 0.8215643 -0.5701212 0 0.8215606 -0.4605595 0 0.8876289 -0.4605696 -1.03463e-6 0.8876237 -0.460563 0 0.8876271 -0.3794497 0 0.9252124 -0.3794496 0 0.9252125 0.337718 0 0.9412474 0.3377173 0 0.9412476 0.3377186 0 0.9412472 -0.3377215 0 0.9412461 -0.3377175 5.36773e-6 0.9412475 -0.3377176 -3.15943e-6 0.9412476 -0.3377197 0 0.9412468 0.3377179 0 0.9412474 0.3377171 2.6739e-6 0.9412477 0.3377182 0 0.9412473 0.4182301 0 0.9083412 0.5691767 0 0.8222154 0.5691757 5.70628e-6 0.822216 0.5691506 0 0.8222333 0.7029302 0 0.7112588 0.7029325 0 0.7112566 0.815458 0 0.5788164 0.8154566 0 0.5788184 0.9033517 0 0.4289007 0.9033533 0 0.4288974 0.9639683 0 0.2660173 0.9639683 0 0.2660173 0.9954667 0 0.09511137 0.9954668 0 0.09511101 0.9953484 0 -0.0963419 0.9953484 0 -0.09634131 0.9637866 0 -0.2666748 0.9033047 0 -0.4289997 0.9033044 -3.05587e-6 -0.4290002 0.9033001 0 -0.4290094 0.8157168 0 -0.5784517 0.8157166 0 -0.5784518 0.703646 0 -0.7105508 0.703646 0 -0.7105509 0.5704607 0 -0.821325 0.5704566 0 -0.8213278 0.4202188 0 -0.9074229 0.4201537 -6.11177e-6 -0.907453 0.4201602 0 -0.9074501 0.2572458 0 -0.9663461 0.2572515 0 -0.9663446 0.08661603 0 -0.9962419 0.08661299 0 -0.9962421 0.07846057 0 -0.9969173 0.07846057 0 -0.9969173 0.2334185 0 -0.9723764 0.2334541 0 -0.9723679 0.38269 0 -0.9238768 0.3826901 0 -0.9238768 0.522494 0 -0.852643 0.5225077 0 -0.8526347 0.6494306 0 -0.7604209 0.6494416 0 -0.7604115 0.7604106 0 -0.6494427 0.7604107 0 -0.6494426 0.8526446 0 -0.5224914 0.8526396 0 -0.5224996 0.9238822 0 -0.3826769 0.9238795 0 -0.3826836 0.9723684 0 -0.2334519 0.9969174 0 -0.07845985 0.9969171 0 -0.07846277 0.9969175 0 -0.07845741 0.9969175 0 -0.07845741 0.9723697 0 -0.2334466 0.9723696 0 -0.2334467 0.9238791 0 -0.3826847 0.9238796 0 -0.3826833 0.8526403 0 -0.5224984 0.8526414 0 -0.5224966 0.7604051 0 -0.6494492 0.7604041 0 -0.6494503 0.6494507 0 -0.7604038 0.649448 0 -0.760406 0.5225003 0 -0.8526391 0.5224988 0 -0.85264 0.382683 0 -0.9238798 0.3826812 0 -0.9238806 0.2334451 0 -0.97237 0.2334464 -2.62483e-7 -0.9723697 0.2334407 0 -0.9723711 0.0784595 0 -0.9969174 0.0784595 0 -0.9969174 0 1 -6.6203e-7 0 1 3.7899e-7 0 1 9.55154e-7 0 1 3.67247e-7 0 1 -1.19395e-7 0 1 -4.7758e-7 0 1 -9.79332e-7 0 1 9.55161e-7 0 1 2.48233e-6 0.6494506 0 0.7604039 0.5225001 0 0.8526393 0.5225002 0 0.8526393 0.3826826 0 0.92388 0.3826827 0 0.9238799 0.2334417 0 0.9723709 0.2334468 0 0.9723697 0.07846003 0 0.9969173 0.0784654 0 0.9969169 0.7604057 0 -0.6494485 0.7604078 0 -0.649446 0.8526415 0 -0.5224965 0.85264 0 -0.522499 0.92388 0 -0.3826824 0.9723698 0 -0.233446 0.9723701 0 -0.2334449 0.9969173 0 -0.07846087 0.9969173 0 -0.07846081 0.9969173 0 0.07846087 0.9969173 0 0.07846081 0.9723698 0 0.233446 0.9723704 0 0.2334437 0.8526401 0 0.5224989 0.8526386 0 0.5225012 0.7604078 0 0.649446 0.7071066 0 -0.7071071 0.7071067 0 -0.707107 0.7071069 0 0.7071067 0.5701174 0 -0.8215633 0.5701229 0 -0.8215595 0.6984791 0 -0.7156305 0.6984871 0 -0.7156227 0.8074973 0 -0.5898714 0.8074946 0 -0.589875 0.8941465 0 -0.4477747 0.9560281 0 -0.2932754 0.9560274 0 -0.2932776 0.9914279 0 -0.1306556 0.9914278 0 -0.1306566 0.9993666 0 0.03558731 0.9993667 0 0.03558754 0.9796237 0 0.2008415 0.9796239 0 0.2008414 0.9327459 0 0.3605345 0.932746 0 0.3605345 0.8600304 0 0.5102429 0.8600325 0 0.5102393 0.7634978 0 0.6458105 0.7634947 0 0.6458141 0.3794506 0 -0.925212 0.4605692 0 -0.887624 0.4605558 0 -0.8876308 -0.337718 0 -0.9412474 -0.3377175 0 -0.9412475 0.3377175 0 -0.9412477 0.3377181 0 -0.9412473 -0.337718 0 -0.9412474 -0.3377176 0 -0.9412475 -0.9954577 0 -0.09520566 -0.9954576 0 -0.09520608 -0.9639448 0 -0.2661026 -0.9639451 0 -0.2661014 -0.9033244 0 -0.4289584 -0.9033259 0 -0.428955 -0.8154251 0 -0.5788626 -0.8154237 0 -0.5788647 -0.7029066 0 -0.7112822 -0.5691574 0 -0.8222286 -0.5691546 0 -0.8222306 -0.4182223 0 -0.9083448 -0.4182224 0 -0.9083447 -0.08660483 0 0.9962428 -0.08660793 0 0.9962425 -0.2572187 0 0.9663532 -0.2572245 0 0.9663518 -0.4201192 0 0.9074689 -0.4201193 0 0.9074689 -0.5704174 0 0.8213551 -0.5704174 0 0.821355 -0.7035926 0 0.7106036 -0.7035896 0 0.7106066 -0.8156601 0 0.5785315 -0.8156603 0 0.5785313 -0.9032591 0 0.4290956 -0.9032592 0 0.4290953 -0.9637545 0 0.2667908 -0.9637545 0 0.2667908 -0.9953349 0 0.09648013 -0.9953349 0 0.09648072 -0.9969169 0 0.07846599 -0.9969167 0 0.07846736 -0.9723721 0 0.2334367 -0.9723721 0 0.2334368 -0.9238774 0 0.3826887 -0.9238798 0 0.3826828 -0.852643 0 0.522494 -0.8526476 0 0.5224865 -0.7604009 0 0.6494541 -0.7604008 0 0.6494542 -0.6494579 0 0.7603976 -0.649438 0 0.7604146 -0.5224936 0 0.8526432 -0.3826968 0 0.9238741 -0.3826821 0 0.9238802 -0.2334473 0 0.9723695 -0.2334472 0 0.9723695 -0.07845562 0 0.9969177 -0.07845562 0 0.9969176 -1 -1.07538e-4 0 -0.07846045 0 0.9969173 -0.07845836 0 0.9969174 -0.2334464 0 0.9723697 -0.2334444 0 0.9723702 -0.382682 0 0.9238802 -0.3826858 0 0.9238786 -0.5224994 0 0.8526397 -0.5224995 0 0.8526396 -0.6494479 0 0.7604061 -0.6494493 0 0.760405 -0.7604052 0 0.6494491 -0.7604061 0 0.649448 -0.8526395 0 0.5224997 -0.8526395 0 0.5224997 -0.9238795 0 0.3826835 -0.9238799 0 0.3826826 -0.9723697 0 0.2334465 -0.9723699 0 0.2334454 -0.9969175 0 0.07845836 -0.9969175 0 0.07845854 0 1 -1.39562e-6 0 1 -2.01287e-6 0 1 -1.46494e-6 0 1 -7.55972e-7 0 1 1.39562e-6 0 1 1.88988e-7 0 1 -1.88991e-7 0 1 7.5599e-7 0 1 -3.48916e-7 0 1 -1.04673e-6 0 1 1.51196e-6 0.3377168 0 0.9412478 0.3377177 0 0.9412475 0.7071068 0 -0.7071068 0.7071069 0 -0.7071067 -0.7071068 0 -0.7071068 -0.7071073 0 -0.7071064 -0.7638131 0 -0.6454375 -0.763813 0 -0.6454378 -0.8608213 0 -0.5089076 -0.8608058 0 -0.5089337 -0.9336584 0 -0.358165 -0.9336621 0 -0.3581552 -0.9803354 0 -0.1973392 -0.9803364 0 -0.1973335 -0.9995191 0 -0.03101283 -0.9995189 0 -0.03101372 -0.99068 0 0.1362099 -0.99068 0 0.13621 -0.9540613 0 0.2996116 -0.9540666 0 0.2995947 -0.8906989 0 0.4545937 -0.8907051 0 0.4545819 -0.8023511 0 0.5968524 -0.8023617 0 0.5968382 -0.6915133 0 0.7223637 -0.6915442 0 0.7223342 -0.5612819 0 0.8276247 -0.5613023 0 0.8276109 -0.4153383 0 0.9096671 -0.4153382 0 0.909667 -0.3377174 0 0.9412477 -0.3377173 0 0.9412477 -0.3377168 0 -0.9412478 -0.7071071 0 0.7071066 -0.7071066 0 0.707107 0.7071067 0 0.7071069 0.7071071 0 0.7071065 0.4153321 0 -0.9096699 0.4153323 0 -0.9096698 0.5612918 0 -0.827618 0.561314 0 -0.8276031 0.691523 0 -0.7223545 0.6915064 0 -0.7223704 0.802355 0 -0.5968473 0.8023664 0 -0.5968319 0.8906993 0 -0.454593 0.8906994 0 -0.454593 0.9540644 0 -0.2996017 0.9540644 0 -0.2996017 0.9906804 0 -0.1362071 0.9995195 0 0.0309993 0.9995195 0 0.03100031 0.9803328 0 0.1973515 0.9803328 0 0.1973516 0.9336619 0 0.3581556 0.9336579 0 0.3581662 0.8608115 0 0.5089241 0.8608116 0 0.508924 0.7638185 0 0.6454311 0.7638321 0 0.6454151 0.3377175 0 -0.9412476 0 1 -2.21153e-7 0 1 -1.76921e-6 0 1 0 0 1 2.21154e-7 -0.1689788 0 0.9856198 -0.487687 0 0.8730186 -0.6282333 0 0.778025 -0.9775515 0 0.2106966 -0.8040113 0 -0.594614 -0.8039965 0 -0.5946342 -0.6919613 0 -0.7219346 -0.6919173 0 -0.7219768 -0.08478599 0 -0.9963992 0.08478492 0 -0.9963993 0.08482694 0 -0.9963957 0.5599526 0 -0.8285247 0.6919708 0 -0.7219256 0.8039903 0 -0.5946424 0.8040054 0 -0.5946221 0.7506726 0 0.6606743 0.4876924 0 0.8730156 0.1689777 0 0.9856199 0 1 0 0 1 0 0 1 3.47736e-7 0 1 -1.68821e-7 0 1 2.38026e-7 0 1 2.14628e-7 0 1 0 0 1 -4.88404e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.4246e-7 0 1 -4.52646e-7 0 1 -1.42243e-7 0 1 0 0 1 0 0 1 1.79861e-7 0 1 2.28656e-7 0 1 0 0 1 1.58371e-7 0 1 1.77485e-7 0 1 -9.34957e-7 0 1 5.81856e-7 0 1 0 0 1 -3.23208e-7 0 1 5.38503e-7 0 1 0 0 1 0 0 1 3.3679e-7 0 1 0 0 1 0 0 1 -6.0084e-7 0 1 5.62393e-7 0 1 1.41339e-7 0 1 -3.5243e-7 0 1 1.85211e-7 -0.7604018 0 -0.649453 -0.7604019 0 -0.6494529 -0.8526362 0 -0.5225051 -0.8526448 0 -0.5224913 -0.923885 0 -0.3826702 -0.9238804 0 -0.3826815 -0.9723681 0 -0.2334535 -0.9723698 0 -0.2334463 -0.996917 0 -0.07846415 -0.9969171 0 -0.07846295 -0.996917 0 0.07846415 -0.996917 0 0.07846421 -0.9723707 0 0.2334427 -0.9723698 0 0.2334463 -0.9238804 0 0.3826814 -0.9238804 0 0.3826815 -0.8526405 0 0.522498 -0.8526404 0 0.5224983 -0.7604018 0 0.649453 -0.7604085 0 0.6494451 -0.7071067 0 0.707107 -0.7071069 0 0.7071067 -0.3377174 0 0.9412476 0.3377171 0 0.9412477 0.3377174 0 0.9412477 0.4088019 0 0.9126232 0.5433716 0 0.8394923 0.5433486 0 0.8395072 0.6651481 0 0.7467114 0.6651663 0 0.7466953 0.7713751 0 0.6363808 0.8595024 0 0.5111318 0.8595023 0 0.5111318 0.9274571 0 0.3739298 0.9736846 0 0.2278997 0.9736812 0 0.2279141 0.9970655 0 0.07655417 0.9969171 0 -0.07846307 0.9969173 0 -0.07846063 0.9723716 0 -0.2334382 0.97237 0 -0.2334454 0.9238902 0 -0.3826577 0.9238902 0 -0.3826578 0.8526247 0 -0.522524 0.8526332 0 -0.5225101 0.7604065 0 -0.6494475 0.7604064 0 -0.6494476 0.6494533 0 -0.7604016 0.6494348 0 -0.7604174 0.522486 0 -0.852648 0.522509 0 -0.8526339 0.382699 0 -0.9238731 0.3826719 0 -0.9238843 0.2334566 0 -0.9723672 0.2334266 0 -0.9723744 0.07848435 0 -0.9969154 0.07845294 0 -0.9969179 0.07845282 0 -0.9969179 0.07846158 0 -0.9969173 0.2334417 0 -0.9723708 0.2334501 0 -0.9723688 0.382685 0 -0.923879 0.382685 0 -0.923879 0.5224969 0 -0.8526412 0.6494476 0 -0.7604064 0.6494528 0 -0.7604019 0.7604025 0 -0.6494522 0.7604064 0 -0.6494476 0.8526411 0 -0.5224973 0.9238789 0 -0.3826852 0.9238802 0 -0.382682 0.9723699 0 -0.2334457 0.9723704 0 -0.2334437 0.9969174 0 -0.07845973 0.9969173 0 -0.07846009 1 -1.64474e-4 0 0.9969171 0 -0.07846182 0.9969173 0 -0.07846122 0.9723704 0 -0.2334436 0.9723708 0 -0.2334418 0.9238778 0 -0.3826875 0.9238791 0 -0.3826847 0.8526415 0 -0.5224964 0.8526436 0 -0.5224931 0.7604052 0 -0.6494491 0.7604019 0 -0.6494529 0.6494488 0 -0.7604055 0.5224933 0 -0.8526434 0.5225048 0 -0.8526364 0.3826787 0 -0.9238815 0.2334491 0 -0.972369 0.233449 0 -0.9723691 0.07846009 0 -0.9969174 0.07846003 0 -0.9969173 -0.07846009 0 -0.9969174 -0.07846003 0 -0.9969173 -0.2334491 0 -0.972369 -0.233449 0 -0.9723691 -0.3826719 0 -0.9238843 -0.3826787 0 -0.9238815 -0.5225027 0 -0.8526377 -0.5224911 0 -0.8526449 -0.6494511 0 -0.7604035 -0.6494555 0 -0.7603996 -0.707107 0 -0.7071066 0 1 1.48864e-6 0 1 1.48863e-6 0 1 -1.51368e-6 0 1 1.5137e-6 0 1 -8.06348e-7 0 1 -1.48861e-6 0 1 4.03163e-7 0 1 4.03174e-7 0 1 -7.44313e-7 0 1 8.06337e-7 0 1 -5.58235e-7 0 1 5.58242e-7 0 1 3.72157e-7 0 1 -1.48863e-6 0 1 1.61266e-6 0 1 1.53386e-6 0 1 1.65222e-6 0 1 -1.52521e-6 0 1 8.2602e-7 0 1 -4.13054e-7 0 1 -7.62642e-7 0 1 2.06527e-7 0 1 -3.81284e-7 0 1 7.44331e-7 0 1 1.64705e-6 0 1 -1.61275e-6 0 1 1.64699e-6 0 1 1.64703e-6 0 1 -4.11748e-7 0 1 -2.05874e-7 0 1 1.61274e-6 0 1 -7.44296e-7 0 1 1.61265e-6 0 1 1.48859e-6 0 1 -1.48866e-6 0 1 -2.97725e-6 0.7604191 0 -0.6494328 0.7604046 0 -0.6494497 0.852636 0 -0.5225054 0.8526406 0 -0.5224978 0.9238756 0 -0.3826931 0.9238806 0 -0.382681 0.9723705 0 -0.2334431 0.9723705 0 -0.233443 0.9969172 0 -0.07846093 0.9969173 0 -0.07845956 0.9969171 0 0.07846224 0.9969173 0 0.07845956 0.9723714 0 0.2334392 0.9723705 0 0.233443 0.9238806 0 0.382681 0.9238756 0 0.3826932 0.852636 0 0.5225054 0.8526406 0 0.5224978 0.7604045 0 0.6494497 0.7604046 0 0.6494497 0.7071067 0 -0.707107 0.3377175 0 -0.9412475 -0.3377175 0 -0.9412477 -0.997064 0 -0.07657283 -0.9970638 0 -0.07657545 -0.9736855 0 -0.2278963 -0.9736818 0 -0.2279119 -0.9274672 0 -0.3739047 -0.9274623 0 -0.3739168 -0.8594946 0 -0.5111449 -0.8594946 0 -0.5111448 -0.7713643 0 -0.6363939 -0.7713785 0 -0.6363766 -0.6651691 0 -0.7466928 -0.6651693 0 -0.7466927 -0.5433443 0 -0.83951 -0.5433445 0 -0.8395098 -0.4087958 0 -0.912626 -0.4087959 0 -0.9126259 -0.07844018 0 0.9969189 -0.07847428 0 0.9969162 -0.2334334 0 0.9723729 -0.2334658 0 0.972365 -0.3826895 0 0.9238771 -0.5224732 0 0.8526557 -0.5224981 0 0.8526405 -0.6494578 0 0.7603977 -0.6494381 0 0.7604146 -0.7604081 0 0.6494457 -0.7604081 0 0.6494457 -0.8526429 0 0.5224942 -0.9238763 0 0.3826913 -0.9238763 0 0.3826915 -0.9969167 0 0.0784673 -0.9969174 0 0.07845872 -0.9969174 0 0.07845801 -0.9723699 0 0.2334459 -0.97237 0 0.2334451 -0.9238786 0 0.3826858 -0.8526418 0 0.5224961 -0.7604069 0 0.6494469 -0.7604033 0 0.6494512 -0.649448 0 0.760406 -0.6494528 0 0.7604019 -0.5224949 0 0.8526425 -0.5225009 0 0.8526389 -0.3826785 0 0.9238816 -0.3826857 0 0.9238786 -0.2334398 0 0.9723713 -0.2334478 0 0.9723693 -0.07845622 0 0.9969176 -0.07846474 0 0.9969169 -0.07846415 0 0.996917 -0.2334496 0 0.972369 -0.2334496 0 0.9723689 -0.5225044 0 0.8526366 -0.6494429 0 0.7604105 -0.6494429 0 0.7604104 -0.7604094 0 0.6494441 -0.760406 0 0.6494481 -0.8526384 0 0.5225016 -0.8526384 0 0.5225015 -0.9238787 0 0.3826857 -0.9723715 0 0.2334387 -0.9723715 0 0.2334387 -0.9969169 0 0.07846599 0.6494504 0 0.760404 0.6494505 0 0.7604039 0.5224975 0 0.8526409 0.5224914 0 0.8526446 0.3826821 0 0.9238802 0.3826894 0 0.9238771 0.2334472 0 0.9723695 0.2334473 0 0.9723695 0.07846456 0 0.996917 0.07845604 0 0.9969177 0.7071068 0 0.7071068 0.7071069 0 0.7071067 0 1 4.42294e-7 0 1 6.63451e-7 0 1 8.84614e-7 0 1 -2.21154e-7 0 1 3.31722e-7 0 1 4.42305e-7 0 1 4.97601e-7 0 1 -4.42284e-7 0 1 -4.42304e-7 0 1 7.18762e-7 0 1 1.79685e-7 -0.3331497 0 0.942874 -0.333112 0 0.9428873 -0.8515246 0 0.5243147 -0.6919283 0 -0.7219663 -0.2519659 0 -0.9677362 -0.2520055 0 -0.9677258 0.4118942 0 -0.9112318 0.5599672 0 -0.8285149 0.8515246 0 0.5243147 0 -0.002702474 0.9999964 0.04252529 0 0.9990954 -0.1689777 0 0.98562 -0.8515301 0 0.5243059 -0.8515533 0 0.5242681 -0.9775528 0 0.2106906 -0.6919708 0 -0.7219256 -0.08482694 0 -0.9963957 -0.08478498 0 -0.9963993 0.08478707 0 -0.9963991 0.08482909 0 -0.9963956 0.8039963 0 -0.5946343 0.977558 0 0.2106665 0.8515533 0 0.5242682 0.85153 0 0.5243059 0.4876763 0 0.8730245 0 1 0 0 1 0 0 1 2.24463e-6 0 1 1.94362e-7 0 1 -1.16318e-6 0 1 -5.88233e-7 0 1 2.08935e-7 0 1 -2.24034e-7 0 1 5.38001e-7 0 1 -1.23791e-7 0 1 0 0 1 0 0 1 -2.69884e-7 0 1 0 0 1 -2.9482e-7 0 1 -1.57388e-7 0 1 -1.67453e-7 0 1 2.97656e-7 0 1 -1.91198e-7 0 1 3.15968e-7 0 1 1.50945e-7 0 1 -1.37875e-6 0 1 4.38865e-7 0 1 0 0 1 0 0 1 -1.90748e-7 0 1 2.84629e-7 0 1 -1.99262e-7 0 1 -1.84052e-7 0 1 1.62234e-7 0 1 -2.16137e-7 0 1 5.20744e-7 0 1 0 0 1 -7.98472e-7 0 1 0 0 1 5.32256e-7 0 1 0 0 1 -1.97084e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.68275e-7 0 1 -8.64119e-7 0 1 1.27137e-7 0 1 4.81648e-7 0 1 -1.17678e-6 0 1 2.76536e-7 0 1 -3.39727e-7 0 1 1.81597e-7 0 1 0 0 1 -3.38823e-7 0 1 0 0 1 0 0 1 0 0 1 2.07481e-7 0 1 0 0 1 0 0 1 5.74164e-7 0 1 -3.24048e-7 0 1 2.94898e-7 0 1 3.16302e-7 0 1 1.6652e-7 0 1 -5.14827e-7 0 1 3.7239e-7 0 1 -3.16176e-7 0 1 0 0 1 -5.31252e-7 0 1 -6.90631e-7 0 1 0 0 1 0 0 1 0 0 1 -6.1034e-7 0 1 0 0 1 0 0 1 3.18038e-7 0 1 -3.69128e-7 0 -1 0 0 1 0 0 1 -8.67642e-7 0 1 -8.67627e-7 0 1 2.1693e-7 0 1 2.16926e-7 0.92388 0 0.3826824 0 1 0 0 1 0 0 1 0 0 1 2.06222e-7 0 1 0 0 1 0 1 -1.52585e-5 2.83861e-7 1 0 -7.16216e-7 1 3.41591e-4 1.50632e-5 0 1 1.80701e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.08458e-6 0 1 1.08456e-6 + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

476 257 1401 477 257 1402 478 257 1403 604 347 1878 605 347 1879 606 347 1880 606 348 1881 607 348 1882 604 348 1883 604 349 1884 607 349 1885 608 349 1886 604 350 1887 608 350 1888 609 350 1889 609 351 1890 608 351 1891 610 351 1892 609 352 1893 610 352 1894 611 352 1895 611 353 1896 610 353 1897 612 353 1898 612 353 1899 610 353 1900 613 353 1901 612 354 1902 613 354 1903 614 354 1904 613 354 1905 615 354 1906 614 354 1907 614 355 1908 615 355 1909 616 355 1910 614 356 1911 616 356 1912 617 356 1913 617 357 1914 616 357 1915 618 357 1916 617 358 1917 618 358 1918 619 358 1919 341 359 1920 340 359 1921 620 359 1922 619 360 1923 618 360 1924 620 360 1925 620 361 1926 618 361 1927 621 361 1928 620 362 1929 621 362 1930 341 362 1931 341 363 1932 621 363 1933 622 363 1934 341 364 1935 622 364 1936 343 364 1937 343 365 1938 622 365 1939 623 365 1940 343 366 1941 623 366 1942 344 366 1943 344 367 1944 623 367 1945 624 367 1946 344 368 1947 624 368 1948 345 368 1949 345 369 1950 624 369 1951 625 369 1952 345 370 1953 625 370 1954 346 370 1955 346 371 1956 625 371 1957 626 371 1958 346 372 1959 626 372 1960 347 372 1961 347 373 1962 626 373 1963 627 373 1964 347 374 1965 627 374 1966 348 374 1967 348 375 1968 627 375 1969 628 375 1970 348 376 1971 628 376 1972 349 376 1973 349 377 1974 628 377 1975 629 377 1976 349 377 1977 629 377 1978 351 377 1979 351 378 1980 629 378 1981 630 378 1982 351 379 1983 630 379 1984 353 379 1985 353 380 1986 630 380 1987 631 380 1988 353 381 1989 631 381 1990 354 381 1991 354 382 1992 631 382 1993 632 382 1994 354 382 1995 632 382 1996 366 382 1997 366 383 1998 632 383 1999 633 383 2000 366 384 2001 633 384 2002 367 384 2003 367 385 2004 633 385 2005 634 385 2006 367 385 2007 634 385 2008 368 385 2009 368 386 2010 634 386 2011 635 386 2012 368 387 2013 635 387 2014 387 387 2015 387 388 2016 635 388 2017 636 388 2018 387 389 2019 636 389 2020 420 389 2021 420 390 2022 636 390 2023 637 390 2024 420 391 2025 637 391 2026 422 391 2027 422 392 2028 637 392 2029 638 392 2030 422 393 2031 638 393 2032 423 393 2033 423 394 2034 638 394 2035 639 394 2036 423 395 2037 639 395 2038 408 395 2039 408 396 2040 639 396 2041 640 396 2042 408 397 2043 640 397 2044 407 397 2045 407 398 2046 640 398 2047 641 398 2048 407 398 2049 641 398 2050 411 398 2051 411 399 2052 641 399 2053 642 399 2054 411 400 2055 642 400 2056 412 400 2057 412 401 2058 642 401 2059 643 401 2060 412 402 2061 643 402 2062 413 402 2063 413 403 2064 643 403 2065 644 403 2066 413 403 2067 644 403 2068 381 403 2069 381 404 2070 644 404 2071 645 404 2072 381 405 2073 645 405 2074 380 405 2075 380 406 2076 645 406 2077 646 406 2078 380 407 2079 646 407 2080 379 407 2081 379 408 2082 646 408 2083 647 408 2084 379 409 2085 647 409 2086 401 409 2087 401 410 2088 647 410 2089 648 410 2090 401 411 2091 648 411 2092 402 411 2093 402 412 2094 648 412 2095 649 412 2096 402 413 2097 649 413 2098 403 413 2099 403 414 2100 649 414 2101 650 414 2102 403 414 2103 650 414 2104 385 414 2105 385 415 2106 650 415 2107 606 415 2108 385 416 2109 606 416 2110 384 416 2111 384 417 2112 606 417 2113 605 417 2114 384 418 2115 605 418 2116 382 418 2117 651 419 2118 652 419 2119 653 419 2120 653 420 2121 654 420 2122 651 420 2123 651 421 2124 654 421 2125 655 421 2126 651 422 2127 655 422 2128 656 422 2129 656 423 2130 655 423 2131 657 423 2132 656 424 2133 657 424 2134 658 424 2135 207 425 2136 206 425 2137 659 425 2138 660 426 2139 661 426 2140 662 426 2141 662 427 2142 663 427 2143 660 427 2144 660 428 2145 663 428 2146 664 428 2147 660 429 2148 664 429 2149 665 429 2150 665 430 2151 664 430 2152 666 430 2153 665 431 2154 666 431 2155 667 431 2156 33 432 2157 105 432 2158 668 432 2159 658 433 2160 657 433 2161 659 433 2162 659 434 2163 657 434 2164 669 434 2165 659 435 2166 669 435 2167 207 435 2168 207 352 2169 669 352 2170 670 352 2171 207 436 2172 670 436 2173 208 436 2174 208 437 2175 670 437 2176 671 437 2177 208 438 2178 671 438 2179 209 438 2180 667 439 2181 666 439 2182 668 439 2183 668 440 2184 666 440 2185 672 440 2186 668 441 2187 672 441 2188 33 441 2189 33 442 2190 672 442 2191 673 442 2192 33 443 2193 673 443 2194 8 443 2195 8 401 2196 673 401 2197 674 401 2198 8 402 2199 674 402 2200 9 402 2201 9 403 2202 674 403 2203 675 403 2204 9 403 2205 675 403 2206 14 403 2207 14 404 2208 675 404 2209 676 404 2210 14 405 2211 676 405 2212 15 405 2213 15 444 2214 676 444 2215 677 444 2216 15 445 2217 677 445 2218 11 445 2219 11 446 2220 677 446 2221 678 446 2222 11 446 2223 678 446 2224 12 446 2225 12 447 2226 678 447 2227 679 447 2228 12 448 2229 679 448 2230 13 448 2231 13 449 2232 679 449 2233 653 449 2234 13 449 2235 653 449 2236 113 449 2237 113 450 2238 653 450 2239 652 450 2240 113 451 2241 652 451 2242 112 451 2243 671 452 2244 680 452 2245 209 452 2246 209 453 2247 680 453 2248 681 453 2249 209 454 2250 681 454 2251 210 454 2252 210 455 2253 681 455 2254 682 455 2255 210 456 2256 682 456 2257 211 456 2258 211 457 2259 682 457 2260 683 457 2261 211 458 2262 683 458 2263 212 458 2264 212 459 2265 683 459 2266 684 459 2267 212 460 2268 684 460 2269 213 460 2270 213 461 2271 684 461 2272 685 461 2273 213 462 2274 685 462 2275 199 462 2276 199 463 2277 685 463 2278 686 463 2279 199 463 2280 686 463 2281 200 463 2282 200 464 2283 686 464 2284 687 464 2285 200 465 2286 687 465 2287 220 465 2288 220 466 2289 687 466 2290 688 466 2291 220 467 2292 688 467 2293 221 467 2294 221 468 2295 688 468 2296 689 468 2297 221 469 2298 689 469 2299 222 469 2300 222 470 2301 689 470 2302 690 470 2303 222 471 2304 690 471 2305 214 471 2306 214 377 2307 690 377 2308 691 377 2309 214 377 2310 691 377 2311 215 377 2312 215 378 2313 691 378 2314 692 378 2315 215 379 2316 692 379 2317 216 379 2318 216 472 2319 692 472 2320 693 472 2321 216 473 2322 693 473 2323 217 473 2324 217 474 2325 693 474 2326 694 474 2327 217 475 2328 694 475 2329 218 475 2330 218 383 2331 694 383 2332 695 383 2333 218 384 2334 695 384 2335 219 384 2336 219 476 2337 695 476 2338 696 476 2339 219 476 2340 696 476 2341 201 476 2342 201 477 2343 696 477 2344 697 477 2345 201 478 2346 697 478 2347 202 478 2348 202 479 2349 697 479 2350 698 479 2351 202 480 2352 698 480 2353 203 480 2354 203 481 2355 698 481 2356 662 481 2357 203 482 2358 662 482 2359 204 482 2360 204 483 2361 662 483 2362 661 483 2363 204 484 2364 661 484 2365 205 484 2366 699 485 2367 700 485 2368 0 485 2369 0 485 2370 700 485 2371 6 485 2372 701 486 2373 699 486 2374 2 486 2375 2 486 2376 699 486 2377 0 486 2378 702 487 2379 701 487 2380 4 487 2381 4 487 2382 701 487 2383 2 487 2384 325 486 2385 703 486 2386 321 486 2387 321 486 2388 703 486 2389 704 486 2390 321 486 2391 704 486 2392 333 486 2393 333 486 2394 704 486 2395 600 486 2396 325 486 2397 603 486 2398 703 486 2399 703 488 2400 603 488 2401 602 488 2402 703 486 2403 602 486 2404 601 486 2405 601 485 2406 599 485 2407 703 485 2408 703 485 2409 599 485 2410 598 485 2411 703 485 2412 598 485 2413 705 485 2414 705 485 2415 598 485 2416 171 485 2417 705 485 2418 171 485 2419 170 485 2420 170 489 2421 169 489 2422 705 489 2423 705 490 2424 169 490 2425 519 490 2426 519 489 2427 228 489 2428 705 489 2429 705 491 2430 228 491 2431 193 491 2432 705 492 2433 193 492 2434 706 492 2435 706 493 2436 193 493 2437 188 493 2438 706 489 2439 188 489 2440 517 489 2441 517 487 2442 487 487 2443 706 487 2444 706 487 2445 487 487 2446 428 487 2447 706 487 2448 428 487 2449 704 487 2450 704 487 2451 428 487 2452 447 487 2453 704 487 2454 447 487 2455 600 487 2456 700 489 2457 702 489 2458 6 489 2459 6 489 2460 702 489 2461 4 489 2462 704 0 2463 700 0 2464 706 0 2465 706 0 2466 700 0 2467 699 0 2468 706 0 2469 699 0 2470 705 0 2471 705 0 2472 699 0 2473 701 0 2474 705 0 2475 701 0 2476 703 0 2477 703 0 2478 701 0 2479 702 0 2480 703 0 2481 702 0 2482 704 0 2483 704 0 2484 702 0 2485 700 0 2486 707 494 2487 708 494 2488 569 494 2489 569 495 2490 708 495 2491 562 495 2492 708 496 2493 709 496 2494 562 496 2495 562 497 2496 709 497 2497 710 497 2498 562 498 2499 710 498 2500 570 498 2501 570 499 2502 710 499 2503 711 499 2504 570 500 2505 711 500 2506 571 500 2507 571 457 2508 711 457 2509 712 457 2510 571 501 2511 712 501 2512 572 501 2513 572 363 2514 712 363 2515 713 363 2516 572 364 2517 713 364 2518 578 364 2519 578 502 2520 713 502 2521 714 502 2522 578 503 2523 714 503 2524 579 503 2525 579 504 2526 714 504 2527 715 504 2528 579 368 2529 715 368 2530 580 368 2531 580 369 2532 715 369 2533 716 369 2534 580 505 2535 716 505 2536 581 505 2537 581 506 2538 716 506 2539 717 506 2540 581 507 2541 717 507 2542 582 507 2543 582 373 2544 717 373 2545 718 373 2546 582 508 2547 718 508 2548 583 508 2549 583 375 2550 718 375 2551 719 375 2552 583 509 2553 719 509 2554 573 509 2555 573 510 2556 719 510 2557 720 510 2558 573 511 2559 720 511 2560 574 511 2561 574 378 2562 720 378 2563 721 378 2564 574 379 2565 721 379 2566 584 379 2567 584 512 2568 721 512 2569 722 512 2570 584 381 2571 722 381 2572 585 381 2573 585 513 2574 722 513 2575 723 513 2576 585 382 2577 723 382 2578 563 382 2579 563 514 2580 723 514 2581 724 514 2582 563 515 2583 724 515 2584 564 515 2585 564 516 2586 724 516 2587 725 516 2588 564 517 2589 725 517 2590 565 517 2591 565 386 2592 725 386 2593 726 386 2594 565 387 2595 726 387 2596 566 387 2597 566 518 2598 726 518 2599 727 518 2600 566 389 2601 727 389 2602 559 389 2603 559 390 2604 727 390 2605 728 390 2606 559 519 2607 728 519 2608 560 519 2609 560 392 2610 728 392 2611 729 392 2612 560 393 2613 729 393 2614 575 393 2615 575 520 2616 729 520 2617 730 520 2618 575 521 2619 730 521 2620 576 521 2621 576 522 2622 730 522 2623 731 522 2624 576 523 2625 731 523 2626 577 523 2627 577 398 2628 731 398 2629 732 398 2630 577 524 2631 732 524 2632 589 524 2633 589 399 2634 732 399 2635 733 399 2636 589 525 2637 733 525 2638 590 525 2639 590 401 2640 733 401 2641 734 401 2642 590 402 2643 734 402 2644 591 402 2645 591 526 2646 734 526 2647 735 526 2648 591 527 2649 735 527 2650 592 527 2651 592 528 2652 735 528 2653 736 528 2654 592 405 2655 736 405 2656 593 405 2657 593 529 2658 736 529 2659 737 529 2660 593 407 2661 737 407 2662 594 407 2663 594 530 2664 737 530 2665 738 530 2666 594 531 2667 738 531 2668 595 531 2669 595 532 2670 738 532 2671 739 532 2672 595 411 2673 739 411 2674 596 411 2675 596 412 2676 739 412 2677 740 412 2678 596 533 2679 740 533 2680 597 533 2681 597 534 2682 740 534 2683 741 534 2684 597 535 2685 741 535 2686 586 535 2687 586 415 2688 741 415 2689 742 415 2690 586 416 2691 742 416 2692 587 416 2693 587 536 2694 742 536 2695 743 536 2696 587 537 2697 743 537 2698 588 537 2699 588 538 2700 743 538 2701 744 538 2702 588 539 2703 744 539 2704 567 539 2705 567 540 2706 744 540 2707 707 540 2708 567 541 2709 707 541 2710 568 541 2711 568 542 2712 707 542 2713 569 542 2714 708 0 2715 707 0 2716 745 0 2717 708 0 2718 745 0 2719 709 0 2720 712 0 2721 711 0 2722 745 0 2723 745 543 2724 711 543 2725 710 543 2726 745 0 2727 710 0 2728 709 0 2729 715 544 2730 714 544 2731 745 544 2732 745 545 2733 714 545 2734 713 545 2735 745 546 2736 713 546 2737 712 546 2738 718 0 2739 717 0 2740 745 0 2741 745 547 2742 717 547 2743 716 547 2744 745 548 2745 716 548 2746 715 548 2747 721 0 2748 720 0 2749 745 0 2750 745 549 2751 720 549 2752 719 549 2753 745 548 2754 719 548 2755 718 548 2756 724 0 2757 723 0 2758 745 0 2759 745 550 2760 723 550 2761 722 550 2762 745 543 2763 722 543 2764 721 543 2765 727 0 2766 726 0 2767 745 0 2768 745 551 2769 726 551 2770 725 551 2771 745 552 2772 725 552 2773 724 552 2774 730 553 2775 729 553 2776 745 553 2777 745 554 2778 729 554 2779 728 554 2780 745 0 2781 728 0 2782 727 0 2783 733 0 2784 732 0 2785 745 0 2786 745 555 2787 732 555 2788 731 555 2789 745 556 2790 731 556 2791 730 556 2792 736 557 2793 735 557 2794 745 557 2795 745 558 2796 735 558 2797 734 558 2798 745 559 2799 734 559 2800 733 559 2801 739 560 2802 738 560 2803 745 560 2804 745 561 2805 738 561 2806 737 561 2807 745 562 2808 737 562 2809 736 562 2810 742 563 2811 741 563 2812 745 563 2813 745 564 2814 741 564 2815 740 564 2816 745 565 2817 740 565 2818 739 565 2819 707 0 2820 744 0 2821 745 0 2822 745 566 2823 744 566 2824 743 566 2825 745 567 2826 743 567 2827 742 567 2828 746 494 2829 747 494 2830 312 494 2831 312 495 2832 747 495 2833 313 495 2834 747 568 2835 748 568 2836 313 568 2837 313 569 2838 748 569 2839 749 569 2840 313 498 2841 749 498 2842 289 498 2843 289 499 2844 749 499 2845 750 499 2846 289 500 2847 750 500 2848 290 500 2849 290 457 2850 750 457 2851 751 457 2852 290 501 2853 751 501 2854 291 501 2855 291 570 2856 751 570 2857 752 570 2858 291 571 2859 752 571 2860 292 571 2861 292 572 2862 752 572 2863 753 572 2864 292 573 2865 753 573 2866 293 573 2867 293 504 2868 753 504 2869 754 504 2870 293 574 2871 754 574 2872 294 574 2873 294 369 2874 754 369 2875 755 369 2876 294 575 2877 755 575 2878 295 575 2879 295 506 2880 755 506 2881 756 506 2882 295 372 2883 756 372 2884 296 372 2885 296 576 2886 756 576 2887 757 576 2888 296 508 2889 757 508 2890 297 508 2891 297 509 2892 757 509 2893 758 509 2894 297 577 2895 758 577 2896 298 577 2897 298 510 2898 758 510 2899 759 510 2900 298 578 2901 759 578 2902 302 578 2903 302 579 2904 759 579 2905 760 579 2906 302 379 2907 760 379 2908 303 379 2909 303 512 2910 760 512 2911 761 512 2912 303 381 2913 761 381 2914 304 381 2915 304 513 2916 761 513 2917 762 513 2918 304 382 2919 762 382 2920 305 382 2921 305 580 2922 762 580 2923 763 580 2924 305 515 2925 763 515 2926 282 515 2927 282 581 2928 763 581 2929 764 581 2930 282 516 2931 764 516 2932 283 516 2933 283 386 2934 764 386 2935 765 386 2936 283 582 2937 765 582 2938 284 582 2939 284 518 2940 765 518 2941 766 518 2942 284 389 2943 766 389 2944 285 389 2945 285 390 2946 766 390 2947 767 390 2948 285 519 2949 767 519 2950 286 519 2951 286 583 2952 767 583 2953 768 583 2954 286 393 2955 768 393 2956 299 393 2957 299 584 2958 768 584 2959 769 584 2960 299 585 2961 769 585 2962 300 585 2963 300 522 2964 769 522 2965 770 522 2966 300 586 2967 770 586 2968 301 586 2969 301 398 2970 770 398 2971 771 398 2972 301 524 2973 771 524 2974 316 524 2975 316 399 2976 771 399 2977 772 399 2978 316 525 2979 772 525 2980 317 525 2981 317 401 2982 772 401 2983 773 401 2984 317 587 2985 773 587 2986 318 587 2987 318 588 2988 773 588 2989 774 588 2990 318 527 2991 774 527 2992 319 527 2993 319 589 2994 774 589 2995 775 589 2996 319 528 2997 775 528 2998 320 528 2999 320 529 3000 775 529 3001 776 529 3002 320 590 3003 776 590 3004 287 590 3005 287 408 3006 776 408 3007 777 408 3008 287 531 3009 777 531 3010 288 531 3011 288 591 3012 777 591 3013 778 591 3014 288 411 3015 778 411 3016 314 411 3017 314 592 3018 778 592 3019 779 592 3020 314 533 3021 779 533 3022 315 533 3023 315 535 3024 779 535 3025 780 535 3026 315 534 3027 780 534 3028 307 534 3029 307 593 3030 780 593 3031 781 593 3032 307 594 3033 781 594 3034 308 594 3035 308 536 3036 781 536 3037 782 536 3038 308 537 3039 782 537 3040 309 537 3041 309 538 3042 782 538 3043 783 538 3044 309 539 3045 783 539 3046 310 539 3047 310 540 3048 783 540 3049 746 540 3050 310 595 3051 746 595 3052 311 595 3053 311 596 3054 746 596 3055 312 596 3056 747 0 3057 746 0 3058 784 0 3059 747 0 3060 784 0 3061 748 0 3062 751 0 3063 750 0 3064 784 0 3065 784 543 3066 750 543 3067 749 543 3068 784 0 3069 749 0 3070 748 0 3071 754 544 3072 753 544 3073 784 544 3074 784 545 3075 753 545 3076 752 545 3077 784 597 3078 752 597 3079 751 597 3080 757 0 3081 756 0 3082 784 0 3083 784 598 3084 756 598 3085 755 598 3086 784 599 3087 755 599 3088 754 599 3089 760 0 3090 759 0 3091 784 0 3092 784 600 3093 759 600 3094 758 600 3095 784 601 3096 758 601 3097 757 601 3098 763 0 3099 762 0 3100 784 0 3101 784 550 3102 762 550 3103 761 550 3104 784 543 3105 761 543 3106 760 543 3107 766 0 3108 765 0 3109 784 0 3110 784 602 3111 765 602 3112 764 602 3113 784 603 3114 764 603 3115 763 603 3116 769 553 3117 768 553 3118 784 553 3119 784 604 3120 768 604 3121 767 604 3122 784 0 3123 767 0 3124 766 0 3125 772 0 3126 771 0 3127 784 0 3128 784 555 3129 771 555 3130 770 555 3131 784 556 3132 770 556 3133 769 556 3134 775 605 3135 774 605 3136 784 605 3137 784 606 3138 774 606 3139 773 606 3140 784 607 3141 773 607 3142 772 607 3143 778 608 3144 777 608 3145 784 608 3146 784 609 3147 777 609 3148 776 609 3149 784 562 3150 776 562 3151 775 562 3152 781 563 3153 780 563 3154 784 563 3155 784 564 3156 780 564 3157 779 564 3158 784 610 3159 779 610 3160 778 610 3161 746 0 3162 783 0 3163 784 0 3164 784 566 3165 783 566 3166 782 566 3167 784 567 3168 782 567 3169 781 567 3170 613 0 3171 610 0 3172 785 0 3173 613 0 3174 785 0 3175 615 0 3176 621 0 3177 618 0 3178 785 0 3179 785 543 3180 618 543 3181 616 543 3182 785 0 3183 616 0 3184 615 0 3185 624 544 3186 623 544 3187 785 544 3188 785 611 3189 623 611 3190 622 611 3191 785 597 3192 622 597 3193 621 597 3194 627 0 3195 626 0 3196 785 0 3197 785 547 3198 626 547 3199 625 547 3200 785 599 3201 625 599 3202 624 599 3203 630 0 3204 629 0 3205 785 0 3206 785 549 3207 629 549 3208 628 549 3209 785 612 3210 628 612 3211 627 612 3212 633 0 3213 632 0 3214 785 0 3215 785 613 3216 632 613 3217 631 613 3218 785 614 3219 631 614 3220 630 614 3221 636 0 3222 635 0 3223 785 0 3224 785 551 3225 635 551 3226 634 551 3227 785 615 3228 634 615 3229 633 615 3230 639 616 3231 638 616 3232 785 616 3233 785 554 3234 638 554 3235 637 554 3236 785 0 3237 637 0 3238 636 0 3239 642 0 3240 641 0 3241 785 0 3242 785 617 3243 641 617 3244 640 617 3245 785 618 3246 640 618 3247 639 618 3248 645 619 3249 644 619 3250 785 619 3251 785 558 3252 644 558 3253 643 558 3254 785 559 3255 643 559 3256 642 559 3257 648 608 3258 647 608 3259 785 608 3260 785 561 3261 647 561 3262 646 561 3263 785 562 3264 646 562 3265 645 562 3266 606 563 3267 650 563 3268 785 563 3269 785 564 3270 650 564 3271 649 564 3272 785 610 3273 649 610 3274 648 610 3275 610 0 3276 608 0 3277 785 0 3278 785 566 3279 608 566 3280 607 566 3281 785 567 3282 607 567 3283 606 567 3284 786 620 3285 787 620 3286 419 620 3287 419 621 3288 787 621 3289 388 621 3290 787 495 3291 788 495 3292 388 495 3293 388 356 3294 788 356 3295 789 356 3296 388 622 3297 789 622 3298 386 622 3299 386 623 3300 789 623 3301 790 623 3302 386 624 3303 790 624 3304 373 624 3305 373 625 3306 790 625 3307 791 625 3308 373 458 3309 791 458 3310 372 458 3311 372 363 3312 791 363 3313 792 363 3314 372 626 3315 792 626 3316 371 626 3317 371 365 3318 792 365 3319 793 365 3320 371 366 3321 793 366 3322 389 366 3323 389 367 3324 793 367 3325 794 367 3326 389 627 3327 794 627 3328 390 627 3329 390 369 3330 794 369 3331 795 369 3332 390 575 3333 795 575 3334 369 575 3335 369 628 3336 795 628 3337 796 628 3338 369 629 3339 796 629 3340 357 629 3341 357 373 3342 796 373 3343 797 373 3344 357 508 3345 797 508 3346 356 508 3347 356 509 3348 797 509 3349 798 509 3350 356 376 3351 798 376 3352 355 376 3353 355 510 3354 798 510 3355 799 510 3356 355 510 3357 799 510 3358 374 510 3359 374 630 3360 799 630 3361 800 630 3362 374 631 3363 800 631 3364 375 631 3365 375 380 3366 800 380 3367 801 380 3368 375 632 3369 801 632 3370 376 632 3371 376 382 3372 801 382 3373 802 382 3374 376 633 3375 802 633 3376 404 633 3377 404 383 3378 802 383 3379 803 383 3380 404 384 3381 803 384 3382 405 384 3383 405 516 3384 803 516 3385 804 516 3386 405 385 3387 804 385 3388 406 385 3389 406 634 3390 804 634 3391 805 634 3392 406 635 3393 805 635 3394 417 635 3395 417 518 3396 805 518 3397 806 518 3398 417 389 3399 806 389 3400 418 389 3401 418 390 3402 806 390 3403 807 390 3404 418 519 3405 807 519 3406 377 519 3407 377 636 3408 807 636 3409 808 636 3410 377 637 3411 808 637 3412 378 637 3413 378 394 3414 808 394 3415 809 394 3416 378 521 3417 809 521 3418 391 521 3419 391 396 3420 809 396 3421 810 396 3422 391 397 3423 810 397 3424 392 397 3425 392 638 3426 810 638 3427 811 638 3428 392 398 3429 811 398 3430 393 398 3431 393 639 3432 811 639 3433 812 639 3434 393 400 3435 812 400 3436 394 400 3437 394 640 3438 812 640 3439 813 640 3440 394 641 3441 813 641 3442 395 641 3443 395 527 3444 813 527 3445 814 527 3446 395 527 3447 814 527 3448 396 527 3449 396 404 3450 814 404 3451 815 404 3452 396 528 3453 815 528 3454 397 528 3455 397 529 3456 815 529 3457 816 529 3458 397 407 3459 816 407 3460 398 407 3461 398 642 3462 816 642 3463 817 642 3464 398 643 3465 817 643 3466 399 643 3467 399 591 3468 817 591 3469 818 591 3470 399 411 3471 818 411 3472 400 411 3473 400 644 3474 818 644 3475 819 644 3476 400 413 3477 819 413 3478 409 413 3479 409 414 3480 819 414 3481 820 414 3482 409 414 3483 820 414 3484 410 414 3485 410 645 3486 820 645 3487 821 645 3488 410 416 3489 821 416 3490 414 416 3491 414 646 3492 821 646 3493 822 646 3494 414 647 3495 822 647 3496 415 647 3497 415 648 3498 822 648 3499 823 648 3500 415 649 3501 823 649 3502 416 649 3503 416 352 3504 823 352 3505 786 352 3506 416 436 3507 786 436 3508 421 436 3509 421 353 3510 786 353 3511 419 353 3512 787 0 3513 786 0 3514 824 0 3515 787 0 3516 824 0 3517 788 0 3518 791 0 3519 790 0 3520 824 0 3521 824 650 3522 790 650 3523 789 650 3524 824 0 3525 789 0 3526 788 0 3527 794 651 3528 793 651 3529 824 651 3530 824 611 3531 793 611 3532 792 611 3533 824 597 3534 792 597 3535 791 597 3536 797 0 3537 796 0 3538 824 0 3539 824 652 3540 796 652 3541 795 652 3542 824 599 3543 795 599 3544 794 599 3545 800 0 3546 799 0 3547 824 0 3548 824 600 3549 799 600 3550 798 600 3551 824 599 3552 798 599 3553 797 599 3554 803 0 3555 802 0 3556 824 0 3557 824 613 3558 802 613 3559 801 613 3560 824 543 3561 801 543 3562 800 543 3563 806 0 3564 805 0 3565 824 0 3566 824 653 3567 805 653 3568 804 653 3569 824 603 3570 804 603 3571 803 603 3572 809 553 3573 808 553 3574 824 553 3575 824 654 3576 808 654 3577 807 654 3578 824 0 3579 807 0 3580 806 0 3581 812 0 3582 811 0 3583 824 0 3584 824 550 3585 811 550 3586 810 550 3587 824 618 3588 810 618 3589 809 618 3590 815 655 3591 814 655 3592 824 655 3593 824 606 3594 814 606 3595 813 606 3596 824 607 3597 813 607 3598 812 607 3599 818 608 3600 817 608 3601 824 608 3602 824 656 3603 817 656 3604 816 656 3605 824 562 3606 816 562 3607 815 562 3608 821 563 3609 820 563 3610 824 563 3611 824 564 3612 820 564 3613 819 564 3614 824 610 3615 819 610 3616 818 610 3617 786 0 3618 823 0 3619 824 0 3620 824 657 3621 823 657 3622 822 657 3623 824 567 3624 822 567 3625 821 567 3626 825 494 3627 826 494 3628 471 494 3629 471 495 3630 826 495 3631 433 495 3632 826 495 3633 827 495 3634 433 495 3635 433 356 3636 827 356 3637 828 356 3638 433 622 3639 828 622 3640 434 622 3641 434 357 3642 828 357 3643 829 357 3644 434 658 3645 829 658 3646 435 658 3647 435 659 3648 829 659 3649 830 659 3650 435 660 3651 830 660 3652 436 660 3653 436 661 3654 830 661 3655 831 661 3656 436 662 3657 831 662 3658 437 662 3659 437 365 3660 831 365 3661 832 365 3662 437 366 3663 832 366 3664 454 366 3665 454 367 3666 832 367 3667 833 367 3668 454 368 3669 833 368 3670 455 368 3671 455 663 3672 833 663 3673 834 663 3674 455 575 3675 834 575 3676 438 575 3677 438 628 3678 834 628 3679 835 628 3680 438 629 3681 835 629 3682 439 629 3683 439 373 3684 835 373 3685 836 373 3686 439 508 3687 836 508 3688 441 508 3689 441 664 3690 836 664 3691 837 664 3692 441 376 3693 837 376 3694 424 376 3695 424 665 3696 837 665 3697 838 665 3698 424 665 3699 838 665 3700 444 665 3701 444 378 3702 838 378 3703 839 378 3704 444 631 3705 839 631 3706 430 631 3707 430 380 3708 839 380 3709 840 380 3710 430 666 3711 840 666 3712 429 666 3713 429 667 3714 840 667 3715 841 667 3716 429 382 3717 841 382 3718 427 382 3719 427 668 3720 841 668 3721 842 668 3722 427 384 3723 842 384 3724 461 384 3725 461 669 3726 842 669 3727 843 669 3728 461 516 3729 843 516 3730 462 516 3731 462 670 3732 843 670 3733 844 670 3734 462 671 3735 844 671 3736 463 671 3737 463 672 3738 844 672 3739 845 672 3740 463 673 3741 845 673 3742 445 673 3743 445 674 3744 845 674 3745 846 674 3746 445 675 3747 846 675 3748 446 675 3749 446 676 3750 846 676 3751 847 676 3752 446 677 3753 847 677 3754 448 677 3755 448 584 3756 847 584 3757 848 584 3758 448 678 3759 848 678 3760 464 678 3761 464 396 3762 848 396 3763 849 396 3764 464 679 3765 849 679 3766 465 679 3767 465 398 3768 849 398 3769 850 398 3770 465 680 3771 850 680 3772 449 680 3773 449 681 3774 850 681 3775 851 681 3776 449 400 3777 851 400 3778 450 400 3779 450 640 3780 851 640 3781 852 640 3782 450 402 3783 852 402 3784 466 402 3785 466 682 3786 852 682 3787 853 682 3788 466 682 3789 853 682 3790 467 682 3791 467 404 3792 853 404 3793 854 404 3794 467 683 3795 854 683 3796 468 683 3797 468 529 3798 854 529 3799 855 529 3800 468 407 3801 855 407 3802 431 407 3803 431 642 3804 855 642 3805 856 642 3806 431 643 3807 856 643 3808 432 643 3809 432 591 3810 856 591 3811 857 591 3812 432 684 3813 857 684 3814 451 684 3815 451 412 3816 857 412 3817 858 412 3818 451 413 3819 858 413 3820 452 413 3821 452 414 3822 858 414 3823 859 414 3824 452 414 3825 859 414 3826 453 414 3827 453 685 3828 859 685 3829 860 685 3830 453 686 3831 860 686 3832 472 686 3833 472 687 3834 860 687 3835 861 687 3836 472 688 3837 861 688 3838 473 688 3839 473 689 3840 861 689 3841 862 689 3842 473 690 3843 862 690 3844 469 690 3845 469 352 3846 862 352 3847 825 352 3848 469 436 3849 825 436 3850 470 436 3851 470 353 3852 825 353 3853 471 353 3854 826 0 3855 825 0 3856 863 0 3857 826 0 3858 863 0 3859 827 0 3860 830 0 3861 829 0 3862 863 0 3863 863 691 3864 829 691 3865 828 691 3866 863 0 3867 828 0 3868 827 0 3869 833 651 3870 832 651 3871 863 651 3872 863 611 3873 832 611 3874 831 611 3875 863 692 3876 831 692 3877 830 692 3878 836 0 3879 835 0 3880 863 0 3881 863 693 3882 835 693 3883 834 693 3884 863 694 3885 834 694 3886 833 694 3887 839 0 3888 838 0 3889 863 0 3890 863 695 3891 838 695 3892 837 695 3893 863 548 3894 837 548 3895 836 548 3896 842 0 3897 841 0 3898 863 0 3899 863 696 3900 841 696 3901 840 696 3902 863 543 3903 840 543 3904 839 543 3905 845 0 3906 844 0 3907 863 0 3908 863 653 3909 844 653 3910 843 653 3911 863 697 3912 843 697 3913 842 697 3914 848 616 3915 847 616 3916 863 616 3917 863 654 3918 847 654 3919 846 654 3920 863 0 3921 846 0 3922 845 0 3923 851 0 3924 850 0 3925 863 0 3926 863 550 3927 850 550 3928 849 550 3929 863 618 3930 849 618 3931 848 618 3932 854 557 3933 853 557 3934 863 557 3935 863 698 3936 853 698 3937 852 698 3938 863 699 3939 852 699 3940 851 699 3941 857 560 3942 856 560 3943 863 560 3944 863 700 3945 856 700 3946 855 700 3947 863 701 3948 855 701 3949 854 701 3950 860 563 3951 859 563 3952 863 563 3953 863 564 3954 859 564 3955 858 564 3956 863 610 3957 858 610 3958 857 610 3959 825 0 3960 862 0 3961 863 0 3962 863 702 3963 862 702 3964 861 702 3965 863 567 3966 861 567 3967 860 567 3968 864 703 3969 865 703 3970 531 703 3971 531 704 3972 865 704 3973 866 704 3974 531 705 3975 866 705 3976 532 705 3977 532 706 3978 866 706 3979 867 706 3980 532 707 3981 867 707 3982 533 707 3983 533 457 3984 867 457 3985 868 457 3986 533 501 3987 868 501 3988 545 501 3989 545 459 3990 868 459 3991 869 459 3992 545 460 3993 869 460 3994 546 460 3995 546 708 3996 869 708 3997 870 708 3998 546 709 3999 870 709 4000 534 709 4001 534 710 4002 870 710 4003 871 710 4004 534 463 4005 871 463 4006 535 463 4007 535 464 4008 871 464 4009 872 464 4010 535 711 4011 872 711 4012 547 711 4013 547 712 4014 872 712 4015 873 712 4016 547 713 4017 873 713 4018 548 713 4019 548 468 4020 873 468 4021 874 468 4022 548 714 4023 874 714 4024 549 714 4025 549 470 4026 874 470 4027 875 470 4028 549 715 4029 875 715 4030 527 715 4031 527 510 4032 875 510 4033 876 510 4034 527 511 4035 876 511 4036 528 511 4037 528 378 4038 876 378 4039 877 378 4040 528 379 4041 877 379 4042 529 379 4043 529 716 4044 877 716 4045 878 716 4046 529 473 4047 878 473 4048 530 473 4049 530 717 4050 878 717 4051 879 717 4052 530 475 4053 879 475 4054 521 475 4055 521 514 4056 879 514 4057 880 514 4058 521 515 4059 880 515 4060 522 515 4061 522 718 4062 880 718 4063 881 718 4064 522 719 4065 881 719 4066 523 719 4067 523 477 4068 881 477 4069 882 477 4070 523 478 4071 882 478 4072 536 478 4073 536 720 4074 882 720 4075 883 720 4076 536 480 4077 883 480 4078 537 480 4079 537 481 4080 883 481 4081 884 481 4082 537 721 4083 884 721 4084 538 721 4085 538 392 4086 884 392 4087 885 392 4088 538 393 4089 885 393 4090 539 393 4091 539 722 4092 885 722 4093 886 722 4094 539 723 4095 886 723 4096 540 723 4097 540 724 4098 886 724 4099 887 724 4100 540 725 4101 887 725 4102 541 725 4103 541 398 4104 887 398 4105 888 398 4106 541 524 4107 888 524 4108 542 524 4109 542 442 4110 888 442 4111 889 442 4112 542 726 4113 889 726 4114 543 726 4115 543 401 4116 889 401 4117 890 401 4118 543 402 4119 890 402 4120 544 402 4121 544 526 4122 890 526 4123 891 526 4124 544 527 4125 891 527 4126 554 527 4127 554 528 4128 891 528 4129 892 528 4130 554 405 4131 892 405 4132 555 405 4133 555 727 4134 892 727 4135 893 727 4136 555 445 4137 893 445 4138 556 445 4139 556 728 4140 893 728 4141 894 728 4142 556 729 4143 894 729 4144 550 729 4145 550 730 4146 894 730 4147 895 730 4148 550 448 4149 895 448 4150 551 448 4151 551 449 4152 895 449 4153 896 449 4154 551 731 4155 896 731 4156 552 731 4157 552 732 4158 896 732 4159 897 732 4160 552 733 4161 897 733 4162 553 733 4163 553 421 4164 897 421 4165 898 421 4166 553 734 4167 898 734 4168 557 734 4169 557 735 4170 898 735 4171 899 735 4172 557 736 4173 899 736 4174 558 736 4175 558 538 4176 899 538 4177 900 538 4178 558 539 4179 900 539 4180 525 539 4181 525 540 4182 900 540 4183 901 540 4184 525 541 4185 901 541 4186 524 541 4187 524 737 4188 901 737 4189 864 737 4190 524 738 4191 864 738 4192 531 738 4193 864 0 4194 901 0 4195 902 0 4196 864 0 4197 902 0 4198 865 0 4199 868 739 4200 867 739 4201 902 739 4202 902 740 4203 867 740 4204 866 740 4205 902 0 4206 866 0 4207 865 0 4208 871 605 4209 870 605 4210 902 605 4211 902 549 4212 870 549 4213 869 549 4214 902 741 4215 869 741 4216 868 741 4217 874 557 4218 873 557 4219 902 557 4220 902 742 4221 873 742 4222 872 742 4223 902 743 4224 872 743 4225 871 743 4226 877 0 4227 876 0 4228 902 0 4229 902 744 4230 876 744 4231 875 744 4232 902 0 4233 875 0 4234 874 0 4235 880 0 4236 879 0 4237 902 0 4238 902 745 4239 879 745 4240 878 745 4241 902 0 4242 878 0 4243 877 0 4244 883 0 4245 882 0 4246 902 0 4247 902 0 4248 882 0 4249 881 0 4250 902 0 4251 881 0 4252 880 0 4253 886 746 4254 885 746 4255 902 746 4256 902 747 4257 885 747 4258 884 747 4259 902 0 4260 884 0 4261 883 0 4262 889 0 4263 888 0 4264 902 0 4265 902 741 4266 888 741 4267 887 741 4268 902 748 4269 887 748 4270 886 748 4271 892 0 4272 891 0 4273 902 0 4274 902 749 4275 891 749 4276 890 749 4277 902 750 4278 890 750 4279 889 750 4280 895 0 4281 894 0 4282 902 0 4283 902 751 4284 894 751 4285 893 751 4286 902 752 4287 893 752 4288 892 752 4289 898 0 4290 897 0 4291 902 0 4292 902 753 4293 897 753 4294 896 753 4295 902 754 4296 896 754 4297 895 754 4298 901 0 4299 900 0 4300 902 0 4301 902 755 4302 900 755 4303 899 755 4304 902 756 4305 899 756 4306 898 756 4307 903 757 4308 904 757 4309 905 757 4310 905 758 4311 906 758 4312 903 758 4313 903 759 4314 906 759 4315 907 759 4316 903 760 4317 907 760 4318 908 760 4319 908 427 4320 907 427 4321 909 427 4322 908 583 4323 909 583 4324 910 583 4325 910 761 4326 909 761 4327 911 761 4328 911 762 4329 909 762 4330 912 762 4331 911 763 4332 912 763 4333 913 763 4334 913 724 4335 912 724 4336 914 724 4337 913 764 4338 914 764 4339 915 764 4340 239 765 4341 238 765 4342 916 765 4343 256 705 4344 917 705 4345 270 705 4346 270 706 4347 917 706 4348 918 706 4349 270 707 4350 918 707 4351 271 707 4352 271 457 4353 918 457 4354 919 457 4355 271 501 4356 919 501 4357 261 501 4358 261 766 4359 919 766 4360 920 766 4361 261 767 4362 920 767 4363 262 767 4364 262 768 4365 920 768 4366 921 768 4367 262 769 4368 921 769 4369 263 769 4370 263 710 4371 921 710 4372 922 710 4373 263 770 4374 922 770 4375 264 770 4376 264 464 4377 922 464 4378 923 464 4379 264 771 4380 923 771 4381 265 771 4382 265 712 4383 923 712 4384 924 712 4385 265 467 4386 924 467 4387 266 467 4388 266 772 4389 924 772 4390 925 772 4391 266 714 4392 925 714 4393 267 714 4394 267 773 4395 925 773 4396 926 773 4397 267 774 4398 926 774 4399 268 774 4400 268 510 4401 926 510 4402 927 510 4403 268 578 4404 927 578 4405 269 578 4406 269 579 4407 927 579 4408 928 579 4409 269 379 4410 928 379 4411 273 379 4412 273 716 4413 928 716 4414 929 716 4415 273 473 4416 929 473 4417 274 473 4418 274 717 4419 929 717 4420 930 717 4421 274 475 4422 930 475 4423 240 475 4424 240 580 4425 930 580 4426 931 580 4427 240 515 4428 931 515 4429 241 515 4430 241 775 4431 931 775 4432 932 775 4433 241 718 4434 932 718 4435 249 718 4436 249 477 4437 932 477 4438 905 477 4439 249 776 4440 905 776 4441 250 776 4442 250 777 4443 905 777 4444 904 777 4445 250 778 4446 904 778 4447 251 778 4448 915 779 4449 914 779 4450 916 779 4451 916 780 4452 914 780 4453 933 780 4454 916 781 4455 933 781 4456 239 781 4457 239 442 4458 933 442 4459 934 442 4460 239 726 4461 934 726 4462 243 726 4463 243 401 4464 934 401 4465 935 401 4466 243 587 4467 935 587 4468 244 587 4469 244 588 4470 935 588 4471 936 588 4472 244 527 4473 936 527 4474 245 527 4475 245 589 4476 936 589 4477 937 589 4478 245 528 4479 937 528 4480 246 528 4481 246 727 4482 937 727 4483 938 727 4484 246 782 4485 938 782 4486 247 782 4487 247 446 4488 938 446 4489 939 446 4490 247 729 4491 939 729 4492 248 729 4493 248 783 4494 939 783 4495 940 783 4496 248 448 4497 940 448 4498 252 448 4499 252 784 4500 940 784 4501 941 784 4502 252 731 4503 941 731 4504 253 731 4505 253 785 4506 941 785 4507 942 785 4508 253 786 4509 942 786 4510 254 786 4511 254 787 4512 942 787 4513 943 787 4514 254 421 4515 943 421 4516 258 421 4517 258 735 4518 943 735 4519 944 735 4520 258 736 4521 944 736 4522 259 736 4523 259 538 4524 944 538 4525 945 538 4526 259 539 4527 945 539 4528 260 539 4529 260 540 4530 945 540 4531 946 540 4532 260 595 4533 946 595 4534 255 595 4535 255 788 4536 946 788 4537 947 788 4538 255 438 4539 947 438 4540 256 438 4541 256 789 4542 947 789 4543 948 789 4544 256 790 4545 948 790 4546 917 790 4547 947 0 4548 946 0 4549 949 0 4550 947 0 4551 949 0 4552 948 0 4553 919 739 4554 918 739 4555 949 739 4556 949 740 4557 918 740 4558 917 740 4559 949 0 4560 917 0 4561 948 0 4562 922 557 4563 921 557 4564 949 557 4565 949 695 4566 921 695 4567 920 695 4568 949 791 4569 920 791 4570 919 791 4571 925 557 4572 924 557 4573 949 557 4574 949 792 4575 924 792 4576 923 792 4577 949 793 4578 923 793 4579 922 793 4580 928 0 4581 927 0 4582 949 0 4583 949 600 4584 927 600 4585 926 600 4586 949 0 4587 926 0 4588 925 0 4589 931 0 4590 930 0 4591 949 0 4592 949 745 4593 930 745 4594 929 745 4595 949 0 4596 929 0 4597 928 0 4598 906 0 4599 905 0 4600 949 0 4601 949 0 4602 905 0 4603 932 0 4604 949 0 4605 932 0 4606 931 0 4607 912 794 4608 909 794 4609 949 794 4610 949 795 4611 909 795 4612 907 795 4613 949 0 4614 907 0 4615 906 0 4616 934 0 4617 933 0 4618 949 0 4619 949 741 4620 933 741 4621 914 741 4622 949 796 4623 914 796 4624 912 796 4625 937 0 4626 936 0 4627 949 0 4628 949 797 4629 936 797 4630 935 797 4631 949 798 4632 935 798 4633 934 798 4634 940 0 4635 939 0 4636 949 0 4637 949 799 4638 939 799 4639 938 799 4640 949 752 4641 938 752 4642 937 752 4643 943 0 4644 942 0 4645 949 0 4646 949 753 4647 942 753 4648 941 753 4649 949 800 4650 941 800 4651 940 800 4652 946 0 4653 945 0 4654 949 0 4655 949 755 4656 945 755 4657 944 755 4658 949 756 4659 944 756 4660 943 756 4661 671 0 4662 670 0 4663 950 0 4664 671 0 4665 950 0 4666 680 0 4667 683 739 4668 682 739 4669 950 739 4670 950 740 4671 682 740 4672 681 740 4673 950 0 4674 681 0 4675 680 0 4676 686 557 4677 685 557 4678 950 557 4679 950 695 4680 685 695 4681 684 695 4682 950 553 4683 684 553 4684 683 553 4685 689 557 4686 688 557 4687 950 557 4688 950 742 4689 688 742 4690 687 742 4691 950 801 4692 687 801 4693 686 801 4694 692 0 4695 691 0 4696 950 0 4697 950 744 4698 691 744 4699 690 744 4700 950 0 4701 690 0 4702 689 0 4703 695 0 4704 694 0 4705 950 0 4706 950 802 4707 694 802 4708 693 802 4709 950 0 4710 693 0 4711 692 0 4712 698 0 4713 697 0 4714 950 0 4715 950 0 4716 697 0 4717 696 0 4718 950 0 4719 696 0 4720 695 0 4721 664 553 4722 663 553 4723 950 553 4724 950 747 4725 663 747 4726 662 747 4727 950 0 4728 662 0 4729 698 0 4730 673 0 4731 672 0 4732 950 0 4733 950 800 4734 672 800 4735 666 800 4736 950 803 4737 666 803 4738 664 803 4739 676 0 4740 675 0 4741 950 0 4742 950 749 4743 675 749 4744 674 749 4745 950 804 4746 674 804 4747 673 804 4748 679 0 4749 678 0 4750 950 0 4751 950 751 4752 678 751 4753 677 751 4754 950 752 4755 677 752 4756 676 752 4757 655 0 4758 654 0 4759 950 0 4760 950 805 4761 654 805 4762 653 805 4763 950 800 4764 653 800 4765 679 800 4766 670 0 4767 669 0 4768 950 0 4769 950 806 4770 669 806 4771 657 806 4772 950 807 4773 657 807 4774 655 807 4775 951 808 4776 952 808 4777 953 808 4778 953 809 4779 954 809 4780 951 809 4781 951 810 4782 954 810 4783 955 810 4784 951 811 4785 955 811 4786 956 811 4787 956 812 4788 955 812 4789 957 812 4790 957 813 4791 955 813 4792 958 813 4793 957 814 4794 958 814 4795 959 814 4796 959 815 4797 958 815 4798 960 815 4799 959 422 4800 960 422 4801 961 422 4802 961 816 4803 960 816 4804 962 816 4805 961 424 4806 962 424 4807 963 424 4808 482 425 4809 481 425 4810 964 425 4811 963 433 4812 962 433 4813 964 433 4814 964 817 4815 962 817 4816 965 817 4817 964 818 4818 965 818 4819 482 818 4820 482 352 4821 965 352 4822 966 352 4823 482 436 4824 966 436 4825 483 436 4826 483 437 4827 966 437 4828 967 437 4829 483 819 4830 967 819 4831 484 819 4832 967 452 4833 968 452 4834 484 452 4835 484 453 4836 968 453 4837 969 453 4838 484 454 4839 969 454 4840 485 454 4841 485 455 4842 969 455 4843 970 455 4844 485 820 4845 970 820 4846 492 820 4847 492 659 4848 970 659 4849 971 659 4850 492 660 4851 971 660 4852 493 660 4853 493 821 4854 971 821 4855 972 821 4856 493 822 4857 972 822 4858 494 822 4859 494 461 4860 972 461 4861 973 461 4862 494 462 4863 973 462 4864 486 462 4865 486 463 4866 973 463 4867 974 463 4868 486 463 4869 974 463 4870 479 463 4871 479 823 4872 974 823 4873 975 823 4874 479 771 4875 975 771 4876 480 771 4877 480 824 4878 975 824 4879 976 824 4880 480 825 4881 976 825 4882 495 825 4883 495 468 4884 976 468 4885 977 468 4886 495 714 4887 977 714 4888 496 714 4889 496 826 4890 977 826 4891 978 826 4892 496 471 4893 978 471 4894 497 471 4895 497 665 4896 978 665 4897 979 665 4898 497 665 4899 979 665 4900 498 665 4901 498 378 4902 979 378 4903 980 378 4904 498 631 4905 980 631 4906 499 631 4907 499 472 4908 980 472 4909 981 472 4910 499 827 4911 981 827 4912 500 827 4913 500 828 4914 981 828 4915 982 828 4916 500 475 4917 982 475 4918 501 475 4919 501 668 4920 982 668 4921 983 668 4922 501 384 4923 983 384 4924 502 384 4925 502 829 4926 983 829 4927 984 829 4928 502 718 4929 984 718 4930 503 718 4931 503 830 4932 984 830 4933 985 830 4934 503 831 4935 985 831 4936 504 831 4937 504 832 4938 985 832 4939 986 832 4940 504 833 4941 986 833 4942 505 833 4943 505 834 4944 986 834 4945 987 834 4946 505 835 4947 987 835 4948 488 835 4949 488 676 4950 987 676 4951 988 676 4952 488 677 4953 988 677 4954 489 677 4955 489 723 4956 988 723 4957 989 723 4958 489 836 4959 989 836 4960 490 836 4961 490 430 4962 989 430 4963 990 430 4964 490 837 4965 990 837 4966 491 837 4967 491 398 4968 990 398 4969 991 398 4970 491 680 4971 991 680 4972 512 680 4973 512 838 4974 991 838 4975 992 838 4976 512 443 4977 992 443 4978 513 443 4979 513 640 4980 992 640 4981 993 640 4982 513 402 4983 993 402 4984 507 402 4985 507 682 4986 993 682 4987 994 682 4988 507 682 4989 994 682 4990 508 682 4991 508 404 4992 994 404 4993 995 404 4994 508 683 4995 995 683 4996 474 683 4997 474 727 4998 995 727 4999 996 727 5000 474 445 5001 996 445 5002 475 445 5003 475 839 5004 996 839 5005 953 839 5006 475 839 5007 953 839 5008 477 839 5009 477 840 5010 953 840 5011 952 840 5012 477 841 5013 952 841 5014 478 841 5015 967 0 5016 966 0 5017 997 0 5018 967 0 5019 997 0 5020 968 0 5021 971 739 5022 970 739 5023 997 739 5024 997 842 5025 970 842 5026 969 842 5027 997 0 5028 969 0 5029 968 0 5030 974 557 5031 973 557 5032 997 557 5033 997 843 5034 973 843 5035 972 843 5036 997 844 5037 972 844 5038 971 844 5039 977 655 5040 976 655 5041 997 655 5042 997 845 5043 976 845 5044 975 845 5045 997 846 5046 975 846 5047 974 846 5048 980 0 5049 979 0 5050 997 0 5051 997 847 5052 979 847 5053 978 847 5054 997 0 5055 978 0 5056 977 0 5057 983 0 5058 982 0 5059 997 0 5060 997 848 5061 982 848 5062 981 848 5063 997 0 5064 981 0 5065 980 0 5066 986 0 5067 985 0 5068 997 0 5069 997 0 5070 985 0 5071 984 0 5072 997 0 5073 984 0 5074 983 0 5075 989 794 5076 988 794 5077 997 794 5078 997 849 5079 988 849 5080 987 849 5081 997 0 5082 987 0 5083 986 0 5084 992 0 5085 991 0 5086 997 0 5087 997 850 5088 991 850 5089 990 850 5090 997 803 5091 990 803 5092 989 803 5093 995 0 5094 994 0 5095 997 0 5096 997 695 5097 994 695 5098 993 695 5099 997 851 5100 993 851 5101 992 851 5102 954 0 5103 953 0 5104 997 0 5105 997 852 5106 953 852 5107 996 852 5108 997 853 5109 996 853 5110 995 853 5111 960 0 5112 958 0 5113 997 0 5114 997 805 5115 958 805 5116 955 805 5117 997 800 5118 955 800 5119 954 800 5120 966 0 5121 965 0 5122 997 0 5123 997 806 5124 965 806 5125 962 806 5126 997 807 5127 962 807 5128 960 807 5129 342 485 5130 998 485 5131 340 485 5132 340 485 5133 998 485 5134 620 485 5135 999 487 5136 125 487 5137 612 487 5138 612 487 5139 125 487 5140 123 487 5141 612 487 5142 123 487 5143 1000 487 5144 1001 854 5145 242 854 5146 904 854 5147 904 855 5148 242 855 5149 251 855 5150 916 856 5151 238 856 5152 1002 856 5153 1002 857 5154 238 857 5155 237 857 5156 1002 858 5157 237 858 5158 276 858 5159 1003 859 5160 58 859 5161 911 859 5162 911 860 5163 58 860 5164 60 860 5165 911 861 5166 60 861 5167 1004 861 5168 205 862 5169 661 862 5170 191 862 5171 191 863 5172 661 863 5173 1005 863 5174 191 864 5175 1005 864 5176 192 864 5177 659 865 5178 206 865 5179 182 865 5180 659 866 5181 182 866 5182 1006 866 5183 1006 867 5184 182 867 5185 184 867 5186 1006 868 5187 184 868 5188 223 868 5189 1007 869 5190 476 869 5191 952 869 5192 952 870 5193 476 870 5194 478 870 5195 964 871 5196 481 871 5197 172 871 5198 964 872 5199 172 872 5200 1008 872 5201 1008 873 5202 172 873 5203 174 873 5204 1008 874 5205 174 874 5206 185 874 5207 957 0 5208 1009 0 5209 956 0 5210 956 0 5211 1009 0 5212 951 0 5213 614 0 5214 617 0 5215 998 0 5216 998 875 5217 617 875 5218 619 875 5219 998 876 5220 619 876 5221 620 876 5222 952 0 5223 951 0 5224 1007 0 5225 1007 877 5226 951 877 5227 1009 877 5228 1007 878 5229 1009 878 5230 1010 878 5231 1010 0 5232 1009 0 5233 1011 0 5234 1010 879 5235 1011 879 5236 1012 879 5237 1012 0 5238 1011 0 5239 1013 0 5240 1012 0 5241 1013 0 5242 1014 0 5243 1014 0 5244 1013 0 5245 1015 0 5246 1014 0 5247 1015 0 5248 1016 0 5249 1016 0 5250 1015 0 5251 1017 0 5252 1016 0 5253 1017 0 5254 1018 0 5255 1018 0 5256 1017 0 5257 1019 0 5258 1018 0 5259 1019 0 5260 1020 0 5261 1020 0 5262 1019 0 5263 1021 0 5264 1020 0 5265 1021 0 5266 1022 0 5267 1022 0 5268 1021 0 5269 1023 0 5270 1022 0 5271 1023 0 5272 1024 0 5273 1024 0 5274 1023 0 5275 1025 0 5276 1024 880 5277 1025 880 5278 1026 880 5279 1026 881 5280 1025 881 5281 1027 881 5282 1026 0 5283 1027 0 5284 1028 0 5285 1028 0 5286 1027 0 5287 1029 0 5288 1028 0 5289 1029 0 5290 1030 0 5291 1030 882 5292 1029 882 5293 1031 882 5294 1030 0 5295 1031 0 5296 1032 0 5297 1032 883 5298 1031 883 5299 1033 883 5300 1032 0 5301 1033 0 5302 1034 0 5303 1034 884 5304 1033 884 5305 1035 884 5306 1034 0 5307 1035 0 5308 1036 0 5309 1036 0 5310 1035 0 5311 1037 0 5312 1036 0 5313 1037 0 5314 1038 0 5315 1038 0 5316 1037 0 5317 1039 0 5318 1038 885 5319 1039 885 5320 1040 885 5321 1040 886 5322 1039 886 5323 1041 886 5324 1040 0 5325 1041 0 5326 1042 0 5327 1042 0 5328 1041 0 5329 1043 0 5330 1042 0 5331 1043 0 5332 1044 0 5333 1044 0 5334 1043 0 5335 1045 0 5336 1044 887 5337 1045 887 5338 1046 887 5339 1046 888 5340 1045 888 5341 1047 888 5342 1046 889 5343 1047 889 5344 1048 889 5345 1048 0 5346 1047 0 5347 1049 0 5348 1048 0 5349 1049 0 5350 1050 0 5351 1050 0 5352 1049 0 5353 1051 0 5354 1050 0 5355 1051 0 5356 1052 0 5357 1052 0 5358 1051 0 5359 1053 0 5360 1052 0 5361 1053 0 5362 1054 0 5363 1054 0 5364 1053 0 5365 1055 0 5366 1054 890 5367 1055 890 5368 1056 890 5369 1056 0 5370 1055 0 5371 1057 0 5372 1056 891 5373 1057 891 5374 1058 891 5375 1058 0 5376 1057 0 5377 1059 0 5378 1058 0 5379 1059 0 5380 1060 0 5381 1060 0 5382 1059 0 5383 1061 0 5384 1060 892 5385 1061 892 5386 998 892 5387 998 0 5388 1061 0 5389 999 0 5390 998 0 5391 999 0 5392 614 0 5393 614 0 5394 999 0 5395 612 0 5396 916 0 5397 1002 0 5398 915 0 5399 915 0 5400 1002 0 5401 913 0 5402 1062 893 5403 609 893 5404 611 893 5405 609 0 5406 1062 0 5407 604 0 5408 604 0 5409 1062 0 5410 1063 0 5411 604 0 5412 1063 0 5413 605 0 5414 911 894 5415 913 894 5416 1003 894 5417 1003 0 5418 913 0 5419 1002 0 5420 1003 0 5421 1002 0 5422 1064 0 5423 1064 0 5424 1002 0 5425 1065 0 5426 1064 0 5427 1065 0 5428 1066 0 5429 1066 0 5430 1065 0 5431 1067 0 5432 1066 0 5433 1067 0 5434 1068 0 5435 1068 0 5436 1067 0 5437 1069 0 5438 1068 0 5439 1069 0 5440 1070 0 5441 1070 0 5442 1069 0 5443 1071 0 5444 1070 0 5445 1071 0 5446 1072 0 5447 1072 0 5448 1071 0 5449 1073 0 5450 1072 895 5451 1073 895 5452 1074 895 5453 1074 896 5454 1073 896 5455 1075 896 5456 1074 897 5457 1075 897 5458 1076 897 5459 1076 0 5460 1075 0 5461 1077 0 5462 1076 0 5463 1077 0 5464 1078 0 5465 1078 0 5466 1077 0 5467 1079 0 5468 1078 898 5469 1079 898 5470 1080 898 5471 1080 0 5472 1079 0 5473 1081 0 5474 1080 899 5475 1081 899 5476 1082 899 5477 1082 0 5478 1081 0 5479 1083 0 5480 1082 900 5481 1083 900 5482 1084 900 5483 1084 901 5484 1083 901 5485 1085 901 5486 1084 902 5487 1085 902 5488 1086 902 5489 1086 0 5490 1085 0 5491 1087 0 5492 1086 0 5493 1087 0 5494 1088 0 5495 1088 0 5496 1087 0 5497 1089 0 5498 1088 903 5499 1089 903 5500 1090 903 5501 1090 904 5502 1089 904 5503 1091 904 5504 1090 0 5505 1091 0 5506 1092 0 5507 1092 905 5508 1091 905 5509 1093 905 5510 1092 0 5511 1093 0 5512 1094 0 5513 1094 0 5514 1093 0 5515 1095 0 5516 1094 906 5517 1095 906 5518 1096 906 5519 1096 0 5520 1095 0 5521 1097 0 5522 1096 907 5523 1097 907 5524 1098 907 5525 1098 0 5526 1097 0 5527 1062 0 5528 1098 0 5529 1062 0 5530 1000 0 5531 1000 0 5532 1062 0 5533 611 0 5534 1000 908 5535 611 908 5536 612 908 5537 903 0 5538 908 0 5539 1004 0 5540 1004 909 5541 908 909 5542 910 909 5543 1004 910 5544 910 910 5545 911 910 5546 651 911 5547 656 911 5548 1006 911 5549 1006 912 5550 656 912 5551 658 912 5552 1006 913 5553 658 913 5554 659 913 5555 652 0 5556 651 0 5557 1099 0 5558 1099 914 5559 651 914 5560 1006 914 5561 1099 0 5562 1006 0 5563 1100 0 5564 1100 0 5565 1006 0 5566 1101 0 5567 1100 0 5568 1101 0 5569 1102 0 5570 1102 0 5571 1101 0 5572 1103 0 5573 1102 915 5574 1103 915 5575 1104 915 5576 1104 0 5577 1103 0 5578 1105 0 5579 1104 916 5580 1105 916 5581 1106 916 5582 1106 0 5583 1105 0 5584 1107 0 5585 1106 0 5586 1107 0 5587 1108 0 5588 1108 0 5589 1107 0 5590 1109 0 5591 1108 0 5592 1109 0 5593 1110 0 5594 1110 0 5595 1109 0 5596 1111 0 5597 1110 0 5598 1111 0 5599 1112 0 5600 1112 0 5601 1111 0 5602 1113 0 5603 1112 0 5604 1113 0 5605 1114 0 5606 1114 0 5607 1113 0 5608 1115 0 5609 1114 0 5610 1115 0 5611 1116 0 5612 1116 0 5613 1115 0 5614 1117 0 5615 1116 917 5616 1117 917 5617 1118 917 5618 1118 918 5619 1117 918 5620 1119 918 5621 1118 0 5622 1119 0 5623 1120 0 5624 1120 919 5625 1119 919 5626 1121 919 5627 1120 0 5628 1121 0 5629 1122 0 5630 1122 0 5631 1121 0 5632 1123 0 5633 1122 0 5634 1123 0 5635 1004 0 5636 1004 0 5637 1123 0 5638 1001 0 5639 1004 920 5640 1001 920 5641 903 920 5642 903 0 5643 1001 0 5644 904 0 5645 1124 921 5646 92 921 5647 957 921 5648 957 922 5649 92 922 5650 94 922 5651 957 923 5652 94 923 5653 1009 923 5654 1018 485 5655 1020 485 5656 511 485 5657 511 485 5658 1020 485 5659 515 485 5660 1018 924 5661 511 924 5662 510 924 5663 1018 925 5664 510 925 5665 1016 925 5666 1016 926 5667 510 926 5668 509 926 5669 1016 926 5670 509 926 5671 1014 926 5672 1014 927 5673 509 927 5674 514 927 5675 1014 928 5676 514 928 5677 1012 928 5678 1012 929 5679 514 929 5680 506 929 5681 1012 930 5682 506 930 5683 1010 930 5684 1010 931 5685 506 931 5686 476 931 5687 1010 932 5688 476 932 5689 1007 932 5690 1008 933 5691 185 933 5692 190 933 5693 1008 934 5694 190 934 5695 1125 934 5696 1125 935 5697 190 935 5698 189 935 5699 1125 936 5700 189 936 5701 1126 936 5702 1126 937 5703 189 937 5704 187 937 5705 1126 938 5706 187 938 5707 1127 938 5708 1127 939 5709 187 939 5710 186 939 5711 1127 940 5712 186 940 5713 1128 940 5714 1128 941 5715 186 941 5716 198 941 5717 1128 942 5718 198 942 5719 1129 942 5720 1129 943 5721 198 943 5722 197 943 5723 1129 943 5724 197 943 5725 1130 943 5726 1130 944 5727 197 944 5728 196 944 5729 1130 945 5730 196 945 5731 1131 945 5732 1131 946 5733 196 946 5734 195 946 5735 1131 947 5736 195 947 5737 1132 947 5738 1132 948 5739 195 948 5740 194 948 5741 1132 949 5742 194 949 5743 1133 949 5744 1133 950 5745 194 950 5746 192 950 5747 1133 951 5748 192 951 5749 1005 951 5750 1006 952 5751 223 952 5752 226 952 5753 1006 953 5754 226 953 5755 1101 953 5756 1101 954 5757 226 954 5758 225 954 5759 1101 955 5760 225 955 5761 1103 955 5762 1103 956 5763 225 956 5764 224 956 5765 1103 957 5766 224 957 5767 1105 957 5768 1105 958 5769 224 958 5770 233 958 5771 1105 959 5772 233 959 5773 1107 959 5774 1107 960 5775 233 960 5776 232 960 5777 1107 961 5778 232 961 5779 1109 961 5780 1109 962 5781 232 962 5782 231 962 5783 1109 963 5784 231 963 5785 1111 963 5786 1111 964 5787 231 964 5788 227 964 5789 1111 965 5790 227 965 5791 1113 965 5792 1113 966 5793 227 966 5794 229 966 5795 1113 967 5796 229 967 5797 1115 967 5798 1115 968 5799 229 968 5800 230 968 5801 1115 969 5802 230 969 5803 1117 969 5804 1117 970 5805 230 970 5806 236 970 5807 1117 971 5808 236 971 5809 1119 971 5810 1119 972 5811 236 972 5812 235 972 5813 1119 973 5814 235 973 5815 1121 973 5816 1121 974 5817 235 974 5818 1123 974 5819 1123 975 5820 235 975 5821 234 975 5822 234 976 5823 272 976 5824 1123 976 5825 1123 977 5826 272 977 5827 242 977 5828 1123 978 5829 242 978 5830 1001 978 5831 280 979 5832 1065 979 5833 275 979 5834 275 980 5835 1065 980 5836 1002 980 5837 275 981 5838 1002 981 5839 276 981 5840 1065 982 5841 280 982 5842 181 982 5843 1065 983 5844 181 983 5845 1067 983 5846 1067 984 5847 181 984 5848 179 984 5849 1067 985 5850 179 985 5851 178 985 5852 306 986 5853 1069 986 5854 278 986 5855 278 987 5856 1069 987 5857 1067 987 5858 278 988 5859 1067 988 5860 178 988 5861 1069 989 5862 306 989 5863 281 989 5864 1069 989 5865 281 989 5866 1071 989 5867 1071 990 5868 281 990 5869 176 990 5870 1071 991 5871 176 991 5872 1073 991 5873 176 992 5874 175 992 5875 1073 992 5876 1073 993 5877 175 993 5878 330 993 5879 1073 994 5880 330 994 5881 1075 994 5882 1075 995 5883 330 995 5884 329 995 5885 1075 996 5886 329 996 5887 1077 996 5888 1077 997 5889 329 997 5890 328 997 5891 1077 998 5892 328 998 5893 1079 998 5894 1079 999 5895 328 999 5896 324 999 5897 1079 1000 5898 324 1000 5899 1081 1000 5900 1081 1001 5901 324 1001 5902 326 1001 5903 1081 1002 5904 326 1002 5905 1083 1002 5906 1083 1003 5907 326 1003 5908 327 1003 5909 1083 1004 5910 327 1004 5911 1085 1004 5912 1085 1005 5913 327 1005 5914 323 1005 5915 1085 1005 5916 323 1005 5917 1087 1005 5918 1087 1006 5919 323 1006 5920 322 1006 5921 1087 1007 5922 322 1007 5923 1089 1007 5924 322 1008 5925 336 1008 5926 1089 1008 5927 1089 1009 5928 336 1009 5929 335 1009 5930 1089 1010 5931 335 1010 5932 1091 1010 5933 1091 1011 5934 335 1011 5935 334 1011 5936 1091 1012 5937 334 1012 5938 1093 1012 5939 1093 1013 5940 334 1013 5941 332 1013 5942 1093 1014 5943 332 1014 5944 1095 1014 5945 1095 1015 5946 332 1015 5947 331 1015 5948 1095 1016 5949 331 1016 5950 1097 1016 5951 331 1017 5952 339 1017 5953 1097 1017 5954 1097 1018 5955 339 1018 5956 338 1018 5957 1097 1019 5958 338 1019 5959 1062 1019 5960 1062 1020 5961 338 1020 5962 383 1020 5963 1062 1021 5964 383 1021 5965 1063 1021 5966 1063 485 5967 383 485 5968 605 485 5969 605 485 5970 383 485 5971 382 485 5972 998 1022 5973 342 1022 5974 1060 1022 5975 1060 1023 5976 342 1023 5977 365 1023 5978 1060 1024 5979 365 1024 5980 1058 1024 5981 1058 1025 5982 365 1025 5983 359 1025 5984 1058 1026 5985 359 1026 5986 1056 1026 5987 1056 1027 5988 359 1027 5989 358 1027 5990 1056 1028 5991 358 1028 5992 1054 1028 5993 1054 1029 5994 358 1029 5995 362 1029 5996 1054 1030 5997 362 1030 5998 1052 1030 5999 1052 1031 6000 362 1031 6001 364 1031 6002 1052 1032 6003 364 1032 6004 1050 1032 6005 1050 1033 6006 364 1033 6007 363 1033 6008 1050 1034 6009 363 1034 6010 1048 1034 6011 1048 1035 6012 363 1035 6013 361 1035 6014 1048 1036 6015 361 1036 6016 1046 1036 6017 1046 1037 6018 361 1037 6019 360 1037 6020 1046 1038 6021 360 1038 6022 1044 1038 6023 1044 1038 6024 360 1038 6025 370 1038 6026 1044 1039 6027 370 1039 6028 1042 1039 6029 1042 1040 6030 370 1040 6031 350 1040 6032 456 489 6033 1040 489 6034 352 489 6035 352 489 6036 1040 489 6037 1042 489 6038 352 489 6039 1042 489 6040 350 489 6041 1040 1041 6042 456 1041 6043 457 1041 6044 1040 1042 6045 457 1042 6046 1038 1042 6047 1038 1043 6048 457 1043 6049 440 1043 6050 1038 1044 6051 440 1044 6052 1036 1044 6053 1036 1045 6054 440 1045 6055 460 1045 6056 1036 1046 6057 460 1046 6058 1034 1046 6059 1034 1047 6060 460 1047 6061 459 1047 6062 1034 1048 6063 459 1048 6064 1032 1048 6065 1032 1049 6066 459 1049 6067 458 1049 6068 1032 1050 6069 458 1050 6070 1030 1050 6071 1030 1051 6072 458 1051 6073 443 1051 6074 1030 1052 6075 443 1052 6076 1028 1052 6077 1028 1053 6078 443 1053 6079 442 1053 6080 1028 1054 6081 442 1054 6082 1026 1054 6083 1026 1055 6084 442 1055 6085 426 1055 6086 1026 1056 6087 426 1056 6088 1024 1056 6089 1024 1057 6090 426 1057 6091 425 1057 6092 1024 1058 6093 425 1058 6094 1022 1058 6095 425 1059 6096 516 1059 6097 1022 1059 6098 1022 1060 6099 516 1060 6100 515 1060 6101 1022 1061 6102 515 1061 6103 1020 1061 6104 668 0 6105 1134 0 6106 667 0 6107 667 0 6108 1134 0 6109 665 0 6110 959 0 6111 961 0 6112 1008 0 6113 1008 1062 6114 961 1062 6115 963 1062 6116 1008 1063 6117 963 1063 6118 964 1063 6119 661 0 6120 660 0 6121 1005 0 6122 1005 0 6123 660 0 6124 1133 0 6125 957 0 6126 959 0 6127 1124 0 6128 1124 0 6129 959 0 6130 1008 0 6131 1124 0 6132 1008 0 6133 1135 0 6134 1135 1064 6135 1008 1064 6136 1125 1064 6137 1135 0 6138 1125 0 6139 1136 0 6140 1136 0 6141 1125 0 6142 1126 0 6143 1136 0 6144 1126 0 6145 1137 0 6146 1137 0 6147 1126 0 6148 1127 0 6149 1137 1065 6150 1127 1065 6151 1138 1065 6152 1138 0 6153 1127 0 6154 1128 0 6155 1138 0 6156 1128 0 6157 1139 0 6158 1139 1066 6159 1128 1066 6160 1129 1066 6161 1139 0 6162 1129 0 6163 1140 0 6164 1140 0 6165 1129 0 6166 1130 0 6167 1140 0 6168 1130 0 6169 1141 0 6170 1141 1067 6171 1130 1067 6172 1131 1067 6173 1141 0 6174 1131 0 6175 1142 0 6176 1142 0 6177 1131 0 6178 1132 0 6179 1142 1068 6180 1132 1068 6181 1143 1068 6182 1143 1069 6183 1132 1069 6184 1133 1069 6185 1143 0 6186 1133 0 6187 1134 0 6188 1134 1070 6189 1133 1070 6190 660 1070 6191 1134 0 6192 660 0 6193 665 0 6194 1021 487 6195 1019 487 6196 167 487 6197 167 487 6198 1019 487 6199 168 487 6200 1009 1071 6201 94 1071 6202 1011 1071 6203 1011 1071 6204 94 1071 6205 116 1071 6206 1011 1072 6207 116 1072 6208 1013 1072 6209 1013 1073 6210 116 1073 6211 118 1073 6212 1013 1074 6213 118 1074 6214 1015 1074 6215 1015 1075 6216 118 1075 6217 119 1075 6218 1015 1076 6219 119 1076 6220 1017 1076 6221 1017 1077 6222 119 1077 6223 121 1077 6224 1017 1078 6225 121 1078 6226 1019 1078 6227 1019 1079 6228 121 1079 6229 168 1079 6230 1134 1080 6231 104 1080 6232 1143 1080 6233 1143 1081 6234 104 1081 6235 103 1081 6236 1143 1082 6237 103 1082 6238 1142 1082 6239 1142 1083 6240 103 1083 6241 18 1083 6242 1142 1084 6243 18 1084 6244 1141 1084 6245 1141 1084 6246 18 1084 6247 78 1084 6248 1136 1093 6273 88 1093 6274 1135 1093 6275 1135 1094 6276 88 1094 6277 90 1094 6278 1135 1095 6279 90 1095 6280 1124 1095 6281 1124 1095 6282 90 1095 6283 92 1095 6284 1134 1096 6285 668 1096 6286 104 1096 6287 104 1097 6288 668 1097 6289 105 1097 6290 652 1098 6291 1099 1098 6292 112 1098 6293 112 922 6294 1099 922 6295 110 922 6296 1120 1099 6297 77 1099 6298 1118 1099 6299 1118 1100 6300 77 1100 6301 76 1100 6302 1118 1101 6303 76 1101 6304 1116 1101 6305 1116 1102 6306 76 1102 6307 74 1102 6308 1116 1103 6309 74 1103 6310 1114 1103 6311 1114 1104 6312 74 1104 6313 72 1104 6314 1114 1105 6315 72 1105 6316 1112 1105 6317 1112 1105 6318 72 1105 6319 70 1105 6320 1102 1116 6351 25 1116 6352 1100 1116 6353 1100 1117 6354 25 1117 6355 108 1117 6356 1100 1118 6357 108 1118 6358 1099 1118 6359 1099 1119 6360 108 1119 6361 110 1119 6362 1004 1120 6363 60 1120 6364 1122 1120 6365 1122 1120 6366 60 1120 6367 62 1120 6368 1122 1121 6369 62 1121 6370 1120 1121 6371 1120 1122 6372 62 1122 6373 77 1122 6374 1003 1123 6375 1064 1123 6376 58 1123 6377 58 1124 6378 1064 1124 6379 28 1124 6380 1064 1125 6381 1066 1125 6382 28 1125 6383 28 1126 6384 1066 1126 6385 102 1126 6386 1066 1127 6387 1068 1127 6388 102 1127 6389 102 1128 6390 1068 1128 6391 101 1128 6392 1082 1129 6393 54 1129 6394 1080 1129 6395 1080 1130 6396 54 1130 6397 44 1130 6398 1080 1131 6399 44 1131 6400 1078 1131 6401 1078 1132 6402 44 1132 6403 42 1132 6404 1070 1140 6426 99 1140 6427 1068 1140 6428 1068 1141 6429 99 1141 6430 101 1141 6431 1000 1142 6432 123 1142 6433 1098 1142 6434 1098 1143 6435 123 1143 6436 39 1143 6437 1098 1144 6438 39 1144 6439 1096 1144 6440 1096 1145 6441 39 1145 6442 37 1145 6443 1096 1146 6444 37 1146 6445 1094 1146 6446 1094 1147 6447 37 1147 6448 35 1147 6449 1094 1148 6450 35 1148 6451 1092 1148 6452 1092 1149 6453 35 1149 6454 20 1149 6455 1092 1150 6456 20 1150 6457 1090 1150 6458 1090 1151 6459 20 1151 6460 19 1151 6461 1090 1152 6462 19 1152 6463 1088 1152 6464 1088 1153 6465 19 1153 6466 49 1153 6467 1088 1154 6468 49 1154 6469 1086 1154 6470 1086 1155 6471 49 1155 6472 51 1155 6473 1086 1156 6474 51 1156 6475 1084 1156 6476 1084 1157 6477 51 1157 6478 53 1157 6479 1084 1158 6480 53 1158 6481 1082 1158 6482 1082 1159 6483 53 1159 6484 54 1159 6485 1043 1160 6486 145 1160 6487 143 1160 6488 1043 1161 6489 143 1161 6490 1045 1161 6491 1045 1162 6492 143 1162 6493 141 1162 6494 1045 1163 6495 141 1163 6496 1047 1163 6497 1047 1164 6498 141 1164 6499 139 1164 6500 1047 1165 6501 139 1165 6502 1049 1165 6503 1049 1166 6504 139 1166 6505 137 1166 6506 1049 1167 6507 137 1167 6508 1051 1167 6509 1051 1168 6510 137 1168 6511 135 1168 6512 1051 1169 6513 135 1169 6514 1053 1169 6515 1053 1170 6516 135 1170 6517 133 1170 6518 1053 1171 6519 133 1171 6520 1055 1171 6521 1055 1172 6522 133 1172 6523 131 1172 6524 1055 1172 6525 131 1172 6526 1057 1172 6527 1057 1173 6528 131 1173 6529 129 1173 6530 1057 1174 6531 129 1174 6532 1059 1174 6533 1059 1175 6534 129 1175 6535 127 1175 6536 1059 1176 6537 127 1176 6538 1061 1176 6539 1061 1177 6540 127 1177 6541 125 1177 6542 1061 1178 6543 125 1178 6544 999 1178 6545 1043 486 6546 1041 486 6547 145 486 6548 1041 1179 6549 1614 1179 6550 1630 1179 6551 1021 1180 6552 167 1180 6553 1023 1180 6554 1023 1181 6555 167 1181 6556 165 1181 6557 1033 1192 6588 155 1192 6589 1035 1192 6590 1035 1193 6591 155 1193 6592 153 1193 6593 1035 1194 6594 153 1194 6595 1037 1194 6596 1037 1195 6597 153 1195 6598 151 1195 6599 1037 1196 6600 151 1196 6601 1039 1196 6602 1039 1197 6603 151 1197 6604 149 1197 6605 1039 1198 6606 149 1198 6607 1041 1198 6608 1041 1199 6609 149 1199 6610 147 1199 6611 1144 0 6612 1145 0 6613 1146 0 6614 1146 0 6615 1145 0 6616 1147 0 6617 1146 0 6618 1147 0 6619 1148 0 6620 1148 0 6621 1147 0 6622 1149 0 6623 1148 0 6624 1149 0 6625 1150 0 6626 1150 0 6627 1149 0 6628 1151 0 6629 1150 0 6630 1151 0 6631 1152 0 6632 1152 0 6633 1151 0 6634 1153 0 6635 1152 0 6636 1153 0 6637 1154 0 6638 1154 1200 6639 1153 1200 6640 1155 1200 6641 1154 1201 6642 1155 1201 6643 1156 1201 6644 1156 0 6645 1155 0 6646 1157 0 6647 1156 0 6648 1157 0 6649 1158 0 6650 1158 0 6651 1157 0 6652 1159 0 6653 1158 1202 6654 1159 1202 6655 1160 1202 6656 1160 0 6657 1159 0 6658 1161 0 6659 1160 0 6660 1161 0 6661 1162 0 6662 1162 0 6663 1161 0 6664 1163 0 6665 1162 1203 6666 1163 1203 6667 1164 1203 6668 1164 1204 6669 1163 1204 6670 1165 1204 6671 1164 1205 6672 1165 1205 6673 1166 1205 6674 1166 0 6675 1165 0 6676 1167 0 6677 1166 1206 6678 1167 1206 6679 1168 1206 6680 1168 0 6681 1167 0 6682 1169 0 6683 1168 1203 6684 1169 1203 6685 1170 1203 6686 1170 0 6687 1169 0 6688 1171 0 6689 1170 1207 6690 1171 1207 6691 1172 1207 6692 1172 1208 6693 1171 1208 6694 1173 1208 6695 1172 0 6696 1173 0 6697 1174 0 6698 1174 1209 6699 1173 1209 6700 1175 1209 6701 1174 1210 6702 1175 1210 6703 1144 1210 6704 1144 0 6705 1175 0 6706 1145 0 6707 1159 1211 6708 1157 1211 6709 30 1211 6710 30 1212 6711 1157 1212 6712 59 1212 6713 1161 1213 6714 1159 1213 6715 10 1213 6716 10 1214 6717 1159 1214 6718 30 1214 6719 1163 1215 6720 1161 1215 6721 111 1215 6722 111 1216 6723 1161 1216 6724 10 1216 6725 1163 1217 6726 111 1217 6727 109 1217 6728 1163 1218 6729 109 1218 6730 1165 1218 6731 1165 1219 6732 109 1219 6733 107 1219 6734 1165 1220 6735 107 1220 6736 1167 1220 6737 1167 1221 6738 107 1221 6739 106 1221 6740 1167 1222 6741 106 1222 6742 1169 1222 6743 1169 1223 6744 106 1223 6745 27 1223 6746 1169 1224 6747 27 1224 6748 1171 1224 6749 1171 1225 6750 27 1225 6751 63 1225 6752 1171 1226 6753 63 1226 6754 1173 1226 6755 1173 1227 6756 63 1227 6757 65 1227 6758 1173 1228 6759 65 1228 6760 1175 1228 6761 1175 1229 6762 65 1229 6763 67 1229 6764 1175 1230 6765 67 1230 6766 1145 1230 6767 1145 1231 6768 67 1231 6769 69 1231 6770 1145 1232 6771 69 1232 6772 1147 1232 6773 1147 1233 6774 69 1233 6775 71 1233 6776 1147 1234 6777 71 1234 6778 1149 1234 6779 1149 1235 6780 71 1235 6781 73 1235 6782 1149 1236 6783 73 1236 6784 1151 1236 6785 1151 1237 6786 73 1237 6787 75 1237 6788 1151 1238 6789 75 1238 6790 1153 1238 6791 1153 1239 6792 75 1239 6793 61 1239 6794 1153 1240 6795 61 1240 6796 1155 1240 6797 1157 1241 6798 1155 1241 6799 59 1241 6800 59 1242 6801 1155 1242 6802 61 1242 6803 1156 1128 6804 1158 1128 6805 1176 1128 6806 1176 1243 6807 1158 1243 6808 1177 1243 6809 1158 1244 6810 1160 1244 6811 1177 1244 6812 1177 1245 6813 1160 1245 6814 1178 1245 6815 1160 1246 6816 1162 1246 6817 1178 1246 6818 1178 1247 6819 1162 1247 6820 1179 1247 6821 1154 1248 6822 1180 1248 6823 1152 1248 6824 1152 1249 6825 1180 1249 6826 1181 1249 6827 1152 1250 6828 1181 1250 6829 1150 1250 6830 1150 1251 6831 1181 1251 6832 1182 1251 6833 1150 1252 6834 1182 1252 6835 1148 1252 6836 1148 1253 6837 1182 1253 6838 1183 1253 6839 1148 1254 6840 1183 1254 6841 1146 1254 6842 1146 1255 6843 1183 1255 6844 1184 1255 6845 1146 1256 6846 1184 1256 6847 1144 1256 6848 1144 1257 6849 1184 1257 6850 1185 1257 6851 1144 1258 6852 1185 1258 6853 1174 1258 6854 1174 1259 6855 1185 1259 6856 1186 1259 6857 1174 1260 6858 1186 1260 6859 1172 1260 6860 1172 1260 6861 1186 1260 6862 1187 1260 6863 1172 1261 6864 1187 1261 6865 1170 1261 6866 1170 1262 6867 1187 1262 6868 1188 1262 6869 1170 1263 6870 1188 1263 6871 1168 1263 6872 1168 1264 6873 1188 1264 6874 1189 1264 6875 1168 1265 6876 1189 1265 6877 1166 1265 6878 1166 1266 6879 1189 1266 6880 1190 1266 6881 1166 1267 6882 1190 1267 6883 1164 1267 6884 1164 1268 6885 1190 1268 6886 1191 1268 6887 1164 1269 6888 1191 1269 6889 1162 1269 6890 1162 1270 6891 1191 1270 6892 1179 1270 6893 1154 1125 6894 1156 1125 6895 1180 1125 6896 1180 1271 6897 1156 1271 6898 1176 1271 6899 1192 0 6900 1193 0 6901 1194 0 6902 1192 0 6903 1194 0 6904 1195 0 6905 1196 739 6906 1197 739 6907 1194 739 6908 1194 740 6909 1197 740 6910 1198 740 6911 1194 0 6912 1198 0 6913 1195 0 6914 1199 557 6915 1200 557 6916 1194 557 6917 1194 1272 6918 1200 1272 6919 1201 1272 6920 1194 791 6921 1201 791 6922 1196 791 6923 1202 1273 6924 1203 1273 6925 1194 1273 6926 1194 1274 6927 1203 1274 6928 1204 1274 6929 1194 801 6930 1204 801 6931 1199 801 6932 1205 0 6933 1206 0 6934 1194 0 6935 1194 744 6936 1206 744 6937 1207 744 6938 1194 0 6939 1207 0 6940 1202 0 6941 1208 0 6942 1209 0 6943 1194 0 6944 1194 802 6945 1209 802 6946 1210 802 6947 1194 0 6948 1210 0 6949 1205 0 6950 1211 0 6951 1212 0 6952 1194 0 6953 1194 0 6954 1212 0 6955 1213 0 6956 1194 0 6957 1213 0 6958 1208 0 6959 1214 794 6960 1215 794 6961 1194 794 6962 1194 747 6963 1215 747 6964 1216 747 6965 1194 0 6966 1216 0 6967 1211 0 6968 1217 0 6969 1218 0 6970 1194 0 6971 1194 800 6972 1218 800 6973 1219 800 6974 1194 796 6975 1219 796 6976 1214 796 6977 1220 0 6978 1221 0 6979 1194 0 6980 1194 749 6981 1221 749 6982 1222 749 6983 1194 750 6984 1222 750 6985 1217 750 6986 1223 0 6987 1224 0 6988 1194 0 6989 1194 799 6990 1224 799 6991 1225 799 6992 1194 752 6993 1225 752 6994 1220 752 6995 1226 0 6996 1227 0 6997 1194 0 6998 1194 1275 6999 1227 1275 7000 1228 1275 7001 1194 800 7002 1228 800 7003 1223 800 7004 1193 0 7005 1229 0 7006 1194 0 7007 1194 755 7008 1229 755 7009 1230 755 7010 1194 756 7011 1230 756 7012 1226 756 7013 1192 789 7014 1195 789 7015 1231 789 7016 1231 790 7017 1195 790 7018 1198 790 7019 1231 1276 7020 1198 1276 7021 1232 1276 7022 1232 455 7023 1198 455 7024 1197 455 7025 1232 707 7026 1197 707 7027 1233 707 7028 1233 1277 7029 1197 1277 7030 1196 1277 7031 1233 458 7032 1196 458 7033 1234 458 7034 1234 766 7035 1196 766 7036 1201 766 7037 1234 1278 7038 1201 1278 7039 1235 1278 7040 1235 461 7041 1201 461 7042 1200 461 7043 1235 462 7044 1200 462 7045 1236 462 7046 1236 770 7047 1200 770 7048 1199 770 7049 1236 710 7050 1199 710 7051 1237 710 7052 1237 464 7053 1199 464 7054 1204 464 7055 1237 711 7056 1204 711 7057 1238 711 7058 1238 466 7059 1204 466 7060 1203 466 7061 1238 1279 7062 1203 1279 7063 1239 1279 7064 1239 468 7065 1203 468 7066 1202 468 7067 1239 714 7068 1202 714 7069 1240 714 7070 1240 773 7071 1202 773 7072 1207 773 7073 1240 715 7074 1207 715 7075 1241 715 7076 1241 510 7077 1207 510 7078 1206 510 7079 1241 511 7080 1206 511 7081 1242 511 7082 1242 378 7083 1206 378 7084 1205 378 7085 1242 379 7086 1205 379 7087 1243 379 7088 1243 1280 7089 1205 1280 7090 1210 1280 7091 1243 1281 7092 1210 1281 7093 1244 1281 7094 1244 1282 7095 1210 1282 7096 1209 1282 7097 1244 1283 7098 1209 1283 7099 1245 1283 7100 1245 580 7101 1209 580 7102 1208 580 7103 1245 515 7104 1208 515 7105 1246 515 7106 1246 718 7107 1208 718 7108 1213 718 7109 1246 718 7110 1213 718 7111 1247 718 7112 1247 477 7113 1213 477 7114 1212 477 7115 1247 478 7116 1212 478 7117 1248 478 7118 1248 758 7119 1212 758 7120 1211 758 7121 1248 1284 7122 1211 1284 7123 1249 1284 7124 1249 1285 7125 1211 1285 7126 1216 1285 7127 1249 1286 7128 1216 1286 7129 1250 1286 7130 1250 392 7131 1216 392 7132 1215 392 7133 1250 393 7134 1215 393 7135 1251 393 7136 1251 723 7137 1215 723 7138 1214 723 7139 1251 723 7140 1214 723 7141 1252 723 7142 1252 724 7143 1214 724 7144 1219 724 7145 1252 1287 7146 1219 1287 7147 1253 1287 7148 1253 524 7149 1219 524 7150 1218 524 7151 1253 1288 7152 1218 1288 7153 1254 1288 7154 1254 1289 7155 1218 1289 7156 1217 1289 7157 1254 1290 7158 1217 1290 7159 1255 1290 7160 1255 401 7161 1217 401 7162 1222 401 7163 1255 402 7164 1222 402 7165 1256 402 7166 1256 526 7167 1222 526 7168 1221 526 7169 1256 527 7170 1221 527 7171 1257 527 7172 1257 528 7173 1221 528 7174 1220 528 7175 1257 528 7176 1220 528 7177 1258 528 7178 1258 727 7179 1220 727 7180 1225 727 7181 1258 445 7182 1225 445 7183 1259 445 7184 1259 729 7185 1225 729 7186 1224 729 7187 1259 446 7188 1224 446 7189 1260 446 7190 1260 730 7191 1224 730 7192 1223 730 7193 1260 448 7194 1223 448 7195 1261 448 7196 1261 731 7197 1223 731 7198 1228 731 7199 1261 784 7200 1228 784 7201 1262 784 7202 1262 420 7203 1228 420 7204 1227 420 7205 1262 1291 7206 1227 1291 7207 1263 1291 7208 1263 734 7209 1227 734 7210 1226 734 7211 1263 421 7212 1226 421 7213 1264 421 7214 1264 1292 7215 1226 1292 7216 1230 1292 7217 1264 1292 7218 1230 1292 7219 1265 1292 7220 1265 538 7221 1230 538 7222 1229 538 7223 1265 690 7224 1229 690 7225 1266 690 7226 1266 1293 7227 1229 1293 7228 1193 1293 7229 1266 595 7230 1193 595 7231 1267 595 7232 1267 788 7233 1193 788 7234 1192 788 7235 1267 438 7236 1192 438 7237 1231 438 7238 1268 1331 7398 93 1331 7399 91 1331 7400 1268 1332 7401 91 1332 7402 1269 1332 7403 1269 1333 7404 91 1333 7405 89 1333 7406 1269 1334 7407 89 1334 7408 1270 1334 7409 1270 1335 7410 89 1335 7411 87 1335 7412 1270 1336 7413 87 1336 7414 1271 1336 7415 1271 1337 7416 87 1337 7417 85 1337 7418 1271 1338 7419 85 1338 7420 1272 1338 7421 1272 1339 7422 85 1339 7423 83 1339 7424 1272 1340 7425 83 1340 7426 1273 1340 7427 1273 1341 7428 83 1341 7429 81 1341 7430 1273 1342 7431 81 1342 7432 1274 1342 7433 1274 1343 7434 81 1343 7435 79 1343 7436 1274 1344 7437 79 1344 7438 1275 1344 7439 1275 1345 7440 79 1345 7441 17 1345 7442 1275 1346 7443 17 1346 7444 1276 1346 7445 1276 1347 7446 17 1347 7447 16 1347 7448 1276 1348 7449 16 1348 7450 1277 1348 7451 1277 1349 7452 16 1349 7453 32 1349 7454 1277 1350 7455 32 1350 7456 1278 1350 7457 1279 1351 7458 1278 1351 7459 31 1351 7460 31 1352 7461 1278 1352 7462 32 1352 7463 1280 1353 7464 1279 1353 7465 29 1353 7466 29 1353 7467 1279 1353 7468 31 1353 7469 1281 1354 7470 1280 1354 7471 100 1354 7472 100 1355 7473 1280 1355 7474 29 1355 7475 1281 1356 7476 100 1356 7477 98 1356 7478 1281 1356 7479 98 1356 7480 1282 1356 7481 1282 1357 7482 98 1357 7483 97 1357 7484 1282 1358 7485 97 1358 7486 1283 1358 7487 1283 1359 7488 97 1359 7489 24 1359 7490 1283 1360 7491 24 1360 7492 1284 1360 7493 1284 1361 7494 24 1361 7495 57 1361 7496 1284 1361 7497 57 1361 7498 1285 1361 7499 1285 1362 7500 57 1362 7501 56 1362 7502 1285 1363 7503 56 1363 7504 1286 1363 7505 1286 1364 7506 56 1364 7507 55 1364 7508 1286 1364 7509 55 1364 7510 1287 1364 7511 1287 1365 7512 55 1365 7513 43 1365 7514 1287 1366 7515 43 1366 7516 1288 1366 7517 1288 1367 7518 43 1367 7519 46 1367 7520 1288 1367 7521 46 1367 7522 1289 1367 7523 1290 489 7524 1289 489 7525 45 489 7526 45 489 7527 1289 489 7528 46 489 7529 1290 1368 7530 45 1368 7531 52 1368 7532 1290 1369 7533 52 1369 7534 1291 1369 7535 1291 1370 7536 52 1370 7537 50 1370 7538 1291 1371 7539 50 1371 7540 1292 1371 7541 1292 1372 7542 50 1372 7543 48 1372 7544 1292 1373 7545 48 1373 7546 1293 1373 7547 1293 1374 7548 48 1374 7549 47 1374 7550 1293 1375 7551 47 1375 7552 1294 1375 7553 1294 1376 7554 47 1376 7555 21 1376 7556 1294 1377 7557 21 1377 7558 1295 1377 7559 1295 1378 7560 21 1378 7561 34 1378 7562 1295 1379 7563 34 1379 7564 1296 1379 7565 1296 1380 7566 34 1380 7567 36 1380 7568 1296 1381 7569 36 1381 7570 1297 1381 7571 1297 1382 7572 36 1382 7573 38 1382 7574 1297 1383 7575 38 1383 7576 1298 1383 7577 1298 1384 7578 38 1384 7579 40 1384 7580 1298 1385 7581 40 1385 7582 1299 1385 7583 1299 1386 7584 40 1386 7585 122 1386 7586 1299 1387 7587 122 1387 7588 1300 1387 7589 1301 485 7590 1300 485 7591 124 485 7592 124 485 7593 1300 485 7594 122 485 7595 1301 1388 7596 124 1388 7597 1302 1388 7598 1302 1389 7599 124 1389 7600 126 1389 7601 1302 1390 7602 126 1390 7603 1303 1390 7604 1303 1391 7605 126 1391 7606 128 1391 7607 1303 1392 7608 128 1392 7609 1304 1392 7610 1304 1393 7611 128 1393 7612 130 1393 7613 1304 1394 7614 130 1394 7615 1305 1394 7616 1305 1394 7617 130 1394 7618 132 1394 7619 1305 1395 7620 132 1395 7621 1306 1395 7622 1306 1396 7623 132 1396 7624 134 1396 7625 1306 1397 7626 134 1397 7627 1307 1397 7628 1307 1398 7629 134 1398 7630 136 1398 7631 1307 1399 7632 136 1399 7633 1308 1399 7634 1308 1399 7635 136 1399 7636 138 1399 7637 1308 1400 7638 138 1400 7639 1309 1400 7640 1309 1401 7641 138 1401 7642 140 1401 7643 1309 1402 7644 140 1402 7645 1310 1402 7646 1310 1403 7647 140 1403 7648 142 1403 7649 1310 1404 7650 142 1404 7651 1311 1404 7652 1311 1405 7653 142 1405 7654 144 1405 7655 1312 489 7656 1311 489 7657 146 489 7658 1311 1406 7659 1615 1406 7660 1624 1406 7661 1312 1407 7662 146 1407 7663 148 1407 7664 1312 1408 7665 148 1408 7666 1313 1408 7667 1313 1409 7668 148 1409 7669 150 1409 7670 1313 1410 7671 150 1410 7672 1314 1410 7673 1314 1411 7674 150 1411 7675 152 1411 7676 1314 1412 7677 152 1412 7678 1315 1412 7679 1315 1413 7680 152 1413 7681 154 1413 7682 1315 1414 7683 154 1414 7684 1316 1414 7685 1316 1415 7686 154 1415 7687 156 1415 7688 1316 1416 7689 156 1416 7690 1317 1416 7691 1317 1378 7692 156 1378 7693 158 1378 7694 1317 1417 7695 158 1417 7696 1318 1417 7697 1318 1418 7698 158 1418 7699 160 1418 7700 1318 1419 7701 160 1419 7702 1319 1419 7703 1319 1420 7704 160 1420 7705 162 1420 7706 1319 1383 7707 162 1383 7708 1320 1383 7709 1320 1421 7710 162 1421 7711 164 1421 7712 1320 1422 7713 164 1422 7714 1321 1422 7715 1321 1423 7716 164 1423 7717 166 1423 7718 1321 1424 7719 166 1424 7720 1322 1424 7721 1323 485 7722 1322 485 7723 120 485 7724 120 485 7725 1322 485 7726 166 485 7727 1323 1425 7728 120 1425 7729 117 1425 7730 1323 1426 7731 117 1426 7732 1324 1426 7733 1324 1427 7734 117 1427 7735 115 1427 7736 1324 1428 7737 115 1428 7738 1325 1428 7739 1325 1429 7740 115 1429 7741 114 1429 7742 1325 1430 7743 114 1430 7744 1326 1430 7745 1326 1431 7746 114 1431 7747 96 1431 7748 1326 1432 7749 96 1432 7750 1327 1432 7751 1327 1433 7752 96 1433 7753 95 1433 7754 1327 1434 7755 95 1434 7756 1328 1434 7757 1268 868 7758 1328 868 7759 93 868 7760 93 1435 7761 1328 1435 7762 95 1435 7763 1329 0 7764 1323 0 7765 1330 0 7766 1330 1436 7767 1323 1436 7768 1324 1436 7769 1330 0 7770 1324 0 7771 1331 0 7772 1331 0 7773 1324 0 7774 1325 0 7775 1331 0 7776 1325 0 7777 1332 0 7778 1332 0 7779 1325 0 7780 1326 0 7781 1332 0 7782 1326 0 7783 1333 0 7784 1333 0 7785 1326 0 7786 1327 0 7787 1333 0 7788 1327 0 7789 1334 0 7790 1334 1437 7791 1327 1437 7792 1328 1437 7793 1334 1438 7794 1328 1438 7795 1335 1438 7796 1335 1439 7797 1328 1439 7798 1268 1439 7799 1335 1440 7800 1268 1440 7801 1336 1440 7802 1336 1441 7803 1268 1441 7804 1269 1441 7805 1336 1442 7806 1269 1442 7807 1337 1442 7808 1337 0 7809 1269 0 7810 1270 0 7811 1337 1443 7812 1270 1443 7813 1338 1443 7814 1338 1444 7815 1270 1444 7816 1271 1444 7817 1338 0 7818 1271 0 7819 1339 0 7820 1339 0 7821 1271 0 7822 1272 0 7823 1339 1445 7824 1272 1445 7825 1340 1445 7826 1340 1446 7827 1272 1446 7828 1273 1446 7829 1340 0 7830 1273 0 7831 1341 0 7832 1341 1447 7833 1273 1447 7834 1274 1447 7835 1341 0 7836 1274 0 7837 1342 0 7838 1342 1448 7839 1274 1448 7840 1275 1448 7841 1342 0 7842 1275 0 7843 1343 0 7844 1343 0 7845 1275 0 7846 1276 0 7847 1343 0 7848 1276 0 7849 1344 0 7850 1344 1449 7851 1276 1449 7852 1277 1449 7853 1344 1450 7854 1277 1450 7855 1345 1450 7856 1345 1437 7857 1277 1437 7858 1278 1437 7859 1345 0 7860 1278 0 7861 1346 0 7862 1346 1451 7863 1278 1451 7864 1279 1451 7865 1346 0 7866 1279 0 7867 1347 0 7868 1347 0 7869 1279 0 7870 1280 0 7871 1347 0 7872 1280 0 7873 1348 0 7874 1348 0 7875 1280 0 7876 1281 0 7877 1348 1452 7878 1281 1452 7879 1349 1452 7880 1349 0 7881 1281 0 7882 1282 0 7883 1349 0 7884 1282 0 7885 1350 0 7886 1350 1453 7887 1282 1453 7888 1283 1453 7889 1350 1454 7890 1283 1454 7891 1351 1454 7892 1351 0 7893 1283 0 7894 1284 0 7895 1351 1455 7896 1284 1455 7897 1352 1455 7898 1352 0 7899 1284 0 7900 1285 0 7901 1352 1455 7902 1285 1455 7903 1353 1455 7904 1353 1456 7905 1285 1456 7906 1286 1456 7907 1353 1457 7908 1286 1457 7909 1354 1457 7910 1354 0 7911 1286 0 7912 1287 0 7913 1354 0 7914 1287 0 7915 1355 0 7916 1355 0 7917 1287 0 7918 1288 0 7919 1355 0 7920 1288 0 7921 1356 0 7922 1356 1458 7923 1288 1458 7924 1289 1458 7925 1356 0 7926 1289 0 7927 1357 0 7928 1357 0 7929 1289 0 7930 1290 0 7931 1357 0 7932 1290 0 7933 1358 0 7934 1358 0 7935 1290 0 7936 1291 0 7937 1358 0 7938 1291 0 7939 1359 0 7940 1359 1459 7941 1291 1459 7942 1292 1459 7943 1359 0 7944 1292 0 7945 1360 0 7946 1360 0 7947 1292 0 7948 1293 0 7949 1360 0 7950 1293 0 7951 1361 0 7952 1361 0 7953 1293 0 7954 1294 0 7955 1361 0 7956 1294 0 7957 1362 0 7958 1362 0 7959 1294 0 7960 1295 0 7961 1362 0 7962 1295 0 7963 1363 0 7964 1363 0 7965 1295 0 7966 1296 0 7967 1363 0 7968 1296 0 7969 1364 0 7970 1364 0 7971 1296 0 7972 1297 0 7973 1364 0 7974 1297 0 7975 1365 0 7976 1365 0 7977 1297 0 7978 1298 0 7979 1365 0 7980 1298 0 7981 1366 0 7982 1366 0 7983 1298 0 7984 1299 0 7985 1366 0 7986 1299 0 7987 1367 0 7988 1367 0 7989 1299 0 7990 1300 0 7991 1367 0 7992 1300 0 7993 1368 0 7994 1368 0 7995 1300 0 7996 1301 0 7997 1368 0 7998 1301 0 7999 1369 0 8000 1369 1460 8001 1301 1460 8002 1302 1460 8003 1369 1461 8004 1302 1461 8005 1370 1461 8006 1370 1462 8007 1302 1462 8008 1303 1462 8009 1370 881 8010 1303 881 8011 1371 881 8012 1371 0 8013 1303 0 8014 1304 0 8015 1371 0 8016 1304 0 8017 1372 0 8018 1372 0 8019 1304 0 8020 1305 0 8021 1372 0 8022 1305 0 8023 1373 0 8024 1373 0 8025 1305 0 8026 1306 0 8027 1373 0 8028 1306 0 8029 1374 0 8030 1374 1463 8031 1306 1463 8032 1307 1463 8033 1374 0 8034 1307 0 8035 1375 0 8036 1375 0 8037 1307 0 8038 1308 0 8039 1375 0 8040 1308 0 8041 1376 0 8042 1376 0 8043 1308 0 8044 1309 0 8045 1376 0 8046 1309 0 8047 1377 0 8048 1377 1464 8049 1309 1464 8050 1310 1464 8051 1377 1442 8052 1310 1442 8053 1378 1442 8054 1378 1465 8055 1310 1465 8056 1311 1465 8057 1378 0 8058 1311 0 8059 1379 0 8060 1379 0 8061 1311 0 8062 1312 0 8063 1379 1466 8064 1312 1466 8065 1380 1466 8066 1380 1467 8067 1312 1467 8068 1313 1467 8069 1380 1468 8070 1313 1468 8071 1381 1468 8072 1381 1467 8073 1313 1467 8074 1314 1467 8075 1381 0 8076 1314 0 8077 1382 0 8078 1382 0 8079 1314 0 8080 1315 0 8081 1382 0 8082 1315 0 8083 1383 0 8084 1383 1469 8085 1315 1469 8086 1316 1469 8087 1383 883 8088 1316 883 8089 1384 883 8090 1384 1470 8091 1316 1470 8092 1317 1470 8093 1384 0 8094 1317 0 8095 1385 0 8096 1385 0 8097 1317 0 8098 1318 0 8099 1385 0 8100 1318 0 8101 1386 0 8102 1386 1471 8103 1318 1471 8104 1319 1471 8105 1386 0 8106 1319 0 8107 1387 0 8108 1387 0 8109 1319 0 8110 1320 0 8111 1387 0 8112 1320 0 8113 1388 0 8114 1388 0 8115 1320 0 8116 1321 0 8117 1388 0 8118 1321 0 8119 1389 0 8120 1389 0 8121 1321 0 8122 1322 0 8123 1389 0 8124 1322 0 8125 1329 0 8126 1329 0 8127 1322 0 8128 1323 0 8129 1345 1472 8130 1390 1472 8131 1344 1472 8132 1344 1473 8133 1390 1473 8134 1391 1473 8135 1344 1474 8136 1391 1474 8137 1343 1474 8138 1343 1475 8139 1391 1475 8140 1392 1475 8141 1343 1476 8142 1392 1476 8143 1342 1476 8144 1342 1477 8145 1392 1477 8146 1393 1477 8147 1342 1478 8148 1393 1478 8149 1341 1478 8150 1341 1479 8151 1393 1479 8152 1394 1479 8153 1341 1480 8154 1394 1480 8155 1340 1480 8156 1340 1481 8157 1394 1481 8158 1395 1481 8159 1340 1482 8160 1395 1482 8161 1339 1482 8162 1339 1483 8163 1395 1483 8164 1396 1483 8165 1339 1484 8166 1396 1484 8167 1338 1484 8168 1338 1485 8169 1396 1485 8170 1397 1485 8171 1338 1486 8172 1397 1486 8173 1337 1486 8174 1337 1487 8175 1397 1487 8176 1398 1487 8177 1337 1488 8178 1398 1488 8179 1336 1488 8180 1336 1489 8181 1398 1489 8182 1399 1489 8183 1336 1490 8184 1399 1490 8185 1335 1490 8186 1335 1491 8187 1399 1491 8188 1400 1491 8189 1345 1492 8190 1346 1492 8191 1390 1492 8192 1390 1213 8193 1346 1213 8194 1401 1213 8195 1346 1125 8196 1347 1125 8197 1401 1125 8198 1401 1493 8199 1347 1493 8200 1402 1493 8201 1347 1494 8202 1348 1494 8203 1402 1494 8204 1402 1128 8205 1348 1128 8206 1403 1128 8207 1356 1495 8208 1404 1495 8209 1355 1495 8210 1355 1496 8211 1404 1496 8212 1405 1496 8213 1355 1497 8214 1405 1497 8215 1354 1497 8216 1354 1498 8217 1405 1498 8218 1406 1498 8219 1354 1499 8220 1406 1499 8221 1353 1499 8222 1353 1500 8223 1406 1500 8224 1407 1500 8225 1353 1501 8226 1407 1501 8227 1352 1501 8228 1352 1502 8229 1407 1502 8230 1408 1502 8231 1352 1503 8232 1408 1503 8233 1351 1503 8234 1351 1504 8235 1408 1504 8236 1409 1504 8237 1351 1505 8238 1409 1505 8239 1350 1505 8240 1350 1506 8241 1409 1506 8242 1410 1506 8243 1350 1507 8244 1410 1507 8245 1349 1507 8246 1349 1508 8247 1410 1508 8248 1411 1508 8249 1349 1509 8250 1411 1509 8251 1348 1509 8252 1348 1510 8253 1411 1510 8254 1403 1510 8255 1356 486 8256 1357 486 8257 1404 486 8258 1404 486 8259 1357 486 8260 1412 486 8261 1367 1511 8262 1413 1511 8263 1366 1511 8264 1366 1512 8265 1413 1512 8266 1414 1512 8267 1366 1513 8268 1414 1513 8269 1365 1513 8270 1365 1514 8271 1414 1514 8272 1415 1514 8273 1365 1515 8274 1415 1515 8275 1364 1515 8276 1364 1515 8277 1415 1515 8278 1416 1515 8279 1364 1516 8280 1416 1516 8281 1363 1516 8282 1363 1517 8283 1416 1517 8284 1417 1517 8285 1363 1518 8286 1417 1518 8287 1362 1518 8288 1362 1519 8289 1417 1519 8290 1418 1519 8291 1362 1520 8292 1418 1520 8293 1361 1520 8294 1361 1521 8295 1418 1521 8296 1419 1521 8297 1361 1522 8298 1419 1522 8299 1360 1522 8300 1360 1166 8301 1419 1166 8302 1420 1166 8303 1360 1523 8304 1420 1523 8305 1359 1523 8306 1359 1524 8307 1420 1524 8308 1421 1524 8309 1359 1163 8310 1421 1163 8311 1358 1163 8312 1358 1162 8313 1421 1162 8314 1422 1162 8315 1358 1161 8316 1422 1161 8317 1357 1161 8318 1357 1525 8319 1422 1525 8320 1412 1525 8321 1367 487 8322 1368 487 8323 1413 487 8324 1413 487 8325 1368 487 8326 1423 487 8327 1378 1526 8328 1424 1526 8329 1425 1526 8330 1378 1527 8331 1425 1527 8332 1377 1527 8333 1377 1528 8334 1425 1528 8335 1426 1528 8336 1377 1529 8337 1426 1529 8338 1376 1529 8339 1376 1195 8340 1426 1195 8341 1427 1195 8342 1376 1530 8343 1427 1530 8344 1375 1530 8345 1375 1192 8346 1427 1192 8347 1428 1192 8348 1375 1531 8349 1428 1531 8350 1374 1531 8351 1374 1532 8352 1428 1532 8353 1429 1532 8354 1374 1533 8355 1429 1533 8356 1373 1533 8357 1373 1534 8358 1429 1534 8359 1430 1534 8360 1373 1535 8361 1430 1535 8362 1372 1535 8363 1372 1536 8364 1430 1536 8365 1431 1536 8366 1372 1537 8367 1431 1537 8368 1371 1537 8369 1371 1538 8370 1431 1538 8371 1432 1538 8372 1371 1539 8373 1432 1539 8374 1370 1539 8375 1370 1540 8376 1432 1540 8377 1433 1540 8378 1370 1541 8379 1433 1541 8380 1369 1541 8381 1369 1542 8382 1433 1542 8383 1423 1542 8384 1369 1543 8385 1423 1543 8386 1368 1543 8387 1378 486 8388 1379 486 8389 1424 486 8390 1424 486 8391 1379 486 8392 1434 486 8393 1389 1178 8394 1435 1178 8395 1388 1178 8396 1388 1544 8397 1435 1544 8398 1436 1544 8399 1388 1545 8400 1436 1545 8401 1387 1545 8402 1387 1546 8403 1436 1546 8404 1437 1546 8405 1387 1539 8406 1437 1539 8407 1386 1539 8408 1386 1538 8409 1437 1538 8410 1438 1538 8411 1386 1517 8412 1438 1517 8413 1385 1517 8414 1385 1547 8415 1438 1547 8416 1439 1547 8417 1385 1548 8418 1439 1548 8419 1384 1548 8420 1384 1549 8421 1439 1549 8422 1440 1549 8423 1384 1550 8424 1440 1550 8425 1383 1550 8426 1383 1551 8427 1440 1551 8428 1441 1551 8429 1383 1552 8430 1441 1552 8431 1382 1552 8432 1382 1553 8433 1441 1553 8434 1442 1553 8435 1382 1165 8436 1442 1165 8437 1381 1165 8438 1381 1554 8439 1442 1554 8440 1443 1554 8441 1381 1555 8442 1443 1555 8443 1380 1555 8444 1380 1556 8445 1443 1556 8446 1444 1556 8447 1380 1557 8448 1444 1557 8449 1379 1557 8450 1379 1160 8451 1444 1160 8452 1434 1160 8453 1389 487 8454 1329 487 8455 1435 487 8456 1435 487 8457 1329 487 8458 1445 487 8459 1334 1558 8460 1446 1558 8461 1333 1558 8462 1333 1559 8463 1446 1559 8464 1447 1559 8465 1333 1560 8466 1447 1560 8467 1332 1560 8468 1332 1561 8469 1447 1561 8470 1448 1561 8471 1332 1562 8472 1448 1562 8473 1331 1562 8474 1331 1563 8475 1448 1563 8476 1449 1563 8477 1331 1564 8478 1449 1564 8479 1330 1564 8480 1330 1565 8481 1449 1565 8482 1450 1565 8483 1330 1566 8484 1450 1566 8485 1329 1566 8486 1329 1567 8487 1450 1567 8488 1445 1567 8489 1334 1568 8490 1335 1568 8491 1446 1568 8492 1446 1569 8493 1335 1569 8494 1400 1569 8495 1451 0 8496 1452 0 8497 1453 0 8498 1451 0 8499 1453 0 8500 1454 0 8501 1455 739 8502 1456 739 8503 1453 739 8504 1453 1570 8505 1456 1570 8506 1457 1570 8507 1453 0 8508 1457 0 8509 1454 0 8510 1458 557 8511 1459 557 8512 1453 557 8513 1453 843 8514 1459 843 8515 1460 843 8516 1453 791 8517 1460 791 8518 1455 791 8519 1461 557 8520 1462 557 8521 1453 557 8522 1453 845 8523 1462 845 8524 1463 845 8525 1453 801 8526 1463 801 8527 1458 801 8528 1464 0 8529 1465 0 8530 1453 0 8531 1453 600 8532 1465 600 8533 1466 600 8534 1453 0 8535 1466 0 8536 1461 0 8537 1467 0 8538 1468 0 8539 1453 0 8540 1453 1571 8541 1468 1571 8542 1469 1571 8543 1453 0 8544 1469 0 8545 1464 0 8546 1470 0 8547 1471 0 8548 1453 0 8549 1453 0 8550 1471 0 8551 1472 0 8552 1453 0 8553 1472 0 8554 1467 0 8555 1473 794 8556 1474 794 8557 1453 794 8558 1453 849 8559 1474 849 8560 1475 849 8561 1453 0 8562 1475 0 8563 1470 0 8564 1476 0 8565 1477 0 8566 1453 0 8567 1453 1572 8568 1477 1572 8569 1478 1572 8570 1453 803 8571 1478 803 8572 1473 803 8573 1479 0 8574 1480 0 8575 1453 0 8576 1453 1573 8577 1480 1573 8578 1481 1573 8579 1453 1574 8580 1481 1574 8581 1476 1574 8582 1482 0 8583 1483 0 8584 1453 0 8585 1453 852 8586 1483 852 8587 1484 852 8588 1453 752 8589 1484 752 8590 1479 752 8591 1485 0 8592 1486 0 8593 1453 0 8594 1453 805 8595 1486 805 8596 1487 805 8597 1453 800 8598 1487 800 8599 1482 800 8600 1452 0 8601 1488 0 8602 1453 0 8603 1453 1575 8604 1488 1575 8605 1489 1575 8606 1453 807 8607 1489 807 8608 1485 807 8609 1490 0 8610 1491 0 8611 1492 0 8612 1490 0 8613 1492 0 8614 1493 0 8615 1494 0 8616 1495 0 8617 1492 0 8618 1492 543 8619 1495 543 8620 1496 543 8621 1492 0 8622 1496 0 8623 1493 0 8624 1497 544 8625 1498 544 8626 1492 544 8627 1492 611 8628 1498 611 8629 1499 611 8630 1492 597 8631 1499 597 8632 1494 597 8633 1500 0 8634 1501 0 8635 1492 0 8636 1492 1576 8637 1501 1576 8638 1502 1576 8639 1492 599 8640 1502 599 8641 1497 599 8642 1503 0 8643 1504 0 8644 1492 0 8645 1492 549 8646 1504 549 8647 1505 549 8648 1492 694 8649 1505 694 8650 1500 694 8651 1506 0 8652 1507 0 8653 1492 0 8654 1492 613 8655 1507 613 8656 1508 613 8657 1492 543 8658 1508 543 8659 1503 543 8660 1509 0 8661 1510 0 8662 1492 0 8663 1492 1577 8664 1510 1577 8665 1511 1577 8666 1492 603 8667 1511 603 8668 1506 603 8669 1512 553 8670 1513 553 8671 1492 553 8672 1492 1578 8673 1513 1578 8674 1514 1578 8675 1492 0 8676 1514 0 8677 1509 0 8678 1515 0 8679 1516 0 8680 1492 0 8681 1492 613 8682 1516 613 8683 1517 613 8684 1492 556 8685 1517 556 8686 1512 556 8687 1518 605 8688 1519 605 8689 1492 605 8690 1492 558 8691 1519 558 8692 1520 558 8693 1492 559 8694 1520 559 8695 1515 559 8696 1521 608 8697 1522 608 8698 1492 608 8699 1492 1579 8700 1522 1579 8701 1523 1579 8702 1492 1580 8703 1523 1580 8704 1518 1580 8705 1524 563 8706 1525 563 8707 1492 563 8708 1492 853 8709 1525 853 8710 1526 853 8711 1492 610 8712 1526 610 8713 1521 610 8714 1491 0 8715 1527 0 8716 1492 0 8717 1492 566 8718 1527 566 8719 1528 566 8720 1492 567 8721 1528 567 8722 1524 567 8723 1451 452 8724 1454 452 8725 1529 452 8726 1529 453 8727 1454 453 8728 1457 453 8729 1529 454 8730 1457 454 8731 1530 454 8732 1530 1581 8733 1457 1581 8734 1456 1581 8735 1530 1582 8736 1456 1582 8737 1531 1582 8738 1531 625 8739 1456 625 8740 1455 625 8741 1531 458 8742 1455 458 8743 1532 458 8744 1532 459 8745 1455 459 8746 1460 459 8747 1532 1278 8748 1460 1278 8749 1533 1278 8750 1533 461 8751 1460 461 8752 1459 461 8753 1533 462 8754 1459 462 8755 1534 462 8756 1534 463 8757 1459 463 8758 1458 463 8759 1534 1583 8760 1458 1583 8761 1535 1583 8762 1535 464 8763 1458 464 8764 1463 464 8765 1535 771 8766 1463 771 8767 1536 771 8768 1536 824 8769 1463 824 8770 1462 824 8771 1536 825 8772 1462 825 8773 1537 825 8774 1537 468 8775 1462 468 8776 1461 468 8777 1537 714 8778 1461 714 8779 1538 714 8780 1538 773 8781 1461 773 8782 1466 773 8783 1538 471 8784 1466 471 8785 1539 471 8786 1539 510 8787 1466 510 8788 1465 510 8789 1539 510 8790 1465 510 8791 1540 510 8792 1540 630 8793 1465 630 8794 1464 630 8795 1540 631 8796 1464 631 8797 1541 631 8798 1541 472 8799 1464 472 8800 1469 472 8801 1541 1281 8802 1469 1281 8803 1542 1281 8804 1542 474 8805 1469 474 8806 1468 474 8807 1542 1584 8808 1468 1584 8809 1543 1584 8810 1543 383 8811 1468 383 8812 1467 383 8813 1543 384 8814 1467 384 8815 1544 384 8816 1544 718 8817 1467 718 8818 1472 718 8819 1544 476 8820 1472 476 8821 1545 476 8822 1545 1585 8823 1472 1585 8824 1471 1585 8825 1545 1586 8826 1471 1586 8827 1546 1586 8828 1546 720 8829 1471 720 8830 1470 720 8831 1546 480 8832 1470 480 8833 1547 480 8834 1547 481 8835 1470 481 8836 1475 481 8837 1547 721 8838 1475 721 8839 1548 721 8840 1548 636 8841 1475 636 8842 1474 636 8843 1548 637 8844 1474 637 8845 1549 637 8846 1549 1587 8847 1474 1587 8848 1473 1587 8849 1549 723 8850 1473 723 8851 1550 723 8852 1550 430 8853 1473 430 8854 1478 430 8855 1550 1588 8856 1478 1588 8857 1551 1588 8858 1551 638 8859 1478 638 8860 1477 638 8861 1551 398 8862 1477 398 8863 1552 398 8864 1552 1289 8865 1477 1289 8866 1476 1289 8867 1552 443 8868 1476 443 8869 1553 443 8870 1553 640 8871 1476 640 8872 1481 640 8873 1553 641 8874 1481 641 8875 1554 641 8876 1554 527 8877 1481 527 8878 1480 527 8879 1554 527 8880 1480 527 8881 1555 527 8882 1555 404 8883 1480 404 8884 1479 404 8885 1555 528 8886 1479 528 8887 1556 528 8888 1556 727 8889 1479 727 8890 1484 727 8891 1556 445 8892 1484 445 8893 1557 445 8894 1557 839 8895 1484 839 8896 1483 839 8897 1557 839 8898 1483 839 8899 1558 839 8900 1558 783 8901 1483 783 8902 1482 783 8903 1558 448 8904 1482 448 8905 1559 448 8906 1559 1589 8907 1482 1589 8908 1487 1589 8909 1559 449 8910 1487 449 8911 1560 449 8912 1560 420 8913 1487 420 8914 1486 420 8915 1560 1291 8916 1486 1291 8917 1561 1291 8918 1561 734 8919 1486 734 8920 1485 734 8921 1561 734 8922 1485 734 8923 1562 734 8924 1562 1292 8925 1485 1292 8926 1489 1292 8927 1562 424 8928 1489 424 8929 1563 424 8930 1563 648 8931 1489 648 8932 1488 648 8933 1563 649 8934 1488 649 8935 1564 649 8936 1564 352 8937 1488 352 8938 1452 352 8939 1564 436 8940 1452 436 8941 1565 436 8942 1565 437 8943 1452 437 8944 1451 437 8945 1565 1590 8946 1451 1590 8947 1529 1590 8948 1491 1591 8949 1490 1591 8950 1566 1591 8951 1566 496 8952 1490 496 8953 1567 496 8954 1490 568 8955 1493 568 8956 1567 568 8957 1567 569 8958 1493 569 8959 1496 569 8960 1567 1592 8961 1496 1592 8962 1568 1592 8963 1568 357 8964 1496 357 8965 1495 357 8966 1568 500 8967 1495 500 8968 1569 500 8969 1569 1277 8970 1495 1277 8971 1494 1277 8972 1569 458 8973 1494 458 8974 1570 458 8975 1570 570 8976 1494 570 8977 1499 570 8978 1570 626 8979 1499 626 8980 1571 626 8981 1571 365 8982 1499 365 8983 1498 365 8984 1571 366 8985 1498 366 8986 1572 366 8987 1572 1593 8988 1498 1593 8989 1497 1593 8990 1572 1594 8991 1497 1594 8992 1573 1594 8993 1573 369 8994 1497 369 8995 1502 369 8996 1573 505 8997 1502 505 8998 1574 505 8999 1574 371 9000 1502 371 9001 1501 371 9002 1574 1595 9003 1501 1595 9004 1575 1595 9005 1575 373 9006 1501 373 9007 1500 373 9008 1575 508 9009 1500 508 9010 1576 508 9011 1576 509 9012 1500 509 9013 1505 509 9014 1576 509 9015 1505 509 9016 1577 509 9017 1577 510 9018 1505 510 9019 1504 510 9020 1577 511 9021 1504 511 9022 1578 511 9023 1578 378 9024 1504 378 9025 1503 378 9026 1578 379 9027 1503 379 9028 1579 379 9029 1579 381 9030 1503 381 9031 1508 381 9032 1579 632 9033 1508 632 9034 1580 632 9035 1580 1596 9036 1508 1596 9037 1507 1596 9038 1580 513 9039 1507 513 9040 1581 513 9041 1581 580 9042 1507 580 9043 1506 580 9044 1581 515 9045 1506 515 9046 1582 515 9047 1582 516 9048 1506 516 9049 1511 516 9050 1582 516 9051 1511 516 9052 1583 516 9053 1583 386 9054 1511 386 9055 1510 386 9056 1583 387 9057 1510 387 9058 1584 387 9059 1584 1597 9060 1510 1597 9061 1509 1597 9062 1584 1598 9063 1509 1598 9064 1585 1598 9065 1585 1599 9066 1509 1599 9067 1514 1599 9068 1585 1600 9069 1514 1600 9070 1586 1600 9071 1586 392 9072 1514 392 9073 1513 392 9074 1586 393 9075 1513 393 9076 1587 393 9077 1587 584 9078 1513 584 9079 1512 584 9080 1587 521 9081 1512 521 9082 1588 521 9083 1588 522 9084 1512 522 9085 1517 522 9086 1588 586 9087 1517 586 9088 1589 586 9089 1589 524 9090 1517 524 9091 1516 524 9092 1589 1288 9093 1516 1288 9094 1590 1288 9095 1590 639 9096 1516 639 9097 1515 639 9098 1590 1601 9099 1515 1601 9100 1591 1601 9101 1591 401 9102 1515 401 9103 1520 401 9104 1591 402 9105 1520 402 9106 1592 402 9107 1592 526 9108 1520 526 9109 1519 526 9110 1592 527 9111 1519 527 9112 1593 527 9113 1593 528 9114 1519 528 9115 1518 528 9116 1593 528 9117 1518 528 9118 1594 528 9119 1594 529 9120 1518 529 9121 1523 529 9122 1594 407 9123 1523 407 9124 1595 407 9125 1595 1602 9126 1523 1602 9127 1522 1602 9128 1595 409 9129 1522 409 9130 1596 409 9131 1596 532 9132 1522 532 9133 1521 532 9134 1596 411 9135 1521 411 9136 1597 411 9137 1597 1603 9138 1521 1603 9139 1526 1603 9140 1597 1604 9141 1526 1604 9142 1598 1604 9143 1598 414 9144 1526 414 9145 1525 414 9146 1598 414 9147 1525 414 9148 1599 414 9149 1599 645 9150 1525 645 9151 1524 645 9152 1599 594 9153 1524 594 9154 1600 594 9155 1600 646 9156 1524 646 9157 1528 646 9158 1600 1605 9159 1528 1605 9160 1601 1605 9161 1601 538 9162 1528 538 9163 1527 538 9164 1601 690 9165 1527 690 9166 1602 690 9167 1602 1293 9168 1527 1293 9169 1491 1293 9170 1602 595 9171 1491 595 9172 1603 595 9173 1603 596 9174 1491 596 9175 1566 596 9176 1611 486 9870 145 486 9871 1041 486 9872 1041 486 9873 147 486 9874 1608 486 9875 1608 486 9876 1623 486 9877 1041 486 9878 1630 486 9879 1611 486 9880 1041 486 9881 1623 486 9882 1614 486 9883 1041 486 9884 1609 1696 9885 146 1696 9886 1311 1696 9887 1311 1697 9888 144 1697 9889 1612 1697 9890 1631 489 9891 1615 489 9892 1311 489 9893 1311 1698 9894 1612 1698 9895 1631 1698 9896 1624 489 9897 1609 489 9898 1311 489 9899

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

8 1 24 9 1 25 10 1 26 11 0 27 12 0 28 10 0 29 10 2 30 12 2 31 13 2 32 9 3 33 14 3 34 10 3 35 10 4 36 14 4 37 15 4 38 10 5 39 15 5 40 11 5 41 16 0 42 17 0 43 18 0 44 19 0 45 20 0 46 21 0 47 22 0 48 23 0 49 24 0 50 25 6 51 26 6 52 27 6 53 28 7 54 29 7 55 30 7 56 30 8 57 29 8 58 31 8 59 30 9 60 31 9 61 10 9 62 10 10 63 31 10 64 32 10 65 10 0 66 32 0 67 8 0 68 8 0 69 32 0 70 33 0 71 21 11 72 20 11 73 34 11 74 34 12 75 20 12 76 35 12 77 34 0 78 35 0 79 36 0 80 36 13 81 35 13 82 37 13 83 36 0 84 37 0 85 38 0 86 38 0 87 37 0 88 39 0 89 38 0 90 39 0 91 40 0 92 41 0 93 42 0 94 43 0 95 44 0 96 45 0 97 42 0 98 42 0 99 45 0 100 46 0 101 42 14 102 46 14 103 43 14 104 21 0 105 47 0 106 19 0 107 19 15 108 47 15 109 48 15 110 19 0 111 48 0 112 49 0 113 49 16 114 48 16 115 50 16 116 49 0 117 50 0 118 51 0 119 51 17 120 50 17 121 52 17 122 51 18 123 52 18 124 53 18 125 53 19 126 52 19 127 45 19 128 53 0 129 45 0 130 54 0 131 54 0 132 45 0 133 44 0 134 43 0 135 55 0 136 41 0 137 41 20 138 55 20 139 56 20 140 41 21 141 56 21 142 23 21 143 23 22 144 56 22 145 57 22 146 23 23 147 57 23 148 24 23 149 28 24 150 30 24 151 58 24 152 58 0 153 30 0 154 59 0 155 58 0 156 59 0 157 60 0 158 60 25 159 59 25 160 61 25 161 60 0 162 61 0 163 62 0 164 27 26 165 26 26 166 63 26 167 63 27 168 26 27 169 64 27 170 63 28 171 64 28 172 65 28 173 65 29 174 64 29 175 66 29 176 65 0 177 66 0 178 67 0 179 67 30 180 66 30 181 68 30 182 67 31 183 68 31 184 69 31 185 69 32 186 68 32 187 70 32 188 69 0 189 70 0 190 71 0 191 71 0 192 70 0 193 72 0 194 71 0 195 72 0 196 73 0 197 73 0 198 72 0 199 74 0 200 73 0 201 74 0 202 75 0 203 75 33 204 74 33 205 76 33 206 75 0 207 76 0 208 61 0 209 61 0 210 76 0 211 77 0 212 61 34 213 77 34 214 62 34 215 18 35 216 17 35 217 78 35 218 78 36 219 17 36 220 79 36 221 78 0 222 79 0 223 80 0 224 80 37 225 79 37 226 81 37 227 80 0 228 81 0 229 82 0 230 82 38 231 81 38 232 83 38 233 82 39 234 83 39 235 84 39 236 84 40 237 83 40 238 85 40 239 84 0 240 85 0 241 86 0 242 86 41 243 85 41 244 87 41 245 86 0 246 87 0 247 88 0 248 88 42 249 87 42 250 89 42 251 88 43 252 89 43 253 90 43 254 90 44 255 89 44 256 91 44 257 90 0 258 91 0 259 92 0 260 92 45 261 91 45 262 93 45 263 92 0 264 93 0 265 94 0 266 94 0 267 93 0 268 95 0 269 94 46 270 95 46 271 96 46 272 24 0 273 97 0 274 22 0 275 22 47 276 97 47 277 98 47 278 22 0 279 98 0 280 99 0 281 99 48 282 98 48 283 100 48 284 99 49 285 100 49 286 101 49 287 101 0 288 100 0 289 29 0 290 101 0 291 29 0 292 102 0 293 102 0 294 29 0 295 28 0 296 18 50 297 103 50 298 16 50 299 16 51 300 103 51 301 104 51 302 16 52 303 104 52 304 32 52 305 32 0 306 104 0 307 105 0 308 32 53 309 105 53 310 33 53 311 27 0 312 106 0 313 25 0 314 25 54 315 106 54 316 107 54 317 25 0 318 107 0 319 108 0 320 108 55 321 107 55 322 109 55 323 108 0 324 109 0 325 110 0 326 110 56 327 109 56 328 111 56 329 110 57 330 111 57 331 112 57 332 112 0 333 111 0 334 10 0 335 112 0 336 10 0 337 113 0 338 113 0 339 10 0 340 13 0 341 96 0 342 114 0 343 94 0 344 94 58 345 114 58 346 115 58 347 94 59 348 115 59 349 116 59 350 116 60 351 115 60 352 117 60 353 116 0 354 117 0 355 118 0 356 118 0 357 117 0 358 119 0 359 119 61 360 117 61 361 120 61 362 119 62 363 120 62 364 121 62 365 40 0 366 39 0 367 122 0 368 122 0 369 39 0 370 123 0 371 122 0 372 123 0 373 124 0 374 124 0 375 123 0 376 125 0 377 124 0 378 125 0 379 126 0 380 126 63 381 125 63 382 127 63 383 126 0 384 127 0 385 128 0 386 128 64 387 127 64 388 129 64 389 128 0 390 129 0 391 130 0 392 130 65 393 129 65 394 131 65 395 130 66 396 131 66 397 132 66 398 132 67 399 131 67 400 133 67 401 132 0 402 133 0 403 134 0 404 134 68 405 133 68 406 135 68 407 134 0 408 135 0 409 136 0 410 136 69 411 135 69 412 137 69 413 136 70 414 137 70 415 138 70 416 138 71 417 137 71 418 139 71 419 138 0 420 139 0 421 140 0 422 140 72 423 139 72 424 141 72 425 140 0 426 141 0 427 142 0 428 142 73 429 141 73 430 143 73 431 142 0 432 143 0 433 144 0 434 144 74 435 143 74 436 145 74 437 1657 0 438 1633 0 439 146 0 440 145 75 441 1620 75 442 1660 75 443 146 76 444 147 76 445 148 76 446 148 77 447 147 77 448 149 77 449 148 0 450 149 0 451 150 0 452 150 78 453 149 78 454 151 78 455 150 0 456 151 0 457 152 0 458 152 79 459 151 79 460 153 79 461 152 0 462 153 0 463 154 0 464 154 80 465 153 80 466 155 80 467 154 0 468 155 0 469 156 0 470 156 81 471 155 81 472 157 81 473 156 0 474 157 0 475 158 0 476 158 82 477 157 82 478 159 82 479 158 83 480 159 83 481 160 83 482 160 0 483 159 0 484 161 0 485 160 84 486 161 84 487 162 84 488 162 0 489 161 0 490 163 0 491 162 0 492 163 0 493 164 0 494 164 85 495 163 85 496 165 85 497 164 0 498 165 0 499 166 0 500 166 0 501 165 0 502 167 0 503 166 0 504 167 0 505 120 0 506 120 0 507 167 0 508 168 0 509 120 0 510 168 0 511 121 0 512 1658 1684 9624 1618 1684 9625 147 1684 9626 1659 0 9627 1619 0 9628 144 0 9629 146 1690 9828 1609 1690 9829 1653 1690 9830 1626 1691 9831 1665 1691 9832 146 1691 9833 146 1690 9834 1653 1690 9835 1626 1690 9836 1669 0 9837 1610 0 9838 146 0 9839 1617 1692 9840 1657 1692 9841 146 1692 9842 1633 0 9843 1669 0 9844 146 0 9845 146 0 9846 1665 0 9847 1617 0 9848 1672 1693 9849 1613 1693 9850 145 1693 9851 145 1694 9852 1611 1694 9853 1656 1694 9854 1629 1695 9855 1668 1695 9856 145 1695 9857 145 0 9858 1656 0 9859 1629 0 9860 1636 0 9861 1672 0 9862 145 0 9863 1668 0 9864 1620 0 9865 145 0 9866 1660 0 9867 1636 0 9868 145 0 9869 147 1700 9903 146 1700 9904 1610 1700 9905 1670 0 9906 1634 0 9907 147 0 9908 147 1701 9909 1610 1701 9910 1670 1701 9911 1654 1702 9912 1608 1702 9913 147 1702 9914 1618 0 9915 1666 0 9916 147 0 9917 1627 0 9918 1654 0 9919 147 0 9920 147 0 9921 1634 0 9922 1658 0 9923 1666 1703 9924 1627 1703 9925 147 1703 9926 1612 1704 9927 144 1704 9928 1655 1704 9929 145 1705 9930 1613 1705 9931 144 1705 9932 1635 1706 9933 1659 1706 9934 144 1706 9935 1613 1707 9936 1671 1707 9937 144 1707 9938 1655 0 9939 144 0 9940 1628 0 9941 1619 0 9942 1667 0 9943 144 0 9944 1628 1704 9945 144 1704 9946 1667 1704 9947 1671 1706 9948 1635 1706 9949 144 1706 9950

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 2 0 3 1 0 4 3 0 5 2 0 6 3 0 7 4 0 8 4 0 9 3 0 10 5 0 11 4 0 12 5 0 13 6 0 14 6 0 15 5 0 16 7 0 17 6 0 18 7 0 19 0 0 20 0 0 21 7 0 22 1 0 23 169 0 513 170 0 514 171 0 515 172 0 516 173 0 517 174 0 518 175 0 519 176 0 520 177 0 521 178 0 522 179 0 523 180 0 524 180 0 525 179 0 526 181 0 527 182 0 528 183 0 529 184 0 530 174 0 531 173 0 532 185 0 533 186 0 534 187 0 535 188 0 536 188 0 537 187 0 538 189 0 539 188 86 540 189 86 541 190 86 542 191 0 543 192 0 544 193 0 545 193 87 546 192 87 547 194 87 548 193 88 549 194 88 550 195 88 551 195 0 552 196 0 553 193 0 554 193 89 555 196 89 556 197 89 557 193 0 558 197 0 559 188 0 560 188 90 561 197 90 562 198 90 563 188 91 564 198 91 565 186 91 566 199 0 567 200 0 568 183 0 569 191 92 570 201 92 571 202 92 572 202 0 573 203 0 574 191 0 575 191 93 576 203 93 577 204 93 578 191 94 579 204 94 580 205 94 581 182 95 582 206 95 583 207 95 584 207 0 585 208 0 586 182 0 587 182 96 588 208 96 589 209 96 590 182 97 591 209 97 592 210 97 593 210 0 594 211 0 595 182 0 596 182 98 597 211 98 598 212 98 599 182 0 600 212 0 601 183 0 602 183 99 603 212 99 604 213 99 605 183 100 606 213 100 607 199 100 608 214 0 609 215 0 610 191 0 611 191 101 612 215 101 613 216 101 614 191 102 615 216 102 616 217 102 617 217 0 618 218 0 619 191 0 620 191 103 621 218 103 622 219 103 623 191 104 624 219 104 625 201 104 626 200 0 627 220 0 628 183 0 629 183 105 630 220 105 631 221 105 632 183 0 633 221 0 634 191 0 635 191 106 636 221 106 637 222 106 638 191 107 639 222 107 640 214 107 641 191 0 642 193 0 643 183 0 644 183 0 645 193 0 646 223 0 647 183 0 648 223 0 649 184 0 650 224 0 651 225 0 652 193 0 653 193 108 654 225 108 655 226 108 656 193 109 657 226 109 658 223 109 659 227 0 660 228 0 661 229 0 662 229 110 663 228 110 664 230 110 665 227 111 666 231 111 667 228 111 668 228 112 669 231 112 670 232 112 671 228 0 672 232 0 673 193 0 674 193 113 675 232 113 676 233 113 677 193 114 678 233 114 679 224 114 680 234 0 681 235 0 682 228 0 683 228 0 684 235 0 685 236 0 686 228 0 687 236 0 688 230 0 689 237 115 690 238 115 691 239 115 692 240 0 693 241 0 694 242 0 695 239 0 696 243 0 697 237 0 698 237 116 699 243 116 700 244 116 701 237 117 702 244 117 703 245 117 704 245 118 705 246 118 706 237 118 707 237 119 708 246 119 709 247 119 710 237 120 711 247 120 712 248 120 713 241 121 714 249 121 715 242 121 716 242 122 717 249 122 718 250 122 719 242 123 720 250 123 721 251 123 722 248 124 723 252 124 724 237 124 725 237 125 726 252 125 727 253 125 728 237 126 729 253 126 730 254 126 731 255 0 732 256 0 733 257 0 734 254 0 735 258 0 736 237 0 737 237 127 738 258 127 739 259 127 740 237 128 741 259 128 742 260 128 743 261 0 744 262 0 745 257 0 746 257 129 747 262 129 748 263 129 749 257 130 750 263 130 751 264 130 752 264 0 753 265 0 754 257 0 755 257 131 756 265 131 757 266 131 758 257 132 759 266 132 760 267 132 761 234 133 762 268 133 763 269 133 764 256 0 765 270 0 766 257 0 767 257 134 768 270 134 769 271 134 770 257 135 771 271 135 772 261 135 773 234 136 774 269 136 775 272 136 776 272 137 777 269 137 778 273 137 779 272 0 780 273 0 781 242 0 782 242 138 783 273 138 784 274 138 785 242 139 786 274 139 787 240 139 788 275 140 789 276 140 790 277 140 791 279 0 792 178 0 793 277 0 794 277 0 795 178 0 796 180 0 797 277 0 798 180 0 799 275 0 800 275 0 801 180 0 802 181 0 803 275 141 804 181 141 805 280 141 806 281 0 807 282 0 808 283 0 809 283 0 810 284 0 811 281 0 812 281 142 813 284 142 814 285 142 815 281 143 816 285 143 817 286 143 818 287 0 819 288 0 820 177 0 821 289 0 822 290 0 823 278 0 824 278 144 825 290 144 826 291 144 827 278 145 828 291 145 829 292 145 830 292 0 831 293 0 832 278 0 833 278 146 834 293 146 835 294 146 836 278 147 837 294 147 838 295 147 839 295 0 840 296 0 841 278 0 842 278 148 843 296 148 844 297 148 845 278 149 846 297 149 847 298 149 848 286 0 849 299 0 850 281 0 851 281 150 852 299 150 853 300 150 854 281 151 855 300 151 856 301 151 857 298 0 858 302 0 859 278 0 860 278 152 861 302 152 862 303 152 863 278 153 864 303 153 865 304 153 866 304 0 867 305 0 868 278 0 869 278 154 870 305 154 871 282 154 872 278 0 873 282 0 874 306 0 875 306 0 876 282 0 877 281 0 878 307 0 879 308 0 880 177 0 881 177 155 882 308 155 883 309 155 884 177 156 885 309 156 886 310 156 887 310 0 888 311 0 889 177 0 890 177 157 891 311 157 892 312 157 893 177 0 894 312 0 895 278 0 896 278 158 897 312 158 898 313 158 899 278 159 900 313 159 901 289 159 902 288 0 903 314 0 904 177 0 905 177 160 906 314 160 907 315 160 908 177 161 909 315 161 910 307 161 911 301 0 912 316 0 913 281 0 914 281 162 915 316 162 916 317 162 917 281 163 918 317 163 919 176 163 920 317 0 921 318 0 922 176 0 923 176 164 924 318 164 925 319 164 926 176 0 927 319 0 928 177 0 929 177 165 930 319 165 931 320 165 932 177 166 933 320 166 934 287 166 935 321 0 936 322 0 937 323 0 938 324 167 939 325 167 940 326 167 941 326 0 942 325 0 943 321 0 944 326 168 945 321 168 946 327 168 947 327 169 948 321 169 949 323 169 950 324 0 951 328 0 952 325 0 953 325 170 954 328 170 955 329 170 956 325 0 957 329 0 958 330 0 959 331 0 960 332 0 961 333 0 962 332 0 963 334 0 964 333 0 965 333 171 966 334 171 967 335 171 968 333 0 969 335 0 970 321 0 971 321 172 972 335 172 973 336 172 974 321 173 975 336 173 976 322 173 977 337 174 978 338 174 979 339 174 980 340 175 981 341 175 982 342 175 983 342 176 984 341 176 985 343 176 986 342 177 987 343 177 988 344 177 989 344 178 990 345 178 991 342 178 992 342 179 993 345 179 994 346 179 995 342 180 996 346 180 997 347 180 998 348 0 999 349 0 1000 350 0 1001 350 181 1002 349 181 1003 351 181 1004 350 0 1005 351 0 1006 352 0 1007 352 182 1008 351 182 1009 353 182 1010 352 183 1011 353 183 1012 354 183 1013 355 0 1014 352 0 1015 356 0 1016 356 0 1017 352 0 1018 357 0 1019 358 0 1020 359 0 1021 350 0 1022 360 0 1023 361 0 1024 362 0 1025 362 184 1026 361 184 1027 363 184 1028 362 0 1029 363 0 1030 364 0 1031 347 0 1032 348 0 1033 342 0 1034 342 0 1035 348 0 1036 350 0 1037 342 0 1038 350 0 1039 365 0 1040 365 185 1041 350 185 1042 359 185 1043 354 0 1044 366 0 1045 352 0 1046 352 186 1047 366 186 1048 367 186 1049 352 187 1050 367 187 1051 357 187 1052 357 0 1053 367 0 1054 368 0 1055 357 0 1056 368 0 1057 369 0 1058 358 0 1059 350 0 1060 362 0 1061 362 188 1062 350 188 1063 370 188 1064 362 189 1065 370 189 1066 360 189 1067 371 0 1068 368 0 1069 372 0 1070 372 0 1071 368 0 1072 373 0 1073 355 0 1074 374 0 1075 352 0 1076 352 190 1077 374 190 1078 375 190 1079 352 191 1080 375 191 1081 376 191 1082 337 192 1083 377 192 1084 378 192 1085 379 0 1086 338 0 1087 380 0 1088 380 193 1089 338 193 1090 381 193 1091 382 0 1092 383 0 1093 384 0 1094 384 0 1095 383 0 1096 385 0 1097 373 194 1098 368 194 1099 386 194 1100 386 0 1101 368 0 1102 387 0 1103 386 0 1104 387 0 1105 388 0 1106 371 0 1107 389 0 1108 368 0 1109 368 195 1110 389 195 1111 390 195 1112 368 196 1113 390 196 1114 369 196 1115 378 0 1116 391 0 1117 337 0 1118 337 197 1119 391 197 1120 392 197 1121 337 198 1122 392 198 1123 393 198 1124 393 199 1125 394 199 1126 337 199 1127 337 200 1128 394 200 1129 395 200 1130 337 201 1131 395 201 1132 396 201 1133 396 0 1134 397 0 1135 337 0 1136 337 202 1137 397 202 1138 398 202 1139 337 203 1140 398 203 1141 338 203 1142 338 204 1143 398 204 1144 399 204 1145 338 205 1146 399 205 1147 400 205 1148 379 0 1149 401 0 1150 338 0 1151 338 206 1152 401 206 1153 402 206 1154 338 207 1155 402 207 1156 383 207 1157 383 208 1158 402 208 1159 403 208 1160 383 0 1161 403 0 1162 385 0 1163 376 0 1164 404 0 1165 352 0 1166 352 209 1167 404 209 1168 405 209 1169 352 210 1170 405 210 1171 406 210 1172 407 0 1173 400 0 1174 408 0 1175 408 211 1176 400 211 1177 409 211 1178 408 212 1179 409 212 1180 410 212 1181 407 0 1182 411 0 1183 400 0 1184 400 0 1185 411 0 1186 412 0 1187 400 0 1188 412 0 1189 338 0 1190 338 213 1191 412 213 1192 413 213 1193 338 214 1194 413 214 1195 381 214 1196 410 215 1197 414 215 1198 408 215 1199 408 0 1200 414 0 1201 415 0 1202 408 216 1203 415 216 1204 416 216 1205 406 0 1206 417 0 1207 337 0 1208 337 217 1209 417 217 1210 418 217 1211 337 218 1212 418 218 1213 377 218 1214 388 0 1215 387 0 1216 419 0 1217 419 0 1218 387 0 1219 420 0 1220 419 0 1221 420 0 1222 421 0 1223 421 219 1224 420 219 1225 422 219 1226 421 0 1227 422 0 1228 416 0 1229 416 0 1230 422 0 1231 423 0 1232 416 220 1233 423 220 1234 408 220 1235 424 221 1236 425 221 1237 426 221 1238 427 0 1239 428 0 1240 429 0 1241 429 0 1242 428 0 1243 430 0 1244 337 222 1245 431 222 1246 432 222 1247 406 0 1248 337 0 1249 352 0 1250 352 223 1251 337 223 1252 433 223 1253 352 224 1254 433 224 1255 434 224 1256 434 225 1257 435 225 1258 352 225 1259 352 226 1260 435 226 1261 436 226 1262 352 227 1263 436 227 1264 437 227 1265 438 228 1266 439 228 1267 440 228 1268 424 0 1269 426 0 1270 441 0 1271 441 229 1272 426 229 1273 442 229 1274 441 230 1275 442 230 1276 443 230 1277 425 0 1278 424 0 1279 428 0 1280 428 231 1281 424 231 1282 444 231 1283 428 232 1284 444 232 1285 430 232 1286 445 0 1287 446 0 1288 447 0 1289 447 233 1290 446 233 1291 448 233 1292 447 234 1293 449 234 1294 450 234 1295 432 0 1296 451 0 1297 337 0 1298 337 235 1299 451 235 1300 452 235 1301 337 236 1302 452 236 1303 453 236 1304 437 0 1305 454 0 1306 352 0 1307 352 237 1308 454 237 1309 455 237 1310 352 0 1311 455 0 1312 456 0 1313 456 238 1314 455 238 1315 438 238 1316 456 0 1317 438 0 1318 457 0 1319 457 239 1320 438 239 1321 440 239 1322 443 0 1323 458 0 1324 441 0 1325 441 240 1326 458 240 1327 459 240 1328 441 0 1329 459 0 1330 439 0 1331 439 241 1332 459 241 1333 460 241 1334 439 242 1335 460 242 1336 440 242 1337 427 243 1338 461 243 1339 428 243 1340 428 244 1341 461 244 1342 462 244 1343 428 245 1344 462 245 1345 447 245 1346 447 246 1347 462 246 1348 463 246 1349 447 247 1350 463 247 1351 445 247 1352 448 0 1353 464 0 1354 447 0 1355 447 248 1356 464 248 1357 465 248 1358 447 249 1359 465 249 1360 449 249 1361 450 0 1362 466 0 1363 447 0 1364 447 250 1365 466 250 1366 467 250 1367 447 0 1368 467 0 1369 337 0 1370 337 251 1371 467 251 1372 468 251 1373 337 252 1374 468 252 1375 431 252 1376 469 0 1377 470 0 1378 337 0 1379 337 253 1380 470 253 1381 471 253 1382 337 254 1383 471 254 1384 433 254 1385 453 0 1386 472 0 1387 337 0 1388 337 255 1389 472 255 1390 473 255 1391 337 256 1392 473 256 1393 469 256 1394 474 0 1395 475 0 1396 476 0 1397 476 0 1398 475 0 1399 477 0 1400 479 0 1404 480 0 1405 173 0 1406 172 258 1407 481 258 1408 482 258 1409 482 0 1410 483 0 1411 172 0 1412 172 259 1413 483 259 1414 484 259 1415 172 260 1416 484 260 1417 485 260 1418 479 0 1419 173 0 1420 486 0 1421 428 261 1422 487 261 1423 488 261 1424 488 0 1425 489 0 1426 428 0 1427 428 262 1428 489 262 1429 490 262 1430 428 263 1431 490 263 1432 491 263 1433 485 0 1434 492 0 1435 172 0 1436 172 264 1437 492 264 1438 493 264 1439 172 0 1440 493 0 1441 173 0 1442 173 265 1443 493 265 1444 494 265 1445 173 266 1446 494 266 1447 486 266 1448 480 0 1449 495 0 1450 173 0 1451 173 267 1452 495 267 1453 496 267 1454 173 0 1455 496 0 1456 487 0 1457 487 268 1458 496 268 1459 497 268 1460 497 0 1461 498 0 1462 487 0 1463 487 269 1464 498 269 1465 499 269 1466 487 270 1467 499 270 1468 500 270 1469 500 0 1470 501 0 1471 487 0 1472 487 271 1473 501 271 1474 502 271 1475 487 272 1476 502 272 1477 503 272 1478 503 0 1479 504 0 1480 487 0 1481 487 273 1482 504 273 1483 505 273 1484 487 274 1485 505 274 1486 488 274 1487 506 275 1488 507 275 1489 476 275 1490 476 276 1491 507 276 1492 508 276 1493 476 277 1494 508 277 1495 474 277 1496 509 278 1497 510 278 1498 428 278 1499 428 279 1500 510 279 1501 511 279 1502 491 0 1503 512 0 1504 428 0 1505 428 280 1506 512 280 1507 513 280 1508 428 281 1509 513 281 1510 509 281 1511 509 282 1512 513 282 1513 507 282 1514 509 0 1515 507 0 1516 514 0 1517 514 0 1518 507 0 1519 506 0 1520 511 0 1521 515 0 1522 428 0 1523 428 0 1524 515 0 1525 516 0 1526 428 0 1527 516 0 1528 425 0 1529 190 283 1530 185 283 1531 188 283 1532 188 284 1533 185 284 1534 173 284 1535 188 0 1536 173 0 1537 517 0 1538 517 0 1539 173 0 1540 487 0 1541 169 0 1542 518 0 1543 519 0 1544 519 0 1545 518 0 1546 520 0 1547 519 0 1548 520 0 1549 228 0 1550 228 0 1551 520 0 1552 257 0 1553 228 0 1554 257 0 1555 234 0 1556 234 0 1557 257 0 1558 267 0 1559 234 285 1560 267 285 1561 268 285 1562 521 0 1563 522 0 1564 520 0 1565 520 286 1566 522 286 1567 523 286 1568 524 0 1569 518 0 1570 525 0 1571 525 0 1572 518 0 1573 526 0 1574 527 0 1575 528 0 1576 520 0 1577 528 0 1578 529 0 1579 520 0 1580 520 287 1581 529 287 1582 530 287 1583 520 288 1584 530 288 1585 521 288 1586 524 0 1587 531 0 1588 518 0 1589 518 289 1590 531 289 1591 532 289 1592 518 290 1593 532 290 1594 533 290 1595 518 291 1596 534 291 1597 535 291 1598 523 0 1599 536 0 1600 520 0 1601 520 292 1602 536 292 1603 537 292 1604 520 293 1605 537 293 1606 538 293 1607 260 0 1608 255 0 1609 237 0 1610 237 294 1611 255 294 1612 257 294 1613 237 295 1614 257 295 1615 276 295 1616 276 0 1617 257 0 1618 520 0 1619 276 0 1620 520 0 1621 277 0 1622 277 296 1623 520 296 1624 538 296 1625 538 0 1626 539 0 1627 277 0 1628 277 297 1629 539 297 1630 540 297 1631 277 298 1632 540 298 1633 541 298 1634 541 0 1635 542 0 1636 277 0 1637 277 299 1638 542 299 1639 543 299 1640 277 300 1641 543 300 1642 544 300 1643 533 301 1644 545 301 1645 518 301 1646 518 302 1647 545 302 1648 546 302 1649 518 303 1650 546 303 1651 534 303 1652 535 0 1653 547 0 1654 518 0 1655 518 304 1656 547 304 1657 548 304 1658 518 0 1659 548 0 1660 520 0 1661 520 305 1662 548 305 1663 549 305 1664 520 306 1665 549 306 1666 527 306 1667 550 307 1668 551 307 1669 526 307 1670 526 308 1671 551 308 1672 552 308 1673 526 309 1674 552 309 1675 553 309 1676 544 0 1677 554 0 1678 277 0 1679 277 310 1680 554 310 1681 555 310 1682 277 0 1683 555 0 1684 526 0 1685 526 311 1686 555 311 1687 556 311 1688 526 312 1689 556 312 1690 550 312 1691 553 0 1692 557 0 1693 526 0 1694 526 313 1695 557 313 1696 558 313 1697 526 314 1698 558 314 1699 525 314 1700 559 0 1701 560 0 1702 279 0 1703 526 315 1704 561 315 1705 562 315 1706 563 316 1707 564 316 1708 277 316 1709 277 317 1710 564 317 1711 565 317 1712 277 318 1713 565 318 1714 279 318 1715 279 319 1716 565 319 1717 566 319 1718 279 320 1719 566 320 1720 559 320 1721 567 0 1722 568 0 1723 561 0 1724 561 321 1725 568 321 1726 569 321 1727 561 322 1728 569 322 1729 562 322 1730 562 323 1731 570 323 1732 526 323 1733 526 324 1734 570 324 1735 571 324 1736 526 325 1737 571 325 1738 572 325 1739 277 326 1740 573 326 1741 574 326 1742 560 0 1743 575 0 1744 279 0 1745 279 327 1746 575 327 1747 576 327 1748 279 328 1749 576 328 1750 577 328 1751 572 0 1752 578 0 1753 526 0 1754 526 329 1755 578 329 1756 579 329 1757 526 330 1758 579 330 1759 580 330 1760 580 0 1761 581 0 1762 526 0 1763 526 331 1764 581 331 1765 582 331 1766 526 0 1767 582 0 1768 277 0 1769 277 332 1770 582 332 1771 583 332 1772 277 333 1773 583 333 1774 573 333 1775 574 334 1776 584 334 1777 277 334 1778 277 335 1779 584 335 1780 585 335 1781 277 336 1782 585 336 1783 563 336 1784 586 0 1785 587 0 1786 561 0 1787 561 337 1788 587 337 1789 588 337 1790 561 338 1791 588 338 1792 567 338 1793 577 0 1794 589 0 1795 279 0 1796 279 339 1797 589 339 1798 590 339 1799 279 340 1800 590 340 1801 591 340 1802 591 0 1803 592 0 1804 279 0 1805 279 341 1806 592 341 1807 593 341 1808 279 0 1809 593 0 1810 561 0 1811 561 342 1812 593 342 1813 594 342 1814 561 343 1815 594 343 1816 595 343 1817 595 0 1818 596 0 1819 561 0 1820 561 344 1821 596 344 1822 597 344 1823 561 345 1824 597 345 1825 586 345 1826 169 0 1827 171 0 1828 518 0 1829 518 0 1830 171 0 1831 598 0 1832 518 0 1833 598 0 1834 526 0 1835 526 0 1836 598 0 1837 599 0 1838 526 0 1839 599 0 1840 561 0 1841 339 0 1842 331 0 1843 337 0 1844 337 0 1845 331 0 1846 333 0 1847 337 0 1848 333 0 1849 447 0 1850 447 0 1851 333 0 1852 600 0 1853 599 0 1854 601 0 1855 561 0 1856 561 0 1857 601 0 1858 602 0 1859 561 0 1860 602 0 1861 279 0 1862 279 0 1863 602 0 1864 603 0 1865 279 0 1866 603 0 1867 177 0 1868 177 0 1869 603 0 1870 325 0 1871 177 0 1872 325 0 1873 175 0 1874 175 346 1875 325 346 1876 330 346 1877 1257 0 7239 1258 0 7240 1177 0 7241 1180 1294 7242 1233 1294 7243 1234 1294 7244 1242 0 7245 1243 0 7246 1179 0 7247 1176 1295 7248 1265 1295 7249 1266 1295 7250 1242 0 7251 1179 0 7252 1241 0 7253 1247 1296 7254 1248 1296 7255 1178 1296 7256 1178 1297 7257 1248 1297 7258 1249 1297 7259 1178 1298 7260 1249 1298 7261 1250 1298 7262 1253 0 7263 1254 0 7264 1178 0 7265 1178 1299 7266 1254 1299 7267 1255 1299 7268 1178 1300 7269 1255 1300 7270 1177 1300 7271 1177 1301 7272 1255 1301 7273 1256 1301 7274 1177 1302 7275 1256 1302 7276 1257 1302 7277 1266 0 7278 1267 0 7279 1176 0 7280 1176 1303 7281 1267 1303 7282 1231 1303 7283 1176 1304 7284 1231 1304 7285 1180 1304 7286 1180 1305 7287 1231 1305 7288 1232 1305 7289 1180 1306 7290 1232 1306 7291 1233 1306 7292 1187 1307 7293 1186 1307 7294 1238 1307 7295 1250 0 7296 1251 0 7297 1178 0 7298 1178 0 7299 1251 0 7300 1252 0 7301 1178 1308 7302 1252 1308 7303 1253 1308 7304 1262 0 7305 1263 0 7306 1176 0 7307 1176 1309 7308 1263 1309 7309 1264 1309 7310 1176 1310 7311 1264 1310 7312 1265 1310 7313 1191 0 7314 1239 0 7315 1179 0 7316 1179 1311 7317 1239 1311 7318 1240 1311 7319 1179 1312 7320 1240 1312 7321 1241 1312 7322 1191 0 7323 1190 0 7324 1239 0 7325 1239 1313 7326 1190 1313 7327 1189 1313 7328 1239 0 7329 1189 0 7330 1238 0 7331 1238 1314 7332 1189 1314 7333 1188 1314 7334 1238 1315 7335 1188 1315 7336 1187 1315 7337 1243 1316 7338 1244 1316 7339 1179 1316 7340 1179 1317 7341 1244 1317 7342 1245 1317 7343 1179 0 7344 1245 0 7345 1178 0 7346 1178 1318 7347 1245 1318 7348 1246 1318 7349 1178 1319 7350 1246 1319 7351 1247 1319 7352 1258 1320 7353 1259 1320 7354 1177 1320 7355 1177 1321 7356 1259 1321 7357 1260 1321 7358 1177 1322 7359 1260 1322 7360 1176 1322 7361 1176 1323 7362 1260 1323 7363 1261 1323 7364 1176 1324 7365 1261 1324 7366 1262 1324 7367 1234 0 7368 1235 0 7369 1180 0 7370 1180 1325 7371 1235 1325 7372 1236 1325 7373 1180 1326 7374 1236 1326 7375 1181 1326 7376 1181 1327 7377 1236 1327 7378 1237 1327 7379 1181 0 7380 1237 0 7381 1182 0 7382 1186 0 7383 1185 0 7384 1238 0 7385 1238 1328 7386 1185 1328 7387 1184 1328 7388 1238 0 7389 1184 0 7390 1237 0 7391 1237 1329 7392 1184 1329 7393 1183 1329 7394 1237 1330 7395 1183 1330 7396 1182 1330 7397 1565 0 9177 1529 0 9178 1401 0 9179 1401 1606 9180 1529 1606 9181 1530 1606 9182 1401 1607 9183 1530 1607 9184 1390 1607 9185 1530 1608 9186 1531 1608 9187 1390 1608 9188 1390 1609 9189 1531 1609 9190 1532 1609 9191 1390 1610 9192 1532 1610 9193 1533 1610 9194 1396 0 9195 1538 0 9196 1397 0 9197 1397 1611 9198 1538 1611 9199 1539 1611 9200 1599 0 9201 1600 0 9202 1403 0 9203 1403 1612 9204 1600 1612 9205 1601 1612 9206 1403 1613 9207 1601 1613 9208 1602 1613 9209 1533 1614 9210 1534 1614 9211 1390 1614 9212 1390 1615 9213 1534 1615 9214 1535 1615 9215 1390 0 9216 1535 0 9217 1391 0 9218 1391 1616 9219 1535 1616 9220 1536 1616 9221 1391 0 9222 1536 0 9223 1392 0 9224 1392 1617 9225 1536 1617 9226 1537 1617 9227 1396 0 9228 1395 0 9229 1538 0 9230 1538 1618 9231 1395 1618 9232 1394 1618 9233 1538 0 9234 1394 0 9235 1537 0 9236 1537 1619 9237 1394 1619 9238 1393 1619 9239 1537 1620 9240 1393 1620 9241 1392 1620 9242 1541 0 9243 1400 0 9244 1540 0 9245 1540 1621 9246 1400 1621 9247 1399 1621 9248 1540 0 9249 1399 0 9250 1539 0 9251 1539 1622 9252 1399 1622 9253 1398 1622 9254 1539 1623 9255 1398 1623 9256 1397 1623 9257 1568 0 9258 1569 0 9259 1402 0 9260 1402 1624 9261 1569 1624 9262 1570 1624 9263 1402 1625 9264 1570 1625 9265 1571 1625 9266 1412 1626 9267 1589 1626 9268 1590 1626 9269 1602 0 9270 1603 0 9271 1403 0 9272 1403 1627 9273 1603 1627 9274 1566 1627 9275 1403 0 9276 1566 0 9277 1402 0 9278 1402 1628 9279 1566 1628 9280 1567 1628 9281 1402 1629 9282 1567 1629 9283 1568 1629 9284 1421 0 9285 1420 0 9286 1588 0 9287 1588 1630 9288 1420 1630 9289 1419 1630 9290 1590 0 9291 1591 0 9292 1412 0 9293 1412 1631 9294 1591 1631 9295 1592 1631 9296 1412 0 9297 1592 0 9298 1404 0 9299 1404 1632 9300 1592 1632 9301 1593 1632 9302 1404 1633 9303 1593 1633 9304 1594 1633 9305 1544 0 9306 1446 0 9307 1543 0 9308 1543 0 9309 1446 0 9310 1400 0 9311 1543 0 9312 1400 0 9313 1542 0 9314 1542 0 9315 1400 0 9316 1541 0 9317 1544 0 9318 1545 0 9319 1446 0 9320 1446 1634 9321 1545 1634 9322 1546 1634 9323 1446 1635 9324 1546 1635 9325 1547 1635 9326 1441 0 9327 1555 0 9328 1442 0 9329 1442 0 9330 1555 0 9331 1443 0 9332 1441 0 9333 1440 0 9334 1555 0 9335 1555 1636 9336 1440 1636 9337 1439 1636 9338 1555 1637 9339 1439 1637 9340 1438 1637 9341 1574 0 9342 1401 0 9343 1573 0 9344 1573 1638 9345 1401 1638 9346 1402 1638 9347 1573 0 9348 1402 0 9349 1572 0 9350 1572 0 9351 1402 0 9352 1571 0 9353 1557 0 9354 1424 0 9355 1556 0 9356 1556 0 9357 1424 0 9358 1434 0 9359 1556 1639 9360 1434 1639 9361 1555 1639 9362 1555 1640 9363 1434 1640 9364 1444 1640 9365 1555 1641 9366 1444 1641 9367 1443 1641 9368 1589 0 9369 1412 0 9370 1588 0 9371 1588 1642 9372 1412 1642 9373 1422 1642 9374 1588 1643 9375 1422 1643 9376 1421 1643 9377 1552 0 9378 1435 0 9379 1551 0 9380 1551 1644 9381 1435 1644 9382 1445 1644 9383 1551 0 9384 1445 0 9385 1550 0 9386 1550 1645 9387 1445 1645 9388 1450 1645 9389 1550 1646 9390 1450 1646 9391 1449 1646 9392 1547 0 9393 1548 0 9394 1446 0 9395 1446 1647 9396 1548 1647 9397 1549 1647 9398 1446 1648 9399 1549 1648 9400 1447 1648 9401 1447 0 9402 1549 0 9403 1550 0 9404 1447 0 9405 1550 0 9406 1448 0 9407 1448 0 9408 1550 0 9409 1449 0 9410 1552 1649 9411 1553 1649 9412 1435 1649 9413 1435 1650 9414 1553 1650 9415 1554 1650 9416 1435 0 9417 1554 0 9418 1436 0 9419 1436 1651 9420 1554 1651 9421 1555 1651 9422 1436 1652 9423 1555 1652 9424 1437 1652 9425 1437 0 9426 1555 0 9427 1438 0 9428 1562 0 9429 1563 0 9430 1401 0 9431 1401 1653 9432 1563 1653 9433 1564 1653 9434 1401 1654 9435 1564 1654 9436 1565 1654 9437 1577 0 9438 1578 0 9439 1423 0 9440 1423 1655 9441 1578 1655 9442 1579 1655 9443 1423 1656 9444 1579 1656 9445 1580 1656 9446 1580 0 9447 1581 0 9448 1423 0 9449 1423 1657 9450 1581 1657 9451 1582 1657 9452 1423 1658 9453 1582 1658 9454 1413 1658 9455 1413 0 9456 1582 0 9457 1583 0 9458 1413 1659 9459 1583 1659 9460 1584 1659 9461 1584 0 9462 1585 0 9463 1413 0 9464 1413 1660 9465 1585 1660 9466 1586 1660 9467 1413 1661 9468 1586 1661 9469 1414 1661 9470 1414 1662 9471 1586 1662 9472 1587 1662 9473 1414 0 9474 1587 0 9475 1415 0 9476 1419 0 9477 1418 0 9478 1588 0 9479 1588 1663 9480 1418 1663 9481 1417 1663 9482 1588 0 9483 1417 0 9484 1587 0 9485 1587 0 9486 1417 0 9487 1416 0 9488 1587 0 9489 1416 0 9490 1415 0 9491 1594 1664 9492 1595 1664 9493 1404 1664 9494 1404 1665 9495 1595 1665 9496 1596 1665 9497 1404 0 9498 1596 0 9499 1405 0 9500 1405 1666 9501 1596 1666 9502 1597 1666 9503 1405 0 9504 1597 0 9505 1406 0 9506 1406 0 9507 1597 0 9508 1407 0 9509 1407 1667 9510 1597 1667 9511 1598 1667 9512 1407 0 9513 1598 0 9514 1408 0 9515 1403 0 9516 1411 0 9517 1599 0 9518 1599 1668 9519 1411 1668 9520 1410 1668 9521 1599 1669 9522 1410 1669 9523 1598 1669 9524 1598 1670 9525 1410 1670 9526 1409 1670 9527 1598 1671 9528 1409 1671 9529 1408 1671 9530 1428 0 9531 1427 0 9532 1560 0 9533 1574 0 9534 1575 0 9535 1401 0 9536 1401 1672 9537 1575 1672 9538 1576 1672 9539 1401 1673 9540 1576 1673 9541 1577 1673 9542 1423 0 9543 1433 0 9544 1577 0 9545 1577 1674 9546 1433 1674 9547 1432 1674 9548 1577 1675 9549 1432 1675 9550 1401 1675 9551 1401 0 9552 1432 0 9553 1431 0 9554 1401 1676 9555 1431 1676 9556 1430 1676 9557 1562 0 9558 1401 0 9559 1561 0 9560 1561 1677 9561 1401 1677 9562 1430 1677 9563 1561 1678 9564 1430 1678 9565 1560 1678 9566 1560 1679 9567 1430 1679 9568 1429 1679 9569 1560 1680 9570 1429 1680 9571 1428 1680 9572 1557 0 9573 1558 0 9574 1424 0 9575 1424 1681 9576 1558 1681 9577 1559 1681 9578 1424 0 9579 1559 0 9580 1425 0 9581 1425 1682 9582 1559 1682 9583 1560 1682 9584 1425 0 9585 1560 0 9586 1426 0 9587 1426 0 9588 1560 0 9589 1427 0 9590 1604 489 9591 1605 489 9592 5 489 9593 5 489 9594 1605 489 9595 7 489 9596 1606 487 9597 1604 487 9598 3 487 9599 3 487 9600 1604 487 9601 5 487 9602 1607 486 9603 1606 486 9604 1 486 9605 1 486 9606 1606 486 9607 3 486 9608 1605 485 9609 1607 485 9610 7 485 9611 7 485 9612 1607 485 9613 1 485 9614 1604 1683 9615 1606 1683 9616 1605 1683 9617 1605 1683 9618 1606 1683 9619 1607 1683 9620 278 0 9621 279 0 9622 177 0 9623 278 1699 9900 178 1699 9901 279 1699 9902

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1676 1685 9633 1652 1685 9634 1644 1685 9635 1659 0 9645 1642 0 9646 1619 0 9647 1671 0 9651 1645 0 9652 1635 0 9653 1655 1686 9654 1631 1686 9655 1612 1686 9656 1663 0 9663 1624 0 9664 1615 0 9665 1688 0 9666 1627 0 9667 1666 0 9668 1664 0 9672 1641 0 9673 1622 0 9674 1652 0 9681 1657 0 9682 1691 0 9683 1620 0 9684 1690 0 9685 1640 0 9686 1689 0 9693 1614 0 9694 1661 0 9695 1684 0 9699 1638 0 9700 1674 0 9701 1621 0 9702 1688 0 9703 1639 0 9704 1687 0 9711 1608 0 9712 1654 0 9713 1686 0 9717 1634 0 9718 1670 0 9719 1616 0 9720 1686 0 9721 1625 0 9722 1675 0 9723 1647 0 9724 1643 0 9725 1685 0 9729 1618 0 9730 1658 0 9731 1613 0 9738 1684 0 9739 1632 0 9740 1667 0 9741 1646 0 9742 1628 0 9743 1683 0 9747 1621 0 9748 1662 0 9749 1647 0 9762 1653 0 9763 1681 0 9764 1646 0 9771 1663 0 9772 1679 0 9773 1645 0 9780 1664 0 9781 1677 0 9782 1632 0 9783 1676 0 9784 1678 0 9785 1642 0 9786 1675 0 9787 1680 0 9788 1641 1686 9789 1665 1686 9790 1682 1686 9791 1636 0 9792 1683 0 9793 1648 0 9794 1638 0 9798 1685 0 9799 1649 0 9800 1637 0 9804 1687 0 9805 1650 0 9806 1629 0 9810 1689 0 9811 1651 0 9812 1690 0 9813 1637 0 9814 1673 0 9815 1625 0 9816 1669 0 9817 1692 0 9818 1676 1708 9954 1692 1708 9955 1652 1708 9956 1659 0 9966 1677 0 9967 1642 0 9968 1671 0 9972 1678 0 9973 1645 0 9974 1655 1708 9975 1679 1708 9976 1631 1708 9977 1663 0 9984 1681 0 9985 1624 0 9986 1688 0 9987 1650 0 9988 1627 0 9989 1664 0 9993 1691 0 9994 1641 0 9995 1652 0 10002 1633 0 10003 1657 0 10004 1620 0 10005 1668 0 10006 1690 0 10007 1689 0 10014 1630 0 10015 1614 0 10016 1684 0 10020 1648 0 10021 1638 0 10022 1621 0 10023 1673 0 10024 1688 0 10025 1687 0 10032 1623 0 10033 1608 0 10034 1686 0 10038 1649 0 10039 1634 0 10040 1616 0 10041 1674 0 10042 1686 0 10043 1675 0 10044 1682 0 10045 1647 0 10046 1685 0 10050 1639 0 10051 1618 0 10052 1613 0 10059 1672 0 10060 1684 0 10061 1667 0 10062 1680 0 10063 1646 0 10064 1683 0 10068 1640 0 10069 1621 0 10070 1647 0 10083 1626 0 10084 1653 0 10085 1646 0 10092 1643 0 10093 1663 0 10094 1645 0 10101 1644 0 10102 1664 0 10103 1632 0 10104 1616 0 10105 1676 0 10106 1642 0 10107 1622 0 10108 1675 0 10109 1641 1709 10110 1617 1709 10111 1665 1709 10112 1636 0 10113 1660 0 10114 1683 0 10115 1638 0 10119 1662 0 10120 1685 0 10121 1637 0 10125 1661 0 10126 1687 0 10127 1629 0 10131 1656 0 10132 1689 0 10133 1690 0 10134 1651 0 10135 1637 0 10136 1625 0 10137 1610 0 10138 1669 0 10139

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1692 0 9630 1633 0 9631 1652 0 9632 1680 0 9636 1643 0 9637 1646 0 9638 1678 0 9639 1644 0 9640 1645 0 9641 1660 0 9642 1640 0 9643 1683 0 9644 1677 0 9648 1622 0 9649 1642 0 9650 1682 0 9657 1626 0 9658 1647 0 9659 1662 0 9660 1639 0 9661 1685 0 9662 1673 0 9669 1650 0 9670 1688 0 9671 1616 1687 9675 1692 1687 9676 1676 1687 9677 1644 0 9678 1691 0 9679 1664 0 9680 1672 0 9687 1648 0 9688 1684 0 9689 1640 0 9690 1673 0 9691 1621 0 9692 1651 0 9696 1661 0 9697 1637 0 9698 1674 0 9705 1649 0 9706 1686 0 9707 1639 0 9708 1666 0 9709 1618 0 9710 1650 0 9714 1654 0 9715 1627 0 9716 1625 0 9726 1670 0 9727 1610 0 9728 1649 0 9732 1658 0 9733 1634 0 9734 1681 0 9735 1609 0 9736 1624 0 9737 1632 0 9744 1674 0 9745 1616 0 9746 1648 0 9750 1662 0 9751 1638 0 9752 1679 0 9753 1615 0 9754 1631 0 9755 1622 0 9756 1682 0 9757 1675 0 9758 1643 0 9759 1681 0 9760 1663 0 9761 1619 0 9765 1680 0 9766 1667 0 9767 1628 1688 9768 1679 1688 9769 1655 1688 9770 1613 0 9774 1678 0 9775 1671 0 9776 1635 0 9777 1677 0 9778 1659 0 9779 1656 0 9795 1630 0 9796 1689 0 9797 1661 0 9801 1623 0 9802 1687 0 9803 1691 1687 9807 1617 1687 9808 1641 1687 9809 1668 0 9819 1651 0 9820 1690 0 9821 1692 0 9951 1669 0 9952 1633 0 9953 1680 0 9957 1675 0 9958 1643 0 9959 1678 0 9960 1676 0 9961 1644 0 9962 1660 0 9963 1620 0 9964 1640 0 9965 1677 0 9969 1664 0 9970 1622 0 9971 1682 0 9978 1665 0 9979 1626 0 9980 1662 0 9981 1621 0 9982 1639 0 9983 1673 0 9990 1637 0 9991 1650 0 9992 1616 0 9996 1625 0 9997 1692 0 9998 1644 0 9999 1652 0 10000 1691 0 10001 1672 0 10008 1636 0 10009 1648 0 10010 1640 0 10011 1690 0 10012 1673 0 10013 1651 0 10017 1689 0 10018 1661 0 10019 1674 0 10026 1638 0 10027 1649 0 10028 1639 0 10029 1688 0 10030 1666 0 10031 1650 0 10035 1687 0 10036 1654 0 10037 1625 0 10047 1686 0 10048 1670 0 10049 1649 0 10053 1685 0 10054 1658 0 10055 1681 0 10056 1653 0 10057 1609 0 10058 1632 0 10065 1684 0 10066 1674 0 10067 1648 0 10071 1683 0 10072 1662 0 10073 1679 0 10074 1663 0 10075 1615 0 10076 1622 0 10077 1641 0 10078 1682 0 10079 1643 0 10080 1647 0 10081 1681 0 10082 1619 0 10086 1642 0 10087 1680 0 10088 1628 0 10089 1646 0 10090 1679 0 10091 1613 0 10095 1632 0 10096 1678 0 10097 1635 0 10098 1645 0 10099 1677 0 10100 1656 0 10116 1611 0 10117 1630 0 10118 1661 0 10122 1614 0 10123 1623 0 10124 1691 0 10128 1657 0 10129 1617 0 10130 1668 0 10140 1629 0 10141 1651 0 10142

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1023 1182 6558 165 1182 6559 1025 1182 6560 1025 1183 6561 165 1183 6562 163 1183 6563 1027 1184 6564 1025 1184 6565 163 1184 6566 1027 1185 6567 163 1185 6568 161 1185 6569 1027 1186 6570 161 1186 6571 1029 1186 6572 1029 1187 6573 161 1187 6574 159 1187 6575 1029 1188 6576 159 1188 6577 1031 1188 6578 1031 1189 6579 159 1189 6580 157 1189 6581 1031 1190 6582 157 1190 6583 1033 1190 6584 1033 1191 6585 157 1191 6586 155 1191 6587

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1141 1085 6249 78 1085 6250 1140 1085 6251 1140 1086 6252 78 1086 6253 80 1086 6254 1140 1087 6255 80 1087 6256 1139 1087 6257 1139 1088 6258 80 1088 6259 82 1088 6260 1139 1089 6261 82 1089 6262 1138 1089 6263 1138 1090 6264 82 1090 6265 84 1090 6266 1138 1091 6267 84 1091 6268 1137 1091 6269 1137 1092 6270 84 1092 6271 86 1092 6272 86 1689 9822 1136 1689 9823 1137 1689 9824 86 1689 10143 88 1689 10144 1136 1689 10145

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1112 1106 6321 70 1106 6322 1110 1106 6323 1110 1107 6324 70 1107 6325 68 1107 6326 1110 1108 6327 68 1108 6328 1108 1108 6329 1108 1109 6330 68 1109 6331 66 1109 6332 1108 1110 6333 66 1110 6334 1106 1110 6335 1106 1111 6336 66 1111 6337 64 1111 6338 1106 1112 6339 64 1112 6340 1104 1112 6341 1104 1113 6342 64 1113 6343 26 1113 6344 1104 1114 6345 26 1114 6346 1102 1114 6347 1102 1115 6348 26 1115 6349 25 1115 6350

+
+ + + + + 3 3 3 3 3 3 3 3 +

1078 1133 6405 42 1133 6406 1076 1133 6407 1076 1134 6408 42 1134 6409 41 1134 6410 1076 1135 6411 41 1135 6412 1074 1135 6413 1074 1136 6414 41 1136 6415 23 1136 6416 1072 1137 6417 23 1137 6418 22 1137 6419 1072 1138 6420 22 1138 6421 1070 1138 6422 1070 1139 6423 22 1139 6424 99 1139 6425 1072 1137 9825 1074 1137 9826 23 1137 9827

+
+
+
+
+ + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.001175366 0 0 -15 0 8.87376e-11 -0.001175366 18 0 0.001175366 8.87376e-11 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.config new file mode 100755 index 0000000..50a42ad --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.config @@ -0,0 +1,11 @@ + + + MIT_Tunnel + 1.0 + model.sdf + + Abhishek Agarwal + abhia@mit.edu + + Building 32-081 + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.sdf new file mode 100755 index 0000000..9e1e0fc --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/MIT_Tunnel/model.sdf @@ -0,0 +1,917 @@ + + + + 3.61177 6.74312 0 0 -0 0 + + + + + 32.6917 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 32.6917 0.15 2.5 + + + + + 1 1 1 1 + + + -19.1952 15.5558 0 0 0 -0.001042 + + + + + + 8.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.5 0.15 2.5 + + + + + 1 1 1 1 + + + -2.92483 11.3639 0 0 0 -1.5708 + + + + + + 18.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 18.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.37517 7.18889 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 15.0799 4.96726 0 0 0 -1.8326 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 13.1846 2.74563 0 0 -0 3.14159 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 10.9654 1.82639 0 0 0 -2.35619 + + + + + + 24.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 24.25 0.15 2.5 + + + + + 1 1 1 1 + + + -52.25 -18.2689 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 10.0461 -0.142849 0 0 0 -1.5708 + + + + + + 5.08891 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.08891 0.15 2.5 + + + + + 1 1 1 1 + + + 8.53852 -3.14869 0 0 0 -2.22749 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.23091 -5.10454 0 0 -0 3.14159 + + + + + + 2.59216 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.59216 0.15 2.5 + + + + + 1 1 1 1 + + + 4.6163 -6.01417 0 0 0 -2.30114 + + + + + + 3 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 3 0.15 2.5 + + + + + 1 1 1 1 + + + 3.80168 -8.34882 0 0 0 -1.5708 + + + + + + 2.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.5 0.15 2.5 + + + + + 1 1 1 1 + + + 2.62668 -9.77382 0 0 -0 3.14159 + + + + + + 4.15096 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.15096 0.15 2.5 + + + + + 1 1 1 1 + + + 0.152007 -11.2946 0 0 0 -2.27796 + + + + + + 5.87777 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.87777 0.15 2.5 + + + + + 1 1 1 1 + + + -1.14312 -15.679 0 0 0 -1.56921 + + + + + + 65.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 65.5 0.15 2.5 + + + + + 1 1 1 1 + + + 31.5103 -18.5427 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 64.1853 -20.8427 0 0 0 -1.5708 + + + + + + 5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5 0.15 2.5 + + + + + 1 1 1 1 + + + -64.3 -20.6939 0 0 0 -1.5708 + + + + + + 128.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 128.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1e-06 -23.1189 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + -37.9 23.0811 0 0 -0 0 + + + + + + 31.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 31.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4175 -2.72616 0 0 -0 1.5708 + + + + + + 30 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 30 0.15 2.5 + + + + + 1 1 1 1 + + + -20.4925 13.0738 0 0 -0 0 + + + + + + 8.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.75 0.15 2.5 + + + + + 1 1 1 1 + + + -5.56745 8.77384 0 0 0 -1.5708 + + + + + + 13.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 13.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1.23255 4.47384 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 8.03255 3.42384 0 0 0 -1.5708 + + + + + + 15.8243 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 15.8243 0.15 2.5 + + + + + 1 1 1 1 + + + 2.89068 -3.54071 0 0 0 -2.28642 + + + + + + 41.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 41.5 0.15 2.5 + + + + + 1 1 1 1 + + + -40.2 2.40609 0 0 -0 1.5708 + + + + + + 1 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1 0.15 2.5 + + + + + 1 1 1 1 + + + -2.6617 -9.34526 0 0 -0 2.87979 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.47221 -9.92808 0 0 0 -2.0944 + + + + + + 1.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.5 0.15 2.5 + + + + + 1 1 1 1 + + + -3.39492 -11.0982 0 0 0 -0.785398 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.12975 -11.7876 0 0 0 -2.35619 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.64188 -11.9998 0 0 -0 3.14159 + + + + + + 7.13355 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.13355 0.15 2.5 + + + + + 1 1 1 1 + + + -5.21192 -15.2524 0 0 0 -1.94306 + + + + + + 29 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 29 0.15 2.5 + + + + + 1 1 1 1 + + + -20.9925 -18.5262 0 0 -0 0 + + + + + + 7.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4657 19.3427 0 0 0 -1.5708 + + 1 + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png new file mode 100755 index 0000000..e7da3a0 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/meshes/Marker0.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/meshes/Marker0.dae new file mode 100755 index 0000000..ad2e324 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/meshes/Marker0.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker0.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_4.sdf new file mode 100755 index 0000000..bf35114 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_5.sdf new file mode 100755 index 0000000..b258bab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.config new file mode 100755 index 0000000..0b661f4 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.config @@ -0,0 +1,17 @@ + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.sdf new file mode 100755 index 0000000..7cf00bf --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker0/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png new file mode 100755 index 0000000..44c03b4 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/meshes/Marker1.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/meshes/Marker1.dae new file mode 100755 index 0000000..08d0848 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/meshes/Marker1.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker1.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_4.sdf new file mode 100755 index 0000000..19cf0d7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_5.sdf new file mode 100755 index 0000000..a3679dd --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.config new file mode 100755 index 0000000..7ef2b4a --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.config @@ -0,0 +1,17 @@ + + Marker1 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.sdf new file mode 100755 index 0000000..3155a67 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker1/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png new file mode 100755 index 0000000..2a203ef Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/meshes/Marker10.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/meshes/Marker10.dae new file mode 100755 index 0000000..98a2b82 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/meshes/Marker10.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker10.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_4.sdf new file mode 100755 index 0000000..8b8815d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_5.sdf new file mode 100755 index 0000000..cb99cb3 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.config new file mode 100755 index 0000000..2f33aaa --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.config @@ -0,0 +1,17 @@ + + Marker10 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.sdf new file mode 100755 index 0000000..b3411e6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker10/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png new file mode 100755 index 0000000..2303c36 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/meshes/Marker11.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/meshes/Marker11.dae new file mode 100755 index 0000000..e575966 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/meshes/Marker11.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker11.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_4.sdf new file mode 100755 index 0000000..ed845f8 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_5.sdf new file mode 100755 index 0000000..fd2e9f7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.config new file mode 100755 index 0000000..d3a850b --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.config @@ -0,0 +1,17 @@ + + Marker11 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.sdf new file mode 100755 index 0000000..cf63a96 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker11/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png new file mode 100755 index 0000000..704b9bb Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/meshes/Marker12.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/meshes/Marker12.dae new file mode 100755 index 0000000..95674a9 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/meshes/Marker12.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker12.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_4.sdf new file mode 100755 index 0000000..9c2663a --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_5.sdf new file mode 100755 index 0000000..c19c0ad --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.config new file mode 100755 index 0000000..6938798 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.config @@ -0,0 +1,17 @@ + + Marker12 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.sdf new file mode 100755 index 0000000..689af0c --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker12/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png new file mode 100755 index 0000000..79a7b32 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/meshes/Marker13.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/meshes/Marker13.dae new file mode 100755 index 0000000..bf0a650 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/meshes/Marker13.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker13.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_4.sdf new file mode 100755 index 0000000..379023e --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_5.sdf new file mode 100755 index 0000000..72f5259 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.config new file mode 100755 index 0000000..982712d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.config @@ -0,0 +1,17 @@ + + Marker13 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.sdf new file mode 100755 index 0000000..4df884a --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker13/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png new file mode 100755 index 0000000..3337cda Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/meshes/Marker14.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/meshes/Marker14.dae new file mode 100755 index 0000000..71cee4b --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/meshes/Marker14.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker14.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_4.sdf new file mode 100755 index 0000000..1ca8533 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_5.sdf new file mode 100755 index 0000000..8dfa8a6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.config new file mode 100755 index 0000000..a247db7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.config @@ -0,0 +1,17 @@ + + Marker14 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.sdf new file mode 100755 index 0000000..8d512f7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker14/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png new file mode 100755 index 0000000..df61cc7 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/meshes/Marker15.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/meshes/Marker15.dae new file mode 100755 index 0000000..4100937 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/meshes/Marker15.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker15.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_4.sdf new file mode 100755 index 0000000..04fb049 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_5.sdf new file mode 100755 index 0000000..b6e79cd --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.config new file mode 100755 index 0000000..6cfc9fe --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.config @@ -0,0 +1,17 @@ + + Marker15 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.sdf new file mode 100755 index 0000000..3da547f --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker15/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png new file mode 100755 index 0000000..84cea70 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/meshes/Marker16.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/meshes/Marker16.dae new file mode 100755 index 0000000..e309ae9 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/meshes/Marker16.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker16.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_4.sdf new file mode 100755 index 0000000..967d534 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_5.sdf new file mode 100755 index 0000000..bc4eae9 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.config new file mode 100755 index 0000000..7e7ffb7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.config @@ -0,0 +1,17 @@ + + Marker16 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.sdf new file mode 100755 index 0000000..629d5a3 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker16/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png new file mode 100755 index 0000000..8ca4a9d Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/meshes/Marker17.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/meshes/Marker17.dae new file mode 100755 index 0000000..c5fd548 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/meshes/Marker17.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker17.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_4.sdf new file mode 100755 index 0000000..eec5c67 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_5.sdf new file mode 100755 index 0000000..4012a53 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.config new file mode 100755 index 0000000..00af1b1 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.config @@ -0,0 +1,17 @@ + + Marker17 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.sdf new file mode 100755 index 0000000..48d7ab4 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker17/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png new file mode 100755 index 0000000..d2cb1ea Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/meshes/Marker2.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/meshes/Marker2.dae new file mode 100755 index 0000000..ecdc879 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/meshes/Marker2.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker2.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_4.sdf new file mode 100755 index 0000000..4afebd4 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_5.sdf new file mode 100755 index 0000000..1433e1f --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.config new file mode 100755 index 0000000..fa54371 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.config @@ -0,0 +1,17 @@ + + Marker2 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.sdf new file mode 100755 index 0000000..21e4a9b --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker2/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png new file mode 100755 index 0000000..05a3281 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/meshes/Marker3.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/meshes/Marker3.dae new file mode 100755 index 0000000..27855f8 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/meshes/Marker3.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker3.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_4.sdf new file mode 100755 index 0000000..0d4a4bd --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_5.sdf new file mode 100755 index 0000000..e4894a7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.config new file mode 100755 index 0000000..047cf17 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.config @@ -0,0 +1,17 @@ + + Marker3 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.sdf new file mode 100755 index 0000000..fe58f24 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker3/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png new file mode 100755 index 0000000..bc7830b Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/meshes/Marker4.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/meshes/Marker4.dae new file mode 100755 index 0000000..58d0649 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/meshes/Marker4.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker4.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_4.sdf new file mode 100755 index 0000000..2c67932 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_5.sdf new file mode 100755 index 0000000..1dae276 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.config new file mode 100755 index 0000000..2e9fd7e --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.config @@ -0,0 +1,17 @@ + + Marker4 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.sdf new file mode 100755 index 0000000..cc4d203 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker4/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png new file mode 100755 index 0000000..5d3113c Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/meshes/Marker5.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/meshes/Marker5.dae new file mode 100755 index 0000000..67f2252 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/meshes/Marker5.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker5.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_4.sdf new file mode 100755 index 0000000..dd62bd7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_5.sdf new file mode 100755 index 0000000..d7702ad --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.config new file mode 100755 index 0000000..0f0e870 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.config @@ -0,0 +1,17 @@ + + Marker5 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.sdf new file mode 100755 index 0000000..07db97d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker5/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png new file mode 100755 index 0000000..cb00f15 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/meshes/Marker6.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/meshes/Marker6.dae new file mode 100755 index 0000000..956fb0c --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/meshes/Marker6.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker6.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_4.sdf new file mode 100755 index 0000000..93e6a27 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_5.sdf new file mode 100755 index 0000000..4d462fe --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.config new file mode 100755 index 0000000..c4f59c6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.config @@ -0,0 +1,17 @@ + + Marker6 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.sdf new file mode 100755 index 0000000..6aa9902 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker6/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png new file mode 100755 index 0000000..41ddc8b Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/meshes/Marker7.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/meshes/Marker7.dae new file mode 100755 index 0000000..f486fbf --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/meshes/Marker7.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker7.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_4.sdf new file mode 100755 index 0000000..d86bb12 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_5.sdf new file mode 100755 index 0000000..266b6d7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.config new file mode 100755 index 0000000..b4af58e --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.config @@ -0,0 +1,17 @@ + + Marker7 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.sdf new file mode 100755 index 0000000..cb6db5f --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker7/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png new file mode 100755 index 0000000..dec84a2 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/meshes/Marker8.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/meshes/Marker8.dae new file mode 100755 index 0000000..0ec7bf6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/meshes/Marker8.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker8.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_4.sdf new file mode 100755 index 0000000..8f15643 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_5.sdf new file mode 100755 index 0000000..cb4f7b6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.config new file mode 100755 index 0000000..317baae --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.config @@ -0,0 +1,17 @@ + + Marker8 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.sdf new file mode 100755 index 0000000..12ab587 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker8/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png new file mode 100755 index 0000000..358cb97 Binary files /dev/null and b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png differ diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/meshes/Marker9.dae b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/meshes/Marker9.dae new file mode 100755 index 0000000..dedced0 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/meshes/Marker9.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker9.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_4.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_4.sdf new file mode 100755 index 0000000..875f1f1 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_5.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_5.sdf new file mode 100755 index 0000000..e6adfe5 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.config new file mode 100755 index 0000000..4daf6ea --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.config @@ -0,0 +1,17 @@ + + Marker9 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.sdf new file mode 100755 index 0000000..ec27065 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/ar_tags/marker9/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.config new file mode 100755 index 0000000..9baefb6 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.config @@ -0,0 +1,7 @@ + + + cone + 1.0 + model.sdf + A bright orange cone + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.sdf new file mode 100755 index 0000000..e5875eb --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/cone/model.sdf @@ -0,0 +1,27 @@ + + + + + + + + model://racecar_description/meshes/cone.dae + + + + + + + model://racecar_description/meshes/cone.dae + + + + 1 0.2 0 1 + 1 0.2 0 1 + 0.1 0.1 0.1 1 + 0 0 0 0 + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.sdf new file mode 100755 index 0000000..e1da33e --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/parking_1/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + 1 + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.config b/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.sdf b/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.sdf new file mode 100755 index 0000000..18d303b --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/models/walker_racecourse/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + 1 + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/package.xml b/f110_utils/nodes/slam_tuner/config/f110_description/package.xml new file mode 100755 index 0000000..f0b5eff --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/package.xml @@ -0,0 +1,49 @@ + + + f110_description + 0.0.0 + The racecar_description package + + + + + ubuntu + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/urdf/F110.xacro b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/F110.xacro new file mode 100644 index 0000000..c8d1b61 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/F110.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/urdf/macros.xacro b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/macros.xacro new file mode 100755 index 0000000..73d4f94 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/macros.xacro @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/urdf/materials.xacro b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/materials.xacro new file mode 100755 index 0000000..49f4bc1 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/materials.xacro @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.gazebo b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.gazebo new file mode 100755 index 0000000..ab4ff78 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.gazebo @@ -0,0 +1,135 @@ + + + + + + + + + + + Gazebo/Blue + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + /racecar + gazebo_ros_control/DefaultRobotHWSim + + + + + + + Gazebo/Grey + + 0 0 0.0124 0 0 0 + true + 40 + + + + 1081 + 1 + -2.3561944902 + 2.3561944902 + + + + 0.1 + 10.0 + 0.01 + + + 0.0 + 0.01 + + + + /scan + laser + + + + + + + + + + 30.0 + + + 0.8709216071359963 + + 640 + 480 + B8G8R8 + + + 0.02 + 300 + + + gaussian + 0.0 + 0.007 + + + + true + 30.0 + /camera/zed + rgb/image_rect_color + rgb/camera_info + camera_link + 0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + + + + diff --git a/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.xacro b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.xacro new file mode 100755 index 0000000..2c25e89 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/config/f110_description/urdf/racecar.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/f110_utils/nodes/slam_tuner/launch/tuner.launch b/f110_utils/nodes/slam_tuner/launch/tuner.launch new file mode 100644 index 0000000..e4198d9 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/launch/tuner.launch @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # inertial odometry + + # 'none' or 'ekf' + + + + + + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/package.xml b/f110_utils/nodes/slam_tuner/package.xml new file mode 100644 index 0000000..5305fa2 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/package.xml @@ -0,0 +1,69 @@ + + + slam_tuner + 0.0.0 + The slam_tuner package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + amcl + slam_toolbox + + + + + + + diff --git a/f110_utils/nodes/slam_tuner/rviz/tuner.rviz b/f110_utils/nodes/slam_tuner/rviz/tuner.rviz new file mode 100644 index 0000000..588bcfe --- /dev/null +++ b/f110_utils/nodes/slam_tuner/rviz/tuner.rviz @@ -0,0 +1,369 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Status1 + - /Map New1/Status1 + - /PF2 Inferred Pose w/Cov1/Covariance1 + - /PF2 Inferred Pose w/Cov1/Covariance1/Position1 + Splitter Ratio: 0.6051872968673706 + Tree Height: 701 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Name: Time + SyncMode: 0 + SyncSource: "" +Preferences: + PromptSaveOnExit: true +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/Axes + Enabled: true + Length: 1 + Name: Axes + Radius: 0.05000000074505806 + Reference Frame: + Show Trail: false + Value: true + - Class: rviz/TF + Enabled: true + Filter (blacklist): "" + Filter (whitelist): "" + Frame Timeout: 15 + Frames: + All Enabled: false + base_link: + Value: true + imu: + Value: true + laser: + Value: true + map: + Value: true + odom: + Value: true + Marker Alpha: 1 + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: true + Tree: + base_link: + imu: + {} + laser: + {} + map: + odom: + {} + Update Interval: 0 + Value: true + - Alpha: 0.699999988079071 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 0.699999988079071 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map New + Topic: /map_new + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.03999999910593033 + Style: Flat Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: false + Enabled: false + Keep: 5 + Name: EKF Odom (Red) + Position Tolerance: 0.10000000149011612 + Queue Size: 10 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 255; 25; 0 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: /state_estimation/odom + Unreliable: false + Value: false + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 114; 159; 207 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Tracked Pose (Blue) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /tracked_pose + Unreliable: false + Value: true + - Alpha: 1 + Arrow Length: 0.30000001192092896 + Axes Length: 0.30000001192092896 + Axes Radius: 0.009999999776482582 + Class: rviz/PoseArray + Color: 255; 25; 0 + Enabled: true + Head Length: 0.07000000029802322 + Head Radius: 0.029999999329447746 + Name: PF Particles + Queue Size: 10 + Shaft Length: 0.23000000417232513 + Shaft Radius: 0.009999999776482582 + Shape: Arrow (Flat) + Topic: /pf/viz/particles + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 173; 127; 168 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Car State Pose (Pink) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /car_state_bag/pose + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: CarState Pose (Red) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /car_state/pose + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 252; 233; 79 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: PF2 Pose (Yellow) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /tracked_pose/pf2 + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 85; 87; 83 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: Cartographer Pose (Black) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /tracked_pose/cartographer + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/PoseWithCovariance + Color: 255; 25; 0 + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.6000000238418579 + Color: 204; 51; 204 + Scale: 2 + Value: true + Value: true + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: PF2 Inferred Pose w/Cov + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /tracked_pose/with_covariance + Unreliable: false + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Default Light: true + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Theta std deviation: 0.2617993950843811 + Topic: /initialpose + X std deviation: 0.5 + Y std deviation: 0.5 + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Angle: -0.030001956969499588 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Scale: 36.0793571472168 + Target Frame: + X: 10.94689655303955 + Y: 0.47847145795822144 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1242 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001900000043cfc0200000009fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed0000039500000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003d00000348000000c900fffffffb0000000a00560069006500770073010000038b000000ee000000a400fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f0000035afc0200000002fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005970000003efc0100000002fb0000000800540069006d0065010000000000000597000003bc00fffffffb0000000800540069006d00650100000000000004500000000000000000000004010000043c00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1431 + X: 960 + Y: 27 diff --git a/f110_utils/nodes/slam_tuner/src/errormetrics/__init__.py b/f110_utils/nodes/slam_tuner/src/errormetrics/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/slam_tuner/src/errormetrics/csv_io.py b/f110_utils/nodes/slam_tuner/src/errormetrics/csv_io.py new file mode 100644 index 0000000..07d9f0a --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/errormetrics/csv_io.py @@ -0,0 +1,41 @@ +import numpy as np +import csv + +from typing import List, Tuple + +# Save a list of poses + + +def save_csv(data_list: List[Tuple], filename: str, header: List[str] = None) -> None: + '''Saves an arbitrary data file (list of tuples) into a named CSV''' + + if filename[-4:] != ".csv": + filename += ".csv" + + with open(filename, 'w') as file: + writer = csv.writer(file) + + if header is not None: + writer.writerow(header) + + for data in data_list: + writer.writerow(data) + + +def read_csv(filename: str, has_header=True) -> List[Tuple]: + '''Reads a data file (list of tuples) from a named CSV. + + If has_header, then we skip the first row.''' + out = [] + + with open(filename, 'r') as file: + reader = csv.reader(file) + + if has_header: + print(f"Opened file {filename} has header:\n", next(reader, None)) + + for row in reader: + elem = tuple(map(float, row)) + out.append(elem) + + return out diff --git a/f110_utils/nodes/slam_tuner/src/errormetrics/plot_things.py b/f110_utils/nodes/slam_tuner/src/errormetrics/plot_things.py new file mode 100644 index 0000000..69ce453 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/errormetrics/plot_things.py @@ -0,0 +1,43 @@ +import numpy as np +import matplotlib.pyplot as plt +import csv + +colors = [ + 'b', + 'r', + 'g', + 'c', + 'm', + 'y', + 'k' +] + + +# Plots an arbitrary trajectory from CSVs +def plot_things(ax, filenames, scale=1.0): + for c_idx, filename in enumerate(filenames): + color = colors[c_idx % len(colors)] # wraparound + + x = [] + y = [] + theta = [] + + with open(filename, newline='') as f: + reader = csv.reader(f) + next(reader, None) # skip the headers + for row in reader: + x.append(float(row[1])) + y.append(float(row[2])) + theta.append(float(row[3])) + + for i in range(len(x)): + label = f"{filename} trajectory" if i==0 else None + ax.arrow(x[i], y[i], scale*np.cos(theta[i]), scale*np.sin(theta[i]), + width=scale*0.05, color=color, + label=label + ) + + ax.legend() + ax.grid() + ax.set_aspect('equal') + ax.set_title('Trajectory Comparison') \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/src/errormetrics/utils.py b/f110_utils/nodes/slam_tuner/src/errormetrics/utils.py new file mode 100644 index 0000000..d1b8925 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/errormetrics/utils.py @@ -0,0 +1,70 @@ +import numpy as np + + +def ang_btw_vec(v1, v2): + ''' Calculate angle between 2d vectors using dot product formulation ''' + + num = np.dot(v1, v2) + den = np.linalg.norm(v1) * np.linalg.norm(v2) + + if np.allclose(den, 0.0): + return 0.0 + + # Clamp to a valid region + theta = max(min(1.0, num/den), -1.0) + + return np.arccos(theta) + + +def transform_stuff(mo, obs): + res = [] + + for i in range(min(len(obs), len(mo))): + mo_x, mo_y, mo_theta, _ = mo[i] + t_mo = np.array([[np.cos(mo_theta), -np.sin(mo_theta), mo_x], + [np.sin(mo_theta), np.cos(mo_theta), mo_y], + [0, 0, 1]]) + + obs_x, obs_y, obs_theta, t = obs[i] + t_obs = np.array([[np.cos(obs_theta), -np.sin(obs_theta), obs_x], + [np.sin(obs_theta), np.cos(obs_theta), obs_y], + [0, 0, 1]]) + + t_res = t_mo @ t_obs # transformation matrix shenanigans + theta = np.arctan2(t_res[1, 0], t_res[0, 0]) + x = t_res[0, 2] + y = t_res[1, 2] + + res.append((x, y, theta, t)) + + return res + + +def trim_start_end_idx(data, start_time, end_time): + ''' + Trims a dataset to find indexes between start_time and end_time + + This helps to temporally align our dataset because we always replay the same source ROSBAG. + ''' + assert start_time >= 0.0 + assert start_time < end_time + + start = data[0][3] + has_started = False + has_ended = False + start_idx = 0 + end_idx = -1 + + for i, (_, _, _, t) in enumerate(data): + if t-start > start_time and has_started is False: + has_started = True + start_idx = i + + if t-start > end_time and has_ended is False: + has_ended = True + end_idx = i-1 + + break + + # print(start_idx, end_idx) + return data[start_idx:end_idx] diff --git a/f110_utils/nodes/slam_tuner/src/path_recorder.py b/f110_utils/nodes/slam_tuner/src/path_recorder.py new file mode 100644 index 0000000..ceef191 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/path_recorder.py @@ -0,0 +1,53 @@ + +import rospy +from nav_msgs.msg import Odometry +from geometry_msgs.msg import Pose, PoseStamped, PoseWithCovarianceStamped +from tf.transformations import euler_from_quaternion + +import csv + +class PathRecorder: + ''' + This node subscribes to a Odometry, Pose, or PoseWithCovarainceStamped source and saves it to a CSV file. + ''' + + def __init__(self) -> None: + rospy.init_node("path_recorder_node", anonymous=True) + + self.SUB_TOPIC = rospy.get_param("~sub_topic") + self.TOPIC_TYPE = rospy.get_param("~topic_type").lower() + if self.TOPIC_TYPE=="odometry": + rospy.Subscriber(self.SUB_TOPIC, Odometry, self.callback) + elif self.TOPIC_TYPE=="posestamped": + rospy.Subscriber(self.SUB_TOPIC, PoseStamped, self.callback) + elif self.TOPIC_TYPE=="posewithcovariancestamped": + rospy.Subscriber(self.SUB_TOPIC, PoseWithCovarianceStamped, self.callback) + else: + raise ValueError(f"Requested {self.TOPIC_TYPE} not supported. Choose between \'Odometry\', \'PoseStamped\', \'PoseWithCovarianceStamped\'.") + + self.OUT_FILENAME = rospy.get_param("~out_filename", f"{self.TOPIC_TYPE}_traj.csv") + with open(self.OUT_FILENAME, 'w') as f: + w = csv.writer(f) + w.writerow(["t", "x", "y", "theta"]) + + def callback(self, msg): + if self.TOPIC_TYPE=="odometry": + pose:Pose = msg.pose.pose + elif self.TOPIC_TYPE=="posestamped": + pose:Pose = msg.pose + elif self.TOPIC_TYPE=="posewithcovariancestamped": + pose:Pose = msg.pose.pose + + t = msg.header.stamp.to_sec() + x = pose.position.x + y = pose.position.y + theta = euler_from_quaternion([pose.orientation.x, pose.orientation.y, + pose.orientation.z, pose.orientation.w])[2] + + with open(self.OUT_FILENAME, 'a') as f: + w = csv.writer(f) + w.writerow([t, x, y, theta]) + +if __name__ == "__main__": + n = PathRecorder() + rospy.spin() \ No newline at end of file diff --git a/f110_utils/nodes/slam_tuner/src/reconstruction_error.py b/f110_utils/nodes/slam_tuner/src/reconstruction_error.py new file mode 100644 index 0000000..bfd80d7 --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/reconstruction_error.py @@ -0,0 +1,342 @@ +import rospy +from std_msgs.msg import Empty +from geometry_msgs.msg import PoseStamped +from tf.transformations import euler_from_quaternion +import tf2_ros +import numpy as np +from scipy.interpolate import CubicSpline + +from datetime import datetime +import matplotlib.pyplot as plt +import csv + +from typing import List, Tuple + +from errormetrics.csv_io import * + + +class ReconstructionError: + ''' + Provides error metrics and plots for localization methods. + ''' + + def __init__(self): + rospy.init_node('rec_err_node', anonymous=True) + + self.LOC_ALGO: str = rospy.get_param("/rec_err/loc_algo", "Unknown") + '''String used to identify the localization algorithm to be compared against''' + self.TIMEOUT: float = rospy.get_param("/rec_err/timeout", 15.0) + '''Timeout to auto-compute a plot (when robot is standing still)''' + self.POSE_TOPIC: str = rospy.get_param( + '/rec_err/pose_topic', "/car_state/pose") + '''Topic to get the "ground-truth" pose information from''' + self.NUM_POSE_MSGS: int = rospy.get_param('/rec_err/n_pose_msgs', 20) + '''Number of pose messages to skip between datapoints (filtering method)''' + self.FILENAME: str = rospy.get_param( + '/rec_err/out_graph', f"{self.LOC_ALGO}_err_metrics") + self.FILENAME += ("_"+datetime.now().strftime("%d%m%y_%H%M%S")) + '''Output file path (defaults to relative)''' + + # Wait until the requried tf transforms exist + self.tf_buffer = tf2_ros.Buffer() + self.tf_listener = tf2_ros.TransformListener(self.tf_buffer) + print("Reconstruction Error Node waiting for TF Transformations") + while not self.tf_buffer.can_transform("map", "base_link", rospy.Time(), rospy.Duration(1.0)): + rospy.logwarn("Waiting for base_link->imu transformation") + print("base_link->imu transformation OK") + + rospy.Subscriber("/create_plot", Empty, self.plot_data) + rospy.Subscriber(self.POSE_TOPIC, PoseStamped, self.pose_cb) + rospy.Subscriber("/tracked_pose", PoseStamped, self.slam_pose_cb) + + self._car_state_pose_cnt: int = 0 # to filter out noisy pose data + self._x_acc = [] + self._y_acc = [] + self._sint_acc = [] + self._cost_acc = [] + + self.prev_position: List[float] = None # SE2 position of car + self.curr_position: List[float] = None # SE2 position of car + + self.was_stationary = False + self.time_since_stationary: float = 0 + + # Numpy arrays for interpolation --> time-syncing + self.odom_msgs = [] + self.map_bl_list = [] + self.map_odom_list = [] + self.odom_bl_list = [] + + self.tf_x = [] + self.tf_y = [] + self.tf_sint = [] + self.tf_cost = [] + self.tf_t = [] + + # for tracking pose + self.tracked_x = [] + self.tracked_y = [] + self.tracked_theta = [] + self.tracked_time = [] + self.tracked_pose = [] + + def slam_pose_cb(self, data: PoseStamped) -> None: + """ + Callback function of /tracked_pose subscriber. + + Parameters + ---------- + data + Data received from /car_state/pose topic + """ + x = data.pose.position.x + y = data.pose.position.y + theta = euler_from_quaternion([data.pose.orientation.x, data.pose.orientation.y, + data.pose.orientation.z, data.pose.orientation.w])[2] + t = data.header.stamp.to_sec() + + self.tracked_x.append(x) + self.tracked_y.append(y) + self.tracked_theta.append(theta) + self.tracked_time.append(t) + self.tracked_pose.append((x, y, theta, t)) + + def pose_cb(self, data: PoseStamped): + """ + Callback function of /car_state/pose subscriber. + + Parameters + ---------- + data + Data received from /car_state/pose topic + """ + + x = data.pose.position.x + y = data.pose.position.y + theta = euler_from_quaternion([data.pose.orientation.x, data.pose.orientation.y, + data.pose.orientation.z, data.pose.orientation.w])[2] + + # // Get the latest transforms + self.update_tf_lists() + + # // Append most recent coordinates to 1d arrays for later interpolation (ensure that it's increasing in time) + if len(self.tf_t) == 0 or self.map_bl_list[-1][-1] > self.tf_t[-1]: + self.tf_x.append(self.map_bl_list[-1][0]) + self.tf_y.append(self.map_bl_list[-1][1]) + self.tf_sint.append(np.sin(self.map_bl_list[-1][2])) + self.tf_cost.append(np.cos(self.map_bl_list[-1][2])) + self.tf_t.append(self.map_bl_list[-1][3]) + + # // Reject noisy pose data taking the running average of N pose estimates + self._x_acc.append(x) + self._y_acc.append(y) + self._sint_acc.append(np.sin(theta)) + self._cost_acc.append(np.cos(theta)) + if len(self._x_acc) > self.NUM_POSE_MSGS: # pop off the first elem in sliding win + self._x_acc = self._x_acc[1:] + self._y_acc = self._y_acc[1:] + self._sint_acc = self._sint_acc[1:] + self._cost_acc = self._cost_acc[1:] + + x = np.mean(self._x_acc) + y = np.mean(self._y_acc) + theta = np.arctan2( + np.mean(self._sint_acc), + np.mean(self._cost_acc) + ) + + self.odom_msgs.append((x, y, theta, data.header.stamp.to_sec())) + self._car_state_pose_cnt = 0 + + if self.curr_position is None: + self.prev_position = [x, y, theta] + self.curr_position = [x, y, theta] + + # // Check if the car has been idle for more than TIMEOUT seconds + dx = (self.prev_position[0]-x) + dy = (self.prev_position[1]-y) + dtheta = (self.prev_position[2]-theta) + + if np.sqrt(dx**2+dy**2) < 0.25 and dtheta < 0.2: + # Not enough movement, we are not moving! + if self.was_stationary is False: + self.was_stationary = True + self.time_since_stationary = data.header.stamp.to_sec() + else: + time_elapsed = data.header.stamp.to_sec() - self.time_since_stationary + # rospy.loginfo(f"Reconstruction Error: {time_elapsed:.2f}s since stationary.") + + if time_elapsed > self.TIMEOUT: + rospy.loginfo( + f"[Reconstruction Error]: {self.TIMEOUT:.2f}s passed since car stopped. Plotting data...") + self.was_stationary = False + self.time_since_stationary = data.header.stamp.to_sec() + self.plot_data(None) # Auto plot, reset + else: + # We have moved off + self.was_stationary = False + + def update_tf_lists(self): + '''Updates the running lists of TF data. We keep 3 lists ongoing: map->odom, map->base_link, odom->base_link.''' + + def grab_tf_data(frame1, frame2, lst): + # Get the latest transform between frame1 and frame2, but not if it has the same header (timestep) as the previous datapoint + tf_msg = self.tf_buffer.lookup_transform( + frame1, frame2, rospy.Time(0.0), rospy.Duration(2.0)) + + if len(lst) and tf_msg.header.stamp.to_sec() == lst[-1][-1]: + return + + tf_x = tf_msg.transform.translation.x + tf_y = tf_msg.transform.translation.y + tf_theta = euler_from_quaternion([tf_msg.transform.rotation.x, tf_msg.transform.rotation.y, + tf_msg.transform.rotation.z, tf_msg.transform.rotation.w])[2] + + lst.append((tf_x, tf_y, tf_theta, tf_msg.header.stamp.to_sec())) + + grab_tf_data("map", "base_link", self.map_bl_list) + grab_tf_data("map", "odom", self.map_odom_list) + grab_tf_data("odom", "base_link", self.odom_bl_list) + + def plot_data(self, _): + ''' + On recieving a message on the /create_plot topic, we calculate and plot out error metrics. + ''' + + rospy.logwarn(f"[Reconstruction Error]: Saving to {self.FILENAME}") + + pos_err = [] + ang_err = [] + t_vec = [] + data_out = [] + + # Get interpolators for TF data + tf_x_cs = CubicSpline(self.tf_t, self.tf_x) + tf_y_cs = CubicSpline(self.tf_t, self.tf_y) + tf_sint_cs = CubicSpline(self.tf_t, self.tf_sint) + tf_cost_cs = CubicSpline(self.tf_t, self.tf_cost) + + # interpolate to get an error metric + for odom_pose in self.odom_msgs: + t = odom_pose[3] + interp_x = tf_x_cs(t) + interp_y = tf_y_cs(t) + + interp_sint = tf_sint_cs(t) + interp_cost = tf_cost_cs(t) + interp_theta = np.arctan2(interp_sint, interp_cost) + + # Get error + pos_error = np.sqrt( + (interp_x-odom_pose[0])**2 + (interp_y-odom_pose[1])**2) + ang_error = np.abs(np.arctan2( + np.sin(odom_pose[2]-interp_theta), np.cos(odom_pose[2]-interp_theta))) + + # Accumulate error + pos_err.append(pos_error) + ang_err.append(ang_error) + t_vec.append(t) + + data_out.append( + (t, odom_pose[0], odom_pose[1], odom_pose[2], interp_x, interp_y, interp_theta)) + + # // Save t: odom(x,y,t), tf(x,y,t) + save_csv(data_out, self.FILENAME+".csv", + header=["Time", "odom_x", "odom_y", "odom_theta", "tf_x", "tf_y", "tf_theta"]) + + # // plot and save lateral error metric + t_vec = [t-t_vec[0] for t in t_vec] # start time from t=0 + avg_pos_err = np.average(pos_err) + + fig, (ax1, ax2) = plt.subplots(nrows=2, ncols=1) + plt.title( + f"Error metrics for localization method \"{self.LOC_ALGO}\", mean pos err: {avg_pos_err:.2f}m") + + color = 'tab:red' + ax1.grid() + ax1.set_xlabel('Time (s)') + ax1.set_ylabel("Absolute Position error (m)") + ax1.plot(t_vec, pos_err, color=color) + + color = 'tab:blue' + ax2.grid() + ax2 .set_xlabel('Time (s)') + ax2.set_ylabel("Absolute Angular error (rad)") + ax2.plot(t_vec, ang_err, color=color) + + fig.tight_layout() + plt.savefig(self.FILENAME+".png") + plt.close() + + # // Plot relative trajectories + fig, axs = plt.subplots(nrows=1, ncols=3) + plt.title( + f"Trajectory history") + + color = 'tab:red' + # alpha = np.arange(0.5, 1.0, len(self.map_bl_list)) + axs[0].set_title("map to base_link") + axs[0].grid() + axs[0].set_xlabel('x') + axs[0].set_ylabel("y") + axs[0].plot([t[0] for t in self.map_bl_list], + [t[1] for t in self.map_bl_list], + 'x-', + color=color, + # alpha=alpha, + label="Map->Base_link TF Data" + ) + axs[0].plot([t[0] for t in self.tracked_pose], + [t[1] for t in self.tracked_pose], + 'x-', + # alpha=alpha, + label="Tracked_Pose" + ) + axs[0].legend() + + color = 'tab:blue' + # alpha = np.arange(0.5, 1.0, len(self.odom_bl_list)) + axs[1].set_title("odom to base_link") + axs[1].grid() + axs[1].set_xlabel('x') + axs[1].set_ylabel("y") + axs[1].plot([t[0] for t in self.odom_bl_list], + [t[1] for t in self.odom_bl_list], + 'x-', + color=color, + # alpha=alpha + ) + + color = 'tab:green' + # alpha = np.arange(0.5, 1.0, len(self.map_odom_list)) + axs[2].set_title("map to odom") + axs[2].grid() + axs[2].set_xlabel('x') + axs[2].set_ylabel("y") + axs[2].plot([t[0] for t in self.map_odom_list], + [t[1] for t in self.map_odom_list], + 'x-', + color=color, + # alpha=alpha + ) + + fig.tight_layout() + plt.savefig(self.FILENAME+"_traj_hist.png") + plt.close() + + # // Save TF error metrics + save_csv(self.map_bl_list, self.FILENAME+"_tf_mbl.csv", + header=["x", "y", "theta", "t"]) + save_csv(self.map_odom_list, self.FILENAME+"_tf_mo.csv", + header=["x", "y", "theta", "t"]) + save_csv(self.odom_bl_list, self.FILENAME+"_tf_obl.csv", + header=["x", "y", "theta", "t"]) + save_csv(self.tracked_pose, self.FILENAME+"_tracked_pose.csv", + header=["x", "y", "theta", "t"]) + + # Get data on smoothed error + + +if __name__ == "__main__": + node = ReconstructionError() + rospy.spin() diff --git a/f110_utils/nodes/slam_tuner/src/setup.py b/f110_utils/nodes/slam_tuner/src/setup.py new file mode 100644 index 0000000..6546eec --- /dev/null +++ b/f110_utils/nodes/slam_tuner/src/setup.py @@ -0,0 +1,17 @@ +from setuptools import setup, find_packages + +setup( + name='errormetrics', + version='0.1.0', + packages=find_packages(include=[ + 'errormetrics', + 'errormetrics.*', + 'csv_io.py', + 'plot_things.py', + 'utils.py' + ]), + install_requires=[ + 'numpy', + 'matplotlib', + ], +) \ No newline at end of file diff --git a/f110_utils/nodes/tf_transformer/CMakeLists.txt b/f110_utils/nodes/tf_transformer/CMakeLists.txt new file mode 100644 index 0000000..01d8b1c --- /dev/null +++ b/f110_utils/nodes/tf_transformer/CMakeLists.txt @@ -0,0 +1,35 @@ +cmake_minimum_required(VERSION 3.0.2) +project(tf_transformer) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + nav_msgs + tf2 +) + +# call setup.py +catkin_python_setup() + +# add_executable(gb_traj_publisher src/gb_traj_publisher.py) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +# catkin_package( +# INCLUDE_DIRS include +# LIBRARIES f110_planner +# CATKIN_DEPENDS rospy geometry_msgs f110_msgs std_msgs +# DEPENDS system_lib +# ) diff --git a/f110_utils/nodes/tf_transformer/README.md b/f110_utils/nodes/tf_transformer/README.md new file mode 100644 index 0000000..cb3bd81 --- /dev/null +++ b/f110_utils/nodes/tf_transformer/README.md @@ -0,0 +1,15 @@ +# TF Transformer +Despite the name, this package does not consist of a transformer neural network implemented with tensorflow. For that look [here](https://huggingface.co/docs/transformers/main/en/index#supported-frameworks). + +This package provides an odometry estimate of the F110 car purely based on [tf](http://wiki.ros.org/tf), the ROS package that "lets the user keep track of multiple coordinate frames over time". + +It provides the user with an `nav_msgs/Odometry` message at the topic `tf_odom`. +The node can be launched with the launch file: +``` +roslaunch tf_transformer tf_transformer +``` + +and provides position, rotation, velocities and rotational velocities. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/tf_transformer/launch/tf_transformer.launch b/f110_utils/nodes/tf_transformer/launch/tf_transformer.launch new file mode 100644 index 0000000..39b9a87 --- /dev/null +++ b/f110_utils/nodes/tf_transformer/launch/tf_transformer.launch @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/f110_utils/nodes/tf_transformer/package.xml b/f110_utils/nodes/tf_transformer/package.xml new file mode 100644 index 0000000..560659b --- /dev/null +++ b/f110_utils/nodes/tf_transformer/package.xml @@ -0,0 +1,59 @@ + + + tf_transformer + 0.0.0 + Node to publish velocity data from tf + + Jonathan Becker + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + rospy + nav_msgs + tf2 + + + + + + + + diff --git a/f110_utils/nodes/tf_transformer/setup.py b/f110_utils/nodes/tf_transformer/setup.py new file mode 100644 index 0000000..29ed6a1 --- /dev/null +++ b/f110_utils/nodes/tf_transformer/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['tf_transformer'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/f110_utils/nodes/tf_transformer/src/tf_transformer_node.py b/f110_utils/nodes/tf_transformer/src/tf_transformer_node.py new file mode 100755 index 0000000..b1a6e64 --- /dev/null +++ b/f110_utils/nodes/tf_transformer/src/tf_transformer_node.py @@ -0,0 +1,152 @@ +#!/usr/bin/env python3 + +import rospy +import tf +from tf2_msgs.msg import TFMessage +from nav_msgs.msg import Odometry +from geometry_msgs.msg import PoseWithCovariance, TwistWithCovariance, Vector3Stamped +import numpy as np + + +class TfTransformer: + def __init__(self): + # subscribers + # wait for tf to come alive + rospy.sleep(1.0) + self.tf_listener = tf.TransformListener() + rospy.Subscriber("/tf", TFMessage, self.tf_cb, queue_size=10) + + # publishers + # requires remap in launch file + self.odom_pub = rospy.Publisher('tf_odom', Odometry, queue_size=10) + + # parameters + #self.experiment = rospy.get_param("/id_controller/experiment") + + rospy.logwarn("TF Transformer Ready") + # initialize with high time between messages to trigger reset + + self.last_odom = Odometry() + self.last_odom.header.stamp = rospy.Time(0) + + self.dt = 100 + rospy.spin() + + def calculate_first_derivative(self, now, last): + return (now - last)/self.dt + + def tf_cb(self, msg): + stamp = 0 + # check if tf is the one we care about + for transform in msg.transforms: + if transform.child_frame_id == "base_link": + stamp = transform.header.stamp + if stamp == 0: + return + + # get the tf from map to base_link for position and rotation + # as we want to express these in world coordinates + try: + # takes the latest (i.e. the one we just received) + (trans, rot) = self.tf_listener.lookupTransform( + "map", "base_link", rospy.Time(0)) + except tf.Exception as error: + rospy.logwarn(error) + return + + # Create odom message + odom_msg = Odometry() + odom_msg.header.frame_id = "map" + odom_msg.header.stamp = stamp + + # transform the current tf to pose, tf is from world to body + pose_msg = PoseWithCovariance() + pose_msg.pose.position.x = trans[0] + pose_msg.pose.position.y = trans[1] + pose_msg.pose.position.z = trans[2] + # quaternion from world to body + pose_msg.pose.orientation.x = rot[0] + pose_msg.pose.orientation.y = rot[1] + pose_msg.pose.orientation.z = rot[2] + pose_msg.pose.orientation.w = rot[3] + + odom_msg.pose = pose_msg + + self.dt = stamp.to_sec() - self.last_odom.header.stamp.to_sec() + if self.dt < 0.1: + v = Vector3Stamped() + + v.vector.x = \ + self.calculate_first_derivative( + trans[0], self.last_odom.pose.pose.position.x) + v.vector.y = \ + self.calculate_first_derivative( + trans[1], self.last_odom.pose.pose.position.y) + v.vector.z = \ + self.calculate_first_derivative( + trans[2], self.last_odom.pose.pose.position.z) + v.header.stamp = rospy.Time(0) + v.header.frame_id = "map" + # print(v) + # # transform twist into body frame using the transform (V' = RVR') + # # we need w component at first place for this + # t = np.array(rot[0:3]) + # rv = (-np.matmul(t.T, v), rot[3]*v+np.cross(t,v)) + # v_t = (rv[0]*rot[3]-np.matmul(rv[1].T,-t),rv[0]*-t+rot[3]*rv[1]+np.cross(rv[1],-t)) + + # v_t = self.tf_listener.transformVector3("base_link", v) + rpy = tf.transformations.euler_from_quaternion(rot) + + twist_msg = TwistWithCovariance() + + twist_msg.twist.linear.x = v.vector.x * \ + np.cos(rpy[2]) + v.vector.y * np.sin(rpy[2]) + twist_msg.twist.linear.y = v.vector.y * \ + np.cos(rpy[2]) - v.vector.x * np.sin(rpy[2]) + twist_msg.twist.linear.z = v.vector.z + + # twist_msg.twist.linear.x = v_t.vector.x + # twist_msg.twist.linear.y = v_t.vector.y + # twist_msg.twist.linear.z = v_t.vector.z + + # quaternion derivatives: + # we need quat from body to world as we want angular rate in body frame + e0 = rot[3] + e1 = rot[0] + e2 = rot[1] + e3 = rot[2] + de0 = self.calculate_first_derivative( + e0, self.last_odom.pose.pose.orientation.w) + de1 = self.calculate_first_derivative( + e1, self.last_odom.pose.pose.orientation.x) + de2 = self.calculate_first_derivative( + e2, self.last_odom.pose.pose.orientation.y) + de3 = self.calculate_first_derivative( + e3, self.last_odom.pose.pose.orientation.z) + + # for quaternions refer to the robot dynamics lecture notes for transformation + # between time derivative of quaternion to angular rate + + H = np.matrix( + [[-e1, e0, -e3, e2], + [-e2, e3, e0, -e1], + [-e3, -e2, e1, e0]]) + de = np.matrix([[de0], [de1], [de2], [de3]]) + angular_velocity = 2 * np.matmul(H, de) + twist_msg.twist.angular.x = angular_velocity[0] + twist_msg.twist.angular.y = angular_velocity[1] + twist_msg.twist.angular.z = angular_velocity[2] + odom_msg.twist = twist_msg + self.odom_pub.publish(odom_msg) + + self.last_odom = odom_msg + + +if __name__ == '__main__': + rospy.init_node('tf_transformer') + + # Go to class functions that do all the heavy lifting. Do error checking. + try: + TfTransformer = TfTransformer() + except rospy.ROSInterruptException: + pass diff --git a/f110_utils/nodes/transform_broadcaster/CMakeLists.txt b/f110_utils/nodes/transform_broadcaster/CMakeLists.txt new file mode 100644 index 0000000..cd92abc --- /dev/null +++ b/f110_utils/nodes/transform_broadcaster/CMakeLists.txt @@ -0,0 +1,208 @@ +cmake_minimum_required(VERSION 3.0.2) +project(transform_broadcaster) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + nav_msgs + rospy + tf2 + tf2_ros +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# geometry_msgs# nav_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES transform_broadcaster +# CATKIN_DEPENDS geometry_msgs nav_msgs rospy tf2 tf2_ros +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/transform_broadcaster.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/transform_broadcaster_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +catkin_install_python(PROGRAMS + src/transform_broadcaster.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_transform_broadcaster.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/f110_utils/nodes/transform_broadcaster/README.md b/f110_utils/nodes/transform_broadcaster/README.md new file mode 100644 index 0000000..14e81c1 --- /dev/null +++ b/f110_utils/nodes/transform_broadcaster/README.md @@ -0,0 +1,14 @@ +# Transform_Broadcaster + +Ever need to broadcast a TF transform from an Odom frame? + +Look no further than `transform_broadcaster`. + +Simply adapts the [TF2 Broadcaster tutorial](http://wiki.ros.org/tf2/Tutorials/Writing%20a%20tf2%20broadcaster%20%28Python%29) to our uses. + +## Parameters +- `odom_topic`: What `nav_msgs/Odometry` topic are you subscribing to? +- `tf_child_frame`: What is the child frame? Defaults to `base_link`. + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/nodes/transform_broadcaster/package.xml b/f110_utils/nodes/transform_broadcaster/package.xml new file mode 100644 index 0000000..15726e7 --- /dev/null +++ b/f110_utils/nodes/transform_broadcaster/package.xml @@ -0,0 +1,74 @@ + + + transform_broadcaster + 0.0.0 + The transform_broadcaster package + + + + + tianyilim + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + geometry_msgs + nav_msgs + rospy + tf2 + tf2_ros + geometry_msgs + nav_msgs + rospy + tf2 + tf2_ros + geometry_msgs + nav_msgs + rospy + tf2 + tf2_ros + + + + + + + + diff --git a/f110_utils/nodes/transform_broadcaster/src/__init__.py b/f110_utils/nodes/transform_broadcaster/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/f110_utils/nodes/transform_broadcaster/src/transform_broadcaster.py b/f110_utils/nodes/transform_broadcaster/src/transform_broadcaster.py new file mode 100755 index 0000000..1abc9d0 --- /dev/null +++ b/f110_utils/nodes/transform_broadcaster/src/transform_broadcaster.py @@ -0,0 +1,34 @@ +import rospy +import tf2_ros +from nav_msgs.msg import Odometry +import geometry_msgs.msg + +def handle_odom_update(msg:Odometry): + # Transforms from odom to base_link. + br = tf2_ros.TransformBroadcaster() + t = geometry_msgs.msg.TransformStamped() + + t.header.stamp = msg.header.stamp + t.header.frame_id = msg.header.frame_id + t.child_frame_id = tf_child_frame + + pos = msg.pose.pose.position + t.transform.translation.x = pos.x + t.transform.translation.y = pos.y + t.transform.translation.z = pos.z + + ori = msg.pose.pose.orientation + t.transform.rotation.x = ori.x + t.transform.rotation.y = ori.y + t.transform.rotation.z = ori.z + t.transform.rotation.w = ori.w + + br.sendTransform(t) + +if __name__=="__main__": + rospy.init_node("odom_transform_broadcaster", anonymous=True) + odom_topic = rospy.get_param("/transform_broadcaster/odom_topic") + tf_child_frame = rospy.get_param("/transform_broadcaster/child_frame", "base_link") + rospy.Subscriber(odom_topic, Odometry, handle_odom_update) + + rospy.spin() \ No newline at end of file diff --git a/f110_utils/scripts/pit_starter/README.md b/f110_utils/scripts/pit_starter/README.md new file mode 100644 index 0000000..4829849 --- /dev/null +++ b/f110_utils/scripts/pit_starter/README.md @@ -0,0 +1,18 @@ +# Pit starter +The content of this folder can be used to automatically setup your laptop to see a roscore running on a car. + +## Prerequisites +Your computer should be in the ZeroTier network. to do that consult the [networking guide](../../../stack_master/checklists/networking.md). +## How to modify the script to use your own fixed IP +Open the [pit_starter.sh](./pit_starter.sh) file and write in the point marked with the todo the fixed IP of the car you want to connect to. + +## How to connect the pit +On your pit laptop. +- `cd /f110_utils/scripts/pit_starter` +- `source pit_starter.sh rviz` +- Enjoy freshly sourced NUCX. The script runs the rviz with the correct config. +- Pro tip: If you only want to source the NUCX then dont use the `rviz` argument + + +--- +[Go back to the utils list](../../README.md) \ No newline at end of file diff --git a/f110_utils/scripts/pit_starter/f1.rviz b/f110_utils/scripts/pit_starter/f1.rviz new file mode 100644 index 0000000..ea543b0 --- /dev/null +++ b/f110_utils/scripts/pit_starter/f1.rviz @@ -0,0 +1,631 @@ +Panels: + - Class: rviz/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - //vesc/odom (Purple)1/Shape1 + - /State_Estimation Odom (Green)1/Shape1 + Splitter Ratio: 0.8194842338562012 + Tree Height: 944 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.5886790156364441 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Name: Time + SyncMode: 0 + SyncSource: LaserScan +Preferences: + PromptSaveOnExit: true +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.029999999329447746 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/Axes + Enabled: true + Length: 1 + Name: Origin + Radius: 0.05000000074505806 + Reference Frame: + Show Trail: false + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.029999999329447746 + Style: Flat Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.699999988079071 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 0.699999988079071 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Cartographer Mapshift Viz + Topic: /map_new + Unreliable: false + Use Timestamp: false + Value: true + - Class: rviz/TF + Enabled: true + Filter (blacklist): "" + Filter (whitelist): "" + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + imu: + Value: true + laser: + Value: true + map: + Value: true + odom: + Value: true + Marker Alpha: 1 + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + map: + base_link: + imu: + {} + laser: + {} + odom: + {} + Update Interval: 0 + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: false + Enabled: false + Keep: 1 + Name: /vesc/odom (Purple) + Position Tolerance: 0.10000000149011612 + Queue Size: 10 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 173; 127; 168 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: /vesc/odom + Unreliable: false + Value: false + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 114; 159; 207 + Enabled: false + Head Diameter: 0.30000001192092896 + Head Length: 0.20000000298023224 + Length: 0.30000001192092896 + Line Style: Lines + Line Width: 0.029999999329447746 + Name: /car_state/path + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Queue Size: 10 + Radius: 0.029999999329447746 + Shaft Diameter: 0.10000000149011612 + Shaft Length: 0.10000000149011612 + Topic: /car_state/path + Unreliable: false + Value: false + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/Pose + Color: 114; 159; 207 + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: /car_state/pose (Blue) + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /car_state/pose + Unreliable: false + Value: true + - Angle Tolerance: 0.10000000149011612 + Class: rviz/Odometry + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: false + Enabled: false + Keep: 1 + Name: State_Estimation Odom (Green) + Position Tolerance: 0.10000000149011612 + Queue Size: 10 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Color: 138; 226; 52 + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Value: Arrow + Topic: /state_estimation/odom + Unreliable: false + Value: false + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.10000000149011612 + Class: rviz/PoseWithCovariance + Color: 255; 25; 0 + Covariance: + Orientation: + Alpha: 0.5 + Color: 255; 255; 127 + Color Style: Unique + Frame: Local + Offset: 1 + Scale: 1 + Value: true + Position: + Alpha: 0.30000001192092896 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: true + Enabled: true + Head Length: 0.30000001192092896 + Head Radius: 0.10000000149011612 + Name: PF2 Pose With Cov + Queue Size: 10 + Shaft Length: 1 + Shaft Radius: 0.05000000074505806 + Shape: Arrow + Topic: /tracked_pose/with_covariance + Unreliable: false + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /lookahead_point + Name: /lookahead_point + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: false + Marker Topic: /global_waypoints/markers + Name: Global Waypoints + Namespaces: + {} + Queue Size: 100 + Value: false + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /planner/markers + Name: Frenet Waypoints + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /planner/obstacle_markers + Name: Frenet Obstacles + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /local_waypoints/markers + Name: Local Waypoints + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /best_gap/markers + Name: FTG Best Gap + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /best_points/marker + Name: FTG Goal Point + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: perception/obstacles_markerarray + Name: Dani Obstacles + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /trackbounds/markers + Name: Track Bounds Markers + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /sector_markers + Name: Sector Names + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /ot_sector_markers + Name: OT Sector Names + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: false + Marker Topic: /global_waypoints/overtaking/markers + Name: OT Waypoints + Namespaces: + {} + Queue Size: 100 + Value: false + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /perception/static_dynamic_marker_pub + Name: Sami Obstacles + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /perception/obstacles_markers_new + Name: Sami Raw Detections + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /trailing_opponent_marker + Name: Trailing Opponent + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /dummy_obstacle_markers + Name: Virtual Obstacles + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /planner/avoidance/propagated_obs + Name: Spliner Propagated Obstacle + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /planner/avoidance/markers + Name: Spliner Avoidance Raw + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /state_marker + Name: State + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /emergency_marker + Name: Voltage Warning + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /collision_marker + Name: Collision Viz + Namespaces: + {} + Queue Size: 100 + Value: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Min Color: 0; 0; 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.009999999776482582 + Style: Flat Squares + Topic: /camera/depth/color/points + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 164; 0; 0 + Min Color: 239; 41; 41 + Name: Scan Fused + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.10000000149011612 + Style: Flat Squares + Topic: /scan_fused + Unreliable: false + Use Fixed Frame: true + Use rainbow: false + Value: false + - Class: rviz/Marker + Enabled: true + Marker Topic: /lap_data_vis + Name: Lap Data + Namespaces: + lap_info: true + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /scanalign/alignment_textmrk + Name: Scan Alignment Txt + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /planner/avoidance/markers + Name: Predictive Spliner + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /speed_difference/markers + Name: Speed Diff to Opponent + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /opponent_traj_markerarray + Name: Opponent Traj Regression + Namespaces: + "": true + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /collision_predict/beginn + Name: Collision Predict Begin + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /collision_predict/end + Name: Collision Predict End + Namespaces: + {} + Queue Size: 100 + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Default Light: true + Fixed Frame: map + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/MoveCamera + - Class: rviz/Select + - Class: rviz/FocusCamera + - Class: rviz/Measure + - Class: rviz/SetInitialPose + Theta std deviation: 0.2617993950843811 + Topic: /initialpose + X std deviation: 0.5 + Y std deviation: 0.5 + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Class: rviz/XYOrbit + Distance: 16.830551147460938 + Enable Stereo Rendering: + Stereo Eye Separation: 0.05999999865889549 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Field of View: 0.7853981852531433 + Focal Point: + X: 4.288304805755615 + Y: 4.312037944793701 + Z: -4.122449354326818e-06 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 1.2753961086273193 + Target Frame: map + Yaw: 5.565419673919678 + Saved: ~ +Window Geometry: + Displays: + collapsed: true + Height: 1163 + Hide Left Dock: true + Hide Right Dock: true + QMainWindow State: 000000ff00000000fd00000004000000000000024a000003edfc020000000afb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed0000039500000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afc0000003d000003ed0000000000fffffffaffffffff0100000002fb000000100044006900730070006c0061007900730000000000000002160000015600fffffffb0000000a005600690065007700730000000000ffffffff0000010000fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d0061006700650000000303000000940000000000000000fb0000000a0049006d00610067006501000002270000018b0000000000000000000000010000010f0000035afc0200000002fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000007800000003efc0100000002fb0000000800540069006d0065010000000000000780000003bc00fffffffb0000000800540069006d0065010000000000000450000000000000000000000780000003ed00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1920 + X: 1920 + Y: 0 diff --git a/f110_utils/scripts/pit_starter/pit_starter.sh b/f110_utils/scripts/pit_starter/pit_starter.sh new file mode 100755 index 0000000..a1d6aba --- /dev/null +++ b/f110_utils/scripts/pit_starter/pit_starter.sh @@ -0,0 +1,52 @@ +#!/bin/bash + +if [ $# -gt 0 ] +then + +#export the ROS IP PARAMS to connect to nuc as master +export ROS_HOSTNAME=$1 +export ROS_IP=$1 +echo 'Using your input as ROS_HOSTNAME and ROS_IP: ' +echo $1 + + if [ $2 == 'NUC2' ] + then + echo 'Exporting ROS params to access NUC2' + export ROS_MASTER_URI=http://:11311 + echo 'Exported your stuff...' + # elif [ $2 == 'NUCX' ] + # then + # echo 'Exporting ROS params to access NUCX' + # export ROS_MASTER_URI=http://:11311 + # echo 'Exported your stuff...' + else + echo 'No valid car arg. Valid car args are NUC2 - NUC5.' + fi + + if [ -z "$3" ] + then + echo "No additional argument supplied." + elif [ $3 == 'rviz' ] + then + echo 'Starting rviz as well' + #start configured RVIZ + rosrun rviz rviz -d ~/catkin_ws/src/race_stack/f110_utils/scripts/pit_starter/f1.rviz + elif [ $3 == 'rqt' ] + then + echo 'Starting rqt as well' + rqt + elif [ $3 == 'rvizqt' ] + then + echo 'Starting rviz and rqt as well' + rosrun rviz rviz -d ~/catkin_ws/src/race_stack/f110_utils/scripts/pit_starter/f1.rviz & + rqt + else + echo "Not a valid rviz arg. Exiting.\ + + Valid arguments: + [None] | Simply export ROS params to access relevant NUC. + rviz | Launch RViz only. + rqt | Launch rqt only. + rvizqt | Simultaneously launch RViz and rqt." + fi +fi diff --git a/perception/CMakeLists.txt b/perception/CMakeLists.txt new file mode 100644 index 0000000..e5f90b6 --- /dev/null +++ b/perception/CMakeLists.txt @@ -0,0 +1,222 @@ +cmake_minimum_required(VERSION 3.0.2) +project(perception) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + tf + sensor_msgs + dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/dyn_tracker_tuner.cfg +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( + CATKIN_DEPENDS roscpp rospy std_msgs tf sensor_msgs realsense2_camera cv_bridge nav_msgs std_srvs image_transport ddynamic_reconfigure diagnostic_updater +# INCLUDE_DIRS include +# LIBRARIES perception +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) +#added by tino +# catkin_install_python(PROGRAMS +# src/opponent_trajectory.py +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/perception.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/perception_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +#catkin_install_python(PROGRAMS +# camera_segmentation/src/cs_node.py +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +#) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_perception.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) + + diff --git a/perception/README.md b/perception/README.md new file mode 100644 index 0000000..72c736d --- /dev/null +++ b/perception/README.md @@ -0,0 +1,62 @@ +# Opponent Detection & Tracking +![Perception Architecture](./misc/perception_arch.png) + +This directory contains the Opponent Detection & Tracking system of the ForzaETH F110 Team. The Opponent Detection system is divided into two main components, namely the Opponent Detection and the Opponent Trackeing subsystems. +The Opponent Detection system is only executed when the car is in headtohead mode. After a successful launch, you should see the following messages from the Perception system: +- `[Opponent Detection]: Ready` +- `[Opponent Tracking]: Ready` + +## Overview +This section provides a short overview of the two subsystems. +### Opponent Detection +This system detects obstacles on the racetrack. For this, the laser scans are segmented into smaller objects, which are then filtered based on their size and position. A rectangle fitting method is applied for better feature extraction. The detected obstacles are then passed to the `Opponent Tracking` algorithm. + +### Opponent Tracking +The tracking algorithm keeps track of the detected obstacles and associates them. Furthermore, it classifies the obstacles into the classes `static` and `dynamic` based on their standard deviation. In the last step, a prediction for the obstacles is made. For `static` obstacles, a simple averaging method is applied, while the prediction for `dynamic` obstacles is made with a Kalman Filter. + +## Dynamic Reconfigurable Parameters +There are several parameters that can be dynamically reconfigured. To do this, launch `rqt` and select `dynamic_tracker_server` +A short overview of the reconfigurable parameters: +### Opponent Detection +- `min_obs_size`: Minimum size of the point cloud in `#laser_points`. Is used to filter FP. +- `max_obs_size`: Maximum size of an object in `meters`. Is used to filter FP. +- `max_viewing_distance`: The maximum range for which obstacles can be detected. Currently, the maximum range allowed at F1TENTH is 10m. +- `boundaries_inflation`: This parameter artificially increases the thickness of the track boarders. Can help to filter FP along the boundaries. + +### Opponent Tracking +- `ttl_dynamic`: The time-to-live of the dynamic prediction for the opponent obstacle. +- `ratio_to_glob_path`: The ratio between the target velocity of the opponent obstacle and the global velocity (i.e., the velocity of our car). Defines to which target speed the dynamic prediction will convert. If set to 1, the target velocity is equal to the race line speed. +- `ttl_static`: The time-to-live for static and not-classified obstacles. Be aware that the TTL of static obstacles is only decreased if they are visible. This is not the case if `noMemoryMode` is set to `TRUE` +- `min_nb_meas`: Minimum number of measurements of a given obstacle before it gets classified as either static or dynamic. +- `dist_deletion`: Distance up to which obstacles can be deleted. +- `dist_infromt`: Distance up to which obstacles in front of the car are published. +- `min_std`: Standard deviation of the (s,d) position up to which obstacles are classified as static. Needs to be increased when using SynPF. +- `max_std`: Standard deviation of the (s,d) position above which obstacles are immediately classified as dynamic. Needs to be increased when using SynPF. +- `vs_reset`: Average velocity under which dynamic obstacles get reset to static. +- `aggro_multi`: A multiplier for the association distance for dynamic obstacles. +- `debug_mode`: Will enable some outputs to the console for debugging. +- `publish_static`: When set to `FALSE`, static obstacles will no longer be published. Can help in races with a lot of FP. +- `noMemoryMode`: When set to `TRUE`, obstacles will not be stored, and only the currently visible obstacles are published. Can help in races. + +## Other Parameters +This is a brief explanation of parameters, which are not dynamically reconfigurable. They can be found in `stack_master/config/opponent_tracker_params.yaml` +### Opponent Detection +- `rate`: The rate at which the node is running. +- `lambda`: The minimum reliable detection angle in `degrees`. +- `sigma`: The standard deviation for the noise of the LiDAR ranges in `meters`. +- `min_2_points_dist`: The minimum distance between two LiDAR points. + +### Opponent Tracking +- `rate`: The rate at which the node is running. +- `P_d`: Kalman Filter proportional gain for the distance in d direction +- `P_vs`: Kalman Filter proportional gain for the velocity in s direction +- `P_vd`: Kalman Filter proportional gain for the velocity in d direction +- `measurment_var_s`: The variance of the measurement noise in the s direction. +- `measurment_var_d`: The variance of the measurement noise in the d direction. +- `measurment_var_vs`: The variance of the measurement noise for the velocity in s direction. +- `measurment_var_vd`: The variance of the measurement noise for the velocity in d direction. +- `process_var_vs`: The variance of the process velocity noise for the velocity in s direction. +- `process_var_vd`: The variance of the process velocity noise for the velocity in d direction. +- `max_dist`: The maximal distance for the association of obstacles. +- `var_pub`: Obstacles that have a higher variance will not be published. + diff --git a/perception/cfg/dyn_tracker_tuner.cfg b/perception/cfg/dyn_tracker_tuner.cfg new file mode 100644 index 0000000..203ed1d --- /dev/null +++ b/perception/cfg/dyn_tracker_tuner.cfg @@ -0,0 +1,32 @@ +#!/usr/bin/env python3 +PACKAGE = "perception" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('perception') + +gen = ParameterGenerator() +# tracking +gen.add("ttl_dynamic", int_t, 0, "Time to live of dynamic preditction from kalman filter", 40, 5, 300) +gen.add("ratio_to_glob_path", double_t, 0, "the ratio between the target velocity and the global velocity", 0.6, 0.1, 2) +gen.add("ttl_static", int_t, 0, "time to live of static and not classified obstacles", 3, 1, 20) +gen.add("min_nb_meas", int_t, 0, "minimum number of measurments before classifying an object", 5, 3, 10) +gen.add("dist_deletion", double_t, 0, "distance in which obstacles can be deleted", 7, 3, 10) +gen.add("dist_infront", double_t, 0, "obstacles infront of the car by this distance are published", 8, 3, 10) +gen.add("min_std", double_t, 0, "minimum standard deviation under which obstacles are classified as static", 0.16, 0.05, 0.3) +gen.add("max_std", double_t, 0, "mamixmum standard deviation over which obstacles are classified as dynamic", 0.2, 0.15, 0.5) +gen.add("vs_reset", double_t, 0, "average velocity in s direction under which dynamic obstacle gets reset to static", 0.1, 0.01, 0.5) +gen.add("aggro_multi", double_t, 0, "multplies the association distance for dynamic obstacles", 2, 1, 10) +gen.add("debug_mode", bool_t, 0, "activate/deactivate prints for debugging", False) +gen.add("publish_static", bool_t, 0, "activate/deactivate publishing of static obstacles", True) +gen.add("noMemoryMode", bool_t, 0, "sets tracking into no Memory mode", True) + +# detection +gen.add("min_obs_size", int_t, 0, "minimum cloud point size of an obstacle", 10, 5, 40) +gen.add("max_obs_size", double_t, 0, "maximum size of an obstacle in meters", 0.5, 0.1, 1) +gen.add("max_viewing_distance", double_t, 0, " max reliable distance from the LiDAR", 9, 3, 10) +gen.add("boundaries_inflation", double_t, 0, "Offset of the track boundaries towards the center", 0.1, 0, 2) + + +exit(gen.generate(PACKAGE, "tracker_dynamic_tuner", "dyn_tracker_tuner")) \ No newline at end of file diff --git a/perception/misc/perception_arch.png b/perception/misc/perception_arch.png new file mode 100644 index 0000000..308d236 Binary files /dev/null and b/perception/misc/perception_arch.png differ diff --git a/perception/opponent_tracker/launch/opponent_track.launch b/perception/opponent_tracker/launch/opponent_track.launch new file mode 100644 index 0000000..9bf92ae --- /dev/null +++ b/perception/opponent_tracker/launch/opponent_track.launch @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/perception/opponent_tracker/src/detect.py b/perception/opponent_tracker/src/detect.py new file mode 100755 index 0000000..5fb9f67 --- /dev/null +++ b/perception/opponent_tracker/src/detect.py @@ -0,0 +1,538 @@ +#!/usr/bin/env python3 + +import rospy +import tf +import time +from frenet_converter.frenet_converter import FrenetConverter +from f110_msgs.msg import WpntArray +from sensor_msgs.msg import LaserScan +from geometry_msgs.msg import Point +from std_msgs.msg import Float32 +from bisect import bisect_left +from nav_msgs.msg import Odometry +import math +import numpy as np +from tf.transformations import quaternion_from_euler +from dynamic_reconfigure.msg import Config + +from visualization_msgs.msg import Marker,MarkerArray + +from f110_msgs.msg import ObstacleArray +from f110_msgs.msg import Obstacle as ObstacleMessage + +def normalize_s(x,track_length): + x = x % (track_length) + if x > track_length/2: + x -= track_length + return x + + +class Obstacle : + """ + This class implements the properties of the obstacles + """ + current_id = 0 + def __init__(self,x,y,size,theta) -> None: + self.center_x = x + self.center_y = y + self.size = size + self.id = None + self.theta = theta + + def squaredDist(self, obstacle): + return (self.center_x-obstacle.center_x)**2+(self.center_y-obstacle.center_y)**2 + + +class Detect : + """ + This class implements a ROS node that detects obstacles on the track + + It subscribes to the following topics: + - `/scan`: Publishes the lidar scans + - `/global_waypoints`: Publishes the global waypoints + - `/odom_frenet`: Publishes the car state in frenet frame + + + The node publishes the following topics: + - `/breakpoints_markers`: Publishes the breakpoint markers of the obstacles + - `/detect_bound`: Publishes the detect boundaries + - `/raw_obstacles`: Publishes the detected obstacles + - `/obstacles_markers_new`: Publishes the markers of the detected obstacles + """ + def __init__(self) -> None: + """ + Initialize the node, subscribe to topics, and create publishers and service proxies + """ + self.converter = None + + # --- Node properties --- + rospy.init_node('StaticDynamic', anonymous=True) + rospy.on_shutdown(self.shutdown) + + self.measuring = rospy.get_param("/measure", False) + self.from_bag = rospy.get_param("/from_bag", False) + + # --- Subscribers --- + rospy.Subscriber('/scan', LaserScan, self.laserCb) + rospy.Subscriber('/global_waypoints', WpntArray, self.pathCb) + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.carStateCb) + if not self.from_bag: + rospy.Subscriber("/dynamic_tracker_server/parameter_updates", Config, self.dyn_param_cb) + + # --- Publisher --- + self.breakpoints_markers_pub = rospy.Publisher('/perception/breakpoints_markers', MarkerArray, queue_size=5) + self.boundaries_pub = rospy.Publisher('/perception/detect_bound', Marker, queue_size=5) + self.obstacles_msg_pub = rospy.Publisher('/perception/detection/raw_obstacles', ObstacleArray, queue_size=5) + self.obstacles_marker_pub = rospy.Publisher('/perception/obstacles_markers_new', MarkerArray, queue_size=5) + if self.measuring: + self.latency_pub = rospy.Publisher('/perception/detection/latency', Float32, queue_size=5) + + # --- Tunable params --- + self.rate = rospy.get_param("/detect/rate") + self.lambda_angle = rospy.get_param("/detect/lambda")*math.pi/180 + self.sigma = rospy.get_param("/detect/sigma") + self.min_2_points_dist = rospy.get_param("/detect/min_2_points_dist") + + # --- dyn params sub --- + self.min_obs_size = 10 + self.max_obs_size = 0.5 + self.max_viewing_distance = 9 + self.boundaries_inflation = 0.1 + + # --- variables --- + + # track variables + self.waypoints = None + self.biggest_d = None + self.smallest_d = None + self.s_array = None + self.d_right_array = None + self.d_left_array = None + self.track_length = None + + # ego car s position + self.car_s = 0 + + # raw scans from the lidar + self.scans = None + + self.current_stamp = None + self.tracked_obstacles = [] + + self.tf_listener = tf.TransformListener() + self.path_needs_update = False + + while(self.waypoints is None): + rospy.sleep(0.1) + print("[Opponent Detection]: waiting ...") + + self.converter = self.initialize_converter() + + def shutdown(self): + rospy.logwarn('Opponent Detection is shutdown') + + def initialize_converter(self): + """ + Initialize the FrenetConverter object + """ + + # Initialize the FrenetConverter object + converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo("[Opponent Detection]: initialized FrenetConverter object") + + return converter + + # --- Callback functions --- + + def laserCb(self, msg): + self.scans = msg + + def pathCb(self, data): + # Initial calls: initialize the converter + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in data.wpnts]) + + # Second call: create the boundaries arrays + if (self.s_array is None or self.path_needs_update) and self.converter is not None: + rospy.loginfo('[Opponent Detection]: received global path') + waypoint_array = data.wpnts + points=[] + self.s_array = [] + self.d_right_array = [] + self.d_left_array = [] + for waypoint in waypoint_array: + self.s_array.append(waypoint.s_m) + self.d_right_array.append(waypoint.d_right-self.boundaries_inflation) + self.d_left_array.append(waypoint.d_left-self.boundaries_inflation) + resp = self.converter.get_cartesian(waypoint.s_m,-waypoint.d_right+self.boundaries_inflation) + points.append(Point(resp[0],resp[1],0)) + resp = self.converter.get_cartesian(waypoint.s_m,waypoint.d_left-self.boundaries_inflation) + points.append(Point(resp[0],resp[1],0)) + self.smallest_d = min(self.d_right_array+self.d_left_array) + self.biggest_d = max(self.d_right_array+self.d_left_array) + self.track_length = data.wpnts[-1].s_m + + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = rospy.Time.now() + marker.id = 0 + marker.type = marker.SPHERE_LIST + marker.scale.x = 0.02 + marker.scale.y = 0.02 + marker.scale.z = 0.02 + marker.color.a = 1 + marker.color.g = 0. + marker.color.r = 1. + marker.color.b = 0. + marker.points = points + + self.boundaries_pub.publish(marker) + self.path_needs_update = False + + def carStateCb(self, data): + self.car_s = data.pose.pose.position.x + + def dyn_param_cb(self, params: Config): + self.min_obs_size = rospy.get_param('dynamic_tracker_server/min_obs_size', 10) + self.max_obs_size = rospy.get_param('dynamic_tracker_server/max_obs_size', 0.5) + self.max_viewing_distance = rospy.get_param('dynamic_tracker_server/max_viewing_distance', 9) + self.boundaries_inflation = rospy.get_param('dynamic_tracker_server/boundaries_inflation', 0.1) + + self.path_needs_update = True + param_list = [self.min_obs_size, self.max_obs_size, self.max_viewing_distance] + print(f'[Opponent Detection]: New dyn reconf values recieved: Min size {param_list[0]} [laser points], Max size {param_list[1]} [m], max viewing dist {param_list[2]} [m]') + + # --- Functions --- + + def clearmarkers(self) -> list: + marker = Marker() + marker.action = 3 + return [marker] + + def laserPointOnTrack (self, s, d) -> bool: + if normalize_s(s-self.car_s,self.track_length)>self.max_viewing_distance: + return False + if abs(d) >= self.biggest_d: + return False + if abs(d) <= self.smallest_d: + return True + idx = bisect_left(self.s_array, s) + if idx: + idx -= 1 + if d <= -self.d_right_array[idx] or d >= self.d_left_array[idx]: + return False + return True + + def scans2ObsPointCloud(self): + """ + Converts the lidar scans to a 2D PointCloud and segments them into objects + """ + + # --- initialisation of some sutility parameters --- + l = self.lambda_angle + d_phi = self.scans.angle_increment + sigma = self.sigma + + # --- transform the scan ranges to a cloud point --- + self.current_stamp = rospy.Time.now() + try: + lct = self.tf_listener.getLatestCommonTime("map", "laser") + except: + rospy.logerr("[Opponent Detection]: lookup Tranform between map and laser not possible") + empty = [] + return empty + trans, quat = self.tf_listener.lookupTransform('/map', '/laser', lct) + T = np.array(trans) + R = tf.transformations.quaternion_matrix(quat) + + angles = np.linspace(self.scans.angle_min, self.scans.angle_max, len(self.scans.ranges)) + x_lf = (self.scans.ranges * np.cos(angles)).flatten() + y_lf = (self.scans.ranges * np.sin(angles)).flatten() + z_lf = (-T[0] * np.ones(len(self.scans.ranges))).flatten() + xyz_lf = np.vstack((x_lf, y_lf, z_lf, np.ones(len(self.scans.ranges)))) + + H_l2m = R + H_l2m[:3, -1] = T + + xyz_map = H_l2m @ xyz_lf + + cloudPoints_list = [] + for i in range(xyz_map.shape[1]): + pt = (xyz_map[0,i], xyz_map[1,i]) + cloudPoints_list.append(pt) + + # -------------------------------------------------- + # segment the cloud point into smaller point clouds + # that represent potential object using the adaptive + # method + # -------------------------------------------------- + + objects_pointcloud_list = [[[cloudPoints_list[0][0],cloudPoints_list[0][1]]]] + for idx, point in enumerate(cloudPoints_list): + if (idx == 0): + continue + dist = math.sqrt(point[0]**2 + point[1]**2) + d_max = (dist * math.sin(d_phi)/math.sin(l-d_phi)+3*sigma) / 2 + if (math.dist([cloudPoints_list[idx-1][0],cloudPoints_list[idx-1][1]], + [point[0],point[1]])>d_max): + objects_pointcloud_list.append([[point[0],point[1]]]) + else: + objects_pointcloud_list[-1].append([point[0],point[1]]) + + # ------------------------------------------------ + # removing point clouds that are too small or too + # big or that have their center point not on the + # track + # ------------------------------------------------ + + x_points = [] + y_points = [] + for obs in objects_pointcloud_list: + x_points.append(obs[int(len(obs)/2)][0]) + y_points.append(obs[int(len(obs)/2)][1]) + s_points, d_points = self.converter.get_frenet(np.array(x_points), np.array(y_points)) + + + remove_array=[] + for idx, object in enumerate(objects_pointcloud_list): + if len(object) < self.min_obs_size: + remove_array.append(object) + continue + if not (self.laserPointOnTrack(s_points[idx], d_points[idx])): + remove_array.append(object) + continue + + for object in remove_array: + objects_pointcloud_list.remove(object) + + markers_array = [] + for idx,object in enumerate(objects_pointcloud_list): + #first element + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = self.current_stamp + marker.id = idx*10 + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 0.5 + marker.color.g = 1. + marker.color.r = 0. + marker.color.b = idx/len(objects_pointcloud_list) + marker.pose.position.x = object[0][0] + marker.pose.position.y = object[0][1] + marker.pose.orientation.w = 1 + markers_array.append(marker) + + #last element + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = self.current_stamp + marker.id = idx*10+2 + marker.type = marker.SPHERE + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + marker.color.a = 0.5 + marker.color.g = 1. + marker.color.r = 0. + marker.color.b = idx/len(objects_pointcloud_list) + marker.pose.position.x = object[-1][0] + marker.pose.position.y = object[-1][1] + marker.pose.orientation.w = 1 + markers_array.append(marker) + + self.breakpoints_markers_pub.publish(self.clearmarkers()) + self.breakpoints_markers_pub.publish(markers_array) + return objects_pointcloud_list + + def obsPointClouds2obsArray (self,objects_pointcloud_list): + current_obstacle_array =[] + min_dist = self.min_2_points_dist + for obstacle in objects_pointcloud_list: + + # --- fit a rectangle to the data points --- + theta = np.linspace(0,np.pi/2-np.pi/180,90) + cos_theta = np.cos(theta) + sin_theta = np.sin(theta) + distance1 = np.dot(obstacle,[cos_theta,sin_theta]) + distance2 = np.dot(obstacle,[-sin_theta,cos_theta]) + D10 = -distance1 + np.amax(distance1,axis=0) + D11 = distance1 - np.amin(distance1,axis=0) + D20 = -distance2 + np.amax(distance2,axis=0) + D21 = distance2 - np.amin(distance2,axis=0) + min_array = np.argmin([np.linalg.norm(D10,axis=0),np.linalg.norm(D11,axis=0)],axis=0) + D10 = np.transpose(D10) + D11 = np.transpose(D11) + D10[min_array==1]=D11[min_array==1] + D10 = np.transpose(D10) + min_array = np.argmin([np.linalg.norm(D20,axis=0),np.linalg.norm(D21,axis=0)],axis=0) + D20 = np.transpose(D20) + D21 = np.transpose(D21) + D20[min_array==1]=D21[min_array==1] + D20 = np.transpose(D20) + D = np.minimum(D10,D20) + D[Dnp.var(distances1)): # the obstacle has more detection in the verticle direction + if (np.linalg.norm(-distances1+max_dist1) self.max_obs_size): + remove_list.append(obs) + + for obs in remove_list: + current_obstacles.remove(obs) + + for idx, curr_obs in enumerate(current_obstacles): + curr_obs.id = idx + self.tracked_obstacles.append(curr_obs) + + def publishObstaclesMessage (self): + obstacles_array_message = ObstacleArray() + obstacles_array_message.header.stamp = self.current_stamp + obstacles_array_message.header.frame_id = "map" + + x_center = [] + y_center = [] + for obstacle in self.tracked_obstacles: + x_center.append(obstacle.center_x) + y_center.append(obstacle.center_y) + + s_points, d_points = self.converter.get_frenet(np.array(x_center), np.array(y_center)) + + for idx, obstacle in enumerate(self.tracked_obstacles): + s = s_points[idx] + d = d_points[idx] + + obsMsg = ObstacleMessage() + obsMsg.id = obstacle.id + obsMsg.s_start = s-obstacle.size/2 + obsMsg.s_end = s+obstacle.size/2 + obsMsg.d_left = d+obstacle.size/2 + obsMsg.d_right = d-obstacle.size/2 + obsMsg.s_center = s + obsMsg.d_center = d + obsMsg.size = obstacle.size + + obstacles_array_message.obstacles.append(obsMsg) + self.obstacles_msg_pub.publish(obstacles_array_message) + + + def publishObstaclesMarkers(self): + markers_array = [] + for obs in self.tracked_obstacles: + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = self.current_stamp + marker.id = obs.id + marker.type = marker.CUBE + marker.scale.x = obs.size + marker.scale.y = obs.size + marker.scale.z = obs.size + marker.color.a = 0.5 + marker.color.g = 1. + marker.color.r = 0. + marker.color.b = 1. + marker.pose.position.x = obs.center_x + marker.pose.position.y = obs.center_y + q = quaternion_from_euler(0, 0, obs.theta) + marker.pose.orientation.x = q[0] + marker.pose.orientation.y = q[1] + marker.pose.orientation.z = q[2] + marker.pose.orientation.w = q[3] + markers_array.append(marker) + self.obstacles_marker_pub.publish(self.clearmarkers()) + self.obstacles_marker_pub.publish(markers_array) + Obstacle.current_id = 0 + + + def main (self): + rate = rospy.Rate(self.rate) + rospy.loginfo('[Opponent Detection]: Waiting for global wpnts') + rospy.wait_for_message('/global_waypoints', WpntArray) + rospy.loginfo('[Opponent Detection]: Ready') + while not rospy.is_shutdown(): + if self.measuring: + start_time = time.perf_counter() + objects_pointcloud_list= self.scans2ObsPointCloud() + current_obstacles = self.obsPointClouds2obsArray(objects_pointcloud_list) + self.checkObstacles(current_obstacles) + if self.measuring: + end_time = time.perf_counter() + latency = end_time - start_time + self.latency_pub.publish(latency) + self.publishObstaclesMessage() + self.publishObstaclesMarkers() + rate.sleep() + + +if __name__ == '__main__': + detect = Detect() + detect.main() diff --git a/perception/opponent_tracker/src/dynamic_tracker_server.py b/perception/opponent_tracker/src/dynamic_tracker_server.py new file mode 100755 index 0000000..109d085 --- /dev/null +++ b/perception/opponent_tracker/src/dynamic_tracker_server.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +import rospy +from dynamic_reconfigure.server import Server +from perception.cfg import dyn_tracker_tunerConfig + +def callback(config, level): + # tracking + config.dist_deletion = round(config.dist_deletion * 20) / 20 + config.dist_infront = round(config.dist_infront * 20) /20 + config.min_std = round(min(config.min_std, config.max_std) * 100) / 100 + config.max_std = round(max(config.min_std + 0.01, config.max_std) * 100) / 100 + config.vs_reset = round(config.vs_reset * 100) / 100 + config.aggro_multi = round(config.aggro_multi *10) / 10 + config.ratio_to_glob_path = round(config.ratio_to_glob_path * 10) / 10 + + # detection + config.max_obs_size = round(config.max_obs_size * 10) / 10 + config.max_viewing_distance = round(config.max_viewing_distance * 20) / 20 + config.boundaries_inflation = round(config.boundaries_inflation *100) / 100 + return config + +if __name__ == "__main__": + rospy.init_node("dynamic_tracker_server", anonymous=False) + print('[Opponent Tracking] Dynamic Tracker Server Launched...') + srv = Server(dyn_tracker_tunerConfig, callback) + rospy.spin() \ No newline at end of file diff --git a/perception/opponent_tracker/src/tracking.py b/perception/opponent_tracker/src/tracking.py new file mode 100755 index 0000000..94ad887 --- /dev/null +++ b/perception/opponent_tracker/src/tracking.py @@ -0,0 +1,825 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import math +import time +import numpy as np +import rospy + +from std_msgs.msg import Float32 +from f110_msgs.msg import WpntArray +from sensor_msgs.msg import LaserScan +from filterpy.common import Q_discrete_white_noise +from filterpy.kalman import ExtendedKalmanFilter as EKF +from frenet_converter.frenet_converter import FrenetConverter +from nav_msgs.msg import Odometry +from scipy.linalg import block_diag +from visualization_msgs.msg import Marker,MarkerArray +from tf.transformations import euler_from_quaternion +from dynamic_reconfigure.msg import Config + +from f110_msgs.msg import ObstacleArray,Obstacle + +def normalize_s(s,track_length): + s = s % (track_length) + if s > track_length/2: + s -= track_length + return s + + +class Opponent_state: + """ + This class implements the opponent with a kalman filter + """ + track_length = None + waypoints = None + rate = None #hz + dt = None + ttl = None + P_vs = None + P_d = None + P_vd = None + measurment_var_s = None + measurment_var_d = None + measurment_var_vs = None + measurment_var_vd = None + process_var_vs = None + process_var_vd = None + ratio_to_glob_path = None + def __init__(self): + """ + Initializes the kalman filter + """ + self.id = None + self.size = None + self.isInitialised = False + self.vs_list = [] + self.avg_vs = 0 + self.useTargetVel = False + + #---------------------------------------------------------------- + # --- initialization of the kalman filter --- + # the state of the kalman filter is : + # X = [s, v_s, d, v_d] + # + # the measurment of the kalman filter is : + # Z = [s, d] + # + # the model of the kalman filter is constant velocity in the + # frenet frame added to that: + # - A target velocity for the s direction to be proportional to + # the precaculated velocity of the path + # - A target velocity in the d direction that bring it back to 0 + # - A target position in the d direction that bring it back to 0 + #--------------------------------------------------------------- + + self.dynamic_kf = EKF(dim_x=4, dim_z=2) + self.dynamic_kf.F = np.array([[1., Opponent_state.dt, 0., 0.], + [0., 1, 0, 0.], + [0., 0., 1, Opponent_state.dt], + [0., 0., 0., 1]]) + q1 =Q_discrete_white_noise(dim= 2, dt= 1./Opponent_state.rate ,var=Opponent_state.process_var_vs) + q2 =Q_discrete_white_noise(dim= 2, dt=1./Opponent_state.rate, var=Opponent_state.process_var_vd) + self.dynamic_kf.Q = block_diag(q1, q2) + self.dynamic_kf.H = np.identity(4) + self.dynamic_kf.R = np.diag([Opponent_state.measurment_var_s, Opponent_state.measurment_var_vs, + Opponent_state.measurment_var_d, Opponent_state.measurment_var_vd]) + self.dynamic_kf.P = np.array([[Opponent_state.measurment_var_s, 0., 0., 0.], + [0., Opponent_state.process_var_vs, 0., 0.], + [0., 0., Opponent_state.measurment_var_d, 0.], + [0., 0., 0., Opponent_state.process_var_vd]]) + self.dynamic_kf.B = np.identity(4) + + filter_length = 5 + self.vs_filt = np.zeros(filter_length) + self.vd_filt = np.zeros(filter_length) + + # --- defining some utility functions --- + def residual_h(a,b): + y = a-b + y[0] = normalize_s(y[0],Opponent_state.track_length) + return y + + def Hjac(self): + return np.identity(4) + + def hx(x): + return np.array([normalize_s(x[0], + Opponent_state.track_length),x[1], x[2], x[3]]) + + def target_velocity(self) : + idx_closest_waypoint = int((self.dynamic_kf.x[0]*10)%Opponent_state.track_length) + return Opponent_state.ratio_to_glob_path*Opponent_state.waypoints[idx_closest_waypoint].vx_mps + + # --------------------------------------- + # defining the predict and update + # functions for the kalman filter + # --------------------------------------- + + def predict (self): + if self.useTargetVel: + self.dynamic_kf.predict(u=[0,Opponent_state.P_vs*(self.target_velocity()-self.dynamic_kf.x[1]), + -Opponent_state.P_d*self.dynamic_kf.x[2],-Opponent_state.P_vd*self.dynamic_kf.x[3]]) + else: + self.dynamic_kf.predict(u=[0, 0, + -Opponent_state.P_d*self.dynamic_kf.x[2],-Opponent_state.P_vd*self.dynamic_kf.x[3]]) + self.dynamic_kf.x[0] = normalize_s(self.dynamic_kf.x[0],Opponent_state.track_length) + + def update(self, tracked_obstacle: ObstacleSD): + + vs = ((2/3 * (tracked_obstacle.measurments_s[-1] - tracked_obstacle.measurments_s[-2])*self.rate) + + (1/3 * (tracked_obstacle.measurments_s[-2] - tracked_obstacle.measurments_s[-3])*self.rate)) + + if not (vs > -1 and vs < 8): + self.isInitialised = False + return + + z = np.array([ + tracked_obstacle.measurments_s[-1], + vs, + tracked_obstacle.measurments_d[-1], + (tracked_obstacle.measurments_d[-1] - tracked_obstacle.measurments_d[-2])*self.rate, + ]) + + self.dynamic_kf.update( + np.array([ + normalize_s(z[0],Opponent_state.track_length), z[1], z[2], z[3] + ]), + Opponent_state.Hjac, + Opponent_state.hx, + residual=Opponent_state.residual_h + ) + self.dynamic_kf.x[0] = normalize_s(self.dynamic_kf.x[0],Opponent_state.track_length) + + self.vs_list.append(self.dynamic_kf.x[1]) + if(len(self.vs_list) > 20): + self.vs_list = self.vs_list[-10:] + + self.avg_vs = 0 + for v in self.vs_list: + self.avg_vs += v + self.avg_vs /= len(self.vs_list) + + self.vs_filt[0] = self.dynamic_kf.x[1] + self.vs_filt[1:] = self.vs_filt[:-1] + self.vd_filt[0] = self.dynamic_kf.x[3] + self.vd_filt[1:] = self.vd_filt[:-1] + + if(len(self.vs_list) >=10): + self.vs_list.pop(0) + self.vs_list.append(self.dynamic_kf.x[1]) + +# ---------------------------------------------------------------- +# create a class to define what are the properties of an obstacle +# ---------------------------------------------------------------- +class ObstacleSD: + """ + This Class implements the propoerties of the static/dynamic obstacles + """ + min_nb_meas = None + ttl = None + min_std = None + max_std = None + + def __init__(self, id, s_meas, d_meas, lap, size, isVisible): + """ + Initialize the static/dynamic obstacle + """ + # --- variable --- + self.id = id + self.measurments_s = [s_meas] + self.measurments_d = [d_meas] + self.mean = [s_meas,d_meas] # [mean_s. mean_d] + self.static_count = 0 + self.total_count = 0 + self.nb_meas = 0 + self.ttl = ObstacleSD.ttl + self.isInFront = True + self.current_lap = lap + self.staticFlag = None + self.size = size + self.nb_detection = 0 + self.isVisible = isVisible + + def update_mean(self,track_length): + if (self.nb_meas == 0): + self.mean = [self.measurments_s[-1],self.measurments_d[-1]] + else: + # ------------------------------------------------------------------------------------ + # since we know the number of measurments and the previous mean, to not loop + # through all the data the current mean is just a weighted sum between the + # previous mean weighted by the number of measurments and the new measurment + # ------------------------------------------------------------------------------------ + + self.mean[1] = (self.mean[1]*self.nb_meas+self.measurments_d[-1])/(self.nb_meas+1) + + # ------------------------------------------------------------------------------------ + # to account for the wrapping in the process we can transform the s measurments into + # angles ranging from 0 to 2 pi and do the weighted sum over unitary vectors with those + # angles and then convert the resulting angle back to an s measurment + # ------------------------------------------------------------------------------------ + + previous_mean_rad = self.mean[0]*2*math.pi/track_length + current_meas_rad = self.measurments_s[-1]*2*math.pi/track_length + cos_mean_angle = (math.cos(previous_mean_rad)*self.nb_meas+math.cos(current_meas_rad))/(self.nb_meas+1) + sin_mean_angle = (math.sin(previous_mean_rad)*self.nb_meas+math.sin(current_meas_rad))/(self.nb_meas+1) + mean_angle = math.atan2(sin_mean_angle,cos_mean_angle) + mean_s = mean_angle*track_length/2/math.pi + self.mean[0] = mean_s if mean_s>=0 else mean_s+track_length + + def std_s (self,track_length): + sum = 0 + mean_s = self.mean[0] + for s in self.measurments_s: + sum += normalize_s(s-mean_s,track_length)**2 + return (sum/len(self.measurments_s))**0.5 + + def std_d (self): + return np.std(self.measurments_d) + + def isStatic(self,track_length): + # --- get a representative data set for the obstacle --- + if self.nb_meas > ObstacleSD.min_nb_meas: + std_s = self.std_s(track_length) + std_d = self.std_d() + # --- create a voting system so that the outliers don't affect much the result --- + if (std_s < ObstacleSD.min_std and std_d < ObstacleSD.min_std): + self.static_count = self.static_count +1 + # --- assert for sure that an obstacle is dynamic and not static --- + elif (std_s > ObstacleSD.max_std or std_d > ObstacleSD.max_std): + self.static_count = 0 + self.total_count = self.total_count +1 + self.staticFlag = self.static_count/self.total_count >= 0.5 + else: + self.staticFlag = None + +class StaticDynamic: + """ + This class implements a ROS node that classifies an publishes obstacles. + + It subscribes to the following topics: + - `/raw_obstacles`: Publishes the raw obstacle data. + - `/global_waypoints`: Publishes the global waypoints. + - `/odom_frenet`: Publishes the car state in frenet frame. + - `/odom`: Publishes the car state in glob frame. + - `/scan`: Publishes the lidar scans. + + It publishes the following topics: + - `/static_dynamic_marker_pub`: Publishes the obstacle markers + - `/obstacles`: Publishes the obstacles + - `/raw_obstacles`: Publishes the obstacles without Kalman Filtering + """ + def __init__(self): + """ + Initialize the node, subscribe to topics, and create publishers and service proxies. + """ + # --- Node properties --- + rospy.init_node('StaticDynamic', anonymous=True) + rospy.on_shutdown(self.shutdown) + + # --- Variables --- + self.meas_obstacles = [] + self.tracked_obstacles = [] + self.waypoints = None + self.car_s = None + self.car_position = None + self.car_orientation = None + self.last_car_s = 0 + self.current_lap = 0 + self.globalpath = None + self.track_length = None + self.opponent_obstacle = None + self.current_stamp = None + self.scans = None + self.current_id = 1 + self.from_bag = rospy.get_param("/from_bag", False) + self.measuring = rospy.get_param("/measure", False) + + + # --- Subscribers --- + rospy.Subscriber('/perception/detection/raw_obstacles', ObstacleArray, self.obstacleCallback) + rospy.Subscriber('/global_waypoints', WpntArray, self.pathCallback) + rospy.Subscriber('/car_state/odom_frenet', Odometry, self.carStateCallback) + rospy.Subscriber('/car_state/odom', Odometry, self.carStateGlobCallback) + rospy.Subscriber('/scan', LaserScan, self.scansCallback) + if not self.from_bag: + rospy.Subscriber("/dynamic_tracker_server/parameter_updates", Config, self.dyn_param_cb) + + # --- Publisher --- + self.static_dynamic_marker_pub = rospy.Publisher('/perception/static_dynamic_marker_pub', MarkerArray, queue_size=5) + self.estimated_obstacles_pub = rospy.Publisher('/perception/obstacles', ObstacleArray, queue_size=5) + self.raw_opponent_pub = rospy.Publisher('/perception/raw_obstacles', ObstacleArray, queue_size=5) + if self.measuring: + self.latency_pub = rospy.Publisher('/perception/tracking/latency', Float32, queue_size=10) + + # --- Tunable Parameters --- + self.rate = rospy.get_param("/tracking/rate") + + Opponent_state.rate = self.rate + Opponent_state.dt = 1/self.rate + Opponent_state.P_vs = rospy.get_param("/tracking/P_vs") + Opponent_state.P_d = rospy.get_param("/tracking/P_d") + Opponent_state.P_vd = rospy.get_param("/tracking/P_vd") + Opponent_state.measurment_var_s = rospy.get_param("/tracking/measurment_var_s") + Opponent_state.measurment_var_d = rospy.get_param("/tracking/measurment_var_d") + Opponent_state.measurment_var_vs = rospy.get_param("/tracking/measurment_var_vs") + Opponent_state.measurment_var_vd = rospy.get_param("/tracking/measurment_var_vd") + Opponent_state.process_var_vs = rospy.get_param("/tracking/process_var_vs") + Opponent_state.process_var_vd = rospy.get_param("/tracking/process_var_vd") + + self.max_dist = rospy.get_param("/tracking/max_dist") + self.var_pub = rospy.get_param("/tracking/var_pub") + + # dyn params sub + Opponent_state.ttl = 40 + Opponent_state.ratio_to_glob_path = 0.6 + ObstacleSD.ttl = 3 + ObstacleSD.min_nb_meas = 5 + ObstacleSD.min_std = 0.16 + ObstacleSD.max_std = 0.2 + self.dist_deletion = 7 + self.dist_infront = 8 + self.vs_reset = 0.1 + self.aggro_multiplier = 2 + self.debug_mode = False + self.publish_static = True + self.noMemoryMode = False + + while(self.waypoints is None): + rospy.sleep(0.1) + self.converter = self.initialize_converter() + + def dyn_param_cb(self, params: Config): + Opponent_state.ttl = rospy.get_param('dynamic_tracker_server/ttl_dynamic', 40) + Opponent_state.ratio_to_glob_path = rospy.get_param('dynamic_tracker_server/ratio_to_glob_path', 0.6) + + ObstacleSD.ttl = rospy.get_param('dynamic_tracker_server/ttl_static', 3) + ObstacleSD.min_nb_meas = rospy.get_param('dynamic_tracker_server/min_nb_meas', 5) + ObstacleSD.min_std = rospy.get_param('dynamic_tracker_server/min_std', 0.16) + ObstacleSD.max_std = rospy.get_param('dynamic_tracker_server/max_std', 0.2) + + self.dist_deletion = rospy.get_param('dynamic_tracker_server/dist_deletion', 7) + self.dist_infront = rospy.get_param('dynamic_tracker_server/dist_infront', 8) + self.vs_reset = rospy.get_param('dynamic_tracker_server/vs_reset', 0.1) + self.aggro_multiplier = rospy.get_param('dynamic_tracker_server/aggro_multi', 2) + self.debug_mode = rospy.get_param('dynamic_tracker_server/debug_mode', False) + self.publish_static = rospy.get_param('dynamic_tracker_server/publish_static', True) + self.noMemoryMode = rospy.get_param('dynamic_tracker_server/noMemoryMode', False) + + obstacle_params = [ObstacleSD.ttl, ObstacleSD.min_nb_meas, ObstacleSD.min_std, ObstacleSD.max_std] + print(f'[Tracking] Dynamic reconf triggered new tracking params: Tracking TTL: {Opponent_state.ttl}, Ratio to glob path: {Opponent_state.ratio_to_glob_path}\n' + f'ObstacleSD ttl, min_nb_meas, min_std, max_std: {obstacle_params},\n', + f'dist_deletion: {self.dist_deletion} [m], dist_infront: {self.dist_infront} [m], vs_reset: {self.vs_reset},\n', + f'Publish static obstacles: {self.publish_static}, no memory mode: {self.noMemoryMode}' + ) + + + def shutdown(self): + rospy.logwarn('Tracking is shutdown') + + # --- Callbacks --- + + def obstacleCallback(self,data): + self.meas_obstacles = data.obstacles + self.current_stamp = data.header.stamp + + def pathCallback(self, data): + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in data.wpnts]) + if self.track_length is None: + rospy.loginfo('[Tracking] received global path') + self.globalpath = data.wpnts + self.track_length = data.wpnts[-1].s_m + Opponent_state.track_length = self.track_length + Opponent_state.waypoints = self.globalpath + + def initialize_converter(self) -> bool: + """ + Initialize the FrenetConverter object""" + rospy.wait_for_message("/global_waypoints", WpntArray) + + # Initialize the FrenetConverter object + converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo("[Tracking] initialized FrenetConverter object") + + return converter + + def carStateCallback (self, data): + self.car_s = data.pose.pose.position.x + if self.last_car_s is None: + self.last_car_s = data.pose.pose.position.x + + def carStateGlobCallback(self,data): + self.car_position = np.array([data.pose.pose.position.x,data.pose.pose.position.y]) + angles = euler_from_quaternion([data.pose.pose.orientation.x, + data.pose.pose.orientation.y, + data.pose.pose.orientation.z, + data.pose.pose.orientation.w]) + theta = angles[2] + self.car_orientation = np.array([np.cos(theta),np.sin(theta)]) + + def scansCallback(self, data): + self.scans = data.ranges + + + # --- Utility Functions --- + def lap_update (self, car_s): + if car_s - self.last_car_s <-self.track_length/2: + self.current_lap +=1 + self.last_car_s = car_s + + def get_closest_pos(self, max_dist, obstacle_position, meas_obstacles_copy): + potential_obs = [] + dists = [] + for meas_obstacle in meas_obstacles_copy: + meas_obstacle_position=[meas_obstacle.s_center, + meas_obstacle.d_center] + dist = math.dist(obstacle_position,meas_obstacle_position) + if (dist0): + min_idx = np.argmin(dists) + return True, potential_obs[min_idx] + + # maybe kalman was wrong, the obstacles can't just be gone + elif(obstacle.staticFlag == False): + obstacle_position = [obstacle.mean[0], obstacle.mean[1]] + potential_obs, dists = self.get_closest_pos(max_dist, obstacle_position, meas_obstacles_copy) + if (len(dists)>0): + min_idx = np.argmin(dists) + return True, potential_obs[min_idx] + + return False, None + + def angle_to_obs(self, vec_to_obstacle: np.array, car_orientation: np.array) -> float: + norm_vec_to_obs = vec_to_obstacle/np.linalg.norm(vec_to_obstacle) + norm_car_orientation = car_orientation/np.linalg.norm(car_orientation) + + theta = np.arctan2(norm_car_orientation[1], norm_car_orientation[0]) + if theta < 0: + theta += 2*np.pi + + rot = np.array([[np.cos(theta), np.sin(theta)], [-np.sin(theta), np.cos(theta)]]) + vec_to_obs_rot = np.dot(rot, norm_vec_to_obs) + + phi = np.degrees(np.arctan2(vec_to_obs_rot[1], vec_to_obs_rot[0])) + + angle = 135 + phi # because lidar has a range of 270 deg + + return angle + + def update_tracked_obstacle(self, tracked_obstacle: ObstacleSD, meas_obstacle): + tracked_obstacle.measurments_s.append(meas_obstacle.s_center) + tracked_obstacle.measurments_d.append(meas_obstacle.d_center) + # handle list lenght + if(len(tracked_obstacle.measurments_s) > 30): + tracked_obstacle.measurments_s = tracked_obstacle.measurments_s[-20:] + tracked_obstacle.measurments_d = tracked_obstacle.measurments_d[-20:] + tracked_obstacle.update_mean(self.track_length) + tracked_obstacle.nb_meas += 1 + tracked_obstacle.isInFront = True + tracked_obstacle.isVisible = True + tracked_obstacle.current_lap = self.current_lap + tracked_obstacle.size = meas_obstacle.size + tracked_obstacle.isStatic(self.track_length) + tracked_obstacle.ttl = ObstacleSD.ttl + + return tracked_obstacle + + def initialize_dynamic_obstacle(self, tracked_obstacle): + self.opponent_obstacle.dynamic_kf.x = np.array([ + tracked_obstacle.measurments_s[-1], + (tracked_obstacle.measurments_s[-1]-tracked_obstacle.measurments_s[-2])*Opponent_state.rate, + tracked_obstacle.measurments_d[-1], + (tracked_obstacle.measurments_d[-1]-tracked_obstacle.measurments_d[-2])*Opponent_state.rate + ]) + self.opponent_obstacle.isInitialised = True + self.opponent_obstacle.id = tracked_obstacle.id + self.opponent_obstacle.ttl = Opponent_state.ttl + self.opponent_obstacle.size = tracked_obstacle.size + self.opponent_obstacle.avg_vs = 0 + self.opponent_obstacle.vs_list = [] + + def check_in_front(self, tracked_obstacle, car_s_copy) -> bool: + obj_dist_in_front = normalize_s( + tracked_obstacle.measurments_s[-1] - car_s_copy, + self.track_length) + + return 0 < obj_dist_in_front < self.dist_infront + + def calc_distance_obs_car(self, tracked_obstacle, car_s): + distance_obs_car = (tracked_obstacle.measurments_s[-1] - car_s) % self.track_length + + if self.debug_mode: + print("DIST CAR TO OBS") + print("car s: ", car_s) + print("obsatcle s: ", tracked_obstacle.measurments_s[-1]) + print("track length: ", self.track_length) + print("current lap: ", self.current_lap) + print("obstacle lap: ", tracked_obstacle.current_lap) + print("distance: ", distance_obs_car) + print("----------------------------------") + + return distance_obs_car + + def check_in_field_of_view(self, vec_car_to_obs, car_orientation_copy, dist_to_obs) -> bool: + """ + Checks if an obstacle is in the field of view by checking the corresponding lidar beams + """ + dist_to_obs = np.linalg.norm(vec_car_to_obs) + + angle = self.angle_to_obs(vec_car_to_obs, car_orientation_copy) + + max_angle = len(self.scans) - 1 + fov = int(max_angle/4) + if(angle > 135 + fov/2 or angle < 135 - fov/2): + return False + + removed_deg = 135 - int(fov/2) + + idx = int(round(4* (angle - removed_deg))) # because scans has 4*270 entries + if idx < 0 or idx > max_angle: return False + + if self.debug_mode: + print("FIELD OF VIEW:") + print("index: ", idx) + print("angle: ", angle) + print("Other lidar scans: ", str([f"{sc:.2f}" for sc in self.scans[idx-10:idx+10]])) + print("dist: ", dist_to_obs) + print("----------------------------------") + + if(dist_to_obs < min(self.scans[max(0, idx -4) : min(idx + 4, max_angle)])): + return True + + return False + + # --- update tracked obstacles, add new obstacles and remove unecessary --- + def update(self): + meas_obstacles_copy = self.meas_obstacles.copy() + car_s_copy = self.car_s + car_position_copy = np.copy(self.car_position) + car_orientation_copy = np.copy(self.car_orientation) + self.lap_update(car_s_copy) + removal_list = [] + for tracked_obstacle in self.tracked_obstacles: + # --- verify if the obstacle is tracked by position and update the associated obstacle --- + isTracked, meas_obstacle = self.verify_position(tracked_obstacle, meas_obstacles_copy) + + if isTracked: + tracked_obstacle = self.update_tracked_obstacle(tracked_obstacle, meas_obstacle) + # obstacle is classified as moving + if(tracked_obstacle.staticFlag == False): + if self.opponent_obstacle.isInitialised: + self.opponent_obstacle.useTargetVel = False + if(self.opponent_obstacle.avg_vs < self.vs_reset and len(self.opponent_obstacle.vs_list) > 10 and self.publish_static): + self.opponent_obstacle.isInitialised = False + tracked_obstacle.staticFlag = True + tracked_obstacle.static_count = 0 + tracked_obstacle.total_count = 0 + tracked_obstacle.nb_meas = 0 + else: + self.opponent_obstacle.update(tracked_obstacle) + self.opponent_obstacle.id = tracked_obstacle.id + self.opponent_obstacle.ttl = Opponent_state.ttl + self.opponent_obstacle.size = tracked_obstacle.size + else: + self.initialize_dynamic_obstacle(tracked_obstacle) + meas_obstacles_copy.remove(meas_obstacle) + + else: + # --- remove obstacle with dead ttl --- + if tracked_obstacle.ttl <= 0: + if(tracked_obstacle.staticFlag == False): + self.opponent_obstacle.useTargetVel = True + removal_list.append(tracked_obstacle) + elif tracked_obstacle.staticFlag is None: + tracked_obstacle.ttl-=1 + else: + tracked_obstacle.isInFront = self.check_in_front(tracked_obstacle, car_s_copy) + distance_obstacle_car = self.calc_distance_obs_car(tracked_obstacle, car_s_copy) + + if(tracked_obstacle.staticFlag and self.noMemoryMode): + tracked_obstacle.ttl -= 1 + # --- if obstacle is near enough check if we can see it --- + elif(distance_obstacle_car < self.dist_deletion and tracked_obstacle.staticFlag): + try: + resp = self.converter.get_cartesian(tracked_obstacle.mean[0],tracked_obstacle.mean[1]) + except: + continue + vec_car_to_obs = resp - car_position_copy + if (self.check_in_field_of_view(vec_car_to_obs, car_orientation_copy, distance_obstacle_car)): + tracked_obstacle.ttl-=1 + tracked_obstacle.isVisible = True + else: + tracked_obstacle.isVisible = False + # update ttl of moving obstacles + elif(not tracked_obstacle.staticFlag): + tracked_obstacle.ttl -= 1 + else: + tracked_obstacle.isVisible = False + + # update ttl of dynamic obstacle + if(self.opponent_obstacle.isInitialised): + if(self.opponent_obstacle.ttl <= 0): + self.opponent_obstacle.isInitialised = False + self.opponent_obstacle.useTargetVel = False + else: + self.opponent_obstacle.ttl -= 1 + + for el in removal_list: + self.tracked_obstacles.remove(el) + + for meas_obstacle in meas_obstacles_copy: + # update the init function and append a new obstacle to the new _obstacles + self.tracked_obstacles.append(ObstacleSD( + id = self.current_id, + s_meas = meas_obstacle.s_center, + d_meas = meas_obstacle.d_center, + lap = self.current_lap, + size = meas_obstacle.size, + isVisible = True + )) + self.current_id += 1 + + def clearmarkers(self): + marker = Marker() + marker.action = 3 + return [marker] + + def publish_Marker(self): + markers_array = [] + for tracked_obstacle in self.tracked_obstacles: + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = self.current_stamp + marker.id = tracked_obstacle.id + marker.type = marker.SPHERE + + if tracked_obstacle.isInFront : + marker.scale.x = 0.5 + marker.scale.y = 0.5 + marker.scale.z = 0.5 + else : + marker.scale.x = 0.25 + marker.scale.y = 0.25 + marker.scale.z = 0.25 + + marker.color.a = 0.5 + if tracked_obstacle.staticFlag is None: + marker.type = marker.SPHERE + marker.color.g = 0. + marker.color.r = 1. + marker.color.b = 1. + x, y = self.converter.get_cartesian(tracked_obstacle.measurments_s[-1],tracked_obstacle.measurments_d[-1]) + + marker.pose.position.x = x + marker.pose.position.y = y + marker.pose.orientation.w = 1 + + elif tracked_obstacle.staticFlag : + marker.color.g = 1. + marker.color.r = 0. + marker.color.b = 0. + x, y = self.converter.get_cartesian(tracked_obstacle.mean[0],tracked_obstacle.mean[1]) + marker.pose.position.x = x + marker.pose.position.y = y + marker.pose.orientation.w = 1 + + if tracked_obstacle.staticFlag is None and self.publish_static: + markers_array.append(marker) + elif tracked_obstacle.staticFlag and self.publish_static: + markers_array.append(marker) + if self.opponent_obstacle.isInitialised: + marker = Marker() + marker.header.frame_id = "map" + marker.header.stamp = self.current_stamp + marker.id = self.opponent_obstacle.id + marker.type = marker.SPHERE + if self.opponent_obstacle.dynamic_kf.P[0][0] + + perception + 0.0.0 + The perception package + + + + + icra_crew + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + realsense2_camera + message_generation + nav_msgs + ddynamic_reconfigure + dynamic_reconfigure + diagnostic_updater + tf + laser_geometry + sensor_msgs + cv_bridge + std_srvs + image_transport + + roscpp + rospy + std_msgs + dynamic_reconfigure + + roscpp + rospy + std_msgs + realsense2_camera + message_generation + nav_msgs + ddynamic_reconfigure + dynamic_reconfigure + diagnostic_updater + tf + laser_geometry + sensor_msgs + cv_bridge + std_srvs + image_transport + + + + + + + + + + + + + diff --git a/planner/README.md b/planner/README.md new file mode 100644 index 0000000..a37a968 --- /dev/null +++ b/planner/README.md @@ -0,0 +1,10 @@ +# Planner +![Planner](./misc/planner_arch.png) + +This directory contains the local planning system (i.e. overtaking and collision avoidance) and the global planning system (minimum curvature trajectory generation) of F110 at the PBL group + +## Global Planner +- [`gb_optimizer`](./gb_optimizer) + +## Local Planner +- [`spliner`](./spliner/README.md) diff --git a/planner/gb_optimizer/CMakeLists.txt b/planner/gb_optimizer/CMakeLists.txt new file mode 100644 index 0000000..3a4e455 --- /dev/null +++ b/planner/gb_optimizer/CMakeLists.txt @@ -0,0 +1,209 @@ +cmake_minimum_required(VERSION 3.0.2) +project(gb_optimizer) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + nav_msgs + roscpp + rospy + std_msgs + rospy_message_converter +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder + # add_message_files( + # FILES + # Wpnt.msg + # WpntArray.msg + # ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# nav_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES gb_optimizer + CATKIN_DEPENDS nav_msgs roscpp rospy +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/gb_optimizer.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/gb_optimizer_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_gb_optimizer.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/planner/gb_optimizer/README.md b/planner/gb_optimizer/README.md new file mode 100644 index 0000000..c33b0ae --- /dev/null +++ b/planner/gb_optimizer/README.md @@ -0,0 +1,40 @@ +# Global Optimizer + +## Description +The Global Optimizer package is a ROS package designed to generate a global trajectory around a race track. It provides a node that subscribes to map and car pose information, processes this data, and publishes global waypoints, track boundaries and map informations and saves everything in a JSON file. This package is implemented in Python and uses the `rospy` library for ROS interactions. For the calculation of the global trajectory, it uses the [TUM Global Race Trajectory Optimization](https://github.com/TUMFTM/global_racetrajectory_optimization) package, which was modified so that it was possible to integrate it in our race stack. The main node `global_planner_node.py` is launched with the `mapping.launch` file from the `stack_master` package or if the `map_editor` is used. There is also a node `global_trajectory_publisher.py` for publishing the global waypoints and markers and track bounds markers frequently after they have been calculated which is launched every time the base system is launched. + +## Parameters + - `rate`: Sets the rate in hertz at which the ROS node is running. + - `test_on_car`: Defines if the global optimizer is running on the car `True` or in simulation `False`. + - `safety_width`: Sets the width of the car in meters including a safety margin for the calculation of the global trajectory. + - `safety_width_sp`: Sets the width of the car in meters including a safety margin for the calculation of the shortest path trajectory. + - `occupancy_grid_threshold`: Sets the threshold above which a cell in the occupancy grid is considered occupied and below it is considered free. + - `show_plots`: Show additional plots for debugging during generation of the global trajectory. + - `map_editor`: `True` if the map editor is used. + - `map_editor_mapping`: `True` if the map editor is used live on the car. + - `map_name`: Sets the name of the map. + - `map_dir`: Sets the directory of the map. + - `create_map`: Create a map that can be used in the simulator and save a YAML file and a PNG of the map in the directory `map_dir`. + - `reverse_mapping`: Generate a global trajectory in the reverse direction. + - `required_laps`: Number of laps required before the generation of the global trajectory can be started. + +## Input/Output Topic Signature +This node subscribes to: +- `/map`: Subscribes to the occupancy grid of the map. +- `/car_state/pose`: Reads the car's pose + +The node publishes to: +- `/global_waypoints`: Publishes global waypoints. +- `/global_waypoints/markers`: Publishes global waypoint markers. +- `/global_waypoints/shortest_path`: Publishes waypoints of the shortest path trajectory (only used for visualization of the overtaking sectors). +- `/global_waypoints/shortest_path/markers`: Publishes waypoint markers of the shortest path trajectory (only used for visualization of the overtaking sectors). +- `/centerline_waypoints`: Publishes centerline waypoints. +- `/centerline_waypoints/markers`: Publishes centerline waypoint markers. +- `/trackbounds/markers`: Publishes markers for the track boundaries. +- `/map_infos`: Publishes map infos like estimated lap time and maximum speed. +- `/map_ready`: Publishes a boolean if the map is ready so that the global trajectory can be calculated. +- `/estimated_lap_time`: Publishes the estimated lap time. + +## License +TODO + diff --git a/planner/gb_optimizer/package.xml b/planner/gb_optimizer/package.xml new file mode 100644 index 0000000..f05fe23 --- /dev/null +++ b/planner/gb_optimizer/package.xml @@ -0,0 +1,68 @@ + + + gb_optimizer + 0.0.0 + The gb_optimizer package + + + + + lucaschw + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + nav_msgs + roscpp + rospy + nav_msgs + roscpp + rospy + nav_msgs + roscpp + rospy + rospy_message_converter + + + + + + + diff --git a/planner/gb_optimizer/scripts/finish_map.sh b/planner/gb_optimizer/scripts/finish_map.sh new file mode 100755 index 0000000..3b214c5 --- /dev/null +++ b/planner/gb_optimizer/scripts/finish_map.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +echo "Finish trajectory..." +rosservice call /finish_trajectory 0 + +echo "Save map under the name $1" +rosservice call /write_state "{filename: '$1', include_unfinished_submaps: "true"}" diff --git a/planner/gb_optimizer/src/global_planner_node.py b/planner/gb_optimizer/src/global_planner_node.py new file mode 100755 index 0000000..fd58aaa --- /dev/null +++ b/planner/gb_optimizer/src/global_planner_node.py @@ -0,0 +1,1286 @@ +#!/usr/bin/env python3 + +from rospkg import RosPack +import rospy +import subprocess, os, copy + +import csv +import yaml +import math +import cv2 +import numpy as np +import matplotlib.pyplot as plt +from scipy.signal import savgol_filter +from skimage.morphology import skeletonize +from skimage.segmentation import watershed + +from global_racetrajectory_optimization.trajectory_optimizer import trajectory_optimizer +from global_racetrajectory_optimization import helper_funcs_glob +import trajectory_planning_helpers as tph + +from nav_msgs.msg import OccupancyGrid +from geometry_msgs.msg import Pose, PoseStamped +from f110_msgs.msg import Wpnt, WpntArray +from tf.transformations import euler_from_quaternion +from visualization_msgs.msg import Marker, MarkerArray +from std_msgs.msg import String, Bool, Float32 + +# To write global waypoints +from readwrite_global_waypoints import write_global_waypoints + +class GlobalPlanner: + """ + Global planner node + """ + + def __init__(self): + self.input_path = os.path.join(RosPack().get_path('stack_master'), 'config', 'gb_optimizer') + self.rate = rospy.get_param('/global_planner/rate') + self.test_on_car = rospy.get_param('/global_planner/test_on_car') + self.current_key = '' + + self.safety_width = rospy.get_param('/global_planner/safety_width') + self.safety_width_sp = rospy.get_param('/global_planner/safety_width_sp') + self.occupancy_grid_threshold = rospy.get_param('/global_planner/occupancy_grid_threshold') + + self.show_plots = rospy.get_param('/global_planner/show_plots') # show no plots if False + + self.map_editor = rospy.get_param('/global_planner/map_editor') + self.map_editor_mapping = rospy.get_param('/global_planner/map_editor_mapping', False) + self.create_map = rospy.get_param('/global_planner/create_map') + self.map_name = rospy.get_param('/global_planner/map_name') + self.map_dir = rospy.get_param('/global_planner/map_dir') + self.reverse_mapping = rospy.get_param('/global_planner/reverse_mapping', False) + self.watershed = True # use watershed algorithm + + # map variables + self.map_width = 0 + self.map_height = 0 + self.map_resolution = 0.0 + self.map_origin = Pose() + self.map_occupancy_grid = None + + self.current_position = None + self.initial_position = None + + self.map_ready = False + + # load map maps from yaml file if we do not want to create a map + if not self.create_map: + with open(os.path.join(self.map_dir, self.map_name + '.yaml')) as f: + data = yaml.safe_load(f) + # only need resolution and origin for waypoints + self.map_resolution = data['resolution'] + self.map_origin.position.x = data['origin'][0] + self.map_origin.position.y = data['origin'][1] + + # variables to check how many laps were completed + self.just_once = False + self.was_at_init_pos = True + self.x_max_diff = 0.5 # meter + self.y_max_diff = 0.5 # meter + self.theta_max_diff = math.pi / 2 # rad + self.lap_count = 0 + self.required_laps = rospy.get_param('/global_planner/required_laps') + if not self.test_on_car or self.map_editor: + self.required_laps = 0 + + # for comparing driven lap length with calculated centerline length + self.cent_driven = None + self.cent_length_done = False + + rospy.init_node('global_planner_node', anonymous=True) + + # all required subscribers + rospy.Subscriber('/map', OccupancyGrid, self.map_cb) + rospy.Subscriber('/car_state/pose', PoseStamped, self.pose_cb) + + # publisher for local planner + self.wpnt_global_iqp_pub = rospy.Publisher('global_waypoints', WpntArray, queue_size=10) + self.wpnt_center_pub = rospy.Publisher('centerline_waypoints', WpntArray, queue_size=10) + # publisher only for visualization + self.vis_wpnt_cent_pub = rospy.Publisher('centerline_waypoints/markers', MarkerArray, queue_size=10) + self.vis_wpnt_global_iqp_pub = rospy.Publisher('global_waypoints/markers', MarkerArray, queue_size=10) + self.vis_track_bnds = rospy.Publisher('trackbounds/markers', MarkerArray, queue_size=10) + # shortest path + self.wpnt_global_sp_pub = rospy.Publisher('global_waypoints/shortest_path', WpntArray, queue_size=10) + self.vis_wpnt_global_sp_pub = rospy.Publisher('global_waypoints/shortest_path/markers', MarkerArray, queue_size=10) + # publish map infos + self.map_info_pub = rospy.Publisher('map_infos', String, queue_size=10) + self.map_info_str = '' + # publish bool if map is ready for gb optimizer + self.map_ready_pub = rospy.Publisher('map_ready', Bool, queue_size=10) + # for l1_param_optimizer + self.est_lap_time_pub = rospy.Publisher('estimated_lap_time', Float32, queue_size=10) + + def map_cb(self, data): + """ + Callback function of /map subscriber. + + Parameters + ---------- + data + Data received from /map topic + """ + # Data should not be overwritten if we use map maps from yaml file + if self.create_map: + self.map_width = data.info.width # uint32, [cells] + self.map_height = data.info.height # uint32, [cells] + self.map_resolution = data.info.resolution # float32, [m/cell] + self.map_origin = data.info.origin + self.map_occupancy_grid = data.data # int8[] + + def pose_cb(self, data): + """ + Callback function of /tracked_pose subscriber. + + Parameters + ---------- + data + Data received from /tracked_pose topic + """ + x = data.pose.position.x + y = data.pose.position.y + theta = euler_from_quaternion([data.pose.orientation.x, data.pose.orientation.y, + data.pose.orientation.z, data.pose.orientation.w])[2] + + if self.current_position is None: + self.initial_position = [x, y, theta] + self.current_position = [x, y, theta] + + if self.lap_count == 0: + if self.cent_driven is None: + self.cent_driven = np.array([self.current_position]) + else: + self.cent_driven = np.append(self.cent_driven, [self.current_position], axis=0) + + def global_plan_loop(self): + rate_pos = rospy.Rate(self.rate) + + # If in map_editor mode while not mapping (i.e. no need for .pbstream) we only compute the gb from the img and exit + if self.map_editor and not self.map_editor_mapping: + rospy.wait_for_message('/map', OccupancyGrid) + with open(os.path.join(self.map_dir, self.map_name + '.yaml')) as f: + data = yaml.safe_load(f) + # only need resolution and origin for waypoints + self.map_resolution = data['resolution'] + self.map_origin.position.x = data['origin'][0] + self.map_origin.position.y = data['origin'][1] + self.map_origin.position.z = data['origin'][2] + self.initial_position = [self.map_origin.position.x, self.map_origin.position.y, 0] + # compute global trajectory from img only and return + self.compute_global_trajectory(cent_length=0.0, save_map=False, save_pf_copy=False) + pb_dir = os.path.join(self.map_dir, self.map_name + '.pbstream') + rospack = RosPack() + script_dir = os.path.join(rospack.get_path('gb_optimizer'), 'scripts/finish_map.sh') + subprocess.Popen(args=[script_dir, pb_dir], shell=False) + rospy.loginfo('[GB Planner]: Successfully created map! Killing nodes...') + os.system("rosnode kill global_planner") + return + + # waiting for position + else: + while not rospy.is_shutdown() and (self.current_position is None or self.initial_position is None or (self.map_occupancy_grid is None and self.create_map)): + rate_pos.sleep() + rospy.loginfo('[GB Planner]: Global planner ready!') + rate = rospy.Rate(self.rate) # in Hertz + while not rospy.is_shutdown(): + # If mapping for map_editor mode we only need the img, yaml and the .pbstream + # We don't care about the global trajectory + if self.map_editor_mapping and self.create_map: + # listen to keyboard input + rospy.logwarn("[GB Planner]: Press 'y' when the map looks good enough") + while True: + # waiting for y + self.current_key = input().lower().strip() + if self.current_key == 'y': + self.initial_position = self.current_position # use position after mapping is done + self.just_once = True + # Save map png and yaml in map_dir, but it will break before computing the global trajectory + self.compute_global_trajectory(cent_length=0.0, save_map=True, save_pf_copy=True) + pb_dir = os.path.join(self.map_dir, self.map_name + '.pbstream') + rospack = RosPack() + script_dir = os.path.join(rospack.get_path('gb_optimizer'), 'scripts/finish_map.sh') + subprocess.Popen(args=[script_dir, pb_dir], shell=False) + # Normal mode + else: + is_at_init_pos = self.at_init_pos_check() + # check if car is now at start position and wasn't before --> means we completed a lap + if is_at_init_pos and not self.was_at_init_pos: + self.was_at_init_pos = True + self.lap_count += 1 + rospy.loginfo("[GB Planner]:" + f"Laps completed {self.lap_count}") + + elif not is_at_init_pos: + self.was_at_init_pos = False + + # calculate global trajectory only once after a certain number of completed laps + if not self.just_once and self.lap_count == self.required_laps: + if self.required_laps != 0: + # calculate length of driven path in first lap for an approx length of the centerline + cent_length = np.sum(np.sqrt(np.sum(np.power(np.diff(self.cent_driven[:, :2], axis=0), 2), axis=1))) + + cent_len_str = "[GB Planner]:" + f"Approximate centerline length: {round(cent_length, 4)}m; " + rospy.loginfo(cent_len_str) + self.map_info_str += cent_len_str + else: + cent_length = 0 + + # listen to keyboard input + rospy.logwarn("[GB Planner]: Press 'y' when the map looks good enough") + map_ready_msg = Bool() + map_ready_msg.data = True + self.map_ready_pub.publish(map_ready_msg) + while True: + # waiting for y + self.current_key = input().lower().strip() + if self.current_key == 'y': + self.initial_position = self.current_position # use position after mapping is done + self.just_once = True + if self.compute_global_trajectory(cent_length=cent_length, save_map=True, save_pf_copy=True): + rospy.loginfo('[GB Planner]: Successfully computed waypoints!') + + rospack = RosPack() + pb_dir = os.path.join(self.map_dir, self.map_name + '.pbstream') + script_dir = os.path.join(rospack.get_path('gb_optimizer'), 'scripts/finish_map.sh') + if self.test_on_car: + subprocess.Popen(args=[script_dir, pb_dir], shell=False) + break + else: + rospy.logwarn('[GB Planner]: Was unable to compute waypoints in compute_global_trajectory!') + self.current_key = '' + break + else: + self.current_key = '' + break + rate.sleep() + + def at_init_pos_check(self) -> bool: + """ + Check if the current position is similar to initial position. + + Returns + ------- + at_init_pos : bool + True if current position is similar to initial position + """ + # absolute values of difference between current and initial position + x_diff = math.fabs(self.current_position[0] - self.initial_position[0]) + y_diff = math.fabs(self.current_position[1] - self.initial_position[1]) + + # The smallest distance between the two angles is using this + theta_diff0 = math.fabs(self.current_position[2] - self.initial_position[2]) + theta_diff1 = 2*np.pi-theta_diff0 + theta_diff = min(theta_diff0, theta_diff1) + + at_init_pos = (x_diff < self.x_max_diff) and (y_diff < self.y_max_diff) and (theta_diff < self.theta_max_diff) + return at_init_pos + + def compute_global_trajectory(self, cent_length, save_map:bool, save_pf_copy:bool) -> bool: + """ + Compute the global optimized trajectory of a map. + + Calculate the centerline of the track and compute global optimized trajectory with minimum curvature + optimization. + Publish the markers and waypoints of the global optimized trajectory. + A waypoint has the following form: [s_m, x_m, y_m, d_right, d_left, psi_rad, vx_mps, ax_mps2] + + Parameters + ---------- + cent_length + Approximate length of the centerline + + save_map + Whether or not to save png and yaml files under map_name + + save_pf_copy + Whether or not to save a duplicate copy of the map for PF usage + + Returns + ------- + bool + True if successfully computed the global waypoints + """ + ################################################################################################################ + # Create a filtered black and white image of the map + ################################################################################################################ + if self.create_map: + # get right shape for occupancy grid map + og_map = np.int8(self.map_occupancy_grid).reshape(self.map_height, self.map_width) + # mark unknown (-1) as occupied (100) + og_map = np.where(og_map == -1, 100, og_map) + + # binarised map + bw = np.where(og_map < self.occupancy_grid_threshold, 255, 0) + bw = np.uint8(bw) + + # Filtering with morphological opening + kernel1 = np.ones((9, 9), np.uint8) + opening = cv2.morphologyEx(bw, cv2.MORPH_OPEN, kernel1, iterations=2) + + if self.map_editor: + if self.show_plots: + plt.imshow(opening, cmap='gray', origin='lower') + plt.show() + # create a folder 'map_name' in the data folder and check if it already exists + map_dir_copy = copy.deepcopy(self.map_dir) + count = 0 + while True: + try: + os.mkdir(self.map_dir) + except OSError as error: + msg_string = '[GB Planner]:' + f'The folder {self.map_dir} already exists!' + rospy.logwarn(msg_string) + count += 1 + self.map_dir = map_dir_copy + str(count) + else: + self.map_name = self.map_name + str(count) if count != 0 else self.map_name + msg_string = '[GB Planner]:' + f'Successfully created the folder {self.map_dir}' + rospy.loginfo(msg_string) + break + + # write image as png and a yaml file in the folder + if save_map: + img_path = os.path.join(self.map_dir, self.map_name + '.png') + flip_open = cv2.flip(opening, 0) + cv2.imwrite(img_path, flip_open) + + dict_map = {'image': self.map_name + '.png', + 'resolution': self.map_resolution, + 'origin': [self.map_origin.position.x, self.map_origin.position.y, 0], + 'negate': 0, + 'occupied_thresh': 0.65, + 'free_thresh': 0.196} + + with open(os.path.join(self.map_dir, self.map_name + ".yaml"), 'w') as file: + _ = yaml.dump(dict_map, file, default_flow_style=False) + + # Also write a duplicate copy that won't be overwritten by future map_editor shenanigans + if save_pf_copy: + img_path = os.path.join(self.map_dir, 'pf_map.png') + flip_open = cv2.flip(opening, 0) + cv2.imwrite(img_path, flip_open) + + dict_map = {'image': 'pf_map.png', + 'resolution': self.map_resolution, + 'origin': [self.map_origin.position.x, self.map_origin.position.y, 0], + 'negate': 0, + 'occupied_thresh': 0.65, + 'free_thresh': 0.196} + + with open(os.path.join(self.map_dir, "pf_map.yaml"), 'w') as file: + _ = yaml.dump(dict_map, file, default_flow_style=False) + + + ros_info_string = '[GB Planner]:' + f'PNG and YAML file created and saved in the {self.map_dir} folder' + rospy.loginfo(ros_info_string) + return True + else: + img_path = os.path.join(self.map_dir, self.map_name + '.png') + bw = cv2.flip(cv2.imread(img_path, 0), 0) + + # Filtering with morphological opening + kernel1 = np.ones((9, 9), np.uint8) + opening = cv2.morphologyEx(bw, cv2.MORPH_OPEN, kernel1, iterations=2) + + # get morphological skeleton of the map + skeleton = skeletonize(opening, method='lee') + + # ! For debugging + f, (ax0, ax1) = plt.subplots(2,1) + ax0.imshow(opening, cmap='gray') + ax1.imshow(skeleton, cmap='gray') + plt.show() + + ################################################################################################################ + # Extract centerline from filtered occupancy grid map + ################################################################################################################ + try: + centerline = self.extract_centerline(skeleton=skeleton, cent_length=cent_length) + except IOError: + self.just_once = False + if self.map_editor: + rospy.logwarn('[GB Planner]: No closed contours found! Check the edited image...') + else: + rospy.logwarn('[GB Planner]: No closed contours found! Keep driving...') + return False + except ValueError: + rospy.logwarn("[GB Planner]: Couldn't find a closed contour with similar length as driven path!") + rospy.loginfo('[GB Planner]: Maybe missed a lap completion...') + rospy.loginfo('[GB Planner]: Will try again in one lap, so drive at least one more lap!') + self.just_once = False + self.cent_length_done = False + self.was_at_init_pos = True + self.initial_position = self.current_position + self.lap_count = 0 + self.required_laps = 1 + self.cent_driven = [self.initial_position] + return False + + centerline_smooth = self.smooth_centerline(centerline) + + # convert centerline from cells to meters + centerline_meter = np.zeros(np.shape(centerline_smooth)) + centerline_meter[:, 0] = centerline_smooth[:, 0] * self.map_resolution + self.map_origin.position.x + centerline_meter[:, 1] = centerline_smooth[:, 1] * self.map_resolution + self.map_origin.position.y + + # interpolate centerline to 0.1m stepsize: less computation needed later for distance to track bounds + centerline_meter = np.column_stack((centerline_meter, np.zeros((centerline_meter.shape[0], 2)))) + + centerline_meter_int = helper_funcs_glob.src.interp_track.interp_track(reftrack=centerline_meter, + stepsize_approx=0.1)[:, :2] + + # centerline_int_len = len(centerline_meter_int) + # print("Number of interpolated centerline points: ", centerline_int_len) + + # get distance to initial position for every point on centerline + cent_distance = np.sqrt(np.power(centerline_meter_int[:, 0] - self.initial_position[0], 2) + + np.power(centerline_meter_int[:, 1] - self.initial_position[1], 2)) + + min_dist_ind = np.argmin(cent_distance) + + cent_direction = np.angle([complex(centerline_meter_int[min_dist_ind, 0] - + centerline_meter_int[min_dist_ind - 1, 0], + centerline_meter_int[min_dist_ind, 1] - + centerline_meter_int[min_dist_ind - 1, 1])]) + + if self.show_plots and not self.map_editor: + print("Direction of the centerline: ", cent_direction[0]) + print("Direction of the initial car position: ", self.initial_position[2]) + plt.plot(centerline_meter_int[:, 0], centerline_meter_int[:, 1], 'ko', label='Centerline interpolated') + plt.plot(centerline_meter_int[min_dist_ind - 1, 0], centerline_meter_int[min_dist_ind - 1, 1], 'ro', + label='First point') + plt.plot(centerline_meter_int[min_dist_ind, 0], centerline_meter_int[min_dist_ind, 1], 'bo', + label='Second point') + plt.legend() + plt.show() + + # flip centerline if directions don't match + if not self.compare_direction(cent_direction, self.initial_position[2]): + centerline_smooth = np.flip(centerline_smooth, axis=0) + centerline_meter_int = np.flip(centerline_meter_int, axis=0) + + # Flip again if necessary + if self.reverse_mapping: + centerline_smooth = np.flip(centerline_smooth, axis=0) + centerline_meter_int = np.flip(centerline_meter_int, axis=0) + rospy.loginfo('[GB Planner]: Centerline flipped') + # create reversed centerline + # centerline_smooth_reverse = np.flip(centerline_smooth, axis=0) + # centerline_meter_int_reverse = np.flip(centerline_meter_int, axis=0) + + # extract track bounds + if self.watershed: + try: + bound_r_water, bound_l_water = self.extract_track_bounds(centerline_smooth, opening, save_img=(not self.map_editor)) + # bound_r_water_rev, bound_l_water_rev = self.extract_track_bounds(centerline_smooth_reverse, opening) + dist_transform = None + rospy.loginfo('[GB Planner]: Using watershed for track bound extraction...') + except IOError: + rospy.logwarn('[GB Planner]: More than two track bounds detected with watershed algorithm') + rospy.loginfo('[GB Planner]: Trying with simple distance transform...') + self.watershed = False + bound_r_water = None + bound_l_water = None + # bound_r_water_rev = None + # bound_l_water_rev = None + dist_transform = cv2.distanceTransform(opening, cv2.DIST_L2, 5) + else: + rospy.loginfo('[GB Planner]: Using distance transform for track bound extraction...') + bound_r_water = None + bound_l_water = None + # bound_r_water_rev = None + # bound_l_water_rev = None + dist_transform = cv2.distanceTransform(opening, cv2.DIST_L2, 5) + + ################################################################################################################ + # Compute global trajectory with mincurv_iqp optimization + ################################################################################################################ + cent_with_dist = self.add_dist_to_cent(centerline_smooth=centerline_smooth, + centerline_meter=centerline_meter_int, + dist_transform=dist_transform, + bound_r=bound_r_water, + bound_l=bound_l_water, + reverse=self.reverse_mapping) + + # Write centerline in a csv file and get a marker array of it + centerline_waypoints, centerline_markers = self.write_centerline(cent_with_dist) + + # Add curvature and angle to centerline waypoints + centerline_coords = np.array([ + [coord.x_m, coord.y_m] for coord in centerline_waypoints.wpnts + ]) + + psi_centerline, kappa_centerline = tph.calc_head_curv_num.\ + calc_head_curv_num( + path=centerline_coords, + el_lengths=0.1*np.ones(len(centerline_coords)-1), + is_closed=False + ) + for i, (psi, kappa) in enumerate(zip(psi_centerline, kappa_centerline)): + centerline_waypoints.wpnts[i].s_m = i*0.1 + centerline_waypoints.wpnts[i].psi_rad = psi + np.pi/2 # pi/2 added because trajectory_planning_helpers package assumes north to be zero psi + centerline_waypoints.wpnts[i].kappa_radpm = kappa + + # publish the centerline markers + self.vis_wpnt_cent_pub.publish(centerline_markers) + + rospy.loginfo('[GB Planner]: Start Global Trajectory optimization with iterative minimum curvature...') + global_trajectory_iqp, bound_r_iqp, bound_l_iqp, est_t_iqp = trajectory_optimizer(input_path=self.input_path, + track_name='map_centerline', + curv_opt_type='mincurv_iqp', + safety_width=self.safety_width, + plot=(self.show_plots and not self.map_editor)) + + self.map_info_str += f'IQP estimated lap time: {round(est_t_iqp, 4)}s; ' + self.map_info_str += f'IQP maximum speed: {round(np.amax(global_trajectory_iqp[:, 5]), 4)}m/s; ' + + # do not use bounds of optimizer if the one's from the watershed algorithm are available + if self.watershed: + bound_r_iqp = bound_r_water + bound_l_iqp = bound_l_water + + bounds_markers = self.publish_track_bounds(bound_r_iqp, bound_l_iqp, reverse=False) + + d_right_iqp, d_left_iqp = self.dist_to_bounds(trajectory=global_trajectory_iqp, + bound_r=bound_r_iqp, + bound_l=bound_l_iqp, + centerline=centerline_meter_int, + reverse=self.reverse_mapping) + + global_traj_wpnts_iqp, global_traj_markers_iqp = self.create_wpnts_markers(trajectory=global_trajectory_iqp, + d_right=d_right_iqp, + d_left=d_left_iqp) + + # publish global trajectory markers and waypoints + self.wpnt_center_pub.publish(centerline_waypoints) + self.wpnt_global_iqp_pub.publish(global_traj_wpnts_iqp) + self.vis_wpnt_global_iqp_pub.publish(global_traj_markers_iqp) + rospy.loginfo('[GB Planner]: Done with iterative minimum curvature optimization') + rospy.loginfo('[GB Planner]: Lap Completed now publishing global waypoints') + + ################################################################################################################ + # Compute global trajectory with shortest path optimization + ################################################################################################################ + + rospy.loginfo('[GB Planner]: Start reverse Global Trajectory optimization with shortest path...') + + rospy.loginfo('[GB Planner]: Start Global Trajectory optimization with iterative minimum curvature for overtaking...') + global_trajectory_iqp_ot, *_ = trajectory_optimizer(input_path=self.input_path, + track_name='map_centerline', + curv_opt_type='mincurv_iqp', + safety_width=self.safety_width_sp, + plot=(self.show_plots and not self.map_editor)) + + # use new iqp path as centerline + new_cent_with_dist = self.add_dist_to_cent(centerline_smooth=global_trajectory_iqp_ot[:, 1:3], + centerline_meter=global_trajectory_iqp_ot[:, 1:3], + dist_transform=None, + bound_r=bound_r_water, + bound_l=bound_l_water, + reverse=self.reverse_mapping) + + _, new_centerline_markers = self.write_centerline(new_cent_with_dist, sp_bool=True) + + # to use iqp as new centerline, set trackname='map_centerline_2', otherwise use track_name='map_centerline' + # is a bit faster but cuts corner a bit more + global_trajectory_sp, bound_r_sp, bound_l_sp, est_t_sp = trajectory_optimizer(input_path=self.input_path, + track_name='map_centerline_2', + curv_opt_type='shortest_path', + safety_width=self.safety_width_sp, + plot=(self.show_plots and not self.map_editor)) + + self.est_lap_time = est_t_sp # variable which will be published and used in l1_param_optimizer + self.est_lap_time_pub.publish(self.est_lap_time) + + self.map_info_str += f'SP estimated lap time: {round(est_t_sp, 4)}s; ' + self.map_info_str += f'SP maximum speed: {round(np.amax(global_trajectory_sp[:, 5]), 4)}m/s; ' + + # do not use bounds of optimizer if the one's from the watershed algorithm are available + if self.watershed: + bound_r_sp = bound_r_water + bound_l_sp = bound_l_water + + d_right_sp, d_left_sp = self.dist_to_bounds(trajectory=global_trajectory_sp, + bound_r=bound_r_sp, + bound_l=bound_l_sp, + centerline=centerline_meter_int, + reverse=self.reverse_mapping) + + global_traj_wpnts_sp, global_traj_markers_sp = self.create_wpnts_markers(trajectory=global_trajectory_sp, + d_right=d_right_sp, + d_left=d_left_sp, + second_traj=True) + + # publish global trajectory markers and waypoints + self.vis_wpnt_global_sp_pub.publish(global_traj_markers_sp) + self.wpnt_global_sp_pub.publish(global_traj_wpnts_sp) + self.map_info_pub.publish(self.map_info_str) + rospy.loginfo('[GB Planner]: Done with shortest path optimization') + rospy.loginfo('[GB Planner]: Lap Completed now publishing shortest path global waypoints') + + # Save info into a JSON file + write_global_waypoints( + self.map_name, + self.map_info_str, + self.est_lap_time, + centerline_markers, + centerline_waypoints, + global_traj_markers_iqp, + global_traj_wpnts_iqp, + global_traj_markers_sp, + global_traj_wpnts_sp, + bounds_markers, + map_editor_bool=self.map_editor, + ) + return True + + def extract_centerline(self, skeleton, cent_length: float) -> np.ndarray: + """ + Extract the centerline out of the skeletonized binary image. + + This is done by finding closed contours and comparing these contours to the approximate centerline + length (which is known because of the driven path). + + Parameters + ---------- + skeleton + The skeleton of the binarised and filtered map + cent_length : float + Expected approximate centerline length + + Returns + ------- + centerline : np.ndarray + The centerline in form [[x1,y1],...] and in cells not meters + + Raises + ------ + IOError + If no closed contour is found + ValueError + If all found contours do not have a similar line length as the centerline (can only happen if + {self.test_on_car} is True) + """ + # get contours from skeleton + contours, hierarchy = cv2.findContours(skeleton, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_NONE) + + # save all closed contours + closed_contours = [] + for i, elem in enumerate(contours): + opened = hierarchy[0][i][2] < 0 and hierarchy[0][i][3] < 0 + if not opened: + closed_contours.append(elem) + + # if we have no closed contour, we can't calculate a global trajectory + if len(closed_contours) == 0: + raise IOError("No closed contours") + + # calculate the line length of every contour to get the real centerline + line_lengths = [math.inf] * len(closed_contours) + for i, cont in enumerate(closed_contours): + line_length = 0 + for k, pnt in enumerate(cont): + line_length += np.sqrt((pnt[0][0] - cont[k - 1][0][0]) ** 2 + + (pnt[0][1] - cont[k - 1][0][1]) ** 2) + + line_length *= self.map_resolution # length in meters not cells + # line length should be around the length of the centerline otherwise keep length infinity + if self.test_on_car and math.fabs(cent_length / line_length - 1.0) < 0.15: + line_lengths[i] = line_length + if not self.test_on_car or self.map_editor: + line_lengths[i] = line_length + + # take the shortest line + min_line_length = min(line_lengths) + + if min_line_length == math.inf: + raise ValueError("Only invalid closed contour line lengths") + + min_length_index = line_lengths.index(min_line_length) + # print(line_lengths) + smallest_contour = np.array(closed_contours[min_length_index]).flatten() + + # reshape smallest_contours from the shape [x1,y1,x2,y2,...] to [[x1,y1],[x2,y2],...] + # this will be the centerline + len_reshape = int(len(smallest_contour) / 2) + centerline = smallest_contour.reshape(len_reshape, 2) + + return centerline + + @staticmethod + def smooth_centerline(centerline: np.ndarray) -> np.ndarray: + """ + Smooth the centerline with a Savitzky-Golay filter. + + Notes + ----- + The savgol filter doesn't ensure a smooth transition at the end and beginning of the centerline. That's why + we apply a savgol filter to the centerline with start and end points on the other half of the track. + Afterwards, we take the results of the second smoothed centerline for the beginning and end of the + first centerline to get an overall smooth centerline + + Parameters + ---------- + centerline : np.ndarray + Unsmoothed centerline + + Returns + ------- + centerline_smooth : np.ndarray + Smooth centerline + """ + # centerline_smooth = centerline + # smooth centerline with a Savitzky Golay filter + # filter_length = 20 + centerline_length = len(centerline) + # print("Number of centerline points: ", centerline_length) + + if centerline_length > 2000: + filter_length = int(centerline_length / 200) * 10 + 1 + elif centerline_length > 1000: + filter_length = 81 + elif centerline_length > 500: + filter_length = 41 + else: + filter_length = 21 + centerline_smooth = savgol_filter(centerline, filter_length, 3, axis=0) + + # cen_len is half the length of the centerline + cen_len = int(len(centerline) / 2) + centerline2 = np.append(centerline[cen_len:], centerline[0:cen_len], axis=0) + centerline_smooth2 = savgol_filter(centerline2, filter_length, 3, axis=0) + + # take points from second (smoothed) centerline for first centerline + centerline_smooth[0:filter_length] = centerline_smooth2[cen_len:(cen_len + filter_length)] + centerline_smooth[-filter_length:] = centerline_smooth2[(cen_len - filter_length):cen_len] + + return centerline_smooth + + def extract_track_bounds(self, centerline: np.ndarray, filtered_bw: np.ndarray, save_img=False): + """ + Extract the boundaries of the track. + + Use the watershed algorithm with the centerline as marker to extract the boundaries of the filtered black + and white image of the map. + + Parameters + ---------- + centerline : np.ndarray + The centerline of the track (in cells not meters) + filtered_bw : np.ndarray + Filtered black and white image of the track + save_img : bool + Only saves sim map when specifically asked for because the function is called in reverse too + Returns + ------- + bound_right, bound_left : tuple[np.ndarray, np.ndarray] + Points of the track bounds right and left in meters + + Raises + ------ + IOError + If there were more (or less) than two track bounds found + """ + # create a black and white image of the centerline + cent_img = np.zeros((filtered_bw.shape[0], filtered_bw.shape[1]), dtype=np.uint8) + cv2.drawContours(cent_img, [centerline.astype(int)], 0, 255, 2, cv2.LINE_8) + + # create markers for watershed algorithm + _, cent_markers = cv2.connectedComponents(cent_img) + + # apply watershed algorithm to get only the track (without any lidar beams outside the track) + dist_transform = cv2.distanceTransform(filtered_bw, cv2.DIST_L2, 5) + labels = watershed(-dist_transform, cent_markers, mask=filtered_bw) + + closed_contours = [] + + for label in np.unique(labels): + if label == 0: + continue + + # Create a mask, the mask should be the track + mask = np.zeros(filtered_bw.shape, dtype="uint8") + mask[labels == label] = 255 + + if self.show_plots and not self.map_editor: + plt.imshow(mask, cmap='gray') + plt.show() + + if self.create_map and save_img: + rospy.loginfo('[GB Planner]: Creating map for simulation...') + image_name = self.map_name + ".png" + dict_map = {'image': image_name, + 'resolution': self.map_resolution, + 'origin': [self.map_origin.position.x, self.map_origin.position.y, 0], + 'negate': 0, + 'occupied_thresh': 0.65, + 'free_thresh': 0.196} + # We need to copy the mask because altering it crashes the further excecution for saving it in the right orientation in the later course + mask_copy = copy.deepcopy(mask) + mask_copy = cv2.flip(mask_copy, 0) + cv2.imwrite(os.path.join(self.map_dir, image_name), mask_copy) + try: + with open(os.path.join(self.map_dir, self.map_name + ".yaml"), 'w') as file: + documents = yaml.dump(dict_map, file, default_flow_style=False) + except IOError as exp: + rospy.logwarn('[GB Planner]: Could not create a yaml file for simulator map') + print(exp) + else: + sim_info_str = '[GB Planner]:' + f' Map for simulation done! Stored in {self.map_dir}' + rospy.loginfo(sim_info_str) + save_img = False + + # Find contours + contours, hierarchy = cv2.findContours(mask, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_NONE) + + # save all closed contours + for i, cont in enumerate(contours): + opened = hierarchy[0][i][2] < 0 and hierarchy[0][i][3] < 0 + if not opened: + closed_contours.append(cont) + + # there must not be more (or less) than two closed contour + if len(closed_contours) != 2: + raise IOError("More than two track bounds detected! Check input") + # draw the boundary into the centerline image + cv2.drawContours(cent_img, closed_contours, 0, 255, 4) + cv2.drawContours(cent_img, closed_contours, 1, 255, 4) + + # the longest closed contour is the outer boundary + bound_long = max(closed_contours, key=len) + bound_long = np.array(bound_long).flatten() + + # reshape from the shape [x1,y1,x2,y2,...] to [[x1,y1],[x2,y2],...] + len_reshape = int(len(bound_long) / 2) + bound_long = bound_long.reshape(len_reshape, 2) + # convert to meter + bound_long_meter = np.zeros(np.shape(bound_long)) + bound_long_meter[:, 0] = bound_long[:, 0] * self.map_resolution + self.map_origin.position.x + bound_long_meter[:, 1] = bound_long[:, 1] * self.map_resolution + self.map_origin.position.y + + # inner boundary is the shorter one + bound_short = min(closed_contours, key=len) + bound_short = np.array(bound_short).flatten() + + # reshape from the shape [x1,y1,x2,y2,...] to [[x1,y1],[x2,y2],...] + len_reshape = int(len(bound_short) / 2) + bound_short = bound_short.reshape(len_reshape, 2) + # convert to meter + bound_short_meter = np.zeros(np.shape(bound_short)) + bound_short_meter[:, 0] = bound_short[:, 0] * self.map_resolution + self.map_origin.position.x + bound_short_meter[:, 1] = bound_short[:, 1] * self.map_resolution + self.map_origin.position.y + + # get distance to initial position for every point on the outer bound to figure out if it is the right + # or left boundary + bound_distance = np.sqrt(np.power(bound_long_meter[:, 0] - self.initial_position[0], 2) + + np.power(bound_long_meter[:, 1] - self.initial_position[1], 2)) + + min_dist_ind = np.argmin(bound_distance) + + bound_direction = np.angle([complex(bound_long_meter[min_dist_ind, 0] - bound_long_meter[min_dist_ind - 1, 0], + bound_long_meter[min_dist_ind, 1] - bound_long_meter[min_dist_ind - 1, 1])]) + + norm_angle_right = self.initial_position[2] - math.pi + if norm_angle_right < -math.pi: + norm_angle_right = norm_angle_right + 2 * math.pi + + if self.compare_direction(norm_angle_right, bound_direction): + bound_right = bound_long_meter + bound_left = bound_short_meter + else: + bound_right = bound_short_meter + bound_left = bound_long_meter + + if self.show_plots and not self.map_editor: + plt.imshow(cent_img, cmap='gray') + fig1, ax1 = plt.subplots() + ax1.plot(bound_right[:, 0], bound_right[:, 1], 'b', label='Right bound') + ax1.plot(bound_left[:, 0], bound_left[:, 1], 'g', label='Left bound') + ax1.plot(centerline[:, 0] * self.map_resolution + self.map_origin.position.x, + centerline[:, 1] * self.map_resolution + self.map_origin.position.y, 'r', label='Centerline') + ax1.legend() + plt.show() + + return bound_right, bound_left + + def dist_to_bounds(self, trajectory: np.ndarray, bound_r, bound_l, centerline: np.ndarray, reverse=False): + """ + Calculate the distance to track bounds for every point on a trajectory. + + Parameters + ---------- + trajectory : np.ndarray + A trajectory in form [s_m, x_m, y_m, psi_rad, vx_mps, ax_mps2] or [x_m, y_m] + bound_r + Points in meters of boundary right + bound_l + Points in meters of boundary left + centerline : np.ndarray + Centerline only needed if global trajectory is given and plot of it is wanted + + Returns + ------- + dists_right, dists_left : tuple[np.ndarray, np.ndarray] + Distances to the right and left track boundaries for every waypoint + """ + # check format of trajectory + if len(trajectory[0]) > 2: + help_trajectory = trajectory[:, 1:3] + trajectory_str = "Global Trajectory" + else: + help_trajectory = trajectory + trajectory_str = "Centerline" + + # interpolate track bounds + bound_r_tmp = np.column_stack((bound_r, np.zeros((bound_r.shape[0], 2)))) + bound_l_tmp = np.column_stack((bound_l, np.zeros((bound_l.shape[0], 2)))) + + bound_r_int = helper_funcs_glob.src.interp_track.interp_track(reftrack=bound_r_tmp, + stepsize_approx=0.1) + bound_l_int = helper_funcs_glob.src.interp_track.interp_track(reftrack=bound_l_tmp, + stepsize_approx=0.1) + + # find the closest points of the track bounds to global trajectory waypoints + n_wpnt = len(help_trajectory) + dists_right = np.zeros(n_wpnt) # contains (min) distances between waypoints and right bound + dists_left = np.zeros(n_wpnt) # contains (min) distances between waypoints and left bound + + # print(f"Calculating distance from {trajectory_str} to track bounds...") + for i, wpnt in enumerate(help_trajectory): + dists_bound_right = np.sqrt(np.power(bound_r_int[:, 0] - wpnt[0], 2) + + np.power(bound_r_int[:, 1] - wpnt[1], 2)) + dists_right[i] = np.amin(dists_bound_right) + + dists_bound_left = np.sqrt(np.power(bound_l_int[:, 0] - wpnt[0], 2) + + np.power(bound_l_int[:, 1] - wpnt[1], 2)) + dists_left[i] = np.amin(dists_bound_left) + + # print(f"Done calculating distance from {trajectory_str} to track bounds") + + if self.show_plots and trajectory_str == "Global Trajectory": + width_veh_real = 0.3 + normvec_normalized_opt = tph.calc_normal_vectors.calc_normal_vectors(trajectory[:, 3]) + + veh_bound1_virt = trajectory[:, 1:3] + normvec_normalized_opt * self.safety_width / 2 + veh_bound2_virt = trajectory[:, 1:3] - normvec_normalized_opt * self.safety_width / 2 + + veh_bound1_real = trajectory[:, 1:3] + normvec_normalized_opt * width_veh_real / 2 + veh_bound2_real = trajectory[:, 1:3] - normvec_normalized_opt * width_veh_real / 2 + + # plot track including optimized path + fig, ax = plt.subplots() + + # ax.plot(refline[:, 0], refline[:, 1], "k--", linewidth=0.7, label="Reference line") + ax.plot(bound_r[:, 0], bound_r[:, 1], "k-", linewidth=1.0, label="Track bounds") + ax.plot(bound_l[:, 0], bound_l[:, 1], "k-", linewidth=1.0) + ax.plot(centerline[:, 0], centerline[:, 1], "k--", linewidth=1.0, label='Centerline') + + ax.plot(veh_bound1_virt[:, 0], veh_bound1_virt[:, 1], "b", linewidth=0.5, label="Vehicle width with safety") + ax.plot(veh_bound2_virt[:, 0], veh_bound2_virt[:, 1], "b", linewidth=0.5) + ax.plot(veh_bound1_real[:, 0], veh_bound1_real[:, 1], "c", linewidth=0.5, label="Real vehicle width") + ax.plot(veh_bound2_real[:, 0], veh_bound2_real[:, 1], "c", linewidth=0.5) + + ax.plot(trajectory[:, 1], trajectory[:, 2], 'tab:orange', linewidth=2.0, label="Global trajectory") + + plt.grid() + ax1 = plt.gca() + + point1_arrow = np.array([trajectory[0, 1], trajectory[0, 2]]) + point2_arrow = np.array([trajectory[5, 1], trajectory[5, 2]]) + vec_arrow = (point2_arrow - point1_arrow) + ax1.arrow(point1_arrow[0], point1_arrow[1], vec_arrow[0], vec_arrow[1], width=0.05, + head_width=0.3, head_length=0.3, fc='g', ec='g') + + ax.set_aspect("equal", "datalim") + plt.xlabel("x-distance from origin [m]") + plt.ylabel("y-distance from origin [m]") + plt.title(f"Global trajectory with vehicle width") + plt.legend() + + plt.show() + # Return flipped distances if map_editor reversing + if reverse: + return dists_left, dists_right + else: + return dists_right, dists_left + + def add_dist_to_cent(self, centerline_smooth: np.ndarray, + centerline_meter: np.ndarray, dist_transform=None, + bound_r: np.ndarray = None, bound_l: np.ndarray = None, reverse=False) -> np.ndarray: + """ + Add distance to track bounds to the centerline points. + + Parameters + ---------- + centerline_smooth : np.ndarray + Smooth centerline in cells (not meters) + centerline_meter : np.ndarray + Smooth centerline in meters (not cells) + dist_transform : Any, default=None + Euclidean distance transform of the filtered black and white image + bound_r : np.ndarray, default=None + Points of the right track bound in meters + bound_l : np.ndarray, default=None + Points of the left track bound in meters + + Returns + ------- + centerline_comp : np.ndarray + Complete centerline with distance to right and left track bounds for every point + """ + centerline_comp = np.zeros((len(centerline_meter), 4)) + + if dist_transform is not None: + width_track_right = dist_transform[centerline_smooth[:, 1].astype(int), + centerline_smooth[:, 0].astype(int)] * self.map_resolution + if len(width_track_right) != len(centerline_meter): + width_track_right = np.interp(np.arange(0, len(centerline_meter)), np.arange(0, len(width_track_right)), + width_track_right) + width_track_left = width_track_right + elif bound_r is not None and bound_l is not None: + width_track_right, width_track_left = self.dist_to_bounds(centerline_meter, bound_r, bound_l, + centerline=centerline_meter, + reverse=reverse) + else: + raise IOError("No closed contours found...") + + centerline_comp[:, 0] = centerline_meter[:, 0] + centerline_comp[:, 1] = centerline_meter[:, 1] + centerline_comp[:, 2] = width_track_right + centerline_comp[:, 3] = width_track_left + return centerline_comp + + @staticmethod + def write_centerline(centerline: np.ndarray, sp_bool: bool = False) -> MarkerArray: + """ + Create a csv file with centerline maps. + + The centerline maps includes position and width to the track bounds in meter, so that it can be used in the + global trajectory optimizer. The file has the following format: x_m, y_m, w_tr_right_m, w_tr_left_m . + + Parameters + ---------- + centerline : np.ndarray + The centerline in form [x_m, y_m, w_tr_right_m, w_tr_left_m] + sp_bool : bool, default=False + Used for shortest path optimization when another centerline csv should be created + + Returns + ------- + centerline_markers : MarkerArray + Centerline as a MarkerArray which can be published + """ + centerline_markers = MarkerArray() + centerline_wpnts = WpntArray() + + cent_str = 'map_centerline.csv' if not sp_bool else 'map_centerline_2.csv' + with open(cent_str, 'w', newline='') as file: + writer = csv.writer(file) + id_cnt = 0 # for marker id + + for row in centerline: + x_m = row[0] + y_m = row[1] + width_tr_right_m = row[2] + width_tr_left_m = row[3] + writer.writerow([x_m, y_m, width_tr_right_m, width_tr_left_m]) + + cent_marker = Marker() + cent_marker.header.frame_id = 'map' + cent_marker.type = cent_marker.SPHERE + cent_marker.scale.x = 0.05 + cent_marker.scale.y = 0.05 + cent_marker.scale.z = 0.05 + cent_marker.color.a = 1.0 + cent_marker.color.b = 1.0 + + cent_marker.id = id_cnt + cent_marker.pose.position.x = x_m + cent_marker.pose.position.y = y_m + cent_marker.pose.orientation.w = 1 + centerline_markers.markers.append(cent_marker) + + wpnt = Wpnt() + wpnt.id = id_cnt + # wpnt.s_m + wpnt.x_m = x_m + wpnt.d_right = width_tr_right_m + wpnt.d_left = width_tr_left_m + wpnt.y_m = y_m + # wpnt.psi_rad = None + # wpnt.kappa_radpm = None + # wpnt.vx_mps = None + # wpnt.ax_mps2 = None + centerline_wpnts.wpnts.append(wpnt) + + id_cnt += 1 + + return centerline_wpnts, centerline_markers + + def publish_track_bounds(self, bound_r, bound_l, reverse: bool = False)->MarkerArray: + bounds_markers = MarkerArray() + id_cnt = 0 + if reverse: + bound_l_real = bound_r.copy() + bound_r_real = bound_l.copy() + publisher = self.vis_track_bnds_reverse + else: + bound_l_real = bound_l + bound_r_real = bound_r + publisher = self.vis_track_bnds + + for i, pnt_r in enumerate(bound_r_real): + bnd_r_mrk = Marker() + bnd_r_mrk.header.frame_id = 'map' + bnd_r_mrk.type = bnd_r_mrk.SPHERE + bnd_r_mrk.scale.x = 0.05 + bnd_r_mrk.scale.y = 0.05 + bnd_r_mrk.scale.z = 0.05 + bnd_r_mrk.color.a = 1.0 + bnd_r_mrk.color.b = 0.5 + bnd_r_mrk.color.r = 0.5 + + bnd_r_mrk.id = id_cnt + id_cnt += 1 + bnd_r_mrk.pose.position.x = pnt_r[0] + bnd_r_mrk.pose.position.y = pnt_r[1] + bnd_r_mrk.pose.orientation.w = 1 + bounds_markers.markers.append(bnd_r_mrk) + + for i, pnt_l in enumerate(bound_l_real): + bnd_l_mrk = Marker() + bnd_l_mrk.header.frame_id = 'map' + bnd_l_mrk.type = bnd_l_mrk.SPHERE + bnd_l_mrk.scale.x = 0.05 + bnd_l_mrk.scale.y = 0.05 + bnd_l_mrk.scale.z = 0.05 + bnd_l_mrk.color.a = 1.0 + bnd_l_mrk.color.r = 0.5 + bnd_l_mrk.color.g = 1.0 + + bnd_l_mrk.id = id_cnt + id_cnt += 1 + bnd_l_mrk.pose.position.x = pnt_l[0] + bnd_l_mrk.pose.position.y = pnt_l[1] + bnd_l_mrk.pose.orientation.w = 1 + bounds_markers.markers.append(bnd_l_mrk) + + publisher.publish(bounds_markers) + + return bounds_markers + + def create_wpnts_markers(self, trajectory: np.ndarray, d_right: np.ndarray, d_left: np.ndarray, + second_traj: bool = False): + """ + Create and return a waypoint array and a marker array. + + Parameters + ---------- + trajectory : np.ndarray + A trajectory with waypoints in form [s_m, x_m, y_m, psi_rad, vx_mps, ax_mps2] + d_right : np.ndarray + Distances to the right track bounds for every waypoint in {trajectory} + d_left : np.ndarray + Distances to the left track bounds for every waypoint in {trajectory} + second_traj : bool, default=False + Display second trajectory with a different color than first, better for visualization + + Returns + ------- + global_wpnts, global_markers : tuple[WpntArray, MarkerArray] + A waypoint array and a marker array with all points of {trajectory} + """ + max_vx_mps = max(trajectory[:, 5]) + speed_string = "[GB Planner]: Max speed: " + str(max_vx_mps) + rospy.loginfo(speed_string) + + global_wpnts = WpntArray() + global_markers = MarkerArray() + + for i, pnt in enumerate(trajectory): + global_wpnt = Wpnt() + global_wpnt.id = i + global_wpnt.s_m = pnt[0] + global_wpnt.x_m = pnt[1] + global_wpnt.d_right = d_right[i] + global_wpnt.d_left = d_left[i] + global_wpnt.y_m = pnt[2] + global_wpnt.psi_rad = self.conv_psi(pnt[3]) + global_wpnt.kappa_radpm = pnt[4] + global_wpnt.vx_mps = pnt[5] + global_wpnt.ax_mps2 = pnt[6] + + global_wpnts.wpnts.append(global_wpnt) + + global_marker = Marker() + global_marker.header.frame_id = 'map' + global_marker.type = global_marker.CYLINDER + global_marker.scale.x = 0.1 + global_marker.scale.y = 0.1 + global_marker.scale.z = global_wpnt.vx_mps / max_vx_mps + global_marker.color.a = 1.0 + global_marker.color.r = 1.0 + global_marker.color.g = 1.0 if second_traj else 0.0 + + global_marker.id = i + global_marker.pose.position.x = pnt[1] + global_marker.pose.position.y = pnt[2] + global_marker.pose.position.z = global_wpnt.vx_mps / max_vx_mps / 2 + global_marker.pose.orientation.w = 1 + global_markers.markers.append(global_marker) + + return global_wpnts, global_markers + + @staticmethod + def conv_psi(psi: float) -> float: + """ + Convert psi angles where 0 is at the y-axis into psi angles where 0 is at the x-axis. + + Parameters + ---------- + psi : float + angle (in rad) to convert + + Returns + ------- + new_psi : float + converted angle + """ + new_psi = psi + math.pi / 2 + + if new_psi > math.pi: + new_psi = new_psi - 2 * math.pi + + return new_psi + + @staticmethod + def compare_direction(alpha: float, beta: float) -> bool: + """ + Compare the direction of two points and check if they point in the same direction. + + Parameters + ---------- + alpha : float + direction angle in rad + beta : float + direction angle in rad + + Returns + ------- + bool + True if alpha and beta point in the same direction + """ + delta_theta = math.fabs(alpha - beta) + + if delta_theta > math.pi: + delta_theta = 2 * math.pi - delta_theta + + return delta_theta < math.pi / 2 + + +if __name__ == "__main__": + planner = GlobalPlanner() + planner.global_plan_loop() + + diff --git a/planner/gb_optimizer/src/global_racetrajectory_optimization b/planner/gb_optimizer/src/global_racetrajectory_optimization new file mode 160000 index 0000000..d49ac76 --- /dev/null +++ b/planner/gb_optimizer/src/global_racetrajectory_optimization @@ -0,0 +1 @@ +Subproject commit d49ac768e6bf39b57f9e9dd25d42f5075e1f8105 diff --git a/planner/gb_optimizer/src/global_trajectory_publisher.py b/planner/gb_optimizer/src/global_trajectory_publisher.py new file mode 100755 index 0000000..cbad691 --- /dev/null +++ b/planner/gb_optimizer/src/global_trajectory_publisher.py @@ -0,0 +1,135 @@ +#!/usr/bin/env python3 + +import rospy +from rospy import loginfo +from std_msgs.msg import String, Float32 +from f110_msgs.msg import WpntArray +from visualization_msgs.msg import MarkerArray + +from readwrite_global_waypoints import read_global_waypoints + +class GlobalRepublisher: + """ + Node for publishing the global waypoints/markers and track bounds markers frequently after they have been calculated + """ + def __init__(self): + + rospy.init_node('global_republisher_node', anonymous=True) + + self.glb_markers = None + self.glb_wpnts = None + self.track_bounds = None + + rospy.Subscriber('/global_waypoints', WpntArray, self.glb_wpnts_cb) + rospy.Subscriber('/global_waypoints/markers', MarkerArray, self.glb_markers_cb) + rospy.Subscriber('/trackbounds/markers', MarkerArray, self.bounds_cb) + + self.glb_wpnts_pub = rospy.Publisher('global_waypoints', WpntArray, queue_size=10) + self.glb_markers_pub = rospy.Publisher('global_waypoints/markers', MarkerArray, queue_size=10) + self.vis_track_bnds = rospy.Publisher('trackbounds/markers', MarkerArray, queue_size=10) + + # shortest_path + self.glb_sp_markers = None + self.glb_sp_wpnts = None + rospy.Subscriber('/global_waypoints/shortest_path', WpntArray, self.glb_sp_wpnts_cb) + rospy.Subscriber('/global_waypoints/shortest_path/markers', MarkerArray, self.glb_sp_markers_cb) + self.glb_sp_wpnts_pub = rospy.Publisher('global_waypoints/shortest_path', WpntArray, queue_size=10) + self.glb_sp_markers_pub = rospy.Publisher('global_waypoints/shortest_path/markers', MarkerArray, queue_size=10) + + # centerline + self.centerline_wpnts = None + self.centerline_markers = None + rospy.Subscriber('/centerline_waypoints', WpntArray, self.centerline_wpnt_cb) + rospy.Subscriber('/centerline_waypoints/markers', MarkerArray, self.centerline_markers_cb) + self.centerline_wpnts_pub = rospy.Publisher('/centerline_waypoints', WpntArray, queue_size=10) + self.centerline_markers_pub = rospy.Publisher('/centerline_waypoints/markers', MarkerArray, queue_size=10) + + # map infos + self.map_infos = None + rospy.Subscriber('/map_infos', String, self.map_info_cb) + self.map_info_pub = rospy.Publisher('map_infos', String, queue_size=10) + + self.est_lap_time = None + rospy.Subscriber('estimated_lap_time', Float32, self.est_lap_time_cb) + self.est_lap_time_pub = rospy.Publisher('estimated_lap_time', Float32, queue_size=10) + + + # graph lattice + self.graph_lattice = None + rospy.Subscriber('/lattice_viz', MarkerArray, self.lattice_cb) + self.lattice_pub = rospy.Publisher('/lattice_viz', MarkerArray, queue_size=10) + # Read info from json file if it is provided, so everything is always published + if rospy.has_param('/global_republisher/map_name'): + map_name = rospy.get_param('/global_republisher/map_name') + loginfo(f"Reading parameters from {map_name}") + + try: + self.map_infos, self.est_lap_time, self.centerline_markers, self.centerline_wpnts,\ + self.glb_markers, self.glb_wpnts,\ + self.glb_sp_markers, self.glb_sp_wpnts, \ + self.track_bounds = read_global_waypoints(map_name) + except FileNotFoundError: + rospy.logwarn(f"{map_name} param not found. Not publishing") + else: + loginfo(f"global_trajectory_publisher did not find any map_name param") + + def glb_wpnts_cb(self, data): + self.glb_wpnts = data + track_length = data.wpnts[-1].s_m + rospy.set_param('global_republisher/track_length', track_length) + + def glb_markers_cb(self, data): + self.glb_markers = data + + def glb_sp_wpnts_cb(self, data): + self.glb_sp_wpnts = data + + def glb_sp_markers_cb(self, data): + self.glb_sp_markers = data + + def centerline_wpnt_cb(self, data: WpntArray): + self.centerline_wpnts = data + + def centerline_markers_cb(self, data: MarkerArray): + self.centerline_markers = data + + def bounds_cb(self, data): + self.track_bounds = data + + def map_info_cb(self, data): + self.map_infos = data + + def est_lap_time_cb(self, data): + self.est_lap_time = data + + def lattice_cb(self, data): + self.graph_lattice = data + + def global_republisher(self): + rate = rospy.Rate(0.5) # in Hertz + while not rospy.is_shutdown(): + + if self.glb_wpnts is not None and self.glb_markers is not None: + self.glb_wpnts_pub.publish(self.glb_wpnts) + self.glb_markers_pub.publish(self.glb_markers) + if self.glb_sp_wpnts is not None and self.glb_sp_markers is not None: + self.glb_sp_wpnts_pub.publish(self.glb_sp_wpnts) + self.glb_sp_markers_pub.publish(self.glb_sp_markers) + if self.centerline_wpnts is not None and self.centerline_markers is not None: + self.centerline_wpnts_pub.publish(self.centerline_wpnts) + self.centerline_markers_pub.publish(self.centerline_markers) + if self.track_bounds is not None: + self.vis_track_bnds.publish(self.track_bounds) + if self.map_infos is not None: + self.map_info_pub.publish(self.map_infos) + if self.est_lap_time is not None: + self.est_lap_time_pub.publish(self.est_lap_time) + if self.graph_lattice is not None: + self.lattice_pub.publish(self.graph_lattice) + + rate.sleep() + + +if __name__ == "__main__": + republisher = GlobalRepublisher() + republisher.global_republisher() diff --git a/planner/gb_optimizer/src/readwrite_global_waypoints.py b/planner/gb_optimizer/src/readwrite_global_waypoints.py new file mode 100644 index 0000000..6be7bfb --- /dev/null +++ b/planner/gb_optimizer/src/readwrite_global_waypoints.py @@ -0,0 +1,140 @@ +''' +Shared functions to read and write map information (global waypoints) + +Previously, the global waypoints obtained during the mapping phase were saved in a rosbag. + +Now, this is done using binary files. +''' + +import rospkg +import os +import json +from rospy_message_converter import message_converter + +from visualization_msgs.msg import MarkerArray +from f110_msgs.msg import WpntArray +from std_msgs.msg import String, Float32 +from typing import Tuple, List, Dict + +def write_global_waypoints(map_name:str, + map_info_str:str, + est_lap_time:Float32, + centerline_markers:MarkerArray, + centerline_waypoints:WpntArray, + global_traj_markers_iqp:MarkerArray, + global_traj_wpnts_iqp:WpntArray, + global_traj_markers_sp:MarkerArray, + global_traj_wpnts_sp:WpntArray, + trackbounds_markers:MarkerArray, + map_editor_bool = False + )->None: + ''' + Writes map information to a JSON file with map name specified by `map_name`. + - map_info_str + - from topic /map_infos: python str + - est_lap_time + - from topic /estimated_lap_time: Float32 + - centerline_markers + - from topic /centerline_waypoints/markers: MarkerArray + - centerline_waypoints + - from topic /centerline_waypoints: WpntArray + - global_traj_markers_iqp + - from topic /global_waypoints: MarkerArray + - global_traj_wpnts_iqp + - from topic /global_waypoints/markers: WpntArray + - global_traj_markers_sp + - from topic /global_waypoints/shortest_path: MarkerArray + - global_traj_wpnts_sp + - from topic /global_waypoitns/shortest_path/markers: WpntArray + - trackbounds_markers + - from topic /trackbounds/markers: MarkerArray + ''' + + # Get path of stack_master package to get the map waypoint path + r = rospkg.RosPack() + if not map_editor_bool: + path = os.path.join(r.get_path('stack_master'), 'maps', map_name, 'global_waypoints.json') + else: + path = os.path.join(r.get_path('map_editor'), 'maps', map_name, 'global_waypoints.json') + print(f"[INFO] WRITE_GLOBAL_WAYPOINTS: Writing global waypoints to {path}") + + # Dictionary will be converted into a JSON for serialization + d: Dict[str, Dict] = {} + d['map_info_str'] = {'data': map_info_str} + d['est_lap_time'] = {'data': est_lap_time} + d['centerline_markers'] = message_converter.convert_ros_message_to_dictionary(centerline_markers) + d['centerline_waypoints'] = message_converter.convert_ros_message_to_dictionary(centerline_waypoints) + d['global_traj_markers_iqp'] = message_converter.convert_ros_message_to_dictionary(global_traj_markers_iqp) + d['global_traj_wpnts_iqp'] = message_converter.convert_ros_message_to_dictionary(global_traj_wpnts_iqp) + d['global_traj_markers_sp'] = message_converter.convert_ros_message_to_dictionary(global_traj_markers_sp) + d['global_traj_wpnts_sp'] = message_converter.convert_ros_message_to_dictionary(global_traj_wpnts_sp) + d['trackbounds_markers'] = message_converter.convert_ros_message_to_dictionary(trackbounds_markers) + + # serialize + with open(path, 'w') as f: + json.dump(d, f) + +def read_global_waypoints(map_name:str)->Tuple[ + String, Float32, MarkerArray, WpntArray, MarkerArray, WpntArray, MarkerArray, WpntArray, MarkerArray +]: + ''' + Reads map information from a JSON file with map name specified by `map_name`. + + Outputs Message objects as follows: + - map_info_str + - from topic /map_infos: String + - est_lap_time + - from topic /estimated_lap_time: Float32 + - centerline_markers + - from topic /centerline_waypoints/markers: MarkerArray + - centerline_waypoints + - from topic /centerline_waypoints: WpntArray + - global_traj_markers_iqp + - from topic /global_waypoints: MarkerArray + - global_traj_wpnts_iqp + - from topic /global_waypoints/markers: WpntArray + - global_traj_markers_sp + - from topic /global_waypoints/shortest_path: MarkerArray + - global_traj_wpnts_sp + - from topic /global_waypoitns/shortest_path/markers: WpntArray + - trackbounds_markers + - from topic /trackbounds/markers: MarkerArray + ''' + + # Get path of stack_master package to get the map waypoint path + r = rospkg.RosPack() + path = os.path.join(r.get_path('stack_master'), 'maps', map_name, 'global_waypoints.json') + + print(f"[INFO] READ_GLOBAL_WAYPOINTS: Reading global waypoints from {path}") + # Deserialize JSON and Reconstruct the maps elements + with open(path, 'r') as f: + d: Dict[str, List] = json.load(f) + map_info_str = message_converter.convert_dictionary_to_ros_message('std_msgs/String', d['map_info_str']) + est_lap_time = message_converter.convert_dictionary_to_ros_message('std_msgs/Float32', d['est_lap_time']) + centerline_markers = message_converter.convert_dictionary_to_ros_message( + 'visualization_msgs/MarkerArray', + d['centerline_markers']) + centerline_waypoints = message_converter.convert_dictionary_to_ros_message( + 'f110_msgs/WpntArray', + d['centerline_waypoints']) + global_traj_markers_iqp = message_converter.convert_dictionary_to_ros_message( + 'visualization_msgs/MarkerArray', + d['global_traj_markers_iqp']) + global_traj_wpnts_iqp = message_converter.convert_dictionary_to_ros_message( + 'f110_msgs/WpntArray', + d['global_traj_wpnts_iqp']) + global_traj_markers_sp = message_converter.convert_dictionary_to_ros_message( + 'visualization_msgs/MarkerArray', + d['global_traj_markers_sp']) + global_traj_wpnts_sp = message_converter.convert_dictionary_to_ros_message( + 'f110_msgs/WpntArray', + d['global_traj_wpnts_sp']) + trackbounds_markers = message_converter.convert_dictionary_to_ros_message( + 'visualization_msgs/MarkerArray', + d['trackbounds_markers']) + + + return map_info_str, est_lap_time,\ + centerline_markers, centerline_waypoints, \ + global_traj_markers_iqp, global_traj_wpnts_iqp, \ + global_traj_markers_sp, global_traj_wpnts_sp, trackbounds_markers diff --git a/planner/misc/planner_arch.png b/planner/misc/planner_arch.png new file mode 100644 index 0000000..fda9cae Binary files /dev/null and b/planner/misc/planner_arch.png differ diff --git a/planner/spliner/CMakeLists.txt b/planner/spliner/CMakeLists.txt new file mode 100644 index 0000000..b3cdf1c --- /dev/null +++ b/planner/spliner/CMakeLists.txt @@ -0,0 +1,211 @@ +cmake_minimum_required(VERSION 3.0.2) +project(spliner) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/dyn_spliner_tuner.cfg +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES spliner +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/spliner.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/spliner_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_spliner.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/planner/spliner/README.md b/planner/spliner/README.md new file mode 100644 index 0000000..5321c29 --- /dev/null +++ b/planner/spliner/README.md @@ -0,0 +1,36 @@ +# Spliner + +## Description +The Spliner package is a ROS package designed to perform splining around obstacles. It provides a node that subscribes to obstacle and waypoint information, processes this data, and publishes splined waypoints and spline markers. This package is implemented in Python and uses the `rospy` and `dynamic_reconfigure` libraries for ROS interactions and dynamic parameter tuning. The main node `spliner_node.py` is launched with the `headtohead.launch` file from the `stack_master` package. + +## Parameters + - `evasion_dist`: Sets the orthogonal distance of the apex to the obstacle, determining how far the spline will deviate from the obstacle. + - `obs_traj_tresh`: Sets the threshold of the obstacle towards the raceline to be considered for evasion, determining which obstacles will be considered for splining around. + - `spline_bound_mindist`: Sets the minimum distance that splines may be from the track bounds in meters, ensuring that the spline does not get too close to the track boundaries. + - `pre_apex_0`: Sets the first distance in front of the apex in meters, used in the calculation of the spline. + - `pre_apex_1`: Sets the second distance in front of the apex in meters, used in the calculation of the spline. + - `pre_apex_2`: Sets the third distance in front of the apex in meters, used in the calculation of the spline. + - `post_apex_0`: Sets the first distance behind the apex in meters, used in the calculation of the spline. + - `post_apex_1`: Sets the second distance behind the apex in meters, used in the calculation of the spline. + - `post_apex_2`: Sets the third distance behind the apex in meters, used in the calculation of the spline. + - `kd_obs_pred`: Sets the gain for the obstacle prediction, used in the calculation of the obstacle prediction. + - `fixed_pred_time`: Sets the fixed prediction time, used in the calculation of the obstacle prediction. + +The parameters `kd_obs_pred`, `fixed_pred_time` are only used with some obstacle prediction methods, so they might not always affect the behaviour. + +## Input/Output Topic Signature +This node subscribes to: +- `/perception/obstacles`: Subscribes to the obstacle array. +- `/car_state/odom_frenet`: Reads the car's state +- `/global_waypoints`: Subscribes to global waypoints. +- `/global_waypoints_scaled`: Subscribes to the scaled global waypoints to obtain the current target velocities. + +The node publishes to: +- `/planner/avoidance/markers`: Publishes spline markers. +- `/planner/avoidance/otwpnts`: Publishes splined waypoints. +- `/planner/avoidance/considered_OBS`: Publishes markers for the closest obstacle. +- `/planner/avoidance/propagated_obs`: Publishes markers for the propagated obstacle. +- `/planner/avoidance/latency`: Publishes the latency of the spliner node. (only if measuring is enabled) + +## License +TODO \ No newline at end of file diff --git a/planner/spliner/cfg/dyn_spliner_tuner.cfg b/planner/spliner/cfg/dyn_spliner_tuner.cfg new file mode 100644 index 0000000..b7750fd --- /dev/null +++ b/planner/spliner/cfg/dyn_spliner_tuner.cfg @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +PACKAGE = "spliner" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('spliner') + + +gen = ParameterGenerator() +gen.add("evasion_dist", double_t, 0, "Orthogonal distance of the apex to the obstacle", 0.6, 0.25, 1.25) +gen.add("obs_traj_tresh", double_t, 0, "Threshold of the obstacle towards raceline to be considered for evasion", 1.0, 0.1, 1.5) +gen.add("spline_bound_mindist", double_t, 0, "Splines may never be closer to the track bounds than this param in meters", 0.30, 0.05, 1.0) + +gen.add("pre_apex_dist0", double_t, 0, "First distance infront of the apex in meters", 4, 0.5, 8) +gen.add("pre_apex_dist1", double_t, 0, "Second distance infront of the apex in meters", 3, 0.5, 8) +gen.add("pre_apex_dist2", double_t, 0, "Third distance infront of the apex in meters", 2, 0.5, 8) +gen.add("post_apex_dist0", double_t, 0, "First distance after of the apex in meters", 4.5, 0.5, 12) +gen.add("post_apex_dist1", double_t, 0, "Second distance after of the apex in meters", 5.0, 0.5, 12) +gen.add("post_apex_dist2", double_t, 0, "Third distance after of the apex in meters", 5.5, 0.5, 12) + +gen.add("kd_obs_pred", double_t, 0, "Controls how fast the opponent is assumed to go back to our raceline", 1, 0.1, 10) +gen.add("fixed_pred_time", double_t, 0, "Fixed prediciton time for the opponent", 0.15, 0, 1) + + +exit(gen.generate(PACKAGE, "spliner_dynamic_tuner", "dyn_spliner_tuner")) diff --git a/planner/spliner/package.xml b/planner/spliner/package.xml new file mode 100644 index 0000000..fa14695 --- /dev/null +++ b/planner/spliner/package.xml @@ -0,0 +1,72 @@ + + + spliner + 0.0.0 + The spliner package + + + + + nicolas + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + + + + + + + + + diff --git a/planner/spliner/src/dynamic_spline_server.py b/planner/spliner/src/dynamic_spline_server.py new file mode 100755 index 0000000..add2607 --- /dev/null +++ b/planner/spliner/src/dynamic_spline_server.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +import rospy +from dynamic_reconfigure.server import Server +from spliner.cfg import dyn_spliner_tunerConfig + +def callback(config, level): + # Ensuring nice rounding by either 0.05 or 0.5 + config.evasion_dist = round(config.evasion_dist * 20) / 20 + config.obs_traj_tresh = round(config.obs_traj_tresh * 20) / 20 + config.spline_bound_mindist = round(config.spline_bound_mindist * 20) / 20 + + config.pre_apex_dist0 = round(config.pre_apex_dist0 * 2) / 2 + # Ensuring that the pre_apex_dist1 is always greater than pre_apex_dist0 + config.pre_apex_dist1 = round(min(config.pre_apex_dist0 + 0.5, config.pre_apex_dist1)* 2) / 2 + config.pre_apex_dist2 = round(min(config.pre_apex_dist1 + 0.5, config.pre_apex_dist2)* 2) / 2 + config.post_apex_dist0 = round(config.post_apex_dist0 * 2) / 2 + config.post_apex_dist1 = round(max(config.post_apex_dist0 + 0.5, config.post_apex_dist1)* 2) / 2 + config.post_apex_dist2 = round(max(config.post_apex_dist1 + 0.5, config.post_apex_dist2)* 2) / 2 + config.kd_obs_pred = round(config.kd_obs_pred * 20) / 20 + config.fixed_pred_time = round(config.fixed_pred_time * 100) / 100 + return config + +if __name__ == "__main__": + rospy.init_node("dynamic_spline_tuner_node", anonymous=False) + print('[Planner] Dynamic Spline Server Launched...') + srv = Server(dyn_spliner_tunerConfig, callback) + rospy.spin() + diff --git a/planner/spliner/src/spliner_node.py b/planner/spliner/src/spliner_node.py new file mode 100755 index 0000000..ec6ecbf --- /dev/null +++ b/planner/spliner/src/spliner_node.py @@ -0,0 +1,529 @@ +#!/usr/bin/env python3 +import time +from typing import List, Any, Tuple + +import rospy +import numpy as np +from nav_msgs.msg import Odometry +from std_msgs.msg import Float32 +from visualization_msgs.msg import Marker, MarkerArray +from scipy.interpolate import InterpolatedUnivariateSpline as Spline + +from dynamic_reconfigure.msg import Config +from f110_msgs.msg import Obstacle, ObstacleArray, OTWpntArray, Wpnt, WpntArray +from frenet_converter.frenet_converter import FrenetConverter + + +class ObstacleSpliner: + """ + This class implements a ROS node that performs splining around obstacles. + + It subscribes to the following topics: + - `/perception/obstacles`: Subscribes to the obstacle array. + - `/car_state/odom_frenet`: Subscribes to the car state in Frenet coordinates. + - `/global_waypoints`: Subscribes to global waypoints. + - `/global_waypoints_scaled`: Subscribes to the scaled global waypoints. + + The node publishes the following topics: + - `/planner/avoidance/markers`: Publishes spline markers. + - `/planner/avoidance/otwpnts`: Publishes splined waypoints. + - `/planner/avoidance/considered_OBS`: Publishes markers for the closest obstacle. + - `/planner/avoidance/propagated_obs`: Publishes markers for the propagated obstacle. + - `/planner/avoidance/latency`: Publishes the latency of the spliner node. (only if measuring is enabled) + """ + + def __init__(self): + """ + Initialize the node, subscribe to topics, and create publishers and service proxies. + """ + # Initialize the node + self.name = "obs_spliner_node" + rospy.init_node(self.name) + + # initialize the instance variable + self.obs = ObstacleArray() + self.gb_wpnts = WpntArray() + self.gb_vmax = None + self.gb_max_idx = None + self.gb_max_s = None + self.cur_s = 0 + self.cur_d = 0 + self.cur_vs = 0 + self.gb_scaled_wpnts = WpntArray() + self.lookahead = 10 # in meters [m] + self.last_switch_time = rospy.Time.now() + self.last_ot_side = "" + self.from_bag = rospy.get_param("/from_bag", False) + self.measuring = rospy.get_param("/measure", False) + + # Subscribe to the topics + rospy.Subscriber("/perception/obstacles", ObstacleArray, self.obs_cb) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.state_cb) + rospy.Subscriber("/global_waypoints", WpntArray, self.gb_cb) + rospy.Subscriber("/global_waypoints_scaled", WpntArray, self.gb_scaled_cb) + # dyn params sub + self.pre_apex_0 = -4 + self.pre_apex_1 = -3 + self.pre_apex_2 = -1.5 + self.post_apex_0 = 2 + self.post_apex_1 = 3 + self.post_apex_2 = 4 + self.evasion_dist = 0.65 + self.obs_traj_tresh = 0.3 + self.spline_bound_mindist = 0.2 + if not self.from_bag: + rospy.Subscriber("/dynamic_spline_tuner_node/parameter_updates", Config, self.dyn_param_cb) + + self.mrks_pub = rospy.Publisher("/planner/avoidance/markers", MarkerArray, queue_size=10) + self.evasion_pub = rospy.Publisher("/planner/avoidance/otwpnts", OTWpntArray, queue_size=10) + self.closest_obs_pub = rospy.Publisher("/planner/avoidance/considered_OBS", Marker, queue_size=10) + self.pub_propagated = rospy.Publisher("/planner/avoidance/propagated_obs", Marker, queue_size=10) + if self.measuring: + self.latency_pub = rospy.Publisher("/planner/avoidance/latency", Float32, queue_size=10) + + + self.converter = self.initialize_converter() + + # Set the rate at which the loop runs + self.rate = rospy.Rate(20) # Hz + + ############# + # CALLBACKS # + ############# + # Callback for obstacle topic + def obs_cb(self, data: ObstacleArray): + self.obs = data + + def state_cb(self, data: Odometry): + self.cur_s = data.pose.pose.position.x + self.cur_d = data.pose.pose.position.y + self.cur_vs = data.twist.twist.linear.x + + # Callback for global waypoint topic + def gb_cb(self, data: WpntArray): + self.waypoints = np.array([[wpnt.x_m, wpnt.y_m] for wpnt in data.wpnts]) + self.gb_wpnts = data + if self.gb_vmax is None: + self.gb_vmax = np.max(np.array([wpnt.vx_mps for wpnt in data.wpnts])) + self.gb_max_idx = data.wpnts[-1].id + self.gb_max_s = data.wpnts[-1].s_m + + # Callback for scaled global waypoint topic + def gb_scaled_cb(self, data: WpntArray): + self.gb_scaled_wpnts = data + + # Callback triggered by dynamic spline reconf + def dyn_param_cb(self, params: Config): + """ + Notices the change in the parameters and changes spline params + """ + self.pre_apex_0 = -1 * rospy.get_param("dynamic_spline_tuner_node/pre_apex_dist0", -4) + self.pre_apex_1 = -1 * rospy.get_param("dynamic_spline_tuner_node/pre_apex_dist1", -3) + self.pre_apex_2 = -1 * rospy.get_param("dynamic_spline_tuner_node/pre_apex_dist2", -1.5) + 0.1 + self.post_apex_0 = rospy.get_param("dynamic_spline_tuner_node/post_apex_dist0", 2) + self.post_apex_1 = rospy.get_param("dynamic_spline_tuner_node/post_apex_dist1", 3) + self.post_apex_2 = rospy.get_param("dynamic_spline_tuner_node/post_apex_dist2", 4) + + self.evasion_dist = rospy.get_param("dynamic_spline_tuner_node/evasion_dist", 0.65) + self.obs_traj_tresh = rospy.get_param("dynamic_spline_tuner_node/obs_traj_tresh", 0.3) + self.spline_bound_mindist = rospy.get_param("dynamic_spline_tuner_node/spline_bound_mindist", 0.2) + + self.kd_obs_pred = rospy.get_param("dynamic_spline_tuner_node/kd_obs_pred") + self.fixed_pred_time = rospy.get_param("dynamic_spline_tuner_node/fixed_pred_time") + + spline_params = [ + self.pre_apex_0, + self.pre_apex_1, + self.pre_apex_2, + 0, + self.post_apex_0, + self.post_apex_1, + self.post_apex_2, + ] + rospy.loginfo( + f"[{self.name}] Dynamic reconf triggered new spline params: {spline_params} [m],\n" + f" evasion apex distance: {self.evasion_dist} [m],\n" + f" obstacle trajectory treshold: {self.obs_traj_tresh} [m]\n" + f" obstacle prediciton k_d: {self.kd_obs_pred}, obstacle prediciton constant time: {self.fixed_pred_time} [s] " + ) + + ############# + # MAIN LOOP # + ############# + def loop(self): + # Wait for critical Messages and services + rospy.loginfo(f"[{self.name}] Waiting for messages and services...") + rospy.wait_for_message("/global_waypoints", WpntArray) + rospy.wait_for_message("/global_waypoints_scaled", WpntArray) + rospy.wait_for_message("/car_state/odom", Odometry) + rospy.wait_for_message("/dynamic_spline_tuner_node/parameter_updates", Config) + rospy.loginfo(f"[{self.name}] Ready!") + + while not rospy.is_shutdown(): + if self.measuring: + start = time.perf_counter() + # Sample data + obs = self.obs + gb_scaled_wpnts = self.gb_scaled_wpnts.wpnts + wpnts = OTWpntArray() + mrks = MarkerArray() + + + # If obs then do splining around it + if len(obs.obstacles) > 0: + wpnts, mrks = self.do_spline(obstacles=obs, gb_wpnts=gb_scaled_wpnts) + # Else delete spline markers + else: + del_mrk = Marker() + del_mrk.header.stamp = rospy.Time.now() + del_mrk.action = Marker.DELETEALL + mrks.markers.append(del_mrk) + + # Publish wpnts and markers + if self.measuring: + end = time.perf_counter() + self.latency_pub.publish(end - start) + self.evasion_pub.publish(wpnts) + self.mrks_pub.publish(mrks) + self.rate.sleep() + + ######### + # UTILS # + ######### + def initialize_converter(self) -> FrenetConverter: + """ + Initialize the FrenetConverter object""" + rospy.wait_for_message("/global_waypoints", WpntArray) + + # Initialize the FrenetConverter object + converter = FrenetConverter(self.waypoints[:, 0], self.waypoints[:, 1]) + rospy.loginfo(f"[{self.name}] initialized FrenetConverter object") + + return converter + + def _more_space(self, obstacle: Obstacle, gb_wpnts: List[Any], gb_idxs: List[int]) -> Tuple[str, float]: + left_gap = abs(gb_wpnts[gb_idxs[0]].d_left - obstacle.d_left) + right_gap = abs(gb_wpnts[gb_idxs[0]].d_right + obstacle.d_right) + min_space = self.evasion_dist + self.spline_bound_mindist + + if right_gap > min_space and left_gap < min_space: + # Compute apex distance to the right of the opponent + d_apex_right = obstacle.d_right - self.evasion_dist + # If we overtake to the right of the opponent BUT the apex is to the left of the raceline, then we set the apex to 0 + if d_apex_right > 0: + d_apex_right = 0 + return "right", d_apex_right + + elif left_gap > min_space and right_gap < min_space: + # Compute apex distance to the left of the opponent + d_apex_left = obstacle.d_left + self.evasion_dist + # If we overtake to the left of the opponent BUT the apex is to the right of the raceline, then we set the apex to 0 + if d_apex_left < 0: + d_apex_left = 0 + return "left", d_apex_left + else: + candidate_d_apex_left = obstacle.d_left + self.evasion_dist + candidate_d_apex_right = obstacle.d_right - self.evasion_dist + + if abs(candidate_d_apex_left) <= abs(candidate_d_apex_right): + # If we overtake to the left of the opponent BUT the apex is to the right of the raceline, then we set the apex to 0 + if candidate_d_apex_left < 0: + candidate_d_apex_left = 0 + return "left", candidate_d_apex_left + else: + # If we overtake to the right of the opponent BUT the apex is to the left of the raceline, then we set the apex to 0 + if candidate_d_apex_right > 0: + candidate_d_apex_right = 0 + return "right", candidate_d_apex_right + + def do_spline(self, obstacles: ObstacleArray, gb_wpnts: WpntArray) -> Tuple[WpntArray, MarkerArray]: + """ + Creates an evasion trajectory for the closest obstacle by splining between pre- and post-apex points. + + This function takes as input the obstacles to be evaded, and a list of global waypoints that describe a reference raceline. + It only considers obstacles that are within a threshold of the raceline and generates an evasion trajectory for each of these obstacles. + The evasion trajectory consists of a spline between pre- and post-apex points that are spaced apart from the obstacle. + The spatial and velocity components of the spline are calculated using the `Spline` class, and the resulting waypoints and markers are returned. + + Args: + - obstacles (ObstacleArray): An array of obstacle objects to be evaded. + - gb_wpnts (WpntArray): A list of global waypoints that describe a reference raceline. + - state (Odometry): The current state of the car. + + Returns: + - wpnts (WpntArray): An array of waypoints that describe the evasion trajectory to the closest obstacle. + - mrks (MarkerArray): An array of markers that represent the waypoints in a visualization format. + + """ + # Return wpnts and markers + mrks = MarkerArray() + wpnts = OTWpntArray() + + # Get spacing between wpnts for rough approximations + wpnt_dist = gb_wpnts[1].s_m - gb_wpnts[0].s_m + + # Only use obstacles that are within a threshold of the raceline, else we don't care about them + close_obs = self._obs_filtering(obstacles=obstacles) + + # If there are obstacles within the lookahead distance, then we need to generate an evasion trajectory considering the closest one + if len(close_obs) > 0: + # Get the closest obstacle handling wraparound + closest_obs = min( + close_obs, key=lambda obs: (obs.s_center - self.cur_s) % self.gb_max_s + ) + + # Get Apex for evasion that is further away from the trackbounds + if closest_obs.s_end < closest_obs.s_start: + s_apex = (closest_obs.s_end + self.gb_max_s + closest_obs.s_start) / 2 + else: + s_apex = (closest_obs.s_end + closest_obs.s_start) / 2 + # Approximate next 20 indexes of global wpnts with wrapping => 2m and compute which side is the outside of the raceline + gb_idxs = [int(s_apex / wpnt_dist + i) % self.gb_max_idx for i in range(20)] + kappas = np.array([gb_wpnts[gb_idx].kappa_radpm for gb_idx in gb_idxs]) + outside = "left" if np.sum(kappas) < 0 else "right" + # Choose the correct side and compute the distance to the apex based on left of right of the obstacle + more_space, d_apex = self._more_space(closest_obs, gb_wpnts, gb_idxs) + + # Publish the point around which we are splining + mrk = self.xy_to_point(x=gb_wpnts[gb_idxs[0]].x_m, y=gb_wpnts[gb_idxs[0]].y_m, opponent=False) + self.closest_obs_pub.publish(mrk) + + # Choose wpnts from global trajectory for splining with velocity + evasion_points = [] + spline_params = [ + self.pre_apex_0, + self.pre_apex_1, + self.pre_apex_2, + 0, + self.post_apex_0, + self.post_apex_1, + self.post_apex_2, + ] + for i, dst in enumerate(spline_params): + # scale dst linearly between 1 and 1.5 depending on the speed normalised to the max speed + dst = dst * np.clip(1.0 + self.cur_vs / self.gb_vmax, 1, 1.5) + # If we overtake on the outside, we smoothen the spline + if outside == more_space: + si = s_apex + dst * 1.75 #TODO make parameter + else: + si = s_apex + dst + di = d_apex if dst == 0 else 0 + evasion_points.append([si, di]) + # Convert to nump + evasion_points = np.array(evasion_points) + + # Spline spatialy for d with s as base + spline_resolution = 0.1 # TODO read from ros params to make consistent in case it changes + spatial_spline = Spline(x=evasion_points[:, 0], y=evasion_points[:, 1]) + evasion_s = np.arange(evasion_points[0, 0], evasion_points[-1, 0], spline_resolution) + # Clipe the d to the apex distance + if d_apex < 0: + evasion_d = np.clip(spatial_spline(evasion_s), d_apex, 0) + else: + evasion_d = np.clip(spatial_spline(evasion_s), 0, d_apex) + + # Handle Wrapping of s + evasion_s = evasion_s % self.gb_max_s + + # Do frenet conversion via conversion service for spline and create markers and wpnts + danger_flag = False + resp = self.converter.get_cartesian(evasion_s, evasion_d) + + # Check if a side switch is possible + if not self._check_ot_side_possible(more_space): + danger_flag = True + + for i in range(evasion_s.shape[0]): + gb_wpnt_i = int((evasion_s[i] / wpnt_dist) % self.gb_max_idx) + # Check if wpnt is too close to the trackbounds but only if spline is actually off the raceline + if abs(evasion_d[i]) > spline_resolution: + tb_dist = gb_wpnts[gb_wpnt_i].d_left if more_space == "left" else gb_wpnts[gb_wpnt_i].d_right + if abs(evasion_d[i]) > abs(tb_dist) - self.spline_bound_mindist: + rospy.loginfo_throttle_identical( + 2, f"[{self.name}]: Evasion trajectory too close to TRACKBOUNDS, aborting evasion" + ) + danger_flag = True + break + # Get V from gb wpnts and go slower if we are going through the inside + vi = gb_wpnts[gb_wpnt_i].vx_mps if outside == more_space else gb_wpnts[gb_wpnt_i].vx_mps * 0.9 # TODO make speed scaling ros param + wpnts.wpnts.append( + self.xyv_to_wpnts(x=resp[0, i], y=resp[1, i], s=evasion_s[i], d=evasion_d[i], v=vi, wpnts=wpnts) + ) + mrks.markers.append(self.xyv_to_markers(x=resp[0, i], y=resp[1, i], v=vi, mrks=mrks)) + + # Fill the rest of OTWpnts + wpnts.header.stamp = rospy.Time.now() + wpnts.header.frame_id = "map" + if not danger_flag: + wpnts.ot_side = more_space + wpnts.ot_line = outside + wpnts.side_switch = True if self.last_ot_side != more_space else False + wpnts.last_switch_time = self.last_switch_time + + # Update the last switch time and the last side + if self.last_ot_side != more_space: + self.last_switch_time = rospy.Time.now() + self.last_ot_side = more_space + else: + wpnts.wpnts = [] + mrks.markers = [] + # This fools the statemachine to cool down + wpnts.side_switch = True + self.last_switch_time = rospy.Time.now() + return wpnts, mrks + + def _obs_filtering(self, obstacles: ObstacleArray) -> List[Obstacle]: + # Only use obstacles that are within a threshold of the raceline, else we don't care about them + obs_on_traj = [obs for obs in obstacles.obstacles if abs(obs.d_center) < self.obs_traj_tresh] + + # Only use obstacles that within self.lookahead in front of the car + close_obs = [] + for obs in obs_on_traj: + obs = self._predict_obs_movement(obs) + # Handle wraparound + dist_in_front = (obs.s_center - self.cur_s) % self.gb_max_s + # dist_in_back = abs(dist_in_front % (-self.gb_max_s)) # distance from ego to obstacle in the back + if dist_in_front < self.lookahead: + close_obs.append(obs) + # Not within lookahead + else: + pass + return close_obs + + def _predict_obs_movement(self, obs: Obstacle, mode: str = "constant") -> Obstacle: + """ + Predicts the movement of an obstacle based on the current state and mode. + + TODO: opponent prediction should be completely isolated for added modularity + + Args: + obs (Obstacle): The obstacle to predict the movement for. + mode (str, optional): The mode for predicting the movement. Defaults to "constant". + + Returns: + Obstacle: The updated obstacle with the predicted movement. + """ + # propagate opponent by time dependent on distance + if (obs.s_center - self.cur_s) % self.gb_max_s < 10: # TODO make param + if mode == "adaptive": + # distance in s coordinate + cur_s = self.cur_s + ot_distance = (obs.s_center - cur_s) % self.gb_max_s + rel_speed = np.clip(self.gb_scaled_wpnts.wpnts[int(cur_s * 10)].vx_mps - obs.vs, 0.1, 10) + ot_time_distance = np.clip(ot_distance / rel_speed, 0, 5) * 0.5 + + delta_s = ot_time_distance * obs.vs + delta_d = ot_time_distance * obs.vd + delta_d = -(obs.d_center + delta_d) * np.exp(-np.abs(self.kd_obs_pred * obs.d_center)) + + elif mode == "adaptive_velheuristic": + opponent_scaler = 0.7 + cur_s = self.cur_s + ego_speed = self.gb_scaled_wpnts.wpnts[int(cur_s * 10)].vx_mps + + # distance in s coordinate + ot_distance = (obs.s_center - cur_s) % self.gb_max_s + rel_speed = (1 - opponent_scaler) * ego_speed + ot_time_distance = np.clip(ot_distance / rel_speed, 0, 5) + + delta_s = ot_time_distance * opponent_scaler * ego_speed + delta_d = -(obs.d_center) * np.exp(-np.abs(self.kd_obs_pred * obs.d_center)) + + # propagate opponent by constant time + elif mode == "constant": + delta_s = self.fixed_pred_time * obs.vs + delta_d = self.fixed_pred_time * obs.vd + # delta_d = -(obs.d_center+delta_d)*np.exp(-np.abs(self.kd_obs_pred*obs.d_center)) + + elif mode == "heuristic": + # distance in s coordinate + ot_distance = (obs.s_center - self.cur_s) % self.gb_max_s + rel_speed = 3 + ot_time_distance = ot_distance / rel_speed + + delta_d = ot_time_distance * obs.vd + delta_d = -(obs.d_center + delta_d) * np.exp(-np.abs(self.kd_obs_pred * obs.d_center)) + + # update + obs.s_start += delta_s + obs.s_center += delta_s + obs.s_end += delta_s + obs.s_start %= self.gb_max_s + obs.s_center %= self.gb_max_s + obs.s_end %= self.gb_max_s + + obs.d_left += delta_d + obs.d_center += delta_d + obs.d_right += delta_d + + resp = self.converter.get_cartesian([obs.s_center], [obs.d_center]) + + marker = self.xy_to_point(resp[0], resp[1], opponent=True) + self.pub_propagated.publish(marker) + + return obs + + def _check_ot_side_possible(self, more_space) -> bool: + if abs(self.cur_d) > 0.25 and more_space != self.last_ot_side: # TODO make rosparam for cur_d threshold + rospy.loginfo(f"[{self.name}]: Can't switch sides, because we are not on the raceline") + return False + return True + + ###################### + # VIZ + MSG WRAPPING # + ###################### + def xyv_to_markers(self, x:float, y:float, v:float, mrks: MarkerArray) -> Marker: + mrk = Marker() + mrk.header.frame_id = "map" + mrk.header.stamp = rospy.Time.now() + mrk.type = mrk.CYLINDER + mrk.scale.x = 0.1 + mrk.scale.y = 0.1 + mrk.scale.z = v / self.gb_vmax + mrk.color.a = 1.0 + mrk.color.b = 0.75 + mrk.color.r = 0.75 + if self.from_bag: + mrk.color.g = 0.75 + + mrk.id = len(mrks.markers) + mrk.pose.position.x = x + mrk.pose.position.y = y + mrk.pose.position.z = v / self.gb_vmax / 2 + mrk.pose.orientation.w = 1 + + return mrk + + def xy_to_point(self, x: float, y: float, opponent=True) -> Marker: + mrk = Marker() + mrk.header.frame_id = "map" + mrk.header.stamp = rospy.Time.now() + mrk.type = mrk.SPHERE + mrk.scale.x = 0.5 + mrk.scale.y = 0.5 + mrk.scale.z = 0.5 + mrk.color.a = 0.8 + mrk.color.b = 0.65 + mrk.color.r = 1 if opponent else 0 + mrk.color.g = 0.65 + + mrk.pose.position.x = x + mrk.pose.position.y = y + mrk.pose.position.z = 0.01 + mrk.pose.orientation.w = 1 + + return mrk + + def xyv_to_wpnts(self, s: float, d: float, x: float, y: float, v: float, wpnts: OTWpntArray) -> Wpnt: + wpnt = Wpnt() + wpnt.id = len(wpnts.wpnts) + wpnt.x_m = x + wpnt.y_m = y + wpnt.s_m = s + wpnt.d_m = d + wpnt.vx_mps = v + return wpnt + +if __name__ == "__main__": + spliner = ObstacleSpliner() + spliner.loop() diff --git a/sensors/vesc b/sensors/vesc new file mode 160000 index 0000000..a3e833c --- /dev/null +++ b/sensors/vesc @@ -0,0 +1 @@ +Subproject commit a3e833cb2ce08597dce681a78caad382453b4888 diff --git a/stack_master/CMakeLists.txt b/stack_master/CMakeLists.txt new file mode 100644 index 0000000..33e89f8 --- /dev/null +++ b/stack_master/CMakeLists.txt @@ -0,0 +1,211 @@ +cmake_minimum_required(VERSION 3.0.2) +project(stack_master) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES stack_master +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/stack_master.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/stack_master_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_stack_master.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() +if(CATKIN_ENABLE_TESTING) + find_package(rostest REQUIRED) + add_rostest(test/time_trials.test) + add_rostest(test/head_to_head_splini.test) +endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/stack_master/README.md b/stack_master/README.md new file mode 100644 index 0000000..e8351b9 --- /dev/null +++ b/stack_master/README.md @@ -0,0 +1,82 @@ +# Stack Master +Here is the `stack_master`, it is intended to be the main interface between the user and the PBL F110 system. + +## Basic Usage +Here only quick procedures are detailed, for more details check the [checklists index](./checklists/README.md). +If you are looking for the utilities and how to use them, refer to the [`f110_utils` folder](../f110_utils/README.md). + +### Mapping (on the real car) +It is suggested to first launch a roscore in a separate terminal. This will be useful to keep any RViz sessions working even across restarts of the base system. +```shell +roscore +``` + +Then launch the mapping procedure with the following launch file: +```shell +roslaunch stack_master mapping.launch map_name:= racecar_version:= +``` + + - `` can be any name with no white space. Conventionally we use the location name (eg, 'hangar', 'ETZ', 'icra') followed by the day of the month followed by an incremental version number. For instance, `hangar_12_v0`. + - `` depends on which car you are using. NUC2, JET1, etc. + +After completing a lap, press the requested button and the raceline will be generated. Then two GUI will be shown, and within them a slider can be used to select the sectors. +Be careful as once a sector is chosen it cannot be further subdivided. + +After both the standard sectors and the overtaking sectors are chosen, the mapping procedure will re-build the `sector_tuner` and the `overtaking_sector_tuner` package, and then after this is completed the procedure can be ended with Ctrl+C. + +You will then need to re-source the ROS environment, which can be done as: +```shell +source /opt/ros/noetic/setup.bash && source ~/catkin_ws/devel/setup.bash +``` + +If you don't have `sauce` already set as an alias in your `bashrc`. + +### Base System + +The base system launches the common components that are required for the car between time-trials and Head-to-Head mode. It can be launched as follows: + +```shell +roslaunch stack_master base_system.launch map_name:= racecar_version:=NUCX +``` + +For more information consult the launchfile [here](./launch/base_system.launch). + +> Note: There is duplicated code in `headtohead` and `time_trials` launchfiles. For example: +> +> the `controller_manager` node +> +> dynamic reconfigure for controller manager +> +> CPU measurement +> +> State machine + +This could be moved to the base-system launchfile (unless I'm missing something?) + +### Time trials +```shell +roslaunch stack_master time_trials.launch LU_table:=NUCX_hangar_pacejka +``` + +In a Time-Trials part of competition, or if you know you don't need to deal with dynamic obstacles, launch this. + +### Head to Head +```shell +roslaunch stack_master headtohead.launch LU_table:=NUCX_hangar_pacejka overtake_mode:= +``` + +When there are dynamic obstacles, run this. + +## How to connect the pit +- On your pit laptop: + ```shell + cd /f110_utils/scripts/pit_starter + source pit_starter.sh rviz + ``` +- Enjoy freshly sourced NUCX and runs the rviz with the correct config. + +Pro tips: +- If you only want to source the NUCX then dont use the `rviz` argument +- It helps to alias these functions with convenient names +--- +[Go back to the main README](../README.md) \ No newline at end of file diff --git a/stack_master/checklists/HeadToHead.md b/stack_master/checklists/HeadToHead.md new file mode 100644 index 0000000..4be9b75 --- /dev/null +++ b/stack_master/checklists/HeadToHead.md @@ -0,0 +1,54 @@ +# Checklist for head-to-head phase +# F1TENTH autonomous grand prix (ICRA'23 London) - ForzaETH + +## Roles +- [Control_MissionControl] +- [Localization_MissionControl] +- [MissionControl] +- [Pilot] +- [Orbiters] (as many as possible) + +## Procedure +### Precheck [MissionControl]: +0. Use a fully charged battery and turn on the car +1. Check all walkie-talkie batteries +2. Check if you are in the correct branch (`master`) on the car. +3. `catkin build` and `sauce` +4. No wires in the way, battery is firmly positioned with tape +5. Wheel nuts tightened and pin checked +6. Walkie-Talkie connection is established between mission control [Localization_MissionControl] and [Pilot]. +7. Make sure [Pilot] knows the normal and overtaking sectors of the track, as well as the raceline +8. [Orbiters] are equidistant along the track +9. [Orbiter] get ready to countdown laps into walkie-talkie + +### Strategy +- If we don't expect to overtake, put trailing distance higher (eg 2.0) +- If opponent is very slow (30% laptime slower) also higher trailing distance +- Otherwise keep 1.5m trailing distance +- Set `ratio_to_glob_path` in `dynamic_tracker_server` to expected opponent speed + +### Head To Head +0. Launch `roscore` and `base_system` on the car +1. Locally, launch `pit_rvizX` and `pitX rqt`. +2. [MissionControl] Check all `rqt` dynamic reconfigure parameters are good. +3. Launch head-to-head: + ```bash + roslaunch stack_master headtohead.launch racecar_version:= LU_table:= overtake_mode:=spliner od_mode:=sami + ``` +4. Check that the `Perception Detect` and `Perception Tracking` printed out `Ready` in the terminal +5. **Check that `Perception Detect noMemorymode` is set!** +6. [MisisonControl] Check if localization is good. If needed, correct the position either telling the [Pilot] to localize or with the pose estimation button in RViz. +7. When all MissionControl parameters are OK, [Localization_MissionControl] gives a thumbs-up. When [Pilot] sees this, start autonomous driving. +8. Ready check: "pit ready" --> "orbiter ready" --> "driver ready" + +## Procedure in case of a Crash + +0. The two closest [Orbiters] run to the crash site. +1. One student raises the barriers while the [Driver] drives the car back onto the track. +2. [Driver] drives manually around the track while the barriers are repaired. +3. When localization is ready, [Localization_MissionControl] informs the [Driver]. +4. The driver must return to the position of the crash. +5. When the driver receives the signal from the referees, resume autonomous driving. +6. Check-Uncheck the `force_GBTRACK` option in `dynamic_statemachine_server` to ensure we restart the race in `GB_FREE` mode +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/Mapping.md b/stack_master/checklists/Mapping.md new file mode 100644 index 0000000..e3fd4f7 --- /dev/null +++ b/stack_master/checklists/Mapping.md @@ -0,0 +1,79 @@ + +# Checklist for mapping phase (with map editor) +# F1TENTH autonomous grand prix (ICRA'23 London) - ForzaETH + +## Procedure + +## Precheck: +- Check the correct branch is used (`master`) +- Fully charged Battery plugged in +- Controller sufficiently charged and laying next to launch pc +- No wires in the way, battery is firmly positioned +- Car placed at a good position to start mapping (e.g. in the center of the track) +- Chosen NUC and controller are turned on +- Check that everybody is at their correct position: + [Mapping_MissionControl]: at the launch pc + [Control_MissionControl]: at the launch pc +- Launch pc connected to a secondary display (e.g. monitor) +- In the config file `stack_master/config/global_planner_params.yaml`, check: + The `safety_width` and `safety_width_sp` (should be at least `0.7`) + + +## Setup: +1. Open a terminal and ssh into the car. `catkin build` and `sauce` +2. Open a terminal on your local pc. Open rviz and move it on the secondary display + ``` + pit_rvizX + ``` + +## Map with Mapping [Mapping_MissionControl] +If you have a clear racetrack, you can map with mapping +1. Launch mapping with: + ``` + roslaunch stack_master mapping.launch racecar_version:=NUCX map_name:=PLACE_DAYMONTH_VN + ``` + - Replace `PLACE` with the place where the track is, e.g. `icra` or `hangar` + - Replace `DAYMONTH` with the zero-padded current day, e.g. `2805` if it is the 28th of may + - Replace `VN` with the version of the map, e.g. `v0` if it is the first version of the map on that day +2. Drive at least one lap, using the automatic driving button (R1). +3. After one completed lap you will be asked if the map is good enough. + - Press `y` if the map looks good (clear trackbounds, no shifts) + - Check if the waypoints were computed and the markers of the trackbounds look fine. Otherwise, kill everything and start over + from 1. + +**Note: if the car does not prompt you to press `y` maybe the loop closure failed. Drive another lap manually** + +4. If it does not work, use Map Editor + + +## Map with Map_Editor [Mapping_MissionControl] +If you have problems with getting a correct map (gaps in the racetrack or other cars on the map) or want to adjust the raceline, you can use [Map Editor](/f110_utils/nodes/map_editor/README.md). Prefer using Map Editor on our local machine, especially if the WLAN connection is bad. + + +## Create global trajectory [Control_MissionControl] +Depending on whether you chose to use map editor locally or on the car, create the global trajectory according to the [Readme](/f110_utils/nodes/map_editor/README.md). + +You might want to make edits to the map to create specific racelines. However, remember that the `pf_map` should reflect the actual track, while the raceline-specific map can be edited as you wish. + +1. Slice the map into sectors with the GUI. +2. Determine the overtaking sectors with the other GUI. +3. **Source all terminals freshly!** + +## Copying maps / Renaming maps [Control_MissionControl] +1. Rename the enclosing map folder from OLDNAME to NEWNAME. +2. Inside the folder, rename: `OLDNAME.pbstream` to `NEWNAME.pbstream` +3. Inside the folder, rename: `OLDNAME.png` to `NEWNAME.png` +4. Inside the folder, rename: `OLDNAME.yaml` to `NEWNAME.yaml` +5. Open up the `NEWNAME.yaml` and inside replace the reference to `OLDNAME.png` to `NEWNAME.png` + + +## Verification (on car) +Verify that the map was created correctly by starting the base system with the new map and check if it runs without errors +``` +roslaunch stack_master base_system.launch racecar_version:= map_name:= +``` + +Congrats, you are done with mapping + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/OpponentTracker.md b/stack_master/checklists/OpponentTracker.md new file mode 100644 index 0000000..89c4140 --- /dev/null +++ b/stack_master/checklists/OpponentTracker.md @@ -0,0 +1,89 @@ +# Obstacle Detection and Opponent Tracker +# F1TENTH autonomous grand prix (ICRA'23 London) - ForzaETH + +## Launching in ICRA STACK +Launch headtohead with spliner: +``` +roslaunch stack_master headtohead.launch LU_table:=NUCX_hangar_pacejka overtake_mode:=spliner od_mode:=sami +``` + +After successful launch, you should see the following messages in the command line: +- `[Tracking] Dynamic Tracker Server Launched...` +- `[Perception Detect]: Ready` +- `[Perception Classifier]: Ready` + +## Dnyamic Reconfigurable Parameter Overview +Launch `rqt` and go into `dynamic_tracker_server` +### Tracking +- `ttl_dynamic`: the time to live of the dynamic prediction of the opponent. +- `ratio_to_glob_path`: the ratio between the target velocity and the global velocity. Defines to which target speed the dynamic prediction will convert. If set to 1, target velocity is equal the raceline speed +- `ttl_static`: time to live of the static and not-classified objects. Be aware that the ttl of static obstacle only gets decreased if they are/should be visible +- `min_nb_meas`: minimum number of measurements of a obstacle before it gets classified as static or dynamic +- `dist_deletion`: distance under which an obstacle can be deleted (if it is visible) +- `dist_infront`: distance under which obstacles infront of the car get published +- `min_std`: standard deviation of the position under which obstacles get classified as static. Needs to be increased when using pf2 +- `max_std`: standard deviation of the position over which obstacles get classified as dynamic. Needs to be increased when using pf2 +- `vs_reset`: average velocity in s direction under which a dynamic obstacle gets reset to a static obstacle +- `aggro_multi`: a multiplier for the association distance for dynamic obstacles +- `debug_mode`: will enable some prints to the console for debugging +- `publish_static`: enable/disable publishing of static obstacles. May help when many FP are present +- `noMemoryMode`: will disable the memory mode of the tracker. Can help with thight curves and trailing + +### Detect +- `min_obs_size`: minimum size of the point could in laser points. Can be used to filter out FP +- `max_obs_size`: maximum size of an object in meters. Can be used to filter out FP +- `max_viewing_distance`: the maximum distance the detection can see. Maximum allowed for the race is 10m +- `boundaries_inflation`: artificially increases the boundaries for detection. Can help to filter out FP along the boundaries. + +## Troubleshooting +### Detection/Tracking not working +Did you build and sauce? +### Trailing gets stuck in corners due to FP +- Enable `noMemoryMode` +- Increase `boundaries_inflation` + +### FP near the boundaries +- Increase `boundaries_inflation` +- Consider inflating the boundaries with [map editor](/f110_utils/nodes/map_editor/README.md) + +### Dynamic Obstalce is too fast/slow +- change `ratio_to_glob_path`, 1 is raceline speed + +### Opponent/Obstacles are sometimes not visible +- decrease `min_obs_size` +- increase `max_viewing_distance` + +### Very big obstacles (FP) +- decrease `max_obs_size` + +### Missclasification +- increase `min_nb_meas` +- increase `min_std` and `max_std` +- incrase/decrease `vs_reset` + +### Obstacle is not deletet but clearly inside of visible range +- enable `debug_mode` and fix it _OR_ disable `publish_static` + +## Parameter in yaml +This variables should not need to be touched during the race. Listed for completeness. +### Tracking +- `rate`: set to 40Hz +- `P_vs`: proportional gain for the s-velocity +- `P_d`: proportional gain for bringing back the d-position to the center +- `P_vd`: proportional gain for the d-velocity +- `measurment_var_s`: the variance of the measurment noise in the s direction +- `measurment_var_d`: the variance of the measurment noise in the d direction +- `measurment_var_vs`: the variance of the measurment noise in the s-velocity +- `measurment_var_vd`: the variance of the measurment noise in the d-velocity +- `process_var_vs`: the variance of the process velocity noise in the s direction +- `process_var_vd`: the variance of the process velocity noise in the d direction +- `max_dist`: maximal distance for association of the obstacles +- `var_pub`: obstacles with a bigger variance are not published +### Detect +- `rate`: set to 40Hz +- `lambda`: minimum reliable detection range in degrees +- `sigma`: standard deviation of the noise of the lidar ranges in meter +- `min_2_points_dist`: minimum distance between two points + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/PitUsage.md b/stack_master/checklists/PitUsage.md new file mode 100644 index 0000000..501482e --- /dev/null +++ b/stack_master/checklists/PitUsage.md @@ -0,0 +1,54 @@ +## Pit Usage Guide + +**Note**: Throughout this README, NUCX refers to a generic identificative name for a physical car. + +Once you are connected to the Zerotier SDWAN as in [here](./networking.md) (or once you have fixed IPs assigned to the cars) you are able to SSH into the car. But you will want to interact/visualize/debug the car from your laptop aka _the pit_. + +Therefore you will need the `pit_starter.sh` from [the utils directory](../../f110_utils/scripts/pit_starter/pit_starter.sh). To use it: +- `cd /f110_utils/scripts/pit_starter` +- `source pit_starter.sh rviz` +- Enjoy freshly sourced NUCX and runs the rviz with the correct config. +- Pro tip: If you only want to source the NUCX then dont use the `rviz` argument + +For convenience, it's nice to set up some aliases in your bashrc (Bash shell config file) to speed-up different things. Your bashrc is found in `~/.bashrc`. An example is below. + +**NOTE**: the path of your race_stack is assumed to be in `~/catkin_ws/src`, but it might not be the case for you. So change if needed. + +--- + +First, get your Zerotier IP handy, if applicable. You can do so by running `ifconfig` in the terminal and see the `inet` address for the network adapter that starts with `zt`. + +```bash +#Source setup bashes +source /opt/ros/noetic/setup.bash +source ~/catkin_ws/devel/setup.bash + +# aliases for different ROS distros. +alias sros1="source /opt/ros/noetic/setup.bash" +alias sf1="sros1; source ~/catkin_ws/devel/setup.bash" # for convenience, no need to source ROS1 first. +alias sauce="sf1" + +# aliases to get into cars faster +alias sshnuc2="ssh -XC " + +# TODO : Check your Zerotier IP first! if it starts with 192.168.192 then you can use the following line, otherwise you need to change it. +export ZEROTIER_IP=$( ifconfig | awk '/inet 192.168.192/ {print $2}' ) + +# Helpers for Pit Starter Source (if you just want to set the environment variables in your system) +alias pit1='source ~/catkin_ws/src/race_stack/f110_utils/scripts/pit_starter/pit_starter.sh "$ZEROTIER_IP" NUC2' + +# If you want to source and open RViz too +alias pit_rviz2='source ~/catkin_ws/src/race_stack/f110_utils/scripts/pit_starter/pit_starter.sh "$ZEROTIER_IP" NUC2 rviz' + + +# for ease of access to the scripts +alias scripz='cd ~/catkin_ws/src/race_stack/stack_master/scripts' + +# If you want to check which nucs are online +alias nucs='bash ~/catkin_ws/src/race_stack/f110_utils/scripts/nucs.sh' +``` + +Note that the [Pit Starter Script](../../f110_utils/scripts/pit_starter/pit_starter.sh) also supports the opening of RViz and rqt at the same time. This functionality is not included in this alias for brevity. + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/README.md b/stack_master/checklists/README.md new file mode 100644 index 0000000..01ace37 --- /dev/null +++ b/stack_master/checklists/README.md @@ -0,0 +1,17 @@ +Here there are the checklists for the most important features of the race_stack: + +## Core Features +- [System Identification](./SysID.md) +- [Mapping](./Mapping.md) +- [Time-trials](./TimeTrials.md) +- [Head-to-Head](./HeadToHead.md) + +## Extra Features +- [Spliner Tuning](./SplinerTuning.md) +- [Opponent Tracker Tuning](./OpponentTracker.md) +- [Networking Guide](./networking.md) +- [Pit setup](./PitUsage.md) + +--- +[Go Back to the race_stack README](../README.md) + diff --git a/stack_master/checklists/SplinerTuning.md b/stack_master/checklists/SplinerTuning.md new file mode 100644 index 0000000..45d0a88 --- /dev/null +++ b/stack_master/checklists/SplinerTuning.md @@ -0,0 +1,55 @@ +# Spliner Tuning +# F1TENTH autonomous grand prix (ICRA'23 London) - ForzaETH + +## Launching in ICRA STACK +Launch headtohead with spliner: +``` +roslaunch stack_master headtohead.launch LU_table:=NUCX_hangar_pacejka overtake_mode:=spliner od_mode:=sami +``` + +After successful launch, you should see the following messages in the command line: +- `[OBS Spliner] Waiting for messages and services...` +- `[Planner] Dynamic Spline Server Launched...` +- `[OBS Spliner] Ready!` + +## Dnyamic Reconfigurable State Machine Parameter Overview +Launch `rqt` and go into `dynamic_statemachine_server` +### Parameters +- `lateral_width_gb_m`: the distance in [m] at which the statemachine considers an obstacle to be blocking the global trajectory. +- `lateral_width_ot_m`: the distance in [m] at which the statemachine considers an obstacle to be blocking the overtaking trajectory. +- `splini_hyst_timer_sec`: hysterisis time in [s] from which the statemachine waits until an overtake state can be entered again. +- `splini_ttl` time to live in [s] that caches the last splines s.t. we finish driving the spline even when switching to trailing state. +- `ftg_speed_mps`: threshold speed in [m/s] at which FTG is triggered to overtake with FTG when in a trailing zone and we are blocked. +- `ftg_timer_sec`: time to await in [s] until we enter FTG. +- `ftg_active`: flag to activate the FTG based overtake. + + +## Dnyamic Reconfigurable Spliner Parameter Overview +Launch `rqt` and go into `dynamic_spliner_tuner_node` +### Parameters +- `evasion_dist`: the apex distance of the spline in [m]. +- `obs_traj_tresh`: the threshold in [m] at which spliner considers obstacles, orthogonal to the raceline. +- `spline_bound_mindist`: minimum distance in [m] that the spline must be distanced to the track boundaries. If a single point of the spline is closer to the boundaries than the treshold, then the spline is aborted. +- `pre_apex_distX`: spline point that is infront of the apex. The spline consists of 7 points in frenet space. the further the `distX` params are set, the smoother the trajectory. +- `post_apex_distX`: spline point that is behind of the apex. You might want to have an asymetric spline, to cut off the opponent. +- `kd_obs_pred`: the gain parameter at which we propagate the `d` of the opponent back to the raceline. +- `fixed_pred_time`: the time in [s] at which we forward propagate the opponent linearly. + +## Troubleshooting +### No spline found +Lower the `evasion_dist` and the `spline_bound_mindist` but keep in mind that collisions are more likely. +### Our opponent cuts our raceline +Increase the `lateral_width_gb_m` and `obs_traj_tresh`. Optionally you can also increase the motion prediction by increasing the propagation time `fixed_pred_time`. +#### These three params are dependant on the opponents behaviour: +- **If the opponent has a similar raceline** as us in the overtaking zones, then the params are not that important. +- **If it is parallel to our raceline** the `lateral_width_gb_m` and `obs_traj_tresh` should be larger than the distance of the racelines. +- **If it cuts our raceline in a shallow angle** the `lateral_width_gb_m` and `obs_traj_tresh` should be chosen very large as well as higher motion propagation `fixed_pred_time`. **However** if we assume the opponent will overshoot after cutting our raceline, then a low `lateral_width_gb_m` will let us go into global trajectory tracking state quickly (once the opponent has overshot). +### In a non overtaking zone with an obstacle we are trapped +- Enable `ftg` in statemachine +### We don't seem to be using spliner waypoints fast enough +- Set down the `splini_hyst_timer_sec` +### Ghost splines come up +- When we have a very short circuit, splines of the previous lap can still be cached. Hence set down `splini_ttl`. + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/SysID.md b/stack_master/checklists/SysID.md new file mode 100644 index 0000000..2965f87 --- /dev/null +++ b/stack_master/checklists/SysID.md @@ -0,0 +1,329 @@ +# Checklist for System Identification + +## Setting Up ID Analyser + +The Analyser is found in the ```race_stack/system_identification/id_analyser``` folder. + +For the analyser you need bagpy, as bagpy only works in python 3, but you might be running python2, create a virtual environment following this guide: +``` +https://code.visualstudio.com/docs/python/environments +``` +which boils down to doing the following in the id_analyser folder: +```shell +sudo apt-get install python3-venv +# move to the current folder +cd /home/icra_crew/catkin_ws/src/race_stack/system_identification/id_analyser/ +# create a new virtual environment +python3 -m venv .venv +``` +Then install the python extension for vscode and open the command palete using ```Ctrl+Shift+P``` and search for +"Python: Select Interpreter". If the interpreter does not show up, just manually select it (.venv/bin/python) + +Then install bagpy and anything else that might be required. + +```shell +source /home/icra_crew/catkin_ws/src/race_stack/system_identification/id_analyser/.venv/bin/activate +pip install wheel importlib-resources tk bagpy +``` + +## Physical System Identification + +Parameters that need to be identified physically are: +- I_z: Moment of Inertia around yaw axis - Bifilar Pendulum experiment +- h_cg: Height of the center of gravity over the wheel axes +- l_f: distance of front axis from center of mass +- l_r: distance of rear axis from center of mass +- l_wb: wheelbase, should be l_r + l_f +- m: mass of the model + +Typically these don't change significantly and need to be identified only once. If a new model is added, generate a model file using the script in the id_analyser [add_model](../../system_identification/id_analyser/add_model.py). + +## Steering Angle to Servo Position [Verify or Identify before Tire Identification] + +The parameters that are affected by this are found in +```f1tenth_system/racecar/racecar/config//vesc.yaml```. We need to set + +``` +steering_angle_to_servo_gain: # e.g. -0.8390 +steering_angle_to_servo_offset: # e.g. 0.405 +``` + +This mapping should already be identified correctly. This can be checked by doing the following: + +### Verify: Driving Straight + +1. Launch the base system with the correct racecar version +```roslaunch racecar pbl_teleop.launch racecar_version:=NUC2 ``` + +2. Drive straight + 2.1 If the car drives to the right: decrease ```steering_angle_to_servo_offset``` + 2.2 If the car drive to the left: increase ```steering_angle_to_servo_offset``` + 2.3 There is always some small error due to servo deadzones. + 2.4 This can also be done by tightening os loosening the steering links on the car + +3. Repeat Step 2 until satisfied + +After finding the correct offset, and setting it in the ```vesc.yaml``` file, navigate to the ```system_identification/id_analyser/models/``` folder. In the two model files you find in there, set ```C_0d``` to the ```steering_angle_to_servo_offset``` you just identified. + +### Verify: Steering Angle Gain + +In the ```system_identification/id_analyser/models//_linear.txt``` file you will find a parameter called ```l_wb```, this is the wheelbase of the car. Assuming ackermann steering, we can estimate how large a driven circle should be given a certain steering angle. The formula is: +```Circle_Radius = Wheelbase / tan(Steering_Angle)``` + +You can command a constant steering angle using the ```id controller```. Navigate to ```system_identification/ic_controller/parameters``` and open ```experiments.yaml```. We will only use experiment number ```5```, in which the car drives with a constant speed defined by the ```const_speed``` parameter and changes the steering angle from ```start_angle``` to ```end_angle``` over the time ```angle_time```. From previous tests we know that the maximum steering angle is around +-0.4. + +By setting the start and end angles to the same value the car will drive with a constant steering angle and speed for angle_time duration. + +To test if the steering to servo position gain is correct do the following: +1. Set the const_speed to 1.5, set the start and end angles to 0.1 -> Car will drive a left hand circle +2. Calculate the circle radius the car should drive at with a steering angle of 0.1. +3. Measure out a circle with with radius and mark the start position of the car and where it should drive through +4. Start the base system like above +```roslaunch racecar pbl_teleop.launch racecar_version:=NUC2 ``` +5. Start the id_controller with ```roslaunch id_controller id_controller.launch experiment:=5``` +6. Hold the top right button on the remote to make the car follow the commands from the id controller. +7. Check if the radius of the driven circle matches the marked positions: + 7.1 If the Radius was too big, increase the ```steering_angle_to_servo_gain``` (more negative, e.g. -0.8 -> -0.85) + 7.2 If the Radius was too small, decrease the ```steering_angle_to_servo_gain``` (less negative, e.g. -0.8 -> -0.75) + +8. Repeat above steps until it drives the circle like you would want it to. Also try out with a negative steering angle: -0.1 -> Car will drive a righthand circle + +9. If, after this procedure, you changed the parameters in the `vesc.yaml` file, change them in the corresponding models of the car. You will find the two files in the following position: +- `race_stack/system_identification/id_analyser/models//_linear.txt` +- `race_stack/system_identification/id_analyser/models//_pacejka.txt` +`steering_angle_to_servo_gain` corresponds to `C_d` and `steering_angle_to_servo_offset` corresponds to `C_0d`. + +### Data-driven Identification of Steering Angle Parameters + +To do this, we need to generate data first. For this: +1. In a terminal navigate to ```~/catkin-ws/src/race_stack/system_identification/id_anaylser``` and if it doesn't exist yet, make the folders ```data//steering_angle```. +2. Go into the ```steering_angle``` folder you just created and prepare the command to record a rosbag: ```rosbag record -a -x "scan"``` +3. In another terminal, start the base system: ```roslaunch racecar pbl_teleop.launch racecar_version:= se_version:=new``` +4. Manually drive a circle driving at a constant speed and steering angle, record rosbag as soon as you reach a steady state and stop rosbag before you stop driving / change steering angle. +5. Repeat step 4. a few times, driving circles with different radii, recording a new rosbag each time. + +To analye the data, navigate to the ```~/catkin_ws/src/race_stack/system_identification/id_analyser``` folder and open ```analyse_steering.py```. Set ```model_name_``` to the model that you want to edit. The models are located in the ```models``` subdirectory. + +Open a terminal in vscode and select the virtual environment set up above as python interpreter. Then run the following command to analyse the data: +```python3 analyse_steering.py``` + +The script will print the parameters that it estimated and will also update them in the model ```.txt```. All that is left to do it to copy the identified ```C_0d``` to ```steering_angle_to_servo_offset``` and ```C_d``` to ```steering_angle_to_servo_gain``` in the ```vesc.yaml``` for the car. + +## Tire Dynamics + +This should be done for new floors or Tires!! +Make sure that the steering angle to servo mapping is identified before. + +## Extensive and exact version (do this if possible): + +To find the tire parameters, we need to make the car drive at different slip angles. To do this, use the id_controller to make the car drive at a constant speed and slowly ramp up the steering angle. + +0. Make a new folder ```~/catkin_ws/src/race_stack/system_identification/id_analyser/data//tire_dynamics```, record subsequent bags in that folder +1. Start the Base system: ```roslaunch racecar pbl_teleop.launch racecar_version:= se_version:=new``` +2. Set the experiment parameters in ```~/catkin_ws/src/race_stack/system_identification/id_controller/parameters/experiments.yaml```: + 1. angle_time: 20, const_speed: 3, start_angle: 0.1, end_angle: 0.4 <-- left hand turn, car will drive circle with 12m diameter and converge to the left of start position + 2. angle_time: 20, const_speed: 4, start_angle: 0.1, end_angle: 0.4 + 3. angle_time: 10, const_speed: 5, start_angle: 0.1, end_angle: 0.4 + 4. angle_time: 10, const_speed: 5, start_angle: -0.1, end_angle: -0.4 <-- right hand turn, car will drive circle with 12m diameter and converge to the right of start position + 5. angle_time: 20, const_speed: 4, start_angle: -0.1, end_angle: -0.4 + 6. angle_time: 20, const_speed: 3, start_angle: -0.1, end_angle: -0.4 +3. Start the experiment with +``` +roslaunch id_controller id_controller.launch experiment:=5 +``` +4. Hold the button on the remote to make the car drive +4. In another terminal open the data folder you just made and start recording a rosbag as soon as the car has reached a steady state: +``` +rosbag record -a -x "scan" +``` +5. The terminal with the experiment will notice you when the experiment is about to be over: "Ending soon, stop the bag" <-- Do so +6. Repeat 2 - 5 with all different settings in step 2. +7. Open ```~/catkin_ws/src/race_stack/system_identification/id_analyser/analyse_tires.py```and change the model name to the one that you are working on (e.g. NUC2_pacejka) +8. Run the script: +``` +source .venv/bin/activate +python3 analyse_tires.py +``` +9. Change the name to the linear version of the model, to also save and fit the linear tire parameters + +## Lookup Table + +After identifying the parameters, the lookup table for the model can be generated automatically. For this open ```~/catkin_ws/src/race_stack/system_identification/id_analyser/generate_lookup_table.py``` and change the model name to the model that you would like to generate the lookup table for. Then run the script: +``` +source .venv/bin/activate +python3 generate_lookup_table.py +``` + +The lookup table will be generated and saved as CSV in the ```id_analyser/models/``` folder. From there you can copy it over to ```system_identification/steering_lookup/cfg``` and name it according to your setting. It can then be used for the MAP controller. + +## Lookup Table validation +Drive on the track and compare to other Lookup Tables + +To roughly check the quality of the obtained measurement, you can test driving around an ellipse and see if the error is low enough. + +1. position the car in a place with at least 1m space to the right, 5m to the left, 5m in front and 5m to the back. There is a picture for reference, with car as the blue arrow. +![](./img/ellipse.png "Car on the ellipse test track") +2. launch the SysId verificator: +``` +roslaunch stack_master sysid_verify.launch mode:=safe LU_table:= +``` +3. Drive around for a couple of laps +4. check in the terminal used for running the test what is the average lap time and what is the average error. In the hangar, [](../launch/sysid_verify.launch) yields ca. 5.95 s for laptime and 0.135 for lateral error. + +## Quick Version (if there is not enough space or time): + +In ```~/catkin_ws/src/race_stack/system_identification/id_analyser/model/NUCX/NUCX_pacejka/linear```, change the mu value to represent how much more slippery or grippy the tires are compared to the measured ones. To do this, measure the lateral friction of the car with the Newtonmeter and compare it to the premeasured values in this [table](https://docs.google.com/spreadsheets/u/1/d/1gE8_uCqfD9cIxWgixRcTf_ySR_eO9Na0u2SreVcDfYg/edit?usp=drive_web&ouid=118084018467953082467) + + Then continue with generating the Lookup Table. + +## Speed to ERPM Mapping [SHOULD NOT BE REQUIRED] + +The parameters that are affected by this are found in +`race_stack/base_system/f1tenth_system/racecar/racecar/config//vesc.yaml`. We need to set + +``` +speed_to_erpm_gain: # e.g. 4316 +speed_to_erpm_offset: #e.g. -5.0 +``` + +This mapping should already be identified correctly. this can be checked by plotting commanded vs measured speed (by slam) in rqt. + + +### Data-driven Identification of Motor RPM parameters + +We are actually going to fix the offset to -5.0, so in fact we only need to identify the ```speed_to_erpm_gain```. +To do this, we need to generate data first. For this: +1. In a terminal navigate to ```~/catkin-ws/src/race_stack/system_identification/id_anaylser``` and if it doesn't exist yet, make the folders ```data//motor```. +2. Go into the motor folder you just created and prepare the command to record a rosbag: ```rosbag record -a -x "scan"``` +3. In another terminal, start the base system: ```roslaunch racecar pbl_teleop.launch racecar_version:= se_version:=new``` +4. Drive straight at a constant velocity, after the car has accelerated to a constant velocity start recording the bag, stop the bag before you stop driving. +5. Repeat step 4. a few times, driving at different speeds, recording a new rosbag each time. + +To analye the data, navigate to the ```~/catkin-ws/src/race_stack/system_identification/id_anaylser``` folder and open ```analyse_motor_rpm.py```. Set ```model_name_``` to the model that you want to edit. The models are located in the ```models``` subdirectory. + +Open a terminal in vscode and select the virtual environment set up above as python interpreter. Then run the following command to analyse the data: +```python3 analyse_motor_rpm.py``` + +The script will print the parameters that it estimated and will also update them in the model ```.txt```. All that is left to do it to copy the identified ```C_v``` to ```speed_to_erpm_gain``` in the ```vesc.yaml``` for the car. + +## Steering Angle to Servo Position [SHOULD NOT BE REQUIRED] + +The parameters that are affected by this are found in +```f1tenth_system/racecar/racecar/config//vesc.yaml```. We need to set + +``` +steering_angle_to_servo_gain: # e.g. -0.8390 +steering_angle_to_servo_offset: # e.g. 0.405 +``` + +This mapping should already be identified correctly. This can be checked by doing the following: + +### Driving Straight + +1. Launch the base system with the correct racecar version +```roslaunch racecar pbl_teleop.launch racecar_version:=NUC4 ``` + +2. Drive straight + 2.1 If the car drives to the right: decrease ```steering_angle_to_servo_offset``` + 2.2 If the car drive to the left: increase ```steering_angle_to_servo_offset``` + 2.3 There is always some small error due to servo deadzones. + 2.4 This can also be done by tightening os loosening the steering links on the car + +3. Repeat Step 2 until satisfied + +After finding the correct offset, and setting it in the ```vesc.yaml``` file, navigate to the ```system_identification/id_analyser/models/``` folder. In the two model files you find in there, set ```C_0d``` to the ```steering_angle_to_servo_offset``` you just identified. + +### Steering Angle Gain + +In the ```system_identification/id_analyser/models//_linear.txt``` file you will find a parameter called ```l_wb```, this is the wheelbase of the car. Assuming ackermann steering, we can estimate how large a driven circle should be given a certain steering angle. The formula is: +```Circle_Radius = Wheelbase / tan(Steering_Angle)``` + +You can command a constant steering angle using the ```id controller```. Navigate to ```system_identification/ic_controller/parameters``` and open ```experiments.yaml```. We will only use experiment number ```5```, in which the car drives with a constant speed defined by the ```const_speed``` parameter and changes the steering angle from ```start_angle``` to ```end_angle``` over the time ```angle_time```. From previous tests we know that the maximum steering angle is around +-0.4. + +By setting the start and end angles to the same value the car will drive with a constant steering angle and speed for angle_time duration. + +To test if the steering to servo position gain is correct do the following: +1. Set the const_speed to 1.5, set the start and end angles to 0.1 -> Car will drive a left hand circle +2. Calculate the circle radius the car should drive at with a steering angle of 0.1. +3. Measure out a circle with with radius and mark the start position of the car and where it should drive through +4. Start the base system like above +```roslaunch racecar pbl_teleop.launch racecar_version:=NUC2 ``` +5. Start the id_controller with ```roslaunch id_controller id_controller.launch experiment:=5``` +6. Hold the top right button on the remote to make the car follow the commands from the id controller. +7. Check if the radius of the driven circle matches the marked positions: + 7.1 If the Radius was too big, increase the ```steering_angle_to_servo_gain``` (more negative, e.g. -0.8 -> -0.85) + 7.2 If the Radius was too small, decrease the ```steering_angle_to_servo_gain``` (less negative, e.g. -0.8 -> -0.75) + +8. Repeat above steps until it drives the circle like you would want it to. Also try out with a negative steering angle: -0.1 -> Car will drive a righthand circle + +9. If, after this procedure, you changed the parameters in the `vesc.yaml` file, change them in the corresponding models of the car. You will find the two files in the following position: +- `race_stack/system_identification/id_analyser/models//_linear.txt` +- `race_stack/system_identification/id_analyser/models//_pacejka.txt` +`steering_angle_to_servo_gain` corresponds to `C_d` and `steering_angle_to_servo_offset` corresponds to `C_0d`. + + +### Data-driven Identification of Steering Angle Parameters + +To do this, we need to generate data first. For this: +1. In a terminal navigate to ```~/catkin-ws/src/race_stack/system_identification/id_anaylser``` and if it doesn't exist yet, make the folders ```data//steering_angle```. +2. Go into the ```steering_angle``` folder you just created and prepare the command to record a rosbag: ```rosbag record -a -x "scan"``` +3. In another terminal, start the base system: ```roslaunch racecar pbl_teleop.launch racecar_version:= se_version:=new``` +4. Manually drive a circle driving at a constant speed and steering angle, record rosbag as soon as you reach a steady state and stop rosbag before you stop driving / change steering angle. +5. Repeat step 4. a few times, driving circles with different radii, recording a new rosbag each time. + +To analye the data, navigate to the ```~/catkin_ws/src/race_stack/system_identification/id_analyser``` folder and open ```analyse_steering.py```. Set ```model_name_``` to the model that you want to edit. The models are located in the ```models``` subdirectory. + +Open a terminal in vscode and select the virtual environment set up above as python interpreter. Then run the following command to analyse the data: +```python3 analyse_steering.py``` + +The script will print the parameters that it estimated and will also update them in the model ```.txt```. All that is left to do it to copy the identified ```C_0d``` to ```steering_angle_to_servo_offset``` and ```C_d``` to ```steering_angle_to_servo_gain``` in the ```vesc.yaml``` for the car. + +## Acceleration to Current Gain [SHOULD NOT BE REQUIRED] +This is only needed when controlling the cars acceleration directly and not through the VESC + +0. Make a new folder ```~/catkin_ws/src/race_stack/system_identification/id_analyser/data//accel```, record subsequent bags in that folder +1. Start the Base system: ```roslaunch racecar pbl_teleop.launch racecar_version:= se_version:=new``` and make sure that you have at least 20m of free space in front of the car. +2. Set the experiment parameters in ```~/catkin_ws/src/race_stack/system_identification/id_controller/parameters/experiments.yaml```: + 1. const_accel = 2, const_decel = 2 + 2. const_accel = 4, const_decel = 4 + 3. const_accel = 6, const_decel = 6 +3. In another terminal open the data folder you just made and prepare for recording a rosbag. +``` +rosbag record -a -x "scan" +``` +4. Start the experiment with +``` +roslaunch id_controller id_controller.launch experiment:=3 +``` +5. Immediately start the rosbag +6. Hold the button on the remote to make the car drive + +7. The terminal with the experiment will notice you when the experiment is over: "Experiment over", so stop the rosbag +8. Repeat 2 - 7 with all different settings in step 2. +9. Open ```~/catkin_ws/src/race_stack/system_identification/id_analyser/analyse_accel.py```and change the model name to the one that you are working on (e.g. NUC2_pacejka) +10. Run the script: +``` +source .venv/bin/activate +python3 analyse_tires.py +``` +11. Do the same with +```~/catkin_ws/src/race_stack/system_identification/id_analyser/analyse_decel.py``` + +12. In ```~/catkin_ws/src/race_stack/system_identification/id_analyser/models/NUCX/NUCX_pacejka.txt``` look at the parameters C_acc, C_dec and C_R + +13. In ```~/catkin_ws/src/race_stack/base_system/f1tenth_system/racecar/racecar/config/NUCX/vesc.yaml```, input the found parameters in the following way: + + acceleration_to_current_gain: C_acc + + deceleration_to_current_gain: C_dec + + velocity_to_current_gain: C_R + +14. Verify the parameters by setting the parameters to +``` + const_accel = 2, const_decel = 2 +``` +and launching ``` roslaunch id_controller id_controller.launch experiment:=3 ``` again. Measure out a 6m long straight and measure the time it takes to drive across from standing still. Calculate the acceleration by $a = 2* distance/t²$. Adjust Accel and Decel Gain if needed. + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/TimeTrials.md b/stack_master/checklists/TimeTrials.md new file mode 100644 index 0000000..f7fca79 --- /dev/null +++ b/stack_master/checklists/TimeTrials.md @@ -0,0 +1,49 @@ +# Checklist for Time Trials + +## Jobs + +- Pilot: +- Mission Control: +- Orbiters: + +## Precheck +0. Use a fully charged battery and turn on the car +1. Check all walkie-talkie batteries +2. Check if you are in the correct branch (`master`) on the car. +3. `catkin build` and `sauce` +4. No wires in the way, battery is firmly positioned with tape +5. Wheel nuts tightened and pin checked +6. Walkie-Talkie connection is established between mission control [Localization_MissionControl] and [Pilot]. +7. Make sure [Pilot] knows the normal and overtaking sectors of the track, as well as the raceline +8. [Orbiters] are equidistant along the track +9. [MissionControl] prep a clock to countdown the time remaining + +## First Heat +0. Launch `roscore` and `base_system` on the car +1. Locally, launch `pit_rvizX` and `pitX rqt`. +2. [MissionControl] Check all `rqt` dynamic reconfigure parameters are good. +3. Launch time trials: + + ```bash + roslaunch stack_master time_trials.launch racecar_version:= LU_table:= + ``` +4. [MisisonControl] Check if localization is good. If needed, correct the position either telling the [Pilot] to localize or with the pose estimation button in RViz. +5. When all MissionControl parameters are OK, [Localization_MissionControl] gives a thumbs-up. When [Pilot] sees this, start autonomous driving. +6. Ready check: "pit ready" --> "orbiter ready" --> "driver ready" + +## Second Heat +0. Decide a strategy, if needed. +1. Replace the battery and ensure it is secured. +2. Repeat [the checklist above](#first-heat). + +## Procedure in case of a Crash + +0. The two closest [Orbiters] run to the crash site. +1. One student raises the barriers while the [Driver] drives the car back onto the track. +2. [Driver] drives manually around the track while the barriers are repaired. +3. When localization is ready, [Localization_MissionControl] informs the [Driver]. +4. The driver must return to the position of the crash. +5. When the driver receives the signal from the referees, resume autonomous driving. + +--- +[Go back to the checklist index](./README.md) \ No newline at end of file diff --git a/stack_master/checklists/img/ellipse.png b/stack_master/checklists/img/ellipse.png new file mode 100644 index 0000000..7fa9fdf Binary files /dev/null and b/stack_master/checklists/img/ellipse.png differ diff --git a/stack_master/checklists/img/l1_dist.png b/stack_master/checklists/img/l1_dist.png new file mode 100644 index 0000000..e4888e5 Binary files /dev/null and b/stack_master/checklists/img/l1_dist.png differ diff --git a/stack_master/checklists/img/speed_scaling.png b/stack_master/checklists/img/speed_scaling.png new file mode 100644 index 0000000..cb4e5ea Binary files /dev/null and b/stack_master/checklists/img/speed_scaling.png differ diff --git a/stack_master/checklists/networking.md b/stack_master/checklists/networking.md new file mode 100644 index 0000000..fab4ec9 --- /dev/null +++ b/stack_master/checklists/networking.md @@ -0,0 +1,60 @@ +## Instructions + + +**Note**: Throughout this README, NUC2 refers to a generic physical car. + +### Car connection + +The WAN can then be used to connect to the car. For instance, to connect to NUC2: +`ssh @` + +NOTE: +It only works if the car is on. + +### SSH connections - basic info + +To connect to the car you will use the Secure Shell Protocol (SSH) with the homonym UNIX command `ssh`. +It will create a secure and encrypted connection to the machine. + +To automatically login into the selected host, you can copy one of your public ssh keys with the single-liner: + + ssh-copy-id -i @ +For instance, if you created the ssh key in the default location and you want to automatically authenticate to the user `` in NUC2, you should use the following command: + + ssh-copy-id -i ~/.ssh/id_rsa.pub @ +After this, running the command `ssh @` will automatically login into the user without the need of a password. + +### X11 forwarding +The X Window System (X11, or simply X) is the windowing system that basically create and manages the graphical interfaces on most Ubuntu installations. +For the work on F1TENTH, we will need to forward X from the car onto the PC you are using, as it is needed for mapping. +Doing that is very simple, as it only consists in adding the flag `-X` to the `ssh` command. Adding the additional flag `-C` for compression is suggested: + + ssh -XC @ + +### SSH and VSCode +VSCode provides you with very easy integration with ssh connections. +If you want to access the filesystem of the car with VSCode, so to be able to modify the files on the car with the capabilities of VSCode, you'll first need to install the Remote-SSH extension, with the extensions window. +Then a green symbol will appear in the lower left corner. You can click that to start an ssh connection to a specified server. +You can also save preferred hosts by clicking on `Open SSH Configuration File...` and then saving the hosts in a way similar to this: + + Host racecrew@NUC2 + ForwardX11 yes + Compression yes + HostName + User + + ... + +After saving such a config file, you can also run `ssh racecrew@NUC2` and it will connect you to the car with the specified settings (e.g. X11 forwarding enabled) + +### Bash Aliases +You can add the following to your bash configuration file for convenience. There are also other aliases for Pit Starter convenience, take a look on the [Pit Usage Guide](./PitUsage.md). +```bash +# aliases to get into cars faster +alias sshnuc2="ssh -XC @" +alias sshnuc3="ssh -XC @" +... +``` + +--- +[Go back to the checklists index](./README.md) \ No newline at end of file diff --git a/stack_master/config/BayesOpt_MAP/MAP_EI.yaml b/stack_master/config/BayesOpt_MAP/MAP_EI.yaml new file mode 100644 index 0000000..e23a60f --- /dev/null +++ b/stack_master/config/BayesOpt_MAP/MAP_EI.yaml @@ -0,0 +1,15 @@ +acq_func: EI +experiment_name: MAP_tuning +input_dim: 3 +log_dir: /home/gnone/catkin_ws/logs +lower_bound: +- 0.6 +- 0.3 +- -0.2 +max_iter: 20 +maximize: false +n_init: 1 +upper_bound: +- 0.9 +- 0.6 +- -0.1 diff --git a/stack_master/config/JET1/high_level_mux.yaml b/stack_master/config/JET1/high_level_mux.yaml new file mode 100644 index 0000000..e422db0 --- /dev/null +++ b/stack_master/config/JET1/high_level_mux.yaml @@ -0,0 +1,38 @@ +# Individual subscriber configuration: +# name: Source name +# topic: The topic that provides ackermann_cmd messages +# timeout: Time in seconds without incoming messages to consider this topic inactive +# priority: Priority: an UNIQUE unsigned integer from 0 (lowest) to MAX_INT +# short_desc: Short description (optional) + +subscribers: + - name: "Nav_0" + topic: "input/nav_0" + timeout: 0.2 + priority: 20 + short_desc: "Input for autonomous navigation, highest priority" + + - name: "Nav_1" + topic: "input/nav_1" + timeout: 0.2 + priority: 15 + short_desc: "Input for autonomous navigation" + + - name: "Nav_2" + topic: "input/nav_2" + timeout: 0.2 + priority: 10 + short_desc: "Input for autonomous navigation" + + - name: "Nav_3" + topic: "input/nav_3" + timeout: 0.2 + priority: 5 + short_desc: "Input for autonomous navigation" + + - name: "Default" + topic: "input/default" + timeout: 1.0 + priority: 0 + short_desc: "Default input, lowest priority" +publisher: "output" \ No newline at end of file diff --git a/stack_master/config/JET1/joy_teleop.launch.xml b/stack_master/config/JET1/joy_teleop.launch.xml new file mode 100644 index 0000000..41bbca9 --- /dev/null +++ b/stack_master/config/JET1/joy_teleop.launch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/stack_master/config/JET1/joy_teleop.yaml b/stack_master/config/JET1/joy_teleop.yaml new file mode 100644 index 0000000..bdb15fb --- /dev/null +++ b/stack_master/config/JET1/joy_teleop.yaml @@ -0,0 +1,51 @@ +joy_node: + dev: /dev/input/js0 + deadzone: 0.3 + autorepeat_rate: 20 + coalesce_interval: 0.01 + +teleop: + # Default mode - Stop for safety + default: + type: topic + is_default: true + message_type: ackermann_msgs/AckermannDriveStamped + topic_name: low_level/ackermann_cmd_mux/input/teleop + message_value: + - + target: drive.speed + value: 0.0 + - + target: drive.steering_angle + value: 0.0 + + # Enable Human control by holding Left Bumper + human_control: + type: topic + message_type: ackermann_msgs/AckermannDriveStamped + topic_name: low_level/ackermann_cmd_mux/input/teleop + deadman_buttons: [4] + axis_mappings: + - + axis: 1 + target: drive.speed + scale: 3.0 # joystick will command plus or minus 2 meters / second + offset: 0.0 + - + axis: 2 + target: drive.steering_angle + scale: 0.34 # joystick will command plus or minus ~20 degrees steering angle + offset: 0.0 + + # Enable autonomous control by pressing right bumper + # This switch causes the joy_teleop to stop sending messages to input/teleop + # And send messages to /dev/null (an unused ROS topic) + autonomous_control: + type: topic + message_type: std_msgs/Int8 + topic_name: /dev/null + deadman_buttons: [5] + message_value: + - + target: data + value: 0 diff --git a/stack_master/config/JET1/low_level_mux.yaml b/stack_master/config/JET1/low_level_mux.yaml new file mode 100644 index 0000000..443b98c --- /dev/null +++ b/stack_master/config/JET1/low_level_mux.yaml @@ -0,0 +1,27 @@ +# Individual subscriber configuration: +# name: Source name +# topic: The topic that provides ackermann_cmd messages +# timeout: Time in seconds without incoming messages to consider this topic inactive +# priority: Priority: an UNIQUE unsigned integer from 0 (lowest) to MAX_INT +# short_desc: Short description (optional) + +subscribers: + - name: "Teleoperation" + topic: "input/teleop" + timeout: 0.2 + priority: 10 + short_desc: "Input for human teleoperation (joystick). Highest priority." + + - name: "Safety" + topic: "input/safety" + timeout: 0.2 + priority: 5 + short_desc: "Input for safety monitor." + + - name: "Navigation" + topic: "input/navigation" + timeout: 0.2 + priority: 0 + short_desc: "Input for autonomous navigation" + +publisher: "output" \ No newline at end of file diff --git a/stack_master/config/JET1/sensors.launch.xml b/stack_master/config/JET1/sensors.launch.xml new file mode 100644 index 0000000..e0e808f --- /dev/null +++ b/stack_master/config/JET1/sensors.launch.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/sensors.yaml b/stack_master/config/JET1/sensors.yaml new file mode 100644 index 0000000..0f66edf --- /dev/null +++ b/stack_master/config/JET1/sensors.yaml @@ -0,0 +1,7 @@ + +laser_node: + ip_address: 192.168.0.10 + device: /dev/sensors/hokuyo + +imu_node: + device: /dev/imu diff --git a/stack_master/config/JET1/slam/f110_2d.lua b/stack_master/config/JET1/slam/f110_2d.lua new file mode 100644 index 0000000..e751cf0 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_2d.lua @@ -0,0 +1,52 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 3.0 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.1 + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 100 +POSE_GRAPH.optimize_every_n_nodes = 20 + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0 +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0 + +return options diff --git a/stack_master/config/JET1/slam/f110_2d_loc.lua b/stack_master/config/JET1/slam/f110_2d_loc.lua new file mode 100644 index 0000000..8f2c6a1 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_2d_loc.lua @@ -0,0 +1,60 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 4.0 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.05 +TRAJECTORY_BUILDER.pure_localization_trimmer = { + max_submaps_to_keep = 5, +} + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 80 +POSE_GRAPH.optimize_every_n_nodes = 5 +POSE_GRAPH.global_sampling_ratio = 0.05 +POSE_GRAPH.constraint_builder.sampling_ratio = 0.05 + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0 +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0 +--POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight = 1.25 * POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight + + +return options + diff --git a/stack_master/config/JET1/slam/f110_description/CMakeLists.txt b/stack_master/config/JET1/slam/f110_description/CMakeLists.txt new file mode 100755 index 0000000..1ef2615 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/CMakeLists.txt @@ -0,0 +1,181 @@ +cmake_minimum_required(VERSION 2.8.3) +project(f110_description) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a run_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a run_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if you package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES racecar_description +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +# include_directories(include) + +## Declare a C++ library +# add_library(racecar_description +# src/${PROJECT_NAME}/racecar_description.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(racecar_description ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +# add_executable(racecar_description_node src/racecar_description_node.cpp) + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(racecar_description_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(racecar_description_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS racecar_description racecar_description_node +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_racecar_description.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/stack_master/config/JET1/slam/f110_description/meshes/chassis.STL b/stack_master/config/JET1/slam/f110_description/meshes/chassis.STL new file mode 100755 index 0000000..08b269e Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/chassis.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/chassis.dae b/stack_master/config/JET1/slam/f110_description/meshes/chassis.dae new file mode 100755 index 0000000..0ac16c7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/chassis.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:50:44 2016 GMT + Tue Jan 19 19:50:44 2016 GMT + Y_UP + + + + + + -0.0384776 -0.0776537 0.03 -0.0276537 0.0884776 0.03 0.255 -0.07 0.03 0.242654 -0.0884776 0.03 0.363478 0.0476537 0.03 0.249142 0.0841421 0.03 0.242654 0.0884776 0.03 0.345 0.06 0.03 0.255 -0.06 0.03 0.345 -0.06 0.03 0.352654 -0.0584776 0.03 0.352654 -0.0584776 -0.03 0.345 -0.06 -0.03 0.363478 0.0476537 -0.03 -0.02 0.09 -0.03 0.255 -0.06 -0.03 -0.0384776 0.0776537 -0.03 -0.04 0.07 -0.03 0.242654 0.0884776 -0.03 0.359142 0.0541421 -0.03 0.352654 0.0584776 -0.03 0.235 -0.09 -0.03 0.253478 -0.0776537 -0.03 0.242654 -0.0884776 -0.03 -0.0341421 -0.0841421 -0.03 -0.0384776 -0.0776537 -0.03 -0.04 -0.07 -0.03 -0.02 -0.09 -0.03 0.255 0.06 -0.03 0.255 0.07 -0.03 0.235 0.09 -0.03 0.253478 0.0776537 -0.03 0.345 0.06 -0.03 -0.005 -0.09 0 -0.00433013 -0.09 0.0025 -0.02 -0.09 0.03 0 -0.09 0.005 0.0025 -0.09 0.00433013 0.235 -0.09 0.03 0.005 -0.09 0 0.00433013 -0.09 -0.0025 0.0025 -0.09 -0.00433013 0.365 0.04 -0.03 -0.04 0.07 0.03 -0.00433013 0.09 -0.0025 -0.005 0.09 6.93889e-18 -0.00433013 0.09 0.0025 0 0.09 -0.005 0.235 0.09 0.03 -0.02 0.09 0.03 0.0025 0.09 0.00433013 0 0.09 0.005 0.0025 0.09 -0.00433013 0.00433013 0.09 -0.0025 0.005 0.09 0 0.00433013 0.09 0.0025 0.32 0.06 3.46945e-18 0.3275 0.06 -0.00433013 0.33 0.06 0 0.255 0.06 0.03 0.32067 0.06 0.0025 0.32067 0.06 -0.0025 0.325 0.06 -0.005 0.33 -0.06 0 0.32933 -0.06 0.0025 0.32 -0.06 0 0.32067 -0.06 0.0025 0.3225 -0.06 0.00433013 0.3275 -0.06 0.00433013 0.325 -0.06 -0.005 -0.0384776 0.0776537 0.03 -0.0341421 0.0841421 0.03 -0.0341421 0.0841421 -0.03 -0.0276537 0.0884776 -0.03 -0.04 -0.07 0.03 -0.0341421 -0.0841421 0.03 -0.0276537 -0.0884776 -0.03 -0.0276537 -0.0884776 0.03 0.249142 -0.0841421 -0.03 0.249142 -0.0841421 0.03 0.253478 -0.0776537 0.03 0.255 -0.07 -0.03 0.359142 -0.0541421 0.03 0.359142 -0.0541421 -0.03 0.363478 -0.0476537 -0.03 0.363478 -0.0476537 0.03 0.365 -0.04 -0.03 0.365 -0.04 0.03 0.352654 0.0584776 0.03 0.359142 0.0541421 0.03 0.365 0.04 0.03 0.255 0.07 0.03 0.253478 0.0776537 0.03 0.249142 0.0841421 -0.03 -0.00433013 0.1 0.0025 6.12323e-19 0.1 0.005 0.0025 0.1 0.00433013 -0.00433013 0.1 -0.0025 0.00433013 0.1 -0.0025 0.0025 0.1 -0.00433013 0.00433013 0.1 0.0025 0 0.1 0 0.005 0.1 -1.41638e-18 0.005 0.09 -1.41638e-18 2.83277e-18 0.09 0.005 2.83277e-18 0.1 0.005 -0.0025 0.1 0.00433013 -0.0025 0.09 0.00433013 -0.005 0.1 5.35938e-18 -0.005 0.09 5.35938e-18 -0.0025 0.1 -0.00433013 -0.0025 0.09 -0.00433013 0 0.1 -0.005 0.0025 -0.1 -0.00433013 0.00433013 -0.1 -0.0025 0.005 -0.09 -1.41638e-18 0.00433013 -0.09 0.0025 0.0025 -0.1 0.00433013 2.83277e-18 -0.09 0.005 2.83277e-18 -0.1 0.005 -0.0025 -0.09 0.00433013 -0.005 -0.09 5.35938e-18 -0.00433013 -0.09 -0.0025 -0.005 -0.1 5.35938e-18 -0.0025 -0.09 -0.00433013 0 -0.09 -0.005 1.83697e-18 -0.1 0.005 -0.0025 -0.1 0.00433013 0.005 -0.1 -1.41638e-18 0 -0.1 0 0.00433013 -0.1 0.0025 -0.00433013 -0.1 -0.0025 -0.0025 -0.1 -0.00433013 0 -0.1 -0.005 -0.00433013 -0.1 0.0025 0.3275 -0.1 0.00433013 0.3275 -0.1 -0.00433013 0.32933 -0.1 0.0025 0.3225 -0.1 -0.00433013 0.325 -0.1 0 0.32067 -0.1 0.0025 0.32 -0.1 5.35938e-18 0.3275 -0.06 -0.00433013 0.32933 -0.06 -0.0025 0.32933 -0.1 -0.0025 0.33 -0.06 -1.41638e-18 0.33 -0.1 -1.41638e-18 0.325 -0.06 0.005 0.325 -0.1 0.005 0.3225 -0.1 0.00433013 0.32 -0.06 5.35938e-18 0.32067 -0.06 -0.0025 0.3225 -0.06 -0.00433013 0.32067 -0.1 -0.0025 0.325 -0.1 -0.005 0.32933 0.06 -0.0025 0.33 0.06 -1.41638e-18 0.32933 0.06 0.0025 0.32933 0.1 0.0025 0.3275 0.1 0.00433013 0.3275 0.06 0.00433013 0.325 0.06 0.005 0.3225 0.1 0.00433013 0.3225 0.06 0.00433013 0.32 0.06 5.35938e-18 0.32067 0.1 -0.0025 0.3225 0.06 -0.00433013 0.3225 0.1 -0.00433013 0.3275 0.1 -0.00433013 0.325 0.1 0.005 0.325 0.1 0 0.32 0.1 5.35938e-18 0.32067 0.1 0.0025 0.32933 0.1 -0.0025 0.325 0.1 -0.005 0.33 0.1 -1.41638e-18 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.980785 0.19509 0 -0.980785 0.19509 0 -0.83147 0.55557 0 -0.83147 0.55557 0 -0.55557 0.83147 0 -0.55557 0.83147 0 -0.195091 0.980785 0 -0.195091 0.980785 0 -0.980785 -0.19509 0 -0.980785 -0.19509 0 -0.83147 -0.55557 0 -0.83147 -0.55557 0 -0.55557 -0.83147 0 -0.55557 -0.83147 0 -0.195091 -0.980785 0 -0.195091 -0.980785 0 0.195091 -0.980785 0 0.195091 -0.980785 0 0.55557 -0.83147 0 0.55557 -0.83147 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980786 -0.195088 0 0.980786 -0.195088 0 0.19509 -0.980785 0 0.19509 -0.980785 0 0.555572 -0.831469 0 0.555572 -0.831469 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980785 -0.195092 0 0.980785 -0.195092 0 0.19509 0.980785 0 0.19509 0.980785 0 0.555572 0.831469 0 0.555572 0.831469 0 0.831469 0.555571 0 0.831469 0.555571 0 0.980785 0.195092 0 0.980785 0.195092 0 0.980786 0.195088 0 0.980786 0.195088 0 0.831469 0.555571 0 0.831469 0.555571 0 0.55557 0.83147 0 0.55557 0.83147 0 0.195091 0.980785 0 0.195091 0.980785 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 + + + + + + + + + + + + + + + + +

79 79 0 80 80 0 2 2 0 74 74 1 2 2 1 43 43 1 43 43 2 2 2 2 8 8 2 87 87 3 90 90 3 7 7 3 74 74 4 0 0 4 75 75 4 79 79 5 2 2 5 3 3 5 70 70 6 43 43 6 71 71 6 71 71 7 43 43 7 8 8 7 71 71 8 8 8 8 1 1 8 1 1 9 8 8 9 49 49 9 75 75 10 77 77 10 74 74 10 74 74 11 77 77 11 35 35 11 74 74 12 35 35 12 2 2 12 2 2 13 35 35 13 38 38 13 2 2 14 38 38 14 3 3 14 88 88 15 7 7 15 89 89 15 89 89 16 7 7 16 90 90 16 89 89 17 90 90 17 4 4 17 5 5 18 6 6 18 92 92 18 92 92 19 6 6 19 48 48 19 92 92 20 48 48 20 91 91 20 91 91 21 48 48 21 49 49 21 91 91 22 49 49 22 59 59 22 59 59 23 49 49 23 8 8 23 59 59 24 8 8 24 7 7 24 7 7 25 8 8 25 9 9 25 7 7 26 9 9 26 87 87 26 87 87 27 9 9 27 10 10 27 87 87 28 10 10 28 85 85 28 85 85 29 10 10 29 82 82 29 83 83 30 11 11 30 12 12 30 28 28 31 32 32 31 12 12 31 19 19 32 13 13 32 42 42 32 81 81 33 21 21 33 15 15 33 15 15 34 21 21 34 26 26 34 15 15 35 26 26 35 17 17 35 73 73 36 14 14 36 72 72 36 72 72 37 14 14 37 15 15 37 72 72 38 15 15 38 16 16 38 16 16 39 15 15 39 17 17 39 30 30 40 18 18 40 93 93 40 19 19 41 42 42 41 20 20 41 81 81 42 22 22 42 21 21 42 21 21 43 22 22 43 78 78 43 21 21 44 78 78 44 23 23 44 24 24 45 25 25 45 76 76 45 76 76 46 25 25 46 26 26 46 76 76 47 26 26 47 27 27 47 27 27 48 26 26 48 21 21 48 12 12 49 15 15 49 28 28 49 28 28 50 15 15 50 14 14 50 28 28 51 14 14 51 29 29 51 29 29 52 14 14 52 30 30 52 29 29 53 30 30 53 31 31 53 31 31 54 30 30 54 93 93 54 84 84 55 83 83 55 86 86 55 86 86 56 83 83 56 12 12 56 86 86 57 12 12 57 42 42 57 42 42 58 12 12 58 32 32 58 42 42 59 32 32 59 20 20 59 21 21 60 41 41 60 27 27 60 27 27 61 41 41 61 125 125 61 27 27 62 125 125 62 124 124 62 124 124 63 122 122 63 27 27 63 27 27 64 122 122 64 33 33 64 27 27 65 33 33 65 35 35 65 35 35 66 33 33 66 34 34 66 34 34 67 120 120 67 35 35 67 35 35 68 120 120 68 36 36 68 35 35 69 36 36 69 38 38 69 38 38 70 36 36 70 37 37 70 37 37 71 116 116 71 38 38 71 38 38 72 116 116 72 39 39 72 38 38 73 39 39 73 21 21 73 21 21 74 39 39 74 40 40 74 21 21 75 40 40 75 41 41 75 86 86 76 42 42 76 87 87 76 87 87 77 42 42 77 90 90 77 17 17 78 26 26 78 43 43 78 43 43 79 26 26 79 74 74 79 44 44 80 14 14 80 45 45 80 45 45 81 14 14 81 49 49 81 45 45 82 49 49 82 46 46 82 46 46 83 49 49 83 107 107 83 52 52 84 30 30 84 47 47 84 47 47 85 30 30 85 14 14 85 47 47 86 14 14 86 111 111 86 111 111 87 14 14 87 44 44 87 48 48 88 50 50 88 49 49 88 49 49 89 50 50 89 51 51 89 49 49 90 51 51 90 107 107 90 52 52 91 53 53 91 30 30 91 30 30 92 53 53 92 54 54 92 30 30 93 54 54 93 48 48 93 48 48 94 54 54 94 55 55 94 48 48 95 55 55 95 50 50 95 60 60 96 56 56 96 59 59 96 59 59 97 56 56 97 28 28 97 57 57 98 155 155 98 32 32 98 32 32 99 155 155 99 58 58 99 32 32 100 58 58 100 7 7 100 7 7 101 58 58 101 157 157 101 157 157 102 160 160 102 7 7 102 7 7 103 160 160 103 161 161 103 7 7 104 161 161 104 59 59 104 59 59 105 161 161 105 163 163 105 59 59 106 163 163 106 60 60 106 56 56 107 61 61 107 28 28 107 28 28 108 61 61 108 166 166 108 28 28 109 166 166 109 32 32 109 32 32 110 166 166 110 62 62 110 32 32 111 62 62 111 57 57 111 91 91 112 59 59 112 29 29 112 29 29 113 59 59 113 28 28 113 81 81 114 15 15 114 2 2 114 2 2 115 15 15 115 8 8 115 65 65 116 8 8 116 151 151 116 151 151 117 8 8 117 15 15 117 143 143 118 12 12 118 63 63 118 63 63 119 12 12 119 9 9 119 63 63 120 9 9 120 64 64 120 64 64 121 9 9 121 68 68 121 65 65 122 66 66 122 8 8 122 8 8 123 66 66 123 67 67 123 8 8 124 67 67 124 9 9 124 9 9 125 67 67 125 147 147 125 9 9 126 147 147 126 68 68 126 143 143 127 142 142 127 12 12 127 12 12 128 142 142 128 69 69 128 12 12 129 69 69 129 15 15 129 15 15 130 69 69 130 152 152 130 15 15 131 152 152 131 151 151 131 17 17 132 43 43 132 70 70 132 17 17 133 70 70 133 16 16 133 16 16 134 70 70 134 71 71 134 16 16 135 71 71 135 72 72 135 72 72 136 71 71 136 1 1 136 72 72 137 1 1 137 73 73 137 73 73 138 1 1 138 49 49 138 73 73 139 49 49 139 14 14 139 74 74 140 26 26 140 25 25 140 74 74 141 25 25 141 0 0 141 0 0 142 25 25 142 24 24 142 0 0 143 24 24 143 75 75 143 75 75 144 24 24 144 76 76 144 75 75 145 76 76 145 77 77 145 77 77 146 76 76 146 27 27 146 77 77 147 27 27 147 35 35 147 38 38 148 21 21 148 23 23 148 38 38 149 23 23 149 3 3 149 3 3 150 23 23 150 78 78 150 3 3 151 78 78 151 79 79 151 79 79 152 78 78 152 22 22 152 79 79 153 22 22 153 80 80 153 80 80 154 22 22 154 81 81 154 80 80 155 81 81 155 2 2 155 9 9 156 12 12 156 11 11 156 9 9 157 11 11 157 10 10 157 10 10 158 11 11 158 83 83 158 10 10 159 83 83 159 82 82 159 82 82 160 83 83 160 84 84 160 82 82 161 84 84 161 85 85 161 85 85 162 84 84 162 86 86 162 85 85 163 86 86 163 87 87 163 32 32 164 7 7 164 88 88 164 32 32 165 88 88 165 20 20 165 20 20 166 88 88 166 89 89 166 20 20 167 89 89 167 19 19 167 19 19 168 89 89 168 4 4 168 19 19 169 4 4 169 13 13 169 13 13 170 4 4 170 90 90 170 13 13 171 90 90 171 42 42 171 91 91 172 29 29 172 31 31 172 91 91 173 31 31 173 92 92 173 92 92 174 31 31 174 93 93 174 92 92 175 93 93 175 5 5 175 5 5 176 93 93 176 18 18 176 5 5 177 18 18 177 6 6 177 6 6 178 18 18 178 30 30 178 6 6 179 30 30 179 48 48 179 94 94 180 106 106 180 101 101 180 101 101 181 106 106 181 95 95 181 101 101 182 95 95 182 96 96 182 110 110 183 97 97 183 101 101 183 101 101 184 97 97 184 108 108 184 101 101 185 108 108 185 94 94 185 98 98 186 99 99 186 101 101 186 101 101 187 99 99 187 112 112 187 101 101 188 112 112 188 110 110 188 96 96 189 100 100 189 101 101 189 101 101 190 100 100 190 102 102 190 101 101 191 102 102 191 98 98 191 47 47 192 99 99 192 52 52 192 52 52 193 99 99 193 98 98 193 52 52 194 98 98 194 53 53 194 53 53 195 98 98 195 102 102 195 53 53 196 102 102 196 103 103 196 103 103 197 102 102 197 100 100 197 103 103 198 100 100 198 55 55 198 55 55 199 100 100 199 96 96 199 55 55 200 96 96 200 50 50 200 50 50 201 96 96 201 105 105 201 50 50 202 105 105 202 104 104 202 104 104 203 105 105 203 106 106 203 104 104 204 106 106 204 107 107 204 107 107 205 106 106 205 94 94 205 107 107 206 94 94 206 46 46 206 46 46 207 94 94 207 108 108 207 46 46 208 108 108 208 109 109 208 109 109 209 108 108 209 97 97 209 109 109 210 97 97 210 44 44 210 44 44 211 97 97 211 110 110 211 44 44 212 110 110 212 111 111 212 111 111 213 110 110 213 112 112 213 111 111 214 112 112 214 47 47 214 47 47 215 112 112 215 99 99 215 133 133 216 41 41 216 113 113 216 113 113 217 41 41 217 40 40 217 113 113 218 40 40 218 114 114 218 114 114 219 40 40 219 115 115 219 114 114 220 115 115 220 128 128 220 128 128 221 115 115 221 116 116 221 128 128 222 116 116 222 130 130 222 130 130 223 116 116 223 37 37 223 130 130 224 37 37 224 117 117 224 117 117 225 37 37 225 118 118 225 117 117 226 118 118 226 119 119 226 119 119 227 118 118 227 120 120 227 119 119 228 120 120 228 127 127 228 127 127 229 120 120 229 34 34 229 127 127 230 34 34 230 134 134 230 134 134 231 34 34 231 121 121 231 134 134 232 121 121 232 123 123 232 123 123 233 121 121 233 122 122 233 123 123 234 122 122 234 131 131 234 131 131 235 122 122 235 124 124 235 131 131 236 124 124 236 132 132 236 132 132 237 124 124 237 125 125 237 132 132 238 125 125 238 133 133 238 133 133 239 125 125 239 41 41 239 130 130 240 117 117 240 129 129 240 129 129 241 117 117 241 126 126 241 129 129 242 126 126 242 127 127 242 113 113 243 114 114 243 129 129 243 129 129 244 114 114 244 128 128 244 129 129 245 128 128 245 130 130 245 131 131 246 132 132 246 129 129 246 129 129 247 132 132 247 133 133 247 129 129 248 133 133 248 113 113 248 127 127 249 134 134 249 129 129 249 129 129 250 134 134 250 123 123 250 129 129 251 123 123 251 131 131 251 137 137 252 135 135 252 139 139 252 139 139 253 135 135 253 148 148 253 139 139 254 148 148 254 149 149 254 136 136 255 144 144 255 139 139 255 139 139 256 144 144 256 146 146 256 139 139 257 146 146 257 137 137 257 153 153 258 138 138 258 139 139 258 139 139 259 138 138 259 154 154 259 139 139 260 154 154 260 136 136 260 149 149 261 140 140 261 139 139 261 139 139 262 140 140 262 141 141 262 139 139 263 141 141 263 153 153 263 154 154 264 142 142 264 136 136 264 136 136 265 142 142 265 143 143 265 136 136 266 143 143 266 144 144 266 144 144 267 143 143 267 145 145 267 144 144 268 145 145 268 146 146 268 146 146 269 145 145 269 64 64 269 146 146 270 64 64 270 137 137 270 137 137 271 64 64 271 68 68 271 137 137 272 68 68 272 135 135 272 135 135 273 68 68 273 147 147 273 135 135 274 147 147 274 148 148 274 148 148 275 147 147 275 67 67 275 148 148 276 67 67 276 149 149 276 149 149 277 67 67 277 66 66 277 149 149 278 66 66 278 140 140 278 140 140 279 66 66 279 150 150 279 140 140 280 150 150 280 141 141 280 141 141 281 150 150 281 151 151 281 141 141 282 151 151 282 153 153 282 153 153 283 151 151 283 152 152 283 153 153 284 152 152 284 138 138 284 138 138 285 152 152 285 69 69 285 138 138 286 69 69 286 154 154 286 154 154 287 69 69 287 142 142 287 62 62 288 168 168 288 57 57 288 57 57 289 168 168 289 173 173 289 57 57 290 173 173 290 155 155 290 155 155 291 173 173 291 175 175 291 155 155 292 175 175 292 156 156 292 156 156 293 175 175 293 158 158 293 156 156 294 158 158 294 157 157 294 157 157 295 158 158 295 159 159 295 157 157 296 159 159 296 160 160 296 160 160 297 159 159 297 169 169 297 160 160 298 169 169 298 161 161 298 161 161 299 169 169 299 162 162 299 161 161 300 162 162 300 163 163 300 163 163 301 162 162 301 172 172 301 163 163 302 172 172 302 60 60 302 60 60 303 172 172 303 171 171 303 60 60 304 171 171 304 164 164 304 164 164 305 171 171 305 165 165 305 164 164 306 165 165 306 61 61 306 61 61 307 165 165 307 167 167 307 61 61 308 167 167 308 166 166 308 166 166 309 167 167 309 174 174 309 166 166 310 174 174 310 62 62 310 62 62 311 174 174 311 168 168 311 172 172 312 162 162 312 170 170 312 170 170 313 162 162 313 169 169 313 170 170 314 169 169 314 159 159 314 167 167 315 165 165 315 170 170 315 170 170 316 165 165 316 171 171 316 170 170 317 171 171 317 172 172 317 173 173 318 168 168 318 170 170 318 170 170 319 168 168 319 174 174 319 170 170 320 174 174 320 167 167 320 159 159 321 158 158 321 170 170 321 170 170 322 158 158 322 175 175 322 170 170 323 175 175 323 173 173 323

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/cone.dae b/stack_master/config/JET1/slam/f110_description/meshes/cone.dae new file mode 100755 index 0000000..7b0fa99 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/cone.dae @@ -0,0 +1,123 @@ + + + + + SketchUp 15.3.331 + + 2016-03-10T00:21:04Z + 2016-03-10T00:21:04Z + + Z_UP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.952756 2.952756 0 -2.952756 -2.952756 0 -2.952756 2.952756 0 2.952756 -2.952756 0 -2.952756 2.952756 0.1968504 2.952756 2.952756 0 -2.952756 2.952756 0 2.952756 2.952756 0.1968504 2.952756 2.952756 0 2.952756 -2.952756 0.1968504 2.952756 -2.952756 0 2.952756 2.952756 0.1968504 2.952756 -2.952756 0.1968504 -2.952756 -2.952756 0 2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0.1968504 -2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0 -2.952756 -2.952756 0.1968504 -2.362205 0 0.1968504 -2.952756 2.952756 0.1968504 -2.045729 -1.181102 0.1968504 -1.181102 -2.045729 0.1968504 4.440892e-016 -2.362205 0.1968504 2.952756 -2.952756 0.1968504 1.181102 -2.045729 0.1968504 2.045729 -1.181102 0.1968504 2.362205 4.440892e-016 0.1968504 0 2.362205 0.1968504 2.952756 2.952756 0.1968504 -1.181102 2.045729 0.1968504 -2.045729 1.181102 0.1968504 1.181102 2.045729 0.1968504 2.045729 1.181102 0.1968504 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23 23 20 24 24 20 25 25 20 26 25 26 27 27 26 28 28 26 29 22 30 31 30 22 32 32 22 33 33 22 21 31 30 34 31 34 35 31 35 29 31 29 26

+
+
+
+ + + + -2.045729 1.181102 0.1968504 -2.362205 0 0.1968504 0 0 6.692913 -2.045729 -1.181102 0.1968504 0 0 6.692913 -1.181102 2.045729 0.1968504 0 0 6.692913 0 0 6.692913 -1.181102 -2.045729 0.1968504 0 0 6.692913 0 2.362205 0.1968504 0 0 6.692913 4.440892e-016 -2.362205 0.1968504 0 0 6.692913 1.181102 2.045729 0.1968504 0 0 6.692913 1.181102 -2.045729 0.1968504 0 0 6.692913 2.045729 1.181102 0.1968504 0 0 6.692913 2.045729 -1.181102 0.1968504 0 0 6.692913 2.362205 4.440892e-016 0.1968504 0 0 6.692913 + + + + + + + + + + -0.813885 0.4698967 0.3417431 -0.9397934 -3.08962e-016 0.3417431 -0.9113426 0.2441935 0.3313973 -0.813885 -0.4698967 0.3417431 -0.9113426 -0.2441935 0.3313973 -0.4698967 0.813885 0.3417431 -0.6671491 0.6671491 0.3313973 -0.6671491 -0.6671491 0.3313973 -0.4698967 -0.813885 0.3417431 -0.2441935 0.9113426 0.3313973 -1.737911e-016 0.9397934 0.3417431 -0.2441935 -0.9113426 0.3313973 2.317215e-016 -0.9397934 0.3417431 0.2441935 0.9113426 0.3313973 0.4698967 0.813885 0.3417431 0.2441935 -0.9113426 0.3313973 0.4698967 -0.813885 0.3417431 0.6671491 0.6671491 0.3313973 0.813885 0.4698967 0.3417431 0.6671491 -0.6671491 0.3313973 0.813885 -0.4698967 0.3417431 0.9113426 0.2441935 0.3313973 0.9397934 -2.896519e-016 0.3417431 0.9113426 -0.2441935 0.3313973 + + + + + + + + + + + + + + +

0 1 2 1 3 4 5 0 6 7 3 8 9 10 5 11 8 12 13 14 10 15 12 16 17 18 14 19 16 20 18 21 22 22 23 20

+
+
+
+
+ + + + + + + + + + + + 0.7529412 0.3764706 0.0627451 1 + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/hokuyo.dae b/stack_master/config/JET1/slam/f110_description/meshes/hokuyo.dae new file mode 100755 index 0000000..bc65151 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/hokuyo.dae @@ -0,0 +1,253 @@ + + + + + Blender User + Blender 2.64.0 r51232 + + 2013-03-22T08:19:53 + 2013-03-22T08:19:53 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 0 + 1 + 1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 45 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.020312 0.020312 0.020312 1 + + + 0.25 0.25 0.25 1 + + + 12 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.695112 0.695112 0.695112 1 + + + 0.0625 0.0625 0.0625 1 + + + 0 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + + + + + + + + + -0.02213996 0.005949974 -0.004869997 -0.02213996 0.005949974 0.004869997 -0.02164 0.009949982 -0.004999995 -0.02164 0.009949982 -0.005999982 -0.02164 0.009949982 0.004999995 -0.02164 0.009949982 0.005999982 -0.02149999 0.009949982 -0.006499946 -0.02149999 0.009949982 0.006499946 -0.02113997 0.009949982 -0.006869971 -0.02113997 0.009949982 0.006869971 -0.02063995 0.005949974 0.006999969 -0.02063995 0.009949982 -0.006999969 -0.02063995 0.009949982 0.006999969 -0.01979994 0.009949982 -0.006999969 -0.01979994 0.005949974 -0.006999969 -0.01979994 0.005949974 0.006999969 -0.01979994 0.009949982 0.006999969 -0.01838999 0.005949974 0.01014 -0.02063995 0.005949974 -0.006999969 -0.02113997 0.005949974 0.006869971 -0.02113997 0.005949974 -0.006869971 -0.02149999 0.005949974 0.006499946 -0.02149999 0.005949974 -0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02164 0.005949974 -0.004999995 -0.02164 0.005949974 -0.005999982 -0.01920998 0.01990997 0.004999995 -0.01920998 0.01990997 -0.004999995 -0.005279958 0.02695 -0.01798999 -0.009719967 0.02695 -0.01595997 -0.01014 0.02695 -0.01576995 -0.01365 0.02695 -0.01273 -0.01416999 0.02695 -0.01227998 -0.01655995 0.02695 -0.008569955 -0.01705998 0.02695 -0.007789969 -0.01822996 0.02695 -0.003779947 -0.01855999 0.02695 -0.00266999 -0.01855999 0.02695 0.00127995 -0.01855999 0.02695 0.00266999 -0.01750999 0.02695 0.006229996 -0.01705998 0.02695 0.007789969 -0.01516997 0.02695 0.01071995 -0.01416999 0.02695 0.01227998 -0.01170998 0.02695 0.01440995 -0.01014 0.02695 0.01576995 -0.007389962 0.02695 0.01703 -0.005279958 0.02695 0.01798999 -0.002529978 0.02695 0.01838999 0 0.02695 0.01874995 0.002529978 0.02695 0.01838999 0.005279958 0.02695 0.01798999 0.007389962 0.02695 0.01703 0.01014 0.02695 0.01576995 0.01170998 0.02695 0.01440995 0.01416999 0.02695 0.01227998 0.01516997 0.02695 0.01071995 0.01705998 0.02695 0.007789969 0.01750999 0.02695 0.006229996 0.01855999 0.02695 0.00266999 0.01855999 0.02695 0.00127995 0.01855999 0.02695 -0.00266999 0.01822996 0.02695 -0.003779947 0.01705998 0.02695 -0.007789969 0.01655995 0.02695 -0.008569955 0.01416999 0.02695 -0.01227998 0.01365 0.02695 -0.01273 0.01014 0.02695 -0.01576995 0.009719967 0.02695 -0.01595997 0.005279958 0.02695 -0.01798999 0.005049943 0.02695 -0.01801997 -0.005049943 0.02695 -0.01801997 0 0.02695 -0.01874995 -0.01885998 0.02594995 0.001289963 -0.01850998 0.02594995 -0.003849983 -0.02039998 0.009949982 -0.004999995 -0.02039998 0.009949982 0.004999995 -0.01848 0.02594995 0.003999948 -0.01836997 0.02572995 0.004629969 -0.01840996 0.02588999 0.004329979 -0.01838999 0.02579998 0.004489958 -0.01835 0.02544999 0.004859983 -0.01838999 0.02494996 0.004999995 -0.01835995 0.02517998 0.004969954 -0.02164 0.02494996 0.004999995 -0.02164 0.02544999 0.004869997 -0.02188998 0.02537995 0.004869997 -0.02206999 0.02519994 0.004869997 -0.02213996 0.02494996 0.004869997 -0.02164 0.02581995 0.004499971 -0.02206999 0.02569997 0.004499971 -0.02238994 0.02537995 0.004499971 -0.02249997 0.02494996 0.004499971 -0.02164 0.02594995 0.003999948 -0.02213996 0.02581995 0.003999948 -0.02263998 0.02494996 0.003999948 -0.02249997 0.02544999 0.003999948 -0.02213996 0.02581995 -0.003999948 -0.02249997 0.02544999 -0.003999948 -0.02263998 0.02494996 -0.003999948 -0.02206999 0.02569997 -0.004499971 -0.02188998 0.02537995 -0.004869997 -0.02238994 0.02537995 -0.004499971 -0.02249997 0.02494996 -0.004499971 -0.02206999 0.02519994 -0.004869997 -0.02213996 0.02494996 -0.004869997 -0.01838999 0.02494996 -0.004999995 -0.02164 0.02494996 -0.004999995 -0.01835 0.02555996 -0.004789948 -0.01835995 0.02526998 -0.004949986 -0.01835 0.02543997 -0.00484997 -0.01836997 0.02577996 -0.004559993 -0.02164 0.02544999 -0.004869997 -0.02164 0.02581995 -0.004499971 -0.01848 0.02594995 -0.003999948 -0.02164 0.02594995 -0.003999948 -0.01841998 0.02590996 -0.004269957 -0.02001994 0.01871997 -0.004999995 -0.01986998 0.01879996 -0.004999995 -0.02025997 0.01844996 -0.004999995 -0.02039998 0.01794999 -0.004999995 -0.02037996 0.01813995 -0.004999995 -0.02039998 0.01794999 0.004999995 -0.02033996 0.01826995 0.004999995 -0.01993995 0.01877999 0.004999995 -0.01936 0.01894998 0.004999995 -0.01962 0.01892 0.004999995 -0.01879996 0.01894998 0.006679952 -0.01845997 0.01894998 0.007699966 -0.01936 0.01894998 -0.004999995 -0.01971 0.01888996 -0.004999995 -0.01845997 0.01894998 -0.007699966 -0.01668 0.01894998 -0.01102995 -0.01141995 0.01894998 -0.01641994 -7.8e-4 0.01894998 -0.01997995 0 0.01894998 -0.01993995 0.002989947 0.01894998 -0.01976996 0.01315999 0.01894998 -0.01505994 0.01454997 0.01894998 -0.01358997 0.01576 0.01894998 -0.01230996 0.01990997 0.01894998 0.001369953 0.01990997 0.01894998 -0.001889944 0.01919996 0.01894998 0.005609989 0.01779997 0.01894998 0.009119987 0.00792998 0.01894998 0.01826995 0.01008999 0.01894998 0.01726996 -0.007959961 0.01894998 0.01832997 -0.004529953 0.01894998 0.01947999 -0.01668 0.01894998 0.01102995 -0.01892 0.01881998 0.007889986 -0.02024996 0.01843994 0.004999995 -0.02017998 0.01855999 0.004999995 -0.00812 0.01894998 -0.01827996 0.006659984 0.01894998 -0.01885998 0.01576 0.01894998 0.01230996 0.002989947 0.01894998 0.01976996 0.002719998 0.01894998 0.01978999 -0.01141995 0.01894998 0.01641994 -0.01256996 0.01894998 0.01545 -0.01767998 0.01894998 -0.009159982 -0.01892 0.01881998 -0.007889986 -0.01937997 0.01794999 -0.008079946 -0.01830995 0.01794999 -0.01009994 -0.01925998 0.01844996 -0.008029997 -0.01458996 0.01894998 -0.01362997 -0.01709997 0.01881998 -0.01130998 -0.01750999 0.01794999 -0.01159 -0.0151 0.01794999 -0.01457995 -0.01739996 0.01844996 -0.01150995 -0.01431 0.01894998 -0.01397997 -0.01466 0.01881998 -0.01432996 -0.01501995 0.01794999 -0.01467996 -0.01491999 0.01844996 -0.01457995 -0.01034998 0.01894998 -0.01701998 -0.008319973 0.01881998 -0.01872998 -0.01169997 0.01881998 -0.01682996 -0.01198995 0.01794999 -0.01723998 -0.01190996 0.01844996 -0.01712995 -8.2e-4 0.01794999 -0.02098 -0.004759967 0.01794999 -0.02044999 -0.004729986 0.01844996 -0.02031999 -0.005689978 0.01794999 -0.02013999 -0.01073998 0.01794999 -0.01794999 -0.008529961 0.01794999 -0.01918995 -0.008469998 0.01844996 -0.01906996 -2.5e-4 0.01794999 -0.02094995 -8.2e-4 0.01844996 -0.02085 -8.1e-4 0.01881998 -0.02047997 -0.005379974 0.01894998 -0.01919996 -0.004649996 0.01881998 -0.01996999 -0.004529953 0.01894998 -0.01947999 0.005379974 0.01894998 -0.01917999 0.006829977 0.01881998 -0.01932996 0.003069996 0.01881998 -0.02026998 0.003139972 0.01794999 -0.02075999 0.003119945 0.01844996 -0.02063 0.01381999 0.01794999 -0.01580995 0.01059997 0.01794999 -0.01813 0.01052999 0.01844996 -0.01800996 0.01034998 0.01794999 -0.01824998 0.005209982 0.01794999 -0.02024996 0.006989955 0.01794999 -0.01979994 0.006949961 0.01844996 -0.01966995 0.01469999 0.01794999 -0.01488 0.01372998 0.01844996 -0.01570999 0.01348996 0.01881998 -0.01542997 0.01008999 0.01894998 -0.01726996 0.01034998 0.01881998 -0.01769995 0.01036995 0.01894998 -0.01705998 0.01774996 0.01894998 -0.009199976 0.01823997 0.01881998 -0.009349942 0.01615995 0.01881998 -0.01261997 0.01655 0.01794999 -0.01291996 0.01644998 0.01844996 -0.01283997 0.02090996 0.01794999 -0.00198996 0.02023994 0.01794999 -0.005469977 0.02002996 0.01844996 -0.005849957 0.02015995 0.01794999 -0.005889952 0.01807999 0.01794999 -0.01052999 0.01868999 0.01794999 -0.009579956 0.01857 0.01844996 -0.009519994 0.02090996 0.01794999 0 0.02076995 0.01844996 -0.001969993 0.02041 0.01881998 -0.001939952 0.01919996 0.01894998 -0.005609989 0.01967996 0.01881998 -0.00575 0.01949995 0.01894998 -0.004049956 0.01990997 0.01894998 0.001889944 0.02041 0.01881998 0.001939952 0.02090996 0.01794999 0.00198996 0.02023994 0.01794999 0.005469977 0.02076995 0.01844996 0.001969993 0.01876997 0.01894998 0.006669998 0.01967996 0.01881998 0.00575 0.02015995 0.01794999 0.005889952 0.02002996 0.01844996 0.005849957 0.01627999 0.01894998 0.0115 0.01615995 0.01881998 0.01261997 0.01823997 0.01881998 0.009349942 0.01868999 0.01794999 0.009579956 0.01857 0.01844996 0.009519994 0.01059997 0.01794999 0.01813 0.01381999 0.01794999 0.01580995 0.01372998 0.01844996 0.01570999 0.01469999 0.01794999 0.01488 0.01807999 0.01794999 0.01052999 0.01655 0.01794999 0.01291996 0.01644998 0.01844996 0.01283997 0.01034998 0.01794999 0.01824998 0.01052999 0.01844996 0.01800996 0.01034998 0.01881998 0.01769995 0.01315999 0.01894998 0.01505994 0.01348996 0.01881998 0.01542997 0.01258999 0.01894998 0.01546996 0.006659984 0.01894998 0.01885998 0.003069996 0.01881998 0.02026998 0.006829977 0.01881998 0.01932996 0.006989955 0.01794999 0.01979994 0.006949961 0.01844996 0.01966995 -0.004759967 0.01794999 0.02044999 -8.2e-4 0.01794999 0.02098 -8.2e-4 0.01844996 0.02085 -2.5e-4 0.01794999 0.02094995 0.005209982 0.01794999 0.02024996 0.003139972 0.01794999 0.02075999 0.003119945 0.01844996 0.02063 -0.005689978 0.01794999 0.02013999 -0.004729986 0.01844996 0.02031999 -0.004649996 0.01881998 0.01996999 -7.8e-4 0.01894998 0.01997995 -8.1e-4 0.01881998 0.02047997 -0.002709984 0.01894998 0.01972997 -0.00812 0.01894998 0.01827996 -0.01169997 0.01881998 0.01682996 -0.008319973 0.01881998 0.01872998 -0.008529961 0.01794999 0.01918995 -0.008469998 0.01844996 0.01906996 -0.01750999 0.01794999 0.01159 -0.0151 0.01794999 0.01457995 -0.01491999 0.01844996 0.01457995 -0.01501995 0.01794999 0.01467996 -0.01073998 0.01794999 0.01794999 -0.01198995 0.01794999 0.01723998 -0.01190996 0.01844996 0.01712995 -0.01937997 0.01794999 0.008079946 -0.01830995 0.01794999 0.01009994 -0.01925998 0.01844996 0.008029997 -0.01739996 0.01844996 0.01150995 -0.01709997 0.01881998 0.01130998 -0.01431 0.01894998 0.01397997 -0.01466 0.01881998 0.01432996 -0.01629996 0.01894998 0.0115 -0.01014 0.03504997 -0.01576995 -0.005279958 0.03504997 0.01798999 0 0.03504997 0.01874995 0.005279958 0.03504997 0.01798999 0.01014 0.03504997 0.01576995 0.01416999 0.03504997 0.01227998 0.01705998 0.03504997 0.007789969 0.01855999 0.03504997 0.00266999 0.01855999 0.03504997 -0.00266999 -0.01014 0.03504997 0.01576995 -0.01416999 0.03504997 0.01227998 -0.01705998 0.03504997 0.007789969 -0.01855999 0.03504997 0.00266999 -0.01855999 0.03504997 -0.00266999 -0.01705998 0.03504997 -0.007789969 -0.01416999 0.03504997 -0.01227998 -0.005279958 0.03504997 -0.01798999 0 0.03504997 -0.01874995 0.005279958 0.03504997 -0.01798999 0.01014 0.03504997 -0.01576995 0.01416999 0.03504997 -0.01227998 0.01705998 0.03504997 -0.007789969 0.001609981 0.03494995 -0.01717996 -0.003309965 0.03504997 -0.01692998 -0.003309965 0.03494995 -0.01692998 0.001759946 0.03494995 -0.01713997 0.001969993 0.03494995 -0.01708996 0.001609981 0.03504997 -0.01717996 0.004629969 0.03494995 -0.01644998 0.006399989 0.03494995 -0.01601999 0.007199943 0.03494995 -0.01555997 0.007989943 0.03494995 -0.0151 0.006399989 0.03504997 -0.01601999 0.009659945 0.03494995 -0.01413995 0.01066994 0.03494995 -0.01354998 0.01066994 0.03504997 -0.01354998 0.01512998 0.03494995 -0.007909953 0.01104998 0.03494995 -0.01314997 0.01406997 0.03504997 -0.009979963 0.01406997 0.03494995 -0.009979963 0.01695996 0.03494995 -0.002209961 0.01631999 0.03494995 -0.005589962 0.01631999 0.03504997 -0.005589962 0.01652997 0.03494995 -0.004479944 -0.007969975 0.03494995 -0.01529997 -0.007969975 0.03504997 -0.01529997 -0.009269952 0.03494995 -0.01454997 -0.01002997 0.03494995 0.01388996 -0.01088994 0.03494995 0.01314997 -0.01299995 0.03494995 0.01133996 -0.01299995 0.03504997 0.01133996 -0.01378995 0.03494995 0.01010996 -0.01567995 0.03494995 0.007189989 -0.01567995 0.03504997 0.007189989 -0.01626998 0.03494995 0.005199968 -0.01706999 0.03494995 0.002459943 -0.01706999 0.03494995 0.002019941 -0.01706999 0.03494995 9.7e-4 -0.01706999 0.03494995 6.9e-4 -0.01706999 0.03504997 0.002459943 -0.01706999 0.03494995 -0.002209961 -0.01706999 0.03494995 -0.002459943 -0.01706999 0.03504997 -0.002459943 -0.01647996 0.03494995 -0.004479944 -0.01567995 0.03494995 -0.007189989 -0.01567995 0.03504997 -0.007189989 -0.01521998 0.03494995 -0.007909953 -0.01299995 0.03504997 -0.01133996 -0.01299995 0.03494995 -0.01133996 -0.01002997 0.03494995 -0.01388996 -0.01088994 0.03494995 -0.01314997 -0.009269952 0.03504997 -0.01454997 -0.009269952 0.03494995 0.01454997 -0.009269952 0.03504997 0.01454997 0.01718997 0.03494995 9.7e-4 0.01699 0.03494995 0.002019941 0.01638996 0.03494995 0.005199968 0.01631999 0.03494995 0.005589962 0.01631999 0.03504997 0.005589962 0.01104998 0.03494995 0.01314997 0.01406997 0.03494995 0.009979963 0.01406997 0.03504997 0.009979963 0.01394999 0.03494995 0.01010996 0.01066994 0.03494995 0.01354998 0.009659945 0.03494995 0.01413995 0.01066994 0.03504997 0.01354998 0.007199943 0.03494995 0.01555997 0.006399989 0.03494995 0.01601999 0.006399989 0.03504997 0.01601999 0.004629969 0.03494995 0.01644998 0.001969993 0.03494995 0.01708996 0.001759946 0.03494995 0.01713997 0.001609981 0.03494995 0.01717996 0.001609981 0.03504997 0.01717996 -0.003309965 0.03494995 0.01692998 -0.007969975 0.03504997 0.01529997 -0.007969975 0.03494995 0.01529997 -0.003309965 0.03504997 0.01692998 0.01722997 0.03504997 7.5e-4 0.01722997 0.03494995 7.5e-4 0.01722997 0.03494995 -7.5e-4 0.01722997 0.03504997 -7.5e-4 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.02499997 -0.03504997 -0.023 -0.02499997 -0.03504997 0.023 -0.02472996 -0.03504997 -0.02399998 -0.02472996 -0.03504997 0.02399998 -0.02399998 -0.03504997 -0.02472996 -0.02399998 -0.03504997 0.02472996 -0.02363997 0.003949999 -0.02164 -0.02363997 0.003949999 0.02164 -0.02363997 0.00544995 -0.02164 -0.02363997 0.00544995 0.02164 -0.02357 0.005699992 -0.02164 -0.02357 0.005699992 0.02164 -0.02338999 0.005879998 -0.02164 -0.02338999 0.005879998 0.02164 -0.02336996 0.003959953 0.02263998 -0.02336996 0.00544995 -0.02263998 -0.02336996 0.00544995 0.02263998 -0.02336996 0.003959953 -0.02263998 -0.02331 0.005699992 -0.02260994 -0.02331 0.005699992 0.02260994 -0.02314996 0.005879998 -0.02250999 -0.02314996 0.005879998 0.02250999 -0.02313995 0.005949974 -0.02164 -0.02313995 0.005949974 0 -0.02313995 0.005949974 0.02164 -0.023 -0.03504997 -0.02499997 -0.023 -0.03504997 0.02499997 -0.02293998 0.005949974 -0.02238994 -0.02293998 0.005949974 0.02238994 0 -0.03504997 0 -0.02263998 0.003959953 0.02336996 -0.02263998 0.003959953 -0.02336996 -0.02263998 0.00544995 -0.02336996 -0.02263998 0.00544995 0.02336996 -0.02260994 0.005699992 -0.02331 -0.02260994 0.005699992 0.02331 -0.02250999 0.005879998 -0.02314996 -0.02250999 0.005879998 0.02314996 0 0.005949974 -0.02313995 -0.02164 0.005949974 -0.02313995 -0.02238994 0.005949974 -0.02293998 -0.02238994 0.005949974 0.02293998 -0.02164 0.003949999 -0.02363997 -0.02164 0.003949999 0.02363997 -0.02164 0.00544995 -0.02363997 -0.02164 0.00544995 0.02363997 -0.02164 0.005699992 -0.02357 -0.02164 0.005699992 0.02357 -0.02164 0.005879998 -0.02338999 -0.02164 0.005879998 0.02338999 -0.02164 0.005949974 0.02313995 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02213996 0.005949974 -0.004869997 0 0.005949974 0.02313995 0.02164 0.003949999 -0.02363997 0.02164 0.003949999 0.02363997 0.02164 0.00544995 -0.02363997 0.02164 0.00544995 0.02363997 0.02164 0.005699992 -0.02357 0.02164 0.005699992 0.02357 0.02164 0.005879998 -0.02338999 0.02164 0.005879998 0.02338999 0.02164 0.005949974 -0.02313995 0.02164 0.005949974 0.02313995 0.02238994 0.005949974 -0.02293998 0.02238994 0.005949974 0.02293998 0.02250999 0.005879998 -0.02314996 0.02250999 0.005879998 0.02314996 0.02260994 0.005699992 -0.02331 0.02260994 0.005699992 0.02331 0.02263998 0.003959953 -0.02336996 0.02263998 0.003959953 0.02336996 0.02263998 0.00544995 -0.02336996 0.02263998 0.00544995 0.02336996 0.02293998 0.005949974 -0.02238994 0.02293998 0.005949974 0.02238994 0.023 -0.03504997 -0.02499997 0.023 -0.03504997 0.02499997 0.02313995 0.005949974 -0.02164 0.02313995 0.005949974 0 0.02313995 0.005949974 0.02164 0.02314996 0.005879998 -0.02250999 0.02314996 0.005879998 0.02250999 0.02331 0.005699992 -0.02260994 0.02331 0.005699992 0.02260994 0.02336996 0.003959953 -0.02263998 0.02336996 0.003959953 0.02263998 0.02336996 0.00544995 -0.02263998 0.02336996 0.00544995 0.02263998 0.02338999 0.005879998 -0.02164 0.02338999 0.005879998 0.02164 0.02357 0.005699992 -0.02164 0.02357 0.005699992 0.02164 0.02363997 0.003949999 -0.02164 0.02363997 0.003949999 0.02164 0.02363997 0.00544995 -0.02164 0.02363997 0.00544995 0.02164 0.02399998 -0.03504997 -0.02472996 0.02399998 -0.03504997 0.02472996 0.02472996 -0.03504997 -0.02399998 0.02472996 -0.03504997 0.02399998 0.02499997 -0.03504997 -0.023 0.02499997 -0.03504997 0.023 0 0.03504997 0 -0.02213996 0.005949974 0.004869997 -0.02063995 0.005949974 0.006999969 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.00945729 0.003627836 -0.001710772 0 -0.01554995 0.02431994 0 0.005949974 0 + + + + + + + + + + 0 -1 0 0 -1 0 -0.9492978 0 -0.3143782 -0.9492978 0 0.3143782 -0.7785766 0.001171708 0.6275485 -0.7808654 0.001171231 0.6246982 -0.6209343 -0.001221954 0.7838616 -0.6453004 -0.01542252 0.7637733 -0.3964945 -0.0151537 0.9179121 -0.4893132 0.006718158 0.8720822 -0.4938785 0.006718337 0.8695049 -0.1431924 -0.008457064 0.9896588 -0.316222 0.006060898 0.9486659 -0.3172233 0.0060606 0.9483315 0.2392156 0.007879972 0.9709345 0.119358 -0.01385879 0.9927546 0.0559594 0.00282979 0.9984291 0.1191433 0.00413686 0.9928685 0.05255794 0.004160761 0.9986092 -0.1333157 -0.004680752 0.9910625 0.2450903 0.007883667 0.9694681 0.3747907 -0.01294112 0.9270192 0.4188861 0.001862525 0.9080369 0.4327281 0.001863181 0.9015226 0.6034716 -0.002766609 0.7973797 0.5845207 -0.01302987 0.8112742 0.7900453 -0.01468151 0.6128727 0.7272006 0.007067918 0.6863886 0.7263449 0.007068157 0.6872941 0.9823358 0.002611696 0.1871086 0.9289886 -0.004128932 0.3700852 0.9230861 -0.009820222 0.3844679 0.8414472 0.006709396 0.5402976 0.8421885 0.006709873 0.5391413 0.9819628 0.002612411 0.1890563 0.9911401 -0.01446169 0.1320315 0.9999719 0.007499694 0 0.9999719 0.007499694 0 0.9911401 -0.01446169 -0.1320315 0.9819628 0.002612411 -0.1890563 0.9823358 0.002611696 -0.1871086 0.9231205 -0.004674613 -0.3844823 0.9289375 -0.01127177 -0.3700649 0.7900453 -0.01468151 -0.6128727 0.8421885 0.006709873 -0.5391413 0.8414472 0.006709396 -0.5402976 0.4327281 0.001863181 -0.9015226 0.5845689 -0.002225697 -0.8113411 0.6034404 -0.0105375 -0.7973385 0.7263449 0.007068157 -0.6872941 0.7272006 0.007067918 -0.6863886 0.4188861 0.001862525 -0.9080369 0.3747907 -0.01294112 -0.9270192 0.2450903 0.007883667 -0.9694681 0.2392156 0.007879972 -0.9709345 0.119358 -0.01385879 -0.9927546 0.0559594 0.00282979 -0.9984291 0.1191433 0.00413686 -0.9928685 0.05255794 0.004160761 -0.9986092 -0.1431956 -0.005152344 -0.989681 -0.1333114 -0.009266734 -0.9910309 -0.3964945 -0.0151537 -0.9179121 -0.3172233 0.0060606 -0.9483315 -0.316222 0.006060898 -0.9486659 -0.7808654 0.001171231 -0.6246982 -0.6453768 -8.88654e-4 -0.7638639 -0.6208926 -0.01165908 -0.783809 -0.4938785 0.006718337 -0.8695049 -0.4893132 0.006718158 -0.8720822 -0.7785766 0.001171708 -0.6275485 -0.8049004 -0.01266139 -0.5932749 -0.881016 0.007450222 -0.4730277 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.9471516 0.1680965 0.2732169 -0.407418 0.1514139 -0.9006023 -0.9422059 0.2770094 -0.1884511 -0.9113164 0.1482697 -0.3840813 -0.9315509 0.1626105 -0.3252239 -0.7991091 -0.3146805 -0.5122509 -0.9081746 0.2506373 -0.3352608 -0.9111543 0.1456485 -0.3854666 -0.928664 0.2243673 -0.2953684 -0.925579 0.2859641 -0.2480482 -0.9177774 0.2868903 0.2745518 -0.9178981 0.2856691 0.2754201 -0.9143468 0.1813663 0.3620446 -0.9384292 0.1466302 0.31281 -0.9311535 0.1683419 0.3234411 -0.901751 0.1467134 0.4065961 -0.9103941 0.1680585 0.3780726 -0.912325 0.3225979 0.2521777 -0.9188216 0.2869244 0.2710005 -0.9848498 0.1048805 0.138097 -0.9578264 0.2873474 0 -0.9559739 0.2861407 -0.06509518 -0.9987523 -0.04993659 0 -0.9210147 0.2770513 -0.2738146 -0.4861897 0.1523008 -0.8604789 -0.4091901 0.1777053 -0.8949773 -0.3149025 0.1457877 -0.9378605 -0.1278769 0.1498839 -0.9803991 -0.309273 0.1512408 -0.9388697 -0.141013 0.1688628 -0.9755002 -0.1303948 0.1630746 -0.977959 -0.4837509 0.1474936 -0.8626881 -0.636475 0.163087 -0.7538581 -0.645197 0.1696269 -0.744948 -0.7708169 0.1599442 -0.6166515 -0.6459589 0.159875 -0.746443 -0.7711567 0.1450923 -0.6198915 -0.8274903 0.1763324 -0.533073 -0.8709936 0.1562899 -0.4657721 -0.9149418 0.1555567 -0.3724025 -0.7441748 0.5367867 -0.3975726 -0.9384292 0.1466302 -0.3128098 -0.9364062 0.1603595 0.3121352 -0.8722791 0.1474033 0.4662632 -0.8271023 0.1767897 0.5335236 -0.7664864 0.1686882 0.6197121 -0.8297607 0.1690638 0.5318973 -0.7716946 0.1450895 0.6192225 -0.6450954 0.1696101 0.7450398 -0.6363618 0.1663306 0.7532449 -0.64563 0.1662972 0.7453235 -0.6361207 0.1630551 0.754164 -0.4856274 0.1477051 0.8615968 -0.4099487 0.177209 0.8947284 -0.2937462 0.1736751 0.9399735 -0.4077602 0.1746891 0.8962228 -0.3145152 0.1452308 0.9380769 -0.1418845 0.1683772 0.9754577 -0.1341822 0.1666406 0.976845 -0.1389042 0.1666364 0.9761855 -0.1267469 0.1627997 0.9784843 0.1395421 0.1371724 0.980669 0.05338537 0.1733645 0.9834097 0.07274723 0.1735997 0.9821257 0.1416881 0.1761806 0.9741073 0.2381073 0.1455035 0.9602779 0.4082419 0.1680009 0.8972816 0.4154286 0.1666471 0.8942303 0.4107152 0.1666655 0.8964015 0.4143497 0.165222 0.894995 0.6486326 0.1363442 0.7487897 0.575868 0.1693211 0.7998164 0.575499 0.1693159 0.8000832 0.6442187 0.1772168 0.7440273 0.7189208 0.1454344 0.6797072 0.8300612 0.16697 0.5320899 0.8296917 0.1670521 0.5326398 0.8285282 0.1670665 0.5344434 0.8312138 0.1651425 0.5308593 0.9521918 0.1337416 0.2746708 0.9171259 0.1644181 0.3631072 0.914055 0.1643574 0.3707966 0.9438654 0.1778166 0.2783871 0.9717582 0.1459009 0.1854698 0.9860588 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9500489 0.1327823 -0.2824464 0.9697747 0.1601643 -0.1840775 0.9693279 0.1601721 -0.1864089 0.9447124 0.1775989 -0.2756393 0.830715 0.1654286 -0.5315507 0.8288937 0.166745 -0.533977 0.7189707 0.1454441 -0.6796524 0.6466634 0.1530798 -0.747257 0.717962 0.1537514 -0.6788895 0.6443232 0.1772074 -0.743939 0.5763537 0.1462174 -0.8040131 0.4070715 0.1568021 -0.8998366 0.5925795 0.1567866 -0.7901059 0.4147536 0.1656929 -0.8947209 0.4098841 0.1681987 -0.8964955 0.2399455 0.1457665 -0.9597803 0.1279237 0.1474865 -0.9807565 0.2369926 0.1489789 -0.9600207 0.1408129 0.1768286 -0.9741167 0.05614864 0.1468989 -0.9875566 0.05065917 0.1469421 -0.987847 -0.1424711 -3.79589e-4 -0.9897989 -0.129338 0 -0.9916005 -0.4158082 0 -0.9094523 -0.4154945 -2.07829e-4 -0.9095956 -0.4121701 0 -0.911107 -0.6546844 0 -0.7559022 -0.6546447 -3.01789e-5 -0.7559368 -0.6543759 0 -0.7561693 -0.840663 0 -0.5415588 -0.8408741 2.12565e-4 -0.5412307 -0.8418785 0 -0.5396671 -0.9599732 0 -0.280092 -0.9596633 -5.69179e-4 -0.2811512 -0.9585365 0 -0.2849697 -1 0 0 -1 0 0 -1 0 0 -0.9591508 0 0.2828954 -0.9596631 -8.33003e-4 0.2811512 -0.9608235 0 0.2771607 -0.8403387 0 0.5420618 -0.840874 -4.25545e-4 0.5412307 -0.8418794 0 0.5396656 -0.6545795 0 0.7559933 -0.6546447 -3.46783e-5 0.7559368 -0.6547469 0 0.7558482 -0.4165412 0 0.9091168 -0.4154945 4.29833e-4 0.9095956 -0.4141279 0 0.9102187 -0.1439396 0 0.9895865 -0.142471 5.09058e-4 0.9897989 -0.1408738 0 0.9900277 0.1408738 0 0.9900277 0.142471 5.09058e-4 0.9897989 0.1439396 0 0.9895865 0.4141279 0 0.9102187 0.4154945 4.29833e-4 0.9095956 0.4165412 0 0.9091168 0.6547469 0 0.7558482 0.6546447 -3.46783e-5 0.7559368 0.6545795 0 0.7559933 0.8418794 0 0.5396656 0.840874 -4.25545e-4 0.5412307 0.8403387 0 0.5420618 0.9608235 0 0.2771607 0.9596631 -8.33003e-4 0.2811512 0.9591508 0 0.2828954 1 0 0 1 0 0 1 0 0 0.9585365 0 -0.2849697 0.9596633 -5.69179e-4 -0.2811512 0.9599732 0 -0.280092 0.8418785 0 -0.5396671 0.8408741 2.12565e-4 -0.5412307 0.840663 0 -0.5415588 0.6543759 0 -0.7561693 0.6546447 -3.01789e-5 -0.7559368 0.6546844 0 -0.7559022 0.4121701 0 -0.911107 0.4154945 -2.07829e-4 -0.9095956 0.4158082 0 -0.9094523 0.129338 0 -0.9916005 0.1424711 -3.79589e-4 -0.9897989 0.1430675 0 -0.9897129 -0.1430675 0 -0.9897129 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9838701 0.1788842 -0.007730364 0.9677938 0.2516258 -0.008649408 0.7070808 0.7070799 0.006879746 0.8947982 0.4464178 0.006871819 0.8719238 0.4895934 0.002814829 0.377206 0.9261251 -0.008792817 0.2516237 0.9677851 0 0.1293374 0.9916006 -0.9629649 0 0.269627 -0.9629649 0 0.269627 -0.251012 0.07028329 0.965429 -0.1845505 0.1845505 0.9653404 -0.07028359 0.2510112 0.9654293 -0.1942211 0.6936423 0.6936414 -0.1935422 0.6935194 0.6939541 -0.5112335 0.5112336 0.690855 -0.5112314 0.5112344 0.690856 -0.6932809 0.1941184 0.6940315 -0.7049736 0.1803423 0.6859219 -0.2607492 0.9343423 0.2429284 -0.243086 0.9349478 0.2584215 -0.682882 0.6828859 0.2594976 -0.6944488 0.6756823 0.2473751 -0.9403539 0.2405559 0.2405565 -0.9297617 0.2603295 0.2603303 -0.2516335 0.9678226 0 -0.2516335 0.9678226 0 -0.7167247 0.6973562 0 -0.7167247 0.6973562 0 -0.962965 0.2696263 0 -0.962965 0.2696263 0 -0.7167251 0 -0.6973558 -0.9629649 0 -0.269627 -0.9629649 0 -0.269627 -0.07028359 0.2510112 -0.9654293 -0.1845506 0.1845506 -0.9653404 -0.2440263 0.938564 -0.2440261 -0.2595868 0.9301772 -0.2595866 -0.6923445 0.673635 -0.2586021 -0.6852509 0.685255 -0.2466917 -0.9343009 0.2616005 -0.2421712 -0.9350127 0.2391895 -0.2618005 -0.1936007 0.6937291 -0.6937282 -0.1941202 0.693282 -0.6940299 -0.5112318 0.5112348 -0.6908552 -0.5112326 0.5112326 -0.6908563 -0.6994224 0.1789222 -0.6919503 -0.7027144 0.1967598 -0.6837237 -0.251012 0.07028329 -0.965429 0 0.1543763 -0.9880121 -0.009795784 0.2516214 -0.9677761 -0.007334709 0.722306 -0.6915347 0.00679636 0.4472005 -0.8944079 0.006780803 0.5067117 -0.8620889 -0.009076535 0.9677828 -0.2516229 0 0.9892032 -0.1465499 -0.2263051 0.7072249 0.6697902 0.3015977 0.696307 0.6513029 0.7167264 0.6973544 0 0.5183387 0.69911 -0.4925142 0.03862148 0.6995103 -0.7135781 -0.1644762 0.9669772 0.1946862 -0.1248043 0.9671578 0.2214269 0.01370066 0.9675313 0.2523798 0.06004744 0.9683741 0.2421693 0.1849305 0.9670732 0.1748434 0.1059339 0.9677575 -0.2285243 -0.1261059 0.966584 -0.2231875 -0.199501 0.9668129 -0.1596003 -0.6712515 0.704275 -0.2311238 -0.4654791 0.8727707 -0.1469718 -0.4844728 0.8612704 -0.1532949 -0.8913083 0.3450198 -0.2941612 -0.915989 0.251125 -0.3128905 -0.944593 0.09943693 -0.3128201 -0.9346077 0.1752427 0.3095133 -0.9163941 0.251105 0.3117182 -0.8494461 0.4497035 0.2760577 -0.6587777 0.7186641 0.2225626 -0.11454 0.9926847 0.03817999 -0.2079164 0.9745261 0.08408081 -0.2403051 0.9673867 0.08010166 -0.2239108 0.9672326 0.119688 -0.2239329 0.9672339 -0.1196353 -0.2369856 0.9674997 -0.08821576 -0.168695 0.984063 -0.05623167 -0.220901 0.9681158 -0.1181289 -0.195109 0.9681603 -0.1568376 -0.1642051 0.9670629 -0.194489 -0.1243403 0.9671458 -0.2217399 -0.03328311 0.9677709 -0.249623 0.01294058 0.9675522 -0.2523397 0.01371669 0.9672559 -0.2534325 0.01418453 0.9682756 -0.2494817 0.05979275 0.9683793 -0.2422114 0.1485582 0.966945 -0.2072386 0.1849181 0.9670735 -0.1748546 0.1827625 0.9676989 -0.173657 0.181624 0.9682638 -0.1716915 0.2103747 0.9683087 -0.1346127 0.2516335 0.9678226 0 0.2516335 0.9678226 0 0.2516335 0.9678227 0 0.2469634 0.9678903 -0.04687726 0.2482241 0.9675434 0.04737603 0.2343087 0.9675045 0.09504997 0.2367252 0.9670455 0.09372389 0.21423 0.9671535 0.1368191 0.1064419 0.9675605 0.2291214 0.1058055 0.9677801 0.2284879 0.1058276 0.9677543 0.2285876 0.1467888 0.9679301 0.2038734 -0.0766099 0.966454 0.245148 -0.08143335 0.9670985 0.2410164 -0.07958346 0.9681548 0.2373665 -0.03413015 0.9680389 0.2484672 -0.1947117 0.9681448 0.1574264 -0.2211804 0.9681038 0.1177042 -0.6276769 0.7031698 0.3340269 -0.6718416 0.7042246 0.2295574 -0.8316648 0.4851421 0.270131 -0.224141 0.7071188 -0.6706294 -0.08158397 0.9665949 -0.242978 -0.08118349 0.9673035 -0.240277 -0.230294 0.6945442 -0.6815959 -0.09658795 0.6949279 -0.7125629 -0.1300739 0.2494957 -0.9596003 0.05087167 0.2513077 -0.9665695 0.3019366 0.6962896 -0.6511644 0.06135189 0.9674767 -0.2454073 0.1061488 0.9675673 -0.2292293 0.3024179 0.6942894 -0.653074 0.4201316 0.6941274 -0.584531 0.5638182 0.2583763 -0.7844429 0.7015674 0.2590524 -0.6638488 0.657499 0.7065963 -0.2615662 0.6635753 0.6994388 -0.2654304 0.7016292 0.6998641 -0.133816 0.5189352 0.6991608 0.4918134 0.2101477 0.9683169 0.1349092 0.1812267 0.9682484 0.1721977 0.5147917 0.7040795 0.4891439 0.4141255 0.7046437 0.5761747 0.562515 0.2665852 0.7826297 0.4170309 0.2669032 0.8688198 0.03983807 0.6995611 0.7134614 0.01843094 0.9683725 0.2488275 0.01364505 0.9676027 0.2521088 0.03827118 0.7060714 0.7071057 -0.09523808 0.7051784 0.7026044 -0.1298174 0.2567928 0.9577082 -0.305629 0.2567279 0.916887 -0.4603919 0.7019324 0.5434429 -0.1641054 0.967066 0.194558 -0.164548 0.966937 0.1948249 -0.463243 0.6961148 0.5484799 -0.5580259 0.6967077 0.4507831 -0.8506854 0.2602313 -0.4567428 -0.2229626 0.9675791 -0.1186526 -0.6337479 0.6961472 -0.3372576 -0.6271286 0.7031058 -0.3351895 -0.8501825 0.2659004 -0.454408 -0.8554773 0.2506282 -0.4531491 -0.7517282 0.2706233 -0.6013882 -0.1978173 0.9671215 -0.159826 -0.5579887 0.6967101 -0.4508255 -0.5582559 0.6964031 -0.4509689 -0.7490752 0.2696682 -0.6051161 -0.7513393 0.2621917 -0.6055946 -0.1644515 0.9669765 -0.1947106 -0.4595423 0.7019816 -0.5440982 -0.464033 0.6961706 -0.5477408 -0.6238481 0.261821 -0.7363854 -0.621176 0.2712791 -0.7352197 -0.1242595 0.9673138 -0.221051 -0.3465486 0.7069951 -0.6164916 -0.3499536 0.7017597 -0.6205367 -0.4731478 0.2687683 -0.8389843 -0.4767771 0.2609524 -0.839397 -0.1288474 0.2567702 -0.9578452 -0.305629 0.2567279 -0.9168869 -0.3062461 0.2581284 -0.9162877 -0.3065935 0.2567667 -0.916554 -0.4726419 0.2588881 -0.8423696 0.05413478 0.2532923 -0.965874 0.05391412 0.2545722 -0.9655498 0.03948223 0.7060217 -0.7070888 -0.09333491 0.7052802 -0.7027577 -0.03303414 0.9680098 -0.2487279 -0.07829689 0.9681807 -0.2376884 0.06135183 0.9674766 -0.2454078 0.1740778 0.696309 -0.6963121 0.1739403 0.6986982 -0.6939493 0.2341818 0.2688215 -0.9342879 0.2314112 0.2534631 -0.9392579 0.5634199 0.2665578 -0.7819878 0.4170309 0.2669032 -0.8688198 0.4046592 0.2732187 -0.8726983 0.4044461 0.2603067 -0.8767347 0.2365246 0.2621741 -0.9355859 0.7046238 0.2473371 -0.6650787 0.7013934 0.2572429 -0.6647355 0.5154538 0.7040323 -0.488514 0.415661 0.7047259 -0.5749672 0.1455301 0.9686573 -0.2013059 0.15098 0.9678227 -0.2013067 0.2147524 0.9670686 -0.1366009 0.5968894 0.7068039 -0.3796725 0.6017773 0.7001448 -0.3842673 0.8154708 0.2526968 -0.5207222 0.8161497 0.2468252 -0.5224721 0.9629638 0.2696306 0 0.9449788 0.2718722 -0.1819358 0.9482918 0.2608299 -0.18086 0.9482879 0.261008 -0.1806234 0.8967889 0.2617092 -0.3567605 0.8974719 0.258296 -0.3575298 0.8130294 0.2577725 -0.5220504 0.9629638 0.2696306 0 0.9629638 0.2696306 0 0.7167264 0.6973544 0 0.70467 0.6965711 -0.1350152 0.2486808 0.9674128 -0.04764741 0.2481271 0.9675516 -0.04771661 0.9482879 0.261008 0.1806234 0.2469177 0.9678809 0.04730957 0.7014893 0.6998912 0.1344058 0.7047534 0.6966033 0.1344119 0.9482918 0.2608299 0.18086 0.9449788 0.2718721 0.1819358 0.2322279 0.9682156 0.09289127 0.6569463 0.7066604 0.2627788 0.6640112 0.699507 0.2641569 0.8976452 0.2582861 0.3571012 0.8966205 0.2616998 0.3571906 0.2123748 0.9678058 0.1350885 0.6024934 0.7000937 0.3832371 0.59627 0.7067469 0.3807505 0.8154708 0.2526969 0.5207222 0.8130294 0.2577725 0.5220504 0.5647161 0.2584066 0.7837867 0.7015674 0.2590524 0.6638488 0.7013934 0.2572429 0.6647355 0.7046238 0.2473371 0.6650787 0.8161497 0.2468252 0.5224721 0.4044461 0.2603067 0.8767347 0.4046592 0.2732187 0.8726983 0.3027438 0.6943063 0.6529051 0.4217932 0.6940296 0.5834496 0.1488554 0.9671839 0.2059057 0.1488695 0.9669557 0.2069647 0.06135171 0.9674767 0.2454074 0.1735082 0.6987219 0.6940336 0.1745008 0.6963297 0.6961856 0.2341818 0.2688215 0.9342879 0.2365246 0.2621741 0.9355859 -0.1291 0.2495277 0.9597235 0.05087167 0.2513077 0.9665695 0.05391412 0.2545722 0.9655498 0.05413478 0.2532923 0.965874 0.2314112 0.2534631 0.9392579 -0.3065935 0.2567667 0.916554 -0.3062461 0.2581284 0.9162877 -0.2280214 0.6946619 0.6822397 -0.09468263 0.6948394 0.7129049 -0.03354847 0.9669889 0.2526004 -0.03234249 0.9677872 0.2496837 -0.1255912 0.9665973 0.22342 -0.3491178 0.7017115 0.6210619 -0.3474251 0.7069473 0.616053 -0.4731478 0.2687683 0.8389843 -0.4726419 0.2588881 0.8423696 -0.8506854 0.2602313 0.4567428 -0.7513393 0.2621915 0.6055946 -0.7490752 0.2696682 0.6051161 -0.7517282 0.2706233 0.6013882 -0.6221522 0.2713071 0.7343835 -0.6228598 0.2618451 0.7372128 -0.4767771 0.2609524 0.839397 -0.8554773 0.2506282 0.4531491 -0.8501825 0.2659004 0.454408 -0.6330834 0.6962109 0.3383722 -0.5582225 0.6964006 0.4510145 -0.1946848 0.9681715 0.1572951 -0.1992351 0.9668231 0.15987 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2576645 0 -0.9662344 -0.05074721 0 -0.9987115 -0.05074721 0 -0.9987115 -0.3301701 0 -0.9439214 -0.3301701 0 -0.9439214 0.2314149 -0.04166501 -0.9719626 0.2337992 -0.0328713 -0.9717291 -0.2353472 -0.01319801 0.9718218 0.2360719 0 -0.9717356 0.498471 0 -0.8669065 0.5025548 0.05025458 -0.8630836 0.4977039 -0.0518344 -0.8657968 0.5000953 0.04980254 -0.8645372 0.5044022 0 -0.8634689 0.7249996 0 -0.6887493 0.7241208 -0.006897449 -0.6896386 0.8897777 0 -0.4563943 0.8898923 -0.008304476 -0.4560952 0.8900858 0 -0.4557931 0.7240293 0 -0.6897691 -0.9833266 0 0.1818479 -0.9818185 -0.044227 0.1845983 0.9825241 -0.002599418 -0.1861173 0.9825702 0 -0.1858918 0.6556872 0 0.7550326 -0.6556872 0 0.7550326 -0.6515577 -0.04579263 0.7572157 -0.6516571 -0.04426085 0.7572213 -0.6510875 0 0.7590027 -0.8414006 0 0.540412 -0.8395078 -0.03620713 0.54214 -0.8394931 0 0.5433704 -0.9587494 0 0.2842525 -0.9582376 0.04984301 0.2815961 -0.9599216 0 0.2802686 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9598937 0 -0.2803642 -0.9588532 0.03467482 -0.281777 -0.9590831 0 -0.2831244 -0.8426965 0 -0.5383889 0.8393291 -0.04166615 0.5420246 0.8395044 0 0.5433529 0.6522963 0 0.757964 0.6490944 0.0781871 0.7566791 0.6515577 0.04579263 0.7572157 0.8899229 0 0.4561109 0.9838697 0 0.1788867 0.9821668 0.01870387 0.187079 0.9826549 -0.003704786 0.1854068 0.9822553 -0.03267395 0.1846804 0.9842713 0 0.1766641 0.8899229 0 0.4561109 0.7249996 0 0.6887493 0.7241208 -0.006897449 0.6896386 0.7232667 0.02902907 0.6899583 0.7348049 0 0.6782786 0.5044022 0 0.8634689 0.4990119 0.0604375 0.864485 0.5005733 0.02391499 0.8653637 0.498471 0 0.8669065 0.2360719 0 0.9717356 0.2353472 0.01319825 0.9718218 0.2337992 -0.03287124 0.9717291 0.2314148 -0.04166501 0.9719625 0.2576645 0 0.9662344 -0.05074721 0 0.9987115 -0.05074721 0 0.9987115 -0.3301701 0 0.9439214 0.3301701 0 -0.9439214 0 -1 0 0 -1 0 0 -1 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 1 0 0 0 0 -1 -0.260666 0 0.9654291 -0.9654291 0 -0.260666 -0.9654291 0 -0.260666 -0.260666 0 -0.9654291 -0.9645484 0.04270619 -0.2604277 -0.9646556 0.04270696 -0.2600302 0.9654291 0 -0.260666 0.2604277 0.04270619 -0.9645484 0.7071068 0 0.7071068 0.2689354 0.9604846 -0.07171601 0.2758985 0.9581687 -0.07611 0.2031767 0.95783 -0.2031767 0.2031767 0.95783 -0.2031767 0.07389479 0.9579936 -0.2771059 0.07417577 0.9603113 -0.2688869 0.6940287 0.6940234 -0.1914564 0.6821739 0.707958 -0.1828504 0.4946855 0.7145437 -0.4946855 0.4946855 0.7145437 -0.4946855 0.1876068 0.7087336 -0.6800739 0.1862189 0.6947355 -0.694741 0.9324051 0.2610736 -0.2499225 0.9336825 0.2543331 -0.2520944 0.6852533 0.2466892 -0.6852533 0.6852534 0.2466892 -0.6852534 0.2503941 0.2542446 -0.9341641 0.2516342 0.2609541 -0.9319781 0 0 0 0 0.7071041 -0.7071095 0 0.7071041 -0.7071095 0 0.2696301 -0.9629639 0 0.2696301 -0.9629639 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.7071095 0.7071041 0 0.7071095 0.7071041 0 0.9629639 0.2696301 0 0.9629639 0.2696301 0 -0.07611 0.9581687 -0.2758985 -0.2031767 0.95783 -0.2031767 -0.2031767 0.95783 -0.2031767 -0.2771059 0.9579936 -0.07389479 -0.2688869 0.9603113 -0.07417577 -0.1914564 0.6940234 -0.6940287 -0.1828504 0.7079579 -0.6821739 -0.4946855 0.7145437 -0.4946855 -0.4946855 0.7145437 -0.4946855 -0.6800737 0.7087335 -0.1876068 -0.694741 0.6947355 -0.1862189 -0.2499225 0.2610736 -0.9324051 -0.2520944 0.2543331 -0.9336825 -0.6852533 0.2466892 -0.6852533 -0.6852534 0.2466892 -0.6852534 -0.9341641 0.2542446 -0.2503941 -0.9319781 0.2609541 -0.2516342 0.07171601 0.9604846 0.2689354 0.07611 0.9581687 0.2758985 0.2031767 0.95783 0.2031767 0.2031767 0.95783 0.2031767 0.2771059 0.9579936 0.07389479 0.2688869 0.9603113 0.07417577 0.1914564 0.6940234 0.6940287 0.1828504 0.7079579 0.6821739 0.4946855 0.7145437 0.4946855 0.4946855 0.7145437 0.4946855 0.6800737 0.7087335 0.1876068 0.694741 0.6947355 0.1862189 0.2499225 0.2610736 0.9324051 0.2520944 0.2543331 0.9336825 0.6852533 0.2466892 0.6852533 0.6852534 0.2466892 0.6852534 0.9341641 0.2542446 0.2503941 0.9319781 0.2609541 0.2516342 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.7071095 0.7071041 0 -0.7071095 0.7071041 0 -0.9629639 0.2696301 0 -0.9629639 0.2696301 0 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2696301 0.9629639 0 0.2696301 0.9629639 -0.2689354 0.9604846 0.07171601 -0.2758985 0.9581687 0.07611 -0.2031767 0.95783 0.2031767 -0.2031767 0.95783 0.2031767 -0.07389479 0.9579936 0.2771059 -0.07417577 0.9603113 0.2688869 -0.6940287 0.6940234 0.1914564 -0.6821739 0.707958 0.1828504 -0.4946855 0.7145437 0.4946855 -0.4946855 0.7145437 0.4946855 -0.1876068 0.7087336 0.6800739 -0.1862189 0.6947355 0.694741 -0.9324051 0.2610736 0.2499225 -0.9336825 0.2543331 0.2520944 -0.6852533 0.2466892 0.6852533 -0.6852534 0.2466892 0.6852534 -0.2503941 0.2542446 0.9341641 -0.2516342 0.2609541 0.9319781 -0.9629639 0 -0.2696301 -0.9629639 0 -0.2696301 -0.7167251 0 -0.6973558 -0.7167237 -2.52567e-7 -0.6973572 -0.2516344 0 -0.9678224 -0.2516335 0 -0.9678226 -0.2516344 0 -0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.9629639 0 0.2696301 -0.9629639 0 0.2696301 -1 0 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.9122474 0 0.4096398 -0.8835567 -0.01679629 -0.4680228 -0.957763 0.01149314 -0.2873293 -0.957763 0.01149314 0.2873293 -0.8835567 -0.01679629 0.4680228 -0.9086417 0.007449328 0.4175103 -0.881016 0.007450222 0.4730277 -0.8049004 -0.01266139 0.5932749 -0.9122221 0.007446944 -0.4096284 -0.901296 0 -0.4332039 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 -0.9190827 0.28875 -0.2681613 -0.9068856 0.3034356 -0.292379 -0.9189138 0.2091057 0.3344731 0.9175001 0.1444488 -0.3705781 0.8302804 0.1654177 -0.5322325 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2516344 0 0.9678224 0.002348303 0.6348381 0.7726417 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 -0.9678224 -0.2516344 0 -0.9678224 -0.7167251 0 -0.6973558 -0.004324674 0.7071006 -0.7070997 0.003669202 0.9127396 -0.4085254 0.2344187 0.967514 -0.09468168 -0.7256583 0.6450302 -0.2394912 -0.3975354 0.9086532 0.1277299 0.2290577 0.9690912 -0.09162318 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 -0.9993925 0.03485059 0 -0.9993925 0.03485059 0 0 0 1 0 0 1 1 0 0 0 0 -1 -1 0 0 -1 0 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.260666 0 0.9654291 -0.9654291 0 0.260666 -0.9654291 0 0.260666 -0.9646556 0.04270696 0.2600302 -0.9645484 0.04270619 0.2604277 -0.706249 0.04924374 0.7062489 -0.7062489 0.04924374 0.7062489 -0.2604277 0.04270619 0.9645484 -0.2600302 0.04270696 0.9646556 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.260666 0 -0.9654291 -0.2600301 0.04270696 -0.9646555 -0.2604277 0.04270619 -0.9645484 -0.7062489 0.04924374 -0.706249 -0.7062489 0.04924374 -0.7062489 0.260666 0 -0.9654291 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.260666 0 -0.9654291 0.9654291 0 -0.260666 0.9646556 0.04270696 -0.2600302 0.9645484 0.04270619 -0.2604277 0.706249 0.04924374 -0.7062489 0.7062489 0.04924374 -0.7062489 0.2600302 0.04270696 -0.9646556 0.2604278 0.04270619 0.9645484 0.2600301 0.04270696 0.9646556 0.9645479 0.04271709 0.2604277 0.964656 0.04269605 0.2600303 0.7062489 0.04924374 0.7062489 0.706249 0.04924374 0.7062489 0.7071068 0 0.7071068 0.9654291 0 0.260666 0.9654291 0 0.260666 0.260666 0 0.9654291 0.260666 0 0.9654291 0 0 0 0 0 0 -1.5404e-7 1 -6.36081e-7 3.24032e-7 1 5.61656e-7 6.54708e-7 1 0 -6.48629e-7 1 0 -5.82531e-7 1 2.98564e-7 4.26935e-7 1 4.96095e-7 -3.27791e-7 1 5.66667e-7 6.28108e-7 1 1.84581e-7 -1.5404e-7 1 6.36081e-7 5.49908e-7 1 -3.55121e-7 5.49908e-7 1 3.55121e-7 -4.74061e-7 1 -4.51486e-7 0 1 6.53629e-7 2.16121e-7 1 -6.17868e-7 3.24032e-7 1 -5.61656e-7 -5.82531e-7 1 -2.98564e-7 -4.74061e-7 1 4.51486e-7 4.26935e-7 1 -4.96095e-7 -3.27791e-7 1 -5.66667e-7 -6.43363e-7 1 1.20963e-7 2.16121e-7 1 6.17868e-7 6.28108e-7 1 -1.84581e-7 -6.43363e-7 1 -1.20963e-7 0 1 -6.53629e-7 0 0.9629641 -0.2696297 0 0.9629641 -0.2696297 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1872387 -0.9823144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1364855 -0.9817008 -0.1327975 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.08765232 -0.9373711 -0.3371237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0.9629641 -0.2696297 0 0 0 -0.07171601 0.9604846 -0.2689354 -0.08764123 -0.9899891 0.1106374 0.07545632 -0.9970984 0.01005166 -0.165484 -0.9851234 -0.04633498 0.06710433 -0.9963871 -0.05205571 -0.01855289 -0.9915714 -0.1282264 -0.1596735 -0.9861569 0.0447086 0.01166564 -0.9952132 0.09702873 0.1506127 0.98234 0.1110134 0.01357448 -0.9934884 -0.1131218 0 0 0 -0.1199531 -0.9858954 0.1167114 0.0334047 -0.9960209 0.08262425 0.07395762 -0.9967855 -0.03080356 -0.1550459 -0.986953 0.04341232 -0.04902708 -0.9923275 0.1135011 -0.05939245 -0.9717465 0.2284322 0.01359909 -0.9934894 -0.1131098 0 0 0 -0.1297165 -0.9869306 0.09561127 0.05006933 -0.9965522 0.06615769 0.07658731 -0.9970107 -0.01020228 -0.1044685 -0.9857454 -0.1318801 0.1044685 0.9857454 0.1318801 0 -0.9662557 0.2575849 -0.01562213 -0.9940313 0.1079711 -0.1443563 -0.9795069 -0.1404551 0.03801149 -0.9948446 -0.09401881 0.06233876 -0.9968829 0.04835891 -0.05876457 -0.9889584 -0.136044 -0.05089199 -0.9793348 0.195738 0.01164436 -0.9952126 0.09703755 -0.1872387 -0.9823144 0 0.05545455 -0.995769 -0.0732733 -0.1144365 -0.9871711 0.1113438 0.07075601 -0.9970582 0.02947002 -0.1506127 -0.98234 -0.1110134 0.05876457 0.9889584 0.136044 -0.1603716 -0.9844262 0.07201397 -0.01855289 -0.9915714 -0.1282265 0 0.03485065 0.9993925 0 0.03485059 0.9993926 0 0.03485053 0.9993925 0 0.03485059 0.9993926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.1707559 -0.9841526 -0.04781168 0.070692 0.9597275 0.2718927 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1790391 0.9805517 0.08039653 -0.1790391 -0.9805517 -0.08039653 0 -0.9156407 -0.4019977 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

376 0 371 0 375 0 325 1 326 1 329 1 161 2 75 2 120 2 122 3 76 3 284 3 277 4 404 4 278 4 278 5 404 5 280 5 280 6 404 6 406 6 280 7 406 7 282 7 408 8 275 8 406 8 406 9 275 9 281 9 406 10 281 10 282 10 410 11 259 11 408 11 408 12 259 12 266 12 408 13 266 13 275 13 414 14 263 14 264 14 414 15 264 15 412 15 412 16 264 16 262 16 412 17 262 17 410 17 410 18 262 18 260 18 410 19 260 19 259 19 263 20 414 20 257 20 257 21 414 21 416 21 257 22 416 22 248 22 248 23 416 23 241 23 241 24 416 24 418 24 241 25 418 25 242 25 420 26 246 26 418 26 418 27 246 27 244 27 418 28 244 28 242 28 230 29 234 29 423 29 423 30 234 30 239 30 423 31 239 31 420 31 420 32 239 32 245 32 420 33 245 33 246 33 230 34 423 34 229 34 229 35 423 35 422 35 229 36 422 36 221 36 221 37 422 37 214 37 214 38 422 38 421 38 214 39 421 39 215 39 215 40 421 40 217 40 217 41 421 41 419 41 217 42 419 42 219 42 417 43 212 43 419 43 419 44 212 44 218 44 419 45 218 45 219 45 199 46 197 46 415 46 415 47 197 47 196 47 415 48 196 48 417 48 417 49 196 49 203 49 417 50 203 50 212 50 199 51 415 51 201 51 201 52 415 52 413 52 201 53 413 53 200 53 200 54 413 54 194 54 194 55 413 55 411 55 194 56 411 56 185 56 185 57 411 57 409 57 185 58 409 58 178 58 178 59 409 59 407 59 178 60 407 60 179 60 405 61 183 61 407 61 407 62 183 62 181 62 407 63 181 63 179 63 167 64 171 64 403 64 403 65 171 65 176 65 403 66 176 66 405 66 405 67 176 67 182 67 405 68 182 68 183 68 167 69 403 69 166 69 166 70 403 70 402 70 166 71 402 71 162 71 84 72 76 72 122 72 122 73 123 73 84 73 84 74 123 74 150 74 84 75 150 75 151 75 151 76 124 76 84 76 126 77 125 77 84 77 84 78 125 78 27 78 84 79 27 79 82 79 118 80 117 80 107 80 107 81 106 81 28 81 120 82 107 82 121 82 121 83 107 83 119 83 118 84 107 84 130 84 130 85 107 85 28 85 130 86 28 86 129 86 41 87 40 87 127 87 31 88 30 88 173 88 114 89 74 89 36 89 28 90 106 90 34 90 108 91 35 91 110 91 110 92 35 92 34 92 110 93 34 93 109 93 109 94 34 94 106 94 108 95 111 95 35 95 36 96 116 96 114 96 78 97 40 97 80 97 80 98 40 98 79 98 40 99 81 99 83 99 125 100 127 100 27 100 27 101 127 101 40 101 27 102 40 102 82 102 82 103 40 103 83 103 79 104 40 104 77 104 77 105 40 105 39 105 77 106 39 106 73 106 73 107 39 107 38 107 73 108 38 108 74 108 74 109 38 109 37 109 74 110 37 110 36 110 173 111 30 111 152 111 152 112 30 112 29 112 152 113 29 113 188 113 188 114 29 114 71 114 188 115 71 115 190 115 190 116 71 116 72 116 190 117 72 117 134 117 173 118 133 118 31 118 31 119 133 119 169 119 31 120 169 120 32 120 32 121 169 121 164 121 32 122 164 122 33 122 33 123 164 123 132 123 33 124 132 124 34 124 34 125 132 125 159 125 34 126 159 126 28 126 28 127 159 127 131 127 28 128 131 128 129 128 127 129 128 129 41 129 41 130 128 130 148 130 41 131 148 131 42 131 42 132 148 132 291 132 42 133 291 133 43 133 43 134 291 134 289 134 43 135 289 135 44 135 44 136 289 136 158 136 44 137 158 137 45 137 158 138 157 138 45 138 45 139 157 139 272 139 45 140 272 140 46 140 46 141 272 141 146 141 46 142 146 142 47 142 47 143 146 143 147 143 47 144 147 144 48 144 48 145 147 145 271 145 48 146 271 146 49 146 49 147 271 147 269 147 49 148 269 148 50 148 269 149 156 149 50 149 50 150 156 150 155 150 50 151 155 151 51 151 51 152 155 152 254 152 51 153 254 153 52 153 52 154 254 154 144 154 52 155 144 155 53 155 53 156 144 156 145 156 53 157 145 157 54 157 145 158 253 158 54 158 54 159 253 159 251 159 54 160 251 160 55 160 55 161 251 161 154 161 55 162 154 162 56 162 56 163 154 163 236 163 56 164 236 164 57 164 57 165 236 165 143 165 57 166 143 166 58 166 143 167 232 167 58 167 58 168 232 168 142 168 58 169 142 169 59 169 59 170 142 170 227 170 59 171 227 171 60 171 60 172 227 172 140 172 60 173 140 173 61 173 61 174 140 174 141 174 61 175 141 175 62 175 141 176 226 176 62 176 62 177 226 177 224 177 62 178 224 178 63 178 64 179 209 179 139 179 64 180 139 180 65 180 65 181 139 181 138 181 65 182 138 182 66 182 66 183 138 183 137 183 66 184 137 184 67 184 67 185 137 185 208 185 67 186 208 186 68 186 208 187 206 187 68 187 68 188 206 188 153 188 68 189 153 189 69 189 69 190 153 190 191 190 69 191 191 191 70 191 70 192 191 192 136 192 70 193 136 193 72 193 72 194 136 194 135 194 72 195 135 195 134 195 71 196 308 196 309 196 71 197 29 197 308 197 308 198 29 198 30 198 308 199 30 199 292 199 30 200 31 200 292 200 292 201 31 201 32 201 292 202 32 202 307 202 32 203 33 203 307 203 307 204 33 204 34 204 307 205 34 205 306 205 34 206 35 206 306 206 306 207 35 207 36 207 306 208 36 208 305 208 36 209 37 209 305 209 305 210 37 210 38 210 305 211 38 211 304 211 38 212 39 212 304 212 304 213 39 213 40 213 304 214 40 214 303 214 40 215 41 215 303 215 303 216 41 216 42 216 303 217 42 217 302 217 42 218 43 218 302 218 302 219 43 219 44 219 302 220 44 220 301 220 44 221 45 221 301 221 301 222 45 222 46 222 301 223 46 223 293 223 46 224 47 224 293 224 293 225 47 225 48 225 293 226 48 226 294 226 48 227 49 227 294 227 294 228 49 228 50 228 294 229 50 229 295 229 50 230 51 230 295 230 295 231 51 231 52 231 295 232 52 232 296 232 52 233 53 233 296 233 296 234 53 234 54 234 296 235 54 235 297 235 54 236 55 236 297 236 297 237 55 237 56 237 297 238 56 238 298 238 56 239 57 239 298 239 298 240 57 240 58 240 298 241 58 241 299 241 58 242 59 242 299 242 299 243 59 243 60 243 299 244 60 244 300 244 60 245 61 245 300 245 300 246 61 246 62 246 300 247 62 247 313 247 62 248 63 248 313 248 313 249 63 249 64 249 313 250 64 250 312 250 64 251 65 251 312 251 312 252 65 252 66 252 312 253 66 253 311 253 66 254 67 254 311 254 311 255 67 255 68 255 311 256 68 256 310 256 68 257 69 257 310 257 310 258 69 258 70 258 310 259 70 259 309 259 309 260 70 260 72 260 309 261 72 261 71 261 399 262 95 262 398 262 398 263 95 263 99 263 398 264 99 264 397 264 93 265 77 265 73 265 93 266 73 266 115 266 115 267 73 267 74 267 115 268 74 268 114 268 77 269 93 269 79 269 79 270 93 270 89 270 85 271 78 271 89 271 89 272 78 272 80 272 89 273 80 273 79 273 81 274 85 274 83 274 83 275 85 275 84 275 83 276 84 276 82 276 95 277 399 277 401 277 95 278 401 278 92 278 84 279 87 279 88 279 86 280 87 280 84 280 85 281 86 281 84 281 85 282 89 282 86 282 86 283 89 283 90 283 86 284 90 284 87 284 87 285 90 285 91 285 87 286 91 286 88 286 88 287 91 287 92 287 89 288 93 288 90 288 90 289 93 289 94 289 90 290 94 290 91 290 91 291 94 291 96 291 91 292 96 292 92 292 92 293 96 293 95 293 93 294 115 294 97 294 93 295 97 295 94 295 94 296 97 296 98 296 94 297 98 297 96 297 96 298 98 298 99 298 96 299 99 299 95 299 105 300 400 300 103 300 103 301 400 301 397 301 103 302 397 302 99 302 101 303 112 303 107 303 101 304 107 304 104 304 115 305 113 305 97 305 97 306 113 306 100 306 97 307 100 307 98 307 98 308 100 308 102 308 98 309 102 309 99 309 99 310 102 310 103 310 113 311 112 311 100 311 100 312 112 312 101 312 100 313 101 313 102 313 102 314 101 314 104 314 102 315 104 315 103 315 103 316 104 316 105 316 105 317 104 317 107 317 106 318 107 318 109 318 109 319 107 319 112 319 111 320 108 320 112 320 112 321 108 321 110 321 112 322 110 322 109 322 116 323 113 323 115 323 116 324 115 324 114 324 268 325 274 325 276 325 250 326 256 326 258 326 223 327 228 327 231 327 205 328 211 328 213 328 187 329 193 329 195 329 158 330 289 330 290 330 272 331 157 331 273 331 156 332 269 332 270 332 254 333 155 333 255 333 154 334 251 334 252 334 153 335 206 335 207 335 173 336 152 336 174 336 164 337 169 337 170 337 163 338 117 338 160 338 160 339 117 339 118 339 160 340 118 340 130 340 119 341 163 341 121 341 121 342 163 342 161 342 121 343 161 343 120 343 122 344 284 344 123 344 123 345 284 345 286 345 123 346 286 346 150 346 149 347 124 347 151 347 125 348 126 348 127 348 127 349 126 349 149 349 127 350 149 350 128 350 128 351 149 351 148 351 159 352 160 352 131 352 131 353 160 353 130 353 131 354 130 354 129 354 159 355 132 355 165 355 165 356 132 356 164 356 169 357 133 357 175 357 175 358 133 358 173 358 190 359 134 359 187 359 187 360 134 360 135 360 187 361 135 361 193 361 193 362 135 362 136 362 193 363 136 363 191 363 208 364 137 364 205 364 205 365 137 365 138 365 205 366 138 366 211 366 211 367 138 367 139 367 211 368 139 368 209 368 227 369 228 369 140 369 140 370 228 370 223 370 140 371 223 371 141 371 141 372 223 372 226 372 227 373 142 373 233 373 233 374 142 374 232 374 232 375 143 375 238 375 238 376 143 376 236 376 254 377 256 377 144 377 144 378 256 378 250 378 144 379 250 379 145 379 145 380 250 380 253 380 272 381 274 381 146 381 146 382 274 382 268 382 146 383 268 383 147 383 147 384 268 384 271 384 291 385 148 385 288 385 288 386 148 386 149 386 288 387 149 387 286 387 286 388 149 388 151 388 286 389 151 389 150 389 180 390 184 390 174 390 152 391 188 391 174 391 174 392 188 392 189 392 174 393 189 393 180 393 180 394 189 394 186 394 180 395 186 395 178 395 178 396 186 396 185 396 198 397 202 397 192 397 191 398 153 398 192 398 192 399 153 399 207 399 192 400 207 400 198 400 198 401 207 401 204 401 198 402 204 402 196 402 196 403 204 403 203 403 216 404 220 404 210 404 210 405 225 405 216 405 216 406 225 406 222 406 243 407 247 407 237 407 236 408 154 408 237 408 237 409 154 409 252 409 237 410 252 410 243 410 243 411 252 411 249 411 243 412 249 412 241 412 241 413 249 413 248 413 261 414 265 414 255 414 155 415 156 415 255 415 255 416 156 416 270 416 255 417 270 417 261 417 261 418 270 418 267 418 261 419 267 419 259 419 259 420 267 420 266 420 279 421 283 421 273 421 157 422 158 422 273 422 273 423 158 423 290 423 273 424 290 424 279 424 279 425 290 425 287 425 168 426 166 426 162 426 159 427 165 427 160 427 160 428 165 428 168 428 160 429 168 429 163 429 163 430 168 430 162 430 163 431 162 431 161 431 172 432 171 432 167 432 164 433 170 433 165 433 165 434 170 434 172 434 165 435 172 435 168 435 168 436 172 436 167 436 168 437 167 437 166 437 169 438 175 438 170 438 170 439 175 439 177 439 170 440 177 440 172 440 172 441 177 441 176 441 172 442 176 442 171 442 173 443 174 443 175 443 175 444 174 444 184 444 175 445 184 445 177 445 177 446 184 446 182 446 177 447 182 447 176 447 178 448 179 448 180 448 180 449 179 449 181 449 180 450 181 450 184 450 184 451 181 451 183 451 184 452 183 452 182 452 194 453 185 453 195 453 195 454 185 454 186 454 195 455 186 455 187 455 187 456 186 456 189 456 187 457 189 457 190 457 190 458 189 458 188 458 191 459 192 459 193 459 193 460 192 460 202 460 193 461 202 461 195 461 195 462 202 462 200 462 195 463 200 463 194 463 196 464 197 464 198 464 198 465 197 465 199 465 198 466 199 466 202 466 202 467 199 467 201 467 202 468 201 468 200 468 212 469 203 469 213 469 213 470 203 470 204 470 213 471 204 471 205 471 205 472 204 472 207 472 205 473 207 473 208 473 208 474 207 474 206 474 209 475 210 475 211 475 211 476 210 476 220 476 211 477 220 477 213 477 213 478 220 478 218 478 213 479 218 479 212 479 221 480 214 480 222 480 222 481 214 481 215 481 222 482 215 482 216 482 216 483 215 483 217 483 216 484 217 484 220 484 220 485 217 485 219 485 220 486 219 486 218 486 229 487 221 487 231 487 231 488 221 488 222 488 231 489 222 489 223 489 223 490 222 490 225 490 223 491 225 491 226 491 226 492 225 492 224 492 235 493 234 493 230 493 227 494 233 494 228 494 228 495 233 495 235 495 228 496 235 496 231 496 231 497 235 497 230 497 231 498 230 498 229 498 232 499 238 499 233 499 233 500 238 500 240 500 233 501 240 501 235 501 235 502 240 502 239 502 235 503 239 503 234 503 236 504 237 504 238 504 238 505 237 505 247 505 238 506 247 506 240 506 240 507 247 507 245 507 240 508 245 508 239 508 241 509 242 509 243 509 243 510 242 510 244 510 243 511 244 511 247 511 247 512 244 512 246 512 247 513 246 513 245 513 257 514 248 514 258 514 258 515 248 515 249 515 258 516 249 516 250 516 250 517 249 517 252 517 250 518 252 518 253 518 253 519 252 519 251 519 254 520 255 520 256 520 256 521 255 521 265 521 256 522 265 522 258 522 258 523 265 523 263 523 258 524 263 524 257 524 259 525 260 525 261 525 261 526 260 526 262 526 261 527 262 527 265 527 265 528 262 528 264 528 265 529 264 529 263 529 275 530 266 530 276 530 276 531 266 531 267 531 276 532 267 532 268 532 268 533 267 533 270 533 268 534 270 534 271 534 271 535 270 535 269 535 272 536 273 536 274 536 274 537 273 537 283 537 274 538 283 538 276 538 276 539 283 539 281 539 276 540 281 540 275 540 285 541 277 541 287 541 287 542 277 542 278 542 287 543 278 543 279 543 279 544 278 544 280 544 279 545 280 545 283 545 283 546 280 546 282 546 283 547 282 547 281 547 284 548 285 548 286 548 286 549 285 549 287 549 286 550 287 550 288 550 288 551 287 551 290 551 288 552 290 552 291 552 291 553 290 553 289 553 301 554 293 554 389 554 308 555 292 555 363 555 363 556 292 556 307 556 389 557 293 557 385 557 385 558 293 558 294 558 385 559 294 559 380 559 380 560 294 560 295 560 380 561 295 561 377 561 377 562 295 562 296 562 377 563 296 563 373 563 373 564 296 564 297 564 373 565 297 565 370 565 370 566 297 566 298 566 370 567 298 567 390 567 390 568 298 568 299 568 390 569 299 569 393 569 393 570 299 570 300 570 393 571 300 571 313 571 389 572 387 572 301 572 301 573 387 573 365 573 301 574 365 574 302 574 302 575 365 575 342 575 302 576 342 576 303 576 303 577 342 577 345 577 303 578 345 578 304 578 304 579 345 579 351 579 304 580 351 580 305 580 305 581 351 581 354 581 305 582 354 582 306 582 306 583 354 583 357 583 306 584 357 584 307 584 307 585 357 585 359 585 307 586 359 586 363 586 363 587 337 587 308 587 308 588 337 588 315 588 308 589 315 589 309 589 309 590 315 590 319 590 309 591 319 591 310 591 310 592 319 592 324 592 310 593 324 593 311 593 311 594 324 594 327 594 311 595 327 595 312 595 312 596 327 596 330 596 312 597 330 597 313 597 313 598 330 598 334 598 313 599 334 599 393 599 317 600 314 600 319 600 314 601 315 601 319 601 314 602 316 602 315 602 316 603 337 603 315 603 316 604 336 604 337 604 317 605 319 605 318 605 319 606 320 606 318 606 319 607 320 607 324 607 324 608 321 608 320 608 324 609 322 609 321 609 322 610 324 610 323 610 324 611 325 611 323 611 324 612 327 612 325 612 325 613 327 613 326 613 327 614 329 614 326 614 327 615 330 615 329 615 333 616 328 616 334 616 328 617 330 617 334 617 328 618 331 618 330 618 331 619 329 619 330 619 392 620 393 620 332 620 332 621 393 621 334 621 332 622 335 622 334 622 335 623 333 623 334 623 361 624 338 624 363 624 364 625 365 625 339 625 365 626 340 626 339 626 365 627 342 627 340 627 340 628 342 628 341 628 342 629 343 629 341 629 342 630 345 630 343 630 343 631 345 631 344 631 345 632 346 632 344 632 345 633 351 633 346 633 346 634 351 634 347 634 351 635 348 635 347 635 351 636 349 636 348 636 349 637 351 637 350 637 351 638 352 638 350 638 351 639 354 639 352 639 352 640 354 640 353 640 354 641 355 641 353 641 354 642 357 642 355 642 355 643 357 643 356 643 357 644 358 644 356 644 357 645 358 645 359 645 359 646 358 646 360 646 359 647 360 647 363 647 363 648 360 648 362 648 363 649 362 649 361 649 372 650 370 650 373 650 390 651 366 651 391 651 366 652 390 652 367 652 390 653 368 653 367 653 390 654 370 654 368 654 370 655 369 655 368 655 370 656 372 656 369 656 375 657 371 657 377 657 371 658 373 658 377 658 371 659 374 659 373 659 374 660 372 660 373 660 375 661 377 661 376 661 377 662 378 662 376 662 377 663 380 663 378 663 378 664 380 664 379 664 380 665 381 665 379 665 380 666 385 666 381 666 385 667 382 667 381 667 385 668 383 668 382 668 383 669 385 669 384 669 385 670 386 670 384 670 385 671 389 671 386 671 389 672 388 672 386 672 389 673 388 673 387 673 559 708 557 708 593 708 595 708 6 787 26 787 3 787 6 788 22 788 26 788 8 789 22 789 6 789 8 790 20 790 22 790 11 791 20 791 8 791 11 792 18 792 20 792 25 793 0 793 2 793 1 794 24 794 4 794 9 795 19 795 10 795 7 796 19 796 9 796 7 797 21 797 19 797 5 798 21 798 7 798 5 799 23 799 21 799 23 800 4 800 24 800 5 801 4 801 23 801 10 802 15 802 12 802 18 803 13 803 14 803 11 804 13 804 18 804 3 805 25 805 2 805 26 806 25 806 3 806 16 807 15 807 17 807 162 808 13 808 161 808 161 809 13 809 75 809 284 810 76 810 16 810 284 811 16 811 285 811 285 812 16 812 17 812 285 813 17 813 277 813 277 814 17 814 404 814 162 815 402 815 14 815 162 816 14 816 13 816 4 817 76 817 84 817 84 818 124 818 126 818 107 819 117 819 119 819 75 820 2 820 120 820 120 821 2 821 107 821 35 822 111 822 36 822 36 823 111 823 116 823 78 824 81 824 40 824 63 825 224 825 209 825 63 826 209 826 64 826 75 827 13 827 11 827 2 828 75 828 3 828 3 829 75 829 11 829 3 830 11 830 6 830 6 831 11 831 8 831 12 832 15 832 16 832 16 833 76 833 12 833 12 834 76 834 4 834 12 835 4 835 9 835 9 836 4 836 5 836 9 837 5 837 7 837 9 838 10 838 12 838 85 839 81 839 78 839 92 840 401 840 1 840 92 841 1 841 88 841 88 842 1 842 4 842 88 843 4 843 84 843 105 844 107 844 2 844 2 845 0 845 105 845 105 846 0 846 400 846 111 847 112 847 113 847 111 848 113 848 116 848 209 849 224 849 225 849 163 850 119 850 117 850 126 851 124 851 149 851 210 852 209 852 225 852 550 859 548 859 407 859 409 859 544 860 543 860 402 860 403 860 545 868 534 868 570 868 581 868 423 869 420 869 561 869 564 869 590 919 588 919 552 919 554 919 558 920 556 920 415 920 417 920 530 921 385 921 380 921 530 922 337 922 363 922 530 923 354 923 351 923 530 924 390 924 393 924 530 925 334 925 330 925 530 926 363 926 359 926 530 927 327 927 324 927 530 928 357 928 354 928 530 929 324 929 319 929 530 930 345 930 342 930 530 931 359 931 357 931 530 932 377 932 373 932 530 933 319 933 315 933 389 934 530 934 387 934 530 935 365 935 387 935 530 936 373 936 370 936 530 937 330 937 327 937 365 938 530 938 342 938 530 939 380 939 377 939 530 940 393 940 334 940 337 941 530 941 315 941 530 942 351 942 345 942 390 943 530 943 370 943 530 944 389 944 385 944 395 947 574 947 538 947 531 947 414 948 412 948 553 948 555 948 1 949 401 949 542 949 531 949 536 950 535 950 19 950 21 950 560 951 558 951 417 951 419 951 541 952 539 952 397 952 400 952 25 953 26 953 644 953 535 954 532 954 10 954 19 954 476 955 477 955 567 955 566 955 422 956 423 956 564 956 563 956 406 957 404 957 545 957 547 957 552 958 550 958 409 958 411 958 416 959 414 959 555 959 557 959 531 960 538 960 24 960 1 960 537 961 536 961 21 961 23 961 562 962 560 962 419 962 421 962 401 963 399 963 540 963 542 963 408 964 406 964 547 964 549 964 554 965 552 965 411 965 413 965 400 966 0 966 479 966 541 966 533 967 534 967 17 967 15 967 418 968 416 968 557 968 559 968 23 969 24 969 538 969 537 969 475 970 476 970 566 970 565 970 421 971 422 971 563 971 562 971 546 972 544 972 403 972 405 972 404 973 17 973 534 973 545 973 410 974 408 974 549 974 551 974 556 975 554 975 413 975 415 975 532 976 533 976 15 976 10 976 420 977 418 977 559 977 561 977 409 978 475 978 565 978 550 978 477 979 478 979 568 979 567 979 548 980 546 980 405 980 407 980 412 981 410 981 551 981 553 981 587 982 585 982 624 982 626 982 605 983 608 983 569 983 394 983 602 984 603 984 642 984 641 984 621 985 619 985 580 985 582 985 598 986 599 986 638 986 637 986 595 987 593 987 632 987 634 987 581 988 570 988 609 988 620 988 573 989 572 989 536 989 537 989 562 990 563 990 599 990 598 990 582 991 580 991 544 991 546 991 566 992 567 992 603 992 602 992 394 993 569 993 533 993 532 993 551 994 549 994 585 994 587 994 396 995 577 995 541 995 479 995 592 996 590 996 554 996 556 996 561 997 559 997 595 997 597 997 537 998 538 998 574 998 573 998 584 999 582 999 546 999 548 999 571 1000 394 1000 532 1000 535 1000 553 1001 551 1001 587 1001 589 1001 594 1002 592 1002 556 1002 558 1002 564 1003 561 1003 597 1003 600 1003 580 1004 579 1004 543 1004 544 1004 565 1005 566 1005 602 1005 601 1005 569 1006 570 1006 534 1006 533 1006 586 1007 584 1007 548 1007 550 1007 555 1008 553 1008 589 1008 591 1008 550 1009 565 1009 601 1009 586 1009 596 1010 594 1010 558 1010 560 1010 577 1011 575 1011 539 1011 541 1011 644 1012 22 1012 20 1012 563 1013 564 1013 600 1013 599 1013 547 1014 545 1014 581 1014 583 1014 567 1015 568 1015 604 1015 603 1015 572 1016 571 1016 535 1016 536 1016 588 1017 586 1017 550 1017 552 1017 531 1018 542 1018 578 1018 395 1018 557 1019 555 1019 591 1019 593 1019 598 1020 596 1020 560 1020 562 1020 542 1021 540 1021 576 1021 578 1021 549 1022 547 1022 583 1022 585 1022 607 1023 616 1023 577 1023 396 1023 631 1024 629 1024 590 1024 592 1024 597 1025 595 1025 634 1025 636 1025 623 1026 621 1026 582 1026 584 1026 610 1027 605 1027 394 1027 571 1027 589 1028 587 1028 626 1028 628 1028 573 1029 574 1029 613 1029 612 1029 633 1030 631 1030 592 1030 594 1030 611 1031 610 1031 571 1031 572 1031 600 1032 597 1032 636 1032 639 1032 619 1033 618 1033 579 1033 580 1033 601 1034 602 1034 641 1034 640 1034 608 1035 609 1035 570 1035 569 1035 625 1036 623 1036 584 1036 586 1036 591 1037 589 1037 628 1037 630 1037 612 1038 611 1038 572 1038 573 1038 586 1039 601 1039 640 1039 625 1039 635 1040 633 1040 594 1040 596 1040 616 1041 614 1041 575 1041 577 1041 599 1042 600 1042 639 1042 638 1042 583 1043 581 1043 620 1043 622 1043 603 1044 604 1044 643 1044 642 1044 627 1045 625 1045 586 1045 588 1045 607 1046 25 1046 644 1046 395 1047 578 1047 617 1047 606 1047 593 1048 591 1048 630 1048 632 1048 637 1049 635 1049 596 1049 598 1049 578 1050 576 1050 615 1050 617 1050 585 1051 583 1051 622 1051 624 1051 606 1052 613 1052 574 1052 395 1052 629 1053 627 1053 588 1053 590 1053 396 1054 25 1054 607 1054 644 1055 615 1055 398 1055 398 1056 615 1056 576 1056 614 1057 398 1057 575 1057 398 1058 540 1058 399 1058 644 1059 398 1059 614 1059 398 1060 576 1060 540 1060 539 1061 398 1061 397 1061 575 1063 398 1063 539 1063 622 1065 620 1065 644 1065 638 1066 639 1066 644 1066 644 1067 614 1067 616 1067 644 1068 633 1068 635 1068 625 1069 644 1069 640 1069 644 1070 611 1070 612 1070 630 1071 628 1071 644 1071 642 1072 643 1072 644 1072 644 1073 625 1073 627 1073 479 1074 25 1074 396 1074 606 1075 617 1075 644 1075 632 1076 630 1076 644 1076 644 1077 635 1077 637 1077 617 1078 615 1078 644 1078 624 1079 622 1079 644 1079 644 1080 613 1080 606 1080 644 1081 627 1081 629 1081 0 1082 25 1082 479 1082 620 1083 609 1083 644 1083 634 1084 632 1084 644 1084 637 1085 638 1085 644 1085 644 1086 619 1086 621 1086 641 1087 642 1087 644 1087 644 1088 608 1088 605 1088 626 1089 624 1089 644 1089 644 1090 616 1090 607 1090 644 1091 629 1091 631 1091 636 1092 634 1092 644 1092 644 1093 621 1093 623 1093 644 1094 605 1094 610 1094 628 1095 626 1095 644 1095 612 1096 613 1096 644 1096 644 1097 631 1097 633 1097 644 1098 610 1098 611 1098 639 1099 636 1099 644 1099 644 1100 618 1100 619 1100 640 1101 641 1101 644 1101 644 1102 609 1102 608 1102 644 1103 623 1103 625 1103 26 1128 22 1128 644 1128 644 1129 18 1129 20 1129 543 1130 14 1130 402 1130 478 1131 14 1131 568 1131 568 1132 14 1132 604 1132 579 1133 14 1133 543 1133 604 1134 14 1134 643 1134 618 1135 14 1135 579 1135 643 1136 14 1136 644 1136 644 1137 14 1137 618 1137 18 1138 14 1138 644 1138

+
+ + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

453 674 526 674 528 674 453 675 503 675 524 675 453 676 449 676 503 676 503 677 449 677 466 677 529 678 528 678 520 678 523 679 521 679 522 679 483 680 481 680 468 680 467 681 469 681 457 681 430 682 432 682 439 682 439 683 441 683 430 683 466 684 456 684 468 684 426 685 424 685 441 685 441 686 424 686 430 686 520 687 514 687 522 687 497 688 524 688 503 688 498 689 515 689 500 689 505 690 516 690 501 690 501 691 516 691 508 691 501 692 508 692 491 692 491 693 508 693 493 693 491 694 493 694 489 694 489 695 493 695 487 695 516 696 518 696 508 696 508 697 518 697 510 697 508 698 510 698 493 698 493 699 510 699 495 699 493 700 495 700 487 700 487 701 495 701 485 701 518 702 522 702 510 702 510 703 522 703 514 703 510 704 514 704 495 704 495 705 514 705 499 705 495 706 499 706 485 706 485 707 499 707 483 707 472 709 487 709 485 709 472 710 485 710 470 710 470 711 485 711 483 711 470 712 483 712 468 712 506 713 507 713 517 713 516 714 505 714 506 714 506 715 517 715 516 715 516 716 517 716 519 716 516 717 519 717 518 717 518 718 519 718 523 718 518 719 523 719 522 719 464 720 472 720 460 720 464 721 460 721 451 721 451 722 460 722 444 722 451 723 444 723 446 723 446 724 444 724 436 724 472 725 470 725 460 725 460 726 470 726 458 726 460 727 458 727 444 727 444 728 458 728 442 728 444 729 442 729 436 729 436 730 442 730 434 730 470 731 468 731 458 731 458 732 468 732 456 732 458 733 456 733 442 733 442 734 456 734 439 734 442 735 439 735 434 735 434 736 439 736 432 736 490 737 488 737 492 737 492 738 488 738 494 738 492 739 494 739 502 739 502 740 494 740 509 740 502 741 509 741 507 741 507 742 509 742 517 742 488 743 486 743 494 743 494 744 486 744 496 744 494 745 496 745 509 745 509 746 496 746 511 746 509 747 511 747 517 747 517 748 511 748 519 748 486 749 484 749 496 749 496 750 484 750 500 750 496 751 500 751 511 751 511 752 500 752 515 752 511 753 515 753 519 753 519 754 515 754 523 754 447 755 446 755 436 755 437 756 448 756 447 756 447 757 436 757 437 757 437 758 436 758 434 758 437 759 434 759 435 759 435 760 434 760 432 760 435 761 432 761 433 761 480 762 474 762 473 762 488 763 490 763 480 763 480 764 473 764 488 764 488 765 473 765 471 765 488 766 471 766 486 766 486 767 471 767 469 767 486 768 469 768 484 768 448 769 437 769 452 769 452 770 437 770 445 770 452 771 445 771 465 771 465 772 445 772 461 772 465 773 461 773 474 773 474 774 461 774 473 774 437 775 435 775 445 775 445 776 435 776 443 776 445 777 443 777 461 777 461 778 443 778 459 778 461 779 459 779 473 779 473 780 459 780 471 780 435 781 433 781 443 781 443 782 433 782 440 782 443 783 440 783 459 783 459 784 440 784 457 784 459 785 457 785 471 785 471 786 457 786 469 786 529 853 527 853 453 853 450 854 429 854 453 854 528 855 529 855 453 855 429 856 427 856 453 856 525 857 504 857 453 857 504 858 450 858 453 858 453 861 425 861 424 861 453 862 428 862 449 862 453 863 426 863 428 863 453 864 424 864 426 864 527 865 525 865 453 865 453 866 524 866 526 866 427 867 425 867 453 867 503 870 466 870 481 870 529 871 520 871 521 871 424 872 425 872 431 872 424 873 431 873 430 873 469 874 467 874 484 874 484 875 467 875 482 875 522 876 521 876 520 876 468 877 481 877 466 877 432 878 430 878 433 878 433 879 430 879 431 879 440 880 438 880 457 880 457 881 438 881 454 881 457 882 454 882 467 882 438 883 440 883 431 883 431 884 440 884 433 884 438 885 431 885 425 885 438 886 425 886 427 886 438 887 427 887 454 887 454 888 427 888 429 888 454 889 429 889 450 889 454 890 450 890 467 890 456 891 455 891 439 891 439 892 455 892 441 892 455 893 456 893 466 893 455 894 466 894 449 894 455 895 449 895 428 895 455 896 428 896 441 896 441 897 428 897 426 897 481 898 483 898 499 898 514 899 512 899 499 899 499 900 512 900 497 900 499 901 497 901 481 901 512 902 514 902 520 902 512 903 520 903 528 903 512 904 528 904 526 904 512 905 526 905 497 905 497 906 526 906 524 906 497 907 503 907 481 907 525 908 498 908 504 908 504 909 498 909 482 909 529 910 521 910 527 910 527 911 521 911 513 911 498 912 525 912 527 912 498 913 527 913 513 913 498 914 513 914 515 914 515 915 513 915 523 915 523 916 513 916 521 916 498 917 500 917 482 917 482 918 500 918 484 918 462 945 489 945 487 945 462 946 487 946 472 946 472 1062 463 1062 462 1062 463 1064 472 1064 464 1064 645 1104 450 1104 504 1104 504 1105 482 1105 645 1105 482 1106 467 1106 645 1106 467 1107 450 1107 645 1107 646 1108 452 1108 465 1108 489 1109 462 1109 646 1109 646 1110 506 1110 505 1110 646 1111 465 1111 474 1111 463 1112 464 1112 646 1112 447 1113 448 1113 646 1113 646 1114 492 1114 502 1114 646 1115 490 1115 492 1115 646 1116 502 1116 507 1116 646 1117 448 1117 452 1117 646 1118 507 1118 506 1118 446 1119 447 1119 646 1119 462 1120 463 1120 646 1120 501 1121 491 1121 646 1121 505 1122 501 1122 646 1122 451 1123 446 1123 646 1123 646 1124 480 1124 490 1124 646 1125 474 1125 480 1125 491 1126 489 1126 646 1126 464 1127 451 1127 646 1127

+
+
+ 1 +
+
+ + + + 7.481132 -6.50764 5.343665 + 0 0 1 46.69194 + 0 1 0 0.619768 + 1 0 0 63.5593 + 1 1 1 + + + + 4.076245 1.005454 5.903862 + 0 0 1 106.9363 + 0 1 0 3.163707 + 1 0 0 37.26105 + 1 1 1 + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 90.00001 + 1 1 1 + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.STL b/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.STL new file mode 100755 index 0000000..880c11b Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.dae b/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.dae new file mode 100755 index 0000000..18515d0 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/left_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:01 2016 GMT + Tue Jan 19 19:53:01 2016 GMT + Y_UP + + + + + + -0.0499122 7.98557e-17 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -4.71309e-17 -0.01 0.05 -4.67605e-17 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -4.98767e-17 1.78814e-09 -2.40741e-18 1.32111e-17 1.78814e-09 0.0397192 -0.00473093 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.00590586 -0.0395616 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.0252035 -0.031061 1.78814e-09 -0.0399297 0.00236963 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0393692 0.00707561 1.78814e-09 -0.0128108 0.0378931 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0193117 0.0350294 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0397192 0.00473093 1.78814e-09 0.0374968 0.0139281 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 0 1.38778e-17 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 8.0226e-17 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -5.28837e-17 -0.035 0.0496593 -5.23914e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -5.10248e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -4.88769e-17 -0.0420711 0.045 -4.60941e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -4.28661e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -3.94129e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0422893 -0.00503704 -0.000340743 0.0388809 -0.00939544 1.78814e-09 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0233192 -0.0324995 1.78814e-09 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.00823914 -0.0391423 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0425134 0.00252295 -0.000340743 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.038256 0.0116823 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.043038 0.0131426 -0.00133975 -0.0389744 0.0171683 -0.000340743 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.0252035 0.031061 1.78814e-09 -0.0305573 0.0296648 -0.000340743 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0136397 0.0403449 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00118533 0.0399824 1.78814e-09 0.00126203 0.0425695 -0.000340743 0.006288 0.0421214 -0.000340743 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.0353229 0.0237918 -0.000340743 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -4.35227e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -5.28385e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.0413967 -0.0100034 -0.000340743 0.0355863 -0.0182652 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0205612 -0.037296 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0172026 -0.0361119 1.78814e-09 -0.0213529 -0.0338238 1.78814e-09 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0227346 -0.0360124 -0.000340743 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0317942 -0.024272 1.78814e-09 -0.0305573 -0.0296648 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0366058 -0.0161249 1.78814e-09 -0.038256 -0.0116823 1.78814e-09 -0.0407314 -0.0124382 -0.000340743 -0.0393692 -0.00707561 1.78814e-09 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0419166 -0.00753344 -0.000340743 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0287003 0.027862 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0268343 0.0330707 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0172026 0.0361119 1.78814e-09 -0.0227346 0.0360124 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00877226 0.0416749 -0.000340743 -0.00823914 0.0391423 1.78814e-09 -0.00355184 0.039842 1.78814e-09 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 -0.00378166 0.04242 -0.000340743 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0066441 0.0445068 -0.00133975 0.00590586 0.0395616 1.78814e-09 0.0112257 0.0410821 -0.000340743 0.0150331 0.0370676 1.78814e-09 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0160058 0.039466 -0.000340743 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.0205612 0.037296 -0.000340743 0.0233192 0.0324995 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.024828 0.0346023 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0287463 0.031423 -0.000340743 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0378889 0.019447 -0.000340743 0.0355863 0.0182652 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0388809 0.00939544 1.78814e-09 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.043741 0.0105699 -0.00133975 0.04 -4.00796e-17 1.78814e-09 0.0422893 0.00503704 -0.000340743 0.0446841 0.00532229 -0.00133975 0.045 -4.67211e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -4.94567e-17 -0.00292893 0.0486603 -5.15433e-17 -0.005 0.05 -5.32541e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -8.7761e-19 0.998244 0.0592405 8.7761e-19 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 181 181 0 0 0 0 0 0 1 181 181 1 180 180 1 0 0 2 180 180 2 1 1 2 1 1 3 180 180 3 178 178 3 1 1 4 178 178 4 2 2 4 2 2 5 178 178 5 177 177 5 2 2 6 177 177 6 3 3 6 3 3 7 177 177 7 175 175 7 3 3 8 175 175 8 4 4 8 4 4 9 175 175 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 173 173 15 9 9 16 173 173 16 666 666 16 666 666 17 173 173 17 11 11 17 666 666 18 11 11 18 665 665 18 665 665 19 11 11 19 171 171 19 665 665 20 171 171 20 12 12 20 12 12 21 171 171 21 169 169 21 12 12 22 169 169 22 13 13 22 13 13 23 169 169 23 168 168 23 13 13 24 168 168 24 649 649 24 649 649 25 168 168 25 14 14 25 649 649 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 166 166 29 16 16 30 166 166 30 642 642 30 642 642 31 166 166 31 165 165 31 642 642 32 165 165 32 640 640 32 640 640 33 165 165 33 164 164 33 640 640 34 164 164 34 627 627 34 627 627 35 164 164 35 163 163 35 627 627 36 163 163 36 625 625 36 625 625 37 163 163 37 162 162 37 625 625 38 162 162 38 18 18 38 18 18 39 162 162 39 161 161 39 18 18 40 161 161 40 626 626 40 626 626 41 161 161 41 159 159 41 626 626 42 159 159 42 20 20 42 20 20 43 159 159 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 604 604 50 604 604 51 26 26 51 27 27 51 604 604 52 27 27 52 28 28 52 28 28 53 27 27 53 156 156 53 28 28 54 156 156 54 489 489 54 489 489 55 156 156 55 29 29 55 489 489 56 29 29 56 603 603 56 603 603 57 29 29 57 30 30 57 603 603 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 151 151 67 39 39 68 151 151 68 40 40 68 40 40 69 151 151 69 41 41 69 40 40 70 41 41 70 490 490 70 490 490 71 41 41 71 42 42 71 490 490 72 42 42 72 43 43 72 43 43 73 42 42 73 148 148 73 43 43 74 148 148 74 44 44 74 44 44 75 148 148 75 147 147 75 44 44 76 147 147 76 566 566 76 566 566 77 147 147 77 146 146 77 566 566 78 146 146 78 45 45 78 45 45 79 146 146 79 46 46 79 45 45 80 46 46 80 554 554 80 554 554 81 46 46 81 145 145 81 554 554 82 145 145 82 494 494 82 494 494 83 145 145 83 219 219 83 494 494 84 219 219 84 553 553 84 553 553 85 219 219 85 218 218 85 553 553 86 218 218 86 47 47 86 47 47 87 218 218 87 217 217 87 47 47 88 217 217 88 48 48 88 48 48 89 217 217 89 215 215 89 48 48 90 215 215 90 49 49 90 49 49 91 215 215 91 50 50 91 49 49 92 50 50 92 807 807 92 807 807 93 50 50 93 51 51 93 807 807 94 51 51 94 483 483 94 483 483 95 51 51 95 52 52 95 483 483 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 211 211 99 800 800 100 211 211 100 56 56 100 56 56 101 211 211 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 787 787 108 787 787 109 62 62 109 210 210 109 787 787 110 210 210 110 63 63 110 63 63 111 210 210 111 64 64 111 63 63 112 64 64 112 781 781 112 781 781 113 64 64 113 65 65 113 781 781 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 780 780 116 780 780 117 67 67 117 208 208 117 780 780 118 208 208 118 766 766 118 766 766 119 208 208 119 207 207 119 766 766 120 207 207 120 68 68 120 68 68 121 207 207 121 206 206 121 68 68 122 206 206 122 69 69 122 69 69 123 206 206 123 203 203 123 69 69 124 203 203 124 70 70 124 70 70 125 203 203 125 202 202 125 70 70 126 202 202 126 71 71 126 71 71 127 202 202 127 201 201 127 71 71 128 201 201 128 485 485 128 485 485 129 201 201 129 72 72 129 485 485 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 749 749 134 749 749 135 76 76 135 77 77 135 749 749 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 197 197 139 80 80 140 197 197 140 81 81 140 81 81 141 197 197 141 82 82 141 81 81 142 82 82 142 486 486 142 486 486 143 82 82 143 83 83 143 486 486 144 83 83 144 728 728 144 728 728 145 83 83 145 195 195 145 728 728 146 195 195 146 84 84 146 84 84 147 195 195 147 85 85 147 84 84 148 85 85 148 727 727 148 727 727 149 85 85 149 86 86 149 727 727 150 86 86 150 87 87 150 87 87 151 86 86 151 192 192 151 87 87 152 192 192 152 88 88 152 88 88 153 192 192 153 191 191 153 88 88 154 191 191 154 89 89 154 89 89 155 191 191 155 190 190 155 89 89 156 190 190 156 715 715 156 715 715 157 190 190 157 90 90 157 715 715 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 187 187 161 93 93 162 187 187 162 94 94 162 94 94 163 187 187 163 186 186 163 94 94 164 186 186 164 697 697 164 697 697 165 186 186 165 95 95 165 697 697 166 95 95 166 96 96 166 96 96 167 95 95 167 184 184 167 96 96 168 184 184 168 487 487 168 487 487 169 184 184 169 183 183 169 487 487 170 183 183 170 696 696 170 696 696 171 183 183 171 97 97 171 696 696 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 686 686 176 686 686 177 101 101 177 102 102 177 686 686 178 102 102 178 103 103 178 103 103 179 102 102 179 181 181 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 562 562 182 560 560 182 105 105 182 105 105 183 560 560 183 496 496 183 105 105 184 496 496 184 106 106 184 585 585 185 578 578 185 105 105 185 105 105 186 578 578 186 571 571 186 105 105 187 571 571 187 562 562 187 597 597 188 107 107 188 105 105 188 105 105 189 107 107 189 501 501 189 105 105 190 501 501 190 585 585 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 598 598 192 105 105 193 598 598 193 597 597 193 506 506 194 505 505 194 105 105 194 105 105 195 505 505 195 620 620 195 105 105 196 620 620 196 109 109 196 110 110 197 633 633 197 105 105 197 105 105 198 633 633 198 632 632 198 105 105 199 632 632 199 506 506 199 661 661 200 658 658 200 105 105 200 105 105 201 658 658 201 660 660 201 105 105 202 660 660 202 110 110 202 675 675 203 673 673 203 105 105 203 105 105 204 673 673 204 672 672 204 105 105 205 672 672 205 661 661 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 675 675 208 701 701 209 524 524 209 105 105 209 105 105 210 524 524 210 523 523 210 105 105 211 523 523 211 113 113 211 530 530 212 713 713 212 105 105 212 105 105 213 713 713 213 714 714 213 105 105 214 714 714 214 701 701 214 114 114 215 722 722 215 105 105 215 105 105 216 722 722 216 721 721 216 105 105 217 721 721 217 530 530 217 541 541 218 738 738 218 105 105 218 105 105 219 738 738 219 737 737 219 105 105 220 737 737 220 114 114 220 757 757 221 115 115 221 105 105 221 105 105 222 115 115 222 755 755 222 105 105 223 755 755 223 541 541 223 772 772 224 771 771 224 105 105 224 105 105 225 771 771 225 116 116 225 105 105 226 116 116 226 757 757 226 795 795 227 117 117 227 105 105 227 105 105 228 117 117 228 786 786 228 105 105 229 786 786 229 772 772 229 118 118 230 806 806 230 105 105 230 105 105 231 806 806 231 119 119 231 105 105 232 119 119 232 795 795 232 482 482 233 480 480 233 138 138 233 482 482 234 138 138 234 120 120 234 431 431 235 429 429 235 138 138 235 138 138 236 429 429 236 121 121 236 138 138 237 121 121 237 120 120 237 122 122 238 123 123 238 138 138 238 138 138 239 123 123 239 124 124 239 138 138 240 124 124 240 431 431 240 128 128 241 434 434 241 138 138 241 138 138 242 434 434 242 125 125 242 138 138 243 125 125 243 122 122 243 436 436 244 126 126 244 138 138 244 138 138 245 126 126 245 127 127 245 138 138 246 127 127 246 128 128 246 129 129 247 438 438 247 138 138 247 138 138 248 438 438 248 130 130 248 138 138 249 130 130 249 436 436 249 441 441 250 131 131 250 138 138 250 138 138 251 131 131 251 440 440 251 138 138 252 440 440 252 129 129 252 132 132 253 443 443 253 138 138 253 138 138 254 443 443 254 133 133 254 138 138 255 133 133 255 441 441 255 449 449 256 447 447 256 138 138 256 138 138 257 447 447 257 444 444 257 138 138 258 444 444 258 132 132 258 453 453 259 134 134 259 138 138 259 138 138 260 134 134 260 450 450 260 138 138 261 450 450 261 449 449 261 455 455 262 135 135 262 138 138 262 138 138 263 135 135 263 136 136 263 138 138 264 136 136 264 453 453 264 460 460 265 458 458 265 138 138 265 138 138 266 458 458 266 137 137 266 138 138 267 137 137 267 455 455 267 463 463 268 462 462 268 138 138 268 138 138 269 462 462 269 461 461 269 138 138 270 461 461 270 460 460 270 467 467 271 466 466 271 138 138 271 138 138 272 466 466 272 464 464 272 138 138 273 464 464 273 463 463 273 470 470 274 139 139 274 138 138 274 138 138 275 139 139 275 468 468 275 138 138 276 468 468 276 467 467 276 142 142 277 140 140 277 138 138 277 138 138 278 140 140 278 141 141 278 138 138 279 141 141 279 470 470 279 477 477 280 476 476 280 138 138 280 138 138 281 476 476 281 474 474 281 138 138 282 474 474 282 142 142 282 480 480 283 143 143 283 138 138 283 138 138 284 143 143 284 144 144 284 138 138 285 144 144 285 477 477 285 219 219 286 268 268 286 270 270 286 219 219 287 145 145 287 268 268 287 268 268 288 145 145 288 46 46 288 268 268 289 46 46 289 266 266 289 266 266 290 46 46 290 146 146 290 266 266 291 146 146 291 264 264 291 264 264 292 146 146 292 147 147 292 264 264 293 147 147 293 149 149 293 149 149 294 147 147 294 148 148 294 148 148 295 42 42 295 149 149 295 149 149 296 42 42 296 41 41 296 149 149 297 41 41 297 150 150 297 41 41 298 151 151 298 150 150 298 150 150 299 151 151 299 38 38 299 150 150 300 38 38 300 152 152 300 152 152 301 38 38 301 37 37 301 152 152 302 37 37 302 153 153 302 37 37 303 33 33 303 153 153 303 153 153 304 33 33 304 32 32 304 153 153 305 32 32 305 260 260 305 32 32 306 30 30 306 260 260 306 260 260 307 30 30 307 29 29 307 260 260 308 29 29 308 154 154 308 154 154 309 29 29 309 156 156 309 154 154 310 156 156 310 155 155 310 155 155 311 156 156 311 27 27 311 155 155 312 27 27 312 157 157 312 157 157 313 27 27 313 26 26 313 26 26 314 24 24 314 157 157 314 157 157 315 24 24 315 22 22 315 157 157 316 22 22 316 158 158 316 22 22 317 19 19 317 158 158 317 158 158 318 19 19 318 159 159 318 158 158 319 159 159 319 160 160 319 160 160 320 159 159 320 161 161 320 160 160 321 161 161 321 254 254 321 254 254 322 161 161 322 162 162 322 254 254 323 162 162 323 253 253 323 253 253 324 162 162 324 163 163 324 163 163 325 164 164 325 253 253 325 253 253 326 164 164 326 165 165 326 253 253 327 165 165 327 252 252 327 252 252 328 165 165 328 166 166 328 252 252 329 166 166 329 167 167 329 167 167 330 166 166 330 17 17 330 167 167 331 17 17 331 250 250 331 250 250 332 17 17 332 14 14 332 14 14 333 168 168 333 250 250 333 250 250 334 168 168 334 169 169 334 250 250 335 169 169 335 170 170 335 169 169 336 171 171 336 170 170 336 170 170 337 171 171 337 11 11 337 170 170 338 11 11 338 172 172 338 172 172 339 11 11 339 173 173 339 172 172 340 173 173 340 247 247 340 247 247 341 173 173 341 10 10 341 247 247 342 10 10 342 174 174 342 174 174 343 10 10 343 7 7 343 7 7 344 5 5 344 174 174 344 174 174 345 5 5 345 175 175 345 174 174 346 175 175 346 176 176 346 176 176 347 175 175 347 177 177 347 176 176 348 177 177 348 179 179 348 177 177 349 178 178 349 179 179 349 179 179 350 178 178 350 180 180 350 179 179 351 180 180 351 182 182 351 180 180 352 181 181 352 182 182 352 182 182 353 181 181 353 102 102 353 182 182 354 102 102 354 242 242 354 102 102 355 101 101 355 242 242 355 242 242 356 101 101 356 100 100 356 242 242 357 100 100 357 240 240 357 240 240 358 100 100 358 97 97 358 240 240 359 97 97 359 239 239 359 239 239 360 97 97 360 183 183 360 239 239 361 183 183 361 185 185 361 185 185 362 183 183 362 184 184 362 184 184 363 95 95 363 185 185 363 185 185 364 95 95 364 186 186 364 185 185 365 186 186 365 237 237 365 237 237 366 186 186 366 187 187 366 237 237 367 187 187 367 188 188 367 187 187 368 92 92 368 188 188 368 188 188 369 92 92 369 90 90 369 188 188 370 90 90 370 189 189 370 90 90 371 190 190 371 189 189 371 189 189 372 190 190 372 191 191 372 189 189 373 191 191 373 235 235 373 191 191 374 192 192 374 235 235 374 235 235 375 192 192 375 86 86 375 235 235 376 86 86 376 193 193 376 193 193 377 86 86 377 85 85 377 193 193 378 85 85 378 194 194 378 194 194 379 85 85 379 195 195 379 194 194 380 195 195 380 196 196 380 196 196 381 195 195 381 83 83 381 83 83 382 82 82 382 196 196 382 196 196 383 82 82 383 197 197 383 196 196 384 197 197 384 198 198 384 198 198 385 197 197 385 79 79 385 198 198 386 79 79 386 199 199 386 79 79 387 77 77 387 199 199 387 199 199 388 77 77 388 76 76 388 199 199 389 76 76 389 200 200 389 76 76 390 74 74 390 200 200 390 200 200 391 74 74 391 72 72 391 200 200 392 72 72 392 230 230 392 72 72 393 201 201 393 230 230 393 230 230 394 201 201 394 202 202 394 230 230 395 202 202 395 229 229 395 229 229 396 202 202 396 203 203 396 229 229 397 203 203 397 204 204 397 204 204 398 203 203 398 206 206 398 204 204 399 206 206 399 205 205 399 205 205 400 206 206 400 207 207 400 207 207 401 208 208 401 205 205 401 205 205 402 208 208 402 67 67 402 205 205 403 67 67 403 226 226 403 226 226 404 67 67 404 65 65 404 226 226 405 65 65 405 209 209 405 65 65 406 64 64 406 209 209 406 209 209 407 64 64 407 210 210 407 209 209 408 210 210 408 223 223 408 210 210 409 62 62 409 223 223 409 223 223 410 62 62 410 60 60 410 223 223 411 60 60 411 222 222 411 60 60 412 59 59 412 222 222 412 222 222 413 59 59 413 55 55 413 222 222 414 55 55 414 221 221 414 221 221 415 55 55 415 211 211 415 221 221 416 211 211 416 212 212 416 212 212 417 211 211 417 54 54 417 212 212 418 54 54 418 220 220 418 220 220 419 54 54 419 52 52 419 52 52 420 51 51 420 220 220 420 220 220 421 51 51 421 213 213 421 220 220 422 213 213 422 214 214 422 214 214 423 213 213 423 215 215 423 214 214 424 215 215 424 216 216 424 216 216 425 215 215 425 217 217 425 216 216 426 217 217 426 270 270 426 270 270 427 217 217 427 218 218 427 270 270 428 218 218 428 219 219 428 214 214 429 272 272 429 220 220 429 220 220 430 272 272 430 275 275 430 220 220 431 275 275 431 212 212 431 212 212 432 275 275 432 277 277 432 212 212 433 277 277 433 221 221 433 221 221 434 277 277 434 278 278 434 221 221 435 278 278 435 222 222 435 222 222 436 278 278 436 224 224 436 222 222 437 224 224 437 223 223 437 223 223 438 224 224 438 281 281 438 223 223 439 281 281 439 209 209 439 209 209 440 281 281 440 225 225 440 209 209 441 225 225 441 226 226 441 226 226 442 225 225 442 283 283 442 226 226 443 283 283 443 205 205 443 205 205 444 283 283 444 227 227 444 205 205 445 227 227 445 204 204 445 204 204 446 227 227 446 228 228 446 204 204 447 228 228 447 229 229 447 229 229 448 228 228 448 231 231 448 229 229 449 231 231 449 230 230 449 230 230 450 231 231 450 288 288 450 230 230 451 288 288 451 200 200 451 200 200 452 288 288 452 232 232 452 200 200 453 232 232 453 199 199 453 199 199 454 232 232 454 233 233 454 199 199 455 233 233 455 198 198 455 198 198 456 233 233 456 234 234 456 198 198 457 234 234 457 196 196 457 196 196 458 234 234 458 292 292 458 196 196 459 292 292 459 194 194 459 194 194 460 292 292 460 293 293 460 194 194 461 293 293 461 193 193 461 193 193 462 293 293 462 294 294 462 193 193 463 294 294 463 235 235 463 235 235 464 294 294 464 236 236 464 235 235 465 236 236 465 189 189 465 189 189 466 236 236 466 297 297 466 189 189 467 297 297 467 188 188 467 188 188 468 297 297 468 298 298 468 188 188 469 298 298 469 237 237 469 237 237 470 298 298 470 238 238 470 237 237 471 238 238 471 185 185 471 185 185 472 238 238 472 299 299 472 185 185 473 299 299 473 239 239 473 239 239 474 299 299 474 241 241 474 239 239 475 241 241 475 240 240 475 240 240 476 241 241 476 301 301 476 240 240 477 301 301 477 242 242 477 242 242 478 301 301 478 243 243 478 242 242 479 243 243 479 182 182 479 182 182 480 243 243 480 303 303 480 182 182 481 303 303 481 179 179 481 179 179 482 303 303 482 244 244 482 179 179 483 244 244 483 176 176 483 176 176 484 244 244 484 245 245 484 176 176 485 245 245 485 174 174 485 174 174 486 245 245 486 246 246 486 174 174 487 246 246 487 247 247 487 247 247 488 246 246 488 248 248 488 247 247 489 248 248 489 172 172 489 172 172 490 248 248 490 249 249 490 172 172 491 249 249 491 170 170 491 170 170 492 249 249 492 308 308 492 170 170 493 308 308 493 250 250 493 250 250 494 308 308 494 309 309 494 250 250 495 309 309 495 167 167 495 167 167 496 309 309 496 251 251 496 167 167 497 251 251 497 252 252 497 252 252 498 251 251 498 310 310 498 252 252 499 310 310 499 253 253 499 253 253 500 310 310 500 255 255 500 253 253 501 255 255 501 254 254 501 254 254 502 255 255 502 256 256 502 254 254 503 256 256 503 160 160 503 160 160 504 256 256 504 257 257 504 160 160 505 257 257 505 158 158 505 158 158 506 257 257 506 258 258 506 158 158 507 258 258 507 157 157 507 157 157 508 258 258 508 259 259 508 157 157 509 259 259 509 155 155 509 155 155 510 259 259 510 316 316 510 155 155 511 316 316 511 154 154 511 154 154 512 316 316 512 261 261 512 154 154 513 261 261 513 260 260 513 260 260 514 261 261 514 319 319 514 260 260 515 319 319 515 153 153 515 153 153 516 319 319 516 262 262 516 153 153 517 262 262 517 152 152 517 152 152 518 262 262 518 321 321 518 152 152 519 321 321 519 150 150 519 150 150 520 321 321 520 263 263 520 150 150 521 263 263 521 149 149 521 149 149 522 263 263 522 322 322 522 149 149 523 322 322 523 264 264 523 264 264 524 322 322 524 265 265 524 264 264 525 265 265 525 266 266 525 266 266 526 265 265 526 267 267 526 266 266 527 267 267 527 268 268 527 268 268 528 267 267 528 269 269 528 268 268 529 269 269 529 270 270 529 270 270 530 269 269 530 325 325 530 270 270 531 325 325 531 216 216 531 216 216 532 325 325 532 271 271 532 216 216 533 271 271 533 214 214 533 214 214 534 271 271 534 272 272 534 271 271 535 273 273 535 272 272 535 272 272 536 273 273 536 274 274 536 272 272 537 274 274 537 275 275 537 275 275 538 274 274 538 329 329 538 275 275 539 329 329 539 277 277 539 277 277 540 329 329 540 276 276 540 277 277 541 276 276 541 278 278 541 278 278 542 276 276 542 279 279 542 278 278 543 279 279 543 224 224 543 224 224 544 279 279 544 280 280 544 224 224 545 280 280 545 281 281 545 281 281 546 280 280 546 332 332 546 281 281 547 332 332 547 225 225 547 225 225 548 332 332 548 282 282 548 225 225 549 282 282 549 283 283 549 283 283 550 282 282 550 284 284 550 283 283 551 284 284 551 227 227 551 227 227 552 284 284 552 285 285 552 227 227 553 285 285 553 228 228 553 228 228 554 285 285 554 286 286 554 228 228 555 286 286 555 231 231 555 231 231 556 286 286 556 287 287 556 231 231 557 287 287 557 288 288 557 288 288 558 287 287 558 289 289 558 288 288 559 289 289 559 232 232 559 232 232 560 289 289 560 290 290 560 232 232 561 290 290 561 233 233 561 233 233 562 290 290 562 291 291 562 233 233 563 291 291 563 234 234 563 234 234 564 291 291 564 336 336 564 234 234 565 336 336 565 292 292 565 292 292 566 336 336 566 337 337 566 292 292 567 337 337 567 293 293 567 293 293 568 337 337 568 338 338 568 293 293 569 338 338 569 294 294 569 294 294 570 338 338 570 295 295 570 294 294 571 295 295 571 236 236 571 236 236 572 295 295 572 296 296 572 236 236 573 296 296 573 297 297 573 297 297 574 296 296 574 343 343 574 297 297 575 343 343 575 298 298 575 298 298 576 343 343 576 344 344 576 298 298 577 344 344 577 238 238 577 238 238 578 344 344 578 345 345 578 238 238 579 345 345 579 299 299 579 299 299 580 345 345 580 300 300 580 299 299 581 300 300 581 241 241 581 241 241 582 300 300 582 346 346 582 241 241 583 346 346 583 301 301 583 301 301 584 346 346 584 302 302 584 301 301 585 302 302 585 243 243 585 243 243 586 302 302 586 348 348 586 243 243 587 348 348 587 303 303 587 303 303 588 348 348 588 304 304 588 303 303 589 304 304 589 244 244 589 244 244 590 304 304 590 305 305 590 244 244 591 305 305 591 245 245 591 245 245 592 305 305 592 350 350 592 245 245 593 350 350 593 246 246 593 246 246 594 350 350 594 306 306 594 246 246 595 306 306 595 248 248 595 248 248 596 306 306 596 351 351 596 248 248 597 351 351 597 249 249 597 249 249 598 351 351 598 307 307 598 249 249 599 307 307 599 308 308 599 308 308 600 307 307 600 354 354 600 308 308 601 354 354 601 309 309 601 309 309 602 354 354 602 355 355 602 309 309 603 355 355 603 251 251 603 251 251 604 355 355 604 356 356 604 251 251 605 356 356 605 310 310 605 310 310 606 356 356 606 357 357 606 310 310 607 357 357 607 255 255 607 255 255 608 357 357 608 311 311 608 255 255 609 311 311 609 256 256 609 256 256 610 311 311 610 312 312 610 256 256 611 312 312 611 257 257 611 257 257 612 312 312 612 313 313 612 257 257 613 313 313 613 258 258 613 258 258 614 313 313 614 314 314 614 258 258 615 314 314 615 259 259 615 259 259 616 314 314 616 315 315 616 259 259 617 315 315 617 316 316 617 316 316 618 315 315 618 317 317 618 316 316 619 317 317 619 261 261 619 261 261 620 317 317 620 318 318 620 261 261 621 318 318 621 319 319 621 319 319 622 318 318 622 360 360 622 319 319 623 360 360 623 262 262 623 262 262 624 360 360 624 320 320 624 262 262 625 320 320 625 321 321 625 321 321 626 320 320 626 362 362 626 321 321 627 362 362 627 263 263 627 263 263 628 362 362 628 365 365 628 263 263 629 365 365 629 322 322 629 322 322 630 365 365 630 323 323 630 322 322 631 323 323 631 265 265 631 265 265 632 323 323 632 324 324 632 265 265 633 324 324 633 267 267 633 267 267 634 324 324 634 367 367 634 267 267 635 367 367 635 269 269 635 269 269 636 367 367 636 368 368 636 269 269 637 368 368 637 325 325 637 325 325 638 368 368 638 369 369 638 325 325 639 369 369 639 271 271 639 271 271 640 369 369 640 273 273 640 369 369 641 371 371 641 273 273 641 273 273 642 371 371 642 326 326 642 273 273 643 326 326 643 274 274 643 274 274 644 326 326 644 327 327 644 274 274 645 327 327 645 329 329 645 329 329 646 327 327 646 328 328 646 329 329 647 328 328 647 276 276 647 276 276 648 328 328 648 330 330 648 276 276 649 330 330 649 279 279 649 279 279 650 330 330 650 331 331 650 279 279 651 331 331 651 280 280 651 280 280 652 331 331 652 375 375 652 280 280 653 375 375 653 332 332 653 332 332 654 375 375 654 377 377 654 332 332 655 377 377 655 282 282 655 282 282 656 377 377 656 379 379 656 282 282 657 379 379 657 284 284 657 284 284 658 379 379 658 333 333 658 284 284 659 333 333 659 285 285 659 285 285 660 333 333 660 381 381 660 285 285 661 381 381 661 286 286 661 286 286 662 381 381 662 383 383 662 286 286 663 383 383 663 287 287 663 287 287 664 383 383 664 334 334 664 287 287 665 334 334 665 289 289 665 289 289 666 334 334 666 385 385 666 289 289 667 385 385 667 290 290 667 290 290 668 385 385 668 335 335 668 290 290 669 335 335 669 291 291 669 291 291 670 335 335 670 386 386 670 291 291 671 386 386 671 336 336 671 336 336 672 386 386 672 389 389 672 336 336 673 389 389 673 337 337 673 337 337 674 389 389 674 339 339 674 337 337 675 339 339 675 338 338 675 338 338 676 339 339 676 340 340 676 338 338 677 340 340 677 295 295 677 295 295 678 340 340 678 341 341 678 295 295 679 341 341 679 296 296 679 296 296 680 341 341 680 342 342 680 296 296 681 342 342 681 343 343 681 343 343 682 342 342 682 393 393 682 343 343 683 393 393 683 344 344 683 344 344 684 393 393 684 394 394 684 344 344 685 394 394 685 345 345 685 345 345 686 394 394 686 396 396 686 345 345 687 396 396 687 300 300 687 300 300 688 396 396 688 397 397 688 300 300 689 397 397 689 346 346 689 346 346 690 397 397 690 347 347 690 346 346 691 347 347 691 302 302 691 302 302 692 347 347 692 398 398 692 302 302 693 398 398 693 348 348 693 348 348 694 398 398 694 400 400 694 348 348 695 400 400 695 304 304 695 304 304 696 400 400 696 349 349 696 304 304 697 349 349 697 305 305 697 305 305 698 349 349 698 402 402 698 305 305 699 402 402 699 350 350 699 350 350 700 402 402 700 403 403 700 350 350 701 403 403 701 306 306 701 306 306 702 403 403 702 404 404 702 306 306 703 404 404 703 351 351 703 351 351 704 404 404 704 352 352 704 351 351 705 352 352 705 307 307 705 307 307 706 352 352 706 406 406 706 307 307 707 406 406 707 354 354 707 354 354 708 406 406 708 353 353 708 354 354 709 353 353 709 355 355 709 355 355 710 353 353 710 409 409 710 355 355 711 409 409 711 356 356 711 356 356 712 409 409 712 410 410 712 356 356 713 410 410 713 357 357 713 357 357 714 410 410 714 411 411 714 357 357 715 411 411 715 311 311 715 311 311 716 411 411 716 413 413 716 311 311 717 413 413 717 312 312 717 312 312 718 413 413 718 358 358 718 312 312 719 358 358 719 313 313 719 313 313 720 358 358 720 359 359 720 313 313 721 359 359 721 314 314 721 314 314 722 359 359 722 417 417 722 314 314 723 417 417 723 315 315 723 315 315 724 417 417 724 418 418 724 315 315 725 418 418 725 317 317 725 317 317 726 418 418 726 420 420 726 317 317 727 420 420 727 318 318 727 318 318 728 420 420 728 421 421 728 318 318 729 421 421 729 360 360 729 360 360 730 421 421 730 361 361 730 360 360 731 361 361 731 320 320 731 320 320 732 361 361 732 363 363 732 320 320 733 363 363 733 362 362 733 362 362 734 363 363 734 364 364 734 362 362 735 364 364 735 365 365 735 365 365 736 364 364 736 366 366 736 365 365 737 366 366 737 323 323 737 323 323 738 366 366 738 424 424 738 323 323 739 424 424 739 324 324 739 324 324 740 424 424 740 425 425 740 324 324 741 425 425 741 367 367 741 367 367 742 425 425 742 426 426 742 367 367 743 426 426 743 368 368 743 368 368 744 426 426 744 370 370 744 368 368 745 370 370 745 369 369 745 369 369 746 370 370 746 371 371 746 370 370 747 427 427 747 371 371 747 371 371 748 427 427 748 372 372 748 371 371 749 372 372 749 326 326 749 326 326 750 372 372 750 430 430 750 326 326 751 430 430 751 327 327 751 327 327 752 430 430 752 373 373 752 327 327 753 373 373 753 328 328 753 328 328 754 373 373 754 432 432 754 328 328 755 432 432 755 330 330 755 330 330 756 432 432 756 374 374 756 330 330 757 374 374 757 331 331 757 331 331 758 374 374 758 433 433 758 331 331 759 433 433 759 375 375 759 375 375 760 433 433 760 376 376 760 375 375 761 376 376 761 377 377 761 377 377 762 376 376 762 378 378 762 377 377 763 378 378 763 379 379 763 379 379 764 378 378 764 380 380 764 379 379 765 380 380 765 333 333 765 333 333 766 380 380 766 435 435 766 333 333 767 435 435 767 381 381 767 381 381 768 435 435 768 382 382 768 381 381 769 382 382 769 383 383 769 383 383 770 382 382 770 384 384 770 383 383 771 384 384 771 334 334 771 334 334 772 384 384 772 437 437 772 334 334 773 437 437 773 385 385 773 385 385 774 437 437 774 439 439 774 385 385 775 439 439 775 335 335 775 335 335 776 439 439 776 387 387 776 335 335 777 387 387 777 386 386 777 386 386 778 387 387 778 388 388 778 386 386 779 388 388 779 389 389 779 389 389 780 388 388 780 442 442 780 389 389 781 442 442 781 339 339 781 339 339 782 442 442 782 390 390 782 339 339 783 390 390 783 340 340 783 340 340 784 390 390 784 391 391 784 340 340 785 391 391 785 341 341 785 341 341 786 391 391 786 392 392 786 341 341 787 392 392 787 342 342 787 342 342 788 392 392 788 445 445 788 342 342 789 445 445 789 393 393 789 393 393 790 445 445 790 446 446 790 393 393 791 446 446 791 394 394 791 394 394 792 446 446 792 395 395 792 394 394 793 395 395 793 396 396 793 396 396 794 395 395 794 448 448 794 396 396 795 448 448 795 397 397 795 397 397 796 448 448 796 451 451 796 397 397 797 451 451 797 347 347 797 347 347 798 451 451 798 452 452 798 347 347 799 452 452 799 398 398 799 398 398 800 452 452 800 399 399 800 398 398 801 399 399 801 400 400 801 400 400 802 399 399 802 454 454 802 400 400 803 454 454 803 349 349 803 349 349 804 454 454 804 401 401 804 349 349 805 401 401 805 402 402 805 402 402 806 401 401 806 456 456 806 402 402 807 456 456 807 403 403 807 403 403 808 456 456 808 457 457 808 403 403 809 457 457 809 404 404 809 404 404 810 457 457 810 459 459 810 404 404 811 459 459 811 352 352 811 352 352 812 459 459 812 405 405 812 352 352 813 405 405 813 406 406 813 406 406 814 405 405 814 407 407 814 406 406 815 407 407 815 353 353 815 353 353 816 407 407 816 408 408 816 353 353 817 408 408 817 409 409 817 409 409 818 408 408 818 465 465 818 409 409 819 465 465 819 410 410 819 410 410 820 465 465 820 412 412 820 410 410 821 412 412 821 411 411 821 411 411 822 412 412 822 414 414 822 411 411 823 414 414 823 413 413 823 413 413 824 414 414 824 415 415 824 413 413 825 415 415 825 358 358 825 358 358 826 415 415 826 469 469 826 358 358 827 469 469 827 359 359 827 359 359 828 469 469 828 416 416 828 359 359 829 416 416 829 417 417 829 417 417 830 416 416 830 471 471 830 417 417 831 471 471 831 418 418 831 418 418 832 471 471 832 419 419 832 418 418 833 419 419 833 420 420 833 420 420 834 419 419 834 472 472 834 420 420 835 472 472 835 421 421 835 421 421 836 472 472 836 473 473 836 421 421 837 473 473 837 361 361 837 361 361 838 473 473 838 475 475 838 361 361 839 475 475 839 363 363 839 363 363 840 475 475 840 422 422 840 363 363 841 422 422 841 364 364 841 364 364 842 422 422 842 423 423 842 364 364 843 423 423 843 366 366 843 366 366 844 423 423 844 478 478 844 366 366 845 478 478 845 424 424 845 424 424 846 478 478 846 479 479 846 424 424 847 479 479 847 425 425 847 425 425 848 479 479 848 481 481 848 425 425 849 481 481 849 426 426 849 426 426 850 481 481 850 428 428 850 426 426 851 428 428 851 370 370 851 370 370 852 428 428 852 427 427 852 428 428 853 120 120 853 427 427 853 427 427 854 120 120 854 121 121 854 427 427 855 121 121 855 372 372 855 372 372 856 121 121 856 429 429 856 372 372 857 429 429 857 430 430 857 430 430 858 429 429 858 431 431 858 430 430 859 431 431 859 373 373 859 373 373 860 431 431 860 124 124 860 373 373 861 124 124 861 432 432 861 432 432 862 124 124 862 123 123 862 432 432 863 123 123 863 374 374 863 374 374 864 123 123 864 122 122 864 374 374 865 122 122 865 433 433 865 433 433 866 122 122 866 125 125 866 433 433 867 125 125 867 376 376 867 376 376 868 125 125 868 434 434 868 376 376 869 434 434 869 378 378 869 378 378 870 434 434 870 128 128 870 378 378 871 128 128 871 380 380 871 380 380 872 128 128 872 127 127 872 380 380 873 127 127 873 435 435 873 435 435 874 127 127 874 126 126 874 435 435 875 126 126 875 382 382 875 382 382 876 126 126 876 436 436 876 382 382 877 436 436 877 384 384 877 384 384 878 436 436 878 130 130 878 384 384 879 130 130 879 437 437 879 437 437 880 130 130 880 438 438 880 437 437 881 438 438 881 439 439 881 439 439 882 438 438 882 129 129 882 439 439 883 129 129 883 387 387 883 387 387 884 129 129 884 440 440 884 387 387 885 440 440 885 388 388 885 388 388 886 440 440 886 131 131 886 388 388 887 131 131 887 442 442 887 442 442 888 131 131 888 441 441 888 442 442 889 441 441 889 390 390 889 390 390 890 441 441 890 133 133 890 390 390 891 133 133 891 391 391 891 391 391 892 133 133 892 443 443 892 391 391 893 443 443 893 392 392 893 392 392 894 443 443 894 132 132 894 392 392 895 132 132 895 445 445 895 445 445 896 132 132 896 444 444 896 445 445 897 444 444 897 446 446 897 446 446 898 444 444 898 447 447 898 446 446 899 447 447 899 395 395 899 395 395 900 447 447 900 449 449 900 395 395 901 449 449 901 448 448 901 448 448 902 449 449 902 450 450 902 448 448 903 450 450 903 451 451 903 451 451 904 450 450 904 134 134 904 451 451 905 134 134 905 452 452 905 452 452 906 134 134 906 453 453 906 452 452 907 453 453 907 399 399 907 399 399 908 453 453 908 136 136 908 399 399 909 136 136 909 454 454 909 454 454 910 136 136 910 135 135 910 454 454 911 135 135 911 401 401 911 401 401 912 135 135 912 455 455 912 401 401 913 455 455 913 456 456 913 456 456 914 455 455 914 137 137 914 456 456 915 137 137 915 457 457 915 457 457 916 137 137 916 458 458 916 457 457 917 458 458 917 459 459 917 459 459 918 458 458 918 460 460 918 459 459 919 460 460 919 405 405 919 405 405 920 460 460 920 461 461 920 405 405 921 461 461 921 407 407 921 407 407 922 461 461 922 462 462 922 407 407 923 462 462 923 408 408 923 408 408 924 462 462 924 463 463 924 408 408 925 463 463 925 465 465 925 465 465 926 463 463 926 464 464 926 465 465 927 464 464 927 412 412 927 412 412 928 464 464 928 466 466 928 412 412 929 466 466 929 414 414 929 414 414 930 466 466 930 467 467 930 414 414 931 467 467 931 415 415 931 415 415 932 467 467 932 468 468 932 415 415 933 468 468 933 469 469 933 469 469 934 468 468 934 139 139 934 469 469 935 139 139 935 416 416 935 416 416 936 139 139 936 470 470 936 416 416 937 470 470 937 471 471 937 471 471 938 470 470 938 141 141 938 471 471 939 141 141 939 419 419 939 419 419 940 141 141 940 140 140 940 419 419 941 140 140 941 472 472 941 472 472 942 140 140 942 142 142 942 472 472 943 142 142 943 473 473 943 473 473 944 142 142 944 474 474 944 473 473 945 474 474 945 475 475 945 475 475 946 474 474 946 476 476 946 475 475 947 476 476 947 422 422 947 422 422 948 476 476 948 477 477 948 422 422 949 477 477 949 423 423 949 423 423 950 477 477 950 144 144 950 423 423 951 144 144 951 478 478 951 478 478 952 144 144 952 143 143 952 478 478 953 143 143 953 479 479 953 479 479 954 143 143 954 480 480 954 479 479 955 480 480 955 481 481 955 481 481 956 480 480 956 482 482 956 481 481 957 482 482 957 428 428 957 428 428 958 482 482 958 120 120 958 483 483 959 53 53 959 809 809 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 789 789 961 781 781 962 66 66 962 484 484 962 766 766 963 68 68 963 768 768 963 69 69 964 70 70 964 762 762 964 485 485 965 73 73 965 751 751 965 78 78 966 80 80 966 742 742 966 486 486 967 728 728 967 731 731 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 710 710 969 96 96 970 487 487 970 695 695 970 686 686 971 103 103 971 488 488 971 2 2 972 3 3 972 678 678 972 6 6 973 8 8 973 518 518 973 12 12 974 13 13 974 655 655 974 649 649 975 15 15 975 643 643 975 16 16 976 642 642 976 641 641 976 627 627 977 625 625 977 511 511 977 21 21 978 23 23 978 609 609 978 25 25 979 604 604 979 610 610 979 28 28 980 489 489 980 602 602 980 31 31 981 34 34 981 504 504 981 40 40 982 490 490 982 491 491 982 43 43 983 44 44 983 492 492 983 566 566 984 45 45 984 493 493 984 494 494 985 553 553 985 555 555 985 106 106 986 496 496 986 495 495 986 495 495 987 496 496 987 561 561 987 495 495 988 561 561 988 550 550 988 550 550 989 561 561 989 497 497 989 550 550 990 497 497 990 498 498 990 498 498 991 497 497 991 557 557 991 498 498 992 557 557 992 499 499 992 499 499 993 557 557 993 500 500 993 499 499 994 500 500 994 552 552 994 552 552 995 500 500 995 555 555 995 501 501 996 107 107 996 586 586 996 586 586 997 107 107 997 596 596 997 586 586 998 596 596 998 587 587 998 587 587 999 596 596 999 594 594 999 587 587 1000 594 594 1000 588 588 1000 588 588 1001 594 594 1001 502 502 1001 588 588 1002 502 502 1002 503 503 1002 503 503 1003 502 502 1003 591 591 1003 503 503 1004 591 591 1004 589 589 1004 589 589 1005 591 591 1005 504 504 1005 505 505 1006 506 506 1006 508 508 1006 508 508 1007 506 506 1007 507 507 1007 508 508 1008 507 507 1008 509 509 1008 509 509 1009 507 507 1009 631 631 1009 509 509 1010 631 631 1010 622 622 1010 622 622 1011 631 631 1011 629 629 1011 622 622 1012 629 629 1012 623 623 1012 623 623 1013 629 629 1013 628 628 1013 623 623 1014 628 628 1014 510 510 1014 510 510 1015 628 628 1015 511 511 1015 661 661 1016 672 672 1016 512 512 1016 512 512 1017 672 672 1017 514 514 1017 512 512 1018 514 514 1018 513 513 1018 513 513 1019 514 514 1019 671 671 1019 513 513 1020 671 671 1020 516 516 1020 516 516 1021 671 671 1021 515 515 1021 516 516 1022 515 515 1022 517 517 1022 517 517 1023 515 515 1023 668 668 1023 517 517 1024 668 668 1024 664 664 1024 664 664 1025 668 668 1025 518 518 1025 112 112 1026 111 111 1026 685 685 1026 685 685 1027 111 111 1027 519 519 1027 685 685 1028 519 519 1028 520 520 1028 520 520 1029 519 519 1029 521 521 1029 520 520 1030 521 521 1030 682 682 1030 682 682 1031 521 521 1031 689 689 1031 682 682 1032 689 689 1032 680 680 1032 680 680 1033 689 689 1033 522 522 1033 680 680 1034 522 522 1034 679 679 1034 679 679 1035 522 522 1035 488 488 1035 523 523 1036 524 524 1036 691 691 1036 691 691 1037 524 524 1037 526 526 1037 691 691 1038 526 526 1038 525 525 1038 525 525 1039 526 526 1039 699 699 1039 525 525 1040 699 699 1040 527 527 1040 527 527 1041 699 699 1041 698 698 1041 527 527 1042 698 698 1042 528 528 1042 528 528 1043 698 698 1043 529 529 1043 528 528 1044 529 529 1044 694 694 1044 694 694 1045 529 529 1045 695 695 1045 713 713 1046 530 530 1046 531 531 1046 531 531 1047 530 530 1047 720 720 1047 531 531 1048 720 720 1048 533 533 1048 533 533 1049 720 720 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 718 718 1051 534 534 1052 718 718 1052 711 711 1052 711 711 1053 718 718 1053 535 535 1053 711 711 1054 535 535 1054 709 709 1054 709 709 1055 535 535 1055 536 536 1055 722 722 1056 114 114 1056 724 724 1056 724 724 1057 114 114 1057 537 537 1057 724 724 1058 537 537 1058 538 538 1058 538 538 1059 537 537 1059 735 735 1059 538 538 1060 735 735 1060 539 539 1060 539 539 1061 735 735 1061 540 540 1061 539 539 1062 540 540 1062 725 725 1062 725 725 1063 540 540 1063 732 732 1063 725 725 1064 732 732 1064 729 729 1064 729 729 1065 732 732 1065 731 731 1065 541 541 1066 755 755 1066 542 542 1066 542 542 1067 755 755 1067 543 543 1067 542 542 1068 543 543 1068 747 747 1068 747 747 1069 543 543 1069 754 754 1069 747 747 1070 754 754 1070 746 746 1070 746 746 1071 754 754 1071 544 544 1071 746 746 1072 544 544 1072 744 744 1072 744 744 1073 544 544 1073 545 545 1073 744 744 1074 545 545 1074 743 743 1074 743 743 1075 545 545 1075 751 751 1075 786 786 1076 117 117 1076 547 547 1076 547 547 1077 117 117 1077 546 546 1077 547 547 1078 546 546 1078 548 548 1078 548 548 1079 546 546 1079 793 793 1079 548 548 1080 793 793 1080 785 785 1080 785 785 1081 793 793 1081 792 792 1081 785 785 1082 792 792 1082 783 783 1082 783 783 1083 792 792 1083 791 791 1083 783 783 1084 791 791 1084 782 782 1084 782 782 1085 791 791 1085 789 789 1085 813 813 1086 106 106 1086 549 549 1086 549 549 1087 106 106 1087 495 495 1087 549 549 1088 495 495 1088 816 816 1088 816 816 1089 495 495 1089 550 550 1089 816 816 1090 550 550 1090 818 818 1090 818 818 1091 550 550 1091 498 498 1091 818 818 1092 498 498 1092 819 819 1092 819 819 1093 498 498 1093 499 499 1093 819 819 1094 499 499 1094 551 551 1094 551 551 1095 499 499 1095 552 552 1095 551 551 1096 552 552 1096 820 820 1096 820 820 1097 552 552 1097 48 48 1097 555 555 1098 553 553 1098 552 552 1098 552 552 1099 553 553 1099 47 47 1099 552 552 1100 47 47 1100 48 48 1100 554 554 1101 494 494 1101 565 565 1101 565 565 1102 494 494 1102 555 555 1102 565 565 1103 555 555 1103 556 556 1103 556 556 1104 555 555 1104 500 500 1104 556 556 1105 500 500 1105 558 558 1105 558 558 1106 500 500 1106 557 557 1106 558 558 1107 557 557 1107 559 559 1107 559 559 1108 557 557 1108 497 497 1108 559 559 1109 497 497 1109 563 563 1109 563 563 1110 497 497 1110 561 561 1110 563 563 1111 561 561 1111 560 560 1111 560 560 1112 561 561 1112 496 496 1112 560 560 1113 562 562 1113 563 563 1113 563 563 1114 562 562 1114 564 564 1114 563 563 1115 564 564 1115 559 559 1115 559 559 1116 564 564 1116 569 569 1116 559 559 1117 569 569 1117 558 558 1117 558 558 1118 569 569 1118 568 568 1118 558 558 1119 568 568 1119 556 556 1119 556 556 1120 568 568 1120 567 567 1120 556 556 1121 567 567 1121 565 565 1121 565 565 1122 567 567 1122 493 493 1122 565 565 1123 493 493 1123 554 554 1123 554 554 1124 493 493 1124 45 45 1124 44 44 1125 566 566 1125 492 492 1125 492 492 1126 566 566 1126 493 493 1126 492 492 1127 493 493 1127 574 574 1127 574 574 1128 493 493 1128 567 567 1128 574 574 1129 567 567 1129 575 575 1129 575 575 1130 567 567 1130 568 568 1130 575 575 1131 568 568 1131 570 570 1131 570 570 1132 568 568 1132 569 569 1132 570 570 1133 569 569 1133 577 577 1133 577 577 1134 569 569 1134 564 564 1134 577 577 1135 564 564 1135 571 571 1135 571 571 1136 564 564 1136 562 562 1136 490 490 1137 43 43 1137 491 491 1137 491 491 1138 43 43 1138 492 492 1138 491 491 1139 492 492 1139 572 572 1139 572 572 1140 492 492 1140 574 574 1140 572 572 1141 574 574 1141 573 573 1141 573 573 1142 574 574 1142 575 575 1142 573 573 1143 575 575 1143 576 576 1143 576 576 1144 575 575 1144 570 570 1144 576 576 1145 570 570 1145 584 584 1145 584 584 1146 570 570 1146 577 577 1146 584 584 1147 577 577 1147 578 578 1147 578 578 1148 577 577 1148 571 571 1148 39 39 1149 40 40 1149 579 579 1149 579 579 1150 40 40 1150 491 491 1150 579 579 1151 491 491 1151 580 580 1151 580 580 1152 491 491 1152 572 572 1152 580 580 1153 572 572 1153 581 581 1153 581 581 1154 572 572 1154 573 573 1154 581 581 1155 573 573 1155 582 582 1155 582 582 1156 573 573 1156 576 576 1156 582 582 1157 576 576 1157 583 583 1157 583 583 1158 576 576 1158 584 584 1158 583 583 1159 584 584 1159 585 585 1159 585 585 1160 584 584 1160 578 578 1160 585 585 1161 501 501 1161 583 583 1161 583 583 1162 501 501 1162 586 586 1162 583 583 1163 586 586 1163 582 582 1163 582 582 1164 586 586 1164 587 587 1164 582 582 1165 587 587 1165 581 581 1165 581 581 1166 587 587 1166 588 588 1166 581 581 1167 588 588 1167 580 580 1167 580 580 1168 588 588 1168 503 503 1168 580 580 1169 503 503 1169 579 579 1169 579 579 1170 503 503 1170 589 589 1170 579 579 1171 589 589 1171 39 39 1171 39 39 1172 589 589 1172 36 36 1172 504 504 1173 34 34 1173 589 589 1173 589 589 1174 34 34 1174 35 35 1174 589 589 1175 35 35 1175 36 36 1175 603 603 1176 31 31 1176 601 601 1176 601 601 1177 31 31 1177 504 504 1177 601 601 1178 504 504 1178 590 590 1178 590 590 1179 504 504 1179 591 591 1179 590 590 1180 591 591 1180 592 592 1180 592 592 1181 591 591 1181 502 502 1181 592 592 1182 502 502 1182 593 593 1182 593 593 1183 502 502 1183 594 594 1183 593 593 1184 594 594 1184 595 595 1184 595 595 1185 594 594 1185 596 596 1185 595 595 1186 596 596 1186 597 597 1186 597 597 1187 596 596 1187 107 107 1187 597 597 1188 598 598 1188 595 595 1188 595 595 1189 598 598 1189 608 608 1189 595 595 1190 608 608 1190 593 593 1190 593 593 1191 608 608 1191 599 599 1191 593 593 1192 599 599 1192 592 592 1192 592 592 1193 599 599 1193 600 600 1193 592 592 1194 600 600 1194 590 590 1194 590 590 1195 600 600 1195 606 606 1195 590 590 1196 606 606 1196 601 601 1196 601 601 1197 606 606 1197 602 602 1197 601 601 1198 602 602 1198 603 603 1198 603 603 1199 602 602 1199 489 489 1199 604 604 1200 28 28 1200 610 610 1200 610 610 1201 28 28 1201 602 602 1201 610 610 1202 602 602 1202 605 605 1202 605 605 1203 602 602 1203 606 606 1203 605 605 1204 606 606 1204 613 613 1204 613 613 1205 606 606 1205 600 600 1205 613 613 1206 600 600 1206 607 607 1206 607 607 1207 600 600 1207 599 599 1207 607 607 1208 599 599 1208 615 615 1208 615 615 1209 599 599 1209 608 608 1209 615 615 1210 608 608 1210 108 108 1210 108 108 1211 608 608 1211 598 598 1211 23 23 1212 25 25 1212 609 609 1212 609 609 1213 25 25 1213 610 610 1213 609 609 1214 610 610 1214 611 611 1214 611 611 1215 610 610 1215 605 605 1215 611 611 1216 605 605 1216 612 612 1216 612 612 1217 605 605 1217 613 613 1217 612 612 1218 613 613 1218 619 619 1218 619 619 1219 613 613 1219 607 607 1219 619 619 1220 607 607 1220 614 614 1220 614 614 1221 607 607 1221 615 615 1221 614 614 1222 615 615 1222 109 109 1222 109 109 1223 615 615 1223 108 108 1223 20 20 1224 21 21 1224 616 616 1224 616 616 1225 21 21 1225 609 609 1225 616 616 1226 609 609 1226 624 624 1226 624 624 1227 609 609 1227 611 611 1227 624 624 1228 611 611 1228 617 617 1228 617 617 1229 611 611 1229 612 612 1229 617 617 1230 612 612 1230 618 618 1230 618 618 1231 612 612 1231 619 619 1231 618 618 1232 619 619 1232 621 621 1232 621 621 1233 619 619 1233 614 614 1233 621 621 1234 614 614 1234 620 620 1234 620 620 1235 614 614 1235 109 109 1235 620 620 1236 505 505 1236 621 621 1236 621 621 1237 505 505 1237 508 508 1237 621 621 1238 508 508 1238 618 618 1238 618 618 1239 508 508 1239 509 509 1239 618 618 1240 509 509 1240 617 617 1240 617 617 1241 509 509 1241 622 622 1241 617 617 1242 622 622 1242 624 624 1242 624 624 1243 622 622 1243 623 623 1243 624 624 1244 623 623 1244 616 616 1244 616 616 1245 623 623 1245 510 510 1245 616 616 1246 510 510 1246 20 20 1246 20 20 1247 510 510 1247 626 626 1247 511 511 1248 625 625 1248 510 510 1248 510 510 1249 625 625 1249 18 18 1249 510 510 1250 18 18 1250 626 626 1250 640 640 1251 627 627 1251 639 639 1251 639 639 1252 627 627 1252 511 511 1252 639 639 1253 511 511 1253 638 638 1253 638 638 1254 511 511 1254 628 628 1254 638 638 1255 628 628 1255 635 635 1255 635 635 1256 628 628 1256 629 629 1256 635 635 1257 629 629 1257 634 634 1257 634 634 1258 629 629 1258 631 631 1258 634 634 1259 631 631 1259 630 630 1259 630 630 1260 631 631 1260 507 507 1260 630 630 1261 507 507 1261 632 632 1261 632 632 1262 507 507 1262 506 506 1262 632 632 1263 633 633 1263 630 630 1263 630 630 1264 633 633 1264 648 648 1264 630 630 1265 648 648 1265 634 634 1265 634 634 1266 648 648 1266 647 647 1266 634 634 1267 647 647 1267 635 635 1267 635 635 1268 647 647 1268 636 636 1268 635 635 1269 636 636 1269 638 638 1269 638 638 1270 636 636 1270 637 637 1270 638 638 1271 637 637 1271 639 639 1271 639 639 1272 637 637 1272 641 641 1272 639 639 1273 641 641 1273 640 640 1273 640 640 1274 641 641 1274 642 642 1274 15 15 1275 16 16 1275 643 643 1275 643 643 1276 16 16 1276 641 641 1276 643 643 1277 641 641 1277 644 644 1277 644 644 1278 641 641 1278 637 637 1278 644 644 1279 637 637 1279 645 645 1279 645 645 1280 637 637 1280 636 636 1280 645 645 1281 636 636 1281 646 646 1281 646 646 1282 636 636 1282 647 647 1282 646 646 1283 647 647 1283 653 653 1283 653 653 1284 647 647 1284 648 648 1284 653 653 1285 648 648 1285 110 110 1285 110 110 1286 648 648 1286 633 633 1286 13 13 1287 649 649 1287 655 655 1287 655 655 1288 649 649 1288 643 643 1288 655 655 1289 643 643 1289 650 650 1289 650 650 1290 643 643 1290 644 644 1290 650 650 1291 644 644 1291 651 651 1291 651 651 1292 644 644 1292 645 645 1292 651 651 1293 645 645 1293 652 652 1293 652 652 1294 645 645 1294 646 646 1294 652 652 1295 646 646 1295 659 659 1295 659 659 1296 646 646 1296 653 653 1296 659 659 1297 653 653 1297 660 660 1297 660 660 1298 653 653 1298 110 110 1298 665 665 1299 12 12 1299 663 663 1299 663 663 1300 12 12 1300 655 655 1300 663 663 1301 655 655 1301 654 654 1301 654 654 1302 655 655 1302 650 650 1302 654 654 1303 650 650 1303 656 656 1303 656 656 1304 650 650 1304 651 651 1304 656 656 1305 651 651 1305 657 657 1305 657 657 1306 651 651 1306 652 652 1306 657 657 1307 652 652 1307 662 662 1307 662 662 1308 652 652 1308 659 659 1308 662 662 1309 659 659 1309 658 658 1309 658 658 1310 659 659 1310 660 660 1310 658 658 1311 661 661 1311 662 662 1311 662 662 1312 661 661 1312 512 512 1312 662 662 1313 512 512 1313 657 657 1313 657 657 1314 512 512 1314 513 513 1314 657 657 1315 513 513 1315 656 656 1315 656 656 1316 513 513 1316 516 516 1316 656 656 1317 516 516 1317 654 654 1317 654 654 1318 516 516 1318 517 517 1318 654 654 1319 517 517 1319 663 663 1319 663 663 1320 517 517 1320 664 664 1320 663 663 1321 664 664 1321 665 665 1321 665 665 1322 664 664 1322 666 666 1322 518 518 1323 8 8 1323 664 664 1323 664 664 1324 8 8 1324 9 9 1324 664 664 1325 9 9 1325 666 666 1325 4 4 1326 6 6 1326 667 667 1326 667 667 1327 6 6 1327 518 518 1327 667 667 1328 518 518 1328 677 677 1328 677 677 1329 518 518 1329 668 668 1329 677 677 1330 668 668 1330 669 669 1330 669 669 1331 668 668 1331 515 515 1331 669 669 1332 515 515 1332 670 670 1332 670 670 1333 515 515 1333 671 671 1333 670 670 1334 671 671 1334 674 674 1334 674 674 1335 671 671 1335 514 514 1335 674 674 1336 514 514 1336 673 673 1336 673 673 1337 514 514 1337 672 672 1337 673 673 1338 675 675 1338 674 674 1338 674 674 1339 675 675 1339 684 684 1339 674 674 1340 684 684 1340 670 670 1340 670 670 1341 684 684 1341 676 676 1341 670 670 1342 676 676 1342 669 669 1342 669 669 1343 676 676 1343 683 683 1343 669 669 1344 683 683 1344 677 677 1344 677 677 1345 683 683 1345 681 681 1345 677 677 1346 681 681 1346 667 667 1346 667 667 1347 681 681 1347 678 678 1347 667 667 1348 678 678 1348 4 4 1348 4 4 1349 678 678 1349 3 3 1349 1 1 1350 2 2 1350 679 679 1350 679 679 1351 2 2 1351 678 678 1351 679 679 1352 678 678 1352 680 680 1352 680 680 1353 678 678 1353 681 681 1353 680 680 1354 681 681 1354 682 682 1354 682 682 1355 681 681 1355 683 683 1355 682 682 1356 683 683 1356 520 520 1356 520 520 1357 683 683 1357 676 676 1357 520 520 1358 676 676 1358 685 685 1358 685 685 1359 676 676 1359 684 684 1359 685 685 1360 684 684 1360 112 112 1360 112 112 1361 684 684 1361 675 675 1361 488 488 1362 103 103 1362 679 679 1362 679 679 1363 103 103 1363 0 0 1363 679 679 1364 0 0 1364 1 1 1364 99 99 1365 686 686 1365 693 693 1365 693 693 1366 686 686 1366 488 488 1366 693 693 1367 488 488 1367 687 687 1367 687 687 1368 488 488 1368 522 522 1368 687 687 1369 522 522 1369 688 688 1369 688 688 1370 522 522 1370 689 689 1370 688 688 1371 689 689 1371 692 692 1371 692 692 1372 689 689 1372 521 521 1372 692 692 1373 521 521 1373 690 690 1373 690 690 1374 521 521 1374 519 519 1374 690 690 1375 519 519 1375 113 113 1375 113 113 1376 519 519 1376 111 111 1376 113 113 1377 523 523 1377 690 690 1377 690 690 1378 523 523 1378 691 691 1378 690 690 1379 691 691 1379 692 692 1379 692 692 1380 691 691 1380 525 525 1380 692 692 1381 525 525 1381 688 688 1381 688 688 1382 525 525 1382 527 527 1382 688 688 1383 527 527 1383 687 687 1383 687 687 1384 527 527 1384 528 528 1384 687 687 1385 528 528 1385 693 693 1385 693 693 1386 528 528 1386 694 694 1386 693 693 1387 694 694 1387 99 99 1387 99 99 1388 694 694 1388 98 98 1388 695 695 1389 487 487 1389 694 694 1389 694 694 1390 487 487 1390 696 696 1390 694 694 1391 696 696 1391 98 98 1391 697 697 1392 96 96 1392 708 708 1392 708 708 1393 96 96 1393 695 695 1393 708 708 1394 695 695 1394 707 707 1394 707 707 1395 695 695 1395 529 529 1395 707 707 1396 529 529 1396 705 705 1396 705 705 1397 529 529 1397 698 698 1397 705 705 1398 698 698 1398 702 702 1398 702 702 1399 698 698 1399 699 699 1399 702 702 1400 699 699 1400 700 700 1400 700 700 1401 699 699 1401 526 526 1401 700 700 1402 526 526 1402 701 701 1402 701 701 1403 526 526 1403 524 524 1403 701 701 1404 714 714 1404 700 700 1404 700 700 1405 714 714 1405 703 703 1405 700 700 1406 703 703 1406 702 702 1406 702 702 1407 703 703 1407 704 704 1407 702 702 1408 704 704 1408 705 705 1408 705 705 1409 704 704 1409 706 706 1409 705 705 1410 706 706 1410 707 707 1410 707 707 1411 706 706 1411 712 712 1411 707 707 1412 712 712 1412 708 708 1412 708 708 1413 712 712 1413 710 710 1413 708 708 1414 710 710 1414 697 697 1414 697 697 1415 710 710 1415 94 94 1415 91 91 1416 93 93 1416 709 709 1416 709 709 1417 93 93 1417 710 710 1417 709 709 1418 710 710 1418 711 711 1418 711 711 1419 710 710 1419 712 712 1419 711 711 1420 712 712 1420 534 534 1420 534 534 1421 712 712 1421 706 706 1421 534 534 1422 706 706 1422 533 533 1422 533 533 1423 706 706 1423 704 704 1423 533 533 1424 704 704 1424 531 531 1424 531 531 1425 704 704 1425 703 703 1425 531 531 1426 703 703 1426 713 713 1426 713 713 1427 703 703 1427 714 714 1427 536 536 1428 89 89 1428 709 709 1428 709 709 1429 89 89 1429 715 715 1429 709 709 1430 715 715 1430 91 91 1430 87 87 1431 88 88 1431 726 726 1431 726 726 1432 88 88 1432 536 536 1432 726 726 1433 536 536 1433 716 716 1433 716 716 1434 536 536 1434 535 535 1434 716 716 1435 535 535 1435 717 717 1435 717 717 1436 535 535 1436 718 718 1436 717 717 1437 718 718 1437 719 719 1437 719 719 1438 718 718 1438 532 532 1438 719 719 1439 532 532 1439 723 723 1439 723 723 1440 532 532 1440 720 720 1440 723 723 1441 720 720 1441 721 721 1441 721 721 1442 720 720 1442 530 530 1442 721 721 1443 722 722 1443 723 723 1443 723 723 1444 722 722 1444 724 724 1444 723 723 1445 724 724 1445 719 719 1445 719 719 1446 724 724 1446 538 538 1446 719 719 1447 538 538 1447 717 717 1447 717 717 1448 538 538 1448 539 539 1448 717 717 1449 539 539 1449 716 716 1449 716 716 1450 539 539 1450 725 725 1450 716 716 1451 725 725 1451 726 726 1451 726 726 1452 725 725 1452 729 729 1452 726 726 1453 729 729 1453 87 87 1453 87 87 1454 729 729 1454 727 727 1454 731 731 1455 728 728 1455 729 729 1455 729 729 1456 728 728 1456 84 84 1456 729 729 1457 84 84 1457 727 727 1457 81 81 1458 486 486 1458 741 741 1458 741 741 1459 486 486 1459 731 731 1459 741 741 1460 731 731 1460 730 730 1460 730 730 1461 731 731 1461 732 732 1461 730 730 1462 732 732 1462 733 733 1462 733 733 1463 732 732 1463 540 540 1463 733 733 1464 540 540 1464 734 734 1464 734 734 1465 540 540 1465 735 735 1465 734 734 1466 735 735 1466 736 736 1466 736 736 1467 735 735 1467 537 537 1467 736 736 1468 537 537 1468 737 737 1468 737 737 1469 537 537 1469 114 114 1469 737 737 1470 738 738 1470 736 736 1470 736 736 1471 738 738 1471 748 748 1471 736 736 1472 748 748 1472 734 734 1472 734 734 1473 748 748 1473 739 739 1473 734 734 1474 739 739 1474 733 733 1474 733 733 1475 739 739 1475 740 740 1475 733 733 1476 740 740 1476 730 730 1476 730 730 1477 740 740 1477 745 745 1477 730 730 1478 745 745 1478 741 741 1478 741 741 1479 745 745 1479 742 742 1479 741 741 1480 742 742 1480 81 81 1480 81 81 1481 742 742 1481 80 80 1481 749 749 1482 78 78 1482 743 743 1482 743 743 1483 78 78 1483 742 742 1483 743 743 1484 742 742 1484 744 744 1484 744 744 1485 742 742 1485 745 745 1485 744 744 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 740 740 1487 746 746 1488 740 740 1488 747 747 1488 747 747 1489 740 740 1489 739 739 1489 747 747 1490 739 739 1490 542 542 1490 542 542 1491 739 739 1491 748 748 1491 542 542 1492 748 748 1492 541 541 1492 541 541 1493 748 748 1493 738 738 1493 751 751 1494 73 73 1494 743 743 1494 743 743 1495 73 73 1495 75 75 1495 743 743 1496 75 75 1496 749 749 1496 71 71 1497 485 485 1497 750 750 1497 750 750 1498 485 485 1498 751 751 1498 750 750 1499 751 751 1499 760 760 1499 760 760 1500 751 751 1500 545 545 1500 760 760 1501 545 545 1501 752 752 1501 752 752 1502 545 545 1502 544 544 1502 752 752 1503 544 544 1503 753 753 1503 753 753 1504 544 544 1504 754 754 1504 753 753 1505 754 754 1505 756 756 1505 756 756 1506 754 754 1506 543 543 1506 756 756 1507 543 543 1507 115 115 1507 115 115 1508 543 543 1508 755 755 1508 115 115 1509 757 757 1509 756 756 1509 756 756 1510 757 757 1510 765 765 1510 756 756 1511 765 765 1511 753 753 1511 753 753 1512 765 765 1512 758 758 1512 753 753 1513 758 758 1513 752 752 1513 752 752 1514 758 758 1514 759 759 1514 752 752 1515 759 759 1515 760 760 1515 760 760 1516 759 759 1516 761 761 1516 760 760 1517 761 761 1517 750 750 1517 750 750 1518 761 761 1518 762 762 1518 750 750 1519 762 762 1519 71 71 1519 71 71 1520 762 762 1520 70 70 1520 68 68 1521 69 69 1521 768 768 1521 768 768 1522 69 69 1522 762 762 1522 768 768 1523 762 762 1523 769 769 1523 769 769 1524 762 762 1524 761 761 1524 769 769 1525 761 761 1525 763 763 1525 763 763 1526 761 761 1526 759 759 1526 763 763 1527 759 759 1527 764 764 1527 764 764 1528 759 759 1528 758 758 1528 764 764 1529 758 758 1529 770 770 1529 770 770 1530 758 758 1530 765 765 1530 770 770 1531 765 765 1531 116 116 1531 116 116 1532 765 765 1532 757 757 1532 780 780 1533 766 766 1533 767 767 1533 767 767 1534 766 766 1534 768 768 1534 767 767 1535 768 768 1535 779 779 1535 779 779 1536 768 768 1536 769 769 1536 779 779 1537 769 769 1537 777 777 1537 777 777 1538 769 769 1538 763 763 1538 777 777 1539 763 763 1539 774 774 1539 774 774 1540 763 763 1540 764 764 1540 774 774 1541 764 764 1541 773 773 1541 773 773 1542 764 764 1542 770 770 1542 773 773 1543 770 770 1543 771 771 1543 771 771 1544 770 770 1544 116 116 1544 771 771 1545 772 772 1545 773 773 1545 773 773 1546 772 772 1546 775 775 1546 773 773 1547 775 775 1547 774 774 1547 774 774 1548 775 775 1548 776 776 1548 774 774 1549 776 776 1549 777 777 1549 777 777 1550 776 776 1550 778 778 1550 777 777 1551 778 778 1551 779 779 1551 779 779 1552 778 778 1552 784 784 1552 779 779 1553 784 784 1553 767 767 1553 767 767 1554 784 784 1554 484 484 1554 767 767 1555 484 484 1555 780 780 1555 780 780 1556 484 484 1556 66 66 1556 63 63 1557 781 781 1557 782 782 1557 782 782 1558 781 781 1558 484 484 1558 782 782 1559 484 484 1559 783 783 1559 783 783 1560 484 484 1560 784 784 1560 783 783 1561 784 784 1561 785 785 1561 785 785 1562 784 784 1562 778 778 1562 785 785 1563 778 778 1563 548 548 1563 548 548 1564 778 778 1564 776 776 1564 548 548 1565 776 776 1565 547 547 1565 547 547 1566 776 776 1566 775 775 1566 547 547 1567 775 775 1567 786 786 1567 786 786 1568 775 775 1568 772 772 1568 789 789 1569 61 61 1569 782 782 1569 782 782 1570 61 61 1570 787 787 1570 782 782 1571 787 787 1571 63 63 1571 57 57 1572 58 58 1572 788 788 1572 788 788 1573 58 58 1573 789 789 1573 788 788 1574 789 789 1574 790 790 1574 790 790 1575 789 789 1575 791 791 1575 790 790 1576 791 791 1576 798 798 1576 798 798 1577 791 791 1577 792 792 1577 798 798 1578 792 792 1578 797 797 1578 797 797 1579 792 792 1579 793 793 1579 797 797 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 546 546 1581 794 794 1582 546 546 1582 795 795 1582 795 795 1583 546 546 1583 117 117 1583 795 795 1584 119 119 1584 794 794 1584 794 794 1585 119 119 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 790 790 1590 790 790 1591 803 803 1591 802 802 1591 790 790 1592 802 802 1592 788 788 1592 788 788 1593 802 802 1593 799 799 1593 788 788 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 809 809 1596 809 809 1597 800 800 1597 799 799 1597 809 809 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 811 811 1600 811 811 1601 802 802 1601 803 803 1601 811 811 1602 803 803 1602 812 812 1602 812 812 1603 803 803 1603 804 804 1603 812 812 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 796 796 1605 805 805 1606 796 796 1606 806 806 1606 806 806 1607 796 796 1607 119 119 1607 807 807 1608 483 483 1608 808 808 1608 808 808 1609 483 483 1609 809 809 1609 808 808 1610 809 809 1610 817 817 1610 817 817 1611 809 809 1611 801 801 1611 817 817 1612 801 801 1612 810 810 1612 810 810 1613 801 801 1613 811 811 1613 810 810 1614 811 811 1614 815 815 1614 815 815 1615 811 811 1615 812 812 1615 815 815 1616 812 812 1616 814 814 1616 814 814 1617 812 812 1617 805 805 1617 814 814 1618 805 805 1618 118 118 1618 118 118 1619 805 805 1619 806 806 1619 118 118 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 549 549 1621 814 814 1622 549 549 1622 815 815 1622 815 815 1623 549 549 1623 816 816 1623 815 815 1624 816 816 1624 810 810 1624 810 810 1625 816 816 1625 818 818 1625 810 810 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 808 808 1628 808 808 1629 819 819 1629 551 551 1629 808 808 1630 551 551 1630 807 807 1630 807 807 1631 551 551 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.STL b/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.STL new file mode 100755 index 0000000..d2e59ed Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.dae b/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.dae new file mode 100755 index 0000000..c376542 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/left_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:28 2016 GMT + Tue Jan 19 19:53:28 2016 GMT + Y_UP + + + + + + -0.0499122 3.7271e-18 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -6.78839e-18 -0.01 0.05 -7.97172e-18 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -2.05701e-17 1.78814e-09 0.0355863 -0.0182652 1.78814e-09 2.04635e-17 -4.11162e-18 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.0233192 -0.0324995 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 -0.00823914 -0.0391423 1.78814e-09 -0.0172026 -0.0361119 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0317942 -0.024272 1.78814e-09 -0.0393692 -0.00707561 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.0252035 0.031061 1.78814e-09 0.0233192 0.0324995 1.78814e-09 0.0355863 0.0182652 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.0388809 0.00939544 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 1.53808e-17 -6.24162e-18 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 2.54376e-18 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -1.4095e-17 -0.035 0.0496593 -1.41607e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -1.41085e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -1.39419e-17 -0.0420711 0.045 -1.36722e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -1.33178e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -1.2903e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0397192 -0.00473093 1.78814e-09 0.0388809 -0.00939544 1.78814e-09 0.0422893 -0.00503704 -0.000340743 0.0413967 -0.0100034 -0.000340743 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.0366058 -0.0161249 1.78814e-09 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0399297 0.00236963 1.78814e-09 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.043038 0.0131426 -0.00133975 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0128108 0.0378931 1.78814e-09 -0.0136397 0.0403449 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -1.12201e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -1.27324e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0205612 -0.037296 -0.000340743 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.00590586 -0.0395616 1.78814e-09 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0252035 -0.031061 1.78814e-09 -0.0227346 -0.0360124 -0.000340743 -0.0213529 -0.0338238 1.78814e-09 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0305573 -0.0296648 -0.000340743 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0407314 -0.0124382 -0.000340743 -0.038256 -0.0116823 1.78814e-09 -0.0419166 -0.00753344 -0.000340743 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0425134 0.00252295 -0.000340743 -0.0393692 0.00707561 1.78814e-09 -0.038256 0.0116823 1.78814e-09 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0389744 0.0171683 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0305573 0.0296648 -0.000340743 -0.0287003 0.027862 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0227346 0.0360124 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0268343 0.0330707 -0.000340743 -0.0172026 0.0361119 1.78814e-09 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00823914 0.0391423 1.78814e-09 -0.00877226 0.0416749 -0.000340743 -0.00378166 0.04242 -0.000340743 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 0.00126203 0.0425695 -0.000340743 0.00118533 0.0399824 1.78814e-09 -0.00355184 0.039842 1.78814e-09 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0112257 0.0410821 -0.000340743 0.0066441 0.0445068 -0.00133975 0.006288 0.0421214 -0.000340743 0.00590586 0.0395616 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0150331 0.0370676 1.78814e-09 0.0160058 0.039466 -0.000340743 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0205612 0.037296 -0.000340743 0.0193117 0.0350294 1.78814e-09 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.024828 0.0346023 -0.000340743 0.0287463 0.031423 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0353229 0.0237918 -0.000340743 0.0378889 0.019447 -0.000340743 0.0374968 0.0139281 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.0422893 0.00503704 -0.000340743 0.043741 0.0105699 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0397192 0.00473093 1.78814e-09 0.04 -1.0773e-17 1.78814e-09 0.0446841 0.00532229 -0.00133975 0.045 -1.1669e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -1.20892e-17 -0.00292893 0.0486603 -1.24518e-17 -0.005 0.05 -1.29116e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 2.80405e-18 0.998244 0.0592405 -2.80405e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.62094e-15 2.25907e-15 1 1.34237e-15 2.43493e-15 1 2.22312e-14 -7.51588e-15 1 2.30611e-15 1.55328e-15 1 2.10621e-15 1.81513e-15 1 1.87675e-15 2.0515e-15 1 2.70265e-15 6.53087e-16 1 2.60644e-15 9.68154e-16 1 2.47364e-15 1.26963e-15 1 2.76093e-15 -3.28851e-16 1 2.78044e-15 0 1 2.76093e-15 3.28851e-16 1 0 0 1 9.46024e-15 2.1476e-14 1 2.70265e-15 -6.53087e-16 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 186 186 0 0 0 0 0 0 1 186 186 1 185 185 1 0 0 2 185 185 2 1 1 2 1 1 3 185 185 3 183 183 3 1 1 4 183 183 4 2 2 4 2 2 5 183 183 5 182 182 5 2 2 6 182 182 6 3 3 6 3 3 7 182 182 7 180 180 7 3 3 8 180 180 8 4 4 8 4 4 9 180 180 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 178 178 15 9 9 16 178 178 16 661 661 16 661 661 17 178 178 17 11 11 17 661 661 18 11 11 18 660 660 18 660 660 19 11 11 19 176 176 19 660 660 20 176 176 20 12 12 20 12 12 21 176 176 21 174 174 21 12 12 22 174 174 22 13 13 22 13 13 23 174 174 23 173 173 23 13 13 24 173 173 24 646 646 24 646 646 25 173 173 25 14 14 25 646 646 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 171 171 29 16 16 30 171 171 30 637 637 30 637 637 31 171 171 31 170 170 31 637 637 32 170 170 32 635 635 32 635 635 33 170 170 33 169 169 33 635 635 34 169 169 34 624 624 34 624 624 35 169 169 35 168 168 35 624 624 36 168 168 36 622 622 36 622 622 37 168 168 37 167 167 37 622 622 38 167 167 38 18 18 38 18 18 39 167 167 39 166 166 39 18 18 40 166 166 40 623 623 40 623 623 41 166 166 41 164 164 41 623 623 42 164 164 42 20 20 42 20 20 43 164 164 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 599 599 50 599 599 51 26 26 51 27 27 51 599 599 52 27 27 52 28 28 52 28 28 53 27 27 53 161 161 53 28 28 54 161 161 54 494 494 54 494 494 55 161 161 55 29 29 55 494 494 56 29 29 56 598 598 56 598 598 57 29 29 57 30 30 57 598 598 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 156 156 67 39 39 68 156 156 68 40 40 68 40 40 69 156 156 69 41 41 69 40 40 70 41 41 70 495 495 70 495 495 71 41 41 71 42 42 71 495 495 72 42 42 72 43 43 72 43 43 73 42 42 73 153 153 73 43 43 74 153 153 74 44 44 74 44 44 75 153 153 75 152 152 75 44 44 76 152 152 76 562 562 76 562 562 77 152 152 77 151 151 77 562 562 78 151 151 78 45 45 78 45 45 79 151 151 79 46 46 79 45 45 80 46 46 80 552 552 80 552 552 81 46 46 81 150 150 81 552 552 82 150 150 82 499 499 82 499 499 83 150 150 83 224 224 83 499 499 84 224 224 84 551 551 84 551 551 85 224 224 85 223 223 85 551 551 86 223 223 86 47 47 86 47 47 87 223 223 87 222 222 87 47 47 88 222 222 88 48 48 88 48 48 89 222 222 89 220 220 89 48 48 90 220 220 90 49 49 90 49 49 91 220 220 91 50 50 91 49 49 92 50 50 92 805 805 92 805 805 93 50 50 93 51 51 93 805 805 94 51 51 94 488 488 94 488 488 95 51 51 95 52 52 95 488 488 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 216 216 99 800 800 100 216 216 100 56 56 100 56 56 101 216 216 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 786 786 108 786 786 109 62 62 109 215 215 109 786 786 110 215 215 110 63 63 110 63 63 111 215 215 111 64 64 111 63 63 112 64 64 112 780 780 112 780 780 113 64 64 113 65 65 113 780 780 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 779 779 116 779 779 117 67 67 117 213 213 117 779 779 118 213 213 118 768 768 118 768 768 119 213 213 119 212 212 119 768 768 120 212 212 120 68 68 120 68 68 121 212 212 121 211 211 121 68 68 122 211 211 122 69 69 122 69 69 123 211 211 123 208 208 123 69 69 124 208 208 124 70 70 124 70 70 125 208 208 125 207 207 125 70 70 126 207 207 126 71 71 126 71 71 127 207 207 127 206 206 127 71 71 128 206 206 128 490 490 128 490 490 129 206 206 129 72 72 129 490 490 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 747 747 134 747 747 135 76 76 135 77 77 135 747 747 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 202 202 139 80 80 140 202 202 140 81 81 140 81 81 141 202 202 141 82 82 141 81 81 142 82 82 142 491 491 142 491 491 143 82 82 143 83 83 143 491 491 144 83 83 144 724 724 144 724 724 145 83 83 145 200 200 145 724 724 146 200 200 146 84 84 146 84 84 147 200 200 147 85 85 147 84 84 148 85 85 148 723 723 148 723 723 149 85 85 149 86 86 149 723 723 150 86 86 150 87 87 150 87 87 151 86 86 151 197 197 151 87 87 152 197 197 152 88 88 152 88 88 153 197 197 153 196 196 153 88 88 154 196 196 154 89 89 154 89 89 155 196 196 155 195 195 155 89 89 156 195 195 156 712 712 156 712 712 157 195 195 157 90 90 157 712 712 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 192 192 161 93 93 162 192 192 162 94 94 162 94 94 163 192 192 163 191 191 163 94 94 164 191 191 164 693 693 164 693 693 165 191 191 165 95 95 165 693 693 166 95 95 166 96 96 166 96 96 167 95 95 167 189 189 167 96 96 168 189 189 168 492 492 168 492 492 169 189 189 169 188 188 169 492 492 170 188 188 170 692 692 170 692 692 171 188 188 171 97 97 171 692 692 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 679 679 176 679 679 177 101 101 177 102 102 177 679 679 178 102 102 178 103 103 178 103 103 179 102 102 179 186 186 179 104 104 180 813 813 180 106 106 180 104 104 181 106 106 181 500 500 181 105 105 182 558 558 182 106 106 182 106 106 183 558 558 183 501 501 183 106 106 184 501 501 184 500 500 184 581 581 185 574 574 185 106 106 185 106 106 186 574 574 186 567 567 186 106 106 187 567 567 187 105 105 187 592 592 188 107 107 188 106 106 188 106 106 189 107 107 189 108 108 189 106 106 190 108 108 190 581 581 190 617 617 191 603 603 191 106 106 191 106 106 192 603 603 192 109 109 192 106 106 193 109 109 193 592 592 193 112 112 194 110 110 194 106 106 194 106 106 195 110 110 195 616 616 195 106 106 196 616 616 196 617 617 196 643 643 197 645 645 197 106 106 197 106 106 198 645 645 198 111 111 198 106 106 199 111 111 199 112 112 199 113 113 200 114 114 200 106 106 200 106 106 201 114 114 201 651 651 201 106 106 202 651 651 202 643 643 202 115 115 203 668 668 203 106 106 203 106 106 204 668 668 204 517 517 204 106 106 205 517 517 205 113 113 205 684 684 206 524 524 206 106 106 206 106 106 207 524 524 207 116 116 207 106 106 208 116 116 208 115 115 208 698 698 209 117 117 209 106 106 209 106 106 210 117 117 210 685 685 210 106 106 211 685 685 211 684 684 211 119 119 212 711 711 212 106 106 212 106 106 213 711 711 213 118 118 213 106 106 214 118 118 214 698 698 214 537 537 215 720 720 215 106 106 215 106 106 216 720 720 216 718 718 216 106 106 217 718 718 217 119 119 217 745 745 218 746 746 218 106 106 218 106 106 219 746 746 219 732 732 219 106 106 220 732 732 220 537 537 220 757 757 221 756 756 221 106 106 221 106 106 222 756 756 222 755 755 222 106 106 223 755 755 223 745 745 223 123 123 224 120 120 224 106 106 224 106 106 225 120 120 225 767 767 225 106 106 226 767 767 226 757 757 226 121 121 227 122 122 227 106 106 227 106 106 228 122 122 228 785 785 228 106 106 229 785 785 229 123 123 229 813 813 230 124 124 230 106 106 230 106 106 231 124 124 231 795 795 231 106 106 232 795 795 232 121 121 232 487 487 233 485 485 233 143 143 233 487 487 234 143 143 234 125 125 234 436 436 235 434 434 235 143 143 235 143 143 236 434 434 236 126 126 236 143 143 237 126 126 237 125 125 237 127 127 238 128 128 238 143 143 238 143 143 239 128 128 239 129 129 239 143 143 240 129 129 240 436 436 240 133 133 241 439 439 241 143 143 241 143 143 242 439 439 242 130 130 242 143 143 243 130 130 243 127 127 243 441 441 244 131 131 244 143 143 244 143 143 245 131 131 245 132 132 245 143 143 246 132 132 246 133 133 246 134 134 247 443 443 247 143 143 247 143 143 248 443 443 248 135 135 248 143 143 249 135 135 249 441 441 249 446 446 250 136 136 250 143 143 250 143 143 251 136 136 251 445 445 251 143 143 252 445 445 252 134 134 252 137 137 253 448 448 253 143 143 253 143 143 254 448 448 254 138 138 254 143 143 255 138 138 255 446 446 255 454 454 256 452 452 256 143 143 256 143 143 257 452 452 257 449 449 257 143 143 258 449 449 258 137 137 258 458 458 259 139 139 259 143 143 259 143 143 260 139 139 260 455 455 260 143 143 261 455 455 261 454 454 261 460 460 262 140 140 262 143 143 262 143 143 263 140 140 263 141 141 263 143 143 264 141 141 264 458 458 264 465 465 265 463 463 265 143 143 265 143 143 266 463 463 266 142 142 266 143 143 267 142 142 267 460 460 267 468 468 268 467 467 268 143 143 268 143 143 269 467 467 269 466 466 269 143 143 270 466 466 270 465 465 270 472 472 271 471 471 271 143 143 271 143 143 272 471 471 272 469 469 272 143 143 273 469 469 273 468 468 273 475 475 274 144 144 274 143 143 274 143 143 275 144 144 275 473 473 275 143 143 276 473 473 276 472 472 276 147 147 277 145 145 277 143 143 277 143 143 278 145 145 278 146 146 278 143 143 279 146 146 279 475 475 279 482 482 280 481 481 280 143 143 280 143 143 281 481 481 281 479 479 281 143 143 282 479 479 282 147 147 282 485 485 283 148 148 283 143 143 283 143 143 284 148 148 284 149 149 284 143 143 285 149 149 285 482 482 285 224 224 286 273 273 286 275 275 286 224 224 287 150 150 287 273 273 287 273 273 288 150 150 288 46 46 288 273 273 289 46 46 289 271 271 289 271 271 290 46 46 290 151 151 290 271 271 291 151 151 291 269 269 291 269 269 292 151 151 292 152 152 292 269 269 293 152 152 293 154 154 293 154 154 294 152 152 294 153 153 294 153 153 295 42 42 295 154 154 295 154 154 296 42 42 296 41 41 296 154 154 297 41 41 297 155 155 297 41 41 298 156 156 298 155 155 298 155 155 299 156 156 299 38 38 299 155 155 300 38 38 300 157 157 300 157 157 301 38 38 301 37 37 301 157 157 302 37 37 302 158 158 302 37 37 303 33 33 303 158 158 303 158 158 304 33 33 304 32 32 304 158 158 305 32 32 305 265 265 305 32 32 306 30 30 306 265 265 306 265 265 307 30 30 307 29 29 307 265 265 308 29 29 308 159 159 308 159 159 309 29 29 309 161 161 309 159 159 310 161 161 310 160 160 310 160 160 311 161 161 311 27 27 311 160 160 312 27 27 312 162 162 312 162 162 313 27 27 313 26 26 313 26 26 314 24 24 314 162 162 314 162 162 315 24 24 315 22 22 315 162 162 316 22 22 316 163 163 316 22 22 317 19 19 317 163 163 317 163 163 318 19 19 318 164 164 318 163 163 319 164 164 319 165 165 319 165 165 320 164 164 320 166 166 320 165 165 321 166 166 321 259 259 321 259 259 322 166 166 322 167 167 322 259 259 323 167 167 323 258 258 323 258 258 324 167 167 324 168 168 324 168 168 325 169 169 325 258 258 325 258 258 326 169 169 326 170 170 326 258 258 327 170 170 327 257 257 327 257 257 328 170 170 328 171 171 328 257 257 329 171 171 329 172 172 329 172 172 330 171 171 330 17 17 330 172 172 331 17 17 331 255 255 331 255 255 332 17 17 332 14 14 332 14 14 333 173 173 333 255 255 333 255 255 334 173 173 334 174 174 334 255 255 335 174 174 335 175 175 335 174 174 336 176 176 336 175 175 336 175 175 337 176 176 337 11 11 337 175 175 338 11 11 338 177 177 338 177 177 339 11 11 339 178 178 339 177 177 340 178 178 340 252 252 340 252 252 341 178 178 341 10 10 341 252 252 342 10 10 342 179 179 342 179 179 343 10 10 343 7 7 343 7 7 344 5 5 344 179 179 344 179 179 345 5 5 345 180 180 345 179 179 346 180 180 346 181 181 346 181 181 347 180 180 347 182 182 347 181 181 348 182 182 348 184 184 348 182 182 349 183 183 349 184 184 349 184 184 350 183 183 350 185 185 350 184 184 351 185 185 351 187 187 351 185 185 352 186 186 352 187 187 352 187 187 353 186 186 353 102 102 353 187 187 354 102 102 354 247 247 354 102 102 355 101 101 355 247 247 355 247 247 356 101 101 356 100 100 356 247 247 357 100 100 357 245 245 357 245 245 358 100 100 358 97 97 358 245 245 359 97 97 359 244 244 359 244 244 360 97 97 360 188 188 360 244 244 361 188 188 361 190 190 361 190 190 362 188 188 362 189 189 362 189 189 363 95 95 363 190 190 363 190 190 364 95 95 364 191 191 364 190 190 365 191 191 365 242 242 365 242 242 366 191 191 366 192 192 366 242 242 367 192 192 367 193 193 367 192 192 368 92 92 368 193 193 368 193 193 369 92 92 369 90 90 369 193 193 370 90 90 370 194 194 370 90 90 371 195 195 371 194 194 371 194 194 372 195 195 372 196 196 372 194 194 373 196 196 373 240 240 373 196 196 374 197 197 374 240 240 374 240 240 375 197 197 375 86 86 375 240 240 376 86 86 376 198 198 376 198 198 377 86 86 377 85 85 377 198 198 378 85 85 378 199 199 378 199 199 379 85 85 379 200 200 379 199 199 380 200 200 380 201 201 380 201 201 381 200 200 381 83 83 381 83 83 382 82 82 382 201 201 382 201 201 383 82 82 383 202 202 383 201 201 384 202 202 384 203 203 384 203 203 385 202 202 385 79 79 385 203 203 386 79 79 386 204 204 386 79 79 387 77 77 387 204 204 387 204 204 388 77 77 388 76 76 388 204 204 389 76 76 389 205 205 389 76 76 390 74 74 390 205 205 390 205 205 391 74 74 391 72 72 391 205 205 392 72 72 392 235 235 392 72 72 393 206 206 393 235 235 393 235 235 394 206 206 394 207 207 394 235 235 395 207 207 395 234 234 395 234 234 396 207 207 396 208 208 396 234 234 397 208 208 397 209 209 397 209 209 398 208 208 398 211 211 398 209 209 399 211 211 399 210 210 399 210 210 400 211 211 400 212 212 400 212 212 401 213 213 401 210 210 401 210 210 402 213 213 402 67 67 402 210 210 403 67 67 403 231 231 403 231 231 404 67 67 404 65 65 404 231 231 405 65 65 405 214 214 405 65 65 406 64 64 406 214 214 406 214 214 407 64 64 407 215 215 407 214 214 408 215 215 408 228 228 408 215 215 409 62 62 409 228 228 409 228 228 410 62 62 410 60 60 410 228 228 411 60 60 411 227 227 411 60 60 412 59 59 412 227 227 412 227 227 413 59 59 413 55 55 413 227 227 414 55 55 414 226 226 414 226 226 415 55 55 415 216 216 415 226 226 416 216 216 416 217 217 416 217 217 417 216 216 417 54 54 417 217 217 418 54 54 418 225 225 418 225 225 419 54 54 419 52 52 419 52 52 420 51 51 420 225 225 420 225 225 421 51 51 421 218 218 421 225 225 422 218 218 422 219 219 422 219 219 423 218 218 423 220 220 423 219 219 424 220 220 424 221 221 424 221 221 425 220 220 425 222 222 425 221 221 426 222 222 426 275 275 426 275 275 427 222 222 427 223 223 427 275 275 428 223 223 428 224 224 428 219 219 429 277 277 429 225 225 429 225 225 430 277 277 430 280 280 430 225 225 431 280 280 431 217 217 431 217 217 432 280 280 432 282 282 432 217 217 433 282 282 433 226 226 433 226 226 434 282 282 434 283 283 434 226 226 435 283 283 435 227 227 435 227 227 436 283 283 436 229 229 436 227 227 437 229 229 437 228 228 437 228 228 438 229 229 438 286 286 438 228 228 439 286 286 439 214 214 439 214 214 440 286 286 440 230 230 440 214 214 441 230 230 441 231 231 441 231 231 442 230 230 442 288 288 442 231 231 443 288 288 443 210 210 443 210 210 444 288 288 444 232 232 444 210 210 445 232 232 445 209 209 445 209 209 446 232 232 446 233 233 446 209 209 447 233 233 447 234 234 447 234 234 448 233 233 448 236 236 448 234 234 449 236 236 449 235 235 449 235 235 450 236 236 450 293 293 450 235 235 451 293 293 451 205 205 451 205 205 452 293 293 452 237 237 452 205 205 453 237 237 453 204 204 453 204 204 454 237 237 454 238 238 454 204 204 455 238 238 455 203 203 455 203 203 456 238 238 456 239 239 456 203 203 457 239 239 457 201 201 457 201 201 458 239 239 458 297 297 458 201 201 459 297 297 459 199 199 459 199 199 460 297 297 460 298 298 460 199 199 461 298 298 461 198 198 461 198 198 462 298 298 462 299 299 462 198 198 463 299 299 463 240 240 463 240 240 464 299 299 464 241 241 464 240 240 465 241 241 465 194 194 465 194 194 466 241 241 466 302 302 466 194 194 467 302 302 467 193 193 467 193 193 468 302 302 468 303 303 468 193 193 469 303 303 469 242 242 469 242 242 470 303 303 470 243 243 470 242 242 471 243 243 471 190 190 471 190 190 472 243 243 472 304 304 472 190 190 473 304 304 473 244 244 473 244 244 474 304 304 474 246 246 474 244 244 475 246 246 475 245 245 475 245 245 476 246 246 476 306 306 476 245 245 477 306 306 477 247 247 477 247 247 478 306 306 478 248 248 478 247 247 479 248 248 479 187 187 479 187 187 480 248 248 480 308 308 480 187 187 481 308 308 481 184 184 481 184 184 482 308 308 482 249 249 482 184 184 483 249 249 483 181 181 483 181 181 484 249 249 484 250 250 484 181 181 485 250 250 485 179 179 485 179 179 486 250 250 486 251 251 486 179 179 487 251 251 487 252 252 487 252 252 488 251 251 488 253 253 488 252 252 489 253 253 489 177 177 489 177 177 490 253 253 490 254 254 490 177 177 491 254 254 491 175 175 491 175 175 492 254 254 492 313 313 492 175 175 493 313 313 493 255 255 493 255 255 494 313 313 494 314 314 494 255 255 495 314 314 495 172 172 495 172 172 496 314 314 496 256 256 496 172 172 497 256 256 497 257 257 497 257 257 498 256 256 498 315 315 498 257 257 499 315 315 499 258 258 499 258 258 500 315 315 500 260 260 500 258 258 501 260 260 501 259 259 501 259 259 502 260 260 502 261 261 502 259 259 503 261 261 503 165 165 503 165 165 504 261 261 504 262 262 504 165 165 505 262 262 505 163 163 505 163 163 506 262 262 506 263 263 506 163 163 507 263 263 507 162 162 507 162 162 508 263 263 508 264 264 508 162 162 509 264 264 509 160 160 509 160 160 510 264 264 510 321 321 510 160 160 511 321 321 511 159 159 511 159 159 512 321 321 512 266 266 512 159 159 513 266 266 513 265 265 513 265 265 514 266 266 514 324 324 514 265 265 515 324 324 515 158 158 515 158 158 516 324 324 516 267 267 516 158 158 517 267 267 517 157 157 517 157 157 518 267 267 518 326 326 518 157 157 519 326 326 519 155 155 519 155 155 520 326 326 520 268 268 520 155 155 521 268 268 521 154 154 521 154 154 522 268 268 522 327 327 522 154 154 523 327 327 523 269 269 523 269 269 524 327 327 524 270 270 524 269 269 525 270 270 525 271 271 525 271 271 526 270 270 526 272 272 526 271 271 527 272 272 527 273 273 527 273 273 528 272 272 528 274 274 528 273 273 529 274 274 529 275 275 529 275 275 530 274 274 530 330 330 530 275 275 531 330 330 531 221 221 531 221 221 532 330 330 532 276 276 532 221 221 533 276 276 533 219 219 533 219 219 534 276 276 534 277 277 534 276 276 535 278 278 535 277 277 535 277 277 536 278 278 536 279 279 536 277 277 537 279 279 537 280 280 537 280 280 538 279 279 538 334 334 538 280 280 539 334 334 539 282 282 539 282 282 540 334 334 540 281 281 540 282 282 541 281 281 541 283 283 541 283 283 542 281 281 542 284 284 542 283 283 543 284 284 543 229 229 543 229 229 544 284 284 544 285 285 544 229 229 545 285 285 545 286 286 545 286 286 546 285 285 546 337 337 546 286 286 547 337 337 547 230 230 547 230 230 548 337 337 548 287 287 548 230 230 549 287 287 549 288 288 549 288 288 550 287 287 550 289 289 550 288 288 551 289 289 551 232 232 551 232 232 552 289 289 552 290 290 552 232 232 553 290 290 553 233 233 553 233 233 554 290 290 554 291 291 554 233 233 555 291 291 555 236 236 555 236 236 556 291 291 556 292 292 556 236 236 557 292 292 557 293 293 557 293 293 558 292 292 558 294 294 558 293 293 559 294 294 559 237 237 559 237 237 560 294 294 560 295 295 560 237 237 561 295 295 561 238 238 561 238 238 562 295 295 562 296 296 562 238 238 563 296 296 563 239 239 563 239 239 564 296 296 564 341 341 564 239 239 565 341 341 565 297 297 565 297 297 566 341 341 566 342 342 566 297 297 567 342 342 567 298 298 567 298 298 568 342 342 568 343 343 568 298 298 569 343 343 569 299 299 569 299 299 570 343 343 570 300 300 570 299 299 571 300 300 571 241 241 571 241 241 572 300 300 572 301 301 572 241 241 573 301 301 573 302 302 573 302 302 574 301 301 574 348 348 574 302 302 575 348 348 575 303 303 575 303 303 576 348 348 576 349 349 576 303 303 577 349 349 577 243 243 577 243 243 578 349 349 578 350 350 578 243 243 579 350 350 579 304 304 579 304 304 580 350 350 580 305 305 580 304 304 581 305 305 581 246 246 581 246 246 582 305 305 582 351 351 582 246 246 583 351 351 583 306 306 583 306 306 584 351 351 584 307 307 584 306 306 585 307 307 585 248 248 585 248 248 586 307 307 586 353 353 586 248 248 587 353 353 587 308 308 587 308 308 588 353 353 588 309 309 588 308 308 589 309 309 589 249 249 589 249 249 590 309 309 590 310 310 590 249 249 591 310 310 591 250 250 591 250 250 592 310 310 592 355 355 592 250 250 593 355 355 593 251 251 593 251 251 594 355 355 594 311 311 594 251 251 595 311 311 595 253 253 595 253 253 596 311 311 596 356 356 596 253 253 597 356 356 597 254 254 597 254 254 598 356 356 598 312 312 598 254 254 599 312 312 599 313 313 599 313 313 600 312 312 600 359 359 600 313 313 601 359 359 601 314 314 601 314 314 602 359 359 602 360 360 602 314 314 603 360 360 603 256 256 603 256 256 604 360 360 604 361 361 604 256 256 605 361 361 605 315 315 605 315 315 606 361 361 606 362 362 606 315 315 607 362 362 607 260 260 607 260 260 608 362 362 608 316 316 608 260 260 609 316 316 609 261 261 609 261 261 610 316 316 610 317 317 610 261 261 611 317 317 611 262 262 611 262 262 612 317 317 612 318 318 612 262 262 613 318 318 613 263 263 613 263 263 614 318 318 614 319 319 614 263 263 615 319 319 615 264 264 615 264 264 616 319 319 616 320 320 616 264 264 617 320 320 617 321 321 617 321 321 618 320 320 618 322 322 618 321 321 619 322 322 619 266 266 619 266 266 620 322 322 620 323 323 620 266 266 621 323 323 621 324 324 621 324 324 622 323 323 622 365 365 622 324 324 623 365 365 623 267 267 623 267 267 624 365 365 624 325 325 624 267 267 625 325 325 625 326 326 625 326 326 626 325 325 626 367 367 626 326 326 627 367 367 627 268 268 627 268 268 628 367 367 628 370 370 628 268 268 629 370 370 629 327 327 629 327 327 630 370 370 630 328 328 630 327 327 631 328 328 631 270 270 631 270 270 632 328 328 632 329 329 632 270 270 633 329 329 633 272 272 633 272 272 634 329 329 634 372 372 634 272 272 635 372 372 635 274 274 635 274 274 636 372 372 636 373 373 636 274 274 637 373 373 637 330 330 637 330 330 638 373 373 638 374 374 638 330 330 639 374 374 639 276 276 639 276 276 640 374 374 640 278 278 640 374 374 641 376 376 641 278 278 641 278 278 642 376 376 642 331 331 642 278 278 643 331 331 643 279 279 643 279 279 644 331 331 644 332 332 644 279 279 645 332 332 645 334 334 645 334 334 646 332 332 646 333 333 646 334 334 647 333 333 647 281 281 647 281 281 648 333 333 648 335 335 648 281 281 649 335 335 649 284 284 649 284 284 650 335 335 650 336 336 650 284 284 651 336 336 651 285 285 651 285 285 652 336 336 652 380 380 652 285 285 653 380 380 653 337 337 653 337 337 654 380 380 654 382 382 654 337 337 655 382 382 655 287 287 655 287 287 656 382 382 656 384 384 656 287 287 657 384 384 657 289 289 657 289 289 658 384 384 658 338 338 658 289 289 659 338 338 659 290 290 659 290 290 660 338 338 660 386 386 660 290 290 661 386 386 661 291 291 661 291 291 662 386 386 662 388 388 662 291 291 663 388 388 663 292 292 663 292 292 664 388 388 664 339 339 664 292 292 665 339 339 665 294 294 665 294 294 666 339 339 666 390 390 666 294 294 667 390 390 667 295 295 667 295 295 668 390 390 668 340 340 668 295 295 669 340 340 669 296 296 669 296 296 670 340 340 670 391 391 670 296 296 671 391 391 671 341 341 671 341 341 672 391 391 672 394 394 672 341 341 673 394 394 673 342 342 673 342 342 674 394 394 674 344 344 674 342 342 675 344 344 675 343 343 675 343 343 676 344 344 676 345 345 676 343 343 677 345 345 677 300 300 677 300 300 678 345 345 678 346 346 678 300 300 679 346 346 679 301 301 679 301 301 680 346 346 680 347 347 680 301 301 681 347 347 681 348 348 681 348 348 682 347 347 682 398 398 682 348 348 683 398 398 683 349 349 683 349 349 684 398 398 684 399 399 684 349 349 685 399 399 685 350 350 685 350 350 686 399 399 686 401 401 686 350 350 687 401 401 687 305 305 687 305 305 688 401 401 688 402 402 688 305 305 689 402 402 689 351 351 689 351 351 690 402 402 690 352 352 690 351 351 691 352 352 691 307 307 691 307 307 692 352 352 692 403 403 692 307 307 693 403 403 693 353 353 693 353 353 694 403 403 694 405 405 694 353 353 695 405 405 695 309 309 695 309 309 696 405 405 696 354 354 696 309 309 697 354 354 697 310 310 697 310 310 698 354 354 698 407 407 698 310 310 699 407 407 699 355 355 699 355 355 700 407 407 700 408 408 700 355 355 701 408 408 701 311 311 701 311 311 702 408 408 702 409 409 702 311 311 703 409 409 703 356 356 703 356 356 704 409 409 704 357 357 704 356 356 705 357 357 705 312 312 705 312 312 706 357 357 706 411 411 706 312 312 707 411 411 707 359 359 707 359 359 708 411 411 708 358 358 708 359 359 709 358 358 709 360 360 709 360 360 710 358 358 710 414 414 710 360 360 711 414 414 711 361 361 711 361 361 712 414 414 712 415 415 712 361 361 713 415 415 713 362 362 713 362 362 714 415 415 714 416 416 714 362 362 715 416 416 715 316 316 715 316 316 716 416 416 716 418 418 716 316 316 717 418 418 717 317 317 717 317 317 718 418 418 718 363 363 718 317 317 719 363 363 719 318 318 719 318 318 720 363 363 720 364 364 720 318 318 721 364 364 721 319 319 721 319 319 722 364 364 722 422 422 722 319 319 723 422 422 723 320 320 723 320 320 724 422 422 724 423 423 724 320 320 725 423 423 725 322 322 725 322 322 726 423 423 726 425 425 726 322 322 727 425 425 727 323 323 727 323 323 728 425 425 728 426 426 728 323 323 729 426 426 729 365 365 729 365 365 730 426 426 730 366 366 730 365 365 731 366 366 731 325 325 731 325 325 732 366 366 732 368 368 732 325 325 733 368 368 733 367 367 733 367 367 734 368 368 734 369 369 734 367 367 735 369 369 735 370 370 735 370 370 736 369 369 736 371 371 736 370 370 737 371 371 737 328 328 737 328 328 738 371 371 738 429 429 738 328 328 739 429 429 739 329 329 739 329 329 740 429 429 740 430 430 740 329 329 741 430 430 741 372 372 741 372 372 742 430 430 742 431 431 742 372 372 743 431 431 743 373 373 743 373 373 744 431 431 744 375 375 744 373 373 745 375 375 745 374 374 745 374 374 746 375 375 746 376 376 746 375 375 747 432 432 747 376 376 747 376 376 748 432 432 748 377 377 748 376 376 749 377 377 749 331 331 749 331 331 750 377 377 750 435 435 750 331 331 751 435 435 751 332 332 751 332 332 752 435 435 752 378 378 752 332 332 753 378 378 753 333 333 753 333 333 754 378 378 754 437 437 754 333 333 755 437 437 755 335 335 755 335 335 756 437 437 756 379 379 756 335 335 757 379 379 757 336 336 757 336 336 758 379 379 758 438 438 758 336 336 759 438 438 759 380 380 759 380 380 760 438 438 760 381 381 760 380 380 761 381 381 761 382 382 761 382 382 762 381 381 762 383 383 762 382 382 763 383 383 763 384 384 763 384 384 764 383 383 764 385 385 764 384 384 765 385 385 765 338 338 765 338 338 766 385 385 766 440 440 766 338 338 767 440 440 767 386 386 767 386 386 768 440 440 768 387 387 768 386 386 769 387 387 769 388 388 769 388 388 770 387 387 770 389 389 770 388 388 771 389 389 771 339 339 771 339 339 772 389 389 772 442 442 772 339 339 773 442 442 773 390 390 773 390 390 774 442 442 774 444 444 774 390 390 775 444 444 775 340 340 775 340 340 776 444 444 776 392 392 776 340 340 777 392 392 777 391 391 777 391 391 778 392 392 778 393 393 778 391 391 779 393 393 779 394 394 779 394 394 780 393 393 780 447 447 780 394 394 781 447 447 781 344 344 781 344 344 782 447 447 782 395 395 782 344 344 783 395 395 783 345 345 783 345 345 784 395 395 784 396 396 784 345 345 785 396 396 785 346 346 785 346 346 786 396 396 786 397 397 786 346 346 787 397 397 787 347 347 787 347 347 788 397 397 788 450 450 788 347 347 789 450 450 789 398 398 789 398 398 790 450 450 790 451 451 790 398 398 791 451 451 791 399 399 791 399 399 792 451 451 792 400 400 792 399 399 793 400 400 793 401 401 793 401 401 794 400 400 794 453 453 794 401 401 795 453 453 795 402 402 795 402 402 796 453 453 796 456 456 796 402 402 797 456 456 797 352 352 797 352 352 798 456 456 798 457 457 798 352 352 799 457 457 799 403 403 799 403 403 800 457 457 800 404 404 800 403 403 801 404 404 801 405 405 801 405 405 802 404 404 802 459 459 802 405 405 803 459 459 803 354 354 803 354 354 804 459 459 804 406 406 804 354 354 805 406 406 805 407 407 805 407 407 806 406 406 806 461 461 806 407 407 807 461 461 807 408 408 807 408 408 808 461 461 808 462 462 808 408 408 809 462 462 809 409 409 809 409 409 810 462 462 810 464 464 810 409 409 811 464 464 811 357 357 811 357 357 812 464 464 812 410 410 812 357 357 813 410 410 813 411 411 813 411 411 814 410 410 814 412 412 814 411 411 815 412 412 815 358 358 815 358 358 816 412 412 816 413 413 816 358 358 817 413 413 817 414 414 817 414 414 818 413 413 818 470 470 818 414 414 819 470 470 819 415 415 819 415 415 820 470 470 820 417 417 820 415 415 821 417 417 821 416 416 821 416 416 822 417 417 822 419 419 822 416 416 823 419 419 823 418 418 823 418 418 824 419 419 824 420 420 824 418 418 825 420 420 825 363 363 825 363 363 826 420 420 826 474 474 826 363 363 827 474 474 827 364 364 827 364 364 828 474 474 828 421 421 828 364 364 829 421 421 829 422 422 829 422 422 830 421 421 830 476 476 830 422 422 831 476 476 831 423 423 831 423 423 832 476 476 832 424 424 832 423 423 833 424 424 833 425 425 833 425 425 834 424 424 834 477 477 834 425 425 835 477 477 835 426 426 835 426 426 836 477 477 836 478 478 836 426 426 837 478 478 837 366 366 837 366 366 838 478 478 838 480 480 838 366 366 839 480 480 839 368 368 839 368 368 840 480 480 840 427 427 840 368 368 841 427 427 841 369 369 841 369 369 842 427 427 842 428 428 842 369 369 843 428 428 843 371 371 843 371 371 844 428 428 844 483 483 844 371 371 845 483 483 845 429 429 845 429 429 846 483 483 846 484 484 846 429 429 847 484 484 847 430 430 847 430 430 848 484 484 848 486 486 848 430 430 849 486 486 849 431 431 849 431 431 850 486 486 850 433 433 850 431 431 851 433 433 851 375 375 851 375 375 852 433 433 852 432 432 852 433 433 853 125 125 853 432 432 853 432 432 854 125 125 854 126 126 854 432 432 855 126 126 855 377 377 855 377 377 856 126 126 856 434 434 856 377 377 857 434 434 857 435 435 857 435 435 858 434 434 858 436 436 858 435 435 859 436 436 859 378 378 859 378 378 860 436 436 860 129 129 860 378 378 861 129 129 861 437 437 861 437 437 862 129 129 862 128 128 862 437 437 863 128 128 863 379 379 863 379 379 864 128 128 864 127 127 864 379 379 865 127 127 865 438 438 865 438 438 866 127 127 866 130 130 866 438 438 867 130 130 867 381 381 867 381 381 868 130 130 868 439 439 868 381 381 869 439 439 869 383 383 869 383 383 870 439 439 870 133 133 870 383 383 871 133 133 871 385 385 871 385 385 872 133 133 872 132 132 872 385 385 873 132 132 873 440 440 873 440 440 874 132 132 874 131 131 874 440 440 875 131 131 875 387 387 875 387 387 876 131 131 876 441 441 876 387 387 877 441 441 877 389 389 877 389 389 878 441 441 878 135 135 878 389 389 879 135 135 879 442 442 879 442 442 880 135 135 880 443 443 880 442 442 881 443 443 881 444 444 881 444 444 882 443 443 882 134 134 882 444 444 883 134 134 883 392 392 883 392 392 884 134 134 884 445 445 884 392 392 885 445 445 885 393 393 885 393 393 886 445 445 886 136 136 886 393 393 887 136 136 887 447 447 887 447 447 888 136 136 888 446 446 888 447 447 889 446 446 889 395 395 889 395 395 890 446 446 890 138 138 890 395 395 891 138 138 891 396 396 891 396 396 892 138 138 892 448 448 892 396 396 893 448 448 893 397 397 893 397 397 894 448 448 894 137 137 894 397 397 895 137 137 895 450 450 895 450 450 896 137 137 896 449 449 896 450 450 897 449 449 897 451 451 897 451 451 898 449 449 898 452 452 898 451 451 899 452 452 899 400 400 899 400 400 900 452 452 900 454 454 900 400 400 901 454 454 901 453 453 901 453 453 902 454 454 902 455 455 902 453 453 903 455 455 903 456 456 903 456 456 904 455 455 904 139 139 904 456 456 905 139 139 905 457 457 905 457 457 906 139 139 906 458 458 906 457 457 907 458 458 907 404 404 907 404 404 908 458 458 908 141 141 908 404 404 909 141 141 909 459 459 909 459 459 910 141 141 910 140 140 910 459 459 911 140 140 911 406 406 911 406 406 912 140 140 912 460 460 912 406 406 913 460 460 913 461 461 913 461 461 914 460 460 914 142 142 914 461 461 915 142 142 915 462 462 915 462 462 916 142 142 916 463 463 916 462 462 917 463 463 917 464 464 917 464 464 918 463 463 918 465 465 918 464 464 919 465 465 919 410 410 919 410 410 920 465 465 920 466 466 920 410 410 921 466 466 921 412 412 921 412 412 922 466 466 922 467 467 922 412 412 923 467 467 923 413 413 923 413 413 924 467 467 924 468 468 924 413 413 925 468 468 925 470 470 925 470 470 926 468 468 926 469 469 926 470 470 927 469 469 927 417 417 927 417 417 928 469 469 928 471 471 928 417 417 929 471 471 929 419 419 929 419 419 930 471 471 930 472 472 930 419 419 931 472 472 931 420 420 931 420 420 932 472 472 932 473 473 932 420 420 933 473 473 933 474 474 933 474 474 934 473 473 934 144 144 934 474 474 935 144 144 935 421 421 935 421 421 936 144 144 936 475 475 936 421 421 937 475 475 937 476 476 937 476 476 938 475 475 938 146 146 938 476 476 939 146 146 939 424 424 939 424 424 940 146 146 940 145 145 940 424 424 941 145 145 941 477 477 941 477 477 942 145 145 942 147 147 942 477 477 943 147 147 943 478 478 943 478 478 944 147 147 944 479 479 944 478 478 945 479 479 945 480 480 945 480 480 946 479 479 946 481 481 946 480 480 947 481 481 947 427 427 947 427 427 948 481 481 948 482 482 948 427 427 949 482 482 949 428 428 949 428 428 950 482 482 950 149 149 950 428 428 951 149 149 951 483 483 951 483 483 952 149 149 952 148 148 952 483 483 953 148 148 953 484 484 953 484 484 954 148 148 954 485 485 954 484 484 955 485 485 955 486 486 955 486 486 956 485 485 956 487 487 956 486 486 957 487 487 957 433 433 957 433 433 958 487 487 958 125 125 958 488 488 959 53 53 959 807 807 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 788 788 961 780 780 962 66 66 962 489 489 962 768 768 963 68 68 963 770 770 963 69 69 964 70 70 964 763 763 964 490 490 965 73 73 965 749 749 965 78 78 966 80 80 966 738 738 966 491 491 967 724 724 967 727 727 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 707 707 969 96 96 970 492 492 970 691 691 970 679 679 971 103 103 971 493 493 971 2 2 972 3 3 972 672 672 972 6 6 973 8 8 973 523 523 973 12 12 974 13 13 974 653 653 974 646 646 975 15 15 975 638 638 975 16 16 976 637 637 976 636 636 976 624 624 977 622 622 977 515 515 977 21 21 978 23 23 978 605 605 978 25 25 979 599 599 979 606 606 979 28 28 980 494 494 980 597 597 980 31 31 981 34 34 981 510 510 981 40 40 982 495 495 982 496 496 982 43 43 983 44 44 983 497 497 983 562 562 984 45 45 984 498 498 984 499 499 985 551 551 985 553 553 985 500 500 986 501 501 986 502 502 986 502 502 987 501 501 987 503 503 987 502 502 988 503 503 988 548 548 988 548 548 989 503 503 989 504 504 989 548 548 990 504 504 990 505 505 990 505 505 991 504 504 991 555 555 991 505 505 992 555 555 992 506 506 992 506 506 993 555 555 993 507 507 993 506 506 994 507 507 994 550 550 994 550 550 995 507 507 995 553 553 995 108 108 996 107 107 996 582 582 996 582 582 997 107 107 997 593 593 997 582 582 998 593 593 998 583 583 998 583 583 999 593 593 999 590 590 999 583 583 1000 590 590 1000 584 584 1000 584 584 1001 590 590 1001 508 508 1001 584 584 1002 508 508 1002 509 509 1002 509 509 1003 508 508 1003 587 587 1003 509 509 1004 587 587 1004 585 585 1004 585 585 1005 587 587 1005 510 510 1005 110 110 1006 112 112 1006 512 512 1006 512 512 1007 112 112 1007 511 511 1007 512 512 1008 511 511 1008 513 513 1008 513 513 1009 511 511 1009 628 628 1009 513 513 1010 628 628 1010 619 619 1010 619 619 1011 628 628 1011 626 626 1011 619 619 1012 626 626 1012 620 620 1012 620 620 1013 626 626 1013 625 625 1013 620 620 1014 625 625 1014 514 514 1014 514 514 1015 625 625 1015 515 515 1015 113 113 1016 517 517 1016 516 516 1016 516 516 1017 517 517 1017 519 519 1017 516 516 1018 519 519 1018 518 518 1018 518 518 1019 519 519 1019 666 666 1019 518 518 1020 666 666 1020 521 521 1020 521 521 1021 666 666 1021 520 520 1021 521 521 1022 520 520 1022 522 522 1022 522 522 1023 520 520 1023 663 663 1023 522 522 1024 663 663 1024 659 659 1024 659 659 1025 663 663 1025 523 523 1025 116 116 1026 524 524 1026 678 678 1026 678 678 1027 524 524 1027 683 683 1027 678 678 1028 683 683 1028 525 525 1028 525 525 1029 683 683 1029 526 526 1029 525 525 1030 526 526 1030 676 676 1030 676 676 1031 526 526 1031 682 682 1031 676 676 1032 682 682 1032 674 674 1032 674 674 1033 682 682 1033 527 527 1033 674 674 1034 527 527 1034 673 673 1034 673 673 1035 527 527 1035 493 493 1035 685 685 1036 117 117 1036 687 687 1036 687 687 1037 117 117 1037 697 697 1037 687 687 1038 697 697 1038 528 528 1038 528 528 1039 697 697 1039 695 695 1039 528 528 1040 695 695 1040 529 529 1040 529 529 1041 695 695 1041 694 694 1041 529 529 1042 694 694 1042 530 530 1042 530 530 1043 694 694 1043 531 531 1043 530 530 1044 531 531 1044 690 690 1044 690 690 1045 531 531 1045 691 691 1045 711 711 1046 119 119 1046 710 710 1046 710 710 1047 119 119 1047 719 719 1047 710 710 1048 719 719 1048 533 533 1048 533 533 1049 719 719 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 715 715 1051 534 534 1052 715 715 1052 708 708 1052 708 708 1053 715 715 1053 535 535 1053 708 708 1054 535 535 1054 706 706 1054 706 706 1055 535 535 1055 536 536 1055 720 720 1056 537 537 1056 539 539 1056 539 539 1057 537 537 1057 538 538 1057 539 539 1058 538 538 1058 540 540 1058 540 540 1059 538 538 1059 731 731 1059 540 540 1060 731 731 1060 541 541 1060 541 541 1061 731 731 1061 542 542 1061 541 541 1062 542 542 1062 721 721 1062 721 721 1063 542 542 1063 728 728 1063 721 721 1064 728 728 1064 725 725 1064 725 725 1065 728 728 1065 727 727 1065 745 745 1066 755 755 1066 744 744 1066 744 744 1067 755 755 1067 754 754 1067 744 744 1068 754 754 1068 743 743 1068 743 743 1069 754 754 1069 753 753 1069 743 743 1070 753 753 1070 742 742 1070 742 742 1071 753 753 1071 543 543 1071 742 742 1072 543 543 1072 740 740 1072 740 740 1073 543 543 1073 544 544 1073 740 740 1074 544 544 1074 739 739 1074 739 739 1075 544 544 1075 749 749 1075 785 785 1076 122 122 1076 545 545 1076 545 545 1077 122 122 1077 793 793 1077 545 545 1078 793 793 1078 546 546 1078 546 546 1079 793 793 1079 792 792 1079 546 546 1080 792 792 1080 784 784 1080 784 784 1081 792 792 1081 791 791 1081 784 784 1082 791 791 1082 782 782 1082 782 782 1083 791 791 1083 790 790 1083 782 782 1084 790 790 1084 781 781 1084 781 781 1085 790 790 1085 788 788 1085 814 814 1086 500 500 1086 547 547 1086 547 547 1087 500 500 1087 502 502 1087 547 547 1088 502 502 1088 816 816 1088 816 816 1089 502 502 1089 548 548 1089 816 816 1090 548 548 1090 818 818 1090 818 818 1091 548 548 1091 505 505 1091 818 818 1092 505 505 1092 819 819 1092 819 819 1093 505 505 1093 506 506 1093 819 819 1094 506 506 1094 549 549 1094 549 549 1095 506 506 1095 550 550 1095 549 549 1096 550 550 1096 820 820 1096 820 820 1097 550 550 1097 48 48 1097 553 553 1098 551 551 1098 550 550 1098 550 550 1099 551 551 1099 47 47 1099 550 550 1100 47 47 1100 48 48 1100 552 552 1101 499 499 1101 561 561 1101 561 561 1102 499 499 1102 553 553 1102 561 561 1103 553 553 1103 554 554 1103 554 554 1104 553 553 1104 507 507 1104 554 554 1105 507 507 1105 556 556 1105 556 556 1106 507 507 1106 555 555 1106 556 556 1107 555 555 1107 557 557 1107 557 557 1108 555 555 1108 504 504 1108 557 557 1109 504 504 1109 559 559 1109 559 559 1110 504 504 1110 503 503 1110 559 559 1111 503 503 1111 558 558 1111 558 558 1112 503 503 1112 501 501 1112 558 558 1113 105 105 1113 559 559 1113 559 559 1114 105 105 1114 560 560 1114 559 559 1115 560 560 1115 557 557 1115 557 557 1116 560 560 1116 565 565 1116 557 557 1117 565 565 1117 556 556 1117 556 556 1118 565 565 1118 564 564 1118 556 556 1119 564 564 1119 554 554 1119 554 554 1120 564 564 1120 563 563 1120 554 554 1121 563 563 1121 561 561 1121 561 561 1122 563 563 1122 498 498 1122 561 561 1123 498 498 1123 552 552 1123 552 552 1124 498 498 1124 45 45 1124 44 44 1125 562 562 1125 497 497 1125 497 497 1126 562 562 1126 498 498 1126 497 497 1127 498 498 1127 570 570 1127 570 570 1128 498 498 1128 563 563 1128 570 570 1129 563 563 1129 571 571 1129 571 571 1130 563 563 1130 564 564 1130 571 571 1131 564 564 1131 566 566 1131 566 566 1132 564 564 1132 565 565 1132 566 566 1133 565 565 1133 573 573 1133 573 573 1134 565 565 1134 560 560 1134 573 573 1135 560 560 1135 567 567 1135 567 567 1136 560 560 1136 105 105 1136 495 495 1137 43 43 1137 496 496 1137 496 496 1138 43 43 1138 497 497 1138 496 496 1139 497 497 1139 568 568 1139 568 568 1140 497 497 1140 570 570 1140 568 568 1141 570 570 1141 569 569 1141 569 569 1142 570 570 1142 571 571 1142 569 569 1143 571 571 1143 572 572 1143 572 572 1144 571 571 1144 566 566 1144 572 572 1145 566 566 1145 580 580 1145 580 580 1146 566 566 1146 573 573 1146 580 580 1147 573 573 1147 574 574 1147 574 574 1148 573 573 1148 567 567 1148 39 39 1149 40 40 1149 575 575 1149 575 575 1150 40 40 1150 496 496 1150 575 575 1151 496 496 1151 576 576 1151 576 576 1152 496 496 1152 568 568 1152 576 576 1153 568 568 1153 577 577 1153 577 577 1154 568 568 1154 569 569 1154 577 577 1155 569 569 1155 578 578 1155 578 578 1156 569 569 1156 572 572 1156 578 578 1157 572 572 1157 579 579 1157 579 579 1158 572 572 1158 580 580 1158 579 579 1159 580 580 1159 581 581 1159 581 581 1160 580 580 1160 574 574 1160 581 581 1161 108 108 1161 579 579 1161 579 579 1162 108 108 1162 582 582 1162 579 579 1163 582 582 1163 578 578 1163 578 578 1164 582 582 1164 583 583 1164 578 578 1165 583 583 1165 577 577 1165 577 577 1166 583 583 1166 584 584 1166 577 577 1167 584 584 1167 576 576 1167 576 576 1168 584 584 1168 509 509 1168 576 576 1169 509 509 1169 575 575 1169 575 575 1170 509 509 1170 585 585 1170 575 575 1171 585 585 1171 39 39 1171 39 39 1172 585 585 1172 36 36 1172 510 510 1173 34 34 1173 585 585 1173 585 585 1174 34 34 1174 35 35 1174 585 585 1175 35 35 1175 36 36 1175 598 598 1176 31 31 1176 596 596 1176 596 596 1177 31 31 1177 510 510 1177 596 596 1178 510 510 1178 586 586 1178 586 586 1179 510 510 1179 587 587 1179 586 586 1180 587 587 1180 588 588 1180 588 588 1181 587 587 1181 508 508 1181 588 588 1182 508 508 1182 589 589 1182 589 589 1183 508 508 1183 590 590 1183 589 589 1184 590 590 1184 591 591 1184 591 591 1185 590 590 1185 593 593 1185 591 591 1186 593 593 1186 592 592 1186 592 592 1187 593 593 1187 107 107 1187 592 592 1188 109 109 1188 591 591 1188 591 591 1189 109 109 1189 604 604 1189 591 591 1190 604 604 1190 589 589 1190 589 589 1191 604 604 1191 594 594 1191 589 589 1192 594 594 1192 588 588 1192 588 588 1193 594 594 1193 595 595 1193 588 588 1194 595 595 1194 586 586 1194 586 586 1195 595 595 1195 601 601 1195 586 586 1196 601 601 1196 596 596 1196 596 596 1197 601 601 1197 597 597 1197 596 596 1198 597 597 1198 598 598 1198 598 598 1199 597 597 1199 494 494 1199 599 599 1200 28 28 1200 606 606 1200 606 606 1201 28 28 1201 597 597 1201 606 606 1202 597 597 1202 600 600 1202 600 600 1203 597 597 1203 601 601 1203 600 600 1204 601 601 1204 609 609 1204 609 609 1205 601 601 1205 595 595 1205 609 609 1206 595 595 1206 602 602 1206 602 602 1207 595 595 1207 594 594 1207 602 602 1208 594 594 1208 611 611 1208 611 611 1209 594 594 1209 604 604 1209 611 611 1210 604 604 1210 603 603 1210 603 603 1211 604 604 1211 109 109 1211 23 23 1212 25 25 1212 605 605 1212 605 605 1213 25 25 1213 606 606 1213 605 605 1214 606 606 1214 607 607 1214 607 607 1215 606 606 1215 600 600 1215 607 607 1216 600 600 1216 608 608 1216 608 608 1217 600 600 1217 609 609 1217 608 608 1218 609 609 1218 615 615 1218 615 615 1219 609 609 1219 602 602 1219 615 615 1220 602 602 1220 610 610 1220 610 610 1221 602 602 1221 611 611 1221 610 610 1222 611 611 1222 617 617 1222 617 617 1223 611 611 1223 603 603 1223 20 20 1224 21 21 1224 612 612 1224 612 612 1225 21 21 1225 605 605 1225 612 612 1226 605 605 1226 621 621 1226 621 621 1227 605 605 1227 607 607 1227 621 621 1228 607 607 1228 613 613 1228 613 613 1229 607 607 1229 608 608 1229 613 613 1230 608 608 1230 614 614 1230 614 614 1231 608 608 1231 615 615 1231 614 614 1232 615 615 1232 618 618 1232 618 618 1233 615 615 1233 610 610 1233 618 618 1234 610 610 1234 616 616 1234 616 616 1235 610 610 1235 617 617 1235 616 616 1236 110 110 1236 618 618 1236 618 618 1237 110 110 1237 512 512 1237 618 618 1238 512 512 1238 614 614 1238 614 614 1239 512 512 1239 513 513 1239 614 614 1240 513 513 1240 613 613 1240 613 613 1241 513 513 1241 619 619 1241 613 613 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 620 620 1243 621 621 1244 620 620 1244 612 612 1244 612 612 1245 620 620 1245 514 514 1245 612 612 1246 514 514 1246 20 20 1246 20 20 1247 514 514 1247 623 623 1247 515 515 1248 622 622 1248 514 514 1248 514 514 1249 622 622 1249 18 18 1249 514 514 1250 18 18 1250 623 623 1250 635 635 1251 624 624 1251 634 634 1251 634 634 1252 624 624 1252 515 515 1252 634 634 1253 515 515 1253 633 633 1253 633 633 1254 515 515 1254 625 625 1254 633 633 1255 625 625 1255 630 630 1255 630 630 1256 625 625 1256 626 626 1256 630 630 1257 626 626 1257 629 629 1257 629 629 1258 626 626 1258 628 628 1258 629 629 1259 628 628 1259 627 627 1259 627 627 1260 628 628 1260 511 511 1260 627 627 1261 511 511 1261 111 111 1261 111 111 1262 511 511 1262 112 112 1262 111 111 1263 645 645 1263 627 627 1263 627 627 1264 645 645 1264 644 644 1264 627 627 1265 644 644 1265 629 629 1265 629 629 1266 644 644 1266 642 642 1266 629 629 1267 642 642 1267 630 630 1267 630 630 1268 642 642 1268 631 631 1268 630 630 1269 631 631 1269 633 633 1269 633 633 1270 631 631 1270 632 632 1270 633 633 1271 632 632 1271 634 634 1271 634 634 1272 632 632 1272 636 636 1272 634 634 1273 636 636 1273 635 635 1273 635 635 1274 636 636 1274 637 637 1274 15 15 1275 16 16 1275 638 638 1275 638 638 1276 16 16 1276 636 636 1276 638 638 1277 636 636 1277 639 639 1277 639 639 1278 636 636 1278 632 632 1278 639 639 1279 632 632 1279 640 640 1279 640 640 1280 632 632 1280 631 631 1280 640 640 1281 631 631 1281 641 641 1281 641 641 1282 631 631 1282 642 642 1282 641 641 1283 642 642 1283 650 650 1283 650 650 1284 642 642 1284 644 644 1284 650 650 1285 644 644 1285 643 643 1285 643 643 1286 644 644 1286 645 645 1286 13 13 1287 646 646 1287 653 653 1287 653 653 1288 646 646 1288 638 638 1288 653 653 1289 638 638 1289 647 647 1289 647 647 1290 638 638 1290 639 639 1290 647 647 1291 639 639 1291 648 648 1291 648 648 1292 639 639 1292 640 640 1292 648 648 1293 640 640 1293 649 649 1293 649 649 1294 640 640 1294 641 641 1294 649 649 1295 641 641 1295 656 656 1295 656 656 1296 641 641 1296 650 650 1296 656 656 1297 650 650 1297 651 651 1297 651 651 1298 650 650 1298 643 643 1298 660 660 1299 12 12 1299 658 658 1299 658 658 1300 12 12 1300 653 653 1300 658 658 1301 653 653 1301 652 652 1301 652 652 1302 653 653 1302 647 647 1302 652 652 1303 647 647 1303 654 654 1303 654 654 1304 647 647 1304 648 648 1304 654 654 1305 648 648 1305 655 655 1305 655 655 1306 648 648 1306 649 649 1306 655 655 1307 649 649 1307 657 657 1307 657 657 1308 649 649 1308 656 656 1308 657 657 1309 656 656 1309 114 114 1309 114 114 1310 656 656 1310 651 651 1310 114 114 1311 113 113 1311 657 657 1311 657 657 1312 113 113 1312 516 516 1312 657 657 1313 516 516 1313 655 655 1313 655 655 1314 516 516 1314 518 518 1314 655 655 1315 518 518 1315 654 654 1315 654 654 1316 518 518 1316 521 521 1316 654 654 1317 521 521 1317 652 652 1317 652 652 1318 521 521 1318 522 522 1318 652 652 1319 522 522 1319 658 658 1319 658 658 1320 522 522 1320 659 659 1320 658 658 1321 659 659 1321 660 660 1321 660 660 1322 659 659 1322 661 661 1322 523 523 1323 8 8 1323 659 659 1323 659 659 1324 8 8 1324 9 9 1324 659 659 1325 9 9 1325 661 661 1325 4 4 1326 6 6 1326 662 662 1326 662 662 1327 6 6 1327 523 523 1327 662 662 1328 523 523 1328 671 671 1328 671 671 1329 523 523 1329 663 663 1329 671 671 1330 663 663 1330 664 664 1330 664 664 1331 663 663 1331 520 520 1331 664 664 1332 520 520 1332 665 665 1332 665 665 1333 520 520 1333 666 666 1333 665 665 1334 666 666 1334 667 667 1334 667 667 1335 666 666 1335 519 519 1335 667 667 1336 519 519 1336 668 668 1336 668 668 1337 519 519 1337 517 517 1337 668 668 1338 115 115 1338 667 667 1338 667 667 1339 115 115 1339 669 669 1339 667 667 1340 669 669 1340 665 665 1340 665 665 1341 669 669 1341 670 670 1341 665 665 1342 670 670 1342 664 664 1342 664 664 1343 670 670 1343 677 677 1343 664 664 1344 677 677 1344 671 671 1344 671 671 1345 677 677 1345 675 675 1345 671 671 1346 675 675 1346 662 662 1346 662 662 1347 675 675 1347 672 672 1347 662 662 1348 672 672 1348 4 4 1348 4 4 1349 672 672 1349 3 3 1349 1 1 1350 2 2 1350 673 673 1350 673 673 1351 2 2 1351 672 672 1351 673 673 1352 672 672 1352 674 674 1352 674 674 1353 672 672 1353 675 675 1353 674 674 1354 675 675 1354 676 676 1354 676 676 1355 675 675 1355 677 677 1355 676 676 1356 677 677 1356 525 525 1356 525 525 1357 677 677 1357 670 670 1357 525 525 1358 670 670 1358 678 678 1358 678 678 1359 670 670 1359 669 669 1359 678 678 1360 669 669 1360 116 116 1360 116 116 1361 669 669 1361 115 115 1361 493 493 1362 103 103 1362 673 673 1362 673 673 1363 103 103 1363 0 0 1363 673 673 1364 0 0 1364 1 1 1364 99 99 1365 679 679 1365 689 689 1365 689 689 1366 679 679 1366 493 493 1366 689 689 1367 493 493 1367 680 680 1367 680 680 1368 493 493 1368 527 527 1368 680 680 1369 527 527 1369 681 681 1369 681 681 1370 527 527 1370 682 682 1370 681 681 1371 682 682 1371 688 688 1371 688 688 1372 682 682 1372 526 526 1372 688 688 1373 526 526 1373 686 686 1373 686 686 1374 526 526 1374 683 683 1374 686 686 1375 683 683 1375 684 684 1375 684 684 1376 683 683 1376 524 524 1376 684 684 1377 685 685 1377 686 686 1377 686 686 1378 685 685 1378 687 687 1378 686 686 1379 687 687 1379 688 688 1379 688 688 1380 687 687 1380 528 528 1380 688 688 1381 528 528 1381 681 681 1381 681 681 1382 528 528 1382 529 529 1382 681 681 1383 529 529 1383 680 680 1383 680 680 1384 529 529 1384 530 530 1384 680 680 1385 530 530 1385 689 689 1385 689 689 1386 530 530 1386 690 690 1386 689 689 1387 690 690 1387 99 99 1387 99 99 1388 690 690 1388 98 98 1388 691 691 1389 492 492 1389 690 690 1389 690 690 1390 492 492 1390 692 692 1390 690 690 1391 692 692 1391 98 98 1391 693 693 1392 96 96 1392 705 705 1392 705 705 1393 96 96 1393 691 691 1393 705 705 1394 691 691 1394 704 704 1394 704 704 1395 691 691 1395 531 531 1395 704 704 1396 531 531 1396 702 702 1396 702 702 1397 531 531 1397 694 694 1397 702 702 1398 694 694 1398 699 699 1398 699 699 1399 694 694 1399 695 695 1399 699 699 1400 695 695 1400 696 696 1400 696 696 1401 695 695 1401 697 697 1401 696 696 1402 697 697 1402 698 698 1402 698 698 1403 697 697 1403 117 117 1403 698 698 1404 118 118 1404 696 696 1404 696 696 1405 118 118 1405 700 700 1405 696 696 1406 700 700 1406 699 699 1406 699 699 1407 700 700 1407 701 701 1407 699 699 1408 701 701 1408 702 702 1408 702 702 1409 701 701 1409 703 703 1409 702 702 1410 703 703 1410 704 704 1410 704 704 1411 703 703 1411 709 709 1411 704 704 1412 709 709 1412 705 705 1412 705 705 1413 709 709 1413 707 707 1413 705 705 1414 707 707 1414 693 693 1414 693 693 1415 707 707 1415 94 94 1415 91 91 1416 93 93 1416 706 706 1416 706 706 1417 93 93 1417 707 707 1417 706 706 1418 707 707 1418 708 708 1418 708 708 1419 707 707 1419 709 709 1419 708 708 1420 709 709 1420 534 534 1420 534 534 1421 709 709 1421 703 703 1421 534 534 1422 703 703 1422 533 533 1422 533 533 1423 703 703 1423 701 701 1423 533 533 1424 701 701 1424 710 710 1424 710 710 1425 701 701 1425 700 700 1425 710 710 1426 700 700 1426 711 711 1426 711 711 1427 700 700 1427 118 118 1427 536 536 1428 89 89 1428 706 706 1428 706 706 1429 89 89 1429 712 712 1429 706 706 1430 712 712 1430 91 91 1430 87 87 1431 88 88 1431 722 722 1431 722 722 1432 88 88 1432 536 536 1432 722 722 1433 536 536 1433 713 713 1433 713 713 1434 536 536 1434 535 535 1434 713 713 1435 535 535 1435 714 714 1435 714 714 1436 535 535 1436 715 715 1436 714 714 1437 715 715 1437 716 716 1437 716 716 1438 715 715 1438 532 532 1438 716 716 1439 532 532 1439 717 717 1439 717 717 1440 532 532 1440 719 719 1440 717 717 1441 719 719 1441 718 718 1441 718 718 1442 719 719 1442 119 119 1442 718 718 1443 720 720 1443 717 717 1443 717 717 1444 720 720 1444 539 539 1444 717 717 1445 539 539 1445 716 716 1445 716 716 1446 539 539 1446 540 540 1446 716 716 1447 540 540 1447 714 714 1447 714 714 1448 540 540 1448 541 541 1448 714 714 1449 541 541 1449 713 713 1449 713 713 1450 541 541 1450 721 721 1450 713 713 1451 721 721 1451 722 722 1451 722 722 1452 721 721 1452 725 725 1452 722 722 1453 725 725 1453 87 87 1453 87 87 1454 725 725 1454 723 723 1454 727 727 1455 724 724 1455 725 725 1455 725 725 1456 724 724 1456 84 84 1456 725 725 1457 84 84 1457 723 723 1457 81 81 1458 491 491 1458 737 737 1458 737 737 1459 491 491 1459 727 727 1459 737 737 1460 727 727 1460 726 726 1460 726 726 1461 727 727 1461 728 728 1461 726 726 1462 728 728 1462 729 729 1462 729 729 1463 728 728 1463 542 542 1463 729 729 1464 542 542 1464 730 730 1464 730 730 1465 542 542 1465 731 731 1465 730 730 1466 731 731 1466 733 733 1466 733 733 1467 731 731 1467 538 538 1467 733 733 1468 538 538 1468 732 732 1468 732 732 1469 538 538 1469 537 537 1469 732 732 1470 746 746 1470 733 733 1470 733 733 1471 746 746 1471 734 734 1471 733 733 1472 734 734 1472 730 730 1472 730 730 1473 734 734 1473 735 735 1473 730 730 1474 735 735 1474 729 729 1474 729 729 1475 735 735 1475 736 736 1475 729 729 1476 736 736 1476 726 726 1476 726 726 1477 736 736 1477 741 741 1477 726 726 1478 741 741 1478 737 737 1478 737 737 1479 741 741 1479 738 738 1479 737 737 1480 738 738 1480 81 81 1480 81 81 1481 738 738 1481 80 80 1481 747 747 1482 78 78 1482 739 739 1482 739 739 1483 78 78 1483 738 738 1483 739 739 1484 738 738 1484 740 740 1484 740 740 1485 738 738 1485 741 741 1485 740 740 1486 741 741 1486 742 742 1486 742 742 1487 741 741 1487 736 736 1487 742 742 1488 736 736 1488 743 743 1488 743 743 1489 736 736 1489 735 735 1489 743 743 1490 735 735 1490 744 744 1490 744 744 1491 735 735 1491 734 734 1491 744 744 1492 734 734 1492 745 745 1492 745 745 1493 734 734 1493 746 746 1493 749 749 1494 73 73 1494 739 739 1494 739 739 1495 73 73 1495 75 75 1495 739 739 1496 75 75 1496 747 747 1496 71 71 1497 490 490 1497 748 748 1497 748 748 1498 490 490 1498 749 749 1498 748 748 1499 749 749 1499 761 761 1499 761 761 1500 749 749 1500 544 544 1500 761 761 1501 544 544 1501 750 750 1501 750 750 1502 544 544 1502 543 543 1502 750 750 1503 543 543 1503 751 751 1503 751 751 1504 543 543 1504 753 753 1504 751 751 1505 753 753 1505 752 752 1505 752 752 1506 753 753 1506 754 754 1506 752 752 1507 754 754 1507 756 756 1507 756 756 1508 754 754 1508 755 755 1508 756 756 1509 757 757 1509 752 752 1509 752 752 1510 757 757 1510 758 758 1510 752 752 1511 758 758 1511 751 751 1511 751 751 1512 758 758 1512 759 759 1512 751 751 1513 759 759 1513 750 750 1513 750 750 1514 759 759 1514 760 760 1514 750 750 1515 760 760 1515 761 761 1515 761 761 1516 760 760 1516 762 762 1516 761 761 1517 762 762 1517 748 748 1517 748 748 1518 762 762 1518 763 763 1518 748 748 1519 763 763 1519 71 71 1519 71 71 1520 763 763 1520 70 70 1520 68 68 1521 69 69 1521 770 770 1521 770 770 1522 69 69 1522 763 763 1522 770 770 1523 763 763 1523 771 771 1523 771 771 1524 763 763 1524 762 762 1524 771 771 1525 762 762 1525 764 764 1525 764 764 1526 762 762 1526 760 760 1526 764 764 1527 760 760 1527 765 765 1527 765 765 1528 760 760 1528 759 759 1528 765 765 1529 759 759 1529 766 766 1529 766 766 1530 759 759 1530 758 758 1530 766 766 1531 758 758 1531 767 767 1531 767 767 1532 758 758 1532 757 757 1532 779 779 1533 768 768 1533 769 769 1533 769 769 1534 768 768 1534 770 770 1534 769 769 1535 770 770 1535 778 778 1535 778 778 1536 770 770 1536 771 771 1536 778 778 1537 771 771 1537 776 776 1537 776 776 1538 771 771 1538 764 764 1538 776 776 1539 764 764 1539 774 774 1539 774 774 1540 764 764 1540 765 765 1540 774 774 1541 765 765 1541 772 772 1541 772 772 1542 765 765 1542 766 766 1542 772 772 1543 766 766 1543 120 120 1543 120 120 1544 766 766 1544 767 767 1544 120 120 1545 123 123 1545 772 772 1545 772 772 1546 123 123 1546 773 773 1546 772 772 1547 773 773 1547 774 774 1547 774 774 1548 773 773 1548 775 775 1548 774 774 1549 775 775 1549 776 776 1549 776 776 1550 775 775 1550 777 777 1550 776 776 1551 777 777 1551 778 778 1551 778 778 1552 777 777 1552 783 783 1552 778 778 1553 783 783 1553 769 769 1553 769 769 1554 783 783 1554 489 489 1554 769 769 1555 489 489 1555 779 779 1555 779 779 1556 489 489 1556 66 66 1556 63 63 1557 780 780 1557 781 781 1557 781 781 1558 780 780 1558 489 489 1558 781 781 1559 489 489 1559 782 782 1559 782 782 1560 489 489 1560 783 783 1560 782 782 1561 783 783 1561 784 784 1561 784 784 1562 783 783 1562 777 777 1562 784 784 1563 777 777 1563 546 546 1563 546 546 1564 777 777 1564 775 775 1564 546 546 1565 775 775 1565 545 545 1565 545 545 1566 775 775 1566 773 773 1566 545 545 1567 773 773 1567 785 785 1567 785 785 1568 773 773 1568 123 123 1568 788 788 1569 61 61 1569 781 781 1569 781 781 1570 61 61 1570 786 786 1570 781 781 1571 786 786 1571 63 63 1571 57 57 1572 58 58 1572 787 787 1572 787 787 1573 58 58 1573 788 788 1573 787 787 1574 788 788 1574 789 789 1574 789 789 1575 788 788 1575 790 790 1575 789 789 1576 790 790 1576 798 798 1576 798 798 1577 790 790 1577 791 791 1577 798 798 1578 791 791 1578 797 797 1578 797 797 1579 791 791 1579 792 792 1579 797 797 1580 792 792 1580 794 794 1580 794 794 1581 792 792 1581 793 793 1581 794 794 1582 793 793 1582 121 121 1582 121 121 1583 793 793 1583 122 122 1583 121 121 1584 795 795 1584 794 794 1584 794 794 1585 795 795 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 789 789 1590 789 789 1591 803 803 1591 802 802 1591 789 789 1592 802 802 1592 787 787 1592 787 787 1593 802 802 1593 799 799 1593 787 787 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 807 807 1596 807 807 1597 800 800 1597 799 799 1597 807 807 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 809 809 1600 809 809 1601 802 802 1601 803 803 1601 809 809 1602 803 803 1602 811 811 1602 811 811 1603 803 803 1603 804 804 1603 811 811 1604 804 804 1604 812 812 1604 812 812 1605 804 804 1605 796 796 1605 812 812 1606 796 796 1606 124 124 1606 124 124 1607 796 796 1607 795 795 1607 805 805 1608 488 488 1608 806 806 1608 806 806 1609 488 488 1609 807 807 1609 806 806 1610 807 807 1610 817 817 1610 817 817 1611 807 807 1611 801 801 1611 817 817 1612 801 801 1612 808 808 1612 808 808 1613 801 801 1613 809 809 1613 808 808 1614 809 809 1614 815 815 1614 815 815 1615 809 809 1615 811 811 1615 815 815 1616 811 811 1616 810 810 1616 810 810 1617 811 811 1617 812 812 1617 810 810 1618 812 812 1618 813 813 1618 813 813 1619 812 812 1619 124 124 1619 813 813 1620 814 814 1620 810 810 1620 810 810 1621 814 814 1621 547 547 1621 810 810 1622 547 547 1622 815 815 1622 815 815 1623 547 547 1623 816 816 1623 815 815 1624 816 816 1624 808 808 1624 808 808 1625 816 816 1625 818 818 1625 808 808 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 806 806 1628 806 806 1629 819 819 1629 549 549 1629 806 806 1630 549 549 1630 805 805 1630 805 805 1631 549 549 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.STL b/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.STL new file mode 100755 index 0000000..e60d4d8 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.dae b/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.dae new file mode 100755 index 0000000..25beafa --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/left_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:38:01 2016 GMT + Tue Jan 19 20:38:01 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 -0.0010504 0.00992115 0.000683737 0.00090033 0.00992115 -0.000871921 0.00190833 0.00929776 -0.00314799 0.00155056 0.00968583 -0.00194434 0.00229522 0.00929776 -0.00287811 0.000649718 0.00992115 -0.00107178 0.00100666 0.00968583 -0.00227405 0.00149011 0.00929776 -0.00336618 0.00128919 0.00968583 -0.00212665 0.00249738 0.00876307 -0.00411968 0.000356608 0.00992115 -0.00120153 0.000507328 0.00992115 -0.00114606 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000200032 0.00992115 -0.00123727 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 4.01713e-05 0.00992115 -0.00125269 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 -0.000120349 0.00992115 -0.00124754 -0.0002388 0.00968583 -0.00247541 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.00567642 0.00535827 0.00625037 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000278893 0.00992115 -0.00122191 -0.000858888 0.00968583 -0.00233388 -0.000553387 0.00968583 -0.00242455 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -0.000432857 0.00992115 -0.00117621 -0.00170272 0.00929776 -0.00326379 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000579714 0.00992115 -0.0011112 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.000717052 0.00992115 -0.00102795 -0.00115029 0.00968583 -0.00220488 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00167194 0.00968583 -0.001841 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.0010504 0.00992115 -0.000683737 -0.00308521 0.00929776 -0.00200825 -0.00403752 0.00876307 -0.00262813 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00118948 0.00992115 -0.000394935 -0.00112921 0.00992115 -0.000543801 -0.00236021 0.00968583 -0.000783642 -0.00349371 0.00929776 -0.00115999 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00457211 0.00876307 -0.00151805 -0.00434045 0.00876307 -0.00209025 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00123022 0.00992115 -0.000239585 -0.00244104 0.00968583 -0.000475392 -0.00361336 0.00929776 -0.000703702 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 0.000627905 -0.00190781 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00932245 -0.00187381 -0.00309527 -0.00888141 -0.00425779 -0.00172965 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00671923 -0.00728969 -0.00130857 -0.00125076 0.00992115 -8.03013e-05 -0.00248179 0.00968583 -0.000159336 -0.00480764 0.00876307 -0.000308661 -0.0047287 0.00876307 -0.000920914 -0.00576946 0.00809017 -0.0011236 -0.00683141 0.00728969 -0.000438591 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.0076893 0.00637424 -0.00049367 -0.00828758 0.00535827 -0.00161401 -0.00842593 0.00535827 -0.000540963 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00980269 0.00187381 -0.000629354 -0.00964173 0.00187381 -0.00187773 -0.00995976 0.000627905 -0.000639438 -0.00964173 -0.00187381 -0.00187773 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00933518 -0.00309017 -0.00181803 -0.00828758 -0.00535827 -0.00161401 -0.00683141 -0.00728969 -0.000438591 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 8.03013e-05 6.98426e-19 0.01 5.55111e-19 -0.00248179 0.00968583 0.000159336 -0.00367368 0.00929776 0.000235858 -0.00367368 0.00929776 -0.000235858 -0.00480764 0.00876307 0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00949102 0.00309017 -0.000609344 -0.00995976 -0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00980269 -0.00187381 -0.000629354 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.0076893 -0.00637424 -0.00049367 -0.00586578 -0.00809017 0.000376595 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00123022 0.00992115 0.000239585 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 6.98426e-19 -0.01 -5.55111e-19 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.00123022 -0.00992115 0.000239585 -0.00367368 -0.00929776 0.000235858 -0.00367368 -0.00929776 -0.000235858 -0.0047287 -0.00876307 -0.000920914 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00264442 0.00929776 -0.00256098 0.00346067 0.00876307 -0.00335148 0.0029502 0.00929776 -0.00220179 0.00216688 0.00968583 -0.00122036 0.00109205 0.00992115 -0.000615032 0.00116173 0.00992115 -0.000470334 -0.00361336 -0.00929776 -0.000703702 -0.00349371 -0.00929776 -0.00115999 -0.00457211 -0.00876307 -0.00151805 -0.00529576 -0.00809017 -0.0025503 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00320754 0.00929776 -0.00180645 0.00230515 0.00968583 -0.000933251 0.00121234 0.00992115 -0.000317913 0.00240556 0.00968583 -0.000630813 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 7.04223e-19 0.00341221 0.00929776 -0.00138145 0.00356085 0.00929776 -0.000933765 0.00419761 0.00876307 -0.00236405 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00123022 -0.00992115 -0.000239585 -0.00125076 -0.00992115 -8.03013e-05 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 8.42229e-19 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00465998 0.00876307 -0.00122199 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00224062 -0.00968583 -0.00107902 -0.00118948 -0.00992115 -0.000394935 0.00121234 0.00992115 0.000317913 0.00368125 0.00929776 9.66952e-19 0.00365102 0.00929776 -0.000470747 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00481754 0.00876307 1.07643e-18 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00112921 -0.00992115 -0.000543801 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.0058296 0.00809017 -0.000751643 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.00189364 -0.00968583 -0.00161208 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00587785 0.00809017 1.16892e-18 0.00684547 0.00728969 1.24299e-18 0.00678927 0.00728969 -0.000875379 0.00764187 0.00637424 -0.00098531 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.0014228 -0.00968583 -0.00203969 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00770513 0.00637424 1.29745e-18 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000858888 -0.00968583 -0.00233388 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 1.33145e-18 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000432857 -0.00992115 -0.00117621 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00904827 0.00425779 1.34445e-18 0.00943248 0.00309017 -0.00121618 0.00974223 0.00187381 -0.00125612 0.00965386 0.000627905 -0.00253154 0.00950161 0.00187381 -0.00249162 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000278893 -0.00992115 -0.00122191 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00951057 0.00309017 1.33625e-18 0.00982287 0.00187381 1.30697e-18 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 -0.000120349 -0.00992115 -0.00124754 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00998027 0.000627905 1.25709e-18 0.00989833 0.000627905 -0.00127625 0.00989833 -0.000627905 -0.00127625 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 7.9709e-05 -0.00968583 -0.00248562 0.000396909 -0.00968583 -0.00245502 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000200032 -0.00992115 -0.00123727 4.01713e-05 -0.00992115 -0.00125269 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00982287 -0.00187381 1.09894e-18 0.00998027 -0.000627905 1.18737e-18 0.00919952 -0.00309017 -0.0024124 0.00943248 -0.00309017 -0.00121618 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.000707591 -0.00968583 -0.00238411 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00951057 -0.00309017 9.93169e-19 0.00897398 -0.00425779 -0.00115707 0.00875235 -0.00425779 -0.00229514 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00904827 -0.00425779 8.71738e-19 0.00837396 -0.00535827 -0.0010797 0.00816714 -0.00535827 -0.00214168 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 0.000649718 -0.00992115 -0.00107178 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00745314 -0.00637424 -0.00195444 0.00662159 -0.00728969 -0.00173639 0.00386084 -0.00876307 -0.00288142 0.0029502 -0.00929776 -0.00220179 0.00264442 -0.00929776 -0.00256098 0.00178646 -0.00968583 -0.00173009 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 7.3656e-19 0.00770513 -0.00637424 5.89765e-19 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00544828 -0.00809017 -0.00220576 0.00446546 -0.00876307 -0.00180786 0.00419761 -0.00876307 -0.00236405 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 0.00090033 -0.00992115 -0.000871921 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00678927 -0.00728969 -0.000875379 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00684547 -0.00728969 4.3367e-19 0.0058296 -0.00809017 -0.000751643 0.00477798 -0.00876307 -0.000616053 0.00230515 -0.00968583 -0.000933251 0.00109205 -0.00992115 -0.000615032 0.00587785 -0.00809017 2.70735e-19 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00481754 -0.00876307 1.0353e-19 0.00368125 -0.00929776 -6.53071e-20 0.00121234 -0.00992115 -0.000317913 0.00240556 -0.00968583 -0.000630813 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00246648 -0.00968583 -0.000318018 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 -2.33114e-19 0.00125333 -0.00992115 -3.97245e-19 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 0.000159336 -0.00248179 -0.00968583 -0.000159336 -0.00557841 -0.00809017 -0.00185216 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00480764 -0.00876307 0.000308661 -0.00480764 -0.00876307 -0.000308661 -0.00586578 -0.00809017 -0.000376595 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.0073126 -0.00637424 -0.00242795 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00199303 0.00968583 -0.00148744 0.00178646 0.00968583 -0.00173009 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 0.00124304 -0.00992115 0.000160273 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 -3.55661e-18 0.0640702 0.997945 3.55661e-18 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1134 1134 0 0 0 0 391 391 0 1092 1092 1 4 4 1 1 1 1 1 1 2 4 4 2 201 201 2 2 2 3 201 201 3 4 4 3 3 3 4 425 425 4 1176 1176 4 2 2 5 4 4 5 6 6 5 6 6 6 4 4 6 1092 1092 6 6 6 7 1092 1092 7 7 7 7 8 8 8 201 201 8 2 2 8 8 8 9 2 2 9 11 11 9 11 11 10 2 2 10 6 6 10 11 11 11 6 6 11 5 5 11 5 5 12 6 6 12 7 7 12 5 5 13 7 7 13 12 12 13 14 14 14 201 201 14 8 8 14 14 14 15 8 8 15 9 9 15 9 9 16 8 8 16 11 11 16 9 9 17 11 11 17 10 10 17 10 10 18 11 11 18 5 5 18 10 10 19 5 5 19 15 15 19 15 15 20 5 5 20 12 12 20 15 15 21 12 12 21 1088 1088 21 13 13 22 201 201 22 14 14 22 13 13 23 14 14 23 18 18 23 18 18 24 14 14 24 9 9 24 18 18 25 9 9 25 19 19 25 19 19 26 9 9 26 10 10 26 19 19 27 10 10 27 22 22 27 22 22 28 10 10 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1088 1088 30 16 16 31 1088 1088 31 1087 1087 31 17 17 32 201 201 32 13 13 32 17 17 33 13 13 33 26 26 33 26 26 34 13 13 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1087 1087 42 30 30 43 1087 1087 43 23 23 43 24 24 44 201 201 44 17 17 44 24 24 45 17 17 45 25 25 45 25 25 46 17 17 46 26 26 46 25 25 47 26 26 47 33 33 47 33 33 48 26 26 48 27 27 48 33 33 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 36 36 53 36 36 54 21 21 54 30 30 54 36 36 55 30 30 55 38 38 55 38 38 56 30 30 56 23 23 56 38 38 57 23 23 57 1086 1086 57 31 31 58 201 201 58 24 24 58 1118 1118 59 407 407 59 39 39 59 31 31 60 24 24 60 32 32 60 32 32 61 24 24 61 25 25 61 32 32 62 25 25 62 40 40 62 40 40 63 25 25 63 33 33 63 40 40 64 33 33 64 42 42 64 42 42 65 33 33 65 28 28 65 42 42 66 28 28 66 34 34 66 34 34 67 28 28 67 29 29 67 34 34 68 29 29 68 35 35 68 35 35 69 29 29 69 36 36 69 35 35 70 36 36 70 47 47 70 47 47 71 36 36 71 38 38 71 47 47 72 38 38 72 37 37 72 37 37 73 38 38 73 1086 1086 73 37 37 74 1086 1086 74 1084 1084 74 49 49 75 201 201 75 31 31 75 39 39 76 408 408 76 392 392 76 49 49 77 31 31 77 51 51 77 51 51 78 31 31 78 32 32 78 51 51 79 32 32 79 41 41 79 41 41 80 32 32 80 40 40 80 41 41 81 40 40 81 52 52 81 52 52 82 40 40 82 42 42 82 52 52 83 42 42 83 43 43 83 43 43 84 42 42 84 34 34 84 43 43 85 34 34 85 44 44 85 44 44 86 34 34 86 35 35 86 44 44 87 35 35 87 45 45 87 45 45 88 35 35 88 47 47 88 45 45 89 47 47 89 46 46 89 46 46 90 47 47 90 37 37 90 46 46 91 37 37 91 48 48 91 48 48 92 37 37 92 1084 1084 92 48 48 93 1084 1084 93 1083 1083 93 56 56 94 201 201 94 49 49 94 392 392 95 375 375 95 1121 1121 95 56 56 96 49 49 96 50 50 96 50 50 97 49 49 97 51 51 97 50 50 98 51 51 98 58 58 98 58 58 99 51 51 99 41 41 99 58 58 100 41 41 100 59 59 100 59 59 101 41 41 101 52 52 101 59 59 102 52 52 102 61 61 102 61 61 103 52 52 103 43 43 103 61 61 104 43 43 104 53 53 104 53 53 105 43 43 105 44 44 105 53 53 106 44 44 106 63 63 106 63 63 107 44 44 107 45 45 107 63 63 108 45 45 108 54 54 108 54 54 109 45 45 109 46 46 109 54 54 110 46 46 110 64 64 110 64 64 111 46 46 111 48 48 111 64 64 112 48 48 112 66 66 112 66 66 113 48 48 113 1083 1083 113 66 66 114 1083 1083 114 55 55 114 69 69 115 201 201 115 56 56 115 1121 1121 116 376 376 116 1122 1122 116 69 69 117 56 56 117 73 73 117 73 73 118 56 56 118 50 50 118 73 73 119 50 50 119 57 57 119 57 57 120 50 50 120 58 58 120 57 57 121 58 58 121 60 60 121 60 60 122 58 58 122 59 59 122 60 60 123 59 59 123 76 76 123 76 76 124 59 59 124 61 61 124 76 76 125 61 61 125 77 77 125 77 77 126 61 61 126 53 53 126 77 77 127 53 53 127 62 62 127 62 62 128 53 53 128 63 63 128 62 62 129 63 63 129 79 79 129 79 79 130 63 63 130 54 54 130 79 79 131 54 54 131 81 81 131 81 81 132 54 54 132 64 64 132 81 81 133 64 64 133 65 65 133 65 65 134 64 64 134 66 66 134 65 65 135 66 66 135 67 67 135 67 67 136 66 66 136 55 55 136 67 67 137 55 55 137 68 68 137 72 72 138 201 201 138 69 69 138 1122 1122 139 70 70 139 71 71 139 72 72 140 69 69 140 86 86 140 86 86 141 69 69 141 73 73 141 86 86 142 73 73 142 88 88 142 88 88 143 73 73 143 57 57 143 88 88 144 57 57 144 74 74 144 74 74 145 57 57 145 60 60 145 74 74 146 60 60 146 75 75 146 75 75 147 60 60 147 76 76 147 75 75 148 76 76 148 90 90 148 90 90 149 76 76 149 77 77 149 90 90 150 77 77 150 78 78 150 78 78 151 77 77 151 62 62 151 78 78 152 62 62 152 92 92 152 92 92 153 62 62 153 79 79 153 92 92 154 79 79 154 80 80 154 80 80 155 79 79 155 81 81 155 80 80 156 81 81 156 82 82 156 82 82 157 81 81 157 65 65 157 82 82 158 65 65 158 83 83 158 83 83 159 65 65 159 67 67 159 83 83 160 67 67 160 84 84 160 84 84 161 67 67 161 68 68 161 84 84 162 68 68 162 97 97 162 98 98 163 201 201 163 72 72 163 71 71 164 338 338 164 85 85 164 98 98 165 72 72 165 99 99 165 99 99 166 72 72 166 86 86 166 99 99 167 86 86 167 87 87 167 87 87 168 86 86 168 88 88 168 87 87 169 88 88 169 100 100 169 100 100 170 88 88 170 74 74 170 100 100 171 74 74 171 101 101 171 101 101 172 74 74 172 75 75 172 101 101 173 75 75 173 89 89 173 89 89 174 75 75 174 90 90 174 89 89 175 90 90 175 91 91 175 91 91 176 90 90 176 78 78 176 91 91 177 78 78 177 103 103 177 103 103 178 78 78 178 92 92 178 103 103 179 92 92 179 105 105 179 105 105 180 92 92 180 80 80 180 105 105 181 80 80 181 93 93 181 93 93 182 80 80 182 82 82 182 93 93 183 82 82 183 94 94 183 94 94 184 82 82 184 83 83 184 94 94 185 83 83 185 95 95 185 95 95 186 83 83 186 84 84 186 95 95 187 84 84 187 96 96 187 96 96 188 84 84 188 97 97 188 96 96 189 97 97 189 1080 1080 189 109 109 190 201 201 190 98 98 190 85 85 191 337 337 191 1124 1124 191 109 109 192 98 98 192 111 111 192 111 111 193 98 98 193 99 99 193 111 111 194 99 99 194 112 112 194 112 112 195 99 99 195 87 87 195 112 112 196 87 87 196 113 113 196 113 113 197 87 87 197 100 100 197 113 113 198 100 100 198 116 116 198 116 116 199 100 100 199 101 101 199 116 116 200 101 101 200 102 102 200 102 102 201 101 101 201 89 89 201 102 102 202 89 89 202 117 117 202 117 117 203 89 89 203 91 91 203 117 117 204 91 91 204 119 119 204 119 119 205 91 91 205 103 103 205 119 119 206 103 103 206 104 104 206 104 104 207 103 103 207 105 105 207 104 104 208 105 105 208 123 123 208 123 123 209 105 105 209 93 93 209 123 123 210 93 93 210 106 106 210 106 106 211 93 93 211 94 94 211 106 106 212 94 94 212 107 107 212 107 107 213 94 94 213 95 95 213 107 107 214 95 95 214 125 125 214 125 125 215 95 95 215 96 96 215 125 125 216 96 96 216 108 108 216 108 108 217 96 96 217 1080 1080 217 108 108 218 1080 1080 218 1078 1078 218 126 126 219 201 201 219 109 109 219 1124 1124 220 329 329 220 1126 1126 220 126 126 221 109 109 221 110 110 221 110 110 222 109 109 222 111 111 222 110 110 223 111 111 223 127 127 223 127 127 224 111 111 224 112 112 224 127 127 225 112 112 225 128 128 225 128 128 226 112 112 226 113 113 226 128 128 227 113 113 227 114 114 227 114 114 228 113 113 228 116 116 228 114 114 229 116 116 229 115 115 229 115 115 230 116 116 230 102 102 230 115 115 231 102 102 231 118 118 231 118 118 232 102 102 232 117 117 232 118 118 233 117 117 233 120 120 233 120 120 234 117 117 234 119 119 234 120 120 235 119 119 235 131 131 235 131 131 236 119 119 236 104 104 236 131 131 237 104 104 237 121 121 237 121 121 238 104 104 238 123 123 238 121 121 239 123 123 239 122 122 239 122 122 240 123 123 240 106 106 240 122 122 241 106 106 241 132 132 241 132 132 242 106 106 242 107 107 242 132 132 243 107 107 243 124 124 243 124 124 244 107 107 244 125 125 244 124 124 245 125 125 245 133 133 245 133 133 246 125 125 246 108 108 246 133 133 247 108 108 247 135 135 247 135 135 248 108 108 248 1078 1078 248 135 135 249 1078 1078 249 136 136 249 138 138 250 201 201 250 126 126 250 1126 1126 251 309 309 251 1127 1127 251 138 138 252 126 126 252 141 141 252 141 141 253 126 126 253 110 110 253 141 141 254 110 110 254 142 142 254 142 142 255 110 110 255 127 127 255 142 142 256 127 127 256 144 144 256 144 144 257 127 127 257 128 128 257 144 144 258 128 128 258 146 146 258 146 146 259 128 128 259 114 114 259 146 146 260 114 114 260 148 148 260 148 148 261 114 114 261 115 115 261 148 148 262 115 115 262 149 149 262 149 149 263 115 115 263 118 118 263 149 149 264 118 118 264 150 150 264 150 150 265 118 118 265 120 120 265 150 150 266 120 120 266 129 129 266 129 129 267 120 120 267 131 131 267 129 129 268 131 131 268 130 130 268 130 130 269 131 131 269 121 121 269 130 130 270 121 121 270 153 153 270 153 153 271 121 121 271 122 122 271 153 153 272 122 122 272 155 155 272 155 155 273 122 122 273 132 132 273 155 155 274 132 132 274 156 156 274 156 156 275 132 132 275 124 124 275 156 156 276 124 124 276 157 157 276 157 157 277 124 124 277 133 133 277 157 157 278 133 133 278 134 134 278 134 134 279 133 133 279 135 135 279 134 134 280 135 135 280 159 159 280 159 159 281 135 135 281 136 136 281 159 159 282 136 136 282 160 160 282 137 137 283 201 201 283 138 138 283 1127 1127 284 308 308 284 161 161 284 137 137 285 138 138 285 139 139 285 139 139 286 138 138 286 141 141 286 139 139 287 141 141 287 140 140 287 140 140 288 141 141 288 142 142 288 140 140 289 142 142 289 143 143 289 143 143 290 142 142 290 144 144 290 143 143 291 144 144 291 145 145 291 145 145 292 144 144 292 146 146 292 145 145 293 146 146 293 147 147 293 147 147 294 146 146 294 148 148 294 147 147 295 148 148 295 166 166 295 166 166 296 148 148 296 149 149 296 166 166 297 149 149 297 167 167 297 167 167 298 149 149 298 150 150 298 167 167 299 150 150 299 168 168 299 168 168 300 150 150 300 129 129 300 168 168 301 129 129 301 151 151 301 151 151 302 129 129 302 130 130 302 151 151 303 130 130 303 152 152 303 152 152 304 130 130 304 153 153 304 152 152 305 153 153 305 154 154 305 154 154 306 153 153 306 155 155 306 154 154 307 155 155 307 171 171 307 171 171 308 155 155 308 156 156 308 171 171 309 156 156 309 172 172 309 172 172 310 156 156 310 157 157 310 172 172 311 157 157 311 174 174 311 174 174 312 157 157 312 134 134 312 174 174 313 134 134 313 158 158 313 158 158 314 134 134 314 159 159 314 158 158 315 159 159 315 175 175 315 175 175 316 159 159 316 160 160 316 175 175 317 160 160 317 1077 1077 317 163 163 318 201 201 318 137 137 318 161 161 319 302 302 319 162 162 319 163 163 320 137 137 320 164 164 320 164 164 321 137 137 321 139 139 321 164 164 322 139 139 322 165 165 322 165 165 323 139 139 323 140 140 323 165 165 324 140 140 324 180 180 324 180 180 325 140 140 325 143 143 325 180 180 326 143 143 326 181 181 326 181 181 327 143 143 327 145 145 327 181 181 328 145 145 328 183 183 328 183 183 329 145 145 329 147 147 329 183 183 330 147 147 330 184 184 330 184 184 331 147 147 331 166 166 331 184 184 332 166 166 332 186 186 332 186 186 333 166 166 333 167 167 333 186 186 334 167 167 334 188 188 334 188 188 335 167 167 335 168 168 335 188 188 336 168 168 336 189 189 336 189 189 337 168 168 337 151 151 337 189 189 338 151 151 338 191 191 338 191 191 339 151 151 339 152 152 339 191 191 340 152 152 340 169 169 340 169 169 341 152 152 341 154 154 341 169 169 342 154 154 342 170 170 342 170 170 343 154 154 343 171 171 343 170 170 344 171 171 344 193 193 344 193 193 345 171 171 345 172 172 345 193 193 346 172 172 346 196 196 346 196 196 347 172 172 347 174 174 347 196 196 348 174 174 348 173 173 348 173 173 349 174 174 349 158 158 349 173 173 350 158 158 350 197 197 350 197 197 351 158 158 351 175 175 351 197 197 352 175 175 352 199 199 352 199 199 353 175 175 353 1077 1077 353 199 199 354 1077 1077 354 176 176 354 177 177 355 201 201 355 163 163 355 162 162 356 290 290 356 289 289 356 177 177 357 163 163 357 178 178 357 178 178 358 163 163 358 164 164 358 178 178 359 164 164 359 204 204 359 204 204 360 164 164 360 165 165 360 204 204 361 165 165 361 179 179 361 179 179 362 165 165 362 180 180 362 179 179 363 180 180 363 206 206 363 206 206 364 180 180 364 181 181 364 206 206 365 181 181 365 182 182 365 182 182 366 181 181 366 183 183 366 182 182 367 183 183 367 185 185 367 185 185 368 183 183 368 184 184 368 185 185 369 184 184 369 187 187 369 187 187 370 184 184 370 186 186 370 187 187 371 186 186 371 209 209 371 209 209 372 186 186 372 188 188 372 209 209 373 188 188 373 210 210 373 210 210 374 188 188 374 189 189 374 210 210 375 189 189 375 190 190 375 190 190 376 189 189 376 191 191 376 190 190 377 191 191 377 192 192 377 192 192 378 191 191 378 169 169 378 192 192 379 169 169 379 211 211 379 211 211 380 169 169 380 170 170 380 211 211 381 170 170 381 213 213 381 213 213 382 170 170 382 193 193 382 213 213 383 193 193 383 194 194 383 194 194 384 193 193 384 196 196 384 194 194 385 196 196 385 195 195 385 195 195 386 196 196 386 173 173 386 195 195 387 173 173 387 214 214 387 214 214 388 173 173 388 197 197 388 214 214 389 197 197 389 216 216 389 216 216 390 197 197 390 199 199 390 216 216 391 199 199 391 198 198 391 198 198 392 199 199 392 176 176 392 198 198 393 176 176 393 1074 1074 393 200 200 394 201 201 394 177 177 394 289 289 395 291 291 395 1131 1131 395 200 200 396 177 177 396 202 202 396 202 202 397 177 177 397 178 178 397 202 202 398 178 178 398 203 203 398 203 203 399 178 178 399 204 204 399 203 203 400 204 204 400 205 205 400 205 205 401 204 204 401 179 179 401 205 205 402 179 179 402 223 223 402 223 223 403 179 179 403 206 206 403 223 223 404 206 206 404 224 224 404 224 224 405 206 206 405 182 182 405 224 224 406 182 182 406 225 225 406 225 225 407 182 182 407 185 185 407 225 225 408 185 185 408 207 207 408 207 207 409 185 185 409 187 187 409 207 207 410 187 187 410 208 208 410 208 208 411 187 187 411 209 209 411 208 208 412 209 209 412 227 227 412 227 227 413 209 209 413 210 210 413 227 227 414 210 210 414 230 230 414 230 230 415 210 210 415 190 190 415 230 230 416 190 190 416 233 233 416 233 233 417 190 190 417 192 192 417 233 233 418 192 192 418 235 235 418 235 235 419 192 192 419 211 211 419 235 235 420 211 211 420 212 212 420 212 212 421 211 211 421 213 213 421 212 212 422 213 213 422 238 238 422 238 238 423 213 213 423 194 194 423 238 238 424 194 194 424 239 239 424 239 239 425 194 194 425 195 195 425 239 239 426 195 195 426 240 240 426 240 240 427 195 195 427 214 214 427 240 240 428 214 214 428 215 215 428 215 215 429 214 214 429 216 216 429 215 215 430 216 216 430 244 244 430 244 244 431 216 216 431 198 198 431 244 244 432 198 198 432 217 217 432 217 217 433 198 198 433 1074 1074 433 217 217 434 1074 1074 434 1072 1072 434 220 220 435 201 201 435 200 200 435 1131 1131 436 218 218 436 219 219 436 220 220 437 200 200 437 247 247 437 247 247 438 200 200 438 202 202 438 247 247 439 202 202 439 221 221 439 221 221 440 202 202 440 203 203 440 221 221 441 203 203 441 222 222 441 222 222 442 203 203 442 205 205 442 222 222 443 205 205 443 249 249 443 249 249 444 205 205 444 223 223 444 249 249 445 223 223 445 250 250 445 250 250 446 223 223 446 224 224 446 250 250 447 224 224 447 226 226 447 226 226 448 224 224 448 225 225 448 226 226 449 225 225 449 252 252 449 252 252 450 225 225 450 207 207 450 252 252 451 207 207 451 254 254 451 254 254 452 207 207 452 208 208 452 254 254 453 208 208 453 228 228 453 228 228 454 208 208 454 227 227 454 228 228 455 227 227 455 229 229 455 229 229 456 227 227 456 230 230 456 229 229 457 230 230 457 231 231 457 231 231 458 230 230 458 233 233 458 231 231 459 233 233 459 232 232 459 232 232 460 233 233 460 235 235 460 232 232 461 235 235 461 234 234 461 234 234 462 235 235 462 212 212 462 234 234 463 212 212 463 236 236 463 236 236 464 212 212 464 238 238 464 236 236 465 238 238 465 237 237 465 237 237 466 238 238 466 239 239 466 237 237 467 239 239 467 241 241 467 241 241 468 239 239 468 240 240 468 241 241 469 240 240 469 242 242 469 242 242 470 240 240 470 215 215 470 242 242 471 215 215 471 243 243 471 243 243 472 215 215 472 244 244 472 243 243 473 244 244 473 245 245 473 245 245 474 244 244 474 217 217 474 245 245 475 217 217 475 246 246 475 246 246 476 217 217 476 1072 1072 476 246 246 477 1072 1072 477 1071 1071 477 1093 1093 478 201 201 478 220 220 478 219 219 479 283 283 479 1132 1132 479 1093 1093 480 220 220 480 1095 1095 480 1095 1095 481 220 220 481 247 247 481 1095 1095 482 247 247 482 1096 1096 482 1096 1096 483 247 247 483 221 221 483 1096 1096 484 221 221 484 248 248 484 248 248 485 221 221 485 222 222 485 248 248 486 222 222 486 1097 1097 486 1097 1097 487 222 222 487 249 249 487 1097 1097 488 249 249 488 1098 1098 488 1098 1098 489 249 249 489 250 250 489 1098 1098 490 250 250 490 251 251 490 251 251 491 250 250 491 226 226 491 251 251 492 226 226 492 1100 1100 492 1100 1100 493 226 226 493 252 252 493 1100 1100 494 252 252 494 253 253 494 253 253 495 252 252 495 254 254 495 253 253 496 254 254 496 1103 1103 496 1103 1103 497 254 254 497 228 228 497 1103 1103 498 228 228 498 255 255 498 255 255 499 228 228 499 229 229 499 255 255 500 229 229 500 256 256 500 256 256 501 229 229 501 231 231 501 256 256 502 231 231 502 1105 1105 502 1105 1105 503 231 231 503 232 232 503 1105 1105 504 232 232 504 257 257 504 257 257 505 232 232 505 234 234 505 257 257 506 234 234 506 258 258 506 258 258 507 234 234 507 236 236 507 258 258 508 236 236 508 1107 1107 508 1107 1107 509 236 236 509 237 237 509 1107 1107 510 237 237 510 1108 1108 510 1108 1108 511 237 237 511 241 241 511 1108 1108 512 241 241 512 259 259 512 259 259 513 241 241 513 242 242 513 259 259 514 242 242 514 260 260 514 260 260 515 242 242 515 243 243 515 260 260 516 243 243 516 1112 1112 516 1112 1112 517 243 243 517 245 245 517 1112 1112 518 245 245 518 261 261 518 261 261 519 245 245 519 246 246 519 261 261 520 246 246 520 262 262 520 262 262 521 246 246 521 1071 1071 521 262 262 522 1071 1071 522 1114 1114 522 424 424 523 201 201 523 1093 1093 523 1132 1132 524 263 263 524 280 280 524 1138 1138 525 264 264 525 1024 1024 525 1024 1024 526 264 264 526 1119 1119 526 1024 1024 527 1119 1119 527 1025 1025 527 1025 1025 528 1119 1119 528 1120 1120 528 1025 1025 529 1120 1120 529 265 265 529 265 265 530 1120 1120 530 266 266 530 265 265 531 266 266 531 268 268 531 268 268 532 266 266 532 267 267 532 268 268 533 267 267 533 269 269 533 269 269 534 267 267 534 1123 1123 534 269 269 535 1123 1123 535 1030 1030 535 1030 1030 536 1123 1123 536 270 270 536 1030 1030 537 270 270 537 1031 1031 537 1031 1031 538 270 270 538 271 271 538 1031 1031 539 271 271 539 1032 1032 539 1032 1032 540 271 271 540 272 272 540 1032 1032 541 272 272 541 1034 1034 541 1034 1034 542 272 272 542 1125 1125 542 1034 1034 543 1125 1125 543 1036 1036 543 1036 1036 544 1125 1125 544 1128 1128 544 1036 1036 545 1128 1128 545 273 273 545 273 273 546 1128 1128 546 1129 1129 546 273 273 547 1129 1129 547 275 275 547 275 275 548 1129 1129 548 274 274 548 275 275 549 274 274 549 1039 1039 549 1039 1039 550 274 274 550 1130 1130 550 1039 1039 551 1130 1130 551 1040 1040 551 1040 1040 552 1130 1130 552 276 276 552 1040 1040 553 276 276 553 1041 1041 553 1041 1041 554 276 276 554 277 277 554 1041 1041 555 277 277 555 1043 1043 555 1043 1043 556 277 277 556 278 278 556 1043 1043 557 278 278 557 1044 1044 557 1044 1044 558 278 278 558 1133 1133 558 1044 1044 559 1133 1133 559 279 279 559 279 279 560 1133 1133 560 1117 1117 560 279 279 561 1117 1117 561 1047 1047 561 0 0 562 1134 1134 562 280 280 562 280 280 563 263 263 563 0 0 563 0 0 564 263 263 564 281 281 564 0 0 565 281 281 565 391 391 565 1132 1132 566 283 283 566 263 263 566 263 263 567 283 283 567 282 282 567 263 263 568 282 282 568 281 281 568 281 281 569 282 282 569 286 286 569 281 281 570 286 286 570 391 391 570 219 219 571 218 218 571 283 283 571 283 283 572 218 218 572 284 284 572 283 283 573 284 284 573 282 282 573 282 282 574 284 284 574 285 285 574 282 282 575 285 285 575 286 286 575 286 286 576 285 285 576 287 287 576 286 286 577 287 287 577 391 391 577 1131 1131 578 291 291 578 218 218 578 218 218 579 291 291 579 293 293 579 218 218 580 293 293 580 284 284 580 284 284 581 293 293 581 295 295 581 284 284 582 295 295 582 285 285 582 285 285 583 295 295 583 288 288 583 285 285 584 288 288 584 287 287 584 287 287 585 288 288 585 297 297 585 287 287 586 297 297 586 391 391 586 289 289 587 290 290 587 291 291 587 291 291 588 290 290 588 292 292 588 291 291 589 292 292 589 293 293 589 293 293 590 292 292 590 294 294 590 293 293 591 294 294 591 295 295 591 295 295 592 294 294 592 296 296 592 295 295 593 296 296 593 288 288 593 288 288 594 296 296 594 299 299 594 288 288 595 299 299 595 297 297 595 297 297 596 299 299 596 301 301 596 297 297 597 301 301 597 391 391 597 162 162 598 302 302 598 290 290 598 290 290 599 302 302 599 303 303 599 290 290 600 303 303 600 292 292 600 292 292 601 303 303 601 304 304 601 292 292 602 304 304 602 294 294 602 294 294 603 304 304 603 305 305 603 294 294 604 305 305 604 296 296 604 296 296 605 305 305 605 298 298 605 296 296 606 298 298 606 299 299 606 299 299 607 298 298 607 300 300 607 299 299 608 300 300 608 301 301 608 301 301 609 300 300 609 306 306 609 301 301 610 306 306 610 391 391 610 161 161 611 308 308 611 302 302 611 302 302 612 308 308 612 310 310 612 302 302 613 310 310 613 303 303 613 303 303 614 310 310 614 313 313 614 303 303 615 313 313 615 304 304 615 304 304 616 313 313 616 314 314 616 304 304 617 314 314 617 305 305 617 305 305 618 314 314 618 316 316 618 305 305 619 316 316 619 298 298 619 298 298 620 316 316 620 317 317 620 298 298 621 317 317 621 300 300 621 300 300 622 317 317 622 319 319 622 300 300 623 319 319 623 306 306 623 306 306 624 319 319 624 307 307 624 306 306 625 307 307 625 391 391 625 1127 1127 626 309 309 626 308 308 626 308 308 627 309 309 627 321 321 627 308 308 628 321 321 628 310 310 628 310 310 629 321 321 629 311 311 629 310 310 630 311 311 630 313 313 630 313 313 631 311 311 631 312 312 631 313 313 632 312 312 632 314 314 632 314 314 633 312 312 633 315 315 633 314 314 634 315 315 634 316 316 634 316 316 635 315 315 635 324 324 635 316 316 636 324 324 636 317 317 636 317 317 637 324 324 637 318 318 637 317 317 638 318 318 638 319 319 638 319 319 639 318 318 639 326 326 639 319 319 640 326 326 640 307 307 640 307 307 641 326 326 641 327 327 641 307 307 642 327 327 642 391 391 642 1126 1126 643 329 329 643 309 309 643 309 309 644 329 329 644 320 320 644 309 309 645 320 320 645 321 321 645 321 321 646 320 320 646 332 332 646 321 321 647 332 332 647 311 311 647 311 311 648 332 332 648 333 333 648 311 311 649 333 333 649 312 312 649 312 312 650 333 333 650 322 322 650 312 312 651 322 322 651 315 315 651 315 315 652 322 322 652 323 323 652 315 315 653 323 323 653 324 324 653 324 324 654 323 323 654 325 325 654 324 324 655 325 325 655 318 318 655 318 318 656 325 325 656 334 334 656 318 318 657 334 334 657 326 326 657 326 326 658 334 334 658 336 336 658 326 326 659 336 336 659 327 327 659 327 327 660 336 336 660 328 328 660 327 327 661 328 328 661 391 391 661 1124 1124 662 337 337 662 329 329 662 329 329 663 337 337 663 330 330 663 329 329 664 330 330 664 320 320 664 320 320 665 330 330 665 339 339 665 320 320 666 339 339 666 332 332 666 332 332 667 339 339 667 331 331 667 332 332 668 331 331 668 333 333 668 333 333 669 331 331 669 340 340 669 333 333 670 340 340 670 322 322 670 322 322 671 340 340 671 344 344 671 322 322 672 344 344 672 323 323 672 323 323 673 344 344 673 346 346 673 323 323 674 346 346 674 325 325 674 325 325 675 346 346 675 347 347 675 325 325 676 347 347 676 334 334 676 334 334 677 347 347 677 335 335 677 334 334 678 335 335 678 336 336 678 336 336 679 335 335 679 350 350 679 336 336 680 350 350 680 328 328 680 328 328 681 350 350 681 352 352 681 328 328 682 352 352 682 391 391 682 85 85 683 338 338 683 337 337 683 337 337 684 338 338 684 353 353 684 337 337 685 353 353 685 330 330 685 330 330 686 353 353 686 355 355 686 330 330 687 355 355 687 339 339 687 339 339 688 355 355 688 356 356 688 339 339 689 356 356 689 331 331 689 331 331 690 356 356 690 341 341 690 331 331 691 341 341 691 340 340 691 340 340 692 341 341 692 342 342 692 340 340 693 342 342 693 344 344 693 344 344 694 342 342 694 343 343 694 344 344 695 343 343 695 346 346 695 346 346 696 343 343 696 345 345 696 346 346 697 345 345 697 347 347 697 347 347 698 345 345 698 348 348 698 347 347 699 348 348 699 335 335 699 335 335 700 348 348 700 349 349 700 335 335 701 349 349 701 350 350 701 350 350 702 349 349 702 361 361 702 350 350 703 361 361 703 352 352 703 352 352 704 361 361 704 351 351 704 352 352 705 351 351 705 391 391 705 71 71 706 70 70 706 338 338 706 338 338 707 70 70 707 354 354 707 338 338 708 354 354 708 353 353 708 353 353 709 354 354 709 364 364 709 353 353 710 364 364 710 355 355 710 355 355 711 364 364 711 365 365 711 355 355 712 365 365 712 356 356 712 356 356 713 365 365 713 357 357 713 356 356 714 357 357 714 341 341 714 341 341 715 357 357 715 367 367 715 341 341 716 367 367 716 342 342 716 342 342 717 367 367 717 368 368 717 342 342 718 368 368 718 343 343 718 343 343 719 368 368 719 358 358 719 343 343 720 358 358 720 345 345 720 345 345 721 358 358 721 369 369 721 345 345 722 369 369 722 348 348 722 348 348 723 369 369 723 359 359 723 348 348 724 359 359 724 349 349 724 349 349 725 359 359 725 360 360 725 349 349 726 360 360 726 361 361 726 361 361 727 360 360 727 373 373 727 361 361 728 373 373 728 351 351 728 351 351 729 373 373 729 362 362 729 351 351 730 362 362 730 391 391 730 1122 1122 731 376 376 731 70 70 731 70 70 732 376 376 732 363 363 732 70 70 733 363 363 733 354 354 733 354 354 734 363 363 734 380 380 734 354 354 735 380 380 735 364 364 735 364 364 736 380 380 736 381 381 736 364 364 737 381 381 737 365 365 737 365 365 738 381 381 738 366 366 738 365 365 739 366 366 739 357 357 739 357 357 740 366 366 740 383 383 740 357 357 741 383 383 741 367 367 741 367 367 742 383 383 742 385 385 742 367 367 743 385 385 743 368 368 743 368 368 744 385 385 744 386 386 744 368 368 745 386 386 745 358 358 745 358 358 746 386 386 746 387 387 746 358 358 747 387 387 747 369 369 747 369 369 748 387 387 748 370 370 748 369 369 749 370 370 749 359 359 749 359 359 750 370 370 750 371 371 750 359 359 751 371 371 751 360 360 751 360 360 752 371 371 752 372 372 752 360 360 753 372 372 753 373 373 753 373 373 754 372 372 754 374 374 754 373 373 755 374 374 755 362 362 755 362 362 756 374 374 756 390 390 756 362 362 757 390 390 757 391 391 757 1121 1121 758 375 375 758 376 376 758 376 376 759 375 375 759 377 377 759 376 376 760 377 377 760 363 363 760 363 363 761 377 377 761 378 378 761 363 363 762 378 378 762 380 380 762 380 380 763 378 378 763 379 379 763 380 380 764 379 379 764 381 381 764 381 381 765 379 379 765 382 382 765 381 381 766 382 382 766 366 366 766 366 366 767 382 382 767 396 396 767 366 366 768 396 396 768 383 383 768 383 383 769 396 396 769 384 384 769 383 383 770 384 384 770 385 385 770 385 385 771 384 384 771 397 397 771 385 385 772 397 397 772 386 386 772 386 386 773 397 397 773 399 399 773 386 386 774 399 399 774 387 387 774 387 387 775 399 399 775 400 400 775 387 387 776 400 400 776 370 370 776 370 370 777 400 400 777 401 401 777 370 370 778 401 401 778 371 371 778 371 371 779 401 401 779 402 402 779 371 371 780 402 402 780 372 372 780 372 372 781 402 402 781 388 388 781 372 372 782 388 388 782 374 374 782 374 374 783 388 388 783 406 406 783 374 374 784 406 406 784 390 390 784 390 390 785 406 406 785 389 389 785 390 390 786 389 389 786 391 391 786 392 392 787 408 408 787 375 375 787 375 375 788 408 408 788 393 393 788 375 375 789 393 393 789 377 377 789 377 377 790 393 393 790 409 409 790 377 377 791 409 409 791 378 378 791 378 378 792 409 409 792 411 411 792 378 378 793 411 411 793 379 379 793 379 379 794 411 411 794 394 394 794 379 379 795 394 394 795 382 382 795 382 382 796 394 394 796 395 395 796 382 382 797 395 395 797 396 396 797 396 396 798 395 395 798 412 412 798 396 396 799 412 412 799 384 384 799 384 384 800 412 412 800 414 414 800 384 384 801 414 414 801 397 397 801 397 397 802 414 414 802 398 398 802 397 397 803 398 398 803 399 399 803 399 399 804 398 398 804 415 415 804 399 399 805 415 415 805 400 400 805 400 400 806 415 415 806 417 417 806 400 400 807 417 417 807 401 401 807 401 401 808 417 417 808 403 403 808 401 401 809 403 403 809 402 402 809 402 402 810 403 403 810 420 420 810 402 402 811 420 420 811 388 388 811 388 388 812 420 420 812 404 404 812 388 388 813 404 404 813 406 406 813 406 406 814 404 404 814 405 405 814 406 406 815 405 405 815 389 389 815 389 389 816 405 405 816 422 422 816 389 389 817 422 422 817 391 391 817 39 39 818 407 407 818 408 408 818 408 408 819 407 407 819 1141 1141 819 408 408 820 1141 1141 820 393 393 820 393 393 821 1141 1141 821 410 410 821 393 393 822 410 410 822 409 409 822 409 409 823 410 410 823 1144 1144 823 409 409 824 1144 1144 824 411 411 824 411 411 825 1144 1144 825 1145 1145 825 411 411 826 1145 1145 826 394 394 826 394 394 827 1145 1145 827 1146 1146 827 394 394 828 1146 1146 828 395 395 828 395 395 829 1146 1146 829 1148 1148 829 395 395 830 1148 1148 830 412 412 830 412 412 831 1148 1148 831 1149 1149 831 412 412 832 1149 1149 832 414 414 832 414 414 833 1149 1149 833 413 413 833 414 414 834 413 413 834 398 398 834 398 398 835 413 413 835 1151 1151 835 398 398 836 1151 1151 836 415 415 836 415 415 837 1151 1151 837 416 416 837 415 415 838 416 416 838 417 417 838 417 417 839 416 416 839 418 418 839 417 417 840 418 418 840 403 403 840 403 403 841 418 418 841 419 419 841 403 403 842 419 419 842 420 420 842 420 420 843 419 419 843 421 421 843 420 420 844 421 421 844 404 404 844 404 404 845 421 421 845 1154 1154 845 404 404 846 1154 1154 846 405 405 846 405 405 847 1154 1154 847 423 423 847 405 405 848 423 423 848 422 422 848 422 422 849 423 423 849 1155 1155 849 422 422 850 1155 1155 850 391 391 850 3 3 851 424 424 851 425 425 851 425 425 852 424 424 852 1094 1094 852 425 425 853 1094 1094 853 1136 1136 853 1136 1136 854 1094 1094 854 426 426 854 1136 1136 855 426 426 855 1137 1137 855 1137 1137 856 426 426 856 427 427 856 1137 1137 857 427 427 857 1139 1139 857 1139 1139 858 427 427 858 428 428 858 1139 1139 859 428 428 859 1140 1140 859 1140 1140 860 428 428 860 429 429 860 1140 1140 861 429 429 861 430 430 861 430 430 862 429 429 862 431 431 862 430 430 863 431 431 863 1142 1142 863 1142 1142 864 431 431 864 1099 1099 864 1142 1142 865 1099 1099 865 432 432 865 432 432 866 1099 1099 866 433 433 866 432 432 867 433 433 867 434 434 867 434 434 868 433 433 868 1101 1101 868 434 434 869 1101 1101 869 1143 1143 869 1143 1143 870 1101 1101 870 1102 1102 870 1143 1143 871 1102 1102 871 435 435 871 435 435 872 1102 1102 872 436 436 872 435 435 873 436 436 873 1147 1147 873 1147 1147 874 436 436 874 1104 1104 874 1147 1147 875 1104 1104 875 437 437 875 437 437 876 1104 1104 876 438 438 876 437 437 877 438 438 877 1150 1150 877 1150 1150 878 438 438 878 439 439 878 1150 1150 879 439 439 879 440 440 879 440 440 880 439 439 880 1106 1106 880 440 440 881 1106 1106 881 1152 1152 881 1152 1152 882 1106 1106 882 441 441 882 1152 1152 883 441 441 883 1153 1153 883 1153 1153 884 441 441 884 1109 1109 884 1153 1153 885 1109 1109 885 442 442 885 442 442 886 1109 1109 886 1110 1110 886 442 442 887 1110 1110 887 443 443 887 443 443 888 1110 1110 888 1111 1111 888 443 443 889 1111 1111 889 444 444 889 444 444 890 1111 1111 890 445 445 890 444 444 891 445 445 891 446 446 891 446 446 892 445 445 892 447 447 892 446 446 893 447 447 893 448 448 893 448 448 894 447 447 894 1113 1113 894 448 448 895 1113 1113 895 1156 1156 895 1156 1156 896 1113 1113 896 1115 1115 896 1156 1156 897 1115 1115 897 391 391 897 391 391 898 1116 1116 898 449 449 898 449 449 899 1116 1116 899 1070 1070 899 449 449 900 1070 1070 900 1049 1049 900 1049 1049 901 1070 1070 901 450 450 901 1049 1049 902 450 450 902 451 451 902 451 451 903 450 450 903 1073 1073 903 451 451 904 1073 1073 904 452 452 904 452 452 905 1073 1073 905 1075 1075 905 452 452 906 1075 1075 906 1051 1051 906 1051 1051 907 1075 1075 907 1076 1076 907 1051 1051 908 1076 1076 908 453 453 908 453 453 909 1076 1076 909 454 454 909 453 453 910 454 454 910 1054 1054 910 1054 1054 911 454 454 911 455 455 911 1054 1054 912 455 455 912 1055 1055 912 1055 1055 913 455 455 913 456 456 913 1055 1055 914 456 456 914 457 457 914 457 457 915 456 456 915 1079 1079 915 457 457 916 1079 1079 916 1058 1058 916 1058 1058 917 1079 1079 917 1081 1081 917 1058 1058 918 1081 1081 918 459 459 918 459 459 919 1081 1081 919 458 458 919 459 459 920 458 458 920 1061 1061 920 1061 1061 921 458 458 921 460 460 921 1061 1061 922 460 460 922 1062 1062 922 1062 1062 923 460 460 923 1082 1082 923 1062 1062 924 1082 1082 924 461 461 924 461 461 925 1082 1082 925 462 462 925 461 461 926 462 462 926 463 463 926 463 463 927 462 462 927 1085 1085 927 463 463 928 1085 1085 928 1065 1065 928 1065 1065 929 1085 1085 929 464 464 929 1065 1065 930 464 464 930 1067 1067 930 1067 1067 931 464 464 931 465 465 931 1067 1067 932 465 465 932 466 466 932 466 466 933 465 465 933 467 467 933 466 466 934 467 467 934 468 468 934 468 468 935 467 467 935 1089 1089 935 468 468 936 1089 1089 936 469 469 936 469 469 937 1089 1089 937 1090 1090 937 469 469 938 1090 1090 938 471 471 938 471 471 939 1090 1090 939 470 470 939 471 471 940 470 470 940 472 472 940 472 472 941 470 470 941 1091 1091 941 472 472 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 474 474 943 473 473 944 474 474 944 475 475 944 475 475 945 474 474 945 201 201 945 391 391 946 1048 1048 946 522 522 946 522 522 947 1048 1048 947 1050 1050 947 522 522 948 1050 1050 948 520 520 948 520 520 949 1050 1050 949 476 476 949 520 520 950 476 476 950 477 477 950 477 477 951 476 476 951 478 478 951 477 477 952 478 478 952 517 517 952 517 517 953 478 478 953 479 479 953 517 517 954 479 479 954 516 516 954 516 516 955 479 479 955 1052 1052 955 516 516 956 1052 1052 956 515 515 956 515 515 957 1052 1052 957 1053 1053 957 515 515 958 1053 1053 958 514 514 958 514 514 959 1053 1053 959 1056 1056 959 514 514 960 1056 1056 960 512 512 960 512 512 961 1056 1056 961 1057 1057 961 512 512 962 1057 1057 962 510 510 962 510 510 963 1057 1057 963 1059 1059 963 510 510 964 1059 1059 964 481 481 964 481 481 965 1059 1059 965 480 480 965 481 481 966 480 480 966 509 509 966 509 509 967 480 480 967 1060 1060 967 509 509 968 1060 1060 968 506 506 968 506 506 969 1060 1060 969 1063 1063 969 506 506 970 1063 1063 970 504 504 970 504 504 971 1063 1063 971 483 483 971 504 504 972 483 483 972 482 482 972 482 482 973 483 483 973 1064 1064 973 482 482 974 1064 1064 974 503 503 974 503 503 975 1064 1064 975 1066 1066 975 503 503 976 1066 1066 976 502 502 976 502 502 977 1066 1066 977 1068 1068 977 502 502 978 1068 1068 978 501 501 978 501 501 979 1068 1068 979 484 484 979 501 501 980 484 484 980 500 500 980 500 500 981 484 484 981 1069 1069 981 500 500 982 1069 1069 982 499 499 982 499 499 983 1069 1069 983 485 485 983 499 499 984 485 485 984 497 497 984 497 497 985 485 485 985 486 486 985 497 497 986 486 486 986 495 495 986 495 495 987 486 486 987 487 487 987 495 495 988 487 487 988 493 493 988 493 493 989 487 487 989 488 488 989 493 493 990 488 488 990 490 490 990 490 490 991 488 488 991 489 489 991 490 490 992 489 489 992 491 491 992 491 491 993 489 489 993 201 201 993 201 201 994 492 492 994 491 491 994 491 491 995 492 492 995 525 525 995 491 491 996 525 525 996 490 490 996 490 490 997 525 525 997 494 494 997 490 490 998 494 494 998 493 493 998 493 493 999 494 494 999 526 526 999 493 493 1000 526 526 1000 495 495 1000 495 495 1001 526 526 1001 496 496 1001 495 495 1002 496 496 1002 497 497 1002 497 497 1003 496 496 1003 498 498 1003 497 497 1004 498 498 1004 499 499 1004 499 499 1005 498 498 1005 529 529 1005 499 499 1006 529 529 1006 500 500 1006 500 500 1007 529 529 1007 531 531 1007 500 500 1008 531 531 1008 501 501 1008 501 501 1009 531 531 1009 532 532 1009 501 501 1010 532 532 1010 502 502 1010 502 502 1011 532 532 1011 535 535 1011 502 502 1012 535 535 1012 503 503 1012 503 503 1013 535 535 1013 536 536 1013 503 503 1014 536 536 1014 482 482 1014 482 482 1015 536 536 1015 538 538 1015 482 482 1016 538 538 1016 504 504 1016 504 504 1017 538 538 1017 505 505 1017 504 504 1018 505 505 1018 506 506 1018 506 506 1019 505 505 1019 507 507 1019 506 506 1020 507 507 1020 509 509 1020 509 509 1021 507 507 1021 508 508 1021 509 509 1022 508 508 1022 481 481 1022 481 481 1023 508 508 1023 542 542 1023 481 481 1024 542 542 1024 510 510 1024 510 510 1025 542 542 1025 511 511 1025 510 510 1026 511 511 1026 512 512 1026 512 512 1027 511 511 1027 546 546 1027 512 512 1028 546 546 1028 514 514 1028 514 514 1029 546 546 1029 513 513 1029 514 514 1030 513 513 1030 515 515 1030 515 515 1031 513 513 1031 549 549 1031 515 515 1032 549 549 1032 516 516 1032 516 516 1033 549 549 1033 518 518 1033 516 516 1034 518 518 1034 517 517 1034 517 517 1035 518 518 1035 550 550 1035 517 517 1036 550 550 1036 477 477 1036 477 477 1037 550 550 1037 519 519 1037 477 477 1038 519 519 1038 520 520 1038 520 520 1039 519 519 1039 521 521 1039 520 520 1040 521 521 1040 522 522 1040 522 522 1041 521 521 1041 391 391 1041 201 201 1042 523 523 1042 492 492 1042 492 492 1043 523 523 1043 524 524 1043 492 492 1044 524 524 1044 525 525 1044 525 525 1045 524 524 1045 555 555 1045 525 525 1046 555 555 1046 494 494 1046 494 494 1047 555 555 1047 527 527 1047 494 494 1048 527 527 1048 526 526 1048 526 526 1049 527 527 1049 558 558 1049 526 526 1050 558 558 1050 496 496 1050 496 496 1051 558 558 1051 559 559 1051 496 496 1052 559 559 1052 498 498 1052 498 498 1053 559 559 1053 528 528 1053 498 498 1054 528 528 1054 529 529 1054 529 529 1055 528 528 1055 530 530 1055 529 529 1056 530 530 1056 531 531 1056 531 531 1057 530 530 1057 533 533 1057 531 531 1058 533 533 1058 532 532 1058 532 532 1059 533 533 1059 562 562 1059 532 532 1060 562 562 1060 535 535 1060 535 535 1061 562 562 1061 534 534 1061 535 535 1062 534 534 1062 536 536 1062 536 536 1063 534 534 1063 537 537 1063 536 536 1064 537 537 1064 538 538 1064 538 538 1065 537 537 1065 539 539 1065 538 538 1066 539 539 1066 505 505 1066 505 505 1067 539 539 1067 540 540 1067 505 505 1068 540 540 1068 507 507 1068 507 507 1069 540 540 1069 541 541 1069 507 507 1070 541 541 1070 508 508 1070 508 508 1071 541 541 1071 543 543 1071 508 508 1072 543 543 1072 542 542 1072 542 542 1073 543 543 1073 544 544 1073 542 542 1074 544 544 1074 511 511 1074 511 511 1075 544 544 1075 545 545 1075 511 511 1076 545 545 1076 546 546 1076 546 546 1077 545 545 1077 547 547 1077 546 546 1078 547 547 1078 513 513 1078 513 513 1079 547 547 1079 548 548 1079 513 513 1080 548 548 1080 549 549 1080 549 549 1081 548 548 1081 568 568 1081 549 549 1082 568 568 1082 518 518 1082 518 518 1083 568 568 1083 569 569 1083 518 518 1084 569 569 1084 550 550 1084 550 550 1085 569 569 1085 551 551 1085 550 550 1086 551 551 1086 519 519 1086 519 519 1087 551 551 1087 552 552 1087 519 519 1088 552 552 1088 521 521 1088 521 521 1089 552 552 1089 391 391 1089 201 201 1090 553 553 1090 523 523 1090 523 523 1091 553 553 1091 570 570 1091 523 523 1092 570 570 1092 524 524 1092 524 524 1093 570 570 1093 554 554 1093 524 524 1094 554 554 1094 555 555 1094 555 555 1095 554 554 1095 556 556 1095 555 555 1096 556 556 1096 527 527 1096 527 527 1097 556 556 1097 557 557 1097 527 527 1098 557 557 1098 558 558 1098 558 558 1099 557 557 1099 573 573 1099 558 558 1100 573 573 1100 559 559 1100 559 559 1101 573 573 1101 574 574 1101 559 559 1102 574 574 1102 528 528 1102 528 528 1103 574 574 1103 560 560 1103 528 528 1104 560 560 1104 530 530 1104 530 530 1105 560 560 1105 576 576 1105 530 530 1106 576 576 1106 533 533 1106 533 533 1107 576 576 1107 578 578 1107 533 533 1108 578 578 1108 562 562 1108 562 562 1109 578 578 1109 561 561 1109 562 562 1110 561 561 1110 534 534 1110 534 534 1111 561 561 1111 579 579 1111 534 534 1112 579 579 1112 537 537 1112 537 537 1113 579 579 1113 563 563 1113 537 537 1114 563 563 1114 539 539 1114 539 539 1115 563 563 1115 564 564 1115 539 539 1116 564 564 1116 540 540 1116 540 540 1117 564 564 1117 583 583 1117 540 540 1118 583 583 1118 541 541 1118 541 541 1119 583 583 1119 584 584 1119 541 541 1120 584 584 1120 543 543 1120 543 543 1121 584 584 1121 565 565 1121 543 543 1122 565 565 1122 544 544 1122 544 544 1123 565 565 1123 566 566 1123 544 544 1124 566 566 1124 545 545 1124 545 545 1125 566 566 1125 586 586 1125 545 545 1126 586 586 1126 547 547 1126 547 547 1127 586 586 1127 567 567 1127 547 547 1128 567 567 1128 548 548 1128 548 548 1129 567 567 1129 587 587 1129 548 548 1130 587 587 1130 568 568 1130 568 568 1131 587 587 1131 589 589 1131 568 568 1132 589 589 1132 569 569 1132 569 569 1133 589 589 1133 590 590 1133 569 569 1134 590 590 1134 551 551 1134 551 551 1135 590 590 1135 591 591 1135 551 551 1136 591 591 1136 552 552 1136 552 552 1137 591 591 1137 391 391 1137 201 201 1138 594 594 1138 553 553 1138 553 553 1139 594 594 1139 595 595 1139 553 553 1140 595 595 1140 570 570 1140 570 570 1141 595 595 1141 571 571 1141 570 570 1142 571 571 1142 554 554 1142 554 554 1143 571 571 1143 572 572 1143 554 554 1144 572 572 1144 556 556 1144 556 556 1145 572 572 1145 596 596 1145 556 556 1146 596 596 1146 557 557 1146 557 557 1147 596 596 1147 597 597 1147 557 557 1148 597 597 1148 573 573 1148 573 573 1149 597 597 1149 598 598 1149 573 573 1150 598 598 1150 574 574 1150 574 574 1151 598 598 1151 575 575 1151 574 574 1152 575 575 1152 560 560 1152 560 560 1153 575 575 1153 600 600 1153 560 560 1154 600 600 1154 576 576 1154 576 576 1155 600 600 1155 577 577 1155 576 576 1156 577 577 1156 578 578 1156 578 578 1157 577 577 1157 602 602 1157 578 578 1158 602 602 1158 561 561 1158 561 561 1159 602 602 1159 603 603 1159 561 561 1160 603 603 1160 579 579 1160 579 579 1161 603 603 1161 604 604 1161 579 579 1162 604 604 1162 563 563 1162 563 563 1163 604 604 1163 580 580 1163 563 563 1164 580 580 1164 564 564 1164 564 564 1165 580 580 1165 581 581 1165 564 564 1166 581 581 1166 583 583 1166 583 583 1167 581 581 1167 582 582 1167 583 583 1168 582 582 1168 584 584 1168 584 584 1169 582 582 1169 585 585 1169 584 584 1170 585 585 1170 565 565 1170 565 565 1171 585 585 1171 608 608 1171 565 565 1172 608 608 1172 566 566 1172 566 566 1173 608 608 1173 610 610 1173 566 566 1174 610 610 1174 586 586 1174 586 586 1175 610 610 1175 611 611 1175 586 586 1176 611 611 1176 567 567 1176 567 567 1177 611 611 1177 588 588 1177 567 567 1178 588 588 1178 587 587 1178 587 587 1179 588 588 1179 612 612 1179 587 587 1180 612 612 1180 589 589 1180 589 589 1181 612 612 1181 614 614 1181 589 589 1182 614 614 1182 590 590 1182 590 590 1183 614 614 1183 592 592 1183 590 590 1184 592 592 1184 591 591 1184 591 591 1185 592 592 1185 391 391 1185 201 201 1186 593 593 1186 594 594 1186 594 594 1187 593 593 1187 616 616 1187 594 594 1188 616 616 1188 595 595 1188 595 595 1189 616 616 1189 617 617 1189 595 595 1190 617 617 1190 571 571 1190 571 571 1191 617 617 1191 620 620 1191 571 571 1192 620 620 1192 572 572 1192 572 572 1193 620 620 1193 621 621 1193 572 572 1194 621 621 1194 596 596 1194 596 596 1195 621 621 1195 623 623 1195 596 596 1196 623 623 1196 597 597 1196 597 597 1197 623 623 1197 625 625 1197 597 597 1198 625 625 1198 598 598 1198 598 598 1199 625 625 1199 599 599 1199 598 598 1200 599 599 1200 575 575 1200 575 575 1201 599 599 1201 601 601 1201 575 575 1202 601 601 1202 600 600 1202 600 600 1203 601 601 1203 629 629 1203 600 600 1204 629 629 1204 577 577 1204 577 577 1205 629 629 1205 630 630 1205 577 577 1206 630 630 1206 602 602 1206 602 602 1207 630 630 1207 632 632 1207 602 602 1208 632 632 1208 603 603 1208 603 603 1209 632 632 1209 633 633 1209 603 603 1210 633 633 1210 604 604 1210 604 604 1211 633 633 1211 605 605 1211 604 604 1212 605 605 1212 580 580 1212 580 580 1213 605 605 1213 606 606 1213 580 580 1214 606 606 1214 581 581 1214 581 581 1215 606 606 1215 607 607 1215 581 581 1216 607 607 1216 582 582 1216 582 582 1217 607 607 1217 636 636 1217 582 582 1218 636 636 1218 585 585 1218 585 585 1219 636 636 1219 609 609 1219 585 585 1220 609 609 1220 608 608 1220 608 608 1221 609 609 1221 638 638 1221 608 608 1222 638 638 1222 610 610 1222 610 610 1223 638 638 1223 640 640 1223 610 610 1224 640 640 1224 611 611 1224 611 611 1225 640 640 1225 642 642 1225 611 611 1226 642 642 1226 588 588 1226 588 588 1227 642 642 1227 644 644 1227 588 588 1228 644 644 1228 612 612 1228 612 612 1229 644 644 1229 613 613 1229 612 612 1230 613 613 1230 614 614 1230 614 614 1231 613 613 1231 615 615 1231 614 614 1232 615 615 1232 592 592 1232 592 592 1233 615 615 1233 391 391 1233 201 201 1234 647 647 1234 593 593 1234 593 593 1235 647 647 1235 650 650 1235 593 593 1236 650 650 1236 616 616 1236 616 616 1237 650 650 1237 652 652 1237 616 616 1238 652 652 1238 617 617 1238 617 617 1239 652 652 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 622 622 1243 621 621 1244 622 622 1244 623 623 1244 623 623 1245 622 622 1245 624 624 1245 623 623 1246 624 624 1246 625 625 1246 625 625 1247 624 624 1247 626 626 1247 625 625 1248 626 626 1248 599 599 1248 599 599 1249 626 626 1249 627 627 1249 599 599 1250 627 627 1250 601 601 1250 601 601 1251 627 627 1251 628 628 1251 601 601 1252 628 628 1252 629 629 1252 629 629 1253 628 628 1253 656 656 1253 629 629 1254 656 656 1254 630 630 1254 630 630 1255 656 656 1255 631 631 1255 630 630 1256 631 631 1256 632 632 1256 632 632 1257 631 631 1257 659 659 1257 632 632 1258 659 659 1258 633 633 1258 633 633 1259 659 659 1259 661 661 1259 633 633 1260 661 661 1260 605 605 1260 605 605 1261 661 661 1261 634 634 1261 605 605 1262 634 634 1262 606 606 1262 606 606 1263 634 634 1263 662 662 1263 606 606 1264 662 662 1264 607 607 1264 607 607 1265 662 662 1265 635 635 1265 607 607 1266 635 635 1266 636 636 1266 636 636 1267 635 635 1267 665 665 1267 636 636 1268 665 665 1268 609 609 1268 609 609 1269 665 665 1269 637 637 1269 609 609 1270 637 637 1270 638 638 1270 638 638 1271 637 637 1271 639 639 1271 638 638 1272 639 639 1272 640 640 1272 640 640 1273 639 639 1273 641 641 1273 640 640 1274 641 641 1274 642 642 1274 642 642 1275 641 641 1275 643 643 1275 642 642 1276 643 643 1276 644 644 1276 644 644 1277 643 643 1277 645 645 1277 644 644 1278 645 645 1278 613 613 1278 613 613 1279 645 645 1279 646 646 1279 613 613 1280 646 646 1280 615 615 1280 615 615 1281 646 646 1281 391 391 1281 201 201 1282 648 648 1282 647 647 1282 647 647 1283 648 648 1283 649 649 1283 647 647 1284 649 649 1284 650 650 1284 650 650 1285 649 649 1285 651 651 1285 650 650 1286 651 651 1286 652 652 1286 652 652 1287 651 651 1287 670 670 1287 652 652 1288 670 670 1288 618 618 1288 618 618 1289 670 670 1289 671 671 1289 618 618 1290 671 671 1290 619 619 1290 619 619 1291 671 671 1291 653 653 1291 619 619 1292 653 653 1292 622 622 1292 622 622 1293 653 653 1293 673 673 1293 622 622 1294 673 673 1294 624 624 1294 624 624 1295 673 673 1295 674 674 1295 624 624 1296 674 674 1296 626 626 1296 626 626 1297 674 674 1297 676 676 1297 626 626 1298 676 676 1298 627 627 1298 627 627 1299 676 676 1299 654 654 1299 627 627 1300 654 654 1300 628 628 1300 628 628 1301 654 654 1301 655 655 1301 628 628 1302 655 655 1302 656 656 1302 656 656 1303 655 655 1303 657 657 1303 656 656 1304 657 657 1304 631 631 1304 631 631 1305 657 657 1305 658 658 1305 631 631 1306 658 658 1306 659 659 1306 659 659 1307 658 658 1307 660 660 1307 659 659 1308 660 660 1308 661 661 1308 661 661 1309 660 660 1309 679 679 1309 661 661 1310 679 679 1310 634 634 1310 634 634 1311 679 679 1311 663 663 1311 634 634 1312 663 663 1312 662 662 1312 662 662 1313 663 663 1313 664 664 1313 662 662 1314 664 664 1314 635 635 1314 635 635 1315 664 664 1315 682 682 1315 635 635 1316 682 682 1316 665 665 1316 665 665 1317 682 682 1317 684 684 1317 665 665 1318 684 684 1318 637 637 1318 637 637 1319 684 684 1319 685 685 1319 637 637 1320 685 685 1320 639 639 1320 639 639 1321 685 685 1321 666 666 1321 639 639 1322 666 666 1322 641 641 1322 641 641 1323 666 666 1323 686 686 1323 641 641 1324 686 686 1324 643 643 1324 643 643 1325 686 686 1325 667 667 1325 643 643 1326 667 667 1326 645 645 1326 645 645 1327 667 667 1327 668 668 1327 645 645 1328 668 668 1328 646 646 1328 646 646 1329 668 668 1329 391 391 1329 201 201 1330 691 691 1330 648 648 1330 648 648 1331 691 691 1331 669 669 1331 648 648 1332 669 669 1332 649 649 1332 649 649 1333 669 669 1333 694 694 1333 649 649 1334 694 694 1334 651 651 1334 651 651 1335 694 694 1335 695 695 1335 651 651 1336 695 695 1336 670 670 1336 670 670 1337 695 695 1337 697 697 1337 670 670 1338 697 697 1338 671 671 1338 671 671 1339 697 697 1339 672 672 1339 671 671 1340 672 672 1340 653 653 1340 653 653 1341 672 672 1341 700 700 1341 653 653 1342 700 700 1342 673 673 1342 673 673 1343 700 700 1343 702 702 1343 673 673 1344 702 702 1344 674 674 1344 674 674 1345 702 702 1345 675 675 1345 674 674 1346 675 675 1346 676 676 1346 676 676 1347 675 675 1347 703 703 1347 676 676 1348 703 703 1348 654 654 1348 654 654 1349 703 703 1349 704 704 1349 654 654 1350 704 704 1350 655 655 1350 655 655 1351 704 704 1351 677 677 1351 655 655 1352 677 677 1352 657 657 1352 657 657 1353 677 677 1353 705 705 1353 657 657 1354 705 705 1354 658 658 1354 658 658 1355 705 705 1355 678 678 1355 658 658 1356 678 678 1356 660 660 1356 660 660 1357 678 678 1357 708 708 1357 660 660 1358 708 708 1358 679 679 1358 679 679 1359 708 708 1359 680 680 1359 679 679 1360 680 680 1360 663 663 1360 663 663 1361 680 680 1361 681 681 1361 663 663 1362 681 681 1362 664 664 1362 664 664 1363 681 681 1363 711 711 1363 664 664 1364 711 711 1364 682 682 1364 682 682 1365 711 711 1365 683 683 1365 682 682 1366 683 683 1366 684 684 1366 684 684 1367 683 683 1367 712 712 1367 684 684 1368 712 712 1368 685 685 1368 685 685 1369 712 712 1369 714 714 1369 685 685 1370 714 714 1370 666 666 1370 666 666 1371 714 714 1371 687 687 1371 666 666 1372 687 687 1372 686 686 1372 686 686 1373 687 687 1373 688 688 1373 686 686 1374 688 688 1374 667 667 1374 667 667 1375 688 688 1375 689 689 1375 667 667 1376 689 689 1376 668 668 1376 668 668 1377 689 689 1377 391 391 1377 201 201 1378 690 690 1378 691 691 1378 691 691 1379 690 690 1379 692 692 1379 691 691 1380 692 692 1380 669 669 1380 669 669 1381 692 692 1381 693 693 1381 669 669 1382 693 693 1382 694 694 1382 694 694 1383 693 693 1383 717 717 1383 694 694 1384 717 717 1384 695 695 1384 695 695 1385 717 717 1385 696 696 1385 695 695 1386 696 696 1386 697 697 1386 697 697 1387 696 696 1387 698 698 1387 697 697 1388 698 698 1388 672 672 1388 672 672 1389 698 698 1389 699 699 1389 672 672 1390 699 699 1390 700 700 1390 700 700 1391 699 699 1391 701 701 1391 700 700 1392 701 701 1392 702 702 1392 702 702 1393 701 701 1393 721 721 1393 702 702 1394 721 721 1394 675 675 1394 675 675 1395 721 721 1395 722 722 1395 675 675 1396 722 722 1396 703 703 1396 703 703 1397 722 722 1397 725 725 1397 703 703 1398 725 725 1398 704 704 1398 704 704 1399 725 725 1399 726 726 1399 704 704 1400 726 726 1400 677 677 1400 677 677 1401 726 726 1401 727 727 1401 677 677 1402 727 727 1402 705 705 1402 705 705 1403 727 727 1403 731 731 1403 705 705 1404 731 731 1404 678 678 1404 678 678 1405 731 731 1405 706 706 1405 678 678 1406 706 706 1406 708 708 1406 708 708 1407 706 706 1407 707 707 1407 708 708 1408 707 707 1408 680 680 1408 680 680 1409 707 707 1409 709 709 1409 680 680 1410 709 709 1410 681 681 1410 681 681 1411 709 709 1411 710 710 1411 681 681 1412 710 710 1412 711 711 1412 711 711 1413 710 710 1413 734 734 1413 711 711 1414 734 734 1414 683 683 1414 683 683 1415 734 734 1415 736 736 1415 683 683 1416 736 736 1416 712 712 1416 712 712 1417 736 736 1417 713 713 1417 712 712 1418 713 713 1418 714 714 1418 714 714 1419 713 713 1419 737 737 1419 714 714 1420 737 737 1420 687 687 1420 687 687 1421 737 737 1421 715 715 1421 687 687 1422 715 715 1422 688 688 1422 688 688 1423 715 715 1423 716 716 1423 688 688 1424 716 716 1424 689 689 1424 689 689 1425 716 716 1425 391 391 1425 201 201 1426 739 739 1426 690 690 1426 690 690 1427 739 739 1427 741 741 1427 690 690 1428 741 741 1428 692 692 1428 692 692 1429 741 741 1429 742 742 1429 692 692 1430 742 742 1430 693 693 1430 693 693 1431 742 742 1431 743 743 1431 693 693 1432 743 743 1432 717 717 1432 717 717 1433 743 743 1433 718 718 1433 717 717 1434 718 718 1434 696 696 1434 696 696 1435 718 718 1435 719 719 1435 696 696 1436 719 719 1436 698 698 1436 698 698 1437 719 719 1437 746 746 1437 698 698 1438 746 746 1438 699 699 1438 699 699 1439 746 746 1439 747 747 1439 699 699 1440 747 747 1440 701 701 1440 701 701 1441 747 747 1441 720 720 1441 701 701 1442 720 720 1442 721 721 1442 721 721 1443 720 720 1443 751 751 1443 721 721 1444 751 751 1444 722 722 1444 722 722 1445 751 751 1445 723 723 1445 722 722 1446 723 723 1446 725 725 1446 725 725 1447 723 723 1447 724 724 1447 725 725 1448 724 724 1448 726 726 1448 726 726 1449 724 724 1449 728 728 1449 726 726 1450 728 728 1450 727 727 1450 727 727 1451 728 728 1451 729 729 1451 727 727 1452 729 729 1452 731 731 1452 731 731 1453 729 729 1453 730 730 1453 731 731 1454 730 730 1454 706 706 1454 706 706 1455 730 730 1455 732 732 1455 706 706 1456 732 732 1456 707 707 1456 707 707 1457 732 732 1457 754 754 1457 707 707 1458 754 754 1458 709 709 1458 709 709 1459 754 754 1459 733 733 1459 709 709 1460 733 733 1460 710 710 1460 710 710 1461 733 733 1461 756 756 1461 710 710 1462 756 756 1462 734 734 1462 734 734 1463 756 756 1463 735 735 1463 734 734 1464 735 735 1464 736 736 1464 736 736 1465 735 735 1465 759 759 1465 736 736 1466 759 759 1466 713 713 1466 713 713 1467 759 759 1467 760 760 1467 713 713 1468 760 760 1468 737 737 1468 737 737 1469 760 760 1469 761 761 1469 737 737 1470 761 761 1470 715 715 1470 715 715 1471 761 761 1471 738 738 1471 715 715 1472 738 738 1472 716 716 1472 716 716 1473 738 738 1473 391 391 1473 201 201 1474 763 763 1474 739 739 1474 739 739 1475 763 763 1475 764 764 1475 739 739 1476 764 764 1476 741 741 1476 741 741 1477 764 764 1477 740 740 1477 741 741 1478 740 740 1478 742 742 1478 742 742 1479 740 740 1479 766 766 1479 742 742 1480 766 766 1480 743 743 1480 743 743 1481 766 766 1481 744 744 1481 743 743 1482 744 744 1482 718 718 1482 718 718 1483 744 744 1483 767 767 1483 718 718 1484 767 767 1484 719 719 1484 719 719 1485 767 767 1485 745 745 1485 719 719 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 748 748 1487 746 746 1488 748 748 1488 747 747 1488 747 747 1489 748 748 1489 749 749 1489 747 747 1490 749 749 1490 720 720 1490 720 720 1491 749 749 1491 750 750 1491 720 720 1492 750 750 1492 751 751 1492 751 751 1493 750 750 1493 752 752 1493 751 751 1494 752 752 1494 723 723 1494 723 723 1495 752 752 1495 772 772 1495 723 723 1496 772 772 1496 724 724 1496 724 724 1497 772 772 1497 774 774 1497 724 724 1498 774 774 1498 728 728 1498 728 728 1499 774 774 1499 776 776 1499 728 728 1500 776 776 1500 729 729 1500 729 729 1501 776 776 1501 777 777 1501 729 729 1502 777 777 1502 730 730 1502 730 730 1503 777 777 1503 753 753 1503 730 730 1504 753 753 1504 732 732 1504 732 732 1505 753 753 1505 755 755 1505 732 732 1506 755 755 1506 754 754 1506 754 754 1507 755 755 1507 780 780 1507 754 754 1508 780 780 1508 733 733 1508 733 733 1509 780 780 1509 782 782 1509 733 733 1510 782 782 1510 756 756 1510 756 756 1511 782 782 1511 757 757 1511 756 756 1512 757 757 1512 735 735 1512 735 735 1513 757 757 1513 758 758 1513 735 735 1514 758 758 1514 759 759 1514 759 759 1515 758 758 1515 784 784 1515 759 759 1516 784 784 1516 760 760 1516 760 760 1517 784 784 1517 785 785 1517 760 760 1518 785 785 1518 761 761 1518 761 761 1519 785 785 1519 762 762 1519 761 761 1520 762 762 1520 738 738 1520 738 738 1521 762 762 1521 391 391 1521 201 201 1522 787 787 1522 763 763 1522 763 763 1523 787 787 1523 788 788 1523 763 763 1524 788 788 1524 764 764 1524 764 764 1525 788 788 1525 789 789 1525 764 764 1526 789 789 1526 740 740 1526 740 740 1527 789 789 1527 791 791 1527 740 740 1528 791 791 1528 766 766 1528 766 766 1529 791 791 1529 765 765 1529 766 766 1530 765 765 1530 744 744 1530 744 744 1531 765 765 1531 794 794 1531 744 744 1532 794 794 1532 767 767 1532 767 767 1533 794 794 1533 768 768 1533 767 767 1534 768 768 1534 745 745 1534 745 745 1535 768 768 1535 769 769 1535 745 745 1536 769 769 1536 748 748 1536 748 748 1537 769 769 1537 798 798 1537 748 748 1538 798 798 1538 749 749 1538 749 749 1539 798 798 1539 799 799 1539 749 749 1540 799 799 1540 750 750 1540 750 750 1541 799 799 1541 770 770 1541 750 750 1542 770 770 1542 752 752 1542 752 752 1543 770 770 1543 771 771 1543 752 752 1544 771 771 1544 772 772 1544 772 772 1545 771 771 1545 773 773 1545 772 772 1546 773 773 1546 774 774 1546 774 774 1547 773 773 1547 775 775 1547 774 774 1548 775 775 1548 776 776 1548 776 776 1549 775 775 1549 802 802 1549 776 776 1550 802 802 1550 777 777 1550 777 777 1551 802 802 1551 778 778 1551 777 777 1552 778 778 1552 753 753 1552 753 753 1553 778 778 1553 779 779 1553 753 753 1554 779 779 1554 755 755 1554 755 755 1555 779 779 1555 805 805 1555 755 755 1556 805 805 1556 780 780 1556 780 780 1557 805 805 1557 781 781 1557 780 780 1558 781 781 1558 782 782 1558 782 782 1559 781 781 1559 806 806 1559 782 782 1560 806 806 1560 757 757 1560 757 757 1561 806 806 1561 783 783 1561 757 757 1562 783 783 1562 758 758 1562 758 758 1563 783 783 1563 808 808 1563 758 758 1564 808 808 1564 784 784 1564 784 784 1565 808 808 1565 786 786 1565 784 784 1566 786 786 1566 785 785 1566 785 785 1567 786 786 1567 810 810 1567 785 785 1568 810 810 1568 762 762 1568 762 762 1569 810 810 1569 391 391 1569 201 201 1570 811 811 1570 787 787 1570 787 787 1571 811 811 1571 814 814 1571 787 787 1572 814 814 1572 788 788 1572 788 788 1573 814 814 1573 815 815 1573 788 788 1574 815 815 1574 789 789 1574 789 789 1575 815 815 1575 790 790 1575 789 789 1576 790 790 1576 791 791 1576 791 791 1577 790 790 1577 792 792 1577 791 791 1578 792 792 1578 765 765 1578 765 765 1579 792 792 1579 793 793 1579 765 765 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 795 795 1581 794 794 1582 795 795 1582 768 768 1582 768 768 1583 795 795 1583 796 796 1583 768 768 1584 796 796 1584 769 769 1584 769 769 1585 796 796 1585 797 797 1585 769 769 1586 797 797 1586 798 798 1586 798 798 1587 797 797 1587 818 818 1587 798 798 1588 818 818 1588 799 799 1588 799 799 1589 818 818 1589 800 800 1589 799 799 1590 800 800 1590 770 770 1590 770 770 1591 800 800 1591 819 819 1591 770 770 1592 819 819 1592 771 771 1592 771 771 1593 819 819 1593 822 822 1593 771 771 1594 822 822 1594 773 773 1594 773 773 1595 822 822 1595 801 801 1595 773 773 1596 801 801 1596 775 775 1596 775 775 1597 801 801 1597 823 823 1597 775 775 1598 823 823 1598 802 802 1598 802 802 1599 823 823 1599 803 803 1599 802 802 1600 803 803 1600 778 778 1600 778 778 1601 803 803 1601 825 825 1601 778 778 1602 825 825 1602 779 779 1602 779 779 1603 825 825 1603 804 804 1603 779 779 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 829 829 1605 805 805 1606 829 829 1606 781 781 1606 781 781 1607 829 829 1607 830 830 1607 781 781 1608 830 830 1608 806 806 1608 806 806 1609 830 830 1609 831 831 1609 806 806 1610 831 831 1610 783 783 1610 783 783 1611 831 831 1611 807 807 1611 783 783 1612 807 807 1612 808 808 1612 808 808 1613 807 807 1613 832 832 1613 808 808 1614 832 832 1614 786 786 1614 786 786 1615 832 832 1615 809 809 1615 786 786 1616 809 809 1616 810 810 1616 810 810 1617 809 809 1617 391 391 1617 201 201 1618 812 812 1618 811 811 1618 811 811 1619 812 812 1619 813 813 1619 811 811 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 835 835 1621 814 814 1622 835 835 1622 815 815 1622 815 815 1623 835 835 1623 816 816 1623 815 815 1624 816 816 1624 790 790 1624 790 790 1625 816 816 1625 837 837 1625 790 790 1626 837 837 1626 792 792 1626 792 792 1627 837 837 1627 840 840 1627 792 792 1628 840 840 1628 793 793 1628 793 793 1629 840 840 1629 817 817 1629 793 793 1630 817 817 1630 795 795 1630 795 795 1631 817 817 1631 841 841 1631 795 795 1632 841 841 1632 796 796 1632 796 796 1633 841 841 1633 842 842 1633 796 796 1634 842 842 1634 797 797 1634 797 797 1635 842 842 1635 844 844 1635 797 797 1636 844 844 1636 818 818 1636 818 818 1637 844 844 1637 845 845 1637 818 818 1638 845 845 1638 800 800 1638 800 800 1639 845 845 1639 846 846 1639 800 800 1640 846 846 1640 819 819 1640 819 819 1641 846 846 1641 820 820 1641 819 819 1642 820 820 1642 822 822 1642 822 822 1643 820 820 1643 821 821 1643 822 822 1644 821 821 1644 801 801 1644 801 801 1645 821 821 1645 824 824 1645 801 801 1646 824 824 1646 823 823 1646 823 823 1647 824 824 1647 850 850 1647 823 823 1648 850 850 1648 803 803 1648 803 803 1649 850 850 1649 826 826 1649 803 803 1650 826 826 1650 825 825 1650 825 825 1651 826 826 1651 827 827 1651 825 825 1652 827 827 1652 804 804 1652 804 804 1653 827 827 1653 828 828 1653 804 804 1654 828 828 1654 829 829 1654 829 829 1655 828 828 1655 852 852 1655 829 829 1656 852 852 1656 830 830 1656 830 830 1657 852 852 1657 853 853 1657 830 830 1658 853 853 1658 831 831 1658 831 831 1659 853 853 1659 854 854 1659 831 831 1660 854 854 1660 807 807 1660 807 807 1661 854 854 1661 855 855 1661 807 807 1662 855 855 1662 832 832 1662 832 832 1663 855 855 1663 856 856 1663 832 832 1664 856 856 1664 809 809 1664 809 809 1665 856 856 1665 391 391 1665 201 201 1666 833 833 1666 812 812 1666 812 812 1667 833 833 1667 857 857 1667 812 812 1668 857 857 1668 813 813 1668 813 813 1669 857 857 1669 834 834 1669 813 813 1670 834 834 1670 835 835 1670 835 835 1671 834 834 1671 836 836 1671 835 835 1672 836 836 1672 816 816 1672 816 816 1673 836 836 1673 838 838 1673 816 816 1674 838 838 1674 837 837 1674 837 837 1675 838 838 1675 839 839 1675 837 837 1676 839 839 1676 840 840 1676 840 840 1677 839 839 1677 861 861 1677 840 840 1678 861 861 1678 817 817 1678 817 817 1679 861 861 1679 862 862 1679 817 817 1680 862 862 1680 841 841 1680 841 841 1681 862 862 1681 863 863 1681 841 841 1682 863 863 1682 842 842 1682 842 842 1683 863 863 1683 843 843 1683 842 842 1684 843 843 1684 844 844 1684 844 844 1685 843 843 1685 865 865 1685 844 844 1686 865 865 1686 845 845 1686 845 845 1687 865 865 1687 866 866 1687 845 845 1688 866 866 1688 846 846 1688 846 846 1689 866 866 1689 847 847 1689 846 846 1690 847 847 1690 820 820 1690 820 820 1691 847 847 1691 867 867 1691 820 820 1692 867 867 1692 821 821 1692 821 821 1693 867 867 1693 848 848 1693 821 821 1694 848 848 1694 824 824 1694 824 824 1695 848 848 1695 849 849 1695 824 824 1696 849 849 1696 850 850 1696 850 850 1697 849 849 1697 871 871 1697 850 850 1698 871 871 1698 826 826 1698 826 826 1699 871 871 1699 851 851 1699 826 826 1700 851 851 1700 827 827 1700 827 827 1701 851 851 1701 872 872 1701 827 827 1702 872 872 1702 828 828 1702 828 828 1703 872 872 1703 875 875 1703 828 828 1704 875 875 1704 852 852 1704 852 852 1705 875 875 1705 876 876 1705 852 852 1706 876 876 1706 853 853 1706 853 853 1707 876 876 1707 877 877 1707 853 853 1708 877 877 1708 854 854 1708 854 854 1709 877 877 1709 879 879 1709 854 854 1710 879 879 1710 855 855 1710 855 855 1711 879 879 1711 880 880 1711 855 855 1712 880 880 1712 856 856 1712 856 856 1713 880 880 1713 391 391 1713 201 201 1714 882 882 1714 833 833 1714 833 833 1715 882 882 1715 883 883 1715 833 833 1716 883 883 1716 857 857 1716 857 857 1717 883 883 1717 884 884 1717 857 857 1718 884 884 1718 834 834 1718 834 834 1719 884 884 1719 885 885 1719 834 834 1720 885 885 1720 836 836 1720 836 836 1721 885 885 1721 858 858 1721 836 836 1722 858 858 1722 838 838 1722 838 838 1723 858 858 1723 859 859 1723 838 838 1724 859 859 1724 839 839 1724 839 839 1725 859 859 1725 860 860 1725 839 839 1726 860 860 1726 861 861 1726 861 861 1727 860 860 1727 888 888 1727 861 861 1728 888 888 1728 862 862 1728 862 862 1729 888 888 1729 864 864 1729 862 862 1730 864 864 1730 863 863 1730 863 863 1731 864 864 1731 889 889 1731 863 863 1732 889 889 1732 843 843 1732 843 843 1733 889 889 1733 891 891 1733 843 843 1734 891 891 1734 865 865 1734 865 865 1735 891 891 1735 893 893 1735 865 865 1736 893 893 1736 866 866 1736 866 866 1737 893 893 1737 894 894 1737 866 866 1738 894 894 1738 847 847 1738 847 847 1739 894 894 1739 895 895 1739 847 847 1740 895 895 1740 867 867 1740 867 867 1741 895 895 1741 868 868 1741 867 867 1742 868 868 1742 848 848 1742 848 848 1743 868 868 1743 869 869 1743 848 848 1744 869 869 1744 849 849 1744 849 849 1745 869 869 1745 870 870 1745 849 849 1746 870 870 1746 871 871 1746 871 871 1747 870 870 1747 896 896 1747 871 871 1748 896 896 1748 851 851 1748 851 851 1749 896 896 1749 873 873 1749 851 851 1750 873 873 1750 872 872 1750 872 872 1751 873 873 1751 874 874 1751 872 872 1752 874 874 1752 875 875 1752 875 875 1753 874 874 1753 898 898 1753 875 875 1754 898 898 1754 876 876 1754 876 876 1755 898 898 1755 900 900 1755 876 876 1756 900 900 1756 877 877 1756 877 877 1757 900 900 1757 878 878 1757 877 877 1758 878 878 1758 879 879 1758 879 879 1759 878 878 1759 881 881 1759 879 879 1760 881 881 1760 880 880 1760 880 880 1761 881 881 1761 391 391 1761 201 201 1762 903 903 1762 882 882 1762 882 882 1763 903 903 1763 904 904 1763 882 882 1764 904 904 1764 883 883 1764 883 883 1765 904 904 1765 906 906 1765 883 883 1766 906 906 1766 884 884 1766 884 884 1767 906 906 1767 907 907 1767 884 884 1768 907 907 1768 885 885 1768 885 885 1769 907 907 1769 886 886 1769 885 885 1770 886 886 1770 858 858 1770 858 858 1771 886 886 1771 887 887 1771 858 858 1772 887 887 1772 859 859 1772 859 859 1773 887 887 1773 909 909 1773 859 859 1774 909 909 1774 860 860 1774 860 860 1775 909 909 1775 910 910 1775 860 860 1776 910 910 1776 888 888 1776 888 888 1777 910 910 1777 911 911 1777 888 888 1778 911 911 1778 864 864 1778 864 864 1779 911 911 1779 914 914 1779 864 864 1780 914 914 1780 889 889 1780 889 889 1781 914 914 1781 890 890 1781 889 889 1782 890 890 1782 891 891 1782 891 891 1783 890 890 1783 892 892 1783 891 891 1784 892 892 1784 893 893 1784 893 893 1785 892 892 1785 918 918 1785 893 893 1786 918 918 1786 894 894 1786 894 894 1787 918 918 1787 919 919 1787 894 894 1788 919 919 1788 895 895 1788 895 895 1789 919 919 1789 921 921 1789 895 895 1790 921 921 1790 868 868 1790 868 868 1791 921 921 1791 922 922 1791 868 868 1792 922 922 1792 869 869 1792 869 869 1793 922 922 1793 924 924 1793 869 869 1794 924 924 1794 870 870 1794 870 870 1795 924 924 1795 926 926 1795 870 870 1796 926 926 1796 896 896 1796 896 896 1797 926 926 1797 897 897 1797 896 896 1798 897 897 1798 873 873 1798 873 873 1799 897 897 1799 928 928 1799 873 873 1800 928 928 1800 874 874 1800 874 874 1801 928 928 1801 930 930 1801 874 874 1802 930 930 1802 898 898 1802 898 898 1803 930 930 1803 899 899 1803 898 898 1804 899 899 1804 900 900 1804 900 900 1805 899 899 1805 901 901 1805 900 900 1806 901 901 1806 878 878 1806 878 878 1807 901 901 1807 902 902 1807 878 878 1808 902 902 1808 881 881 1808 881 881 1809 902 902 1809 391 391 1809 201 201 1810 934 934 1810 903 903 1810 903 903 1811 934 934 1811 936 936 1811 903 903 1812 936 936 1812 904 904 1812 904 904 1813 936 936 1813 905 905 1813 904 904 1814 905 905 1814 906 906 1814 906 906 1815 905 905 1815 938 938 1815 906 906 1816 938 938 1816 907 907 1816 907 907 1817 938 938 1817 908 908 1817 907 907 1818 908 908 1818 886 886 1818 886 886 1819 908 908 1819 940 940 1819 886 886 1820 940 940 1820 887 887 1820 887 887 1821 940 940 1821 942 942 1821 887 887 1822 942 942 1822 909 909 1822 909 909 1823 942 942 1823 943 943 1823 909 909 1824 943 943 1824 910 910 1824 910 910 1825 943 943 1825 912 912 1825 910 910 1826 912 912 1826 911 911 1826 911 911 1827 912 912 1827 913 913 1827 911 911 1828 913 913 1828 914 914 1828 914 914 1829 913 913 1829 915 915 1829 914 914 1830 915 915 1830 890 890 1830 890 890 1831 915 915 1831 916 916 1831 890 890 1832 916 916 1832 892 892 1832 892 892 1833 916 916 1833 917 917 1833 892 892 1834 917 917 1834 918 918 1834 918 918 1835 917 917 1835 947 947 1835 918 918 1836 947 947 1836 919 919 1836 919 919 1837 947 947 1837 920 920 1837 919 919 1838 920 920 1838 921 921 1838 921 921 1839 920 920 1839 949 949 1839 921 921 1840 949 949 1840 922 922 1840 922 922 1841 949 949 1841 923 923 1841 922 922 1842 923 923 1842 924 924 1842 924 924 1843 923 923 1843 925 925 1843 924 924 1844 925 925 1844 926 926 1844 926 926 1845 925 925 1845 951 951 1845 926 926 1846 951 951 1846 897 897 1846 897 897 1847 951 951 1847 927 927 1847 897 897 1848 927 927 1848 928 928 1848 928 928 1849 927 927 1849 929 929 1849 928 928 1850 929 929 1850 930 930 1850 930 930 1851 929 929 1851 931 931 1851 930 930 1852 931 931 1852 899 899 1852 899 899 1853 931 931 1853 932 932 1853 899 899 1854 932 932 1854 901 901 1854 901 901 1855 932 932 1855 933 933 1855 901 901 1856 933 933 1856 902 902 1856 902 902 1857 933 933 1857 391 391 1857 201 201 1858 956 956 1858 934 934 1858 934 934 1859 956 956 1859 935 935 1859 934 934 1860 935 935 1860 936 936 1860 936 936 1861 935 935 1861 937 937 1861 936 936 1862 937 937 1862 905 905 1862 905 905 1863 937 937 1863 957 957 1863 905 905 1864 957 957 1864 938 938 1864 938 938 1865 957 957 1865 939 939 1865 938 938 1866 939 939 1866 908 908 1866 908 908 1867 939 939 1867 961 961 1867 908 908 1868 961 961 1868 940 940 1868 940 940 1869 961 961 1869 941 941 1869 940 940 1870 941 941 1870 942 942 1870 942 942 1871 941 941 1871 962 962 1871 942 942 1872 962 962 1872 943 943 1872 943 943 1873 962 962 1873 944 944 1873 943 943 1874 944 944 1874 912 912 1874 912 912 1875 944 944 1875 945 945 1875 912 912 1876 945 945 1876 913 913 1876 913 913 1877 945 945 1877 965 965 1877 913 913 1878 965 965 1878 915 915 1878 915 915 1879 965 965 1879 968 968 1879 915 915 1880 968 968 1880 916 916 1880 916 916 1881 968 968 1881 969 969 1881 916 916 1882 969 969 1882 917 917 1882 917 917 1883 969 969 1883 946 946 1883 917 917 1884 946 946 1884 947 947 1884 947 947 1885 946 946 1885 948 948 1885 947 947 1886 948 948 1886 920 920 1886 920 920 1887 948 948 1887 950 950 1887 920 920 1888 950 950 1888 949 949 1888 949 949 1889 950 950 1889 971 971 1889 949 949 1890 971 971 1890 923 923 1890 923 923 1891 971 971 1891 973 973 1891 923 923 1892 973 973 1892 925 925 1892 925 925 1893 973 973 1893 974 974 1893 925 925 1894 974 974 1894 951 951 1894 951 951 1895 974 974 1895 975 975 1895 951 951 1896 975 975 1896 927 927 1896 927 927 1897 975 975 1897 952 952 1897 927 927 1898 952 952 1898 929 929 1898 929 929 1899 952 952 1899 953 953 1899 929 929 1900 953 953 1900 931 931 1900 931 931 1901 953 953 1901 954 954 1901 931 931 1902 954 954 1902 932 932 1902 932 932 1903 954 954 1903 955 955 1903 932 932 1904 955 955 1904 933 933 1904 933 933 1905 955 955 1905 391 391 1905 201 201 1906 1177 1177 1906 956 956 1906 956 956 1907 1177 1177 1907 1175 1175 1907 956 956 1908 1175 1175 1908 935 935 1908 935 935 1909 1175 1175 1909 1173 1173 1909 935 935 1910 1173 1173 1910 937 937 1910 937 937 1911 1173 1173 1911 958 958 1911 937 937 1912 958 958 1912 957 957 1912 957 957 1913 958 958 1913 959 959 1913 957 957 1914 959 959 1914 939 939 1914 939 939 1915 959 959 1915 960 960 1915 939 939 1916 960 960 1916 961 961 1916 961 961 1917 960 960 1917 1170 1170 1917 961 961 1918 1170 1170 1918 941 941 1918 941 941 1919 1170 1170 1919 1168 1168 1919 941 941 1920 1168 1168 1920 962 962 1920 962 962 1921 1168 1168 1921 963 963 1921 962 962 1922 963 963 1922 944 944 1922 944 944 1923 963 963 1923 964 964 1923 944 944 1924 964 964 1924 945 945 1924 945 945 1925 964 964 1925 1166 1166 1925 945 945 1926 1166 1166 1926 965 965 1926 965 965 1927 1166 1166 1927 966 966 1927 965 965 1928 966 966 1928 968 968 1928 968 968 1929 966 966 1929 967 967 1929 968 968 1930 967 967 1930 969 969 1930 969 969 1931 967 967 1931 1164 1164 1931 969 969 1932 1164 1164 1932 946 946 1932 946 946 1933 1164 1164 1933 1163 1163 1933 946 946 1934 1163 1163 1934 948 948 1934 948 948 1935 1163 1163 1935 970 970 1935 948 948 1936 970 970 1936 950 950 1936 950 950 1937 970 970 1937 1160 1160 1937 950 950 1938 1160 1160 1938 971 971 1938 971 971 1939 1160 1160 1939 972 972 1939 971 971 1940 972 972 1940 973 973 1940 973 973 1941 972 972 1941 1159 1159 1941 973 973 1942 1159 1159 1942 974 974 1942 974 974 1943 1159 1159 1943 979 979 1943 974 974 1944 979 979 1944 975 975 1944 975 975 1945 979 979 1945 976 976 1945 975 975 1946 976 976 1946 952 952 1946 952 952 1947 976 976 1947 981 981 1947 952 952 1948 981 981 1948 953 953 1948 953 953 1949 981 981 1949 977 977 1949 953 953 1950 977 977 1950 954 954 1950 954 954 1951 977 977 1951 978 978 1951 954 954 1952 978 978 1952 955 955 1952 955 955 1953 978 978 1953 391 391 1953 979 979 1954 996 996 1954 976 976 1954 976 976 1955 996 996 1955 980 980 1955 976 976 1956 980 980 1956 981 981 1956 981 981 1957 980 980 1957 999 999 1957 981 981 1958 999 999 1958 977 977 1958 977 977 1959 999 999 1959 1000 1000 1959 977 977 1960 1000 1000 1960 978 978 1960 978 978 1961 1000 1000 1961 391 391 1961 1176 1176 1962 982 982 1962 1174 1174 1962 1174 1174 1963 982 982 1963 1001 1001 1963 1174 1174 1964 1001 1001 1964 983 983 1964 983 983 1965 1001 1001 1965 1002 1002 1965 983 983 1966 1002 1002 1966 1172 1172 1966 1172 1172 1967 1002 1002 1967 1003 1003 1967 1172 1172 1968 1003 1003 1968 984 984 1968 984 984 1969 1003 1003 1969 1006 1006 1969 984 984 1970 1006 1006 1970 1171 1171 1970 1171 1171 1971 1006 1006 1971 1007 1007 1971 1171 1171 1972 1007 1007 1972 1169 1169 1972 1169 1169 1973 1007 1007 1973 1008 1008 1973 1169 1169 1974 1008 1008 1974 985 985 1974 985 985 1975 1008 1008 1975 1009 1009 1975 985 985 1976 1009 1009 1976 986 986 1976 986 986 1977 1009 1009 1977 1010 1010 1977 986 986 1978 1010 1010 1978 1167 1167 1978 1167 1167 1979 1010 1010 1979 1012 1012 1979 1167 1167 1980 1012 1012 1980 987 987 1980 987 987 1981 1012 1012 1981 988 988 1981 987 987 1982 988 988 1982 1165 1165 1982 1165 1165 1983 988 988 1983 1013 1013 1983 1165 1165 1984 1013 1013 1984 990 990 1984 990 990 1985 1013 1013 1985 989 989 1985 990 990 1986 989 989 1986 1162 1162 1986 1162 1162 1987 989 989 1987 1015 1015 1987 1162 1162 1988 1015 1015 1988 991 991 1988 991 991 1989 1015 1015 1989 1017 1017 1989 991 991 1990 1017 1017 1990 1161 1161 1990 1161 1161 1991 1017 1017 1991 992 992 1991 1161 1161 1992 992 992 1992 993 993 1992 993 993 1993 992 992 1993 994 994 1993 993 993 1994 994 994 1994 1158 1158 1994 1158 1158 1995 994 994 1995 995 995 1995 1158 1158 1996 995 995 1996 1157 1157 1996 1157 1157 1997 995 995 1997 1020 1020 1997 1157 1157 1998 1020 1020 1998 996 996 1998 996 996 1999 1020 1020 1999 997 997 1999 996 996 2000 997 997 2000 980 980 2000 980 980 2001 997 997 2001 1021 1021 2001 980 980 2002 1021 1021 2002 999 999 2002 999 999 2003 1021 1021 2003 998 998 2003 999 999 2004 998 998 2004 1000 1000 2004 1000 1000 2005 998 998 2005 391 391 2005 982 982 2006 1135 1135 2006 1001 1001 2006 1001 1001 2007 1135 1135 2007 1023 1023 2007 1001 1001 2008 1023 1023 2008 1002 1002 2008 1002 1002 2009 1023 1023 2009 1004 1004 2009 1002 1002 2010 1004 1004 2010 1003 1003 2010 1003 1003 2011 1004 1004 2011 1005 1005 2011 1003 1003 2012 1005 1005 2012 1006 1006 2012 1006 1006 2013 1005 1005 2013 1026 1026 2013 1006 1006 2014 1026 1026 2014 1007 1007 2014 1007 1007 2015 1026 1026 2015 1027 1027 2015 1007 1007 2016 1027 1027 2016 1008 1008 2016 1008 1008 2017 1027 1027 2017 1028 1028 2017 1008 1008 2018 1028 1028 2018 1009 1009 2018 1009 1009 2019 1028 1028 2019 1029 1029 2019 1009 1009 2020 1029 1029 2020 1010 1010 2020 1010 1010 2021 1029 1029 2021 1011 1011 2021 1010 1010 2022 1011 1011 2022 1012 1012 2022 1012 1012 2023 1011 1011 2023 1033 1033 2023 1012 1012 2024 1033 1033 2024 988 988 2024 988 988 2025 1033 1033 2025 1035 1035 2025 988 988 2026 1035 1035 2026 1013 1013 2026 1013 1013 2027 1035 1035 2027 1014 1014 2027 1013 1013 2028 1014 1014 2028 989 989 2028 989 989 2029 1014 1014 2029 1016 1016 2029 989 989 2030 1016 1016 2030 1015 1015 2030 1015 1015 2031 1016 1016 2031 1037 1037 2031 1015 1015 2032 1037 1037 2032 1017 1017 2032 1017 1017 2033 1037 1037 2033 1038 1038 2033 1017 1017 2034 1038 1038 2034 992 992 2034 992 992 2035 1038 1038 2035 1018 1018 2035 992 992 2036 1018 1018 2036 994 994 2036 994 994 2037 1018 1018 2037 1042 1042 2037 994 994 2038 1042 1042 2038 995 995 2038 995 995 2039 1042 1042 2039 1019 1019 2039 995 995 2040 1019 1019 2040 1020 1020 2040 1020 1020 2041 1019 1019 2041 1045 1045 2041 1020 1020 2042 1045 1045 2042 997 997 2042 997 997 2043 1045 1045 2043 1046 1046 2043 997 997 2044 1046 1046 2044 1021 1021 2044 1021 1021 2045 1046 1046 2045 1022 1022 2045 1021 1021 2046 1022 1022 2046 998 998 2046 998 998 2047 1022 1022 2047 391 391 2047 1135 1135 2048 1138 1138 2048 1023 1023 2048 1023 1023 2049 1138 1138 2049 1024 1024 2049 1023 1023 2050 1024 1024 2050 1004 1004 2050 1004 1004 2051 1024 1024 2051 1025 1025 2051 1004 1004 2052 1025 1025 2052 1005 1005 2052 1005 1005 2053 1025 1025 2053 265 265 2053 1005 1005 2054 265 265 2054 1026 1026 2054 1026 1026 2055 265 265 2055 268 268 2055 1026 1026 2056 268 268 2056 1027 1027 2056 1027 1027 2057 268 268 2057 269 269 2057 1027 1027 2058 269 269 2058 1028 1028 2058 1028 1028 2059 269 269 2059 1030 1030 2059 1028 1028 2060 1030 1030 2060 1029 1029 2060 1029 1029 2061 1030 1030 2061 1031 1031 2061 1029 1029 2062 1031 1031 2062 1011 1011 2062 1011 1011 2063 1031 1031 2063 1032 1032 2063 1011 1011 2064 1032 1032 2064 1033 1033 2064 1033 1033 2065 1032 1032 2065 1034 1034 2065 1033 1033 2066 1034 1034 2066 1035 1035 2066 1035 1035 2067 1034 1034 2067 1036 1036 2067 1035 1035 2068 1036 1036 2068 1014 1014 2068 1014 1014 2069 1036 1036 2069 273 273 2069 1014 1014 2070 273 273 2070 1016 1016 2070 1016 1016 2071 273 273 2071 275 275 2071 1016 1016 2072 275 275 2072 1037 1037 2072 1037 1037 2073 275 275 2073 1039 1039 2073 1037 1037 2074 1039 1039 2074 1038 1038 2074 1038 1038 2075 1039 1039 2075 1040 1040 2075 1038 1038 2076 1040 1040 2076 1018 1018 2076 1018 1018 2077 1040 1040 2077 1041 1041 2077 1018 1018 2078 1041 1041 2078 1042 1042 2078 1042 1042 2079 1041 1041 2079 1043 1043 2079 1042 1042 2080 1043 1043 2080 1019 1019 2080 1019 1019 2081 1043 1043 2081 1044 1044 2081 1019 1019 2082 1044 1044 2082 1045 1045 2082 1045 1045 2083 1044 1044 2083 279 279 2083 1045 1045 2084 279 279 2084 1046 1046 2084 1046 1046 2085 279 279 2085 1047 1047 2085 1046 1046 2086 1047 1047 2086 1022 1022 2086 1022 1022 2087 1047 1047 2087 391 391 2087 391 391 2088 449 449 2088 1048 1048 2088 1048 1048 2089 449 449 2089 1049 1049 2089 1048 1048 2090 1049 1049 2090 1050 1050 2090 1050 1050 2091 1049 1049 2091 451 451 2091 1050 1050 2092 451 451 2092 476 476 2092 476 476 2093 451 451 2093 452 452 2093 476 476 2094 452 452 2094 478 478 2094 478 478 2095 452 452 2095 1051 1051 2095 478 478 2096 1051 1051 2096 479 479 2096 479 479 2097 1051 1051 2097 453 453 2097 479 479 2098 453 453 2098 1052 1052 2098 1052 1052 2099 453 453 2099 1054 1054 2099 1052 1052 2100 1054 1054 2100 1053 1053 2100 1053 1053 2101 1054 1054 2101 1055 1055 2101 1053 1053 2102 1055 1055 2102 1056 1056 2102 1056 1056 2103 1055 1055 2103 457 457 2103 1056 1056 2104 457 457 2104 1057 1057 2104 1057 1057 2105 457 457 2105 1058 1058 2105 1057 1057 2106 1058 1058 2106 1059 1059 2106 1059 1059 2107 1058 1058 2107 459 459 2107 1059 1059 2108 459 459 2108 480 480 2108 480 480 2109 459 459 2109 1061 1061 2109 480 480 2110 1061 1061 2110 1060 1060 2110 1060 1060 2111 1061 1061 2111 1062 1062 2111 1060 1060 2112 1062 1062 2112 1063 1063 2112 1063 1063 2113 1062 1062 2113 461 461 2113 1063 1063 2114 461 461 2114 483 483 2114 483 483 2115 461 461 2115 463 463 2115 483 483 2116 463 463 2116 1064 1064 2116 1064 1064 2117 463 463 2117 1065 1065 2117 1064 1064 2118 1065 1065 2118 1066 1066 2118 1066 1066 2119 1065 1065 2119 1067 1067 2119 1066 1066 2120 1067 1067 2120 1068 1068 2120 1068 1068 2121 1067 1067 2121 466 466 2121 1068 1068 2122 466 466 2122 484 484 2122 484 484 2123 466 466 2123 468 468 2123 484 484 2124 468 468 2124 1069 1069 2124 1069 1069 2125 468 468 2125 469 469 2125 1069 1069 2126 469 469 2126 485 485 2126 485 485 2127 469 469 2127 471 471 2127 485 485 2128 471 471 2128 486 486 2128 486 486 2129 471 471 2129 472 472 2129 486 486 2130 472 472 2130 487 487 2130 487 487 2131 472 472 2131 473 473 2131 487 487 2132 473 473 2132 488 488 2132 488 488 2133 473 473 2133 475 475 2133 488 488 2134 475 475 2134 489 489 2134 489 489 2135 475 475 2135 201 201 2135 1116 1116 2136 1114 1114 2136 1070 1070 2136 1070 1070 2137 1114 1114 2137 1071 1071 2137 1070 1070 2138 1071 1071 2138 450 450 2138 450 450 2139 1071 1071 2139 1072 1072 2139 450 450 2140 1072 1072 2140 1073 1073 2140 1073 1073 2141 1072 1072 2141 1074 1074 2141 1073 1073 2142 1074 1074 2142 1075 1075 2142 1075 1075 2143 1074 1074 2143 176 176 2143 1075 1075 2144 176 176 2144 1076 1076 2144 1076 1076 2145 176 176 2145 1077 1077 2145 1076 1076 2146 1077 1077 2146 454 454 2146 454 454 2147 1077 1077 2147 160 160 2147 454 454 2148 160 160 2148 455 455 2148 455 455 2149 160 160 2149 136 136 2149 455 455 2150 136 136 2150 456 456 2150 456 456 2151 136 136 2151 1078 1078 2151 456 456 2152 1078 1078 2152 1079 1079 2152 1079 1079 2153 1078 1078 2153 1080 1080 2153 1079 1079 2154 1080 1080 2154 1081 1081 2154 1081 1081 2155 1080 1080 2155 97 97 2155 1081 1081 2156 97 97 2156 458 458 2156 458 458 2157 97 97 2157 68 68 2157 458 458 2158 68 68 2158 460 460 2158 460 460 2159 68 68 2159 55 55 2159 460 460 2160 55 55 2160 1082 1082 2160 1082 1082 2161 55 55 2161 1083 1083 2161 1082 1082 2162 1083 1083 2162 462 462 2162 462 462 2163 1083 1083 2163 1084 1084 2163 462 462 2164 1084 1084 2164 1085 1085 2164 1085 1085 2165 1084 1084 2165 1086 1086 2165 1085 1085 2166 1086 1086 2166 464 464 2166 464 464 2167 1086 1086 2167 23 23 2167 464 464 2168 23 23 2168 465 465 2168 465 465 2169 23 23 2169 1087 1087 2169 465 465 2170 1087 1087 2170 467 467 2170 467 467 2171 1087 1087 2171 1088 1088 2171 467 467 2172 1088 1088 2172 1089 1089 2172 1089 1089 2173 1088 1088 2173 12 12 2173 1089 1089 2174 12 12 2174 1090 1090 2174 1090 1090 2175 12 12 2175 7 7 2175 1090 1090 2176 7 7 2176 470 470 2176 470 470 2177 7 7 2177 1092 1092 2177 470 470 2178 1092 1092 2178 1091 1091 2178 1091 1091 2179 1092 1092 2179 1 1 2179 1091 1091 2180 1 1 2180 474 474 2180 474 474 2181 1 1 2181 201 201 2181 424 424 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 426 426 2184 426 426 2185 1095 1095 2185 1096 1096 2185 426 426 2186 1096 1096 2186 427 427 2186 427 427 2187 1096 1096 2187 248 248 2187 427 427 2188 248 248 2188 428 428 2188 428 428 2189 248 248 2189 1097 1097 2189 428 428 2190 1097 1097 2190 429 429 2190 429 429 2191 1097 1097 2191 1098 1098 2191 429 429 2192 1098 1098 2192 431 431 2192 431 431 2193 1098 1098 2193 251 251 2193 431 431 2194 251 251 2194 1099 1099 2194 1099 1099 2195 251 251 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 433 433 2196 433 433 2197 1100 1100 2197 253 253 2197 433 433 2198 253 253 2198 1101 1101 2198 1101 1101 2199 253 253 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 255 255 2201 1102 1102 2202 255 255 2202 436 436 2202 436 436 2203 255 255 2203 256 256 2203 436 436 2204 256 256 2204 1104 1104 2204 1104 1104 2205 256 256 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 438 438 2206 438 438 2207 1105 1105 2207 257 257 2207 438 438 2208 257 257 2208 439 439 2208 439 439 2209 257 257 2209 258 258 2209 439 439 2210 258 258 2210 1106 1106 2210 1106 1106 2211 258 258 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 441 441 2212 441 441 2213 1107 1107 2213 1108 1108 2213 441 441 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 259 259 2215 1109 1109 2216 259 259 2216 1110 1110 2216 1110 1110 2217 259 259 2217 260 260 2217 1110 1110 2218 260 260 2218 1111 1111 2218 1111 1111 2219 260 260 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 445 445 2220 445 445 2221 1112 1112 2221 261 261 2221 445 445 2222 261 261 2222 447 447 2222 447 447 2223 261 261 2223 262 262 2223 447 447 2224 262 262 2224 1113 1113 2224 1113 1113 2225 262 262 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 391 391 2228 1117 1117 2229 391 391 2229 1047 1047 2229 264 264 2230 1118 1118 2230 1119 1119 2230 1119 1119 2231 1118 1118 2231 39 39 2231 1119 1119 2232 39 39 2232 1120 1120 2232 1120 1120 2233 39 39 2233 392 392 2233 1120 1120 2234 392 392 2234 266 266 2234 266 266 2235 392 392 2235 1121 1121 2235 266 266 2236 1121 1121 2236 267 267 2236 267 267 2237 1121 1121 2237 1122 1122 2237 267 267 2238 1122 1122 2238 1123 1123 2238 1123 1123 2239 1122 1122 2239 71 71 2239 1123 1123 2240 71 71 2240 270 270 2240 270 270 2241 71 71 2241 85 85 2241 270 270 2242 85 85 2242 271 271 2242 271 271 2243 85 85 2243 1124 1124 2243 271 271 2244 1124 1124 2244 272 272 2244 272 272 2245 1124 1124 2245 1126 1126 2245 272 272 2246 1126 1126 2246 1125 1125 2246 1125 1125 2247 1126 1126 2247 1127 1127 2247 1125 1125 2248 1127 1127 2248 1128 1128 2248 1128 1128 2249 1127 1127 2249 161 161 2249 1128 1128 2250 161 161 2250 1129 1129 2250 1129 1129 2251 161 161 2251 162 162 2251 1129 1129 2252 162 162 2252 274 274 2252 274 274 2253 162 162 2253 289 289 2253 274 274 2254 289 289 2254 1130 1130 2254 1130 1130 2255 289 289 2255 1131 1131 2255 1130 1130 2256 1131 1131 2256 276 276 2256 276 276 2257 1131 1131 2257 219 219 2257 276 276 2258 219 219 2258 277 277 2258 277 277 2259 219 219 2259 1132 1132 2259 277 277 2260 1132 1132 2260 278 278 2260 278 278 2261 1132 1132 2261 280 280 2261 278 278 2262 280 280 2262 1133 1133 2262 1133 1133 2263 280 280 2263 1134 1134 2263 1133 1133 2264 1134 1134 2264 1117 1117 2264 1117 1117 2265 1134 1134 2265 391 391 2265 3 3 2266 201 201 2266 424 424 2266 1176 1176 2267 425 425 2267 982 982 2267 982 982 2268 425 425 2268 1136 1136 2268 982 982 2269 1136 1136 2269 1135 1135 2269 1135 1135 2270 1136 1136 2270 1137 1137 2270 1135 1135 2271 1137 1137 2271 1138 1138 2271 1138 1138 2272 1137 1137 2272 1139 1139 2272 1138 1138 2273 1139 1139 2273 264 264 2273 264 264 2274 1139 1139 2274 1140 1140 2274 264 264 2275 1140 1140 2275 1118 1118 2275 1118 1118 2276 1140 1140 2276 430 430 2276 1118 1118 2277 430 430 2277 407 407 2277 407 407 2278 430 430 2278 1142 1142 2278 407 407 2279 1142 1142 2279 1141 1141 2279 1141 1141 2280 1142 1142 2280 432 432 2280 1141 1141 2281 432 432 2281 410 410 2281 410 410 2282 432 432 2282 434 434 2282 410 410 2283 434 434 2283 1144 1144 2283 1144 1144 2284 434 434 2284 1143 1143 2284 1144 1144 2285 1143 1143 2285 1145 1145 2285 1145 1145 2286 1143 1143 2286 435 435 2286 1145 1145 2287 435 435 2287 1146 1146 2287 1146 1146 2288 435 435 2288 1147 1147 2288 1146 1146 2289 1147 1147 2289 1148 1148 2289 1148 1148 2290 1147 1147 2290 437 437 2290 1148 1148 2291 437 437 2291 1149 1149 2291 1149 1149 2292 437 437 2292 1150 1150 2292 1149 1149 2293 1150 1150 2293 413 413 2293 413 413 2294 1150 1150 2294 440 440 2294 413 413 2295 440 440 2295 1151 1151 2295 1151 1151 2296 440 440 2296 1152 1152 2296 1151 1151 2297 1152 1152 2297 416 416 2297 416 416 2298 1152 1152 2298 1153 1153 2298 416 416 2299 1153 1153 2299 418 418 2299 418 418 2300 1153 1153 2300 442 442 2300 418 418 2301 442 442 2301 419 419 2301 419 419 2302 442 442 2302 443 443 2302 419 419 2303 443 443 2303 421 421 2303 421 421 2304 443 443 2304 444 444 2304 421 421 2305 444 444 2305 1154 1154 2305 1154 1154 2306 444 444 2306 446 446 2306 1154 1154 2307 446 446 2307 423 423 2307 423 423 2308 446 446 2308 448 448 2308 423 423 2309 448 448 2309 1155 1155 2309 1155 1155 2310 448 448 2310 1156 1156 2310 1155 1155 2311 1156 1156 2311 391 391 2311 996 996 2312 979 979 2312 1157 1157 2312 1157 1157 2313 979 979 2313 1159 1159 2313 1157 1157 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 972 972 2315 1158 1158 2316 972 972 2316 993 993 2316 993 993 2317 972 972 2317 1160 1160 2317 993 993 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 970 970 2319 1161 1161 2320 970 970 2320 991 991 2320 991 991 2321 970 970 2321 1163 1163 2321 991 991 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 990 990 2324 990 990 2325 1164 1164 2325 967 967 2325 990 990 2326 967 967 2326 1165 1165 2326 1165 1165 2327 967 967 2327 966 966 2327 1165 1165 2328 966 966 2328 987 987 2328 987 987 2329 966 966 2329 1166 1166 2329 987 987 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 964 964 2331 1167 1167 2332 964 964 2332 986 986 2332 986 986 2333 964 964 2333 963 963 2333 986 986 2334 963 963 2334 985 985 2334 985 985 2335 963 963 2335 1168 1168 2335 985 985 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 960 960 2339 1171 1171 2340 960 960 2340 984 984 2340 984 984 2341 960 960 2341 959 959 2341 984 984 2342 959 959 2342 1172 1172 2342 1172 1172 2343 959 959 2343 958 958 2343 1172 1172 2344 958 958 2344 983 983 2344 983 983 2345 958 958 2345 1173 1173 2345 983 983 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 3 3 2350 3 3 2351 1177 1177 2351 201 201 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/parking_1.dae b/stack_master/config/JET1/slam/f110_description/meshes/parking_1.dae new file mode 100755 index 0000000..b58c2e3 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/parking_1.dae @@ -0,0 +1,310 @@ + + + + + Blender User + Blender 2.78.0 + + 2017-04-24T15:08:21 + 2017-04-24T15:08:21 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0.64 0.03905561 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

1 0 2 0 0 0 3 1 6 1 2 1 7 2 4 2 6 2 5 3 0 3 4 3 6 4 0 4 2 4 3 5 5 5 7 5 1 0 3 0 2 0 3 1 7 1 6 1 7 2 5 2 4 2 5 3 1 3 0 3 6 4 4 4 0 4 3 5 1 5 5 5

+
+
+
+
+ + + + + 0.1354637 0 0 -3.735135 0 0.3 0 3.623344 0 0 0.15 0.1530263 0 0 0 1 + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.173696 0 0 -4.197643 0 5.482737 0 4.50726 0 0 1 1.015023 0 0 0 1 + + + + 0.1354637 0 0 -3.735135 0 0.3 0 5.201571 0 0 0.15 0.1727542 0 0 0 1 + + + + 0.225 0 0 -3.795233 0 0.38 0 4.425851 0 0 0.005 0.01 0 0 0 1 + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.STL b/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.STL new file mode 100755 index 0000000..1f628d7 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.dae b/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.dae new file mode 100755 index 0000000..2e35588 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/right_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:00 2016 GMT + Tue Jan 19 20:36:00 2016 GMT + Y_UP + + + + + + -0.0499122 5.7649e-17 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 -1.66397e-16 0.035 0.05 -1.65094e-16 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.59801e-16 0.045 6.93746e-18 -5.78552e-17 0.045 0.0397192 -0.00473093 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.0399297 0.00236963 0.045 -0.0399297 -0.00236963 0.045 -0.0393692 0.00707561 0.045 -0.0128108 0.0378931 0.045 0.0105435 0.0385854 0.045 0.0193117 0.0350294 0.045 0.0331762 0.0223459 0.045 0.0397192 0.00473093 0.045 0.0374968 0.0139281 0.045 0.04 -1.4766e-16 -6.16663e-18 0.0355863 0.0182652 -4.53474e-18 0.0374968 0.0139281 -5.0552e-18 0.0388809 0.00939544 -5.50469e-18 0.0397192 0.00473093 -5.87691e-18 0.0269993 0.0295133 -2.625e-18 0.0303004 0.0261129 -3.31105e-18 0.0331762 0.0223459 -3.95062e-18 0.0193117 0.0350294 -1.15249e-18 0.0233192 0.0324995 -1.9021e-18 0.00118533 0.0399824 1.89998e-18 0.00590586 0.0395616 1.15031e-18 0.0105435 0.0385854 3.84502e-19 0.0150331 0.0370676 -3.86709e-19 -0.00823914 0.0391423 3.30915e-18 -0.00355184 0.039842 2.62297e-18 -0.0252035 0.031061 5.50351e-18 -0.0213529 0.0338238 5.0538e-18 -0.0172026 0.0361119 4.53315e-18 -0.0128108 0.0378931 3.94887e-18 -0.0317942 0.024272 6.16592e-18 -0.0287003 0.027862 5.87596e-18 -0.0393692 0.00707561 6.43796e-18 -0.038256 0.0116823 6.50631e-18 -0.0366058 0.0161249 6.48333e-18 -0.0344417 0.0203412 6.36933e-18 -0.0393692 -0.00707561 5.70081e-18 -0.0399297 -0.00236963 6.03237e-18 -0.0399297 0.00236963 6.27924e-18 -0.0344417 -0.0203412 4.25015e-18 -0.0366058 -0.0161249 4.8034e-18 -0.038256 -0.0116823 5.28923e-18 -0.0287003 -0.027862 2.97325e-18 -0.0317942 -0.024272 3.63723e-18 -0.0128108 -0.0378931 1.1058e-21 -0.0172026 -0.0361119 7.70954e-19 -0.0213529 -0.0338238 1.52998e-18 -0.0252035 -0.031061 2.26753e-18 -0.00355184 -0.039842 -1.52783e-18 -0.00823914 -0.0391423 -7.68758e-19 0.0105435 -0.0385854 -3.63539e-18 0.00590586 -0.0395616 -2.97128e-18 0.00118533 -0.0399824 -2.26546e-18 0.0233192 -0.0324995 -5.28794e-18 0.0193117 -0.0350294 -4.80191e-18 0.0150331 -0.0370676 -4.24847e-18 0.0331762 -0.0223459 -6.27865e-18 0 -5.55112e-17 0 0.0303004 -0.0261129 -6.03154e-18 0.0269993 -0.0295133 -5.69975e-18 0.0397192 -0.00473093 -6.36979e-18 0.0388809 -0.00939544 -6.48352e-18 0.0374968 -0.0139281 -6.50625e-18 0.0355863 -0.0182652 -6.43764e-18 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 5.89513e-17 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -1.71218e-16 0.01 0.0496593 -1.70298e-16 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -1.67871e-16 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -1.64102e-16 0.00292893 0.045 -1.59248e-16 0.00133975 0.0446841 0.00532229 0.00133975 0.039923 0.0148293 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0366703 0.0216574 0.000340742 -0.038747 0.0228839 0.00133975 -0.0389744 0.0171683 0.000340742 -0.0407314 0.0124382 0.000340742 -0.0411816 0.0181406 0.00133975 -0.043038 0.0131426 0.00133975 -0.0442904 0.00796006 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0425134 0.00252295 0.000340742 -0.0425134 -0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0442904 -0.00796006 0.00133975 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0357684 -0.027306 0.00133975 -0.0268343 -0.0330707 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0227346 -0.0360124 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.00877226 -0.0416749 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00378166 -0.04242 0.000340742 -0.00399582 -0.0448222 0.00133975 0.0118614 -0.0434086 0.00133975 0.0169122 -0.041701 0.00133975 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.0353229 -0.0237918 0.000340742 0.0421839 -0.0156691 0.00133975 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0425882 -1.5364e-16 0.000340742 0.0397192 0.00473093 -4.14219e-18 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 -3.76997e-18 0.0413967 0.0100034 0.000340742 0.0374968 0.0139281 -3.32047e-18 0.0355863 0.0182652 -2.80002e-18 0.0378889 0.019447 0.000340742 0.0331762 0.0223459 -2.2159e-18 0.0353229 0.0237918 0.000340742 0.0303004 0.0261129 -1.57633e-18 0.0269993 0.0295133 -8.90275e-19 0.0287463 0.031423 0.000340742 0.0233192 0.0324995 -1.67372e-19 0.0193117 0.0350294 5.82232e-19 0.0150331 0.0370676 1.34801e-18 0.0105435 0.0385854 2.11922e-18 0.00590586 0.0395616 2.88504e-18 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 3.6347e-18 -0.00355184 0.039842 4.3577e-18 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 5.04387e-18 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 5.68359e-18 -0.0172026 0.0361119 6.26788e-18 -0.0213529 0.0338238 6.78853e-18 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 7.23823e-18 -0.0287003 0.027862 7.61068e-18 -0.0317942 0.024272 7.90065e-18 -0.0338514 0.0258425 0.000340742 -0.0344417 0.0203412 8.10405e-18 -0.0366058 0.0161249 8.21805e-18 -0.038256 0.0116823 8.24104e-18 -0.0393692 0.00707561 8.17269e-18 -0.0399297 0.00236963 8.01396e-18 -0.0399297 -0.00236963 7.76709e-18 -0.0393692 -0.00707561 7.43554e-18 -0.0419166 -0.00753344 0.000340742 -0.038256 -0.0116823 7.02396e-18 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 6.53813e-18 -0.0389744 -0.0171683 0.000340742 -0.0366703 -0.0216574 0.000340742 -0.0344417 -0.0203412 5.98487e-18 -0.0338514 -0.0258425 0.000340742 -0.0317942 -0.024272 5.37195e-18 -0.0305573 -0.0296648 0.000340742 -0.0287003 -0.027862 4.70797e-18 -0.0252035 -0.031061 4.00225e-18 -0.0213529 -0.0338238 3.2647e-18 -0.0183157 -0.0384485 0.000340742 -0.0172026 -0.0361119 2.50568e-18 -0.0128108 -0.0378931 1.73583e-18 -0.0136397 -0.0403449 0.000340742 -0.00823914 -0.0391423 9.65965e-19 -0.00355184 -0.039842 2.06893e-19 0.00118533 -0.0399824 -5.30732e-19 0.00590586 -0.0395616 -1.23656e-18 0.00126203 -0.0425695 0.000340742 0.006288 -0.0421214 0.000340742 0.0105435 -0.0385854 -1.90067e-18 0.0112257 -0.0410821 0.000340742 0.0150331 -0.0370676 -2.51375e-18 0.0160058 -0.039466 0.000340742 0.0193117 -0.0350294 -3.06719e-18 0.0205612 -0.037296 0.000340742 0.024828 -0.0346023 0.000340742 0.0233192 -0.0324995 -3.55322e-18 0.0269993 -0.0295133 -3.96502e-18 0.0303004 -0.0261129 -4.29681e-18 0.032261 -0.0278025 0.000340742 0.0331762 -0.0223459 -4.54393e-18 0.0355863 -0.0182652 -4.70291e-18 0.0378889 -0.019447 0.000340742 0.039923 -0.0148293 0.000340742 0.0374968 -0.0139281 -4.77152e-18 0.0388809 -0.00939544 -4.7488e-18 0.0413967 -0.0100034 0.000340742 0.0397192 -0.00473093 -4.63506e-18 0.0422893 -0.00503704 0.000340742 0.04 -1.4766e-16 -4.43191e-18 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.038256 0.0116823 0.045 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0252035 0.031061 0.045 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0425882 -1.55948e-16 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -1.7187e-16 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.0355863 -0.0182652 0.045 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0366058 -0.0161249 0.045 -0.038256 -0.0116823 0.045 -0.0407314 -0.0124382 0.0446593 -0.0393692 -0.00707561 0.045 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0213529 0.0338238 0.045 -0.0172026 0.0361119 0.045 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.00590586 0.0395616 0.045 0.0112257 0.0410821 0.0446593 0.0150331 0.0370676 0.045 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.0233192 0.0324995 0.045 0.0269993 0.0295133 0.045 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.0303004 0.0261129 0.045 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0355863 0.0182652 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0388809 0.00939544 0.045 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.50004e-16 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.61453e-16 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.66141e-16 0.0420711 0.0486603 -1.69694e-16 0.04 0.05 -1.7252e-16 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -3.0859e-18 0.998244 0.0592405 3.0859e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 210 210 0 0 0 0 0 0 1 210 210 1 209 209 1 0 0 2 209 209 2 1 1 2 1 1 3 209 209 3 207 207 3 1 1 4 207 207 4 2 2 4 2 2 5 207 207 5 206 206 5 2 2 6 206 206 6 3 3 6 3 3 7 206 206 7 204 204 7 3 3 8 204 204 8 4 4 8 4 4 9 204 204 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 202 202 15 9 9 16 202 202 16 719 719 16 719 719 17 202 202 17 11 11 17 719 719 18 11 11 18 718 718 18 718 718 19 11 11 19 200 200 19 718 718 20 200 200 20 12 12 20 12 12 21 200 200 21 198 198 21 12 12 22 198 198 22 13 13 22 13 13 23 198 198 23 197 197 23 13 13 24 197 197 24 702 702 24 702 702 25 197 197 25 14 14 25 702 702 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 195 195 29 16 16 30 195 195 30 695 695 30 695 695 31 195 195 31 194 194 31 695 695 32 194 194 32 693 693 32 693 693 33 194 194 33 193 193 33 693 693 34 193 193 34 680 680 34 680 680 35 193 193 35 192 192 35 680 680 36 192 192 36 678 678 36 678 678 37 192 192 37 191 191 37 678 678 38 191 191 38 18 18 38 18 18 39 191 191 39 190 190 39 18 18 40 190 190 40 679 679 40 679 679 41 190 190 41 188 188 41 679 679 42 188 188 42 20 20 42 20 20 43 188 188 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 657 657 50 657 657 51 26 26 51 27 27 51 657 657 52 27 27 52 28 28 52 28 28 53 27 27 53 185 185 53 28 28 54 185 185 54 542 542 54 542 542 55 185 185 55 29 29 55 542 542 56 29 29 56 656 656 56 656 656 57 29 29 57 30 30 57 656 656 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 180 180 67 39 39 68 180 180 68 40 40 68 40 40 69 180 180 69 41 41 69 40 40 70 41 41 70 543 543 70 543 543 71 41 41 71 42 42 71 543 543 72 42 42 72 43 43 72 43 43 73 42 42 73 177 177 73 43 43 74 177 177 74 44 44 74 44 44 75 177 177 75 176 176 75 44 44 76 176 176 76 619 619 76 619 619 77 176 176 77 175 175 77 619 619 78 175 175 78 45 45 78 45 45 79 175 175 79 46 46 79 45 45 80 46 46 80 607 607 80 607 607 81 46 46 81 174 174 81 607 607 82 174 174 82 547 547 82 547 547 83 174 174 83 248 248 83 547 547 84 248 248 84 606 606 84 606 606 85 248 248 85 247 247 85 606 606 86 247 247 86 47 47 86 47 47 87 247 247 87 246 246 87 47 47 88 246 246 88 48 48 88 48 48 89 246 246 89 244 244 89 48 48 90 244 244 90 49 49 90 49 49 91 244 244 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 536 536 94 536 536 95 51 51 95 52 52 95 536 536 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 853 853 98 853 853 99 54 54 99 240 240 99 853 853 100 240 240 100 56 56 100 56 56 101 240 240 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 840 840 108 840 840 109 62 62 109 239 239 109 840 840 110 239 239 110 63 63 110 63 63 111 239 239 111 64 64 111 63 63 112 64 64 112 834 834 112 834 834 113 64 64 113 65 65 113 834 834 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 833 833 116 833 833 117 67 67 117 237 237 117 833 833 118 237 237 118 819 819 118 819 819 119 237 237 119 236 236 119 819 819 120 236 236 120 68 68 120 68 68 121 236 236 121 235 235 121 68 68 122 235 235 122 69 69 122 69 69 123 235 235 123 232 232 123 69 69 124 232 232 124 70 70 124 70 70 125 232 232 125 231 231 125 70 70 126 231 231 126 71 71 126 71 71 127 231 231 127 230 230 127 71 71 128 230 230 128 538 538 128 538 538 129 230 230 129 72 72 129 538 538 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 802 802 134 802 802 135 76 76 135 77 77 135 802 802 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 226 226 139 80 80 140 226 226 140 81 81 140 81 81 141 226 226 141 82 82 141 81 81 142 82 82 142 539 539 142 539 539 143 82 82 143 83 83 143 539 539 144 83 83 144 781 781 144 781 781 145 83 83 145 224 224 145 781 781 146 224 224 146 84 84 146 84 84 147 224 224 147 85 85 147 84 84 148 85 85 148 780 780 148 780 780 149 85 85 149 86 86 149 780 780 150 86 86 150 87 87 150 87 87 151 86 86 151 221 221 151 87 87 152 221 221 152 88 88 152 88 88 153 221 221 153 220 220 153 88 88 154 220 220 154 89 89 154 89 89 155 220 220 155 219 219 155 89 89 156 219 219 156 768 768 156 768 768 157 219 219 157 90 90 157 768 768 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 216 216 161 93 93 162 216 216 162 94 94 162 94 94 163 216 216 163 215 215 163 94 94 164 215 215 164 750 750 164 750 750 165 215 215 165 95 95 165 750 750 166 95 95 166 96 96 166 96 96 167 95 95 167 213 213 167 96 96 168 213 213 168 540 540 168 540 540 169 213 213 169 212 212 169 540 540 170 212 212 170 749 749 170 749 749 171 212 212 171 97 97 171 749 749 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 739 739 176 739 739 177 101 101 177 102 102 177 739 739 178 102 102 178 103 103 178 103 103 179 102 102 179 210 210 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 615 615 182 613 613 182 105 105 182 105 105 183 613 613 183 549 549 183 105 105 184 549 549 184 106 106 184 638 638 185 631 631 185 105 105 185 105 105 186 631 631 186 624 624 186 105 105 187 624 624 187 615 615 187 650 650 188 107 107 188 105 105 188 105 105 189 107 107 189 554 554 189 105 105 190 554 554 190 638 638 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 651 651 192 105 105 193 651 651 193 650 650 193 559 559 194 558 558 194 105 105 194 105 105 195 558 558 195 673 673 195 105 105 196 673 673 196 109 109 196 110 110 197 686 686 197 105 105 197 105 105 198 686 686 198 685 685 198 105 105 199 685 685 199 559 559 199 714 714 200 711 711 200 105 105 200 105 105 201 711 711 201 713 713 201 105 105 202 713 713 202 110 110 202 728 728 203 726 726 203 105 105 203 105 105 204 726 726 204 725 725 204 105 105 205 725 725 205 714 714 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 728 728 208 754 754 209 577 577 209 105 105 209 105 105 210 577 577 210 576 576 210 105 105 211 576 576 211 113 113 211 583 583 212 766 766 212 105 105 212 105 105 213 766 766 213 767 767 213 105 105 214 767 767 214 754 754 214 114 114 215 775 775 215 105 105 215 105 105 216 775 775 216 774 774 216 105 105 217 774 774 217 583 583 217 594 594 218 791 791 218 105 105 218 105 105 219 791 791 219 790 790 219 105 105 220 790 790 220 114 114 220 810 810 221 115 115 221 105 105 221 105 105 222 115 115 222 808 808 222 105 105 223 808 808 223 594 594 223 825 825 224 824 824 224 105 105 224 105 105 225 824 824 225 116 116 225 105 105 226 116 116 226 810 810 226 848 848 227 117 117 227 105 105 227 105 105 228 117 117 228 839 839 228 105 105 229 839 839 229 825 825 229 118 118 230 859 859 230 105 105 230 105 105 231 859 859 231 119 119 231 105 105 232 119 119 232 848 848 232 120 120 233 170 170 233 167 167 233 120 120 234 167 167 234 124 124 234 121 121 235 122 122 235 167 167 235 167 167 236 122 122 236 123 123 236 167 167 237 123 123 237 124 124 237 125 125 238 126 126 238 167 167 238 167 167 239 126 126 239 127 127 239 167 167 240 127 127 240 121 121 240 133 133 241 128 128 241 167 167 241 167 167 242 128 128 242 129 129 242 167 167 243 129 129 243 125 125 243 130 130 244 131 131 244 167 167 244 167 167 245 131 131 245 132 132 245 167 167 246 132 132 246 133 133 246 139 139 247 134 134 247 167 167 247 167 167 248 134 134 248 135 135 248 167 167 249 135 135 249 130 130 249 136 136 250 137 137 250 167 167 250 167 167 251 137 137 251 138 138 251 167 167 252 138 138 252 139 139 252 145 145 253 140 140 253 167 167 253 167 167 254 140 140 254 141 141 254 167 167 255 141 141 255 136 136 255 142 142 256 143 143 256 167 167 256 167 167 257 143 143 257 144 144 257 167 167 258 144 144 258 145 145 258 146 146 259 147 147 259 167 167 259 167 167 260 147 147 260 148 148 260 167 167 261 148 148 261 142 142 261 149 149 262 150 150 262 167 167 262 167 167 263 150 150 263 151 151 263 167 167 264 151 151 264 146 146 264 157 157 265 152 152 265 167 167 265 167 167 266 152 152 266 153 153 266 167 167 267 153 153 267 149 149 267 154 154 268 155 155 268 167 167 268 167 167 269 155 155 269 156 156 269 167 167 270 156 156 270 157 157 270 162 162 271 158 158 271 167 167 271 167 167 272 158 158 272 159 159 272 167 167 273 159 159 273 154 154 273 165 165 274 160 160 274 167 167 274 167 167 275 160 160 275 161 161 275 167 167 276 161 161 276 162 162 276 169 169 277 163 163 277 167 167 277 167 167 278 163 163 278 164 164 278 167 167 279 164 164 279 165 165 279 173 173 280 166 166 280 167 167 280 167 167 281 166 166 281 168 168 281 167 167 282 168 168 282 169 169 282 170 170 283 171 171 283 167 167 283 167 167 284 171 171 284 172 172 284 167 167 285 172 172 285 173 173 285 248 248 286 297 297 286 299 299 286 248 248 287 174 174 287 297 297 287 297 297 288 174 174 288 46 46 288 297 297 289 46 46 289 295 295 289 295 295 290 46 46 290 175 175 290 295 295 291 175 175 291 293 293 291 293 293 292 175 175 292 176 176 292 293 293 293 176 176 293 178 178 293 178 178 294 176 176 294 177 177 294 177 177 295 42 42 295 178 178 295 178 178 296 42 42 296 41 41 296 178 178 297 41 41 297 179 179 297 41 41 298 180 180 298 179 179 298 179 179 299 180 180 299 38 38 299 179 179 300 38 38 300 181 181 300 181 181 301 38 38 301 37 37 301 181 181 302 37 37 302 182 182 302 37 37 303 33 33 303 182 182 303 182 182 304 33 33 304 32 32 304 182 182 305 32 32 305 289 289 305 32 32 306 30 30 306 289 289 306 289 289 307 30 30 307 29 29 307 289 289 308 29 29 308 183 183 308 183 183 309 29 29 309 185 185 309 183 183 310 185 185 310 184 184 310 184 184 311 185 185 311 27 27 311 184 184 312 27 27 312 186 186 312 186 186 313 27 27 313 26 26 313 26 26 314 24 24 314 186 186 314 186 186 315 24 24 315 22 22 315 186 186 316 22 22 316 187 187 316 22 22 317 19 19 317 187 187 317 187 187 318 19 19 318 188 188 318 187 187 319 188 188 319 189 189 319 189 189 320 188 188 320 190 190 320 189 189 321 190 190 321 283 283 321 283 283 322 190 190 322 191 191 322 283 283 323 191 191 323 282 282 323 282 282 324 191 191 324 192 192 324 192 192 325 193 193 325 282 282 325 282 282 326 193 193 326 194 194 326 282 282 327 194 194 327 281 281 327 281 281 328 194 194 328 195 195 328 281 281 329 195 195 329 196 196 329 196 196 330 195 195 330 17 17 330 196 196 331 17 17 331 279 279 331 279 279 332 17 17 332 14 14 332 14 14 333 197 197 333 279 279 333 279 279 334 197 197 334 198 198 334 279 279 335 198 198 335 199 199 335 198 198 336 200 200 336 199 199 336 199 199 337 200 200 337 11 11 337 199 199 338 11 11 338 201 201 338 201 201 339 11 11 339 202 202 339 201 201 340 202 202 340 276 276 340 276 276 341 202 202 341 10 10 341 276 276 342 10 10 342 203 203 342 203 203 343 10 10 343 7 7 343 7 7 344 5 5 344 203 203 344 203 203 345 5 5 345 204 204 345 203 203 346 204 204 346 205 205 346 205 205 347 204 204 347 206 206 347 205 205 348 206 206 348 208 208 348 206 206 349 207 207 349 208 208 349 208 208 350 207 207 350 209 209 350 208 208 351 209 209 351 211 211 351 209 209 352 210 210 352 211 211 352 211 211 353 210 210 353 102 102 353 211 211 354 102 102 354 271 271 354 102 102 355 101 101 355 271 271 355 271 271 356 101 101 356 100 100 356 271 271 357 100 100 357 269 269 357 269 269 358 100 100 358 97 97 358 269 269 359 97 97 359 268 268 359 268 268 360 97 97 360 212 212 360 268 268 361 212 212 361 214 214 361 214 214 362 212 212 362 213 213 362 213 213 363 95 95 363 214 214 363 214 214 364 95 95 364 215 215 364 214 214 365 215 215 365 266 266 365 266 266 366 215 215 366 216 216 366 266 266 367 216 216 367 217 217 367 216 216 368 92 92 368 217 217 368 217 217 369 92 92 369 90 90 369 217 217 370 90 90 370 218 218 370 90 90 371 219 219 371 218 218 371 218 218 372 219 219 372 220 220 372 218 218 373 220 220 373 264 264 373 220 220 374 221 221 374 264 264 374 264 264 375 221 221 375 86 86 375 264 264 376 86 86 376 222 222 376 222 222 377 86 86 377 85 85 377 222 222 378 85 85 378 223 223 378 223 223 379 85 85 379 224 224 379 223 223 380 224 224 380 225 225 380 225 225 381 224 224 381 83 83 381 83 83 382 82 82 382 225 225 382 225 225 383 82 82 383 226 226 383 225 225 384 226 226 384 227 227 384 227 227 385 226 226 385 79 79 385 227 227 386 79 79 386 228 228 386 79 79 387 77 77 387 228 228 387 228 228 388 77 77 388 76 76 388 228 228 389 76 76 389 229 229 389 76 76 390 74 74 390 229 229 390 229 229 391 74 74 391 72 72 391 229 229 392 72 72 392 259 259 392 72 72 393 230 230 393 259 259 393 259 259 394 230 230 394 231 231 394 259 259 395 231 231 395 258 258 395 258 258 396 231 231 396 232 232 396 258 258 397 232 232 397 233 233 397 233 233 398 232 232 398 235 235 398 233 233 399 235 235 399 234 234 399 234 234 400 235 235 400 236 236 400 236 236 401 237 237 401 234 234 401 234 234 402 237 237 402 67 67 402 234 234 403 67 67 403 255 255 403 255 255 404 67 67 404 65 65 404 255 255 405 65 65 405 238 238 405 65 65 406 64 64 406 238 238 406 238 238 407 64 64 407 239 239 407 238 238 408 239 239 408 252 252 408 239 239 409 62 62 409 252 252 409 252 252 410 62 62 410 60 60 410 252 252 411 60 60 411 251 251 411 60 60 412 59 59 412 251 251 412 251 251 413 59 59 413 55 55 413 251 251 414 55 55 414 250 250 414 250 250 415 55 55 415 240 240 415 250 250 416 240 240 416 241 241 416 241 241 417 240 240 417 54 54 417 241 241 418 54 54 418 249 249 418 249 249 419 54 54 419 52 52 419 52 52 420 51 51 420 249 249 420 249 249 421 51 51 421 242 242 421 249 249 422 242 242 422 243 243 422 243 243 423 242 242 423 244 244 423 243 243 424 244 244 424 245 245 424 245 245 425 244 244 425 246 246 425 245 245 426 246 246 426 299 299 426 299 299 427 246 246 427 247 247 427 299 299 428 247 247 428 248 248 428 243 243 429 301 301 429 249 249 429 249 249 430 301 301 430 304 304 430 249 249 431 304 304 431 241 241 431 241 241 432 304 304 432 306 306 432 241 241 433 306 306 433 250 250 433 250 250 434 306 306 434 307 307 434 250 250 435 307 307 435 251 251 435 251 251 436 307 307 436 253 253 436 251 251 437 253 253 437 252 252 437 252 252 438 253 253 438 310 310 438 252 252 439 310 310 439 238 238 439 238 238 440 310 310 440 254 254 440 238 238 441 254 254 441 255 255 441 255 255 442 254 254 442 312 312 442 255 255 443 312 312 443 234 234 443 234 234 444 312 312 444 256 256 444 234 234 445 256 256 445 233 233 445 233 233 446 256 256 446 257 257 446 233 233 447 257 257 447 258 258 447 258 258 448 257 257 448 260 260 448 258 258 449 260 260 449 259 259 449 259 259 450 260 260 450 317 317 450 259 259 451 317 317 451 229 229 451 229 229 452 317 317 452 261 261 452 229 229 453 261 261 453 228 228 453 228 228 454 261 261 454 262 262 454 228 228 455 262 262 455 227 227 455 227 227 456 262 262 456 263 263 456 227 227 457 263 263 457 225 225 457 225 225 458 263 263 458 321 321 458 225 225 459 321 321 459 223 223 459 223 223 460 321 321 460 322 322 460 223 223 461 322 322 461 222 222 461 222 222 462 322 322 462 323 323 462 222 222 463 323 323 463 264 264 463 264 264 464 323 323 464 265 265 464 264 264 465 265 265 465 218 218 465 218 218 466 265 265 466 326 326 466 218 218 467 326 326 467 217 217 467 217 217 468 326 326 468 327 327 468 217 217 469 327 327 469 266 266 469 266 266 470 327 327 470 267 267 470 266 266 471 267 267 471 214 214 471 214 214 472 267 267 472 328 328 472 214 214 473 328 328 473 268 268 473 268 268 474 328 328 474 270 270 474 268 268 475 270 270 475 269 269 475 269 269 476 270 270 476 330 330 476 269 269 477 330 330 477 271 271 477 271 271 478 330 330 478 272 272 478 271 271 479 272 272 479 211 211 479 211 211 480 272 272 480 332 332 480 211 211 481 332 332 481 208 208 481 208 208 482 332 332 482 273 273 482 208 208 483 273 273 483 205 205 483 205 205 484 273 273 484 274 274 484 205 205 485 274 274 485 203 203 485 203 203 486 274 274 486 275 275 486 203 203 487 275 275 487 276 276 487 276 276 488 275 275 488 277 277 488 276 276 489 277 277 489 201 201 489 201 201 490 277 277 490 278 278 490 201 201 491 278 278 491 199 199 491 199 199 492 278 278 492 337 337 492 199 199 493 337 337 493 279 279 493 279 279 494 337 337 494 338 338 494 279 279 495 338 338 495 196 196 495 196 196 496 338 338 496 280 280 496 196 196 497 280 280 497 281 281 497 281 281 498 280 280 498 339 339 498 281 281 499 339 339 499 282 282 499 282 282 500 339 339 500 284 284 500 282 282 501 284 284 501 283 283 501 283 283 502 284 284 502 285 285 502 283 283 503 285 285 503 189 189 503 189 189 504 285 285 504 286 286 504 189 189 505 286 286 505 187 187 505 187 187 506 286 286 506 287 287 506 187 187 507 287 287 507 186 186 507 186 186 508 287 287 508 288 288 508 186 186 509 288 288 509 184 184 509 184 184 510 288 288 510 345 345 510 184 184 511 345 345 511 183 183 511 183 183 512 345 345 512 290 290 512 183 183 513 290 290 513 289 289 513 289 289 514 290 290 514 348 348 514 289 289 515 348 348 515 182 182 515 182 182 516 348 348 516 291 291 516 182 182 517 291 291 517 181 181 517 181 181 518 291 291 518 350 350 518 181 181 519 350 350 519 179 179 519 179 179 520 350 350 520 292 292 520 179 179 521 292 292 521 178 178 521 178 178 522 292 292 522 351 351 522 178 178 523 351 351 523 293 293 523 293 293 524 351 351 524 294 294 524 293 293 525 294 294 525 295 295 525 295 295 526 294 294 526 296 296 526 295 295 527 296 296 527 297 297 527 297 297 528 296 296 528 298 298 528 297 297 529 298 298 529 299 299 529 299 299 530 298 298 530 354 354 530 299 299 531 354 354 531 245 245 531 245 245 532 354 354 532 300 300 532 245 245 533 300 300 533 243 243 533 243 243 534 300 300 534 301 301 534 300 300 535 302 302 535 301 301 535 301 301 536 302 302 536 303 303 536 301 301 537 303 303 537 304 304 537 304 304 538 303 303 538 358 358 538 304 304 539 358 358 539 306 306 539 306 306 540 358 358 540 305 305 540 306 306 541 305 305 541 307 307 541 307 307 542 305 305 542 308 308 542 307 307 543 308 308 543 253 253 543 253 253 544 308 308 544 309 309 544 253 253 545 309 309 545 310 310 545 310 310 546 309 309 546 361 361 546 310 310 547 361 361 547 254 254 547 254 254 548 361 361 548 311 311 548 254 254 549 311 311 549 312 312 549 312 312 550 311 311 550 313 313 550 312 312 551 313 313 551 256 256 551 256 256 552 313 313 552 314 314 552 256 256 553 314 314 553 257 257 553 257 257 554 314 314 554 315 315 554 257 257 555 315 315 555 260 260 555 260 260 556 315 315 556 316 316 556 260 260 557 316 316 557 317 317 557 317 317 558 316 316 558 318 318 558 317 317 559 318 318 559 261 261 559 261 261 560 318 318 560 319 319 560 261 261 561 319 319 561 262 262 561 262 262 562 319 319 562 320 320 562 262 262 563 320 320 563 263 263 563 263 263 564 320 320 564 365 365 564 263 263 565 365 365 565 321 321 565 321 321 566 365 365 566 366 366 566 321 321 567 366 366 567 322 322 567 322 322 568 366 366 568 367 367 568 322 322 569 367 367 569 323 323 569 323 323 570 367 367 570 324 324 570 323 323 571 324 324 571 265 265 571 265 265 572 324 324 572 325 325 572 265 265 573 325 325 573 326 326 573 326 326 574 325 325 574 372 372 574 326 326 575 372 372 575 327 327 575 327 327 576 372 372 576 373 373 576 327 327 577 373 373 577 267 267 577 267 267 578 373 373 578 374 374 578 267 267 579 374 374 579 328 328 579 328 328 580 374 374 580 329 329 580 328 328 581 329 329 581 270 270 581 270 270 582 329 329 582 375 375 582 270 270 583 375 375 583 330 330 583 330 330 584 375 375 584 331 331 584 330 330 585 331 331 585 272 272 585 272 272 586 331 331 586 377 377 586 272 272 587 377 377 587 332 332 587 332 332 588 377 377 588 333 333 588 332 332 589 333 333 589 273 273 589 273 273 590 333 333 590 334 334 590 273 273 591 334 334 591 274 274 591 274 274 592 334 334 592 379 379 592 274 274 593 379 379 593 275 275 593 275 275 594 379 379 594 335 335 594 275 275 595 335 335 595 277 277 595 277 277 596 335 335 596 380 380 596 277 277 597 380 380 597 278 278 597 278 278 598 380 380 598 336 336 598 278 278 599 336 336 599 337 337 599 337 337 600 336 336 600 383 383 600 337 337 601 383 383 601 338 338 601 338 338 602 383 383 602 384 384 602 338 338 603 384 384 603 280 280 603 280 280 604 384 384 604 385 385 604 280 280 605 385 385 605 339 339 605 339 339 606 385 385 606 386 386 606 339 339 607 386 386 607 284 284 607 284 284 608 386 386 608 340 340 608 284 284 609 340 340 609 285 285 609 285 285 610 340 340 610 341 341 610 285 285 611 341 341 611 286 286 611 286 286 612 341 341 612 342 342 612 286 286 613 342 342 613 287 287 613 287 287 614 342 342 614 343 343 614 287 287 615 343 343 615 288 288 615 288 288 616 343 343 616 344 344 616 288 288 617 344 344 617 345 345 617 345 345 618 344 344 618 346 346 618 345 345 619 346 346 619 290 290 619 290 290 620 346 346 620 347 347 620 290 290 621 347 347 621 348 348 621 348 348 622 347 347 622 389 389 622 348 348 623 389 389 623 291 291 623 291 291 624 389 389 624 349 349 624 291 291 625 349 349 625 350 350 625 350 350 626 349 349 626 391 391 626 350 350 627 391 391 627 292 292 627 292 292 628 391 391 628 394 394 628 292 292 629 394 394 629 351 351 629 351 351 630 394 394 630 352 352 630 351 351 631 352 352 631 294 294 631 294 294 632 352 352 632 353 353 632 294 294 633 353 353 633 296 296 633 296 296 634 353 353 634 396 396 634 296 296 635 396 396 635 298 298 635 298 298 636 396 396 636 397 397 636 298 298 637 397 397 637 354 354 637 354 354 638 397 397 638 398 398 638 354 354 639 398 398 639 300 300 639 300 300 640 398 398 640 302 302 640 398 398 641 400 400 641 302 302 641 302 302 642 400 400 642 355 355 642 302 302 643 355 355 643 303 303 643 303 303 644 355 355 644 356 356 644 303 303 645 356 356 645 358 358 645 358 358 646 356 356 646 357 357 646 358 358 647 357 357 647 305 305 647 305 305 648 357 357 648 359 359 648 305 305 649 359 359 649 308 308 649 308 308 650 359 359 650 360 360 650 308 308 651 360 360 651 309 309 651 309 309 652 360 360 652 403 403 652 309 309 653 403 403 653 361 361 653 361 361 654 403 403 654 405 405 654 361 361 655 405 405 655 311 311 655 311 311 656 405 405 656 407 407 656 311 311 657 407 407 657 313 313 657 313 313 658 407 407 658 362 362 658 313 313 659 362 362 659 314 314 659 314 314 660 362 362 660 409 409 660 314 314 661 409 409 661 315 315 661 315 315 662 409 409 662 411 411 662 315 315 663 411 411 663 316 316 663 316 316 664 411 411 664 363 363 664 316 316 665 363 363 665 318 318 665 318 318 666 363 363 666 413 413 666 318 318 667 413 413 667 319 319 667 319 319 668 413 413 668 364 364 668 319 319 669 364 364 669 320 320 669 320 320 670 364 364 670 414 414 670 320 320 671 414 414 671 365 365 671 365 365 672 414 414 672 417 417 672 365 365 673 417 417 673 366 366 673 366 366 674 417 417 674 368 368 674 366 366 675 368 368 675 367 367 675 367 367 676 368 368 676 369 369 676 367 367 677 369 369 677 324 324 677 324 324 678 369 369 678 370 370 678 324 324 679 370 370 679 325 325 679 325 325 680 370 370 680 371 371 680 325 325 681 371 371 681 372 372 681 372 372 682 371 371 682 421 421 682 372 372 683 421 421 683 373 373 683 373 373 684 421 421 684 424 424 684 373 373 685 424 424 685 374 374 685 374 374 686 424 424 686 425 425 686 374 374 687 425 425 687 329 329 687 329 329 688 425 425 688 426 426 688 329 329 689 426 426 689 375 375 689 375 375 690 426 426 690 376 376 690 375 375 691 376 376 691 331 331 691 331 331 692 376 376 692 430 430 692 331 331 693 430 430 693 377 377 693 377 377 694 430 430 694 431 431 694 377 377 695 431 431 695 333 333 695 333 333 696 431 431 696 378 378 696 333 333 697 378 378 697 334 334 697 334 334 698 378 378 698 432 432 698 334 334 699 432 432 699 379 379 699 379 379 700 432 432 700 433 433 700 379 379 701 433 433 701 335 335 701 335 335 702 433 433 702 434 434 702 335 335 703 434 434 703 380 380 703 380 380 704 434 434 704 381 381 704 380 380 705 381 381 705 336 336 705 336 336 706 381 381 706 436 436 706 336 336 707 436 436 707 383 383 707 383 383 708 436 436 708 382 382 708 383 383 709 382 382 709 384 384 709 384 384 710 382 382 710 438 438 710 384 384 711 438 438 711 385 385 711 385 385 712 438 438 712 440 440 712 385 385 713 440 440 713 386 386 713 386 386 714 440 440 714 441 441 714 386 386 715 441 441 715 340 340 715 340 340 716 441 441 716 443 443 716 340 340 717 443 443 717 341 341 717 341 341 718 443 443 718 387 387 718 341 341 719 387 387 719 342 342 719 342 342 720 387 387 720 388 388 720 342 342 721 388 388 721 343 343 721 343 343 722 388 388 722 444 444 722 343 343 723 444 444 723 344 344 723 344 344 724 444 444 724 445 445 724 344 344 725 445 445 725 346 346 725 346 346 726 445 445 726 446 446 726 346 346 727 446 446 727 347 347 727 347 347 728 446 446 728 447 447 728 347 347 729 447 447 729 389 389 729 389 389 730 447 447 730 390 390 730 389 389 731 390 390 731 349 349 731 349 349 732 390 390 732 392 392 732 349 349 733 392 392 733 391 391 733 391 391 734 392 392 734 393 393 734 391 391 735 393 393 735 394 394 735 394 394 736 393 393 736 395 395 736 394 394 737 395 395 737 352 352 737 352 352 738 395 395 738 450 450 738 352 352 739 450 450 739 353 353 739 353 353 740 450 450 740 451 451 740 353 353 741 451 451 741 396 396 741 396 396 742 451 451 742 452 452 742 396 396 743 452 452 743 397 397 743 397 397 744 452 452 744 399 399 744 397 397 745 399 399 745 398 398 745 398 398 746 399 399 746 400 400 746 399 399 747 455 455 747 400 400 747 400 400 748 455 455 748 457 457 748 400 400 749 457 457 749 355 355 749 355 355 750 457 457 750 401 401 750 355 355 751 401 401 751 356 356 751 356 356 752 401 401 752 460 460 752 356 356 753 460 460 753 357 357 753 357 357 754 460 460 754 462 462 754 357 357 755 462 462 755 359 359 755 359 359 756 462 462 756 402 402 756 359 359 757 402 402 757 360 360 757 360 360 758 402 402 758 465 465 758 360 360 759 465 465 759 403 403 759 403 403 760 465 465 760 404 404 760 403 403 761 404 404 761 405 405 761 405 405 762 404 404 762 406 406 762 405 405 763 406 406 763 407 407 763 407 407 764 406 406 764 408 408 764 407 407 765 408 408 765 362 362 765 362 362 766 408 408 766 471 471 766 362 362 767 471 471 767 409 409 767 409 409 768 471 471 768 410 410 768 409 409 769 410 410 769 411 411 769 411 411 770 410 410 770 412 412 770 411 411 771 412 412 771 363 363 771 363 363 772 412 412 772 474 474 772 363 363 773 474 474 773 413 413 773 413 413 774 474 474 774 476 476 774 413 413 775 476 476 775 364 364 775 364 364 776 476 476 776 415 415 776 364 364 777 415 415 777 414 414 777 414 414 778 415 415 778 416 416 778 414 414 779 416 416 779 417 417 779 417 417 780 416 416 780 480 480 780 417 417 781 480 480 781 368 368 781 368 368 782 480 480 782 418 418 782 368 368 783 418 418 783 369 369 783 369 369 784 418 418 784 419 419 784 369 369 785 419 419 785 370 370 785 370 370 786 419 419 786 484 484 786 370 370 787 484 484 787 371 371 787 371 371 788 484 484 788 420 420 788 371 371 789 420 420 789 421 421 789 421 421 790 420 420 790 422 422 790 421 421 791 422 422 791 424 424 791 424 424 792 422 422 792 423 423 792 424 424 793 423 423 793 425 425 793 425 425 794 423 423 794 427 427 794 425 425 795 427 427 795 426 426 795 426 426 796 427 427 796 428 428 796 426 426 797 428 428 797 376 376 797 376 376 798 428 428 798 429 429 798 376 376 799 429 429 799 430 430 799 430 430 800 429 429 800 492 492 800 430 430 801 492 492 801 431 431 801 431 431 802 492 492 802 494 494 802 431 431 803 494 494 803 378 378 803 378 378 804 494 494 804 496 496 804 378 378 805 496 496 805 432 432 805 432 432 806 496 496 806 497 497 806 432 432 807 497 497 807 433 433 807 433 433 808 497 497 808 499 499 808 433 433 809 499 499 809 434 434 809 434 434 810 499 499 810 501 501 810 434 434 811 501 501 811 381 381 811 381 381 812 501 501 812 435 435 812 381 381 813 435 435 813 436 436 813 436 436 814 435 435 814 437 437 814 436 436 815 437 437 815 382 382 815 382 382 816 437 437 816 505 505 816 382 382 817 505 505 817 438 438 817 438 438 818 505 505 818 508 508 818 438 438 819 508 508 819 440 440 819 440 440 820 508 508 820 439 439 820 440 440 821 439 439 821 441 441 821 441 441 822 439 439 822 442 442 822 441 441 823 442 442 823 443 443 823 443 443 824 442 442 824 513 513 824 443 443 825 513 513 825 387 387 825 387 387 826 513 513 826 514 514 826 387 387 827 514 514 827 388 388 827 388 388 828 514 514 828 516 516 828 388 388 829 516 516 829 444 444 829 444 444 830 516 516 830 518 518 830 444 444 831 518 518 831 445 445 831 445 445 832 518 518 832 520 520 832 445 445 833 520 520 833 446 446 833 446 446 834 520 520 834 521 521 834 446 446 835 521 521 835 447 447 835 447 447 836 521 521 836 448 448 836 447 447 837 448 448 837 390 390 837 390 390 838 448 448 838 525 525 838 390 390 839 525 525 839 392 392 839 392 392 840 525 525 840 449 449 840 392 392 841 449 449 841 393 393 841 393 393 842 449 449 842 528 528 842 393 393 843 528 528 843 395 395 843 395 395 844 528 528 844 529 529 844 395 395 845 529 529 845 450 450 845 450 450 846 529 529 846 532 532 846 450 450 847 532 532 847 451 451 847 451 451 848 532 532 848 534 534 848 451 451 849 534 534 849 452 452 849 452 452 850 534 534 850 453 453 850 452 452 851 453 453 851 399 399 851 399 399 852 453 453 852 455 455 852 453 453 853 454 454 853 455 455 853 455 455 854 454 454 854 456 456 854 455 455 855 456 456 855 457 457 855 457 457 856 456 456 856 458 458 856 457 457 857 458 458 857 401 401 857 401 401 858 458 458 858 459 459 858 401 401 859 459 459 859 460 460 859 460 460 860 459 459 860 461 461 860 460 460 861 461 461 861 462 462 861 462 462 862 461 461 862 463 463 862 462 462 863 463 463 863 402 402 863 402 402 864 463 463 864 464 464 864 402 402 865 464 464 865 465 465 865 465 465 866 464 464 866 466 466 866 465 465 867 466 466 867 404 404 867 404 404 868 466 466 868 467 467 868 404 404 869 467 467 869 406 406 869 406 406 870 467 467 870 468 468 870 406 406 871 468 468 871 408 408 871 408 408 872 468 468 872 469 469 872 408 408 873 469 469 873 471 471 873 471 471 874 469 469 874 470 470 874 471 471 875 470 470 875 410 410 875 410 410 876 470 470 876 472 472 876 410 410 877 472 472 877 412 412 877 412 412 878 472 472 878 473 473 878 412 412 879 473 473 879 474 474 879 474 474 880 473 473 880 475 475 880 474 474 881 475 475 881 476 476 881 476 476 882 475 475 882 477 477 882 476 476 883 477 477 883 415 415 883 415 415 884 477 477 884 478 478 884 415 415 885 478 478 885 416 416 885 416 416 886 478 478 886 479 479 886 416 416 887 479 479 887 480 480 887 480 480 888 479 479 888 481 481 888 480 480 889 481 481 889 418 418 889 418 418 890 481 481 890 482 482 890 418 418 891 482 482 891 419 419 891 419 419 892 482 482 892 483 483 892 419 419 893 483 483 893 484 484 893 484 484 894 483 483 894 485 485 894 484 484 895 485 485 895 420 420 895 420 420 896 485 485 896 486 486 896 420 420 897 486 486 897 422 422 897 422 422 898 486 486 898 487 487 898 422 422 899 487 487 899 423 423 899 423 423 900 487 487 900 488 488 900 423 423 901 488 488 901 427 427 901 427 427 902 488 488 902 489 489 902 427 427 903 489 489 903 428 428 903 428 428 904 489 489 904 490 490 904 428 428 905 490 490 905 429 429 905 429 429 906 490 490 906 491 491 906 429 429 907 491 491 907 492 492 907 492 492 908 491 491 908 493 493 908 492 492 909 493 493 909 494 494 909 494 494 910 493 493 910 495 495 910 494 494 911 495 495 911 496 496 911 496 496 912 495 495 912 498 498 912 496 496 913 498 498 913 497 497 913 497 497 914 498 498 914 500 500 914 497 497 915 500 500 915 499 499 915 499 499 916 500 500 916 502 502 916 499 499 917 502 502 917 501 501 917 501 501 918 502 502 918 503 503 918 501 501 919 503 503 919 435 435 919 435 435 920 503 503 920 504 504 920 435 435 921 504 504 921 437 437 921 437 437 922 504 504 922 506 506 922 437 437 923 506 506 923 505 505 923 505 505 924 506 506 924 507 507 924 505 505 925 507 507 925 508 508 925 508 508 926 507 507 926 509 509 926 508 508 927 509 509 927 439 439 927 439 439 928 509 509 928 510 510 928 439 439 929 510 510 929 442 442 929 442 442 930 510 510 930 511 511 930 442 442 931 511 511 931 513 513 931 513 513 932 511 511 932 512 512 932 513 513 933 512 512 933 514 514 933 514 514 934 512 512 934 515 515 934 514 514 935 515 515 935 516 516 935 516 516 936 515 515 936 517 517 936 516 516 937 517 517 937 518 518 937 518 518 938 517 517 938 519 519 938 518 518 939 519 519 939 520 520 939 520 520 940 519 519 940 522 522 940 520 520 941 522 522 941 521 521 941 521 521 942 522 522 942 523 523 942 521 521 943 523 523 943 448 448 943 448 448 944 523 523 944 524 524 944 448 448 945 524 524 945 525 525 945 525 525 946 524 524 946 526 526 946 525 525 947 526 526 947 449 449 947 449 449 948 526 526 948 527 527 948 449 449 949 527 527 949 528 528 949 528 528 950 527 527 950 530 530 950 528 528 951 530 530 951 529 529 951 529 529 952 530 530 952 531 531 952 529 529 953 531 531 953 532 532 953 532 532 954 531 531 954 533 533 954 532 532 955 533 533 955 534 534 955 534 534 956 533 533 956 535 535 956 534 534 957 535 535 957 453 453 957 453 453 958 535 535 958 454 454 958 536 536 959 53 53 959 862 862 959 853 853 960 56 56 960 852 852 960 58 58 961 61 61 961 842 842 961 834 834 962 66 66 962 537 537 962 819 819 963 68 68 963 821 821 963 69 69 964 70 70 964 815 815 964 538 538 965 73 73 965 804 804 965 78 78 966 80 80 966 795 795 966 539 539 967 781 781 967 784 784 967 88 88 968 89 89 968 589 589 968 93 93 969 94 94 969 763 763 969 96 96 970 540 540 970 748 748 970 739 739 971 103 103 971 541 541 971 2 2 972 3 3 972 731 731 972 6 6 973 8 8 973 571 571 973 12 12 974 13 13 974 708 708 974 702 702 975 15 15 975 696 696 975 16 16 976 695 695 976 694 694 976 680 680 977 678 678 977 564 564 977 21 21 978 23 23 978 662 662 978 25 25 979 657 657 979 663 663 979 28 28 980 542 542 980 655 655 980 31 31 981 34 34 981 557 557 981 40 40 982 543 543 982 544 544 982 43 43 983 44 44 983 545 545 983 619 619 984 45 45 984 546 546 984 547 547 985 606 606 985 608 608 985 106 106 986 549 549 986 548 548 986 548 548 987 549 549 987 614 614 987 548 548 988 614 614 988 603 603 988 603 603 989 614 614 989 550 550 989 603 603 990 550 550 990 551 551 990 551 551 991 550 550 991 610 610 991 551 551 992 610 610 992 552 552 992 552 552 993 610 610 993 553 553 993 552 552 994 553 553 994 605 605 994 605 605 995 553 553 995 608 608 995 554 554 996 107 107 996 639 639 996 639 639 997 107 107 997 649 649 997 639 639 998 649 649 998 640 640 998 640 640 999 649 649 999 647 647 999 640 640 1000 647 647 1000 641 641 1000 641 641 1001 647 647 1001 555 555 1001 641 641 1002 555 555 1002 556 556 1002 556 556 1003 555 555 1003 644 644 1003 556 556 1004 644 644 1004 642 642 1004 642 642 1005 644 644 1005 557 557 1005 558 558 1006 559 559 1006 561 561 1006 561 561 1007 559 559 1007 560 560 1007 561 561 1008 560 560 1008 562 562 1008 562 562 1009 560 560 1009 684 684 1009 562 562 1010 684 684 1010 675 675 1010 675 675 1011 684 684 1011 682 682 1011 675 675 1012 682 682 1012 676 676 1012 676 676 1013 682 682 1013 681 681 1013 676 676 1014 681 681 1014 563 563 1014 563 563 1015 681 681 1015 564 564 1015 714 714 1016 725 725 1016 565 565 1016 565 565 1017 725 725 1017 567 567 1017 565 565 1018 567 567 1018 566 566 1018 566 566 1019 567 567 1019 724 724 1019 566 566 1020 724 724 1020 569 569 1020 569 569 1021 724 724 1021 568 568 1021 569 569 1022 568 568 1022 570 570 1022 570 570 1023 568 568 1023 721 721 1023 570 570 1024 721 721 1024 717 717 1024 717 717 1025 721 721 1025 571 571 1025 112 112 1026 111 111 1026 738 738 1026 738 738 1027 111 111 1027 572 572 1027 738 738 1028 572 572 1028 573 573 1028 573 573 1029 572 572 1029 574 574 1029 573 573 1030 574 574 1030 735 735 1030 735 735 1031 574 574 1031 742 742 1031 735 735 1032 742 742 1032 733 733 1032 733 733 1033 742 742 1033 575 575 1033 733 733 1034 575 575 1034 732 732 1034 732 732 1035 575 575 1035 541 541 1035 576 576 1036 577 577 1036 744 744 1036 744 744 1037 577 577 1037 579 579 1037 744 744 1038 579 579 1038 578 578 1038 578 578 1039 579 579 1039 752 752 1039 578 578 1040 752 752 1040 580 580 1040 580 580 1041 752 752 1041 751 751 1041 580 580 1042 751 751 1042 581 581 1042 581 581 1043 751 751 1043 582 582 1043 581 581 1044 582 582 1044 747 747 1044 747 747 1045 582 582 1045 748 748 1045 766 766 1046 583 583 1046 584 584 1046 584 584 1047 583 583 1047 773 773 1047 584 584 1048 773 773 1048 586 586 1048 586 586 1049 773 773 1049 585 585 1049 586 586 1050 585 585 1050 587 587 1050 587 587 1051 585 585 1051 771 771 1051 587 587 1052 771 771 1052 764 764 1052 764 764 1053 771 771 1053 588 588 1053 764 764 1054 588 588 1054 762 762 1054 762 762 1055 588 588 1055 589 589 1055 775 775 1056 114 114 1056 777 777 1056 777 777 1057 114 114 1057 590 590 1057 777 777 1058 590 590 1058 591 591 1058 591 591 1059 590 590 1059 788 788 1059 591 591 1060 788 788 1060 592 592 1060 592 592 1061 788 788 1061 593 593 1061 592 592 1062 593 593 1062 778 778 1062 778 778 1063 593 593 1063 785 785 1063 778 778 1064 785 785 1064 782 782 1064 782 782 1065 785 785 1065 784 784 1065 594 594 1066 808 808 1066 595 595 1066 595 595 1067 808 808 1067 596 596 1067 595 595 1068 596 596 1068 800 800 1068 800 800 1069 596 596 1069 807 807 1069 800 800 1070 807 807 1070 799 799 1070 799 799 1071 807 807 1071 597 597 1071 799 799 1072 597 597 1072 797 797 1072 797 797 1073 597 597 1073 598 598 1073 797 797 1074 598 598 1074 796 796 1074 796 796 1075 598 598 1075 804 804 1075 839 839 1076 117 117 1076 600 600 1076 600 600 1077 117 117 1077 599 599 1077 600 600 1078 599 599 1078 601 601 1078 601 601 1079 599 599 1079 846 846 1079 601 601 1080 846 846 1080 838 838 1080 838 838 1081 846 846 1081 845 845 1081 838 838 1082 845 845 1082 836 836 1082 836 836 1083 845 845 1083 844 844 1083 836 836 1084 844 844 1084 835 835 1084 835 835 1085 844 844 1085 842 842 1085 866 866 1086 106 106 1086 602 602 1086 602 602 1087 106 106 1087 548 548 1087 602 602 1088 548 548 1088 869 869 1088 869 869 1089 548 548 1089 603 603 1089 869 869 1090 603 603 1090 871 871 1090 871 871 1091 603 603 1091 551 551 1091 871 871 1092 551 551 1092 872 872 1092 872 872 1093 551 551 1093 552 552 1093 872 872 1094 552 552 1094 604 604 1094 604 604 1095 552 552 1095 605 605 1095 604 604 1096 605 605 1096 873 873 1096 873 873 1097 605 605 1097 48 48 1097 608 608 1098 606 606 1098 605 605 1098 605 605 1099 606 606 1099 47 47 1099 605 605 1100 47 47 1100 48 48 1100 607 607 1101 547 547 1101 618 618 1101 618 618 1102 547 547 1102 608 608 1102 618 618 1103 608 608 1103 609 609 1103 609 609 1104 608 608 1104 553 553 1104 609 609 1105 553 553 1105 611 611 1105 611 611 1106 553 553 1106 610 610 1106 611 611 1107 610 610 1107 612 612 1107 612 612 1108 610 610 1108 550 550 1108 612 612 1109 550 550 1109 616 616 1109 616 616 1110 550 550 1110 614 614 1110 616 616 1111 614 614 1111 613 613 1111 613 613 1112 614 614 1112 549 549 1112 613 613 1113 615 615 1113 616 616 1113 616 616 1114 615 615 1114 617 617 1114 616 616 1115 617 617 1115 612 612 1115 612 612 1116 617 617 1116 622 622 1116 612 612 1117 622 622 1117 611 611 1117 611 611 1118 622 622 1118 621 621 1118 611 611 1119 621 621 1119 609 609 1119 609 609 1120 621 621 1120 620 620 1120 609 609 1121 620 620 1121 618 618 1121 618 618 1122 620 620 1122 546 546 1122 618 618 1123 546 546 1123 607 607 1123 607 607 1124 546 546 1124 45 45 1124 44 44 1125 619 619 1125 545 545 1125 545 545 1126 619 619 1126 546 546 1126 545 545 1127 546 546 1127 627 627 1127 627 627 1128 546 546 1128 620 620 1128 627 627 1129 620 620 1129 628 628 1129 628 628 1130 620 620 1130 621 621 1130 628 628 1131 621 621 1131 623 623 1131 623 623 1132 621 621 1132 622 622 1132 623 623 1133 622 622 1133 630 630 1133 630 630 1134 622 622 1134 617 617 1134 630 630 1135 617 617 1135 624 624 1135 624 624 1136 617 617 1136 615 615 1136 543 543 1137 43 43 1137 544 544 1137 544 544 1138 43 43 1138 545 545 1138 544 544 1139 545 545 1139 625 625 1139 625 625 1140 545 545 1140 627 627 1140 625 625 1141 627 627 1141 626 626 1141 626 626 1142 627 627 1142 628 628 1142 626 626 1143 628 628 1143 629 629 1143 629 629 1144 628 628 1144 623 623 1144 629 629 1145 623 623 1145 637 637 1145 637 637 1146 623 623 1146 630 630 1146 637 637 1147 630 630 1147 631 631 1147 631 631 1148 630 630 1148 624 624 1148 39 39 1149 40 40 1149 632 632 1149 632 632 1150 40 40 1150 544 544 1150 632 632 1151 544 544 1151 633 633 1151 633 633 1152 544 544 1152 625 625 1152 633 633 1153 625 625 1153 634 634 1153 634 634 1154 625 625 1154 626 626 1154 634 634 1155 626 626 1155 635 635 1155 635 635 1156 626 626 1156 629 629 1156 635 635 1157 629 629 1157 636 636 1157 636 636 1158 629 629 1158 637 637 1158 636 636 1159 637 637 1159 638 638 1159 638 638 1160 637 637 1160 631 631 1160 638 638 1161 554 554 1161 636 636 1161 636 636 1162 554 554 1162 639 639 1162 636 636 1163 639 639 1163 635 635 1163 635 635 1164 639 639 1164 640 640 1164 635 635 1165 640 640 1165 634 634 1165 634 634 1166 640 640 1166 641 641 1166 634 634 1167 641 641 1167 633 633 1167 633 633 1168 641 641 1168 556 556 1168 633 633 1169 556 556 1169 632 632 1169 632 632 1170 556 556 1170 642 642 1170 632 632 1171 642 642 1171 39 39 1171 39 39 1172 642 642 1172 36 36 1172 557 557 1173 34 34 1173 642 642 1173 642 642 1174 34 34 1174 35 35 1174 642 642 1175 35 35 1175 36 36 1175 656 656 1176 31 31 1176 654 654 1176 654 654 1177 31 31 1177 557 557 1177 654 654 1178 557 557 1178 643 643 1178 643 643 1179 557 557 1179 644 644 1179 643 643 1180 644 644 1180 645 645 1180 645 645 1181 644 644 1181 555 555 1181 645 645 1182 555 555 1182 646 646 1182 646 646 1183 555 555 1183 647 647 1183 646 646 1184 647 647 1184 648 648 1184 648 648 1185 647 647 1185 649 649 1185 648 648 1186 649 649 1186 650 650 1186 650 650 1187 649 649 1187 107 107 1187 650 650 1188 651 651 1188 648 648 1188 648 648 1189 651 651 1189 661 661 1189 648 648 1190 661 661 1190 646 646 1190 646 646 1191 661 661 1191 652 652 1191 646 646 1192 652 652 1192 645 645 1192 645 645 1193 652 652 1193 653 653 1193 645 645 1194 653 653 1194 643 643 1194 643 643 1195 653 653 1195 659 659 1195 643 643 1196 659 659 1196 654 654 1196 654 654 1197 659 659 1197 655 655 1197 654 654 1198 655 655 1198 656 656 1198 656 656 1199 655 655 1199 542 542 1199 657 657 1200 28 28 1200 663 663 1200 663 663 1201 28 28 1201 655 655 1201 663 663 1202 655 655 1202 658 658 1202 658 658 1203 655 655 1203 659 659 1203 658 658 1204 659 659 1204 666 666 1204 666 666 1205 659 659 1205 653 653 1205 666 666 1206 653 653 1206 660 660 1206 660 660 1207 653 653 1207 652 652 1207 660 660 1208 652 652 1208 668 668 1208 668 668 1209 652 652 1209 661 661 1209 668 668 1210 661 661 1210 108 108 1210 108 108 1211 661 661 1211 651 651 1211 23 23 1212 25 25 1212 662 662 1212 662 662 1213 25 25 1213 663 663 1213 662 662 1214 663 663 1214 664 664 1214 664 664 1215 663 663 1215 658 658 1215 664 664 1216 658 658 1216 665 665 1216 665 665 1217 658 658 1217 666 666 1217 665 665 1218 666 666 1218 672 672 1218 672 672 1219 666 666 1219 660 660 1219 672 672 1220 660 660 1220 667 667 1220 667 667 1221 660 660 1221 668 668 1221 667 667 1222 668 668 1222 109 109 1222 109 109 1223 668 668 1223 108 108 1223 20 20 1224 21 21 1224 669 669 1224 669 669 1225 21 21 1225 662 662 1225 669 669 1226 662 662 1226 677 677 1226 677 677 1227 662 662 1227 664 664 1227 677 677 1228 664 664 1228 670 670 1228 670 670 1229 664 664 1229 665 665 1229 670 670 1230 665 665 1230 671 671 1230 671 671 1231 665 665 1231 672 672 1231 671 671 1232 672 672 1232 674 674 1232 674 674 1233 672 672 1233 667 667 1233 674 674 1234 667 667 1234 673 673 1234 673 673 1235 667 667 1235 109 109 1235 673 673 1236 558 558 1236 674 674 1236 674 674 1237 558 558 1237 561 561 1237 674 674 1238 561 561 1238 671 671 1238 671 671 1239 561 561 1239 562 562 1239 671 671 1240 562 562 1240 670 670 1240 670 670 1241 562 562 1241 675 675 1241 670 670 1242 675 675 1242 677 677 1242 677 677 1243 675 675 1243 676 676 1243 677 677 1244 676 676 1244 669 669 1244 669 669 1245 676 676 1245 563 563 1245 669 669 1246 563 563 1246 20 20 1246 20 20 1247 563 563 1247 679 679 1247 564 564 1248 678 678 1248 563 563 1248 563 563 1249 678 678 1249 18 18 1249 563 563 1250 18 18 1250 679 679 1250 693 693 1251 680 680 1251 692 692 1251 692 692 1252 680 680 1252 564 564 1252 692 692 1253 564 564 1253 691 691 1253 691 691 1254 564 564 1254 681 681 1254 691 691 1255 681 681 1255 688 688 1255 688 688 1256 681 681 1256 682 682 1256 688 688 1257 682 682 1257 687 687 1257 687 687 1258 682 682 1258 684 684 1258 687 687 1259 684 684 1259 683 683 1259 683 683 1260 684 684 1260 560 560 1260 683 683 1261 560 560 1261 685 685 1261 685 685 1262 560 560 1262 559 559 1262 685 685 1263 686 686 1263 683 683 1263 683 683 1264 686 686 1264 701 701 1264 683 683 1265 701 701 1265 687 687 1265 687 687 1266 701 701 1266 700 700 1266 687 687 1267 700 700 1267 688 688 1267 688 688 1268 700 700 1268 689 689 1268 688 688 1269 689 689 1269 691 691 1269 691 691 1270 689 689 1270 690 690 1270 691 691 1271 690 690 1271 692 692 1271 692 692 1272 690 690 1272 694 694 1272 692 692 1273 694 694 1273 693 693 1273 693 693 1274 694 694 1274 695 695 1274 15 15 1275 16 16 1275 696 696 1275 696 696 1276 16 16 1276 694 694 1276 696 696 1277 694 694 1277 697 697 1277 697 697 1278 694 694 1278 690 690 1278 697 697 1279 690 690 1279 698 698 1279 698 698 1280 690 690 1280 689 689 1280 698 698 1281 689 689 1281 699 699 1281 699 699 1282 689 689 1282 700 700 1282 699 699 1283 700 700 1283 706 706 1283 706 706 1284 700 700 1284 701 701 1284 706 706 1285 701 701 1285 110 110 1285 110 110 1286 701 701 1286 686 686 1286 13 13 1287 702 702 1287 708 708 1287 708 708 1288 702 702 1288 696 696 1288 708 708 1289 696 696 1289 703 703 1289 703 703 1290 696 696 1290 697 697 1290 703 703 1291 697 697 1291 704 704 1291 704 704 1292 697 697 1292 698 698 1292 704 704 1293 698 698 1293 705 705 1293 705 705 1294 698 698 1294 699 699 1294 705 705 1295 699 699 1295 712 712 1295 712 712 1296 699 699 1296 706 706 1296 712 712 1297 706 706 1297 713 713 1297 713 713 1298 706 706 1298 110 110 1298 718 718 1299 12 12 1299 716 716 1299 716 716 1300 12 12 1300 708 708 1300 716 716 1301 708 708 1301 707 707 1301 707 707 1302 708 708 1302 703 703 1302 707 707 1303 703 703 1303 709 709 1303 709 709 1304 703 703 1304 704 704 1304 709 709 1305 704 704 1305 710 710 1305 710 710 1306 704 704 1306 705 705 1306 710 710 1307 705 705 1307 715 715 1307 715 715 1308 705 705 1308 712 712 1308 715 715 1309 712 712 1309 711 711 1309 711 711 1310 712 712 1310 713 713 1310 711 711 1311 714 714 1311 715 715 1311 715 715 1312 714 714 1312 565 565 1312 715 715 1313 565 565 1313 710 710 1313 710 710 1314 565 565 1314 566 566 1314 710 710 1315 566 566 1315 709 709 1315 709 709 1316 566 566 1316 569 569 1316 709 709 1317 569 569 1317 707 707 1317 707 707 1318 569 569 1318 570 570 1318 707 707 1319 570 570 1319 716 716 1319 716 716 1320 570 570 1320 717 717 1320 716 716 1321 717 717 1321 718 718 1321 718 718 1322 717 717 1322 719 719 1322 571 571 1323 8 8 1323 717 717 1323 717 717 1324 8 8 1324 9 9 1324 717 717 1325 9 9 1325 719 719 1325 4 4 1326 6 6 1326 720 720 1326 720 720 1327 6 6 1327 571 571 1327 720 720 1328 571 571 1328 730 730 1328 730 730 1329 571 571 1329 721 721 1329 730 730 1330 721 721 1330 722 722 1330 722 722 1331 721 721 1331 568 568 1331 722 722 1332 568 568 1332 723 723 1332 723 723 1333 568 568 1333 724 724 1333 723 723 1334 724 724 1334 727 727 1334 727 727 1335 724 724 1335 567 567 1335 727 727 1336 567 567 1336 726 726 1336 726 726 1337 567 567 1337 725 725 1337 726 726 1338 728 728 1338 727 727 1338 727 727 1339 728 728 1339 737 737 1339 727 727 1340 737 737 1340 723 723 1340 723 723 1341 737 737 1341 729 729 1341 723 723 1342 729 729 1342 722 722 1342 722 722 1343 729 729 1343 736 736 1343 722 722 1344 736 736 1344 730 730 1344 730 730 1345 736 736 1345 734 734 1345 730 730 1346 734 734 1346 720 720 1346 720 720 1347 734 734 1347 731 731 1347 720 720 1348 731 731 1348 4 4 1348 4 4 1349 731 731 1349 3 3 1349 1 1 1350 2 2 1350 732 732 1350 732 732 1351 2 2 1351 731 731 1351 732 732 1352 731 731 1352 733 733 1352 733 733 1353 731 731 1353 734 734 1353 733 733 1354 734 734 1354 735 735 1354 735 735 1355 734 734 1355 736 736 1355 735 735 1356 736 736 1356 573 573 1356 573 573 1357 736 736 1357 729 729 1357 573 573 1358 729 729 1358 738 738 1358 738 738 1359 729 729 1359 737 737 1359 738 738 1360 737 737 1360 112 112 1360 112 112 1361 737 737 1361 728 728 1361 541 541 1362 103 103 1362 732 732 1362 732 732 1363 103 103 1363 0 0 1363 732 732 1364 0 0 1364 1 1 1364 99 99 1365 739 739 1365 746 746 1365 746 746 1366 739 739 1366 541 541 1366 746 746 1367 541 541 1367 740 740 1367 740 740 1368 541 541 1368 575 575 1368 740 740 1369 575 575 1369 741 741 1369 741 741 1370 575 575 1370 742 742 1370 741 741 1371 742 742 1371 745 745 1371 745 745 1372 742 742 1372 574 574 1372 745 745 1373 574 574 1373 743 743 1373 743 743 1374 574 574 1374 572 572 1374 743 743 1375 572 572 1375 113 113 1375 113 113 1376 572 572 1376 111 111 1376 113 113 1377 576 576 1377 743 743 1377 743 743 1378 576 576 1378 744 744 1378 743 743 1379 744 744 1379 745 745 1379 745 745 1380 744 744 1380 578 578 1380 745 745 1381 578 578 1381 741 741 1381 741 741 1382 578 578 1382 580 580 1382 741 741 1383 580 580 1383 740 740 1383 740 740 1384 580 580 1384 581 581 1384 740 740 1385 581 581 1385 746 746 1385 746 746 1386 581 581 1386 747 747 1386 746 746 1387 747 747 1387 99 99 1387 99 99 1388 747 747 1388 98 98 1388 748 748 1389 540 540 1389 747 747 1389 747 747 1390 540 540 1390 749 749 1390 747 747 1391 749 749 1391 98 98 1391 750 750 1392 96 96 1392 761 761 1392 761 761 1393 96 96 1393 748 748 1393 761 761 1394 748 748 1394 760 760 1394 760 760 1395 748 748 1395 582 582 1395 760 760 1396 582 582 1396 758 758 1396 758 758 1397 582 582 1397 751 751 1397 758 758 1398 751 751 1398 755 755 1398 755 755 1399 751 751 1399 752 752 1399 755 755 1400 752 752 1400 753 753 1400 753 753 1401 752 752 1401 579 579 1401 753 753 1402 579 579 1402 754 754 1402 754 754 1403 579 579 1403 577 577 1403 754 754 1404 767 767 1404 753 753 1404 753 753 1405 767 767 1405 756 756 1405 753 753 1406 756 756 1406 755 755 1406 755 755 1407 756 756 1407 757 757 1407 755 755 1408 757 757 1408 758 758 1408 758 758 1409 757 757 1409 759 759 1409 758 758 1410 759 759 1410 760 760 1410 760 760 1411 759 759 1411 765 765 1411 760 760 1412 765 765 1412 761 761 1412 761 761 1413 765 765 1413 763 763 1413 761 761 1414 763 763 1414 750 750 1414 750 750 1415 763 763 1415 94 94 1415 91 91 1416 93 93 1416 762 762 1416 762 762 1417 93 93 1417 763 763 1417 762 762 1418 763 763 1418 764 764 1418 764 764 1419 763 763 1419 765 765 1419 764 764 1420 765 765 1420 587 587 1420 587 587 1421 765 765 1421 759 759 1421 587 587 1422 759 759 1422 586 586 1422 586 586 1423 759 759 1423 757 757 1423 586 586 1424 757 757 1424 584 584 1424 584 584 1425 757 757 1425 756 756 1425 584 584 1426 756 756 1426 766 766 1426 766 766 1427 756 756 1427 767 767 1427 589 589 1428 89 89 1428 762 762 1428 762 762 1429 89 89 1429 768 768 1429 762 762 1430 768 768 1430 91 91 1430 87 87 1431 88 88 1431 779 779 1431 779 779 1432 88 88 1432 589 589 1432 779 779 1433 589 589 1433 769 769 1433 769 769 1434 589 589 1434 588 588 1434 769 769 1435 588 588 1435 770 770 1435 770 770 1436 588 588 1436 771 771 1436 770 770 1437 771 771 1437 772 772 1437 772 772 1438 771 771 1438 585 585 1438 772 772 1439 585 585 1439 776 776 1439 776 776 1440 585 585 1440 773 773 1440 776 776 1441 773 773 1441 774 774 1441 774 774 1442 773 773 1442 583 583 1442 774 774 1443 775 775 1443 776 776 1443 776 776 1444 775 775 1444 777 777 1444 776 776 1445 777 777 1445 772 772 1445 772 772 1446 777 777 1446 591 591 1446 772 772 1447 591 591 1447 770 770 1447 770 770 1448 591 591 1448 592 592 1448 770 770 1449 592 592 1449 769 769 1449 769 769 1450 592 592 1450 778 778 1450 769 769 1451 778 778 1451 779 779 1451 779 779 1452 778 778 1452 782 782 1452 779 779 1453 782 782 1453 87 87 1453 87 87 1454 782 782 1454 780 780 1454 784 784 1455 781 781 1455 782 782 1455 782 782 1456 781 781 1456 84 84 1456 782 782 1457 84 84 1457 780 780 1457 81 81 1458 539 539 1458 794 794 1458 794 794 1459 539 539 1459 784 784 1459 794 794 1460 784 784 1460 783 783 1460 783 783 1461 784 784 1461 785 785 1461 783 783 1462 785 785 1462 786 786 1462 786 786 1463 785 785 1463 593 593 1463 786 786 1464 593 593 1464 787 787 1464 787 787 1465 593 593 1465 788 788 1465 787 787 1466 788 788 1466 789 789 1466 789 789 1467 788 788 1467 590 590 1467 789 789 1468 590 590 1468 790 790 1468 790 790 1469 590 590 1469 114 114 1469 790 790 1470 791 791 1470 789 789 1470 789 789 1471 791 791 1471 801 801 1471 789 789 1472 801 801 1472 787 787 1472 787 787 1473 801 801 1473 792 792 1473 787 787 1474 792 792 1474 786 786 1474 786 786 1475 792 792 1475 793 793 1475 786 786 1476 793 793 1476 783 783 1476 783 783 1477 793 793 1477 798 798 1477 783 783 1478 798 798 1478 794 794 1478 794 794 1479 798 798 1479 795 795 1479 794 794 1480 795 795 1480 81 81 1480 81 81 1481 795 795 1481 80 80 1481 802 802 1482 78 78 1482 796 796 1482 796 796 1483 78 78 1483 795 795 1483 796 796 1484 795 795 1484 797 797 1484 797 797 1485 795 795 1485 798 798 1485 797 797 1486 798 798 1486 799 799 1486 799 799 1487 798 798 1487 793 793 1487 799 799 1488 793 793 1488 800 800 1488 800 800 1489 793 793 1489 792 792 1489 800 800 1490 792 792 1490 595 595 1490 595 595 1491 792 792 1491 801 801 1491 595 595 1492 801 801 1492 594 594 1492 594 594 1493 801 801 1493 791 791 1493 804 804 1494 73 73 1494 796 796 1494 796 796 1495 73 73 1495 75 75 1495 796 796 1496 75 75 1496 802 802 1496 71 71 1497 538 538 1497 803 803 1497 803 803 1498 538 538 1498 804 804 1498 803 803 1499 804 804 1499 813 813 1499 813 813 1500 804 804 1500 598 598 1500 813 813 1501 598 598 1501 805 805 1501 805 805 1502 598 598 1502 597 597 1502 805 805 1503 597 597 1503 806 806 1503 806 806 1504 597 597 1504 807 807 1504 806 806 1505 807 807 1505 809 809 1505 809 809 1506 807 807 1506 596 596 1506 809 809 1507 596 596 1507 115 115 1507 115 115 1508 596 596 1508 808 808 1508 115 115 1509 810 810 1509 809 809 1509 809 809 1510 810 810 1510 818 818 1510 809 809 1511 818 818 1511 806 806 1511 806 806 1512 818 818 1512 811 811 1512 806 806 1513 811 811 1513 805 805 1513 805 805 1514 811 811 1514 812 812 1514 805 805 1515 812 812 1515 813 813 1515 813 813 1516 812 812 1516 814 814 1516 813 813 1517 814 814 1517 803 803 1517 803 803 1518 814 814 1518 815 815 1518 803 803 1519 815 815 1519 71 71 1519 71 71 1520 815 815 1520 70 70 1520 68 68 1521 69 69 1521 821 821 1521 821 821 1522 69 69 1522 815 815 1522 821 821 1523 815 815 1523 822 822 1523 822 822 1524 815 815 1524 814 814 1524 822 822 1525 814 814 1525 816 816 1525 816 816 1526 814 814 1526 812 812 1526 816 816 1527 812 812 1527 817 817 1527 817 817 1528 812 812 1528 811 811 1528 817 817 1529 811 811 1529 823 823 1529 823 823 1530 811 811 1530 818 818 1530 823 823 1531 818 818 1531 116 116 1531 116 116 1532 818 818 1532 810 810 1532 833 833 1533 819 819 1533 820 820 1533 820 820 1534 819 819 1534 821 821 1534 820 820 1535 821 821 1535 832 832 1535 832 832 1536 821 821 1536 822 822 1536 832 832 1537 822 822 1537 830 830 1537 830 830 1538 822 822 1538 816 816 1538 830 830 1539 816 816 1539 827 827 1539 827 827 1540 816 816 1540 817 817 1540 827 827 1541 817 817 1541 826 826 1541 826 826 1542 817 817 1542 823 823 1542 826 826 1543 823 823 1543 824 824 1543 824 824 1544 823 823 1544 116 116 1544 824 824 1545 825 825 1545 826 826 1545 826 826 1546 825 825 1546 828 828 1546 826 826 1547 828 828 1547 827 827 1547 827 827 1548 828 828 1548 829 829 1548 827 827 1549 829 829 1549 830 830 1549 830 830 1550 829 829 1550 831 831 1550 830 830 1551 831 831 1551 832 832 1551 832 832 1552 831 831 1552 837 837 1552 832 832 1553 837 837 1553 820 820 1553 820 820 1554 837 837 1554 537 537 1554 820 820 1555 537 537 1555 833 833 1555 833 833 1556 537 537 1556 66 66 1556 63 63 1557 834 834 1557 835 835 1557 835 835 1558 834 834 1558 537 537 1558 835 835 1559 537 537 1559 836 836 1559 836 836 1560 537 537 1560 837 837 1560 836 836 1561 837 837 1561 838 838 1561 838 838 1562 837 837 1562 831 831 1562 838 838 1563 831 831 1563 601 601 1563 601 601 1564 831 831 1564 829 829 1564 601 601 1565 829 829 1565 600 600 1565 600 600 1566 829 829 1566 828 828 1566 600 600 1567 828 828 1567 839 839 1567 839 839 1568 828 828 1568 825 825 1568 842 842 1569 61 61 1569 835 835 1569 835 835 1570 61 61 1570 840 840 1570 835 835 1571 840 840 1571 63 63 1571 57 57 1572 58 58 1572 841 841 1572 841 841 1573 58 58 1573 842 842 1573 841 841 1574 842 842 1574 843 843 1574 843 843 1575 842 842 1575 844 844 1575 843 843 1576 844 844 1576 851 851 1576 851 851 1577 844 844 1577 845 845 1577 851 851 1578 845 845 1578 850 850 1578 850 850 1579 845 845 1579 846 846 1579 850 850 1580 846 846 1580 847 847 1580 847 847 1581 846 846 1581 599 599 1581 847 847 1582 599 599 1582 848 848 1582 848 848 1583 599 599 1583 117 117 1583 848 848 1584 119 119 1584 847 847 1584 847 847 1585 119 119 1585 849 849 1585 847 847 1586 849 849 1586 850 850 1586 850 850 1587 849 849 1587 857 857 1587 850 850 1588 857 857 1588 851 851 1588 851 851 1589 857 857 1589 856 856 1589 851 851 1590 856 856 1590 843 843 1590 843 843 1591 856 856 1591 855 855 1591 843 843 1592 855 855 1592 841 841 1592 841 841 1593 855 855 1593 852 852 1593 841 841 1594 852 852 1594 57 57 1594 57 57 1595 852 852 1595 56 56 1595 53 53 1596 853 853 1596 862 862 1596 862 862 1597 853 853 1597 852 852 1597 862 862 1598 852 852 1598 854 854 1598 854 854 1599 852 852 1599 855 855 1599 854 854 1600 855 855 1600 864 864 1600 864 864 1601 855 855 1601 856 856 1601 864 864 1602 856 856 1602 865 865 1602 865 865 1603 856 856 1603 857 857 1603 865 865 1604 857 857 1604 858 858 1604 858 858 1605 857 857 1605 849 849 1605 858 858 1606 849 849 1606 859 859 1606 859 859 1607 849 849 1607 119 119 1607 860 860 1608 536 536 1608 861 861 1608 861 861 1609 536 536 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 854 854 1611 870 870 1612 854 854 1612 863 863 1612 863 863 1613 854 854 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 858 858 1617 867 867 1618 858 858 1618 118 118 1618 118 118 1619 858 858 1619 859 859 1619 118 118 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 602 602 1621 867 867 1622 602 602 1622 868 868 1622 868 868 1623 602 602 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 604 604 1629 861 861 1630 604 604 1630 860 860 1630 860 860 1631 604 604 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.STL b/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.STL new file mode 100755 index 0000000..79e16a1 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.dae b/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.dae new file mode 100755 index 0000000..04b7d31 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/right_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:36 2016 GMT + Tue Jan 19 20:36:36 2016 GMT + Y_UP + + + + + + -0.0499122 -2.69381e-18 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 3.42942e-18 0.035 0.05 3.67803e-19 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.12663e-17 0.045 0.0355863 -0.0182652 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.038256 -0.0116823 0.045 -0.038256 0.0116823 0.045 -0.0252035 0.031061 0.045 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.0128108 0.0378931 0.045 -0.0172026 0.0361119 0.045 0 -1.46917e-18 0.045 -0.0213529 0.0338238 0.045 0.0269993 0.0295133 0.045 0.0233192 0.0324995 0.045 0.0355863 0.0182652 0.045 0.0303004 0.0261129 0.045 0.0397192 0.00473093 0.045 0.0388809 0.00939544 0.045 0.04 -6.98008e-18 1.38778e-17 0.0355863 0.0182652 1.16409e-17 0.0374968 0.0139281 1.21721e-17 0.0388809 0.00939544 1.27272e-17 0.0397192 0.00473093 1.32984e-17 0.0303004 0.0261129 1.06799e-17 0.0331762 0.0223459 1.11412e-17 0.0193117 0.0350294 9.58792e-18 0.0233192 0.0324995 9.89775e-18 0.0269993 0.0295133 1.02634e-17 0.00590586 0.0395616 9.03289e-18 0.0105435 0.0385854 9.15244e-18 0.0150331 0.0370676 9.33832e-18 -0.0128108 0.0378931 9.23723e-18 -0.00823914 0.0391423 9.08424e-18 -0.00355184 0.039842 8.99855e-18 0.00118533 0.0399824 8.98135e-18 -0.0213529 0.0338238 9.73556e-18 -0.0172026 0.0361119 9.45535e-18 -0.0317942 0.024272 1.09053e-17 -0.0287003 0.027862 1.04657e-17 -0.0252035 0.031061 1.00739e-17 -0.0393692 0.00707561 1.30113e-17 -0.038256 0.0116823 1.24471e-17 -0.0366058 0.0161249 1.19031e-17 -0.0344417 0.0203412 1.13867e-17 -0.0399297 -0.00236963 1.4168e-17 -0.0399297 0.00236963 1.35876e-17 -0.0344417 -0.0203412 1.63689e-17 -0.0366058 -0.0161249 1.58525e-17 -0.038256 -0.0116823 1.53085e-17 -0.0393692 -0.00707561 1.47443e-17 -0.0252035 -0.031061 1.76817e-17 -0.0287003 -0.027862 1.72899e-17 0 -6.98008e-18 1.38778e-17 -0.0317942 -0.024272 1.68503e-17 -0.0172026 -0.0361119 1.83002e-17 -0.0213529 -0.0338238 1.802e-17 0.00118533 -0.0399824 1.87742e-17 -0.00355184 -0.039842 1.8757e-17 -0.00823914 -0.0391423 1.86713e-17 -0.0128108 -0.0378931 1.85183e-17 0.0105435 -0.0385854 1.86031e-17 0.00590586 -0.0395616 1.87227e-17 0.0269993 -0.0295133 1.74921e-17 0.0233192 -0.0324995 1.78578e-17 0.0193117 -0.0350294 1.81677e-17 0.0150331 -0.0370676 1.84173e-17 0.0331762 -0.0223459 1.66144e-17 0.0303004 -0.0261129 1.70757e-17 0.0397192 -0.00473093 1.44572e-17 0.0388809 -0.00939544 1.50284e-17 0.0374968 -0.0139281 1.55835e-17 0.0355863 -0.0182652 1.61146e-17 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 -5.75543e-18 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -5.75543e-18 0.01 0.0496593 -6.07239e-18 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -6.36775e-18 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -6.62139e-18 0.00292893 0.045 -6.81601e-18 0.00133975 0.0446841 0.00532229 0.00133975 0.0413967 0.0100034 0.000340742 0.0353229 0.0237918 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0338514 0.0258425 0.000340742 -0.038747 0.0228839 0.00133975 -0.0366703 0.0216574 0.000340742 -0.0411816 0.0181406 0.00133975 -0.0407314 0.0124382 0.000340742 -0.043038 0.0131426 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0442904 0.00796006 0.00133975 -0.0425134 0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0419166 -0.00753344 0.000340742 -0.0442904 -0.00796006 0.00133975 -0.0389744 -0.0171683 0.000340742 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0366703 -0.0216574 0.000340742 -0.0357684 -0.027306 0.00133975 -0.0305573 -0.0296648 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0183157 -0.0384485 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.0136397 -0.0403449 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00399582 -0.0448222 0.00133975 0.006288 -0.0421214 0.000340742 0.0118614 -0.0434086 0.00133975 0.0112257 -0.0410821 0.000340742 0.0169122 -0.041701 0.00133975 0.024828 -0.0346023 0.000340742 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.032261 -0.0278025 0.000340742 0.0353229 -0.0237918 0.000340742 0.039923 -0.0148293 0.000340742 0.0421839 -0.0156691 0.00133975 0.0413967 -0.0100034 0.000340742 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0397192 0.00473093 1.50331e-17 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 1.44619e-17 0.0374968 0.0139281 1.39068e-17 0.0355863 0.0182652 1.33757e-17 0.039923 0.0148293 0.000340742 0.0331762 0.0223459 1.28759e-17 0.0378889 0.019447 0.000340742 0.0303004 0.0261129 1.24146e-17 0.0269993 0.0295133 1.19982e-17 0.0233192 0.0324995 1.16325e-17 0.0287463 0.031423 0.000340742 0.0193117 0.0350294 1.13226e-17 0.0150331 0.0370676 1.1073e-17 0.0105435 0.0385854 1.08872e-17 0.00590586 0.0395616 1.07676e-17 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 1.07161e-17 -0.00355184 0.039842 1.07333e-17 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 1.0819e-17 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 1.0972e-17 -0.0172026 0.0361119 1.11901e-17 -0.0213529 0.0338238 1.14703e-17 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 1.18086e-17 -0.0287003 0.027862 1.22004e-17 -0.0317942 0.024272 1.264e-17 -0.0344417 0.0203412 1.31214e-17 -0.0366058 0.0161249 1.36378e-17 -0.0389744 0.0171683 0.000340742 -0.038256 0.0116823 1.41818e-17 -0.0393692 0.00707561 1.4746e-17 -0.0399297 0.00236963 1.53223e-17 -0.0399297 -0.00236963 1.59027e-17 -0.0393692 -0.00707561 1.6479e-17 -0.0425134 -0.00252295 0.000340742 -0.038256 -0.0116823 1.70432e-17 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 1.75872e-17 -0.0344417 -0.0203412 1.81036e-17 -0.0317942 -0.024272 1.8585e-17 -0.0338514 -0.0258425 0.000340742 -0.0287003 -0.027862 1.90246e-17 -0.0252035 -0.031061 1.94164e-17 -0.0268343 -0.0330707 0.000340742 -0.0227346 -0.0360124 0.000340742 -0.0213529 -0.0338238 1.97547e-17 -0.0172026 -0.0361119 2.00349e-17 -0.0128108 -0.0378931 2.02531e-17 -0.00823914 -0.0391423 2.04061e-17 -0.00877226 -0.0416749 0.000340742 -0.00355184 -0.039842 2.04917e-17 -0.00378166 -0.04242 0.000340742 0.00126203 -0.0425695 0.000340742 0.00118533 -0.0399824 2.05089e-17 0.00590586 -0.0395616 2.04574e-17 0.0105435 -0.0385854 2.03379e-17 0.0160058 -0.039466 0.000340742 0.0150331 -0.0370676 2.0152e-17 0.0193117 -0.0350294 1.99024e-17 0.0205612 -0.037296 0.000340742 0.0233192 -0.0324995 1.95925e-17 0.0269993 -0.0295133 1.92269e-17 0.0303004 -0.0261129 1.88104e-17 0.0331762 -0.0223459 1.83491e-17 0.0355863 -0.0182652 1.78493e-17 0.0374968 -0.0139281 1.73182e-17 0.0378889 -0.019447 0.000340742 0.0388809 -0.00939544 1.67631e-17 0.0397192 -0.00473093 1.61919e-17 0.0422893 -0.00503704 0.000340742 0.0425882 -6.93835e-18 0.000340742 0.04 -6.98008e-18 1.56125e-17 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366058 -0.0161249 0.045 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0399297 0.00236963 0.045 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.00590586 0.0395616 0.045 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0331762 0.0223459 0.045 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0397192 -0.00473093 0.045 0.0425882 -1.5109e-18 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -2.37685e-18 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0407314 -0.0124382 0.0446593 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0399297 -0.00236963 0.045 -0.0393692 -0.00707561 0.045 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0393692 0.00707561 0.045 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.0105435 0.0385854 0.045 0.0150331 0.0370676 0.045 0.0112257 0.0410821 0.0446593 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0193117 0.0350294 0.045 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0374968 0.0139281 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.46917e-18 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.63324e-18 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.82786e-18 0.0420711 0.0486603 -2.08149e-18 0.04 0.05 -2.69381e-18 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 7.25487e-18 0.998244 0.0592405 -7.25487e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -2.13434e-23 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 6.40303e-24 -1.22465e-16 -1 5.12242e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 1.23792e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.10986e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.56121e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 2.77465e-23 -1.22465e-16 -1 1.04049e-23 -1.22465e-16 -1 1.28061e-23 -1.22465e-16 -1 5.54929e-23 -1.22465e-16 -1 1.70747e-23 -1.22465e-16 -1 -5.54929e-23 -1.22464e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 1.66479e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 -3.52167e-23 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.23792e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.04897e-22 -1.22465e-16 -1 2.04897e-22 -1.22465e-16 -1 7.25677e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 1.02448e-22 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 8.53737e-24 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 215 215 0 0 0 0 0 0 1 215 215 1 214 214 1 0 0 2 214 214 2 1 1 2 1 1 3 214 214 3 212 212 3 1 1 4 212 212 4 2 2 4 2 2 5 212 212 5 211 211 5 2 2 6 211 211 6 3 3 6 3 3 7 211 211 7 209 209 7 3 3 8 209 209 8 4 4 8 4 4 9 209 209 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 207 207 15 9 9 16 207 207 16 726 726 16 726 726 17 207 207 17 11 11 17 726 726 18 11 11 18 725 725 18 725 725 19 11 11 19 205 205 19 725 725 20 205 205 20 12 12 20 12 12 21 205 205 21 203 203 21 12 12 22 203 203 22 13 13 22 13 13 23 203 203 23 202 202 23 13 13 24 202 202 24 709 709 24 709 709 25 202 202 25 14 14 25 709 709 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 200 200 29 16 16 30 200 200 30 702 702 30 702 702 31 200 200 31 199 199 31 702 702 32 199 199 32 700 700 32 700 700 33 199 199 33 198 198 33 700 700 34 198 198 34 687 687 34 687 687 35 198 198 35 197 197 35 687 687 36 197 197 36 685 685 36 685 685 37 197 197 37 196 196 37 685 685 38 196 196 38 18 18 38 18 18 39 196 196 39 195 195 39 18 18 40 195 195 40 686 686 40 686 686 41 195 195 41 193 193 41 686 686 42 193 193 42 20 20 42 20 20 43 193 193 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 664 664 50 664 664 51 26 26 51 27 27 51 664 664 52 27 27 52 28 28 52 28 28 53 27 27 53 190 190 53 28 28 54 190 190 54 547 547 54 547 547 55 190 190 55 29 29 55 547 547 56 29 29 56 663 663 56 663 663 57 29 29 57 30 30 57 663 663 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 185 185 67 39 39 68 185 185 68 40 40 68 40 40 69 185 185 69 41 41 69 40 40 70 41 41 70 548 548 70 548 548 71 41 41 71 42 42 71 548 548 72 42 42 72 43 43 72 43 43 73 42 42 73 182 182 73 43 43 74 182 182 74 44 44 74 44 44 75 182 182 75 181 181 75 44 44 76 181 181 76 626 626 76 626 626 77 181 181 77 180 180 77 626 626 78 180 180 78 45 45 78 45 45 79 180 180 79 46 46 79 45 45 80 46 46 80 615 615 80 615 615 81 46 46 81 179 179 81 615 615 82 179 179 82 552 552 82 552 552 83 179 179 83 253 253 83 552 552 84 253 253 84 614 614 84 614 614 85 253 253 85 252 252 85 614 614 86 252 252 86 47 47 86 47 47 87 252 252 87 251 251 87 47 47 88 251 251 88 48 48 88 48 48 89 251 251 89 249 249 89 48 48 90 249 249 90 49 49 90 49 49 91 249 249 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 541 541 94 541 541 95 51 51 95 52 52 95 541 541 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 854 854 98 854 854 99 54 54 99 245 245 99 854 854 100 245 245 100 56 56 100 56 56 101 245 245 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 841 841 108 841 841 109 62 62 109 244 244 109 841 841 110 244 244 110 63 63 110 63 63 111 244 244 111 64 64 111 63 63 112 64 64 112 836 836 112 836 836 113 64 64 113 65 65 113 836 836 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 835 835 116 835 835 117 67 67 117 242 242 117 835 835 118 242 242 118 823 823 118 823 823 119 242 242 119 241 241 119 823 823 120 241 241 120 68 68 120 68 68 121 241 241 121 240 240 121 68 68 122 240 240 122 69 69 122 69 69 123 240 240 123 237 237 123 69 69 124 237 237 124 70 70 124 70 70 125 237 237 125 236 236 125 70 70 126 236 236 126 71 71 126 71 71 127 236 236 127 235 235 127 71 71 128 235 235 128 543 543 128 543 543 129 235 235 129 72 72 129 543 543 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 805 805 134 805 805 135 76 76 135 77 77 135 805 805 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 231 231 139 80 80 140 231 231 140 81 81 140 81 81 141 231 231 141 82 82 141 81 81 142 82 82 142 544 544 142 544 544 143 82 82 143 83 83 143 544 544 144 83 83 144 784 784 144 784 784 145 83 83 145 229 229 145 784 784 146 229 229 146 84 84 146 84 84 147 229 229 147 85 85 147 84 84 148 85 85 148 783 783 148 783 783 149 85 85 149 86 86 149 783 783 150 86 86 150 87 87 150 87 87 151 86 86 151 226 226 151 87 87 152 226 226 152 88 88 152 88 88 153 226 226 153 225 225 153 88 88 154 225 225 154 89 89 154 89 89 155 225 225 155 224 224 155 89 89 156 224 224 156 773 773 156 773 773 157 224 224 157 90 90 157 773 773 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 221 221 161 93 93 162 221 221 162 94 94 162 94 94 163 221 221 163 220 220 163 94 94 164 220 220 164 757 757 164 757 757 165 220 220 165 95 95 165 757 757 166 95 95 166 96 96 166 96 96 167 95 95 167 218 218 167 96 96 168 218 218 168 545 545 168 545 545 169 218 218 169 217 217 169 545 545 170 217 217 170 756 756 170 756 756 171 217 217 171 97 97 171 756 756 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 745 745 176 745 745 177 101 101 177 102 102 177 745 745 178 102 102 178 103 103 178 103 103 179 102 102 179 215 215 179 104 104 180 123 123 180 117 117 180 104 104 181 117 117 181 609 609 181 105 105 182 621 621 182 117 117 182 117 117 183 621 621 183 554 554 183 117 117 184 554 554 184 609 609 184 645 645 185 638 638 185 117 117 185 117 117 186 638 638 186 631 631 186 117 117 187 631 631 187 105 105 187 657 657 188 106 106 188 117 117 188 117 117 189 106 106 189 559 559 189 117 117 190 559 559 190 645 645 190 108 108 191 107 107 191 117 117 191 117 117 192 107 107 192 658 658 192 117 117 193 658 658 193 657 657 193 564 564 194 563 563 194 117 117 194 117 117 195 563 563 195 680 680 195 117 117 196 680 680 196 108 108 196 109 109 197 693 693 197 117 117 197 117 117 198 693 693 198 692 692 198 117 117 199 692 692 199 564 564 199 721 721 200 718 718 200 117 117 200 117 117 201 718 718 201 720 720 201 117 117 202 720 720 202 109 109 202 744 744 203 110 110 203 117 117 203 117 117 204 110 110 204 570 570 204 117 117 205 570 570 205 721 721 205 750 750 206 578 578 206 117 117 206 117 117 207 578 578 207 743 743 207 117 117 208 743 743 208 744 744 208 761 761 209 583 583 209 117 117 209 117 117 210 583 583 210 111 111 210 117 117 211 111 111 211 750 750 211 112 112 212 113 113 212 117 117 212 117 117 213 113 113 213 114 114 213 117 117 214 114 114 214 761 761 214 115 115 215 116 116 215 117 117 215 117 117 216 116 116 216 118 118 216 117 117 217 118 118 217 112 112 217 599 599 218 794 794 218 117 117 218 117 117 219 794 794 219 793 793 219 117 117 220 793 793 220 115 115 220 812 812 221 811 811 221 117 117 221 117 117 222 811 811 222 601 601 222 117 117 223 601 601 223 599 599 223 119 119 224 120 120 224 117 117 224 117 117 225 120 120 225 822 822 225 117 117 226 822 822 226 812 812 226 121 121 227 605 605 227 117 117 227 117 117 228 605 605 228 122 122 228 117 117 229 122 122 229 119 119 229 123 123 230 124 124 230 117 117 230 117 117 231 124 124 231 849 849 231 117 117 232 849 849 232 121 121 232 125 125 233 175 175 233 159 159 233 125 125 234 159 159 234 129 129 234 126 126 235 127 127 235 159 159 235 159 159 236 127 127 236 128 128 236 159 159 237 128 128 237 129 129 237 134 134 238 130 130 238 159 159 238 159 159 239 130 130 239 131 131 239 159 159 240 131 131 240 126 126 240 137 137 241 132 132 241 159 159 241 159 159 242 132 132 242 133 133 242 159 159 243 133 133 243 134 134 243 141 141 244 135 135 244 159 159 244 159 159 245 135 135 245 136 136 245 159 159 246 136 136 246 137 137 246 138 138 247 139 139 247 159 159 247 159 159 248 139 139 248 140 140 248 159 159 249 140 140 249 141 141 249 146 146 250 142 142 250 159 159 250 159 159 251 142 142 251 143 143 251 159 159 252 143 143 252 138 138 252 150 150 253 144 144 253 159 159 253 159 159 254 144 144 254 145 145 254 159 159 255 145 145 255 146 146 255 147 147 256 148 148 256 159 159 256 159 159 257 148 148 257 149 149 257 159 159 258 149 149 258 150 150 258 156 156 259 151 151 259 159 159 259 159 159 260 151 151 260 152 152 260 159 159 261 152 152 261 147 147 261 153 153 262 154 154 262 159 159 262 159 159 263 154 154 263 155 155 263 159 159 264 155 155 264 156 156 264 157 157 265 158 158 265 159 159 265 159 159 266 158 158 266 160 160 266 159 159 267 160 160 267 153 153 267 166 166 268 161 161 268 159 159 268 159 159 269 161 161 269 162 162 269 159 159 270 162 162 270 157 157 270 163 163 271 164 164 271 159 159 271 159 159 272 164 164 272 165 165 272 159 159 273 165 165 273 166 166 273 172 172 274 167 167 274 159 159 274 159 159 275 167 167 275 168 168 275 159 159 276 168 168 276 163 163 276 169 169 277 170 170 277 159 159 277 159 159 278 170 170 278 171 171 278 159 159 279 171 171 279 172 172 279 178 178 280 173 173 280 159 159 280 159 159 281 173 173 281 174 174 281 159 159 282 174 174 282 169 169 282 175 175 283 176 176 283 159 159 283 159 159 284 176 176 284 177 177 284 159 159 285 177 177 285 178 178 285 253 253 286 302 302 286 304 304 286 253 253 287 179 179 287 302 302 287 302 302 288 179 179 288 46 46 288 302 302 289 46 46 289 300 300 289 300 300 290 46 46 290 180 180 290 300 300 291 180 180 291 298 298 291 298 298 292 180 180 292 181 181 292 298 298 293 181 181 293 183 183 293 183 183 294 181 181 294 182 182 294 182 182 295 42 42 295 183 183 295 183 183 296 42 42 296 41 41 296 183 183 297 41 41 297 184 184 297 41 41 298 185 185 298 184 184 298 184 184 299 185 185 299 38 38 299 184 184 300 38 38 300 186 186 300 186 186 301 38 38 301 37 37 301 186 186 302 37 37 302 187 187 302 37 37 303 33 33 303 187 187 303 187 187 304 33 33 304 32 32 304 187 187 305 32 32 305 294 294 305 32 32 306 30 30 306 294 294 306 294 294 307 30 30 307 29 29 307 294 294 308 29 29 308 188 188 308 188 188 309 29 29 309 190 190 309 188 188 310 190 190 310 189 189 310 189 189 311 190 190 311 27 27 311 189 189 312 27 27 312 191 191 312 191 191 313 27 27 313 26 26 313 26 26 314 24 24 314 191 191 314 191 191 315 24 24 315 22 22 315 191 191 316 22 22 316 192 192 316 22 22 317 19 19 317 192 192 317 192 192 318 19 19 318 193 193 318 192 192 319 193 193 319 194 194 319 194 194 320 193 193 320 195 195 320 194 194 321 195 195 321 288 288 321 288 288 322 195 195 322 196 196 322 288 288 323 196 196 323 287 287 323 287 287 324 196 196 324 197 197 324 197 197 325 198 198 325 287 287 325 287 287 326 198 198 326 199 199 326 287 287 327 199 199 327 286 286 327 286 286 328 199 199 328 200 200 328 286 286 329 200 200 329 201 201 329 201 201 330 200 200 330 17 17 330 201 201 331 17 17 331 284 284 331 284 284 332 17 17 332 14 14 332 14 14 333 202 202 333 284 284 333 284 284 334 202 202 334 203 203 334 284 284 335 203 203 335 204 204 335 203 203 336 205 205 336 204 204 336 204 204 337 205 205 337 11 11 337 204 204 338 11 11 338 206 206 338 206 206 339 11 11 339 207 207 339 206 206 340 207 207 340 281 281 340 281 281 341 207 207 341 10 10 341 281 281 342 10 10 342 208 208 342 208 208 343 10 10 343 7 7 343 7 7 344 5 5 344 208 208 344 208 208 345 5 5 345 209 209 345 208 208 346 209 209 346 210 210 346 210 210 347 209 209 347 211 211 347 210 210 348 211 211 348 213 213 348 211 211 349 212 212 349 213 213 349 213 213 350 212 212 350 214 214 350 213 213 351 214 214 351 216 216 351 214 214 352 215 215 352 216 216 352 216 216 353 215 215 353 102 102 353 216 216 354 102 102 354 276 276 354 102 102 355 101 101 355 276 276 355 276 276 356 101 101 356 100 100 356 276 276 357 100 100 357 274 274 357 274 274 358 100 100 358 97 97 358 274 274 359 97 97 359 273 273 359 273 273 360 97 97 360 217 217 360 273 273 361 217 217 361 219 219 361 219 219 362 217 217 362 218 218 362 218 218 363 95 95 363 219 219 363 219 219 364 95 95 364 220 220 364 219 219 365 220 220 365 271 271 365 271 271 366 220 220 366 221 221 366 271 271 367 221 221 367 222 222 367 221 221 368 92 92 368 222 222 368 222 222 369 92 92 369 90 90 369 222 222 370 90 90 370 223 223 370 90 90 371 224 224 371 223 223 371 223 223 372 224 224 372 225 225 372 223 223 373 225 225 373 269 269 373 225 225 374 226 226 374 269 269 374 269 269 375 226 226 375 86 86 375 269 269 376 86 86 376 227 227 376 227 227 377 86 86 377 85 85 377 227 227 378 85 85 378 228 228 378 228 228 379 85 85 379 229 229 379 228 228 380 229 229 380 230 230 380 230 230 381 229 229 381 83 83 381 83 83 382 82 82 382 230 230 382 230 230 383 82 82 383 231 231 383 230 230 384 231 231 384 232 232 384 232 232 385 231 231 385 79 79 385 232 232 386 79 79 386 233 233 386 79 79 387 77 77 387 233 233 387 233 233 388 77 77 388 76 76 388 233 233 389 76 76 389 234 234 389 76 76 390 74 74 390 234 234 390 234 234 391 74 74 391 72 72 391 234 234 392 72 72 392 264 264 392 72 72 393 235 235 393 264 264 393 264 264 394 235 235 394 236 236 394 264 264 395 236 236 395 263 263 395 263 263 396 236 236 396 237 237 396 263 263 397 237 237 397 238 238 397 238 238 398 237 237 398 240 240 398 238 238 399 240 240 399 239 239 399 239 239 400 240 240 400 241 241 400 241 241 401 242 242 401 239 239 401 239 239 402 242 242 402 67 67 402 239 239 403 67 67 403 260 260 403 260 260 404 67 67 404 65 65 404 260 260 405 65 65 405 243 243 405 65 65 406 64 64 406 243 243 406 243 243 407 64 64 407 244 244 407 243 243 408 244 244 408 257 257 408 244 244 409 62 62 409 257 257 409 257 257 410 62 62 410 60 60 410 257 257 411 60 60 411 256 256 411 60 60 412 59 59 412 256 256 412 256 256 413 59 59 413 55 55 413 256 256 414 55 55 414 255 255 414 255 255 415 55 55 415 245 245 415 255 255 416 245 245 416 246 246 416 246 246 417 245 245 417 54 54 417 246 246 418 54 54 418 254 254 418 254 254 419 54 54 419 52 52 419 52 52 420 51 51 420 254 254 420 254 254 421 51 51 421 247 247 421 254 254 422 247 247 422 248 248 422 248 248 423 247 247 423 249 249 423 248 248 424 249 249 424 250 250 424 250 250 425 249 249 425 251 251 425 250 250 426 251 251 426 304 304 426 304 304 427 251 251 427 252 252 427 304 304 428 252 252 428 253 253 428 248 248 429 306 306 429 254 254 429 254 254 430 306 306 430 309 309 430 254 254 431 309 309 431 246 246 431 246 246 432 309 309 432 311 311 432 246 246 433 311 311 433 255 255 433 255 255 434 311 311 434 312 312 434 255 255 435 312 312 435 256 256 435 256 256 436 312 312 436 258 258 436 256 256 437 258 258 437 257 257 437 257 257 438 258 258 438 315 315 438 257 257 439 315 315 439 243 243 439 243 243 440 315 315 440 259 259 440 243 243 441 259 259 441 260 260 441 260 260 442 259 259 442 317 317 442 260 260 443 317 317 443 239 239 443 239 239 444 317 317 444 261 261 444 239 239 445 261 261 445 238 238 445 238 238 446 261 261 446 262 262 446 238 238 447 262 262 447 263 263 447 263 263 448 262 262 448 265 265 448 263 263 449 265 265 449 264 264 449 264 264 450 265 265 450 322 322 450 264 264 451 322 322 451 234 234 451 234 234 452 322 322 452 266 266 452 234 234 453 266 266 453 233 233 453 233 233 454 266 266 454 267 267 454 233 233 455 267 267 455 232 232 455 232 232 456 267 267 456 268 268 456 232 232 457 268 268 457 230 230 457 230 230 458 268 268 458 326 326 458 230 230 459 326 326 459 228 228 459 228 228 460 326 326 460 327 327 460 228 228 461 327 327 461 227 227 461 227 227 462 327 327 462 328 328 462 227 227 463 328 328 463 269 269 463 269 269 464 328 328 464 270 270 464 269 269 465 270 270 465 223 223 465 223 223 466 270 270 466 331 331 466 223 223 467 331 331 467 222 222 467 222 222 468 331 331 468 332 332 468 222 222 469 332 332 469 271 271 469 271 271 470 332 332 470 272 272 470 271 271 471 272 272 471 219 219 471 219 219 472 272 272 472 333 333 472 219 219 473 333 333 473 273 273 473 273 273 474 333 333 474 275 275 474 273 273 475 275 275 475 274 274 475 274 274 476 275 275 476 335 335 476 274 274 477 335 335 477 276 276 477 276 276 478 335 335 478 277 277 478 276 276 479 277 277 479 216 216 479 216 216 480 277 277 480 337 337 480 216 216 481 337 337 481 213 213 481 213 213 482 337 337 482 278 278 482 213 213 483 278 278 483 210 210 483 210 210 484 278 278 484 279 279 484 210 210 485 279 279 485 208 208 485 208 208 486 279 279 486 280 280 486 208 208 487 280 280 487 281 281 487 281 281 488 280 280 488 282 282 488 281 281 489 282 282 489 206 206 489 206 206 490 282 282 490 283 283 490 206 206 491 283 283 491 204 204 491 204 204 492 283 283 492 342 342 492 204 204 493 342 342 493 284 284 493 284 284 494 342 342 494 343 343 494 284 284 495 343 343 495 201 201 495 201 201 496 343 343 496 285 285 496 201 201 497 285 285 497 286 286 497 286 286 498 285 285 498 344 344 498 286 286 499 344 344 499 287 287 499 287 287 500 344 344 500 289 289 500 287 287 501 289 289 501 288 288 501 288 288 502 289 289 502 290 290 502 288 288 503 290 290 503 194 194 503 194 194 504 290 290 504 291 291 504 194 194 505 291 291 505 192 192 505 192 192 506 291 291 506 292 292 506 192 192 507 292 292 507 191 191 507 191 191 508 292 292 508 293 293 508 191 191 509 293 293 509 189 189 509 189 189 510 293 293 510 350 350 510 189 189 511 350 350 511 188 188 511 188 188 512 350 350 512 295 295 512 188 188 513 295 295 513 294 294 513 294 294 514 295 295 514 353 353 514 294 294 515 353 353 515 187 187 515 187 187 516 353 353 516 296 296 516 187 187 517 296 296 517 186 186 517 186 186 518 296 296 518 355 355 518 186 186 519 355 355 519 184 184 519 184 184 520 355 355 520 297 297 520 184 184 521 297 297 521 183 183 521 183 183 522 297 297 522 356 356 522 183 183 523 356 356 523 298 298 523 298 298 524 356 356 524 299 299 524 298 298 525 299 299 525 300 300 525 300 300 526 299 299 526 301 301 526 300 300 527 301 301 527 302 302 527 302 302 528 301 301 528 303 303 528 302 302 529 303 303 529 304 304 529 304 304 530 303 303 530 359 359 530 304 304 531 359 359 531 250 250 531 250 250 532 359 359 532 305 305 532 250 250 533 305 305 533 248 248 533 248 248 534 305 305 534 306 306 534 305 305 535 307 307 535 306 306 535 306 306 536 307 307 536 308 308 536 306 306 537 308 308 537 309 309 537 309 309 538 308 308 538 363 363 538 309 309 539 363 363 539 311 311 539 311 311 540 363 363 540 310 310 540 311 311 541 310 310 541 312 312 541 312 312 542 310 310 542 313 313 542 312 312 543 313 313 543 258 258 543 258 258 544 313 313 544 314 314 544 258 258 545 314 314 545 315 315 545 315 315 546 314 314 546 366 366 546 315 315 547 366 366 547 259 259 547 259 259 548 366 366 548 316 316 548 259 259 549 316 316 549 317 317 549 317 317 550 316 316 550 318 318 550 317 317 551 318 318 551 261 261 551 261 261 552 318 318 552 319 319 552 261 261 553 319 319 553 262 262 553 262 262 554 319 319 554 320 320 554 262 262 555 320 320 555 265 265 555 265 265 556 320 320 556 321 321 556 265 265 557 321 321 557 322 322 557 322 322 558 321 321 558 323 323 558 322 322 559 323 323 559 266 266 559 266 266 560 323 323 560 324 324 560 266 266 561 324 324 561 267 267 561 267 267 562 324 324 562 325 325 562 267 267 563 325 325 563 268 268 563 268 268 564 325 325 564 370 370 564 268 268 565 370 370 565 326 326 565 326 326 566 370 370 566 371 371 566 326 326 567 371 371 567 327 327 567 327 327 568 371 371 568 372 372 568 327 327 569 372 372 569 328 328 569 328 328 570 372 372 570 329 329 570 328 328 571 329 329 571 270 270 571 270 270 572 329 329 572 330 330 572 270 270 573 330 330 573 331 331 573 331 331 574 330 330 574 377 377 574 331 331 575 377 377 575 332 332 575 332 332 576 377 377 576 378 378 576 332 332 577 378 378 577 272 272 577 272 272 578 378 378 578 379 379 578 272 272 579 379 379 579 333 333 579 333 333 580 379 379 580 334 334 580 333 333 581 334 334 581 275 275 581 275 275 582 334 334 582 380 380 582 275 275 583 380 380 583 335 335 583 335 335 584 380 380 584 336 336 584 335 335 585 336 336 585 277 277 585 277 277 586 336 336 586 382 382 586 277 277 587 382 382 587 337 337 587 337 337 588 382 382 588 338 338 588 337 337 589 338 338 589 278 278 589 278 278 590 338 338 590 339 339 590 278 278 591 339 339 591 279 279 591 279 279 592 339 339 592 384 384 592 279 279 593 384 384 593 280 280 593 280 280 594 384 384 594 340 340 594 280 280 595 340 340 595 282 282 595 282 282 596 340 340 596 385 385 596 282 282 597 385 385 597 283 283 597 283 283 598 385 385 598 341 341 598 283 283 599 341 341 599 342 342 599 342 342 600 341 341 600 388 388 600 342 342 601 388 388 601 343 343 601 343 343 602 388 388 602 389 389 602 343 343 603 389 389 603 285 285 603 285 285 604 389 389 604 390 390 604 285 285 605 390 390 605 344 344 605 344 344 606 390 390 606 391 391 606 344 344 607 391 391 607 289 289 607 289 289 608 391 391 608 345 345 608 289 289 609 345 345 609 290 290 609 290 290 610 345 345 610 346 346 610 290 290 611 346 346 611 291 291 611 291 291 612 346 346 612 347 347 612 291 291 613 347 347 613 292 292 613 292 292 614 347 347 614 348 348 614 292 292 615 348 348 615 293 293 615 293 293 616 348 348 616 349 349 616 293 293 617 349 349 617 350 350 617 350 350 618 349 349 618 351 351 618 350 350 619 351 351 619 295 295 619 295 295 620 351 351 620 352 352 620 295 295 621 352 352 621 353 353 621 353 353 622 352 352 622 394 394 622 353 353 623 394 394 623 296 296 623 296 296 624 394 394 624 354 354 624 296 296 625 354 354 625 355 355 625 355 355 626 354 354 626 396 396 626 355 355 627 396 396 627 297 297 627 297 297 628 396 396 628 399 399 628 297 297 629 399 399 629 356 356 629 356 356 630 399 399 630 357 357 630 356 356 631 357 357 631 299 299 631 299 299 632 357 357 632 358 358 632 299 299 633 358 358 633 301 301 633 301 301 634 358 358 634 401 401 634 301 301 635 401 401 635 303 303 635 303 303 636 401 401 636 402 402 636 303 303 637 402 402 637 359 359 637 359 359 638 402 402 638 403 403 638 359 359 639 403 403 639 305 305 639 305 305 640 403 403 640 307 307 640 403 403 641 405 405 641 307 307 641 307 307 642 405 405 642 360 360 642 307 307 643 360 360 643 308 308 643 308 308 644 360 360 644 361 361 644 308 308 645 361 361 645 363 363 645 363 363 646 361 361 646 362 362 646 363 363 647 362 362 647 310 310 647 310 310 648 362 362 648 364 364 648 310 310 649 364 364 649 313 313 649 313 313 650 364 364 650 365 365 650 313 313 651 365 365 651 314 314 651 314 314 652 365 365 652 409 409 652 314 314 653 409 409 653 366 366 653 366 366 654 409 409 654 411 411 654 366 366 655 411 411 655 316 316 655 316 316 656 411 411 656 413 413 656 316 316 657 413 413 657 318 318 657 318 318 658 413 413 658 367 367 658 318 318 659 367 367 659 319 319 659 319 319 660 367 367 660 415 415 660 319 319 661 415 415 661 320 320 661 320 320 662 415 415 662 417 417 662 320 320 663 417 417 663 321 321 663 321 321 664 417 417 664 368 368 664 321 321 665 368 368 665 323 323 665 323 323 666 368 368 666 419 419 666 323 323 667 419 419 667 324 324 667 324 324 668 419 419 668 369 369 668 324 324 669 369 369 669 325 325 669 325 325 670 369 369 670 420 420 670 325 325 671 420 420 671 370 370 671 370 370 672 420 420 672 423 423 672 370 370 673 423 423 673 371 371 673 371 371 674 423 423 674 373 373 674 371 371 675 373 373 675 372 372 675 372 372 676 373 373 676 374 374 676 372 372 677 374 374 677 329 329 677 329 329 678 374 374 678 375 375 678 329 329 679 375 375 679 330 330 679 330 330 680 375 375 680 376 376 680 330 330 681 376 376 681 377 377 681 377 377 682 376 376 682 427 427 682 377 377 683 427 427 683 378 378 683 378 378 684 427 427 684 429 429 684 378 378 685 429 429 685 379 379 685 379 379 686 429 429 686 431 431 686 379 379 687 431 431 687 334 334 687 334 334 688 431 431 688 433 433 688 334 334 689 433 433 689 380 380 689 380 380 690 433 433 690 381 381 690 380 380 691 381 381 691 336 336 691 336 336 692 381 381 692 435 435 692 336 336 693 435 435 693 382 382 693 382 382 694 435 435 694 437 437 694 382 382 695 437 437 695 338 338 695 338 338 696 437 437 696 383 383 696 338 338 697 383 383 697 339 339 697 339 339 698 383 383 698 439 439 698 339 339 699 439 439 699 384 384 699 384 384 700 439 439 700 440 440 700 384 384 701 440 440 701 340 340 701 340 340 702 440 440 702 442 442 702 340 340 703 442 442 703 385 385 703 385 385 704 442 442 704 386 386 704 385 385 705 386 386 705 341 341 705 341 341 706 386 386 706 444 444 706 341 341 707 444 444 707 388 388 707 388 388 708 444 444 708 387 387 708 388 388 709 387 387 709 389 389 709 389 389 710 387 387 710 446 446 710 389 389 711 446 446 711 390 390 711 390 390 712 446 446 712 448 448 712 390 390 713 448 448 713 391 391 713 391 391 714 448 448 714 449 449 714 391 391 715 449 449 715 345 345 715 345 345 716 449 449 716 450 450 716 345 345 717 450 450 717 346 346 717 346 346 718 450 450 718 392 392 718 346 346 719 392 392 719 347 347 719 347 347 720 392 392 720 393 393 720 347 347 721 393 393 721 348 348 721 348 348 722 393 393 722 452 452 722 348 348 723 452 452 723 349 349 723 349 349 724 452 452 724 454 454 724 349 349 725 454 454 725 351 351 725 351 351 726 454 454 726 456 456 726 351 351 727 456 456 727 352 352 727 352 352 728 456 456 728 457 457 728 352 352 729 457 457 729 394 394 729 394 394 730 457 457 730 395 395 730 394 394 731 395 395 731 354 354 731 354 354 732 395 395 732 397 397 732 354 354 733 397 397 733 396 396 733 396 396 734 397 397 734 398 398 734 396 396 735 398 398 735 399 399 735 399 399 736 398 398 736 400 400 736 399 399 737 400 400 737 357 357 737 357 357 738 400 400 738 462 462 738 357 357 739 462 462 739 358 358 739 358 358 740 462 462 740 464 464 740 358 358 741 464 464 741 401 401 741 401 401 742 464 464 742 465 465 742 401 401 743 465 465 743 402 402 743 402 402 744 465 465 744 404 404 744 402 402 745 404 404 745 403 403 745 403 403 746 404 404 746 405 405 746 404 404 747 467 467 747 405 405 747 405 405 748 467 467 748 406 406 748 405 405 749 406 406 749 360 360 749 360 360 750 406 406 750 471 471 750 360 360 751 471 471 751 361 361 751 361 361 752 471 471 752 473 473 752 361 361 753 473 473 753 362 362 753 362 362 754 473 473 754 407 407 754 362 362 755 407 407 755 364 364 755 364 364 756 407 407 756 408 408 756 364 364 757 408 408 757 365 365 757 365 365 758 408 408 758 477 477 758 365 365 759 477 477 759 409 409 759 409 409 760 477 477 760 410 410 760 409 409 761 410 410 761 411 411 761 411 411 762 410 410 762 412 412 762 411 411 763 412 412 763 413 413 763 413 413 764 412 412 764 414 414 764 413 413 765 414 414 765 367 367 765 367 367 766 414 414 766 482 482 766 367 367 767 482 482 767 415 415 767 415 415 768 482 482 768 416 416 768 415 415 769 416 416 769 417 417 769 417 417 770 416 416 770 418 418 770 417 417 771 418 418 771 368 368 771 368 368 772 418 418 772 485 485 772 368 368 773 485 485 773 419 419 773 419 419 774 485 485 774 487 487 774 419 419 775 487 487 775 369 369 775 369 369 776 487 487 776 421 421 776 369 369 777 421 421 777 420 420 777 420 420 778 421 421 778 422 422 778 420 420 779 422 422 779 423 423 779 423 423 780 422 422 780 491 491 780 423 423 781 491 491 781 373 373 781 373 373 782 491 491 782 424 424 782 373 373 783 424 424 783 374 374 783 374 374 784 424 424 784 425 425 784 374 374 785 425 425 785 375 375 785 375 375 786 425 425 786 426 426 786 375 375 787 426 426 787 376 376 787 376 376 788 426 426 788 428 428 788 376 376 789 428 428 789 427 427 789 427 427 790 428 428 790 497 497 790 427 427 791 497 497 791 429 429 791 429 429 792 497 497 792 430 430 792 429 429 793 430 430 793 431 431 793 431 431 794 430 430 794 432 432 794 431 431 795 432 432 795 433 433 795 433 433 796 432 432 796 434 434 796 433 433 797 434 434 797 381 381 797 381 381 798 434 434 798 503 503 798 381 381 799 503 503 799 435 435 799 435 435 800 503 503 800 436 436 800 435 435 801 436 436 801 437 437 801 437 437 802 436 436 802 505 505 802 437 437 803 505 505 803 383 383 803 383 383 804 505 505 804 438 438 804 383 383 805 438 438 805 439 439 805 439 439 806 438 438 806 441 441 806 439 439 807 441 441 807 440 440 807 440 440 808 441 441 808 509 509 808 440 440 809 509 509 809 442 442 809 442 442 810 509 509 810 443 443 810 442 442 811 443 443 811 386 386 811 386 386 812 443 443 812 512 512 812 386 386 813 512 512 813 444 444 813 444 444 814 512 512 814 513 513 814 444 444 815 513 513 815 387 387 815 387 387 816 513 513 816 445 445 816 387 387 817 445 445 817 446 446 817 446 446 818 445 445 818 447 447 818 446 446 819 447 447 819 448 448 819 448 448 820 447 447 820 518 518 820 448 448 821 518 518 821 449 449 821 449 449 822 518 518 822 520 520 822 449 449 823 520 520 823 450 450 823 450 450 824 520 520 824 521 521 824 450 450 825 521 521 825 392 392 825 392 392 826 521 521 826 451 451 826 392 392 827 451 451 827 393 393 827 393 393 828 451 451 828 453 453 828 393 393 829 453 453 829 452 452 829 452 452 830 453 453 830 525 525 830 452 452 831 525 525 831 454 454 831 454 454 832 525 525 832 528 528 832 454 454 833 528 528 833 456 456 833 456 456 834 528 528 834 455 455 834 456 456 835 455 455 835 457 457 835 457 457 836 455 455 836 458 458 836 457 457 837 458 458 837 395 395 837 395 395 838 458 458 838 459 459 838 395 395 839 459 459 839 397 397 839 397 397 840 459 459 840 460 460 840 397 397 841 460 460 841 398 398 841 398 398 842 460 460 842 535 535 842 398 398 843 535 535 843 400 400 843 400 400 844 535 535 844 461 461 844 400 400 845 461 461 845 462 462 845 462 462 846 461 461 846 463 463 846 462 462 847 463 463 847 464 464 847 464 464 848 463 463 848 538 538 848 464 464 849 538 538 849 465 465 849 465 465 850 538 538 850 539 539 850 465 465 851 539 539 851 404 404 851 404 404 852 539 539 852 467 467 852 539 539 853 466 466 853 467 467 853 467 467 854 466 466 854 468 468 854 467 467 855 468 468 855 406 406 855 406 406 856 468 468 856 469 469 856 406 406 857 469 469 857 471 471 857 471 471 858 469 469 858 470 470 858 471 471 859 470 470 859 473 473 859 473 473 860 470 470 860 472 472 860 473 473 861 472 472 861 407 407 861 407 407 862 472 472 862 474 474 862 407 407 863 474 474 863 408 408 863 408 408 864 474 474 864 475 475 864 408 408 865 475 475 865 477 477 865 477 477 866 475 475 866 476 476 866 477 477 867 476 476 867 410 410 867 410 410 868 476 476 868 478 478 868 410 410 869 478 478 869 412 412 869 412 412 870 478 478 870 479 479 870 412 412 871 479 479 871 414 414 871 414 414 872 479 479 872 480 480 872 414 414 873 480 480 873 482 482 873 482 482 874 480 480 874 481 481 874 482 482 875 481 481 875 416 416 875 416 416 876 481 481 876 483 483 876 416 416 877 483 483 877 418 418 877 418 418 878 483 483 878 484 484 878 418 418 879 484 484 879 485 485 879 485 485 880 484 484 880 486 486 880 485 485 881 486 486 881 487 487 881 487 487 882 486 486 882 488 488 882 487 487 883 488 488 883 421 421 883 421 421 884 488 488 884 489 489 884 421 421 885 489 489 885 422 422 885 422 422 886 489 489 886 490 490 886 422 422 887 490 490 887 491 491 887 491 491 888 490 490 888 492 492 888 491 491 889 492 492 889 424 424 889 424 424 890 492 492 890 493 493 890 424 424 891 493 493 891 425 425 891 425 425 892 493 493 892 494 494 892 425 425 893 494 494 893 426 426 893 426 426 894 494 494 894 495 495 894 426 426 895 495 495 895 428 428 895 428 428 896 495 495 896 496 496 896 428 428 897 496 496 897 497 497 897 497 497 898 496 496 898 498 498 898 497 497 899 498 498 899 430 430 899 430 430 900 498 498 900 499 499 900 430 430 901 499 499 901 432 432 901 432 432 902 499 499 902 500 500 902 432 432 903 500 500 903 434 434 903 434 434 904 500 500 904 501 501 904 434 434 905 501 501 905 503 503 905 503 503 906 501 501 906 502 502 906 503 503 907 502 502 907 436 436 907 436 436 908 502 502 908 504 504 908 436 436 909 504 504 909 505 505 909 505 505 910 504 504 910 506 506 910 505 505 911 506 506 911 438 438 911 438 438 912 506 506 912 507 507 912 438 438 913 507 507 913 441 441 913 441 441 914 507 507 914 508 508 914 441 441 915 508 508 915 509 509 915 509 509 916 508 508 916 510 510 916 509 509 917 510 510 917 443 443 917 443 443 918 510 510 918 511 511 918 443 443 919 511 511 919 512 512 919 512 512 920 511 511 920 514 514 920 512 512 921 514 514 921 513 513 921 513 513 922 514 514 922 515 515 922 513 513 923 515 515 923 445 445 923 445 445 924 515 515 924 516 516 924 445 445 925 516 516 925 447 447 925 447 447 926 516 516 926 517 517 926 447 447 927 517 517 927 518 518 927 518 518 928 517 517 928 519 519 928 518 518 929 519 519 929 520 520 929 520 520 930 519 519 930 522 522 930 520 520 931 522 522 931 521 521 931 521 521 932 522 522 932 523 523 932 521 521 933 523 523 933 451 451 933 451 451 934 523 523 934 524 524 934 451 451 935 524 524 935 453 453 935 453 453 936 524 524 936 526 526 936 453 453 937 526 526 937 525 525 937 525 525 938 526 526 938 527 527 938 525 525 939 527 527 939 528 528 939 528 528 940 527 527 940 529 529 940 528 528 941 529 529 941 455 455 941 455 455 942 529 529 942 530 530 942 455 455 943 530 530 943 458 458 943 458 458 944 530 530 944 531 531 944 458 458 945 531 531 945 459 459 945 459 459 946 531 531 946 532 532 946 459 459 947 532 532 947 460 460 947 460 460 948 532 532 948 533 533 948 460 460 949 533 533 949 535 535 949 535 535 950 533 533 950 534 534 950 535 535 951 534 534 951 461 461 951 461 461 952 534 534 952 536 536 952 461 461 953 536 536 953 463 463 953 463 463 954 536 536 954 537 537 954 463 463 955 537 537 955 538 538 955 538 538 956 537 537 956 540 540 956 538 538 957 540 540 957 539 539 957 539 539 958 540 540 958 466 466 958 541 541 959 53 53 959 862 862 959 854 854 960 56 56 960 853 853 960 58 58 961 61 61 961 843 843 961 836 836 962 66 66 962 542 542 962 823 823 963 68 68 963 825 825 963 69 69 964 70 70 964 818 818 964 543 543 965 73 73 965 807 807 965 78 78 966 80 80 966 798 798 966 544 544 967 784 784 967 787 787 967 88 88 968 89 89 968 594 594 968 93 93 969 94 94 969 770 770 969 96 96 970 545 545 970 755 755 970 745 745 971 103 103 971 546 546 971 2 2 972 3 3 972 735 735 972 6 6 973 8 8 973 577 577 973 12 12 974 13 13 974 715 715 974 709 709 975 15 15 975 703 703 975 16 16 976 702 702 976 701 701 976 687 687 977 685 685 977 569 569 977 21 21 978 23 23 978 669 669 978 25 25 979 664 664 979 670 670 979 28 28 980 547 547 980 662 662 980 31 31 981 34 34 981 562 562 981 40 40 982 548 548 982 549 549 982 43 43 983 44 44 983 550 550 983 626 626 984 45 45 984 551 551 984 552 552 985 614 614 985 616 616 985 609 609 986 554 554 986 553 553 986 553 553 987 554 554 987 622 622 987 553 553 988 622 622 988 611 611 988 611 611 989 622 622 989 555 555 989 611 611 990 555 555 990 556 556 990 556 556 991 555 555 991 618 618 991 556 556 992 618 618 992 557 557 992 557 557 993 618 618 993 558 558 993 557 557 994 558 558 994 613 613 994 613 613 995 558 558 995 616 616 995 559 559 996 106 106 996 646 646 996 646 646 997 106 106 997 656 656 997 646 646 998 656 656 998 647 647 998 647 647 999 656 656 999 654 654 999 647 647 1000 654 654 1000 648 648 1000 648 648 1001 654 654 1001 560 560 1001 648 648 1002 560 560 1002 561 561 1002 561 561 1003 560 560 1003 651 651 1003 561 561 1004 651 651 1004 649 649 1004 649 649 1005 651 651 1005 562 562 1005 563 563 1006 564 564 1006 566 566 1006 566 566 1007 564 564 1007 565 565 1007 566 566 1008 565 565 1008 567 567 1008 567 567 1009 565 565 1009 691 691 1009 567 567 1010 691 691 1010 682 682 1010 682 682 1011 691 691 1011 689 689 1011 682 682 1012 689 689 1012 683 683 1012 683 683 1013 689 689 1013 688 688 1013 683 683 1014 688 688 1014 568 568 1014 568 568 1015 688 688 1015 569 569 1015 721 721 1016 570 570 1016 571 571 1016 571 571 1017 570 570 1017 573 573 1017 571 571 1018 573 573 1018 572 572 1018 572 572 1019 573 573 1019 731 731 1019 572 572 1020 731 731 1020 575 575 1020 575 575 1021 731 731 1021 574 574 1021 575 575 1022 574 574 1022 576 576 1022 576 576 1023 574 574 1023 728 728 1023 576 576 1024 728 728 1024 724 724 1024 724 724 1025 728 728 1025 577 577 1025 743 743 1026 578 578 1026 742 742 1026 742 742 1027 578 578 1027 579 579 1027 742 742 1028 579 579 1028 580 580 1028 580 580 1029 579 579 1029 581 581 1029 580 580 1030 581 581 1030 739 739 1030 739 739 1031 581 581 1031 748 748 1031 739 739 1032 748 748 1032 737 737 1032 737 737 1033 748 748 1033 582 582 1033 737 737 1034 582 582 1034 736 736 1034 736 736 1035 582 582 1035 546 546 1035 111 111 1036 583 583 1036 751 751 1036 751 751 1037 583 583 1037 585 585 1037 751 751 1038 585 585 1038 584 584 1038 584 584 1039 585 585 1039 759 759 1039 584 584 1040 759 759 1040 586 586 1040 586 586 1041 759 759 1041 758 758 1041 586 586 1042 758 758 1042 587 587 1042 587 587 1043 758 758 1043 588 588 1043 587 587 1044 588 588 1044 754 754 1044 754 754 1045 588 588 1045 755 755 1045 113 113 1046 112 112 1046 589 589 1046 589 589 1047 112 112 1047 778 778 1047 589 589 1048 778 778 1048 591 591 1048 591 591 1049 778 778 1049 590 590 1049 591 591 1050 590 590 1050 592 592 1050 592 592 1051 590 590 1051 776 776 1051 592 592 1052 776 776 1052 771 771 1052 771 771 1053 776 776 1053 593 593 1053 771 771 1054 593 593 1054 769 769 1054 769 769 1055 593 593 1055 594 594 1055 116 116 1056 115 115 1056 780 780 1056 780 780 1057 115 115 1057 595 595 1057 780 780 1058 595 595 1058 596 596 1058 596 596 1059 595 595 1059 791 791 1059 596 596 1060 791 791 1060 597 597 1060 597 597 1061 791 791 1061 598 598 1061 597 597 1062 598 598 1062 781 781 1062 781 781 1063 598 598 1063 788 788 1063 781 781 1064 788 788 1064 785 785 1064 785 785 1065 788 788 1065 787 787 1065 599 599 1066 601 601 1066 600 600 1066 600 600 1067 601 601 1067 602 602 1067 600 600 1068 602 602 1068 803 803 1068 803 803 1069 602 602 1069 810 810 1069 803 803 1070 810 810 1070 802 802 1070 802 802 1071 810 810 1071 603 603 1071 802 802 1072 603 603 1072 800 800 1072 800 800 1073 603 603 1073 604 604 1073 800 800 1074 604 604 1074 799 799 1074 799 799 1075 604 604 1075 807 807 1075 122 122 1076 605 605 1076 607 607 1076 607 607 1077 605 605 1077 606 606 1077 607 607 1078 606 606 1078 608 608 1078 608 608 1079 606 606 1079 847 847 1079 608 608 1080 847 847 1080 840 840 1080 840 840 1081 847 847 1081 846 846 1081 840 840 1082 846 846 1082 838 838 1082 838 838 1083 846 846 1083 845 845 1083 838 838 1084 845 845 1084 837 837 1084 837 837 1085 845 845 1085 843 843 1085 866 866 1086 609 609 1086 610 610 1086 610 610 1087 609 609 1087 553 553 1087 610 610 1088 553 553 1088 869 869 1088 869 869 1089 553 553 1089 611 611 1089 869 869 1090 611 611 1090 871 871 1090 871 871 1091 611 611 1091 556 556 1091 871 871 1092 556 556 1092 872 872 1092 872 872 1093 556 556 1093 557 557 1093 872 872 1094 557 557 1094 612 612 1094 612 612 1095 557 557 1095 613 613 1095 612 612 1096 613 613 1096 873 873 1096 873 873 1097 613 613 1097 48 48 1097 616 616 1098 614 614 1098 613 613 1098 613 613 1099 614 614 1099 47 47 1099 613 613 1100 47 47 1100 48 48 1100 615 615 1101 552 552 1101 625 625 1101 625 625 1102 552 552 1102 616 616 1102 625 625 1103 616 616 1103 617 617 1103 617 617 1104 616 616 1104 558 558 1104 617 617 1105 558 558 1105 619 619 1105 619 619 1106 558 558 1106 618 618 1106 619 619 1107 618 618 1107 620 620 1107 620 620 1108 618 618 1108 555 555 1108 620 620 1109 555 555 1109 623 623 1109 623 623 1110 555 555 1110 622 622 1110 623 623 1111 622 622 1111 621 621 1111 621 621 1112 622 622 1112 554 554 1112 621 621 1113 105 105 1113 623 623 1113 623 623 1114 105 105 1114 624 624 1114 623 623 1115 624 624 1115 620 620 1115 620 620 1116 624 624 1116 629 629 1116 620 620 1117 629 629 1117 619 619 1117 619 619 1118 629 629 1118 628 628 1118 619 619 1119 628 628 1119 617 617 1119 617 617 1120 628 628 1120 627 627 1120 617 617 1121 627 627 1121 625 625 1121 625 625 1122 627 627 1122 551 551 1122 625 625 1123 551 551 1123 615 615 1123 615 615 1124 551 551 1124 45 45 1124 44 44 1125 626 626 1125 550 550 1125 550 550 1126 626 626 1126 551 551 1126 550 550 1127 551 551 1127 634 634 1127 634 634 1128 551 551 1128 627 627 1128 634 634 1129 627 627 1129 635 635 1129 635 635 1130 627 627 1130 628 628 1130 635 635 1131 628 628 1131 630 630 1131 630 630 1132 628 628 1132 629 629 1132 630 630 1133 629 629 1133 637 637 1133 637 637 1134 629 629 1134 624 624 1134 637 637 1135 624 624 1135 631 631 1135 631 631 1136 624 624 1136 105 105 1136 548 548 1137 43 43 1137 549 549 1137 549 549 1138 43 43 1138 550 550 1138 549 549 1139 550 550 1139 632 632 1139 632 632 1140 550 550 1140 634 634 1140 632 632 1141 634 634 1141 633 633 1141 633 633 1142 634 634 1142 635 635 1142 633 633 1143 635 635 1143 636 636 1143 636 636 1144 635 635 1144 630 630 1144 636 636 1145 630 630 1145 644 644 1145 644 644 1146 630 630 1146 637 637 1146 644 644 1147 637 637 1147 638 638 1147 638 638 1148 637 637 1148 631 631 1148 39 39 1149 40 40 1149 639 639 1149 639 639 1150 40 40 1150 549 549 1150 639 639 1151 549 549 1151 640 640 1151 640 640 1152 549 549 1152 632 632 1152 640 640 1153 632 632 1153 641 641 1153 641 641 1154 632 632 1154 633 633 1154 641 641 1155 633 633 1155 642 642 1155 642 642 1156 633 633 1156 636 636 1156 642 642 1157 636 636 1157 643 643 1157 643 643 1158 636 636 1158 644 644 1158 643 643 1159 644 644 1159 645 645 1159 645 645 1160 644 644 1160 638 638 1160 645 645 1161 559 559 1161 643 643 1161 643 643 1162 559 559 1162 646 646 1162 643 643 1163 646 646 1163 642 642 1163 642 642 1164 646 646 1164 647 647 1164 642 642 1165 647 647 1165 641 641 1165 641 641 1166 647 647 1166 648 648 1166 641 641 1167 648 648 1167 640 640 1167 640 640 1168 648 648 1168 561 561 1168 640 640 1169 561 561 1169 639 639 1169 639 639 1170 561 561 1170 649 649 1170 639 639 1171 649 649 1171 39 39 1171 39 39 1172 649 649 1172 36 36 1172 562 562 1173 34 34 1173 649 649 1173 649 649 1174 34 34 1174 35 35 1174 649 649 1175 35 35 1175 36 36 1175 663 663 1176 31 31 1176 661 661 1176 661 661 1177 31 31 1177 562 562 1177 661 661 1178 562 562 1178 650 650 1178 650 650 1179 562 562 1179 651 651 1179 650 650 1180 651 651 1180 652 652 1180 652 652 1181 651 651 1181 560 560 1181 652 652 1182 560 560 1182 653 653 1182 653 653 1183 560 560 1183 654 654 1183 653 653 1184 654 654 1184 655 655 1184 655 655 1185 654 654 1185 656 656 1185 655 655 1186 656 656 1186 657 657 1186 657 657 1187 656 656 1187 106 106 1187 657 657 1188 658 658 1188 655 655 1188 655 655 1189 658 658 1189 668 668 1189 655 655 1190 668 668 1190 653 653 1190 653 653 1191 668 668 1191 659 659 1191 653 653 1192 659 659 1192 652 652 1192 652 652 1193 659 659 1193 660 660 1193 652 652 1194 660 660 1194 650 650 1194 650 650 1195 660 660 1195 666 666 1195 650 650 1196 666 666 1196 661 661 1196 661 661 1197 666 666 1197 662 662 1197 661 661 1198 662 662 1198 663 663 1198 663 663 1199 662 662 1199 547 547 1199 664 664 1200 28 28 1200 670 670 1200 670 670 1201 28 28 1201 662 662 1201 670 670 1202 662 662 1202 665 665 1202 665 665 1203 662 662 1203 666 666 1203 665 665 1204 666 666 1204 673 673 1204 673 673 1205 666 666 1205 660 660 1205 673 673 1206 660 660 1206 667 667 1206 667 667 1207 660 660 1207 659 659 1207 667 667 1208 659 659 1208 675 675 1208 675 675 1209 659 659 1209 668 668 1209 675 675 1210 668 668 1210 107 107 1210 107 107 1211 668 668 1211 658 658 1211 23 23 1212 25 25 1212 669 669 1212 669 669 1213 25 25 1213 670 670 1213 669 669 1214 670 670 1214 671 671 1214 671 671 1215 670 670 1215 665 665 1215 671 671 1216 665 665 1216 672 672 1216 672 672 1217 665 665 1217 673 673 1217 672 672 1218 673 673 1218 679 679 1218 679 679 1219 673 673 1219 667 667 1219 679 679 1220 667 667 1220 674 674 1220 674 674 1221 667 667 1221 675 675 1221 674 674 1222 675 675 1222 108 108 1222 108 108 1223 675 675 1223 107 107 1223 20 20 1224 21 21 1224 676 676 1224 676 676 1225 21 21 1225 669 669 1225 676 676 1226 669 669 1226 684 684 1226 684 684 1227 669 669 1227 671 671 1227 684 684 1228 671 671 1228 677 677 1228 677 677 1229 671 671 1229 672 672 1229 677 677 1230 672 672 1230 678 678 1230 678 678 1231 672 672 1231 679 679 1231 678 678 1232 679 679 1232 681 681 1232 681 681 1233 679 679 1233 674 674 1233 681 681 1234 674 674 1234 680 680 1234 680 680 1235 674 674 1235 108 108 1235 680 680 1236 563 563 1236 681 681 1236 681 681 1237 563 563 1237 566 566 1237 681 681 1238 566 566 1238 678 678 1238 678 678 1239 566 566 1239 567 567 1239 678 678 1240 567 567 1240 677 677 1240 677 677 1241 567 567 1241 682 682 1241 677 677 1242 682 682 1242 684 684 1242 684 684 1243 682 682 1243 683 683 1243 684 684 1244 683 683 1244 676 676 1244 676 676 1245 683 683 1245 568 568 1245 676 676 1246 568 568 1246 20 20 1246 20 20 1247 568 568 1247 686 686 1247 569 569 1248 685 685 1248 568 568 1248 568 568 1249 685 685 1249 18 18 1249 568 568 1250 18 18 1250 686 686 1250 700 700 1251 687 687 1251 699 699 1251 699 699 1252 687 687 1252 569 569 1252 699 699 1253 569 569 1253 698 698 1253 698 698 1254 569 569 1254 688 688 1254 698 698 1255 688 688 1255 695 695 1255 695 695 1256 688 688 1256 689 689 1256 695 695 1257 689 689 1257 694 694 1257 694 694 1258 689 689 1258 691 691 1258 694 694 1259 691 691 1259 690 690 1259 690 690 1260 691 691 1260 565 565 1260 690 690 1261 565 565 1261 692 692 1261 692 692 1262 565 565 1262 564 564 1262 692 692 1263 693 693 1263 690 690 1263 690 690 1264 693 693 1264 708 708 1264 690 690 1265 708 708 1265 694 694 1265 694 694 1266 708 708 1266 707 707 1266 694 694 1267 707 707 1267 695 695 1267 695 695 1268 707 707 1268 696 696 1268 695 695 1269 696 696 1269 698 698 1269 698 698 1270 696 696 1270 697 697 1270 698 698 1271 697 697 1271 699 699 1271 699 699 1272 697 697 1272 701 701 1272 699 699 1273 701 701 1273 700 700 1273 700 700 1274 701 701 1274 702 702 1274 15 15 1275 16 16 1275 703 703 1275 703 703 1276 16 16 1276 701 701 1276 703 703 1277 701 701 1277 704 704 1277 704 704 1278 701 701 1278 697 697 1278 704 704 1279 697 697 1279 705 705 1279 705 705 1280 697 697 1280 696 696 1280 705 705 1281 696 696 1281 706 706 1281 706 706 1282 696 696 1282 707 707 1282 706 706 1283 707 707 1283 713 713 1283 713 713 1284 707 707 1284 708 708 1284 713 713 1285 708 708 1285 109 109 1285 109 109 1286 708 708 1286 693 693 1286 13 13 1287 709 709 1287 715 715 1287 715 715 1288 709 709 1288 703 703 1288 715 715 1289 703 703 1289 710 710 1289 710 710 1290 703 703 1290 704 704 1290 710 710 1291 704 704 1291 711 711 1291 711 711 1292 704 704 1292 705 705 1292 711 711 1293 705 705 1293 712 712 1293 712 712 1294 705 705 1294 706 706 1294 712 712 1295 706 706 1295 719 719 1295 719 719 1296 706 706 1296 713 713 1296 719 719 1297 713 713 1297 720 720 1297 720 720 1298 713 713 1298 109 109 1298 725 725 1299 12 12 1299 723 723 1299 723 723 1300 12 12 1300 715 715 1300 723 723 1301 715 715 1301 714 714 1301 714 714 1302 715 715 1302 710 710 1302 714 714 1303 710 710 1303 716 716 1303 716 716 1304 710 710 1304 711 711 1304 716 716 1305 711 711 1305 717 717 1305 717 717 1306 711 711 1306 712 712 1306 717 717 1307 712 712 1307 722 722 1307 722 722 1308 712 712 1308 719 719 1308 722 722 1309 719 719 1309 718 718 1309 718 718 1310 719 719 1310 720 720 1310 718 718 1311 721 721 1311 722 722 1311 722 722 1312 721 721 1312 571 571 1312 722 722 1313 571 571 1313 717 717 1313 717 717 1314 571 571 1314 572 572 1314 717 717 1315 572 572 1315 716 716 1315 716 716 1316 572 572 1316 575 575 1316 716 716 1317 575 575 1317 714 714 1317 714 714 1318 575 575 1318 576 576 1318 714 714 1319 576 576 1319 723 723 1319 723 723 1320 576 576 1320 724 724 1320 723 723 1321 724 724 1321 725 725 1321 725 725 1322 724 724 1322 726 726 1322 577 577 1323 8 8 1323 724 724 1323 724 724 1324 8 8 1324 9 9 1324 724 724 1325 9 9 1325 726 726 1325 4 4 1326 6 6 1326 727 727 1326 727 727 1327 6 6 1327 577 577 1327 727 727 1328 577 577 1328 734 734 1328 734 734 1329 577 577 1329 728 728 1329 734 734 1330 728 728 1330 729 729 1330 729 729 1331 728 728 1331 574 574 1331 729 729 1332 574 574 1332 730 730 1332 730 730 1333 574 574 1333 731 731 1333 730 730 1334 731 731 1334 732 732 1334 732 732 1335 731 731 1335 573 573 1335 732 732 1336 573 573 1336 110 110 1336 110 110 1337 573 573 1337 570 570 1337 110 110 1338 744 744 1338 732 732 1338 732 732 1339 744 744 1339 741 741 1339 732 732 1340 741 741 1340 730 730 1340 730 730 1341 741 741 1341 733 733 1341 730 730 1342 733 733 1342 729 729 1342 729 729 1343 733 733 1343 740 740 1343 729 729 1344 740 740 1344 734 734 1344 734 734 1345 740 740 1345 738 738 1345 734 734 1346 738 738 1346 727 727 1346 727 727 1347 738 738 1347 735 735 1347 727 727 1348 735 735 1348 4 4 1348 4 4 1349 735 735 1349 3 3 1349 1 1 1350 2 2 1350 736 736 1350 736 736 1351 2 2 1351 735 735 1351 736 736 1352 735 735 1352 737 737 1352 737 737 1353 735 735 1353 738 738 1353 737 737 1354 738 738 1354 739 739 1354 739 739 1355 738 738 1355 740 740 1355 739 739 1356 740 740 1356 580 580 1356 580 580 1357 740 740 1357 733 733 1357 580 580 1358 733 733 1358 742 742 1358 742 742 1359 733 733 1359 741 741 1359 742 742 1360 741 741 1360 743 743 1360 743 743 1361 741 741 1361 744 744 1361 546 546 1362 103 103 1362 736 736 1362 736 736 1363 103 103 1363 0 0 1363 736 736 1364 0 0 1364 1 1 1364 99 99 1365 745 745 1365 753 753 1365 753 753 1366 745 745 1366 546 546 1366 753 753 1367 546 546 1367 746 746 1367 746 746 1368 546 546 1368 582 582 1368 746 746 1369 582 582 1369 747 747 1369 747 747 1370 582 582 1370 748 748 1370 747 747 1371 748 748 1371 752 752 1371 752 752 1372 748 748 1372 581 581 1372 752 752 1373 581 581 1373 749 749 1373 749 749 1374 581 581 1374 579 579 1374 749 749 1375 579 579 1375 750 750 1375 750 750 1376 579 579 1376 578 578 1376 750 750 1377 111 111 1377 749 749 1377 749 749 1378 111 111 1378 751 751 1378 749 749 1379 751 751 1379 752 752 1379 752 752 1380 751 751 1380 584 584 1380 752 752 1381 584 584 1381 747 747 1381 747 747 1382 584 584 1382 586 586 1382 747 747 1383 586 586 1383 746 746 1383 746 746 1384 586 586 1384 587 587 1384 746 746 1385 587 587 1385 753 753 1385 753 753 1386 587 587 1386 754 754 1386 753 753 1387 754 754 1387 99 99 1387 99 99 1388 754 754 1388 98 98 1388 755 755 1389 545 545 1389 754 754 1389 754 754 1390 545 545 1390 756 756 1390 754 754 1391 756 756 1391 98 98 1391 757 757 1392 96 96 1392 768 768 1392 768 768 1393 96 96 1393 755 755 1393 768 768 1394 755 755 1394 767 767 1394 767 767 1395 755 755 1395 588 588 1395 767 767 1396 588 588 1396 765 765 1396 765 765 1397 588 588 1397 758 758 1397 765 765 1398 758 758 1398 762 762 1398 762 762 1399 758 758 1399 759 759 1399 762 762 1400 759 759 1400 760 760 1400 760 760 1401 759 759 1401 585 585 1401 760 760 1402 585 585 1402 761 761 1402 761 761 1403 585 585 1403 583 583 1403 761 761 1404 114 114 1404 760 760 1404 760 760 1405 114 114 1405 763 763 1405 760 760 1406 763 763 1406 762 762 1406 762 762 1407 763 763 1407 764 764 1407 762 762 1408 764 764 1408 765 765 1408 765 765 1409 764 764 1409 766 766 1409 765 765 1410 766 766 1410 767 767 1410 767 767 1411 766 766 1411 772 772 1411 767 767 1412 772 772 1412 768 768 1412 768 768 1413 772 772 1413 770 770 1413 768 768 1414 770 770 1414 757 757 1414 757 757 1415 770 770 1415 94 94 1415 91 91 1416 93 93 1416 769 769 1416 769 769 1417 93 93 1417 770 770 1417 769 769 1418 770 770 1418 771 771 1418 771 771 1419 770 770 1419 772 772 1419 771 771 1420 772 772 1420 592 592 1420 592 592 1421 772 772 1421 766 766 1421 592 592 1422 766 766 1422 591 591 1422 591 591 1423 766 766 1423 764 764 1423 591 591 1424 764 764 1424 589 589 1424 589 589 1425 764 764 1425 763 763 1425 589 589 1426 763 763 1426 113 113 1426 113 113 1427 763 763 1427 114 114 1427 594 594 1428 89 89 1428 769 769 1428 769 769 1429 89 89 1429 773 773 1429 769 769 1430 773 773 1430 91 91 1430 87 87 1431 88 88 1431 782 782 1431 782 782 1432 88 88 1432 594 594 1432 782 782 1433 594 594 1433 774 774 1433 774 774 1434 594 594 1434 593 593 1434 774 774 1435 593 593 1435 775 775 1435 775 775 1436 593 593 1436 776 776 1436 775 775 1437 776 776 1437 777 777 1437 777 777 1438 776 776 1438 590 590 1438 777 777 1439 590 590 1439 779 779 1439 779 779 1440 590 590 1440 778 778 1440 779 779 1441 778 778 1441 118 118 1441 118 118 1442 778 778 1442 112 112 1442 118 118 1443 116 116 1443 779 779 1443 779 779 1444 116 116 1444 780 780 1444 779 779 1445 780 780 1445 777 777 1445 777 777 1446 780 780 1446 596 596 1446 777 777 1447 596 596 1447 775 775 1447 775 775 1448 596 596 1448 597 597 1448 775 775 1449 597 597 1449 774 774 1449 774 774 1450 597 597 1450 781 781 1450 774 774 1451 781 781 1451 782 782 1451 782 782 1452 781 781 1452 785 785 1452 782 782 1453 785 785 1453 87 87 1453 87 87 1454 785 785 1454 783 783 1454 787 787 1455 784 784 1455 785 785 1455 785 785 1456 784 784 1456 84 84 1456 785 785 1457 84 84 1457 783 783 1457 81 81 1458 544 544 1458 797 797 1458 797 797 1459 544 544 1459 787 787 1459 797 797 1460 787 787 1460 786 786 1460 786 786 1461 787 787 1461 788 788 1461 786 786 1462 788 788 1462 789 789 1462 789 789 1463 788 788 1463 598 598 1463 789 789 1464 598 598 1464 790 790 1464 790 790 1465 598 598 1465 791 791 1465 790 790 1466 791 791 1466 792 792 1466 792 792 1467 791 791 1467 595 595 1467 792 792 1468 595 595 1468 793 793 1468 793 793 1469 595 595 1469 115 115 1469 793 793 1470 794 794 1470 792 792 1470 792 792 1471 794 794 1471 804 804 1471 792 792 1472 804 804 1472 790 790 1472 790 790 1473 804 804 1473 795 795 1473 790 790 1474 795 795 1474 789 789 1474 789 789 1475 795 795 1475 796 796 1475 789 789 1476 796 796 1476 786 786 1476 786 786 1477 796 796 1477 801 801 1477 786 786 1478 801 801 1478 797 797 1478 797 797 1479 801 801 1479 798 798 1479 797 797 1480 798 798 1480 81 81 1480 81 81 1481 798 798 1481 80 80 1481 805 805 1482 78 78 1482 799 799 1482 799 799 1483 78 78 1483 798 798 1483 799 799 1484 798 798 1484 800 800 1484 800 800 1485 798 798 1485 801 801 1485 800 800 1486 801 801 1486 802 802 1486 802 802 1487 801 801 1487 796 796 1487 802 802 1488 796 796 1488 803 803 1488 803 803 1489 796 796 1489 795 795 1489 803 803 1490 795 795 1490 600 600 1490 600 600 1491 795 795 1491 804 804 1491 600 600 1492 804 804 1492 599 599 1492 599 599 1493 804 804 1493 794 794 1493 807 807 1494 73 73 1494 799 799 1494 799 799 1495 73 73 1495 75 75 1495 799 799 1496 75 75 1496 805 805 1496 71 71 1497 543 543 1497 806 806 1497 806 806 1498 543 543 1498 807 807 1498 806 806 1499 807 807 1499 816 816 1499 816 816 1500 807 807 1500 604 604 1500 816 816 1501 604 604 1501 808 808 1501 808 808 1502 604 604 1502 603 603 1502 808 808 1503 603 603 1503 809 809 1503 809 809 1504 603 603 1504 810 810 1504 809 809 1505 810 810 1505 813 813 1505 813 813 1506 810 810 1506 602 602 1506 813 813 1507 602 602 1507 811 811 1507 811 811 1508 602 602 1508 601 601 1508 811 811 1509 812 812 1509 813 813 1509 813 813 1510 812 812 1510 821 821 1510 813 813 1511 821 821 1511 809 809 1511 809 809 1512 821 821 1512 814 814 1512 809 809 1513 814 814 1513 808 808 1513 808 808 1514 814 814 1514 815 815 1514 808 808 1515 815 815 1515 816 816 1515 816 816 1516 815 815 1516 817 817 1516 816 816 1517 817 817 1517 806 806 1517 806 806 1518 817 817 1518 818 818 1518 806 806 1519 818 818 1519 71 71 1519 71 71 1520 818 818 1520 70 70 1520 68 68 1521 69 69 1521 825 825 1521 825 825 1522 69 69 1522 818 818 1522 825 825 1523 818 818 1523 826 826 1523 826 826 1524 818 818 1524 817 817 1524 826 826 1525 817 817 1525 819 819 1525 819 819 1526 817 817 1526 815 815 1526 819 819 1527 815 815 1527 820 820 1527 820 820 1528 815 815 1528 814 814 1528 820 820 1529 814 814 1529 827 827 1529 827 827 1530 814 814 1530 821 821 1530 827 827 1531 821 821 1531 822 822 1531 822 822 1532 821 821 1532 812 812 1532 835 835 1533 823 823 1533 824 824 1533 824 824 1534 823 823 1534 825 825 1534 824 824 1535 825 825 1535 834 834 1535 834 834 1536 825 825 1536 826 826 1536 834 834 1537 826 826 1537 832 832 1537 832 832 1538 826 826 1538 819 819 1538 832 832 1539 819 819 1539 829 829 1539 829 829 1540 819 819 1540 820 820 1540 829 829 1541 820 820 1541 828 828 1541 828 828 1542 820 820 1542 827 827 1542 828 828 1543 827 827 1543 120 120 1543 120 120 1544 827 827 1544 822 822 1544 120 120 1545 119 119 1545 828 828 1545 828 828 1546 119 119 1546 830 830 1546 828 828 1547 830 830 1547 829 829 1547 829 829 1548 830 830 1548 831 831 1548 829 829 1549 831 831 1549 832 832 1549 832 832 1550 831 831 1550 833 833 1550 832 832 1551 833 833 1551 834 834 1551 834 834 1552 833 833 1552 839 839 1552 834 834 1553 839 839 1553 824 824 1553 824 824 1554 839 839 1554 542 542 1554 824 824 1555 542 542 1555 835 835 1555 835 835 1556 542 542 1556 66 66 1556 63 63 1557 836 836 1557 837 837 1557 837 837 1558 836 836 1558 542 542 1558 837 837 1559 542 542 1559 838 838 1559 838 838 1560 542 542 1560 839 839 1560 838 838 1561 839 839 1561 840 840 1561 840 840 1562 839 839 1562 833 833 1562 840 840 1563 833 833 1563 608 608 1563 608 608 1564 833 833 1564 831 831 1564 608 608 1565 831 831 1565 607 607 1565 607 607 1566 831 831 1566 830 830 1566 607 607 1567 830 830 1567 122 122 1567 122 122 1568 830 830 1568 119 119 1568 843 843 1569 61 61 1569 837 837 1569 837 837 1570 61 61 1570 841 841 1570 837 837 1571 841 841 1571 63 63 1571 57 57 1572 58 58 1572 842 842 1572 842 842 1573 58 58 1573 843 843 1573 842 842 1574 843 843 1574 844 844 1574 844 844 1575 843 843 1575 845 845 1575 844 844 1576 845 845 1576 852 852 1576 852 852 1577 845 845 1577 846 846 1577 852 852 1578 846 846 1578 851 851 1578 851 851 1579 846 846 1579 847 847 1579 851 851 1580 847 847 1580 848 848 1580 848 848 1581 847 847 1581 606 606 1581 848 848 1582 606 606 1582 121 121 1582 121 121 1583 606 606 1583 605 605 1583 121 121 1584 849 849 1584 848 848 1584 848 848 1585 849 849 1585 850 850 1585 848 848 1586 850 850 1586 851 851 1586 851 851 1587 850 850 1587 858 858 1587 851 851 1588 858 858 1588 852 852 1588 852 852 1589 858 858 1589 857 857 1589 852 852 1590 857 857 1590 844 844 1590 844 844 1591 857 857 1591 856 856 1591 844 844 1592 856 856 1592 842 842 1592 842 842 1593 856 856 1593 853 853 1593 842 842 1594 853 853 1594 57 57 1594 57 57 1595 853 853 1595 56 56 1595 53 53 1596 854 854 1596 862 862 1596 862 862 1597 854 854 1597 853 853 1597 862 862 1598 853 853 1598 855 855 1598 855 855 1599 853 853 1599 856 856 1599 855 855 1600 856 856 1600 864 864 1600 864 864 1601 856 856 1601 857 857 1601 864 864 1602 857 857 1602 865 865 1602 865 865 1603 857 857 1603 858 858 1603 865 865 1604 858 858 1604 859 859 1604 859 859 1605 858 858 1605 850 850 1605 859 859 1606 850 850 1606 124 124 1606 124 124 1607 850 850 1607 849 849 1607 860 860 1608 541 541 1608 861 861 1608 861 861 1609 541 541 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 855 855 1611 870 870 1612 855 855 1612 863 863 1612 863 863 1613 855 855 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 859 859 1617 867 867 1618 859 859 1618 123 123 1618 123 123 1619 859 859 1619 124 124 1619 123 123 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 610 610 1621 867 867 1622 610 610 1622 868 868 1622 868 868 1623 610 610 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 612 612 1629 861 861 1630 612 612 1630 860 860 1630 860 860 1631 612 612 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.STL b/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.STL new file mode 100755 index 0000000..9da4621 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.STL differ diff --git a/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.dae b/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.dae new file mode 100755 index 0000000..dc21009 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/right_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:37:18 2016 GMT + Tue Jan 19 20:37:18 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00178646 0.00968583 -0.00173009 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 0.00090033 0.00992115 -0.000871921 -0.0010504 0.00992115 0.000683737 0.000649718 0.00992115 -0.00107178 0.00155056 0.00968583 -0.00194434 0.00190833 0.00929776 -0.00314799 0.00229522 0.00929776 -0.00287811 0.000507328 0.00992115 -0.00114606 0.00128919 0.00968583 -0.00212665 0.00149011 0.00929776 -0.00336618 0.00249738 0.00876307 -0.00411968 0.00100666 0.00968583 -0.00227405 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000356608 0.00992115 -0.00120153 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 0.000200032 0.00992115 -0.00123727 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 4.01713e-05 0.00992115 -0.00125269 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.000120349 0.00992115 -0.00124754 -0.00567642 0.00535827 0.00625037 -0.000553387 0.00968583 -0.00242455 -0.0002388 0.00968583 -0.00247541 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000432857 0.00992115 -0.00117621 -0.000278893 0.00992115 -0.00122191 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -5.1238e-19 0.01 -2.22804e-18 -0.000579714 0.00992115 -0.0011112 -0.00115029 0.00968583 -0.00220488 -0.00170272 0.00929776 -0.00326379 -0.000858888 0.00968583 -0.00233388 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000717052 0.00992115 -0.00102795 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.00167194 0.00968583 -0.001841 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.0010504 0.00992115 -0.000683737 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00403752 0.00876307 -0.00262813 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00434045 0.00876307 -0.00209025 -0.00308521 0.00929776 -0.00200825 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00112921 0.00992115 -0.000543801 -0.00349371 0.00929776 -0.00115999 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 -0.0073126 -0.00637424 -0.00242795 -0.00118948 0.00992115 -0.000394935 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00244104 0.00968583 -0.000475392 -0.00236021 0.00968583 -0.000783642 -0.0047287 0.00876307 -0.000920914 -0.00457211 0.00876307 -0.00151805 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.00828758 0.00535827 -0.00161401 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00964173 -0.00187381 -0.00187773 -0.00932245 -0.00187381 -0.00309527 -0.00933518 -0.00309017 -0.00181803 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 -8.03013e-05 -0.00123022 0.00992115 -0.000239585 -0.00248179 0.00968583 -0.000159336 -0.00367368 0.00929776 -0.000235858 -0.00361336 0.00929776 -0.000703702 -0.00576946 0.00809017 -0.0011236 -0.0076893 0.00637424 -0.00049367 -0.00842593 0.00535827 -0.000540963 -0.00949102 0.00309017 -0.000609344 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00964173 0.00187381 -0.00187773 -0.00979622 0.000627905 -0.00190781 -0.00980269 -0.00187381 -0.000629354 -0.00888141 -0.00425779 -0.00172965 -0.00828758 -0.00535827 -0.00161401 -0.0076893 -0.00637424 -0.00049367 -0.00683141 -0.00728969 -0.000438591 -0.00125076 0.00992115 8.03013e-05 -0.00367368 0.00929776 0.000235858 -0.00480764 0.00876307 0.000308661 -0.00480764 0.00876307 -0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00683141 0.00728969 -0.000438591 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00980269 0.00187381 -0.000629354 -0.00995976 0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00995976 -0.000627905 -0.000639438 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.00586578 -0.00809017 0.000376595 -0.00480764 -0.00876307 0.000308661 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00248179 0.00968583 0.000159336 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00123022 0.00992115 0.000239585 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00124304 -0.00992115 0.000160273 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 1.73703e-18 -0.01 2.22804e-18 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.0047287 -0.00876307 -0.000920914 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00346067 0.00876307 -0.00335148 0.00216688 0.00968583 -0.00122036 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 -0.000159336 -0.00361336 -0.00929776 -0.000703702 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00419761 0.00876307 -0.00236405 0.00320754 0.00929776 -0.00180645 0.00341221 0.00929776 -0.00138145 0.00230515 0.00968583 -0.000933251 0.00240556 0.00968583 -0.000630813 0.00121234 0.00992115 -0.000317913 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 -2.00175e-18 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00349371 -0.00929776 -0.00115999 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00125076 -0.00992115 -8.03013e-05 0.00356085 0.00929776 -0.000933765 0.00365102 0.00929776 -0.000470747 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00123022 -0.00992115 -0.000239585 0.00121234 0.00992115 0.000317913 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 -1.74389e-18 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00465998 0.00876307 -0.00122199 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 -0.00224062 -0.00968583 -0.00107902 -0.00112921 -0.00992115 -0.000543801 -0.00118948 -0.00992115 -0.000394935 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00368125 0.00929776 -1.45853e-18 0.0058296 0.00809017 -0.000751643 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00189364 -0.00968583 -0.00161208 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.00481754 0.00876307 -1.15016e-18 0.00587785 0.00809017 -8.23663e-19 0.00678927 0.00728969 -0.000875379 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00684547 0.00728969 -4.84171e-19 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.00770513 0.00637424 -1.37043e-19 0.00764187 0.00637424 -0.00098531 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 -0.0014228 -0.00968583 -0.00203969 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 2.12245e-19 0.00904827 0.00425779 5.58187e-19 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000858888 -0.00968583 -0.00233388 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00951057 0.00309017 8.95325e-19 0.00943248 0.00309017 -0.00121618 0.00950161 0.00187381 -0.00249162 0.00965386 0.000627905 -0.00253154 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000432857 -0.00992115 -0.00117621 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00974223 0.00187381 -0.00125612 0.00989833 0.000627905 -0.00127625 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 7.9709e-05 -0.00968583 -0.00248562 -0.000120349 -0.00992115 -0.00124754 -0.000278893 -0.00992115 -0.00122191 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00982287 0.00187381 1.21834e-18 0.00998027 0.000627905 1.52215e-18 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 0.000396909 -0.00968583 -0.00245502 4.01713e-05 -0.00992115 -0.00125269 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00989833 -0.000627905 -0.00127625 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000707591 -0.00968583 -0.00238411 0.000200032 -0.00992115 -0.00123727 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00998027 -0.000627905 1.80195e-18 0.00982287 -0.00187381 2.05333e-18 0.00919952 -0.00309017 -0.0024124 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00943248 -0.00309017 -0.00121618 0.00951057 -0.00309017 2.27233e-18 0.00875235 -0.00425779 -0.00229514 0.00897398 -0.00425779 -0.00115707 0.00816714 -0.00535827 -0.00214168 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00745314 -0.00637424 -0.00195444 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00264442 -0.00929776 -0.00256098 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00904827 -0.00425779 2.45549e-18 0.00837396 -0.00535827 -0.0010797 0.00662159 -0.00728969 -0.00173639 0.00544828 -0.00809017 -0.00220576 0.00386084 -0.00876307 -0.00288142 0.00419761 -0.00876307 -0.00236405 0.0029502 -0.00929776 -0.00220179 0.000649718 -0.00992115 -0.00107178 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 2.59993e-18 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00446546 -0.00876307 -0.00180786 0.00090033 -0.00992115 -0.000871921 0.00178646 -0.00968583 -0.00173009 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00684547 -0.00728969 2.76417e-18 0.00770513 -0.00637424 2.70337e-18 0.00678927 -0.00728969 -0.000875379 0.0058296 -0.00809017 -0.000751643 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00230515 -0.00968583 -0.000933251 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 0.00477798 -0.00876307 -0.000616053 0.00481754 -0.00876307 2.75473e-18 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 0.00109205 -0.00992115 -0.000615032 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00246648 -0.00968583 -0.000318018 0.00240556 -0.00968583 -0.000630813 0.00121234 -0.00992115 -0.000317913 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00368125 -0.00929776 2.68463e-18 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 2.57219e-18 0.00125333 -0.00992115 2.41919e-18 -0.00123022 -0.00992115 0.000239585 -0.00248179 -0.00968583 0.000159336 -0.00367368 -0.00929776 -0.000235858 -0.00457211 -0.00876307 -0.00151805 -0.00557841 -0.00809017 -0.00185216 -0.00529576 -0.00809017 -0.0025503 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 0.0029502 0.00929776 -0.00220179 0.00116173 0.00992115 -0.000470334 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00367368 -0.00929776 0.000235858 -0.00586578 -0.00809017 -0.000376595 -0.00480764 -0.00876307 -0.000308661 -0.00671923 -0.00728969 -0.00130857 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00264442 0.00929776 -0.00256098 0.00199303 0.00968583 -0.00148744 0.00109205 0.00992115 -0.000615032 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00587785 -0.00809017 2.78138e-18 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 1.42751e-17 0.0640702 0.997945 -1.42751e-17 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1133 1133 0 0 0 0 292 292 0 1 1 1 4 4 1 2 2 1 2 2 2 4 4 2 57 57 2 3 3 3 57 57 3 4 4 3 5 5 4 428 428 4 1176 1176 4 3 3 5 4 4 5 7 7 5 7 7 6 4 4 6 1 1 6 7 7 7 1 1 7 9 9 7 6 6 8 57 57 8 3 3 8 6 6 9 3 3 9 11 11 9 11 11 10 3 3 10 7 7 10 11 11 11 7 7 11 8 8 11 8 8 12 7 7 12 9 9 12 8 8 13 9 9 13 13 13 13 10 10 14 57 57 14 6 6 14 10 10 15 6 6 15 14 14 15 14 14 16 6 6 16 11 11 16 14 14 17 11 11 17 12 12 17 12 12 18 11 11 18 8 8 18 12 12 19 8 8 19 15 15 19 15 15 20 8 8 20 13 13 20 15 15 21 13 13 21 1087 1087 21 17 17 22 57 57 22 10 10 22 17 17 23 10 10 23 18 18 23 18 18 24 10 10 24 14 14 24 18 18 25 14 14 25 19 19 25 19 19 26 14 14 26 12 12 26 19 19 27 12 12 27 22 22 27 22 22 28 12 12 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1087 1087 30 16 16 31 1087 1087 31 1086 1086 31 24 24 32 57 57 32 17 17 32 24 24 33 17 17 33 26 26 33 26 26 34 17 17 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1086 1086 42 30 30 43 1086 1086 43 23 23 43 31 31 44 57 57 44 24 24 44 31 31 45 24 24 45 25 25 45 25 25 46 24 24 46 26 26 46 25 25 47 26 26 47 32 32 47 32 32 48 26 26 48 27 27 48 32 32 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 35 35 53 35 35 54 21 21 54 30 30 54 35 35 55 30 30 55 37 37 55 37 37 56 30 30 56 23 23 56 37 37 57 23 23 57 1085 1085 57 38 38 58 57 57 58 31 31 58 1117 1117 59 410 410 59 39 39 59 38 38 60 31 31 60 41 41 60 41 41 61 31 31 61 25 25 61 41 41 62 25 25 62 42 42 62 42 42 63 25 25 63 32 32 63 42 42 64 32 32 64 44 44 64 44 44 65 32 32 65 28 28 65 44 44 66 28 28 66 33 33 66 33 33 67 28 28 67 29 29 67 33 33 68 29 29 68 34 34 68 34 34 69 29 29 69 35 35 69 34 34 70 35 35 70 49 49 70 49 49 71 35 35 71 37 37 71 49 49 72 37 37 72 36 36 72 36 36 73 37 37 73 1085 1085 73 36 36 74 1085 1085 74 1083 1083 74 52 52 75 57 57 75 38 38 75 39 39 76 411 411 76 395 395 76 52 52 77 38 38 77 40 40 77 40 40 78 38 38 78 41 41 78 40 40 79 41 41 79 43 43 79 43 43 80 41 41 80 42 42 80 43 43 81 42 42 81 53 53 81 53 53 82 42 42 82 44 44 82 53 53 83 44 44 83 45 45 83 45 45 84 44 44 84 33 33 84 45 45 85 33 33 85 46 46 85 46 46 86 33 33 86 34 34 86 46 46 87 34 34 87 47 47 87 47 47 88 34 34 88 49 49 88 47 47 89 49 49 89 48 48 89 48 48 90 49 49 90 36 36 90 48 48 91 36 36 91 50 50 91 50 50 92 36 36 92 1083 1083 92 50 50 93 1083 1083 93 1082 1082 93 51 51 94 57 57 94 52 52 94 395 395 95 379 379 95 1120 1120 95 51 51 96 52 52 96 61 61 96 61 61 97 52 52 97 40 40 97 61 61 98 40 40 98 62 62 98 62 62 99 40 40 99 43 43 99 62 62 100 43 43 100 63 63 100 63 63 101 43 43 101 53 53 101 63 63 102 53 53 102 65 65 102 65 65 103 53 53 103 45 45 103 65 65 104 45 45 104 54 54 104 54 54 105 45 45 105 46 46 105 54 54 106 46 46 106 67 67 106 67 67 107 46 46 107 47 47 107 67 67 108 47 47 108 55 55 108 55 55 109 47 47 109 48 48 109 55 55 110 48 48 110 68 68 110 68 68 111 48 48 111 50 50 111 68 68 112 50 50 112 70 70 112 70 70 113 50 50 113 1082 1082 113 70 70 114 1082 1082 114 56 56 114 58 58 115 57 57 115 51 51 115 1120 1120 116 380 380 116 1121 1121 116 58 58 117 51 51 117 59 59 117 59 59 118 51 51 118 61 61 118 59 59 119 61 61 119 60 60 119 60 60 120 61 61 120 62 62 120 60 60 121 62 62 121 64 64 121 64 64 122 62 62 122 63 63 122 64 64 123 63 63 123 78 78 123 78 78 124 63 63 124 65 65 124 78 78 125 65 65 125 79 79 125 79 79 126 65 65 126 54 54 126 79 79 127 54 54 127 66 66 127 66 66 128 54 54 128 67 67 128 66 66 129 67 67 129 81 81 129 81 81 130 67 67 130 55 55 130 81 81 131 55 55 131 83 83 131 83 83 132 55 55 132 68 68 132 83 83 133 68 68 133 69 69 133 69 69 134 68 68 134 70 70 134 69 69 135 70 70 135 71 71 135 71 71 136 70 70 136 56 56 136 71 71 137 56 56 137 72 72 137 73 73 138 57 57 138 58 58 138 1121 1121 139 74 74 139 75 75 139 73 73 140 58 58 140 89 89 140 89 89 141 58 58 141 59 59 141 89 89 142 59 59 142 91 91 142 91 91 143 59 59 143 60 60 143 91 91 144 60 60 144 76 76 144 76 76 145 60 60 145 64 64 145 76 76 146 64 64 146 77 77 146 77 77 147 64 64 147 78 78 147 77 77 148 78 78 148 93 93 148 93 93 149 78 78 149 79 79 149 93 93 150 79 79 150 80 80 150 80 80 151 79 79 151 66 66 151 80 80 152 66 66 152 95 95 152 95 95 153 66 66 153 81 81 153 95 95 154 81 81 154 82 82 154 82 82 155 81 81 155 83 83 155 82 82 156 83 83 156 84 84 156 84 84 157 83 83 157 69 69 157 84 84 158 69 69 158 85 85 158 85 85 159 69 69 159 71 71 159 85 85 160 71 71 160 86 86 160 86 86 161 71 71 161 72 72 161 86 86 162 72 72 162 100 100 162 101 101 163 57 57 163 73 73 163 75 75 164 342 342 164 87 87 164 101 101 165 73 73 165 88 88 165 88 88 166 73 73 166 89 89 166 88 88 167 89 89 167 90 90 167 90 90 168 89 89 168 91 91 168 90 90 169 91 91 169 104 104 169 104 104 170 91 91 170 76 76 170 104 104 171 76 76 171 105 105 171 105 105 172 76 76 172 77 77 172 105 105 173 77 77 173 92 92 173 92 92 174 77 77 174 93 93 174 92 92 175 93 93 175 94 94 175 94 94 176 93 93 176 80 80 176 94 94 177 80 80 177 107 107 177 107 107 178 80 80 178 95 95 178 107 107 179 95 95 179 109 109 179 109 109 180 95 95 180 82 82 180 109 109 181 82 82 181 96 96 181 96 96 182 82 82 182 84 84 182 96 96 183 84 84 183 97 97 183 97 97 184 84 84 184 85 85 184 97 97 185 85 85 185 98 98 185 98 98 186 85 85 186 86 86 186 98 98 187 86 86 187 99 99 187 99 99 188 86 86 188 100 100 188 99 99 189 100 100 189 1079 1079 189 114 114 190 57 57 190 101 101 190 87 87 191 341 341 191 1123 1123 191 114 114 192 101 101 192 102 102 192 102 102 193 101 101 193 88 88 193 102 102 194 88 88 194 103 103 194 103 103 195 88 88 195 90 90 195 103 103 196 90 90 196 117 117 196 117 117 197 90 90 197 104 104 197 117 117 198 104 104 198 120 120 198 120 120 199 104 104 199 105 105 199 120 120 200 105 105 200 106 106 200 106 106 201 105 105 201 92 92 201 106 106 202 92 92 202 121 121 202 121 121 203 92 92 203 94 94 203 121 121 204 94 94 204 123 123 204 123 123 205 94 94 205 107 107 205 123 123 206 107 107 206 108 108 206 108 108 207 107 107 207 109 109 207 108 108 208 109 109 208 127 127 208 127 127 209 109 109 209 96 96 209 127 127 210 96 96 210 110 110 210 110 110 211 96 96 211 97 97 211 110 110 212 97 97 212 111 111 212 111 111 213 97 97 213 98 98 213 111 111 214 98 98 214 129 129 214 129 129 215 98 98 215 99 99 215 129 129 216 99 99 216 112 112 216 112 112 217 99 99 217 1079 1079 217 112 112 218 1079 1079 218 1077 1077 218 113 113 219 57 57 219 114 114 219 1123 1123 220 333 333 220 1125 1125 220 113 113 221 114 114 221 115 115 221 115 115 222 114 114 222 102 102 222 115 115 223 102 102 223 133 133 223 133 133 224 102 102 224 103 103 224 133 133 225 103 103 225 116 116 225 116 116 226 103 103 226 117 117 226 116 116 227 117 117 227 118 118 227 118 118 228 117 117 228 120 120 228 118 118 229 120 120 229 119 119 229 119 119 230 120 120 230 106 106 230 119 119 231 106 106 231 122 122 231 122 122 232 106 106 232 121 121 232 122 122 233 121 121 233 124 124 233 124 124 234 121 121 234 123 123 234 124 124 235 123 123 235 136 136 235 136 136 236 123 123 236 108 108 236 136 136 237 108 108 237 125 125 237 125 125 238 108 108 238 127 127 238 125 125 239 127 127 239 126 126 239 126 126 240 127 127 240 110 110 240 126 126 241 110 110 241 137 137 241 137 137 242 110 110 242 111 111 242 137 137 243 111 111 243 128 128 243 128 128 244 111 111 244 129 129 244 128 128 245 129 129 245 138 138 245 138 138 246 129 129 246 112 112 246 138 138 247 112 112 247 140 140 247 140 140 248 112 112 248 1077 1077 248 140 140 249 1077 1077 249 141 141 249 142 142 250 57 57 250 113 113 250 1125 1125 251 313 313 251 1126 1126 251 142 142 252 113 113 252 130 130 252 130 130 253 113 113 253 115 115 253 130 130 254 115 115 254 131 131 254 131 131 255 115 115 255 133 133 255 131 131 256 133 133 256 132 132 256 132 132 257 133 133 257 116 116 257 132 132 258 116 116 258 145 145 258 145 145 259 116 116 259 118 118 259 145 145 260 118 118 260 147 147 260 147 147 261 118 118 261 119 119 261 147 147 262 119 119 262 148 148 262 148 148 263 119 119 263 122 122 263 148 148 264 122 122 264 149 149 264 149 149 265 122 122 265 124 124 265 149 149 266 124 124 266 134 134 266 134 134 267 124 124 267 136 136 267 134 134 268 136 136 268 135 135 268 135 135 269 136 136 269 125 125 269 135 135 270 125 125 270 152 152 270 152 152 271 125 125 271 126 126 271 152 152 272 126 126 272 154 154 272 154 154 273 126 126 273 137 137 273 154 154 274 137 137 274 155 155 274 155 155 275 137 137 275 128 128 275 155 155 276 128 128 276 156 156 276 156 156 277 128 128 277 138 138 277 156 156 278 138 138 278 139 139 278 139 139 279 138 138 279 140 140 279 139 139 280 140 140 280 158 158 280 158 158 281 140 140 281 141 141 281 158 158 282 141 141 282 159 159 282 161 161 283 57 57 283 142 142 283 1126 1126 284 312 312 284 162 162 284 161 161 285 142 142 285 165 165 285 165 165 286 142 142 286 130 130 286 165 165 287 130 130 287 143 143 287 143 143 288 130 130 288 131 131 288 143 143 289 131 131 289 167 167 289 167 167 290 131 131 290 132 132 290 167 167 291 132 132 291 144 144 291 144 144 292 132 132 292 145 145 292 144 144 293 145 145 293 146 146 293 146 146 294 145 145 294 147 147 294 146 146 295 147 147 295 171 171 295 171 171 296 147 147 296 148 148 296 171 171 297 148 148 297 172 172 297 172 172 298 148 148 298 149 149 298 172 172 299 149 149 299 173 173 299 173 173 300 149 149 300 134 134 300 173 173 301 134 134 301 150 150 301 150 150 302 134 134 302 135 135 302 150 150 303 135 135 303 151 151 303 151 151 304 135 135 304 152 152 304 151 151 305 152 152 305 153 153 305 153 153 306 152 152 306 154 154 306 153 153 307 154 154 307 175 175 307 175 175 308 154 154 308 155 155 308 175 175 309 155 155 309 177 177 309 177 177 310 155 155 310 156 156 310 177 177 311 156 156 311 179 179 311 179 179 312 156 156 312 139 139 312 179 179 313 139 139 313 157 157 313 157 157 314 139 139 314 158 158 314 157 157 315 158 158 315 180 180 315 180 180 316 158 158 316 159 159 316 180 180 317 159 159 317 160 160 317 183 183 318 57 57 318 161 161 318 162 162 319 306 306 319 163 163 319 183 183 320 161 161 320 164 164 320 164 164 321 161 161 321 165 165 321 164 164 322 165 165 322 186 186 322 186 186 323 165 165 323 143 143 323 186 186 324 143 143 324 166 166 324 166 166 325 143 143 325 167 167 325 166 166 326 167 167 326 187 187 326 187 187 327 167 167 327 144 144 327 187 187 328 144 144 328 168 168 328 168 168 329 144 144 329 146 146 329 168 168 330 146 146 330 169 169 330 169 169 331 146 146 331 171 171 331 169 169 332 171 171 332 170 170 332 170 170 333 171 171 333 172 172 333 170 170 334 172 172 334 191 191 334 191 191 335 172 172 335 173 173 335 191 191 336 173 173 336 192 192 336 192 192 337 173 173 337 150 150 337 192 192 338 150 150 338 193 193 338 193 193 339 150 150 339 151 151 339 193 193 340 151 151 340 194 194 340 194 194 341 151 151 341 153 153 341 194 194 342 153 153 342 174 174 342 174 174 343 153 153 343 175 175 343 174 174 344 175 175 344 176 176 344 176 176 345 175 175 345 177 177 345 176 176 346 177 177 346 178 178 346 178 178 347 177 177 347 179 179 347 178 178 348 179 179 348 196 196 348 196 196 349 179 179 349 157 157 349 196 196 350 157 157 350 197 197 350 197 197 351 157 157 351 180 180 351 197 197 352 180 180 352 181 181 352 181 181 353 180 180 353 160 160 353 181 181 354 160 160 354 1076 1076 354 182 182 355 57 57 355 183 183 355 163 163 356 294 294 356 293 293 356 182 182 357 183 183 357 184 184 357 184 184 358 183 183 358 164 164 358 184 184 359 164 164 359 185 185 359 185 185 360 164 164 360 186 186 360 185 185 361 186 186 361 203 203 361 203 203 362 186 186 362 166 166 362 203 203 363 166 166 363 204 204 363 204 204 364 166 166 364 187 187 364 204 204 365 187 187 365 205 205 365 205 205 366 187 187 366 168 168 366 205 205 367 168 168 367 188 188 367 188 188 368 168 168 368 169 169 368 188 188 369 169 169 369 189 189 369 189 189 370 169 169 370 170 170 370 189 189 371 170 170 371 208 208 371 208 208 372 170 170 372 191 191 372 208 208 373 191 191 373 190 190 373 190 190 374 191 191 374 192 192 374 190 190 375 192 192 375 209 209 375 209 209 376 192 192 376 193 193 376 209 209 377 193 193 377 210 210 377 210 210 378 193 193 378 194 194 378 210 210 379 194 194 379 212 212 379 212 212 380 194 194 380 174 174 380 212 212 381 174 174 381 195 195 381 195 195 382 174 174 382 176 176 382 195 195 383 176 176 383 213 213 383 213 213 384 176 176 384 178 178 384 213 213 385 178 178 385 214 214 385 214 214 386 178 178 386 196 196 386 214 214 387 196 196 387 215 215 387 215 215 388 196 196 388 197 197 388 215 215 389 197 197 389 198 198 389 198 198 390 197 197 390 181 181 390 198 198 391 181 181 391 199 199 391 199 199 392 181 181 392 1076 1076 392 199 199 393 1076 1076 393 1074 1074 393 200 200 394 57 57 394 182 182 394 293 293 395 295 295 395 1130 1130 395 200 200 396 182 182 396 221 221 396 221 221 397 182 182 397 184 184 397 221 221 398 184 184 398 201 201 398 201 201 399 184 184 399 185 185 399 201 201 400 185 185 400 202 202 400 202 202 401 185 185 401 203 203 401 202 202 402 203 203 402 224 224 402 224 224 403 203 203 403 204 204 403 224 224 404 204 204 404 225 225 404 225 225 405 204 204 405 205 205 405 225 225 406 205 205 406 226 226 406 226 226 407 205 205 407 188 188 407 226 226 408 188 188 408 206 206 408 206 206 409 188 188 409 189 189 409 206 206 410 189 189 410 207 207 410 207 207 411 189 189 411 208 208 411 207 207 412 208 208 412 228 228 412 228 228 413 208 208 413 190 190 413 228 228 414 190 190 414 231 231 414 231 231 415 190 190 415 209 209 415 231 231 416 209 209 416 234 234 416 234 234 417 209 209 417 210 210 417 234 234 418 210 210 418 236 236 418 236 236 419 210 210 419 212 212 419 236 236 420 212 212 420 211 211 420 211 211 421 212 212 421 195 195 421 211 211 422 195 195 422 239 239 422 239 239 423 195 195 423 213 213 423 239 239 424 213 213 424 240 240 424 240 240 425 213 213 425 214 214 425 240 240 426 214 214 426 241 241 426 241 241 427 214 214 427 215 215 427 241 241 428 215 215 428 216 216 428 216 216 429 215 215 429 198 198 429 216 216 430 198 198 430 245 245 430 245 245 431 198 198 431 199 199 431 245 245 432 199 199 432 217 217 432 217 217 433 199 199 433 1074 1074 433 217 217 434 1074 1074 434 218 218 434 248 248 435 57 57 435 200 200 435 1130 1130 436 219 219 436 220 220 436 248 248 437 200 200 437 249 249 437 249 249 438 200 200 438 221 221 438 249 249 439 221 221 439 222 222 439 222 222 440 221 221 440 201 201 440 222 222 441 201 201 441 223 223 441 223 223 442 201 201 442 202 202 442 223 223 443 202 202 443 251 251 443 251 251 444 202 202 444 224 224 444 251 251 445 224 224 445 252 252 445 252 252 446 224 224 446 225 225 446 252 252 447 225 225 447 227 227 447 227 227 448 225 225 448 226 226 448 227 227 449 226 226 449 254 254 449 254 254 450 226 226 450 206 206 450 254 254 451 206 206 451 256 256 451 256 256 452 206 206 452 207 207 452 256 256 453 207 207 453 229 229 453 229 229 454 207 207 454 228 228 454 229 229 455 228 228 455 230 230 455 230 230 456 228 228 456 231 231 456 230 230 457 231 231 457 232 232 457 232 232 458 231 231 458 234 234 458 232 232 459 234 234 459 233 233 459 233 233 460 234 234 460 236 236 460 233 233 461 236 236 461 235 235 461 235 235 462 236 236 462 211 211 462 235 235 463 211 211 463 237 237 463 237 237 464 211 211 464 239 239 464 237 237 465 239 239 465 238 238 465 238 238 466 239 239 466 240 240 466 238 238 467 240 240 467 242 242 467 242 242 468 240 240 468 241 241 468 242 242 469 241 241 469 243 243 469 243 243 470 241 241 470 216 216 470 243 243 471 216 216 471 244 244 471 244 244 472 216 216 472 245 245 472 244 244 473 245 245 473 246 246 473 246 246 474 245 245 474 217 217 474 246 246 475 217 217 475 247 247 475 247 247 476 217 217 476 218 218 476 247 247 477 218 218 477 1072 1072 477 1093 1093 478 57 57 478 248 248 478 220 220 479 286 286 479 1131 1131 479 1093 1093 480 248 248 480 1095 1095 480 1095 1095 481 248 248 481 249 249 481 1095 1095 482 249 249 482 1096 1096 482 1096 1096 483 249 249 483 222 222 483 1096 1096 484 222 222 484 250 250 484 250 250 485 222 222 485 223 223 485 250 250 486 223 223 486 1097 1097 486 1097 1097 487 223 223 487 251 251 487 1097 1097 488 251 251 488 1098 1098 488 1098 1098 489 251 251 489 252 252 489 1098 1098 490 252 252 490 253 253 490 253 253 491 252 252 491 227 227 491 253 253 492 227 227 492 1100 1100 492 1100 1100 493 227 227 493 254 254 493 1100 1100 494 254 254 494 255 255 494 255 255 495 254 254 495 256 256 495 255 255 496 256 256 496 1103 1103 496 1103 1103 497 256 256 497 229 229 497 1103 1103 498 229 229 498 257 257 498 257 257 499 229 229 499 230 230 499 257 257 500 230 230 500 258 258 500 258 258 501 230 230 501 232 232 501 258 258 502 232 232 502 1105 1105 502 1105 1105 503 232 232 503 233 233 503 1105 1105 504 233 233 504 259 259 504 259 259 505 233 233 505 235 235 505 259 259 506 235 235 506 260 260 506 260 260 507 235 235 507 237 237 507 260 260 508 237 237 508 1107 1107 508 1107 1107 509 237 237 509 238 238 509 1107 1107 510 238 238 510 1108 1108 510 1108 1108 511 238 238 511 242 242 511 1108 1108 512 242 242 512 261 261 512 261 261 513 242 242 513 243 243 513 261 261 514 243 243 514 262 262 514 262 262 515 243 243 515 244 244 515 262 262 516 244 244 516 1112 1112 516 1112 1112 517 244 244 517 246 246 517 1112 1112 518 246 246 518 263 263 518 263 263 519 246 246 519 247 247 519 263 263 520 247 247 520 264 264 520 264 264 521 247 247 521 1072 1072 521 264 264 522 1072 1072 522 1114 1114 522 427 427 523 57 57 523 1093 1093 523 1131 1131 524 265 265 524 283 283 524 1137 1137 525 266 266 525 1021 1021 525 1021 1021 526 266 266 526 1118 1118 526 1021 1021 527 1118 1118 527 1022 1022 527 1022 1022 528 1118 1118 528 1119 1119 528 1022 1022 529 1119 1119 529 267 267 529 267 267 530 1119 1119 530 268 268 530 267 267 531 268 268 531 270 270 531 270 270 532 268 268 532 269 269 532 270 270 533 269 269 533 271 271 533 271 271 534 269 269 534 1122 1122 534 271 271 535 1122 1122 535 1027 1027 535 1027 1027 536 1122 1122 536 272 272 536 1027 1027 537 272 272 537 1028 1028 537 1028 1028 538 272 272 538 273 273 538 1028 1028 539 273 273 539 1029 1029 539 1029 1029 540 273 273 540 274 274 540 1029 1029 541 274 274 541 1031 1031 541 1031 1031 542 274 274 542 1124 1124 542 1031 1031 543 1124 1124 543 1033 1033 543 1033 1033 544 1124 1124 544 1127 1127 544 1033 1033 545 1127 1127 545 275 275 545 275 275 546 1127 1127 546 1128 1128 546 275 275 547 1128 1128 547 277 277 547 277 277 548 1128 1128 548 276 276 548 277 277 549 276 276 549 1036 1036 549 1036 1036 550 276 276 550 1129 1129 550 1036 1036 551 1129 1129 551 1037 1037 551 1037 1037 552 1129 1129 552 278 278 552 1037 1037 553 278 278 553 1038 1038 553 1038 1038 554 278 278 554 279 279 554 1038 1038 555 279 279 555 1040 1040 555 1040 1040 556 279 279 556 280 280 556 1040 1040 557 280 280 557 1041 1041 557 1041 1041 558 280 280 558 1132 1132 558 1041 1041 559 1132 1132 559 281 281 559 281 281 560 1132 1132 560 282 282 560 281 281 561 282 282 561 1044 1044 561 0 0 562 1133 1133 562 283 283 562 283 283 563 265 265 563 0 0 563 0 0 564 265 265 564 284 284 564 0 0 565 284 284 565 292 292 565 1131 1131 566 286 286 566 265 265 566 265 265 567 286 286 567 285 285 567 265 265 568 285 285 568 284 284 568 284 284 569 285 285 569 289 289 569 284 284 570 289 289 570 292 292 570 220 220 571 219 219 571 286 286 571 286 286 572 219 219 572 287 287 572 286 286 573 287 287 573 285 285 573 285 285 574 287 287 574 288 288 574 285 285 575 288 288 575 289 289 575 289 289 576 288 288 576 290 290 576 289 289 577 290 290 577 292 292 577 1130 1130 578 295 295 578 219 219 578 219 219 579 295 295 579 297 297 579 219 219 580 297 297 580 287 287 580 287 287 581 297 297 581 299 299 581 287 287 582 299 299 582 288 288 582 288 288 583 299 299 583 291 291 583 288 288 584 291 291 584 290 290 584 290 290 585 291 291 585 301 301 585 290 290 586 301 301 586 292 292 586 293 293 587 294 294 587 295 295 587 295 295 588 294 294 588 296 296 588 295 295 589 296 296 589 297 297 589 297 297 590 296 296 590 298 298 590 297 297 591 298 298 591 299 299 591 299 299 592 298 298 592 300 300 592 299 299 593 300 300 593 291 291 593 291 291 594 300 300 594 303 303 594 291 291 595 303 303 595 301 301 595 301 301 596 303 303 596 305 305 596 301 301 597 305 305 597 292 292 597 163 163 598 306 306 598 294 294 598 294 294 599 306 306 599 307 307 599 294 294 600 307 307 600 296 296 600 296 296 601 307 307 601 308 308 601 296 296 602 308 308 602 298 298 602 298 298 603 308 308 603 309 309 603 298 298 604 309 309 604 300 300 604 300 300 605 309 309 605 302 302 605 300 300 606 302 302 606 303 303 606 303 303 607 302 302 607 304 304 607 303 303 608 304 304 608 305 305 608 305 305 609 304 304 609 310 310 609 305 305 610 310 310 610 292 292 610 162 162 611 312 312 611 306 306 611 306 306 612 312 312 612 314 314 612 306 306 613 314 314 613 307 307 613 307 307 614 314 314 614 317 317 614 307 307 615 317 317 615 308 308 615 308 308 616 317 317 616 318 318 616 308 308 617 318 318 617 309 309 617 309 309 618 318 318 618 320 320 618 309 309 619 320 320 619 302 302 619 302 302 620 320 320 620 321 321 620 302 302 621 321 321 621 304 304 621 304 304 622 321 321 622 323 323 622 304 304 623 323 323 623 310 310 623 310 310 624 323 323 624 311 311 624 310 310 625 311 311 625 292 292 625 1126 1126 626 313 313 626 312 312 626 312 312 627 313 313 627 325 325 627 312 312 628 325 325 628 314 314 628 314 314 629 325 325 629 315 315 629 314 314 630 315 315 630 317 317 630 317 317 631 315 315 631 316 316 631 317 317 632 316 316 632 318 318 632 318 318 633 316 316 633 319 319 633 318 318 634 319 319 634 320 320 634 320 320 635 319 319 635 328 328 635 320 320 636 328 328 636 321 321 636 321 321 637 328 328 637 322 322 637 321 321 638 322 322 638 323 323 638 323 323 639 322 322 639 330 330 639 323 323 640 330 330 640 311 311 640 311 311 641 330 330 641 331 331 641 311 311 642 331 331 642 292 292 642 1125 1125 643 333 333 643 313 313 643 313 313 644 333 333 644 324 324 644 313 313 645 324 324 645 325 325 645 325 325 646 324 324 646 336 336 646 325 325 647 336 336 647 315 315 647 315 315 648 336 336 648 337 337 648 315 315 649 337 337 649 316 316 649 316 316 650 337 337 650 326 326 650 316 316 651 326 326 651 319 319 651 319 319 652 326 326 652 327 327 652 319 319 653 327 327 653 328 328 653 328 328 654 327 327 654 329 329 654 328 328 655 329 329 655 322 322 655 322 322 656 329 329 656 338 338 656 322 322 657 338 338 657 330 330 657 330 330 658 338 338 658 340 340 658 330 330 659 340 340 659 331 331 659 331 331 660 340 340 660 332 332 660 331 331 661 332 332 661 292 292 661 1123 1123 662 341 341 662 333 333 662 333 333 663 341 341 663 334 334 663 333 333 664 334 334 664 324 324 664 324 324 665 334 334 665 343 343 665 324 324 666 343 343 666 336 336 666 336 336 667 343 343 667 335 335 667 336 336 668 335 335 668 337 337 668 337 337 669 335 335 669 344 344 669 337 337 670 344 344 670 326 326 670 326 326 671 344 344 671 348 348 671 326 326 672 348 348 672 327 327 672 327 327 673 348 348 673 350 350 673 327 327 674 350 350 674 329 329 674 329 329 675 350 350 675 351 351 675 329 329 676 351 351 676 338 338 676 338 338 677 351 351 677 339 339 677 338 338 678 339 339 678 340 340 678 340 340 679 339 339 679 354 354 679 340 340 680 354 354 680 332 332 680 332 332 681 354 354 681 356 356 681 332 332 682 356 356 682 292 292 682 87 87 683 342 342 683 341 341 683 341 341 684 342 342 684 357 357 684 341 341 685 357 357 685 334 334 685 334 334 686 357 357 686 359 359 686 334 334 687 359 359 687 343 343 687 343 343 688 359 359 688 360 360 688 343 343 689 360 360 689 335 335 689 335 335 690 360 360 690 345 345 690 335 335 691 345 345 691 344 344 691 344 344 692 345 345 692 346 346 692 344 344 693 346 346 693 348 348 693 348 348 694 346 346 694 347 347 694 348 348 695 347 347 695 350 350 695 350 350 696 347 347 696 349 349 696 350 350 697 349 349 697 351 351 697 351 351 698 349 349 698 352 352 698 351 351 699 352 352 699 339 339 699 339 339 700 352 352 700 353 353 700 339 339 701 353 353 701 354 354 701 354 354 702 353 353 702 365 365 702 354 354 703 365 365 703 356 356 703 356 356 704 365 365 704 355 355 704 356 356 705 355 355 705 292 292 705 75 75 706 74 74 706 342 342 706 342 342 707 74 74 707 358 358 707 342 342 708 358 358 708 357 357 708 357 357 709 358 358 709 368 368 709 357 357 710 368 368 710 359 359 710 359 359 711 368 368 711 369 369 711 359 359 712 369 369 712 360 360 712 360 360 713 369 369 713 361 361 713 360 360 714 361 361 714 345 345 714 345 345 715 361 361 715 371 371 715 345 345 716 371 371 716 346 346 716 346 346 717 371 371 717 372 372 717 346 346 718 372 372 718 347 347 718 347 347 719 372 372 719 362 362 719 347 347 720 362 362 720 349 349 720 349 349 721 362 362 721 373 373 721 349 349 722 373 373 722 352 352 722 352 352 723 373 373 723 363 363 723 352 352 724 363 363 724 353 353 724 353 353 725 363 363 725 364 364 725 353 353 726 364 364 726 365 365 726 365 365 727 364 364 727 377 377 727 365 365 728 377 377 728 355 355 728 355 355 729 377 377 729 366 366 729 355 355 730 366 366 730 292 292 730 1121 1121 731 380 380 731 74 74 731 74 74 732 380 380 732 367 367 732 74 74 733 367 367 733 358 358 733 358 358 734 367 367 734 384 384 734 358 358 735 384 384 735 368 368 735 368 368 736 384 384 736 385 385 736 368 368 737 385 385 737 369 369 737 369 369 738 385 385 738 370 370 738 369 369 739 370 370 739 361 361 739 361 361 740 370 370 740 387 387 740 361 361 741 387 387 741 371 371 741 371 371 742 387 387 742 389 389 742 371 371 743 389 389 743 372 372 743 372 372 744 389 389 744 390 390 744 372 372 745 390 390 745 362 362 745 362 362 746 390 390 746 391 391 746 362 362 747 391 391 747 373 373 747 373 373 748 391 391 748 374 374 748 373 373 749 374 374 749 363 363 749 363 363 750 374 374 750 375 375 750 363 363 751 375 375 751 364 364 751 364 364 752 375 375 752 376 376 752 364 364 753 376 376 753 377 377 753 377 377 754 376 376 754 378 378 754 377 377 755 378 378 755 366 366 755 366 366 756 378 378 756 394 394 756 366 366 757 394 394 757 292 292 757 1120 1120 758 379 379 758 380 380 758 380 380 759 379 379 759 381 381 759 380 380 760 381 381 760 367 367 760 367 367 761 381 381 761 382 382 761 367 367 762 382 382 762 384 384 762 384 384 763 382 382 763 383 383 763 384 384 764 383 383 764 385 385 764 385 385 765 383 383 765 386 386 765 385 385 766 386 386 766 370 370 766 370 370 767 386 386 767 399 399 767 370 370 768 399 399 768 387 387 768 387 387 769 399 399 769 388 388 769 387 387 770 388 388 770 389 389 770 389 389 771 388 388 771 400 400 771 389 389 772 400 400 772 390 390 772 390 390 773 400 400 773 402 402 773 390 390 774 402 402 774 391 391 774 391 391 775 402 402 775 403 403 775 391 391 776 403 403 776 374 374 776 374 374 777 403 403 777 404 404 777 374 374 778 404 404 778 375 375 778 375 375 779 404 404 779 405 405 779 375 375 780 405 405 780 376 376 780 376 376 781 405 405 781 392 392 781 376 376 782 392 392 782 378 378 782 378 378 783 392 392 783 409 409 783 378 378 784 409 409 784 394 394 784 394 394 785 409 409 785 393 393 785 394 394 786 393 393 786 292 292 786 395 395 787 411 411 787 379 379 787 379 379 788 411 411 788 396 396 788 379 379 789 396 396 789 381 381 789 381 381 790 396 396 790 412 412 790 381 381 791 412 412 791 382 382 791 382 382 792 412 412 792 414 414 792 382 382 793 414 414 793 383 383 793 383 383 794 414 414 794 397 397 794 383 383 795 397 397 795 386 386 795 386 386 796 397 397 796 398 398 796 386 386 797 398 398 797 399 399 797 399 399 798 398 398 798 415 415 798 399 399 799 415 415 799 388 388 799 388 388 800 415 415 800 417 417 800 388 388 801 417 417 801 400 400 801 400 400 802 417 417 802 401 401 802 400 400 803 401 401 803 402 402 803 402 402 804 401 401 804 418 418 804 402 402 805 418 418 805 403 403 805 403 403 806 418 418 806 420 420 806 403 403 807 420 420 807 404 404 807 404 404 808 420 420 808 406 406 808 404 404 809 406 406 809 405 405 809 405 405 810 406 406 810 423 423 810 405 405 811 423 423 811 392 392 811 392 392 812 423 423 812 407 407 812 392 392 813 407 407 813 409 409 813 409 409 814 407 407 814 408 408 814 409 409 815 408 408 815 393 393 815 393 393 816 408 408 816 425 425 816 393 393 817 425 425 817 292 292 817 39 39 818 410 410 818 411 411 818 411 411 819 410 410 819 1140 1140 819 411 411 820 1140 1140 820 396 396 820 396 396 821 1140 1140 821 413 413 821 396 396 822 413 413 822 412 412 822 412 412 823 413 413 823 1143 1143 823 412 412 824 1143 1143 824 414 414 824 414 414 825 1143 1143 825 1144 1144 825 414 414 826 1144 1144 826 397 397 826 397 397 827 1144 1144 827 1145 1145 827 397 397 828 1145 1145 828 398 398 828 398 398 829 1145 1145 829 1147 1147 829 398 398 830 1147 1147 830 415 415 830 415 415 831 1147 1147 831 1148 1148 831 415 415 832 1148 1148 832 417 417 832 417 417 833 1148 1148 833 416 416 833 417 417 834 416 416 834 401 401 834 401 401 835 416 416 835 1150 1150 835 401 401 836 1150 1150 836 418 418 836 418 418 837 1150 1150 837 419 419 837 418 418 838 419 419 838 420 420 838 420 420 839 419 419 839 421 421 839 420 420 840 421 421 840 406 406 840 406 406 841 421 421 841 422 422 841 406 406 842 422 422 842 423 423 842 423 423 843 422 422 843 424 424 843 423 423 844 424 424 844 407 407 844 407 407 845 424 424 845 1153 1153 845 407 407 846 1153 1153 846 408 408 846 408 408 847 1153 1153 847 426 426 847 408 408 848 426 426 848 425 425 848 425 425 849 426 426 849 1154 1154 849 425 425 850 1154 1154 850 292 292 850 5 5 851 427 427 851 428 428 851 428 428 852 427 427 852 1094 1094 852 428 428 853 1094 1094 853 1135 1135 853 1135 1135 854 1094 1094 854 429 429 854 1135 1135 855 429 429 855 1136 1136 855 1136 1136 856 429 429 856 430 430 856 1136 1136 857 430 430 857 1138 1138 857 1138 1138 858 430 430 858 431 431 858 1138 1138 859 431 431 859 1139 1139 859 1139 1139 860 431 431 860 432 432 860 1139 1139 861 432 432 861 433 433 861 433 433 862 432 432 862 434 434 862 433 433 863 434 434 863 1141 1141 863 1141 1141 864 434 434 864 1099 1099 864 1141 1141 865 1099 1099 865 435 435 865 435 435 866 1099 1099 866 436 436 866 435 435 867 436 436 867 437 437 867 437 437 868 436 436 868 1101 1101 868 437 437 869 1101 1101 869 1142 1142 869 1142 1142 870 1101 1101 870 1102 1102 870 1142 1142 871 1102 1102 871 438 438 871 438 438 872 1102 1102 872 439 439 872 438 438 873 439 439 873 1146 1146 873 1146 1146 874 439 439 874 1104 1104 874 1146 1146 875 1104 1104 875 440 440 875 440 440 876 1104 1104 876 441 441 876 440 440 877 441 441 877 1149 1149 877 1149 1149 878 441 441 878 442 442 878 1149 1149 879 442 442 879 443 443 879 443 443 880 442 442 880 1106 1106 880 443 443 881 1106 1106 881 1151 1151 881 1151 1151 882 1106 1106 882 444 444 882 1151 1151 883 444 444 883 1152 1152 883 1152 1152 884 444 444 884 1109 1109 884 1152 1152 885 1109 1109 885 445 445 885 445 445 886 1109 1109 886 1110 1110 886 445 445 887 1110 1110 887 446 446 887 446 446 888 1110 1110 888 1111 1111 888 446 446 889 1111 1111 889 447 447 889 447 447 890 1111 1111 890 448 448 890 447 447 891 448 448 891 449 449 891 449 449 892 448 448 892 450 450 892 449 449 893 450 450 893 451 451 893 451 451 894 450 450 894 1113 1113 894 451 451 895 1113 1113 895 1155 1155 895 1155 1155 896 1113 1113 896 1115 1115 896 1155 1155 897 1115 1115 897 292 292 897 292 292 898 1116 1116 898 1045 1045 898 1045 1045 899 1116 1116 899 1071 1071 899 1045 1045 900 1071 1071 900 1046 1046 900 1046 1046 901 1071 1071 901 1073 1073 901 1046 1046 902 1073 1073 902 1047 1047 902 1047 1047 903 1073 1073 903 1075 1075 903 1047 1047 904 1075 1075 904 452 452 904 452 452 905 1075 1075 905 453 453 905 452 452 906 453 453 906 1049 1049 906 1049 1049 907 453 453 907 454 454 907 1049 1049 908 454 454 908 455 455 908 455 455 909 454 454 909 456 456 909 455 455 910 456 456 910 1053 1053 910 1053 1053 911 456 456 911 457 457 911 1053 1053 912 457 457 912 1054 1054 912 1054 1054 913 457 457 913 458 458 913 1054 1054 914 458 458 914 459 459 914 459 459 915 458 458 915 1078 1078 915 459 459 916 1078 1078 916 1057 1057 916 1057 1057 917 1078 1078 917 1080 1080 917 1057 1057 918 1080 1080 918 461 461 918 461 461 919 1080 1080 919 460 460 919 461 461 920 460 460 920 1060 1060 920 1060 1060 921 460 460 921 462 462 921 1060 1060 922 462 462 922 1061 1061 922 1061 1061 923 462 462 923 1081 1081 923 1061 1061 924 1081 1081 924 463 463 924 463 463 925 1081 1081 925 464 464 925 463 463 926 464 464 926 465 465 926 465 465 927 464 464 927 1084 1084 927 465 465 928 1084 1084 928 1064 1064 928 1064 1064 929 1084 1084 929 466 466 929 1064 1064 930 466 466 930 1066 1066 930 1066 1066 931 466 466 931 467 467 931 1066 1066 932 467 467 932 468 468 932 468 468 933 467 467 933 469 469 933 468 468 934 469 469 934 470 470 934 470 470 935 469 469 935 1088 1088 935 470 470 936 1088 1088 936 471 471 936 471 471 937 1088 1088 937 1089 1089 937 471 471 938 1089 1089 938 472 472 938 472 472 939 1089 1089 939 1090 1090 939 472 472 940 1090 1090 940 1069 1069 940 1069 1069 941 1090 1090 941 1091 1091 941 1069 1069 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 1092 1092 943 473 473 944 1092 1092 944 1070 1070 944 1070 1070 945 1092 1092 945 57 57 945 292 292 946 474 474 946 520 520 946 520 520 947 474 474 947 475 475 947 520 520 948 475 475 948 519 519 948 519 519 949 475 475 949 476 476 949 519 519 950 476 476 950 517 517 950 517 517 951 476 476 951 1048 1048 951 517 517 952 1048 1048 952 515 515 952 515 515 953 1048 1048 953 1050 1050 953 515 515 954 1050 1050 954 514 514 954 514 514 955 1050 1050 955 1051 1051 955 514 514 956 1051 1051 956 513 513 956 513 513 957 1051 1051 957 1052 1052 957 513 513 958 1052 1052 958 512 512 958 512 512 959 1052 1052 959 1055 1055 959 512 512 960 1055 1055 960 510 510 960 510 510 961 1055 1055 961 1056 1056 961 510 510 962 1056 1056 962 508 508 962 508 508 963 1056 1056 963 1058 1058 963 508 508 964 1058 1058 964 478 478 964 478 478 965 1058 1058 965 477 477 965 478 478 966 477 477 966 507 507 966 507 507 967 477 477 967 1059 1059 967 507 507 968 1059 1059 968 504 504 968 504 504 969 1059 1059 969 1062 1062 969 504 504 970 1062 1062 970 502 502 970 502 502 971 1062 1062 971 480 480 971 502 502 972 480 480 972 479 479 972 479 479 973 480 480 973 1063 1063 973 479 479 974 1063 1063 974 501 501 974 501 501 975 1063 1063 975 1065 1065 975 501 501 976 1065 1065 976 500 500 976 500 500 977 1065 1065 977 1067 1067 977 500 500 978 1067 1067 978 499 499 978 499 499 979 1067 1067 979 481 481 979 499 499 980 481 481 980 498 498 980 498 498 981 481 481 981 1068 1068 981 498 498 982 1068 1068 982 497 497 982 497 497 983 1068 1068 983 482 482 983 497 497 984 482 482 984 495 495 984 495 495 985 482 482 985 483 483 985 495 495 986 483 483 986 484 484 986 484 484 987 483 483 987 485 485 987 484 484 988 485 485 988 486 486 988 486 486 989 485 485 989 487 487 989 486 486 990 487 487 990 488 488 990 488 488 991 487 487 991 489 489 991 488 488 992 489 489 992 490 490 992 490 490 993 489 489 993 57 57 993 57 57 994 491 491 994 490 490 994 490 490 995 491 491 995 492 492 995 490 490 996 492 492 996 488 488 996 488 488 997 492 492 997 521 521 997 488 488 998 521 521 998 486 486 998 486 486 999 521 521 999 493 493 999 486 486 1000 493 493 1000 484 484 1000 484 484 1001 493 493 1001 494 494 1001 484 484 1002 494 494 1002 495 495 1002 495 495 1003 494 494 1003 496 496 1003 495 495 1004 496 496 1004 497 497 1004 497 497 1005 496 496 1005 524 524 1005 497 497 1006 524 524 1006 498 498 1006 498 498 1007 524 524 1007 526 526 1007 498 498 1008 526 526 1008 499 499 1008 499 499 1009 526 526 1009 527 527 1009 499 499 1010 527 527 1010 500 500 1010 500 500 1011 527 527 1011 530 530 1011 500 500 1012 530 530 1012 501 501 1012 501 501 1013 530 530 1013 531 531 1013 501 501 1014 531 531 1014 479 479 1014 479 479 1015 531 531 1015 533 533 1015 479 479 1016 533 533 1016 502 502 1016 502 502 1017 533 533 1017 503 503 1017 502 502 1018 503 503 1018 504 504 1018 504 504 1019 503 503 1019 505 505 1019 504 504 1020 505 505 1020 507 507 1020 507 507 1021 505 505 1021 506 506 1021 507 507 1022 506 506 1022 478 478 1022 478 478 1023 506 506 1023 537 537 1023 478 478 1024 537 537 1024 508 508 1024 508 508 1025 537 537 1025 509 509 1025 508 508 1026 509 509 1026 510 510 1026 510 510 1027 509 509 1027 541 541 1027 510 510 1028 541 541 1028 512 512 1028 512 512 1029 541 541 1029 511 511 1029 512 512 1030 511 511 1030 513 513 1030 513 513 1031 511 511 1031 544 544 1031 513 513 1032 544 544 1032 514 514 1032 514 514 1033 544 544 1033 516 516 1033 514 514 1034 516 516 1034 515 515 1034 515 515 1035 516 516 1035 545 545 1035 515 515 1036 545 545 1036 517 517 1036 517 517 1037 545 545 1037 518 518 1037 517 517 1038 518 518 1038 519 519 1038 519 519 1039 518 518 1039 546 546 1039 519 519 1040 546 546 1040 520 520 1040 520 520 1041 546 546 1041 292 292 1041 57 57 1042 548 548 1042 491 491 1042 491 491 1043 548 548 1043 549 549 1043 491 491 1044 549 549 1044 492 492 1044 492 492 1045 549 549 1045 522 522 1045 492 492 1046 522 522 1046 521 521 1046 521 521 1047 522 522 1047 552 552 1047 521 521 1048 552 552 1048 493 493 1048 493 493 1049 552 552 1049 553 553 1049 493 493 1050 553 553 1050 494 494 1050 494 494 1051 553 553 1051 554 554 1051 494 494 1052 554 554 1052 496 496 1052 496 496 1053 554 554 1053 523 523 1053 496 496 1054 523 523 1054 524 524 1054 524 524 1055 523 523 1055 525 525 1055 524 524 1056 525 525 1056 526 526 1056 526 526 1057 525 525 1057 528 528 1057 526 526 1058 528 528 1058 527 527 1058 527 527 1059 528 528 1059 557 557 1059 527 527 1060 557 557 1060 530 530 1060 530 530 1061 557 557 1061 529 529 1061 530 530 1062 529 529 1062 531 531 1062 531 531 1063 529 529 1063 532 532 1063 531 531 1064 532 532 1064 533 533 1064 533 533 1065 532 532 1065 534 534 1065 533 533 1066 534 534 1066 503 503 1066 503 503 1067 534 534 1067 535 535 1067 503 503 1068 535 535 1068 505 505 1068 505 505 1069 535 535 1069 536 536 1069 505 505 1070 536 536 1070 506 506 1070 506 506 1071 536 536 1071 538 538 1071 506 506 1072 538 538 1072 537 537 1072 537 537 1073 538 538 1073 539 539 1073 537 537 1074 539 539 1074 509 509 1074 509 509 1075 539 539 1075 540 540 1075 509 509 1076 540 540 1076 541 541 1076 541 541 1077 540 540 1077 542 542 1077 541 541 1078 542 542 1078 511 511 1078 511 511 1079 542 542 1079 543 543 1079 511 511 1080 543 543 1080 544 544 1080 544 544 1081 543 543 1081 563 563 1081 544 544 1082 563 563 1082 516 516 1082 516 516 1083 563 563 1083 564 564 1083 516 516 1084 564 564 1084 545 545 1084 545 545 1085 564 564 1085 565 565 1085 545 545 1086 565 565 1086 518 518 1086 518 518 1087 565 565 1087 567 567 1087 518 518 1088 567 567 1088 546 546 1088 546 546 1089 567 567 1089 292 292 1089 57 57 1090 547 547 1090 548 548 1090 548 548 1091 547 547 1091 568 568 1091 548 548 1092 568 568 1092 549 549 1092 549 549 1093 568 568 1093 570 570 1093 549 549 1094 570 570 1094 522 522 1094 522 522 1095 570 570 1095 550 550 1095 522 522 1096 550 550 1096 552 552 1096 552 552 1097 550 550 1097 551 551 1097 552 552 1098 551 551 1098 553 553 1098 553 553 1099 551 551 1099 572 572 1099 553 553 1100 572 572 1100 554 554 1100 554 554 1101 572 572 1101 573 573 1101 554 554 1102 573 573 1102 523 523 1102 523 523 1103 573 573 1103 555 555 1103 523 523 1104 555 555 1104 525 525 1104 525 525 1105 555 555 1105 575 575 1105 525 525 1106 575 575 1106 528 528 1106 528 528 1107 575 575 1107 577 577 1107 528 528 1108 577 577 1108 557 557 1108 557 557 1109 577 577 1109 556 556 1109 557 557 1110 556 556 1110 529 529 1110 529 529 1111 556 556 1111 578 578 1111 529 529 1112 578 578 1112 532 532 1112 532 532 1113 578 578 1113 558 558 1113 532 532 1114 558 558 1114 534 534 1114 534 534 1115 558 558 1115 559 559 1115 534 534 1116 559 559 1116 535 535 1116 535 535 1117 559 559 1117 582 582 1117 535 535 1118 582 582 1118 536 536 1118 536 536 1119 582 582 1119 583 583 1119 536 536 1120 583 583 1120 538 538 1120 538 538 1121 583 583 1121 560 560 1121 538 538 1122 560 560 1122 539 539 1122 539 539 1123 560 560 1123 561 561 1123 539 539 1124 561 561 1124 540 540 1124 540 540 1125 561 561 1125 585 585 1125 540 540 1126 585 585 1126 542 542 1126 542 542 1127 585 585 1127 562 562 1127 542 542 1128 562 562 1128 543 543 1128 543 543 1129 562 562 1129 586 586 1129 543 543 1130 586 586 1130 563 563 1130 563 563 1131 586 586 1131 588 588 1131 563 563 1132 588 588 1132 564 564 1132 564 564 1133 588 588 1133 589 589 1133 564 564 1134 589 589 1134 565 565 1134 565 565 1135 589 589 1135 566 566 1135 565 565 1136 566 566 1136 567 567 1136 567 567 1137 566 566 1137 292 292 1137 57 57 1138 593 593 1138 547 547 1138 547 547 1139 593 593 1139 594 594 1139 547 547 1140 594 594 1140 568 568 1140 568 568 1141 594 594 1141 569 569 1141 568 568 1142 569 569 1142 570 570 1142 570 570 1143 569 569 1143 595 595 1143 570 570 1144 595 595 1144 550 550 1144 550 550 1145 595 595 1145 571 571 1145 550 550 1146 571 571 1146 551 551 1146 551 551 1147 571 571 1147 598 598 1147 551 551 1148 598 598 1148 572 572 1148 572 572 1149 598 598 1149 599 599 1149 572 572 1150 599 599 1150 573 573 1150 573 573 1151 599 599 1151 574 574 1151 573 573 1152 574 574 1152 555 555 1152 555 555 1153 574 574 1153 601 601 1153 555 555 1154 601 601 1154 575 575 1154 575 575 1155 601 601 1155 576 576 1155 575 575 1156 576 576 1156 577 577 1156 577 577 1157 576 576 1157 603 603 1157 577 577 1158 603 603 1158 556 556 1158 556 556 1159 603 603 1159 604 604 1159 556 556 1160 604 604 1160 578 578 1160 578 578 1161 604 604 1161 605 605 1161 578 578 1162 605 605 1162 558 558 1162 558 558 1163 605 605 1163 579 579 1163 558 558 1164 579 579 1164 559 559 1164 559 559 1165 579 579 1165 580 580 1165 559 559 1166 580 580 1166 582 582 1166 582 582 1167 580 580 1167 581 581 1167 582 582 1168 581 581 1168 583 583 1168 583 583 1169 581 581 1169 584 584 1169 583 583 1170 584 584 1170 560 560 1170 560 560 1171 584 584 1171 609 609 1171 560 560 1172 609 609 1172 561 561 1172 561 561 1173 609 609 1173 611 611 1173 561 561 1174 611 611 1174 585 585 1174 585 585 1175 611 611 1175 612 612 1175 585 585 1176 612 612 1176 562 562 1176 562 562 1177 612 612 1177 587 587 1177 562 562 1178 587 587 1178 586 586 1178 586 586 1179 587 587 1179 613 613 1179 586 586 1180 613 613 1180 588 588 1180 588 588 1181 613 613 1181 590 590 1181 588 588 1182 590 590 1182 589 589 1182 589 589 1183 590 590 1183 591 591 1183 589 589 1184 591 591 1184 566 566 1184 566 566 1185 591 591 1185 292 292 1185 57 57 1186 592 592 1186 593 593 1186 593 593 1187 592 592 1187 616 616 1187 593 593 1188 616 616 1188 594 594 1188 594 594 1189 616 616 1189 617 617 1189 594 594 1190 617 617 1190 569 569 1190 569 569 1191 617 617 1191 620 620 1191 569 569 1192 620 620 1192 595 595 1192 595 595 1193 620 620 1193 596 596 1193 595 595 1194 596 596 1194 571 571 1194 571 571 1195 596 596 1195 597 597 1195 571 571 1196 597 597 1196 598 598 1196 598 598 1197 597 597 1197 622 622 1197 598 598 1198 622 622 1198 599 599 1198 599 599 1199 622 622 1199 600 600 1199 599 599 1200 600 600 1200 574 574 1200 574 574 1201 600 600 1201 602 602 1201 574 574 1202 602 602 1202 601 601 1202 601 601 1203 602 602 1203 626 626 1203 601 601 1204 626 626 1204 576 576 1204 576 576 1205 626 626 1205 627 627 1205 576 576 1206 627 627 1206 603 603 1206 603 603 1207 627 627 1207 629 629 1207 603 603 1208 629 629 1208 604 604 1208 604 604 1209 629 629 1209 630 630 1209 604 604 1210 630 630 1210 605 605 1210 605 605 1211 630 630 1211 606 606 1211 605 605 1212 606 606 1212 579 579 1212 579 579 1213 606 606 1213 607 607 1213 579 579 1214 607 607 1214 580 580 1214 580 580 1215 607 607 1215 608 608 1215 580 580 1216 608 608 1216 581 581 1216 581 581 1217 608 608 1217 633 633 1217 581 581 1218 633 633 1218 584 584 1218 584 584 1219 633 633 1219 610 610 1219 584 584 1220 610 610 1220 609 609 1220 609 609 1221 610 610 1221 635 635 1221 609 609 1222 635 635 1222 611 611 1222 611 611 1223 635 635 1223 637 637 1223 611 611 1224 637 637 1224 612 612 1224 612 612 1225 637 637 1225 639 639 1225 612 612 1226 639 639 1226 587 587 1226 587 587 1227 639 639 1227 641 641 1227 587 587 1228 641 641 1228 613 613 1228 613 613 1229 641 641 1229 614 614 1229 613 613 1230 614 614 1230 590 590 1230 590 590 1231 614 614 1231 615 615 1231 590 590 1232 615 615 1232 591 591 1232 591 591 1233 615 615 1233 292 292 1233 57 57 1234 643 643 1234 592 592 1234 592 592 1235 643 643 1235 646 646 1235 592 592 1236 646 646 1236 616 616 1236 616 616 1237 646 646 1237 648 648 1237 616 616 1238 648 648 1238 617 617 1238 617 617 1239 648 648 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 596 596 1242 596 596 1243 619 619 1243 621 621 1243 596 596 1244 621 621 1244 597 597 1244 597 597 1245 621 621 1245 651 651 1245 597 597 1246 651 651 1246 622 622 1246 622 622 1247 651 651 1247 623 623 1247 622 622 1248 623 623 1248 600 600 1248 600 600 1249 623 623 1249 624 624 1249 600 600 1250 624 624 1250 602 602 1250 602 602 1251 624 624 1251 625 625 1251 602 602 1252 625 625 1252 626 626 1252 626 626 1253 625 625 1253 654 654 1253 626 626 1254 654 654 1254 627 627 1254 627 627 1255 654 654 1255 628 628 1255 627 627 1256 628 628 1256 629 629 1256 629 629 1257 628 628 1257 657 657 1257 629 629 1258 657 657 1258 630 630 1258 630 630 1259 657 657 1259 659 659 1259 630 630 1260 659 659 1260 606 606 1260 606 606 1261 659 659 1261 631 631 1261 606 606 1262 631 631 1262 607 607 1262 607 607 1263 631 631 1263 660 660 1263 607 607 1264 660 660 1264 608 608 1264 608 608 1265 660 660 1265 632 632 1265 608 608 1266 632 632 1266 633 633 1266 633 633 1267 632 632 1267 663 663 1267 633 633 1268 663 663 1268 610 610 1268 610 610 1269 663 663 1269 634 634 1269 610 610 1270 634 634 1270 635 635 1270 635 635 1271 634 634 1271 636 636 1271 635 635 1272 636 636 1272 637 637 1272 637 637 1273 636 636 1273 638 638 1273 637 637 1274 638 638 1274 639 639 1274 639 639 1275 638 638 1275 640 640 1275 639 639 1276 640 640 1276 641 641 1276 641 641 1277 640 640 1277 667 667 1277 641 641 1278 667 667 1278 614 614 1278 614 614 1279 667 667 1279 642 642 1279 614 614 1280 642 642 1280 615 615 1280 615 615 1281 642 642 1281 292 292 1281 57 57 1282 644 644 1282 643 643 1282 643 643 1283 644 644 1283 645 645 1283 643 643 1284 645 645 1284 646 646 1284 646 646 1285 645 645 1285 647 647 1285 646 646 1286 647 647 1286 648 648 1286 648 648 1287 647 647 1287 669 669 1287 648 648 1288 669 669 1288 618 618 1288 618 618 1289 669 669 1289 670 670 1289 618 618 1290 670 670 1290 619 619 1290 619 619 1291 670 670 1291 649 649 1291 619 619 1292 649 649 1292 621 621 1292 621 621 1293 649 649 1293 650 650 1293 621 621 1294 650 650 1294 651 651 1294 651 651 1295 650 650 1295 672 672 1295 651 651 1296 672 672 1296 623 623 1296 623 623 1297 672 672 1297 674 674 1297 623 623 1298 674 674 1298 624 624 1298 624 624 1299 674 674 1299 652 652 1299 624 624 1300 652 652 1300 625 625 1300 625 625 1301 652 652 1301 653 653 1301 625 625 1302 653 653 1302 654 654 1302 654 654 1303 653 653 1303 655 655 1303 654 654 1304 655 655 1304 628 628 1304 628 628 1305 655 655 1305 656 656 1305 628 628 1306 656 656 1306 657 657 1306 657 657 1307 656 656 1307 658 658 1307 657 657 1308 658 658 1308 659 659 1308 659 659 1309 658 658 1309 677 677 1309 659 659 1310 677 677 1310 631 631 1310 631 631 1311 677 677 1311 661 661 1311 631 631 1312 661 661 1312 660 660 1312 660 660 1313 661 661 1313 662 662 1313 660 660 1314 662 662 1314 632 632 1314 632 632 1315 662 662 1315 680 680 1315 632 632 1316 680 680 1316 663 663 1316 663 663 1317 680 680 1317 682 682 1317 663 663 1318 682 682 1318 634 634 1318 634 634 1319 682 682 1319 683 683 1319 634 634 1320 683 683 1320 636 636 1320 636 636 1321 683 683 1321 664 664 1321 636 636 1322 664 664 1322 638 638 1322 638 638 1323 664 664 1323 684 684 1323 638 638 1324 684 684 1324 640 640 1324 640 640 1325 684 684 1325 665 665 1325 640 640 1326 665 665 1326 667 667 1326 667 667 1327 665 665 1327 666 666 1327 667 667 1328 666 666 1328 642 642 1328 642 642 1329 666 666 1329 292 292 1329 57 57 1330 688 688 1330 644 644 1330 644 644 1331 688 688 1331 668 668 1331 644 644 1332 668 668 1332 645 645 1332 645 645 1333 668 668 1333 691 691 1333 645 645 1334 691 691 1334 647 647 1334 647 647 1335 691 691 1335 692 692 1335 647 647 1336 692 692 1336 669 669 1336 669 669 1337 692 692 1337 694 694 1337 669 669 1338 694 694 1338 670 670 1338 670 670 1339 694 694 1339 671 671 1339 670 670 1340 671 671 1340 649 649 1340 649 649 1341 671 671 1341 697 697 1341 649 649 1342 697 697 1342 650 650 1342 650 650 1343 697 697 1343 699 699 1343 650 650 1344 699 699 1344 672 672 1344 672 672 1345 699 699 1345 673 673 1345 672 672 1346 673 673 1346 674 674 1346 674 674 1347 673 673 1347 701 701 1347 674 674 1348 701 701 1348 652 652 1348 652 652 1349 701 701 1349 702 702 1349 652 652 1350 702 702 1350 653 653 1350 653 653 1351 702 702 1351 675 675 1351 653 653 1352 675 675 1352 655 655 1352 655 655 1353 675 675 1353 703 703 1353 655 655 1354 703 703 1354 656 656 1354 656 656 1355 703 703 1355 676 676 1355 656 656 1356 676 676 1356 658 658 1356 658 658 1357 676 676 1357 706 706 1357 658 658 1358 706 706 1358 677 677 1358 677 677 1359 706 706 1359 678 678 1359 677 677 1360 678 678 1360 661 661 1360 661 661 1361 678 678 1361 679 679 1361 661 661 1362 679 679 1362 662 662 1362 662 662 1363 679 679 1363 709 709 1363 662 662 1364 709 709 1364 680 680 1364 680 680 1365 709 709 1365 681 681 1365 680 680 1366 681 681 1366 682 682 1366 682 682 1367 681 681 1367 710 710 1367 682 682 1368 710 710 1368 683 683 1368 683 683 1369 710 710 1369 712 712 1369 683 683 1370 712 712 1370 664 664 1370 664 664 1371 712 712 1371 685 685 1371 664 664 1372 685 685 1372 684 684 1372 684 684 1373 685 685 1373 714 714 1373 684 684 1374 714 714 1374 665 665 1374 665 665 1375 714 714 1375 686 686 1375 665 665 1376 686 686 1376 666 666 1376 666 666 1377 686 686 1377 292 292 1377 57 57 1378 687 687 1378 688 688 1378 688 688 1379 687 687 1379 689 689 1379 688 688 1380 689 689 1380 668 668 1380 668 668 1381 689 689 1381 690 690 1381 668 668 1382 690 690 1382 691 691 1382 691 691 1383 690 690 1383 715 715 1383 691 691 1384 715 715 1384 692 692 1384 692 692 1385 715 715 1385 693 693 1385 692 692 1386 693 693 1386 694 694 1386 694 694 1387 693 693 1387 695 695 1387 694 694 1388 695 695 1388 671 671 1388 671 671 1389 695 695 1389 696 696 1389 671 671 1390 696 696 1390 697 697 1390 697 697 1391 696 696 1391 698 698 1391 697 697 1392 698 698 1392 699 699 1392 699 699 1393 698 698 1393 700 700 1393 699 699 1394 700 700 1394 673 673 1394 673 673 1395 700 700 1395 720 720 1395 673 673 1396 720 720 1396 701 701 1396 701 701 1397 720 720 1397 721 721 1397 701 701 1398 721 721 1398 702 702 1398 702 702 1399 721 721 1399 723 723 1399 702 702 1400 723 723 1400 675 675 1400 675 675 1401 723 723 1401 724 724 1401 675 675 1402 724 724 1402 703 703 1402 703 703 1403 724 724 1403 728 728 1403 703 703 1404 728 728 1404 676 676 1404 676 676 1405 728 728 1405 704 704 1405 676 676 1406 704 704 1406 706 706 1406 706 706 1407 704 704 1407 705 705 1407 706 706 1408 705 705 1408 678 678 1408 678 678 1409 705 705 1409 707 707 1409 678 678 1410 707 707 1410 679 679 1410 679 679 1411 707 707 1411 708 708 1411 679 679 1412 708 708 1412 709 709 1412 709 709 1413 708 708 1413 731 731 1413 709 709 1414 731 731 1414 681 681 1414 681 681 1415 731 731 1415 733 733 1415 681 681 1416 733 733 1416 710 710 1416 710 710 1417 733 733 1417 711 711 1417 710 710 1418 711 711 1418 712 712 1418 712 712 1419 711 711 1419 734 734 1419 712 712 1420 734 734 1420 685 685 1420 685 685 1421 734 734 1421 713 713 1421 685 685 1422 713 713 1422 714 714 1422 714 714 1423 713 713 1423 735 735 1423 714 714 1424 735 735 1424 686 686 1424 686 686 1425 735 735 1425 292 292 1425 57 57 1426 736 736 1426 687 687 1426 687 687 1427 736 736 1427 738 738 1427 687 687 1428 738 738 1428 689 689 1428 689 689 1429 738 738 1429 739 739 1429 689 689 1430 739 739 1430 690 690 1430 690 690 1431 739 739 1431 740 740 1431 690 690 1432 740 740 1432 715 715 1432 715 715 1433 740 740 1433 716 716 1433 715 715 1434 716 716 1434 693 693 1434 693 693 1435 716 716 1435 717 717 1435 693 693 1436 717 717 1436 695 695 1436 695 695 1437 717 717 1437 743 743 1437 695 695 1438 743 743 1438 696 696 1438 696 696 1439 743 743 1439 744 744 1439 696 696 1440 744 744 1440 698 698 1440 698 698 1441 744 744 1441 718 718 1441 698 698 1442 718 718 1442 700 700 1442 700 700 1443 718 718 1443 719 719 1443 700 700 1444 719 719 1444 720 720 1444 720 720 1445 719 719 1445 748 748 1445 720 720 1446 748 748 1446 721 721 1446 721 721 1447 748 748 1447 722 722 1447 721 721 1448 722 722 1448 723 723 1448 723 723 1449 722 722 1449 725 725 1449 723 723 1450 725 725 1450 724 724 1450 724 724 1451 725 725 1451 726 726 1451 724 724 1452 726 726 1452 728 728 1452 728 728 1453 726 726 1453 727 727 1453 728 728 1454 727 727 1454 704 704 1454 704 704 1455 727 727 1455 729 729 1455 704 704 1456 729 729 1456 705 705 1456 705 705 1457 729 729 1457 751 751 1457 705 705 1458 751 751 1458 707 707 1458 707 707 1459 751 751 1459 730 730 1459 707 707 1460 730 730 1460 708 708 1460 708 708 1461 730 730 1461 753 753 1461 708 708 1462 753 753 1462 731 731 1462 731 731 1463 753 753 1463 732 732 1463 731 731 1464 732 732 1464 733 733 1464 733 733 1465 732 732 1465 756 756 1465 733 733 1466 756 756 1466 711 711 1466 711 711 1467 756 756 1467 757 757 1467 711 711 1468 757 757 1468 734 734 1468 734 734 1469 757 757 1469 758 758 1469 734 734 1470 758 758 1470 713 713 1470 713 713 1471 758 758 1471 761 761 1471 713 713 1472 761 761 1472 735 735 1472 735 735 1473 761 761 1473 292 292 1473 57 57 1474 762 762 1474 736 736 1474 736 736 1475 762 762 1475 763 763 1475 736 736 1476 763 763 1476 738 738 1476 738 738 1477 763 763 1477 737 737 1477 738 738 1478 737 737 1478 739 739 1478 739 739 1479 737 737 1479 765 765 1479 739 739 1480 765 765 1480 740 740 1480 740 740 1481 765 765 1481 741 741 1481 740 740 1482 741 741 1482 716 716 1482 716 716 1483 741 741 1483 766 766 1483 716 716 1484 766 766 1484 717 717 1484 717 717 1485 766 766 1485 742 742 1485 717 717 1486 742 742 1486 743 743 1486 743 743 1487 742 742 1487 745 745 1487 743 743 1488 745 745 1488 744 744 1488 744 744 1489 745 745 1489 746 746 1489 744 744 1490 746 746 1490 718 718 1490 718 718 1491 746 746 1491 747 747 1491 718 718 1492 747 747 1492 719 719 1492 719 719 1493 747 747 1493 770 770 1493 719 719 1494 770 770 1494 748 748 1494 748 748 1495 770 770 1495 749 749 1495 748 748 1496 749 749 1496 722 722 1496 722 722 1497 749 749 1497 772 772 1497 722 722 1498 772 772 1498 725 725 1498 725 725 1499 772 772 1499 774 774 1499 725 725 1500 774 774 1500 726 726 1500 726 726 1501 774 774 1501 775 775 1501 726 726 1502 775 775 1502 727 727 1502 727 727 1503 775 775 1503 750 750 1503 727 727 1504 750 750 1504 729 729 1504 729 729 1505 750 750 1505 752 752 1505 729 729 1506 752 752 1506 751 751 1506 751 751 1507 752 752 1507 778 778 1507 751 751 1508 778 778 1508 730 730 1508 730 730 1509 778 778 1509 780 780 1509 730 730 1510 780 780 1510 753 753 1510 753 753 1511 780 780 1511 754 754 1511 753 753 1512 754 754 1512 732 732 1512 732 732 1513 754 754 1513 755 755 1513 732 732 1514 755 755 1514 756 756 1514 756 756 1515 755 755 1515 782 782 1515 756 756 1516 782 782 1516 757 757 1516 757 757 1517 782 782 1517 759 759 1517 757 757 1518 759 759 1518 758 758 1518 758 758 1519 759 759 1519 760 760 1519 758 758 1520 760 760 1520 761 761 1520 761 761 1521 760 760 1521 292 292 1521 57 57 1522 785 785 1522 762 762 1522 762 762 1523 785 785 1523 786 786 1523 762 762 1524 786 786 1524 763 763 1524 763 763 1525 786 786 1525 787 787 1525 763 763 1526 787 787 1526 737 737 1526 737 737 1527 787 787 1527 789 789 1527 737 737 1528 789 789 1528 765 765 1528 765 765 1529 789 789 1529 764 764 1529 765 765 1530 764 764 1530 741 741 1530 741 741 1531 764 764 1531 792 792 1531 741 741 1532 792 792 1532 766 766 1532 766 766 1533 792 792 1533 767 767 1533 766 766 1534 767 767 1534 742 742 1534 742 742 1535 767 767 1535 768 768 1535 742 742 1536 768 768 1536 745 745 1536 745 745 1537 768 768 1537 796 796 1537 745 745 1538 796 796 1538 746 746 1538 746 746 1539 796 796 1539 797 797 1539 746 746 1540 797 797 1540 747 747 1540 747 747 1541 797 797 1541 769 769 1541 747 747 1542 769 769 1542 770 770 1542 770 770 1543 769 769 1543 771 771 1543 770 770 1544 771 771 1544 749 749 1544 749 749 1545 771 771 1545 799 799 1545 749 749 1546 799 799 1546 772 772 1546 772 772 1547 799 799 1547 773 773 1547 772 772 1548 773 773 1548 774 774 1548 774 774 1549 773 773 1549 801 801 1549 774 774 1550 801 801 1550 775 775 1550 775 775 1551 801 801 1551 776 776 1551 775 775 1552 776 776 1552 750 750 1552 750 750 1553 776 776 1553 777 777 1553 750 750 1554 777 777 1554 752 752 1554 752 752 1555 777 777 1555 804 804 1555 752 752 1556 804 804 1556 778 778 1556 778 778 1557 804 804 1557 779 779 1557 778 778 1558 779 779 1558 780 780 1558 780 780 1559 779 779 1559 805 805 1559 780 780 1560 805 805 1560 754 754 1560 754 754 1561 805 805 1561 781 781 1561 754 754 1562 781 781 1562 755 755 1562 755 755 1563 781 781 1563 807 807 1563 755 755 1564 807 807 1564 782 782 1564 782 782 1565 807 807 1565 783 783 1565 782 782 1566 783 783 1566 759 759 1566 759 759 1567 783 783 1567 784 784 1567 759 759 1568 784 784 1568 760 760 1568 760 760 1569 784 784 1569 292 292 1569 57 57 1570 810 810 1570 785 785 1570 785 785 1571 810 810 1571 813 813 1571 785 785 1572 813 813 1572 786 786 1572 786 786 1573 813 813 1573 814 814 1573 786 786 1574 814 814 1574 787 787 1574 787 787 1575 814 814 1575 788 788 1575 787 787 1576 788 788 1576 789 789 1576 789 789 1577 788 788 1577 790 790 1577 789 789 1578 790 790 1578 764 764 1578 764 764 1579 790 790 1579 791 791 1579 764 764 1580 791 791 1580 792 792 1580 792 792 1581 791 791 1581 793 793 1581 792 792 1582 793 793 1582 767 767 1582 767 767 1583 793 793 1583 794 794 1583 767 767 1584 794 794 1584 768 768 1584 768 768 1585 794 794 1585 795 795 1585 768 768 1586 795 795 1586 796 796 1586 796 796 1587 795 795 1587 817 817 1587 796 796 1588 817 817 1588 797 797 1588 797 797 1589 817 817 1589 798 798 1589 797 797 1590 798 798 1590 769 769 1590 769 769 1591 798 798 1591 818 818 1591 769 769 1592 818 818 1592 771 771 1592 771 771 1593 818 818 1593 820 820 1593 771 771 1594 820 820 1594 799 799 1594 799 799 1595 820 820 1595 800 800 1595 799 799 1596 800 800 1596 773 773 1596 773 773 1597 800 800 1597 822 822 1597 773 773 1598 822 822 1598 801 801 1598 801 801 1599 822 822 1599 802 802 1599 801 801 1600 802 802 1600 776 776 1600 776 776 1601 802 802 1601 823 823 1601 776 776 1602 823 823 1602 777 777 1602 777 777 1603 823 823 1603 803 803 1603 777 777 1604 803 803 1604 804 804 1604 804 804 1605 803 803 1605 827 827 1605 804 804 1606 827 827 1606 779 779 1606 779 779 1607 827 827 1607 828 828 1607 779 779 1608 828 828 1608 805 805 1608 805 805 1609 828 828 1609 829 829 1609 805 805 1610 829 829 1610 781 781 1610 781 781 1611 829 829 1611 806 806 1611 781 781 1612 806 806 1612 807 807 1612 807 807 1613 806 806 1613 808 808 1613 807 807 1614 808 808 1614 783 783 1614 783 783 1615 808 808 1615 809 809 1615 783 783 1616 809 809 1616 784 784 1616 784 784 1617 809 809 1617 292 292 1617 57 57 1618 811 811 1618 810 810 1618 810 810 1619 811 811 1619 812 812 1619 810 810 1620 812 812 1620 813 813 1620 813 813 1621 812 812 1621 834 834 1621 813 813 1622 834 834 1622 814 814 1622 814 814 1623 834 834 1623 815 815 1623 814 814 1624 815 815 1624 788 788 1624 788 788 1625 815 815 1625 836 836 1625 788 788 1626 836 836 1626 790 790 1626 790 790 1627 836 836 1627 839 839 1627 790 790 1628 839 839 1628 791 791 1628 791 791 1629 839 839 1629 816 816 1629 791 791 1630 816 816 1630 793 793 1630 793 793 1631 816 816 1631 840 840 1631 793 793 1632 840 840 1632 794 794 1632 794 794 1633 840 840 1633 841 841 1633 794 794 1634 841 841 1634 795 795 1634 795 795 1635 841 841 1635 843 843 1635 795 795 1636 843 843 1636 817 817 1636 817 817 1637 843 843 1637 844 844 1637 817 817 1638 844 844 1638 798 798 1638 798 798 1639 844 844 1639 845 845 1639 798 798 1640 845 845 1640 818 818 1640 818 818 1641 845 845 1641 819 819 1641 818 818 1642 819 819 1642 820 820 1642 820 820 1643 819 819 1643 821 821 1643 820 820 1644 821 821 1644 800 800 1644 800 800 1645 821 821 1645 847 847 1645 800 800 1646 847 847 1646 822 822 1646 822 822 1647 847 847 1647 849 849 1647 822 822 1648 849 849 1648 802 802 1648 802 802 1649 849 849 1649 824 824 1649 802 802 1650 824 824 1650 823 823 1650 823 823 1651 824 824 1651 825 825 1651 823 823 1652 825 825 1652 803 803 1652 803 803 1653 825 825 1653 826 826 1653 803 803 1654 826 826 1654 827 827 1654 827 827 1655 826 826 1655 853 853 1655 827 827 1656 853 853 1656 828 828 1656 828 828 1657 853 853 1657 854 854 1657 828 828 1658 854 854 1658 829 829 1658 829 829 1659 854 854 1659 855 855 1659 829 829 1660 855 855 1660 806 806 1660 806 806 1661 855 855 1661 830 830 1661 806 806 1662 830 830 1662 808 808 1662 808 808 1663 830 830 1663 831 831 1663 808 808 1664 831 831 1664 809 809 1664 809 809 1665 831 831 1665 292 292 1665 57 57 1666 832 832 1666 811 811 1666 811 811 1667 832 832 1667 856 856 1667 811 811 1668 856 856 1668 812 812 1668 812 812 1669 856 856 1669 833 833 1669 812 812 1670 833 833 1670 834 834 1670 834 834 1671 833 833 1671 835 835 1671 834 834 1672 835 835 1672 815 815 1672 815 815 1673 835 835 1673 837 837 1673 815 815 1674 837 837 1674 836 836 1674 836 836 1675 837 837 1675 838 838 1675 836 836 1676 838 838 1676 839 839 1676 839 839 1677 838 838 1677 860 860 1677 839 839 1678 860 860 1678 816 816 1678 816 816 1679 860 860 1679 861 861 1679 816 816 1680 861 861 1680 840 840 1680 840 840 1681 861 861 1681 862 862 1681 840 840 1682 862 862 1682 841 841 1682 841 841 1683 862 862 1683 842 842 1683 841 841 1684 842 842 1684 843 843 1684 843 843 1685 842 842 1685 864 864 1685 843 843 1686 864 864 1686 844 844 1686 844 844 1687 864 864 1687 865 865 1687 844 844 1688 865 865 1688 845 845 1688 845 845 1689 865 865 1689 846 846 1689 845 845 1690 846 846 1690 819 819 1690 819 819 1691 846 846 1691 866 866 1691 819 819 1692 866 866 1692 821 821 1692 821 821 1693 866 866 1693 848 848 1693 821 821 1694 848 848 1694 847 847 1694 847 847 1695 848 848 1695 850 850 1695 847 847 1696 850 850 1696 849 849 1696 849 849 1697 850 850 1697 851 851 1697 849 849 1698 851 851 1698 824 824 1698 824 824 1699 851 851 1699 852 852 1699 824 824 1700 852 852 1700 825 825 1700 825 825 1701 852 852 1701 869 869 1701 825 825 1702 869 869 1702 826 826 1702 826 826 1703 869 869 1703 872 872 1703 826 826 1704 872 872 1704 853 853 1704 853 853 1705 872 872 1705 873 873 1705 853 853 1706 873 873 1706 854 854 1706 854 854 1707 873 873 1707 875 875 1707 854 854 1708 875 875 1708 855 855 1708 855 855 1709 875 875 1709 877 877 1709 855 855 1710 877 877 1710 830 830 1710 830 830 1711 877 877 1711 878 878 1711 830 830 1712 878 878 1712 831 831 1712 831 831 1713 878 878 1713 292 292 1713 57 57 1714 879 879 1714 832 832 1714 832 832 1715 879 879 1715 880 880 1715 832 832 1716 880 880 1716 856 856 1716 856 856 1717 880 880 1717 881 881 1717 856 856 1718 881 881 1718 833 833 1718 833 833 1719 881 881 1719 882 882 1719 833 833 1720 882 882 1720 835 835 1720 835 835 1721 882 882 1721 857 857 1721 835 835 1722 857 857 1722 837 837 1722 837 837 1723 857 857 1723 858 858 1723 837 837 1724 858 858 1724 838 838 1724 838 838 1725 858 858 1725 859 859 1725 838 838 1726 859 859 1726 860 860 1726 860 860 1727 859 859 1727 885 885 1727 860 860 1728 885 885 1728 861 861 1728 861 861 1729 885 885 1729 863 863 1729 861 861 1730 863 863 1730 862 862 1730 862 862 1731 863 863 1731 886 886 1731 862 862 1732 886 886 1732 842 842 1732 842 842 1733 886 886 1733 888 888 1733 842 842 1734 888 888 1734 864 864 1734 864 864 1735 888 888 1735 890 890 1735 864 864 1736 890 890 1736 865 865 1736 865 865 1737 890 890 1737 891 891 1737 865 865 1738 891 891 1738 846 846 1738 846 846 1739 891 891 1739 892 892 1739 846 846 1740 892 892 1740 866 866 1740 866 866 1741 892 892 1741 867 867 1741 866 866 1742 867 867 1742 848 848 1742 848 848 1743 867 867 1743 893 893 1743 848 848 1744 893 893 1744 850 850 1744 850 850 1745 893 893 1745 894 894 1745 850 850 1746 894 894 1746 851 851 1746 851 851 1747 894 894 1747 868 868 1747 851 851 1748 868 868 1748 852 852 1748 852 852 1749 868 868 1749 870 870 1749 852 852 1750 870 870 1750 869 869 1750 869 869 1751 870 870 1751 871 871 1751 869 869 1752 871 871 1752 872 872 1752 872 872 1753 871 871 1753 897 897 1753 872 872 1754 897 897 1754 873 873 1754 873 873 1755 897 897 1755 874 874 1755 873 873 1756 874 874 1756 875 875 1756 875 875 1757 874 874 1757 876 876 1757 875 875 1758 876 876 1758 877 877 1758 877 877 1759 876 876 1759 900 900 1759 877 877 1760 900 900 1760 878 878 1760 878 878 1761 900 900 1761 292 292 1761 57 57 1762 902 902 1762 879 879 1762 879 879 1763 902 902 1763 903 903 1763 879 879 1764 903 903 1764 880 880 1764 880 880 1765 903 903 1765 905 905 1765 880 880 1766 905 905 1766 881 881 1766 881 881 1767 905 905 1767 906 906 1767 881 881 1768 906 906 1768 882 882 1768 882 882 1769 906 906 1769 883 883 1769 882 882 1770 883 883 1770 857 857 1770 857 857 1771 883 883 1771 884 884 1771 857 857 1772 884 884 1772 858 858 1772 858 858 1773 884 884 1773 908 908 1773 858 858 1774 908 908 1774 859 859 1774 859 859 1775 908 908 1775 909 909 1775 859 859 1776 909 909 1776 885 885 1776 885 885 1777 909 909 1777 910 910 1777 885 885 1778 910 910 1778 863 863 1778 863 863 1779 910 910 1779 913 913 1779 863 863 1780 913 913 1780 886 886 1780 886 886 1781 913 913 1781 887 887 1781 886 886 1782 887 887 1782 888 888 1782 888 888 1783 887 887 1783 889 889 1783 888 888 1784 889 889 1784 890 890 1784 890 890 1785 889 889 1785 917 917 1785 890 890 1786 917 917 1786 891 891 1786 891 891 1787 917 917 1787 918 918 1787 891 891 1788 918 918 1788 892 892 1788 892 892 1789 918 918 1789 920 920 1789 892 892 1790 920 920 1790 867 867 1790 867 867 1791 920 920 1791 921 921 1791 867 867 1792 921 921 1792 893 893 1792 893 893 1793 921 921 1793 923 923 1793 893 893 1794 923 923 1794 894 894 1794 894 894 1795 923 923 1795 924 924 1795 894 894 1796 924 924 1796 868 868 1796 868 868 1797 924 924 1797 895 895 1797 868 868 1798 895 895 1798 870 870 1798 870 870 1799 895 895 1799 896 896 1799 870 870 1800 896 896 1800 871 871 1800 871 871 1801 896 896 1801 898 898 1801 871 871 1802 898 898 1802 897 897 1802 897 897 1803 898 898 1803 899 899 1803 897 897 1804 899 899 1804 874 874 1804 874 874 1805 899 899 1805 928 928 1805 874 874 1806 928 928 1806 876 876 1806 876 876 1807 928 928 1807 901 901 1807 876 876 1808 901 901 1808 900 900 1808 900 900 1809 901 901 1809 292 292 1809 57 57 1810 929 929 1810 902 902 1810 902 902 1811 929 929 1811 931 931 1811 902 902 1812 931 931 1812 903 903 1812 903 903 1813 931 931 1813 904 904 1813 903 903 1814 904 904 1814 905 905 1814 905 905 1815 904 904 1815 933 933 1815 905 905 1816 933 933 1816 906 906 1816 906 906 1817 933 933 1817 907 907 1817 906 906 1818 907 907 1818 883 883 1818 883 883 1819 907 907 1819 935 935 1819 883 883 1820 935 935 1820 884 884 1820 884 884 1821 935 935 1821 937 937 1821 884 884 1822 937 937 1822 908 908 1822 908 908 1823 937 937 1823 938 938 1823 908 908 1824 938 938 1824 909 909 1824 909 909 1825 938 938 1825 911 911 1825 909 909 1826 911 911 1826 910 910 1826 910 910 1827 911 911 1827 912 912 1827 910 910 1828 912 912 1828 913 913 1828 913 913 1829 912 912 1829 914 914 1829 913 913 1830 914 914 1830 887 887 1830 887 887 1831 914 914 1831 915 915 1831 887 887 1832 915 915 1832 889 889 1832 889 889 1833 915 915 1833 916 916 1833 889 889 1834 916 916 1834 917 917 1834 917 917 1835 916 916 1835 942 942 1835 917 917 1836 942 942 1836 918 918 1836 918 918 1837 942 942 1837 919 919 1837 918 918 1838 919 919 1838 920 920 1838 920 920 1839 919 919 1839 944 944 1839 920 920 1840 944 944 1840 921 921 1840 921 921 1841 944 944 1841 922 922 1841 921 921 1842 922 922 1842 923 923 1842 923 923 1843 922 922 1843 947 947 1843 923 923 1844 947 947 1844 924 924 1844 924 924 1845 947 947 1845 948 948 1845 924 924 1846 948 948 1846 895 895 1846 895 895 1847 948 948 1847 925 925 1847 895 895 1848 925 925 1848 896 896 1848 896 896 1849 925 925 1849 926 926 1849 896 896 1850 926 926 1850 898 898 1850 898 898 1851 926 926 1851 950 950 1851 898 898 1852 950 950 1852 899 899 1852 899 899 1853 950 950 1853 951 951 1853 899 899 1854 951 951 1854 928 928 1854 928 928 1855 951 951 1855 927 927 1855 928 928 1856 927 927 1856 901 901 1856 901 901 1857 927 927 1857 292 292 1857 57 57 1858 952 952 1858 929 929 1858 929 929 1859 952 952 1859 930 930 1859 929 929 1860 930 930 1860 931 931 1860 931 931 1861 930 930 1861 932 932 1861 931 931 1862 932 932 1862 904 904 1862 904 904 1863 932 932 1863 953 953 1863 904 904 1864 953 953 1864 933 933 1864 933 933 1865 953 953 1865 934 934 1865 933 933 1866 934 934 1866 907 907 1866 907 907 1867 934 934 1867 957 957 1867 907 907 1868 957 957 1868 935 935 1868 935 935 1869 957 957 1869 936 936 1869 935 935 1870 936 936 1870 937 937 1870 937 937 1871 936 936 1871 958 958 1871 937 937 1872 958 958 1872 938 938 1872 938 938 1873 958 958 1873 939 939 1873 938 938 1874 939 939 1874 911 911 1874 911 911 1875 939 939 1875 940 940 1875 911 911 1876 940 940 1876 912 912 1876 912 912 1877 940 940 1877 961 961 1877 912 912 1878 961 961 1878 914 914 1878 914 914 1879 961 961 1879 964 964 1879 914 914 1880 964 964 1880 915 915 1880 915 915 1881 964 964 1881 965 965 1881 915 915 1882 965 965 1882 916 916 1882 916 916 1883 965 965 1883 941 941 1883 916 916 1884 941 941 1884 942 942 1884 942 942 1885 941 941 1885 943 943 1885 942 942 1886 943 943 1886 919 919 1886 919 919 1887 943 943 1887 945 945 1887 919 919 1888 945 945 1888 944 944 1888 944 944 1889 945 945 1889 967 967 1889 944 944 1890 967 967 1890 922 922 1890 922 922 1891 967 967 1891 969 969 1891 922 922 1892 969 969 1892 947 947 1892 947 947 1893 969 969 1893 946 946 1893 947 947 1894 946 946 1894 948 948 1894 948 948 1895 946 946 1895 949 949 1895 948 948 1896 949 949 1896 925 925 1896 925 925 1897 949 949 1897 970 970 1897 925 925 1898 970 970 1898 926 926 1898 926 926 1899 970 970 1899 971 971 1899 926 926 1900 971 971 1900 950 950 1900 950 950 1901 971 971 1901 973 973 1901 950 950 1902 973 973 1902 951 951 1902 951 951 1903 973 973 1903 974 974 1903 951 951 1904 974 974 1904 927 927 1904 927 927 1905 974 974 1905 292 292 1905 57 57 1906 1177 1177 1906 952 952 1906 952 952 1907 1177 1177 1907 1175 1175 1907 952 952 1908 1175 1175 1908 930 930 1908 930 930 1909 1175 1175 1909 1173 1173 1909 930 930 1910 1173 1173 1910 932 932 1910 932 932 1911 1173 1173 1911 954 954 1911 932 932 1912 954 954 1912 953 953 1912 953 953 1913 954 954 1913 955 955 1913 953 953 1914 955 955 1914 934 934 1914 934 934 1915 955 955 1915 956 956 1915 934 934 1916 956 956 1916 957 957 1916 957 957 1917 956 956 1917 1170 1170 1917 957 957 1918 1170 1170 1918 936 936 1918 936 936 1919 1170 1170 1919 1168 1168 1919 936 936 1920 1168 1168 1920 958 958 1920 958 958 1921 1168 1168 1921 959 959 1921 958 958 1922 959 959 1922 939 939 1922 939 939 1923 959 959 1923 960 960 1923 939 939 1924 960 960 1924 940 940 1924 940 940 1925 960 960 1925 1166 1166 1925 940 940 1926 1166 1166 1926 961 961 1926 961 961 1927 1166 1166 1927 962 962 1927 961 961 1928 962 962 1928 964 964 1928 964 964 1929 962 962 1929 963 963 1929 964 964 1930 963 963 1930 965 965 1930 965 965 1931 963 963 1931 1164 1164 1931 965 965 1932 1164 1164 1932 941 941 1932 941 941 1933 1164 1164 1933 1163 1163 1933 941 941 1934 1163 1163 1934 943 943 1934 943 943 1935 1163 1163 1935 966 966 1935 943 943 1936 966 966 1936 945 945 1936 945 945 1937 966 966 1937 1160 1160 1937 945 945 1938 1160 1160 1938 967 967 1938 967 967 1939 1160 1160 1939 968 968 1939 967 967 1940 968 968 1940 969 969 1940 969 969 1941 968 968 1941 1159 1159 1941 969 969 1942 1159 1159 1942 946 946 1942 946 946 1943 1159 1159 1943 1157 1157 1943 946 946 1944 1157 1157 1944 949 949 1944 949 949 1945 1157 1157 1945 975 975 1945 949 949 1946 975 975 1946 970 970 1946 970 970 1947 975 975 1947 978 978 1947 970 970 1948 978 978 1948 971 971 1948 971 971 1949 978 978 1949 972 972 1949 971 971 1950 972 972 1950 973 973 1950 973 973 1951 972 972 1951 979 979 1951 973 973 1952 979 979 1952 974 974 1952 974 974 1953 979 979 1953 292 292 1953 1157 1157 1954 976 976 1954 975 975 1954 975 975 1955 976 976 1955 977 977 1955 975 975 1956 977 977 1956 978 978 1956 978 978 1957 977 977 1957 995 995 1957 978 978 1958 995 995 1958 972 972 1958 972 972 1959 995 995 1959 997 997 1959 972 972 1960 997 997 1960 979 979 1960 979 979 1961 997 997 1961 292 292 1961 1176 1176 1962 980 980 1962 1174 1174 1962 1174 1174 1963 980 980 1963 998 998 1963 1174 1174 1964 998 998 1964 981 981 1964 981 981 1965 998 998 1965 999 999 1965 981 981 1966 999 999 1966 1172 1172 1966 1172 1172 1967 999 999 1967 1000 1000 1967 1172 1172 1968 1000 1000 1968 982 982 1968 982 982 1969 1000 1000 1969 1003 1003 1969 982 982 1970 1003 1003 1970 1171 1171 1970 1171 1171 1971 1003 1003 1971 1004 1004 1971 1171 1171 1972 1004 1004 1972 1169 1169 1972 1169 1169 1973 1004 1004 1973 1005 1005 1973 1169 1169 1974 1005 1005 1974 983 983 1974 983 983 1975 1005 1005 1975 1006 1006 1975 983 983 1976 1006 1006 1976 984 984 1976 984 984 1977 1006 1006 1977 1007 1007 1977 984 984 1978 1007 1007 1978 1167 1167 1978 1167 1167 1979 1007 1007 1979 1009 1009 1979 1167 1167 1980 1009 1009 1980 985 985 1980 985 985 1981 1009 1009 1981 986 986 1981 985 985 1982 986 986 1982 1165 1165 1982 1165 1165 1983 986 986 1983 1010 1010 1983 1165 1165 1984 1010 1010 1984 988 988 1984 988 988 1985 1010 1010 1985 987 987 1985 988 988 1986 987 987 1986 1162 1162 1986 1162 1162 1987 987 987 1987 1012 1012 1987 1162 1162 1988 1012 1012 1988 989 989 1988 989 989 1989 1012 1012 1989 1014 1014 1989 989 989 1990 1014 1014 1990 1161 1161 1990 1161 1161 1991 1014 1014 1991 990 990 1991 1161 1161 1992 990 990 1992 991 991 1992 991 991 1993 990 990 1993 992 992 1993 991 991 1994 992 992 1994 1158 1158 1994 1158 1158 1995 992 992 1995 993 993 1995 1158 1158 1996 993 993 1996 1156 1156 1996 1156 1156 1997 993 993 1997 1017 1017 1997 1156 1156 1998 1017 1017 1998 976 976 1998 976 976 1999 1017 1017 1999 1018 1018 1999 976 976 2000 1018 1018 2000 977 977 2000 977 977 2001 1018 1018 2001 994 994 2001 977 977 2002 994 994 2002 995 995 2002 995 995 2003 994 994 2003 996 996 2003 995 995 2004 996 996 2004 997 997 2004 997 997 2005 996 996 2005 292 292 2005 980 980 2006 1134 1134 2006 998 998 2006 998 998 2007 1134 1134 2007 1020 1020 2007 998 998 2008 1020 1020 2008 999 999 2008 999 999 2009 1020 1020 2009 1001 1001 2009 999 999 2010 1001 1001 2010 1000 1000 2010 1000 1000 2011 1001 1001 2011 1002 1002 2011 1000 1000 2012 1002 1002 2012 1003 1003 2012 1003 1003 2013 1002 1002 2013 1023 1023 2013 1003 1003 2014 1023 1023 2014 1004 1004 2014 1004 1004 2015 1023 1023 2015 1024 1024 2015 1004 1004 2016 1024 1024 2016 1005 1005 2016 1005 1005 2017 1024 1024 2017 1025 1025 2017 1005 1005 2018 1025 1025 2018 1006 1006 2018 1006 1006 2019 1025 1025 2019 1026 1026 2019 1006 1006 2020 1026 1026 2020 1007 1007 2020 1007 1007 2021 1026 1026 2021 1008 1008 2021 1007 1007 2022 1008 1008 2022 1009 1009 2022 1009 1009 2023 1008 1008 2023 1030 1030 2023 1009 1009 2024 1030 1030 2024 986 986 2024 986 986 2025 1030 1030 2025 1032 1032 2025 986 986 2026 1032 1032 2026 1010 1010 2026 1010 1010 2027 1032 1032 2027 1011 1011 2027 1010 1010 2028 1011 1011 2028 987 987 2028 987 987 2029 1011 1011 2029 1013 1013 2029 987 987 2030 1013 1013 2030 1012 1012 2030 1012 1012 2031 1013 1013 2031 1034 1034 2031 1012 1012 2032 1034 1034 2032 1014 1014 2032 1014 1014 2033 1034 1034 2033 1035 1035 2033 1014 1014 2034 1035 1035 2034 990 990 2034 990 990 2035 1035 1035 2035 1015 1015 2035 990 990 2036 1015 1015 2036 992 992 2036 992 992 2037 1015 1015 2037 1039 1039 2037 992 992 2038 1039 1039 2038 993 993 2038 993 993 2039 1039 1039 2039 1016 1016 2039 993 993 2040 1016 1016 2040 1017 1017 2040 1017 1017 2041 1016 1016 2041 1042 1042 2041 1017 1017 2042 1042 1042 2042 1018 1018 2042 1018 1018 2043 1042 1042 2043 1043 1043 2043 1018 1018 2044 1043 1043 2044 994 994 2044 994 994 2045 1043 1043 2045 1019 1019 2045 994 994 2046 1019 1019 2046 996 996 2046 996 996 2047 1019 1019 2047 292 292 2047 1134 1134 2048 1137 1137 2048 1020 1020 2048 1020 1020 2049 1137 1137 2049 1021 1021 2049 1020 1020 2050 1021 1021 2050 1001 1001 2050 1001 1001 2051 1021 1021 2051 1022 1022 2051 1001 1001 2052 1022 1022 2052 1002 1002 2052 1002 1002 2053 1022 1022 2053 267 267 2053 1002 1002 2054 267 267 2054 1023 1023 2054 1023 1023 2055 267 267 2055 270 270 2055 1023 1023 2056 270 270 2056 1024 1024 2056 1024 1024 2057 270 270 2057 271 271 2057 1024 1024 2058 271 271 2058 1025 1025 2058 1025 1025 2059 271 271 2059 1027 1027 2059 1025 1025 2060 1027 1027 2060 1026 1026 2060 1026 1026 2061 1027 1027 2061 1028 1028 2061 1026 1026 2062 1028 1028 2062 1008 1008 2062 1008 1008 2063 1028 1028 2063 1029 1029 2063 1008 1008 2064 1029 1029 2064 1030 1030 2064 1030 1030 2065 1029 1029 2065 1031 1031 2065 1030 1030 2066 1031 1031 2066 1032 1032 2066 1032 1032 2067 1031 1031 2067 1033 1033 2067 1032 1032 2068 1033 1033 2068 1011 1011 2068 1011 1011 2069 1033 1033 2069 275 275 2069 1011 1011 2070 275 275 2070 1013 1013 2070 1013 1013 2071 275 275 2071 277 277 2071 1013 1013 2072 277 277 2072 1034 1034 2072 1034 1034 2073 277 277 2073 1036 1036 2073 1034 1034 2074 1036 1036 2074 1035 1035 2074 1035 1035 2075 1036 1036 2075 1037 1037 2075 1035 1035 2076 1037 1037 2076 1015 1015 2076 1015 1015 2077 1037 1037 2077 1038 1038 2077 1015 1015 2078 1038 1038 2078 1039 1039 2078 1039 1039 2079 1038 1038 2079 1040 1040 2079 1039 1039 2080 1040 1040 2080 1016 1016 2080 1016 1016 2081 1040 1040 2081 1041 1041 2081 1016 1016 2082 1041 1041 2082 1042 1042 2082 1042 1042 2083 1041 1041 2083 281 281 2083 1042 1042 2084 281 281 2084 1043 1043 2084 1043 1043 2085 281 281 2085 1044 1044 2085 1043 1043 2086 1044 1044 2086 1019 1019 2086 1019 1019 2087 1044 1044 2087 292 292 2087 292 292 2088 1045 1045 2088 474 474 2088 474 474 2089 1045 1045 2089 1046 1046 2089 474 474 2090 1046 1046 2090 475 475 2090 475 475 2091 1046 1046 2091 1047 1047 2091 475 475 2092 1047 1047 2092 476 476 2092 476 476 2093 1047 1047 2093 452 452 2093 476 476 2094 452 452 2094 1048 1048 2094 1048 1048 2095 452 452 2095 1049 1049 2095 1048 1048 2096 1049 1049 2096 1050 1050 2096 1050 1050 2097 1049 1049 2097 455 455 2097 1050 1050 2098 455 455 2098 1051 1051 2098 1051 1051 2099 455 455 2099 1053 1053 2099 1051 1051 2100 1053 1053 2100 1052 1052 2100 1052 1052 2101 1053 1053 2101 1054 1054 2101 1052 1052 2102 1054 1054 2102 1055 1055 2102 1055 1055 2103 1054 1054 2103 459 459 2103 1055 1055 2104 459 459 2104 1056 1056 2104 1056 1056 2105 459 459 2105 1057 1057 2105 1056 1056 2106 1057 1057 2106 1058 1058 2106 1058 1058 2107 1057 1057 2107 461 461 2107 1058 1058 2108 461 461 2108 477 477 2108 477 477 2109 461 461 2109 1060 1060 2109 477 477 2110 1060 1060 2110 1059 1059 2110 1059 1059 2111 1060 1060 2111 1061 1061 2111 1059 1059 2112 1061 1061 2112 1062 1062 2112 1062 1062 2113 1061 1061 2113 463 463 2113 1062 1062 2114 463 463 2114 480 480 2114 480 480 2115 463 463 2115 465 465 2115 480 480 2116 465 465 2116 1063 1063 2116 1063 1063 2117 465 465 2117 1064 1064 2117 1063 1063 2118 1064 1064 2118 1065 1065 2118 1065 1065 2119 1064 1064 2119 1066 1066 2119 1065 1065 2120 1066 1066 2120 1067 1067 2120 1067 1067 2121 1066 1066 2121 468 468 2121 1067 1067 2122 468 468 2122 481 481 2122 481 481 2123 468 468 2123 470 470 2123 481 481 2124 470 470 2124 1068 1068 2124 1068 1068 2125 470 470 2125 471 471 2125 1068 1068 2126 471 471 2126 482 482 2126 482 482 2127 471 471 2127 472 472 2127 482 482 2128 472 472 2128 483 483 2128 483 483 2129 472 472 2129 1069 1069 2129 483 483 2130 1069 1069 2130 485 485 2130 485 485 2131 1069 1069 2131 473 473 2131 485 485 2132 473 473 2132 487 487 2132 487 487 2133 473 473 2133 1070 1070 2133 487 487 2134 1070 1070 2134 489 489 2134 489 489 2135 1070 1070 2135 57 57 2135 1116 1116 2136 1114 1114 2136 1071 1071 2136 1071 1071 2137 1114 1114 2137 1072 1072 2137 1071 1071 2138 1072 1072 2138 1073 1073 2138 1073 1073 2139 1072 1072 2139 218 218 2139 1073 1073 2140 218 218 2140 1075 1075 2140 1075 1075 2141 218 218 2141 1074 1074 2141 1075 1075 2142 1074 1074 2142 453 453 2142 453 453 2143 1074 1074 2143 1076 1076 2143 453 453 2144 1076 1076 2144 454 454 2144 454 454 2145 1076 1076 2145 160 160 2145 454 454 2146 160 160 2146 456 456 2146 456 456 2147 160 160 2147 159 159 2147 456 456 2148 159 159 2148 457 457 2148 457 457 2149 159 159 2149 141 141 2149 457 457 2150 141 141 2150 458 458 2150 458 458 2151 141 141 2151 1077 1077 2151 458 458 2152 1077 1077 2152 1078 1078 2152 1078 1078 2153 1077 1077 2153 1079 1079 2153 1078 1078 2154 1079 1079 2154 1080 1080 2154 1080 1080 2155 1079 1079 2155 100 100 2155 1080 1080 2156 100 100 2156 460 460 2156 460 460 2157 100 100 2157 72 72 2157 460 460 2158 72 72 2158 462 462 2158 462 462 2159 72 72 2159 56 56 2159 462 462 2160 56 56 2160 1081 1081 2160 1081 1081 2161 56 56 2161 1082 1082 2161 1081 1081 2162 1082 1082 2162 464 464 2162 464 464 2163 1082 1082 2163 1083 1083 2163 464 464 2164 1083 1083 2164 1084 1084 2164 1084 1084 2165 1083 1083 2165 1085 1085 2165 1084 1084 2166 1085 1085 2166 466 466 2166 466 466 2167 1085 1085 2167 23 23 2167 466 466 2168 23 23 2168 467 467 2168 467 467 2169 23 23 2169 1086 1086 2169 467 467 2170 1086 1086 2170 469 469 2170 469 469 2171 1086 1086 2171 1087 1087 2171 469 469 2172 1087 1087 2172 1088 1088 2172 1088 1088 2173 1087 1087 2173 13 13 2173 1088 1088 2174 13 13 2174 1089 1089 2174 1089 1089 2175 13 13 2175 9 9 2175 1089 1089 2176 9 9 2176 1090 1090 2176 1090 1090 2177 9 9 2177 1 1 2177 1090 1090 2178 1 1 2178 1091 1091 2178 1091 1091 2179 1 1 2179 2 2 2179 1091 1091 2180 2 2 2180 1092 1092 2180 1092 1092 2181 2 2 2181 57 57 2181 427 427 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 429 429 2184 429 429 2185 1095 1095 2185 1096 1096 2185 429 429 2186 1096 1096 2186 430 430 2186 430 430 2187 1096 1096 2187 250 250 2187 430 430 2188 250 250 2188 431 431 2188 431 431 2189 250 250 2189 1097 1097 2189 431 431 2190 1097 1097 2190 432 432 2190 432 432 2191 1097 1097 2191 1098 1098 2191 432 432 2192 1098 1098 2192 434 434 2192 434 434 2193 1098 1098 2193 253 253 2193 434 434 2194 253 253 2194 1099 1099 2194 1099 1099 2195 253 253 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 436 436 2196 436 436 2197 1100 1100 2197 255 255 2197 436 436 2198 255 255 2198 1101 1101 2198 1101 1101 2199 255 255 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 257 257 2201 1102 1102 2202 257 257 2202 439 439 2202 439 439 2203 257 257 2203 258 258 2203 439 439 2204 258 258 2204 1104 1104 2204 1104 1104 2205 258 258 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 441 441 2206 441 441 2207 1105 1105 2207 259 259 2207 441 441 2208 259 259 2208 442 442 2208 442 442 2209 259 259 2209 260 260 2209 442 442 2210 260 260 2210 1106 1106 2210 1106 1106 2211 260 260 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 444 444 2212 444 444 2213 1107 1107 2213 1108 1108 2213 444 444 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 261 261 2215 1109 1109 2216 261 261 2216 1110 1110 2216 1110 1110 2217 261 261 2217 262 262 2217 1110 1110 2218 262 262 2218 1111 1111 2218 1111 1111 2219 262 262 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 448 448 2220 448 448 2221 1112 1112 2221 263 263 2221 448 448 2222 263 263 2222 450 450 2222 450 450 2223 263 263 2223 264 264 2223 450 450 2224 264 264 2224 1113 1113 2224 1113 1113 2225 264 264 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 292 292 2228 282 282 2229 292 292 2229 1044 1044 2229 266 266 2230 1117 1117 2230 1118 1118 2230 1118 1118 2231 1117 1117 2231 39 39 2231 1118 1118 2232 39 39 2232 1119 1119 2232 1119 1119 2233 39 39 2233 395 395 2233 1119 1119 2234 395 395 2234 268 268 2234 268 268 2235 395 395 2235 1120 1120 2235 268 268 2236 1120 1120 2236 269 269 2236 269 269 2237 1120 1120 2237 1121 1121 2237 269 269 2238 1121 1121 2238 1122 1122 2238 1122 1122 2239 1121 1121 2239 75 75 2239 1122 1122 2240 75 75 2240 272 272 2240 272 272 2241 75 75 2241 87 87 2241 272 272 2242 87 87 2242 273 273 2242 273 273 2243 87 87 2243 1123 1123 2243 273 273 2244 1123 1123 2244 274 274 2244 274 274 2245 1123 1123 2245 1125 1125 2245 274 274 2246 1125 1125 2246 1124 1124 2246 1124 1124 2247 1125 1125 2247 1126 1126 2247 1124 1124 2248 1126 1126 2248 1127 1127 2248 1127 1127 2249 1126 1126 2249 162 162 2249 1127 1127 2250 162 162 2250 1128 1128 2250 1128 1128 2251 162 162 2251 163 163 2251 1128 1128 2252 163 163 2252 276 276 2252 276 276 2253 163 163 2253 293 293 2253 276 276 2254 293 293 2254 1129 1129 2254 1129 1129 2255 293 293 2255 1130 1130 2255 1129 1129 2256 1130 1130 2256 278 278 2256 278 278 2257 1130 1130 2257 220 220 2257 278 278 2258 220 220 2258 279 279 2258 279 279 2259 220 220 2259 1131 1131 2259 279 279 2260 1131 1131 2260 280 280 2260 280 280 2261 1131 1131 2261 283 283 2261 280 280 2262 283 283 2262 1132 1132 2262 1132 1132 2263 283 283 2263 1133 1133 2263 1132 1132 2264 1133 1133 2264 282 282 2264 282 282 2265 1133 1133 2265 292 292 2265 5 5 2266 57 57 2266 427 427 2266 1176 1176 2267 428 428 2267 980 980 2267 980 980 2268 428 428 2268 1135 1135 2268 980 980 2269 1135 1135 2269 1134 1134 2269 1134 1134 2270 1135 1135 2270 1136 1136 2270 1134 1134 2271 1136 1136 2271 1137 1137 2271 1137 1137 2272 1136 1136 2272 1138 1138 2272 1137 1137 2273 1138 1138 2273 266 266 2273 266 266 2274 1138 1138 2274 1139 1139 2274 266 266 2275 1139 1139 2275 1117 1117 2275 1117 1117 2276 1139 1139 2276 433 433 2276 1117 1117 2277 433 433 2277 410 410 2277 410 410 2278 433 433 2278 1141 1141 2278 410 410 2279 1141 1141 2279 1140 1140 2279 1140 1140 2280 1141 1141 2280 435 435 2280 1140 1140 2281 435 435 2281 413 413 2281 413 413 2282 435 435 2282 437 437 2282 413 413 2283 437 437 2283 1143 1143 2283 1143 1143 2284 437 437 2284 1142 1142 2284 1143 1143 2285 1142 1142 2285 1144 1144 2285 1144 1144 2286 1142 1142 2286 438 438 2286 1144 1144 2287 438 438 2287 1145 1145 2287 1145 1145 2288 438 438 2288 1146 1146 2288 1145 1145 2289 1146 1146 2289 1147 1147 2289 1147 1147 2290 1146 1146 2290 440 440 2290 1147 1147 2291 440 440 2291 1148 1148 2291 1148 1148 2292 440 440 2292 1149 1149 2292 1148 1148 2293 1149 1149 2293 416 416 2293 416 416 2294 1149 1149 2294 443 443 2294 416 416 2295 443 443 2295 1150 1150 2295 1150 1150 2296 443 443 2296 1151 1151 2296 1150 1150 2297 1151 1151 2297 419 419 2297 419 419 2298 1151 1151 2298 1152 1152 2298 419 419 2299 1152 1152 2299 421 421 2299 421 421 2300 1152 1152 2300 445 445 2300 421 421 2301 445 445 2301 422 422 2301 422 422 2302 445 445 2302 446 446 2302 422 422 2303 446 446 2303 424 424 2303 424 424 2304 446 446 2304 447 447 2304 424 424 2305 447 447 2305 1153 1153 2305 1153 1153 2306 447 447 2306 449 449 2306 1153 1153 2307 449 449 2307 426 426 2307 426 426 2308 449 449 2308 451 451 2308 426 426 2309 451 451 2309 1154 1154 2309 1154 1154 2310 451 451 2310 1155 1155 2310 1154 1154 2311 1155 1155 2311 292 292 2311 976 976 2312 1157 1157 2312 1156 1156 2312 1156 1156 2313 1157 1157 2313 1159 1159 2313 1156 1156 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 968 968 2315 1158 1158 2316 968 968 2316 991 991 2316 991 991 2317 968 968 2317 1160 1160 2317 991 991 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 966 966 2319 1161 1161 2320 966 966 2320 989 989 2320 989 989 2321 966 966 2321 1163 1163 2321 989 989 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 988 988 2324 988 988 2325 1164 1164 2325 963 963 2325 988 988 2326 963 963 2326 1165 1165 2326 1165 1165 2327 963 963 2327 962 962 2327 1165 1165 2328 962 962 2328 985 985 2328 985 985 2329 962 962 2329 1166 1166 2329 985 985 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 960 960 2331 1167 1167 2332 960 960 2332 984 984 2332 984 984 2333 960 960 2333 959 959 2333 984 984 2334 959 959 2334 983 983 2334 983 983 2335 959 959 2335 1168 1168 2335 983 983 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 956 956 2339 1171 1171 2340 956 956 2340 982 982 2340 982 982 2341 956 956 2341 955 955 2341 982 982 2342 955 955 2342 1172 1172 2342 1172 1172 2343 955 955 2343 954 954 2343 1172 1172 2344 954 954 2344 981 981 2344 981 981 2345 954 954 2345 1173 1173 2345 981 981 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 5 5 2350 5 5 2351 1177 1177 2351 57 57 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/JET1/slam/f110_description/meshes/walker_racecourse.dae b/stack_master/config/JET1/slam/f110_description/meshes/walker_racecourse.dae new file mode 100755 index 0000000..84269f2 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/meshes/walker_racecourse.dae @@ -0,0 +1,506 @@ + + + + + Blender User + Blender 2.77.0 commit date:2016-04-05, commit time:18:12, hash:abf6f08 + + 2016-07-27T16:34:38 + 2016-07-27T16:34:38 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.273904 0.1081182 0.02791987 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.01523832 0.01630333 0.01550063 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.64 0.64 0.64 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0.8 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 609.6001 304.8 609.6001 0 304.8 0 609.6001 304.8 30175.2 0 304.8 30784.8 25603.2 304.8 30175.2 26212.8 304.8 30784.8 25603.2 304.8 609.6001 26212.8 304.8 0 5342.319 304.8 13012.63 5377.231 304.8 13081.88 6588.161 304.8 14169.09 5406.497 304.8 13310.42 5390.16 304.8 13386.23 5361.246 304.8 13458.18 5399.938 304.8 13156.03 5409.788 304.8 13232.94 3624.467 304.8 9360.415 3570.321 304.8 9272.057 2369.898 304.8 9883.703 24117.28 304.8 14785.5 23742.11 304.8 14414.03 22260.17 304.8 15680.97 23289.62 304.8 19994.42 23820.05 304.8 19470.24 22268.94 304.8 18354.05 1894.678 304.8 17151.7 1744.71 304.8 17539.68 3139.134 304.8 17820.35 12794.19 304.8 20730.74 17396.63 304.8 20175.11 11431.7 304.8 19012.63 12766.32 304.8 18513.77 3691.769 304.8 9439.215 5296.208 304.8 12950.29 22181.37 304.8 15613.67 23308.47 304.8 14112.88 22093.02 304.8 15559.53 22829.37 304.8 13891.07 21997.28 304.8 15519.87 22319.17 304.8 13755.27 21896.51 304.8 15495.68 24251.72 304.8 18862.15 24571.61 304.8 18188.51 22445.86 304.8 17996.85 24770.05 304.8 17469.67 22453.6 304.8 16147.95 22453.6 304.8 17896.01 22327.48 304.8 15759.77 22381.62 304.8 15848.13 24422.72 304.8 15216.13 22421.28 304.8 15943.87 24649.26 304.8 15693.01 22445.47 304.8 16044.64 24790.11 304.8 16201.83 24841.05 304.8 16727.33 22422.81 304.8 18095.32 22384.99 304.8 18189.12 22333.3 304.8 18276.04 8191.751 304.8 22382.09 8191.751 304.8 20175.11 3589.312 304.8 20730.74 3572.155 304.8 18517.61 3234.311 304.8 20585.15 3135.704 304.8 17930.87 1661.168 304.8 17947.17 3150.766 304.8 18040.42 1646.365 304.8 18362.87 3183.897 304.8 18145.92 1700.713 304.8 18775.26 3234.166 304.8 18244.42 1822.704 304.8 19172.93 3300.166 304.8 18333.15 2008.961 304.8 19544.86 3380.044 304.8 18409.62 2254.323 304.8 19880.75 3471.563 304.8 18471.68 2551.995 304.8 20171.29 2893.732 304.8 20408.43 2249.338 304.8 9592.644 3530.665 304.8 9176.317 2175.794 304.8 9286.31 3506.473 304.8 9075.55 2151.075 304.8 8972.242 3498.342 304.8 8972.242 2175.794 304.8 8658.173 3506.473 304.8 8868.932 2249.338 304.8 8351.838 3530.665 304.8 8768.167 2369.898 304.8 8060.78 3570.321 304.8 8672.426 2534.506 304.8 7792.165 3624.467 304.8 8584.068 2739.107 304.8 7552.606 3691.769 304.8 8505.269 5773.322 304.8 4518.393 5990.675 304.8 6206.362 6069.474 304.8 6139.06 22193.43 304.8 18421.32 22108.52 304.8 18476.27 22676.46 304.8 20418.86 22016.23 304.8 18517.61 21999.07 304.8 20730.74 17396.63 304.8 22382.09 2534.506 304.8 10152.32 2739.107 304.8 10391.88 5276.29 304.8 12929.06 3160.955 304.8 17711.94 3200.562 304.8 17608.69 2106.917 304.8 16793.96 3256.839 304.8 17513.5 2375.549 304.8 16476.38 3328.211 304.8 17429.04 5276.29 304.8 13575.64 5320.588 304.8 13524.21 6157.833 304.8 6084.914 6253.573 304.8 6045.258 5888.799 304.8 4419.766 6354.339 304.8 6021.066 6018.284 304.8 4340.417 6158.586 304.8 4282.302 6457.648 304.8 6012.935 6306.253 304.8 4246.85 21793.2 304.8 15487.55 21793.2 304.8 13709.55 15697.2 304.8 15487.55 15697.2 304.8 13709.55 15323.7 304.8 15458.15 15601.84 304.8 13702.04 14959.39 304.8 15370.69 15508.82 304.8 13679.71 14613.25 304.8 15227.31 15420.45 304.8 13643.1 14293.8 304.8 15031.56 15338.89 304.8 13593.12 14008.91 304.8 14788.23 15266.15 304.8 13531 13765.59 304.8 14503.34 15204.02 304.8 13458.26 13569.83 304.8 14183.9 15154.04 304.8 13376.7 13426.46 304.8 13837.76 15117.44 304.8 13288.32 13339 304.8 13473.45 15095.11 304.8 13195.31 13309.6 304.8 13099.95 15087.6 304.8 13099.95 13309.6 304.8 6673.335 15087.6 304.8 6673.335 13301.47 304.8 6570.026 15057.58 304.8 6291.885 13277.28 304.8 6469.26 14968.26 304.8 5919.828 13237.62 304.8 6373.52 14821.83 304.8 5566.325 13183.48 304.8 6285.162 14621.91 304.8 5240.08 13116.17 304.8 6206.362 14373.41 304.8 4949.126 13037.37 304.8 6139.06 14082.46 304.8 4700.628 12949.02 304.8 6084.914 13756.21 304.8 4500.705 12853.28 304.8 6045.258 13402.71 304.8 4354.278 12752.51 304.8 6021.066 13030.65 304.8 4264.956 12649.2 304.8 6012.935 12649.2 304.8 4234.935 6457.648 304.8 4234.935 914.4001 304.8 28126.14 914.4001 304.8 29870.4 3044.261 304.8 29870.4 3387.684 304.8 6832.188 3044.261 304.8 6832.188 3044.261 304.8 7175.611 23322.15 304.8 20033.44 23304.43 304.8 20045.71 23304.43 304.8 22299.51 17396.63 304.8 22436.06 17016.07 304.8 22299.51 13106.4 304.8 22299.51 13106.4 304.8 20896.73 3441.079 304.8 15339 3044.261 304.8 15339 3044.261 304.8 15735.82 2703.186 304.8 7516.686 2125.619 304.8 8650.227 2201.024 304.8 8336.14 914.4001 304.8 6832.188 2324.635 304.8 8037.717 2493.407 304.8 7762.305 3044.261 304.8 10768.87 2703.186 304.8 10427.8 914.4001 304.8 15339 2493.407 304.8 10182.18 2324.635 304.8 9906.765 2201.024 304.8 9608.342 2125.619 304.8 9294.256 2100.275 304.8 8972.242 4585.413 304.8 13524.21 4544.755 304.8 13458.18 4800.689 304.8 12821.26 4875.733 304.8 12801.72 4953 304.8 12795.15 5030.268 304.8 12801.72 5092.262 304.8 12816.87 5092.262 304.8 13687.82 5068.205 304.8 13694.79 4991.773 304.8 13707.9 4914.228 304.8 13707.9 4837.796 304.8 13694.79 4764.679 304.8 13668.96 4696.979 304.8 13631.14 4636.646 304.8 13582.43 4506.062 304.8 13156.03 4528.77 304.8 13081.88 4563.682 304.8 13012.63 4609.792 304.8 12950.29 4665.778 304.8 12896.63 4730.026 304.8 12853.2 4515.841 304.8 13386.23 4499.503 304.8 13310.42 4496.212 304.8 13232.94 2339.628 304.8 16440.46 1695.967 304.8 17525.38 1848.983 304.8 17129.51 2065.537 304.8 16764.5 1775.546 304.8 19191.82 914.4001 304.8 22299.51 1965.589 304.8 19571.31 2215.938 304.8 19914.02 1651.075 304.8 18786.07 1595.623 304.8 18365.29 1610.726 304.8 17941.14 3044.261 304.8 20543.71 2868.344 304.8 20452.43 2519.661 304.8 20210.47 7811.189 304.8 22285.11 5287.396 304.8 21393.98 5296.208 304.8 21403.71 4665.778 304.8 21350.05 4730.026 304.8 21306.63 3572.155 304.8 20778.56 5342.319 304.8 21466.06 5377.231 304.8 21535.3 5399.938 304.8 21609.45 5409.788 304.8 21686.37 5406.497 304.8 21763.84 5390.16 304.8 21839.65 4800.689 304.8 21274.69 4875.733 304.8 21255.15 4893.101 304.8 21252.51 5361.246 304.8 21911.6 5320.588 304.8 21977.64 5269.355 304.8 22035.85 4991.773 304.8 22161.32 4914.228 304.8 22161.32 3044.261 304.8 22299.51 5209.02 304.8 22084.57 5141.322 304.8 22122.38 5068.205 304.8 22148.22 4696.979 304.8 22084.57 4636.646 304.8 22035.85 4585.413 304.8 21977.64 4544.755 304.8 21911.6 4515.841 304.8 21839.65 4499.503 304.8 21763.84 4496.212 304.8 21686.37 4506.062 304.8 21609.45 4528.77 304.8 21535.3 4837.796 304.8 22148.22 4764.679 304.8 22122.38 3212.954 304.8 20631.24 4563.682 304.8 21466.06 4609.792 304.8 21403.71 8572.314 304.8 22299.51 8191.751 304.8 22436.06 13106.4 304.8 23951.77 17777.2 304.8 22299.51 23304.43 304.8 23951.77 12794.19 304.8 20784.71 22701.69 304.8 20462.95 21036.83 304.8 21306.63 21107.49 304.8 21274.69 21182.53 304.8 21255.15 21259.8 304.8 21248.57 21337.07 304.8 21255.15 21713.3 304.8 21763.84 21696.96 304.8 21839.65 21144.6 304.8 22148.22 21071.48 304.8 22122.38 21003.78 304.8 22084.57 20943.45 304.8 22035.85 20892.21 304.8 21977.64 20851.56 304.8 21911.6 20822.64 304.8 21839.65 20806.3 304.8 21763.84 20803.01 304.8 21686.37 20812.86 304.8 21609.45 21412.11 304.8 21274.69 21482.78 304.8 21306.63 21547.02 304.8 21350.05 20835.57 304.8 21535.3 20870.48 304.8 21466.06 20916.59 304.8 21403.71 20972.58 304.8 21350.05 22016.23 304.8 20778.56 21576.16 304.8 22035.85 21515.82 304.8 22084.57 21448.12 304.8 22122.38 21375 304.8 22148.22 21298.57 304.8 22161.32 21259.8 304.8 22162.97 21221.03 304.8 22161.32 21668.05 304.8 21911.6 21627.39 304.8 21977.64 21603.01 304.8 21403.71 21649.12 304.8 21466.06 21684.03 304.8 21535.3 21706.74 304.8 21609.45 21716.59 304.8 21686.37 25298.4 304.8 15339 24537.13 304.8 15339 24696.99 304.8 15675.61 24820.08 304.8 17478.49 25298.4 304.8 22299.51 24891.85 304.8 16727.28 24840.14 304.8 16192.97 24619.34 304.8 18205.93 24295.68 304.8 18887.62 23858.89 304.8 19502.99 23304.43 304.8 14055.25 23333.86 304.8 14068.88 25298.4 304.8 6832.188 23774.75 304.8 14375.1 24156.18 304.8 14752.83 24466.69 304.8 15190.71 23304.43 304.8 6832.188 22327.99 304.8 13705.24 22846.73 304.8 13843.33 21050.35 304.8 13658.75 21003.78 304.8 13631.14 15697.2 304.8 13658.75 20943.45 304.8 13582.43 20892.21 304.8 13524.21 20851.56 304.8 13458.18 20822.64 304.8 13386.23 20806.3 304.8 13310.42 20803.01 304.8 13232.94 20812.86 304.8 13156.03 15138.4 304.8 13099.95 20835.57 304.8 13081.88 15138.4 304.8 6832.188 20870.48 304.8 13012.63 20916.59 304.8 12950.29 20812.86 304.8 8875.918 20803.01 304.8 8952.837 20806.3 304.8 9030.314 15443.51 304.8 13597.84 15524.52 304.8 13631.4 15165.75 304.8 13272.63 15199.31 304.8 13353.64 15368.75 304.8 13552.03 15245.12 304.8 13428.4 15302.07 304.8 13495.08 15609.79 304.8 13651.87 20972.58 304.8 12896.63 21036.83 304.8 12853.2 21107.49 304.8 12821.26 20822.64 304.8 9106.12 15145.28 304.8 13187.36 20943.45 304.8 9302.32 21003.78 304.8 9351.037 21071.48 304.8 9388.856 20835.57 304.8 8801.772 20870.48 304.8 8732.528 20916.59 304.8 8670.181 21337.07 304.8 8521.619 21412.11 304.8 8541.159 21713.3 304.8 13310.42 21716.59 304.8 13232.94 21706.74 304.8 13156.03 21469.25 304.8 13658.75 21793.2 304.8 13658.75 21515.82 304.8 13631.14 21576.16 304.8 13582.43 21144.6 304.8 9414.689 21182.53 304.8 12801.72 21221.03 304.8 9427.794 20892.21 304.8 9244.108 20851.56 304.8 9178.075 21482.78 304.8 8573.1 21547.02 304.8 8616.524 21603.01 304.8 8670.181 21649.12 304.8 8732.528 21684.03 304.8 8801.772 21706.74 304.8 8875.918 21716.59 304.8 8952.837 21713.3 304.8 9030.314 21696.96 304.8 9106.12 21668.05 304.8 9178.075 21696.96 304.8 13386.23 21668.05 304.8 13458.18 21627.39 304.8 13524.21 20972.58 304.8 8616.524 21036.83 304.8 8573.1 21107.49 304.8 8541.159 21547.02 304.8 12896.63 21482.78 304.8 12853.2 21627.39 304.8 9244.108 21576.16 304.8 9302.32 21603.01 304.8 12950.29 21649.12 304.8 13012.63 21684.03 304.8 13081.88 21515.82 304.8 9351.037 21448.12 304.8 9388.856 21375 304.8 9414.689 21182.53 304.8 8521.619 21259.8 304.8 8515.041 21259.8 304.8 9429.442 21259.8 304.8 12795.15 21298.57 304.8 9427.794 21337.07 304.8 12801.72 21412.11 304.8 12821.26 20812.86 304.8 4595.813 13106.4 304.8 4231.059 13418.41 304.8 4305.965 20972.58 304.8 4336.417 13106.4 304.8 914.4001 20916.59 304.8 4390.075 20870.48 304.8 4452.422 21713.3 304.8 4750.208 21696.96 304.8 4826.014 21221.03 304.8 5147.688 21144.6 304.8 5134.583 21071.48 304.8 5108.749 21003.78 304.8 5070.93 20943.45 304.8 5022.213 20822.64 304.8 4826.014 20806.3 304.8 4750.208 15016.57 304.8 5904.13 20803.01 304.8 4672.731 13779.27 304.8 4455.441 14112.32 304.8 4659.53 20835.57 304.8 4521.665 21259.8 304.8 4234.935 21337.07 304.8 4241.511 23304.43 304.8 914.4001 21412.11 304.8 4261.051 21603.01 304.8 4390.075 21649.12 304.8 4452.422 21668.05 304.8 4897.968 21627.39 304.8 4964.001 21576.16 304.8 5022.213 20892.21 304.8 4964.001 20851.56 304.8 4897.968 15138.4 304.8 6673.335 15107.75 304.8 6283.938 14409.33 304.8 4913.205 14663.01 304.8 5210.22 14867.09 304.8 5543.262 21036.83 304.8 4292.993 21107.49 304.8 4261.051 21182.53 304.8 4241.511 21482.78 304.8 4292.993 21547.02 304.8 4336.417 21684.03 304.8 4521.665 21706.74 304.8 4595.813 21716.59 304.8 4672.731 21375 304.8 5134.583 21298.57 304.8 5147.688 21259.8 304.8 5149.335 21515.82 304.8 5070.93 21448.12 304.8 5108.749 5409.788 304.8 4672.731 5406.497 304.8 4750.208 5737.401 304.8 4482.472 5390.16 304.8 4826.014 5388.475 304.8 4831.397 4544.755 304.8 4897.968 4515.841 304.8 4826.014 5092.262 304.8 5127.609 5068.205 304.8 5134.583 4991.773 304.8 5147.688 4914.228 304.8 5147.688 4837.796 304.8 5134.583 4585.413 304.8 4964.001 3044.261 304.8 914.4001 5030.268 304.8 4241.511 5105.312 304.8 4261.051 5175.975 304.8 4292.993 5240.223 304.8 4336.417 4764.679 304.8 5108.749 4696.979 304.8 5070.93 4636.646 304.8 5022.213 4499.503 304.8 4750.208 4496.212 304.8 4672.731 4506.062 304.8 4595.813 4528.77 304.8 4521.665 4563.682 304.8 4452.422 4609.792 304.8 4390.075 4665.778 304.8 4336.417 4730.026 304.8 4292.993 4800.689 304.8 4261.051 4875.733 304.8 4241.511 4953 304.8 4234.935 5858.939 304.8 4378.667 5377.231 304.8 4521.665 5399.938 304.8 4595.813 6142.888 304.8 4233.988 6298.307 304.8 4196.675 6457.648 304.8 4184.135 5296.208 304.8 4390.075 5342.319 304.8 4452.422 5995.221 304.8 4295.154 12649.2 304.8 4184.135 13038.6 304.8 4214.781 914.4001 304.8 914.4001 3044.261 304.8 28126.14 914.4001 304.8 23951.77 3044.261 304.8 23951.77 4665.778 304.8 25568.96 4730.026 304.8 25525.53 4800.689 304.8 25493.59 4991.773 304.8 26380.23 5068.205 304.8 26367.12 13106.4 304.8 28126.14 4506.062 304.8 25828.35 4528.77 304.8 25754.2 4563.682 304.8 25684.96 4609.792 304.8 25622.61 4914.228 304.8 26380.23 4837.796 304.8 26367.12 4764.679 304.8 26341.29 4585.413 304.8 26196.54 4544.755 304.8 26130.5 4875.733 304.8 25474.05 4953 304.8 25467.47 5030.268 304.8 25474.05 5105.312 304.8 25493.59 5175.975 304.8 25525.53 5240.223 304.8 25568.96 5296.208 304.8 25622.61 5342.319 304.8 25684.96 5377.231 304.8 25754.2 4696.979 304.8 26303.47 4636.646 304.8 26254.75 4515.841 304.8 26058.55 4499.503 304.8 25982.75 4496.212 304.8 25905.27 5390.16 304.8 26058.55 5361.246 304.8 26130.5 5320.588 304.8 26196.54 5269.355 304.8 26254.75 5399.938 304.8 25828.35 5409.788 304.8 25905.27 5406.497 304.8 25982.75 5209.02 304.8 26303.47 5141.322 304.8 26341.29 21259.8 304.8 25467.47 21337.07 304.8 25474.05 23304.43 304.8 28126.14 21221.03 304.8 26380.23 20972.58 304.8 25568.96 21036.83 304.8 25525.53 21107.49 304.8 25493.59 21182.53 304.8 25474.05 21375 304.8 26367.12 21298.57 304.8 26380.23 21259.8 304.8 26381.87 21144.6 304.8 26367.12 21071.48 304.8 26341.29 21003.78 304.8 26303.47 20812.86 304.8 25828.35 20835.57 304.8 25754.2 21412.11 304.8 25493.59 21482.78 304.8 25525.53 21547.02 304.8 25568.96 20943.45 304.8 26254.75 20892.21 304.8 26196.54 20851.56 304.8 26130.5 20822.64 304.8 26058.55 20806.3 304.8 25982.75 20803.01 304.8 25905.27 20870.48 304.8 25684.96 20916.59 304.8 25622.61 21576.16 304.8 26254.75 21515.82 304.8 26303.47 21448.12 304.8 26341.29 21603.01 304.8 25622.61 21649.12 304.8 25684.96 21684.03 304.8 25754.2 21706.74 304.8 25828.35 21716.59 304.8 25905.27 21713.3 304.8 25982.75 21696.96 304.8 26058.55 21668.05 304.8 26130.5 21627.39 304.8 26196.54 13106.4 304.8 29870.4 23304.43 304.8 29870.4 25298.4 304.8 914.4001 25298.4 304.8 29870.4 25298.4 304.8 28126.14 25298.4 304.8 23951.77 21448.12 609.6 13668.96 21469.25 609.6 13658.75 21515.82 914.4 13631.14 21448.12 914.4 13668.96 21375 914.4 13694.79 21375 609.6 13694.79 21298.57 914.4 13707.9 21298.57 609.6 13707.9 21259.8 609.6 13709.55 21259.8 914.4 13709.55 21221.03 609.6 13707.9 21221.03 914.4 13707.9 21144.6 914.4 13694.79 21144.6 609.6 13694.79 21071.48 914.4 13668.96 21071.48 609.6 13668.96 21050.35 609.6 13658.75 21003.78 914.4 13631.14 20943.45 914.4 13582.43 20892.21 914.4 13524.21 20851.56 914.4 13458.18 20822.64 914.4 13386.23 20806.3 914.4 13310.42 20803.01 914.4 13232.94 20812.86 914.4 13156.03 20835.57 914.4 13081.88 20870.48 914.4 13012.63 20916.59 914.4 12950.29 20972.58 914.4 12896.63 21036.83 914.4 12853.2 21107.49 914.4 12821.26 21182.53 914.4 12801.72 21259.8 914.4 12795.15 21337.07 914.4 12801.72 21412.11 914.4 12821.26 21482.78 914.4 12853.2 21547.02 914.4 12896.63 21603.01 914.4 12950.29 21649.12 914.4 13012.63 21684.03 914.4 13081.88 21706.74 914.4 13156.03 21716.59 914.4 13232.94 21713.3 914.4 13310.42 21696.96 914.4 13386.23 21668.05 914.4 13458.18 21627.39 914.4 13524.21 21576.16 914.4 13582.43 5269.355 609.6 13582.43 5276.29 609.6 13575.64 5320.588 914.4 13524.21 5269.355 914.4 13582.43 5209.02 914.4 13631.14 5209.02 609.6 13631.14 5141.322 914.4 13668.96 5141.322 609.6 13668.96 5092.262 609.6 13687.82 5105.312 609.6 12821.26 5092.262 609.6 12816.87 5030.268 914.4 12801.72 5105.312 914.4 12821.26 5175.975 914.4 12853.2 5175.975 609.6 12853.2 5240.223 914.4 12896.63 5240.223 609.6 12896.63 5276.29 609.6 12929.06 5068.205 914.4 13694.79 4991.773 914.4 13707.9 4953 914.4 13709.55 5296.208 914.4 12950.29 5342.319 914.4 13012.63 5377.231 914.4 13081.88 5399.938 914.4 13156.03 5409.788 914.4 13232.94 5406.497 914.4 13310.42 5390.16 914.4 13386.23 5361.246 914.4 13458.18 4914.228 914.4 13707.9 4837.796 914.4 13694.79 4764.679 914.4 13668.96 4696.979 914.4 13631.14 4636.646 914.4 13582.43 4585.413 914.4 13524.21 4544.755 914.4 13458.18 4515.841 914.4 13386.23 4499.503 914.4 13310.42 4496.212 914.4 13232.94 4506.062 914.4 13156.03 4528.77 914.4 13081.88 4563.682 914.4 13012.63 4609.792 914.4 12950.29 4665.778 914.4 12896.63 4730.026 914.4 12853.2 4800.689 914.4 12821.26 4875.733 914.4 12801.72 4953 914.4 12795.15 609.6001 914.4 609.6001 25603.2 914.4 609.6001 609.6001 914.4 30175.2 25603.2 914.4 30175.2 25298.4 914.4 29870.4 25298.4 914.4 914.4001 914.4001 914.4 29870.4 914.4001 914.4 914.4001 21298.57 914.4 26380.23 21259.8 914.4 26381.87 21221.03 914.4 26380.23 21144.6 914.4 26367.12 21071.48 914.4 26341.29 21003.78 914.4 26303.47 20943.45 914.4 26254.75 20892.21 914.4 26196.54 20851.56 914.4 26130.5 20822.64 914.4 26058.55 20806.3 914.4 25982.75 20803.01 914.4 25905.27 20812.86 914.4 25828.35 20835.57 914.4 25754.2 20870.48 914.4 25684.96 20916.59 914.4 25622.61 20972.58 914.4 25568.96 21036.83 914.4 25525.53 21107.49 914.4 25493.59 21182.53 914.4 25474.05 21259.8 914.4 25467.47 21337.07 914.4 25474.05 21412.11 914.4 25493.59 21482.78 914.4 25525.53 21547.02 914.4 25568.96 21603.01 914.4 25622.61 21649.12 914.4 25684.96 21684.03 914.4 25754.2 21706.74 914.4 25828.35 21716.59 914.4 25905.27 21713.3 914.4 25982.75 21696.96 914.4 26058.55 21668.05 914.4 26130.5 21627.39 914.4 26196.54 21576.16 914.4 26254.75 21515.82 914.4 26303.47 21448.12 914.4 26341.29 21375 914.4 26367.12 21259.8 914.4 25924.67 21298.57 914.4 22161.32 21259.8 914.4 22162.97 21221.03 914.4 22161.32 21144.6 914.4 22148.22 21071.48 914.4 22122.38 21003.78 914.4 22084.57 20943.45 914.4 22035.85 20892.21 914.4 21977.64 20851.56 914.4 21911.6 20822.64 914.4 21839.65 20806.3 914.4 21763.84 20803.01 914.4 21686.37 20812.86 914.4 21609.45 20835.57 914.4 21535.3 20870.48 914.4 21466.06 20916.59 914.4 21403.71 20972.58 914.4 21350.05 21036.83 914.4 21306.63 21107.49 914.4 21274.69 21182.53 914.4 21255.15 21259.8 914.4 21248.57 21337.07 914.4 21255.15 21412.11 914.4 21274.69 21482.78 914.4 21306.63 21547.02 914.4 21350.05 21603.01 914.4 21403.71 21649.12 914.4 21466.06 21684.03 914.4 21535.3 21706.74 914.4 21609.45 21716.59 914.4 21686.37 21713.3 914.4 21763.84 21696.96 914.4 21839.65 21668.05 914.4 21911.6 21627.39 914.4 21977.64 21576.16 914.4 22035.85 21515.82 914.4 22084.57 21448.12 914.4 22122.38 21375 914.4 22148.22 21259.8 914.4 21705.77 21259.8 914.4 13252.35 21298.57 914.4 9427.794 21259.8 914.4 9429.442 21221.03 914.4 9427.794 21144.6 914.4 9414.689 21071.48 914.4 9388.856 21003.78 914.4 9351.037 20943.45 914.4 9302.32 20892.21 914.4 9244.108 20851.56 914.4 9178.075 20822.64 914.4 9106.12 20806.3 914.4 9030.314 20803.01 914.4 8952.837 20812.86 914.4 8875.918 20835.57 914.4 8801.772 20870.48 914.4 8732.528 20916.59 914.4 8670.181 20972.58 914.4 8616.524 21036.83 914.4 8573.1 21107.49 914.4 8541.159 21182.53 914.4 8521.619 21259.8 914.4 8515.041 21337.07 914.4 8521.619 21412.11 914.4 8541.159 21482.78 914.4 8573.1 21547.02 914.4 8616.524 21603.01 914.4 8670.181 21649.12 914.4 8732.528 21684.03 914.4 8801.772 21706.74 914.4 8875.918 21716.59 914.4 8952.837 21713.3 914.4 9030.314 21696.96 914.4 9106.12 21668.05 914.4 9178.075 21627.39 914.4 9244.108 21576.16 914.4 9302.32 21515.82 914.4 9351.037 21448.12 914.4 9388.856 21375 914.4 9414.689 21259.8 914.4 8972.242 21298.57 914.4 5147.688 21259.8 914.4 5149.335 21221.03 914.4 5147.688 21144.6 914.4 5134.583 21071.48 914.4 5108.749 21003.78 914.4 5070.93 20943.45 914.4 5022.213 20892.21 914.4 4964.001 20851.56 914.4 4897.968 20822.64 914.4 4826.014 20806.3 914.4 4750.208 20803.01 914.4 4672.731 20812.86 914.4 4595.813 20835.57 914.4 4521.665 20870.48 914.4 4452.422 20916.59 914.4 4390.075 20972.58 914.4 4336.417 21036.83 914.4 4292.993 21107.49 914.4 4261.051 21182.53 914.4 4241.511 21259.8 914.4 4234.935 21337.07 914.4 4241.511 21412.11 914.4 4261.051 21482.78 914.4 4292.993 21547.02 914.4 4336.417 21603.01 914.4 4390.075 21649.12 914.4 4452.422 21684.03 914.4 4521.665 21706.74 914.4 4595.813 21716.59 914.4 4672.731 21713.3 914.4 4750.208 21696.96 914.4 4826.014 21668.05 914.4 4897.968 21627.39 914.4 4964.001 21576.16 914.4 5022.213 21515.82 914.4 5070.93 21448.12 914.4 5108.749 21375 914.4 5134.583 21259.8 914.4 4692.135 4953 914.4 26381.87 4914.228 914.4 26380.23 4837.796 914.4 26367.12 4764.679 914.4 26341.29 4696.979 914.4 26303.47 4636.646 914.4 26254.75 4585.413 914.4 26196.54 4544.755 914.4 26130.5 4515.841 914.4 26058.55 4499.503 914.4 25982.75 4496.212 914.4 25905.27 4506.062 914.4 25828.35 4528.77 914.4 25754.2 4563.682 914.4 25684.96 4609.792 914.4 25622.61 4665.778 914.4 25568.96 4730.026 914.4 25525.53 4800.689 914.4 25493.59 4875.733 914.4 25474.05 4953 914.4 25467.47 5030.268 914.4 25474.05 5105.312 914.4 25493.59 5175.975 914.4 25525.53 5240.223 914.4 25568.96 5296.208 914.4 25622.61 5342.319 914.4 25684.96 5377.231 914.4 25754.2 5399.938 914.4 25828.35 5409.788 914.4 25905.27 5406.497 914.4 25982.75 5390.16 914.4 26058.55 5361.246 914.4 26130.5 5320.588 914.4 26196.54 5269.355 914.4 26254.75 5209.02 914.4 26303.47 5141.322 914.4 26341.29 5068.205 914.4 26367.12 4991.773 914.4 26380.23 4953 914.4 25924.67 4953 609.6 21248.57 4893.101 609.6 21252.51 4875.733 914.4 21255.15 4953 914.4 21248.57 5030.268 914.4 21255.15 5030.268 609.6 21255.15 5105.312 914.4 21274.69 5105.312 609.6 21274.69 5107.405 609.6 21275.43 5175.975 914.4 21306.63 5175.975 609.6 21306.63 5240.223 914.4 21350.05 5240.223 609.6 21350.05 5287.396 609.6 21393.98 4837.796 914.4 22148.22 4764.679 914.4 22122.38 4696.979 914.4 22084.57 4636.646 914.4 22035.85 4585.413 914.4 21977.64 4544.755 914.4 21911.6 4515.841 914.4 21839.65 4499.503 914.4 21763.84 4496.212 914.4 21686.37 4506.062 914.4 21609.45 4528.77 914.4 21535.3 4563.682 914.4 21466.06 4609.792 914.4 21403.71 4665.778 914.4 21350.05 4730.026 914.4 21306.63 4800.689 914.4 21274.69 5296.208 914.4 21403.71 5342.319 914.4 21466.06 5377.231 914.4 21535.3 5399.938 914.4 21609.45 5409.788 914.4 21686.37 5406.497 914.4 21763.84 5390.16 914.4 21839.65 5361.246 914.4 21911.6 5320.588 914.4 21977.64 5269.355 914.4 22035.85 5209.02 914.4 22084.57 5141.322 914.4 22122.38 5068.205 914.4 22148.22 4991.773 914.4 22161.32 4953 914.4 22162.97 4914.228 914.4 22161.32 4953 914.4 21705.77 4953 914.4 13252.35 5361.246 609.6 4897.968 5388.475 609.6 4831.397 5390.16 914.4 4826.014 5361.246 914.4 4897.968 5320.588 914.4 4964.001 5320.588 609.6 4964.001 5276.29 609.6 5015.424 5269.355 914.4 5022.213 5269.355 609.6 5022.213 5209.02 914.4 5070.93 5209.02 609.6 5070.93 5141.322 914.4 5108.749 5141.322 609.6 5108.749 5092.262 609.6 5127.609 5068.205 914.4 5134.583 4991.773 914.4 5147.688 4953 914.4 5149.335 4914.228 914.4 5147.688 4837.796 914.4 5134.583 4764.679 914.4 5108.749 4696.979 914.4 5070.93 4636.646 914.4 5022.213 4585.413 914.4 4964.001 4544.755 914.4 4897.968 4515.841 914.4 4826.014 4499.503 914.4 4750.208 4496.212 914.4 4672.731 4506.062 914.4 4595.813 4528.77 914.4 4521.665 4563.682 914.4 4452.422 4609.792 914.4 4390.075 4665.778 914.4 4336.417 4730.026 914.4 4292.993 4800.689 914.4 4261.051 4875.733 914.4 4241.511 4953 914.4 4234.935 5030.268 914.4 4241.511 5105.312 914.4 4261.051 5175.975 914.4 4292.993 5240.223 914.4 4336.417 5296.208 914.4 4390.075 5342.319 914.4 4452.422 5377.231 914.4 4521.665 5399.938 914.4 4595.813 5409.788 914.4 4672.731 5406.497 914.4 4750.208 4953 914.4 4692.135 15697.2 609.6 13658.75 15697.2 609.6 13709.55 21793.2 609.6 13709.55 3572.155 609.6 20778.56 8191.751 609.6 22436.06 8191.751 609.6 22382.09 3589.312 609.6 20730.74 2703.186 609.6 10427.8 2339.628 609.6 16440.46 5737.401 609.6 4482.472 2703.186 609.6 7516.686 5773.322 609.6 4518.393 5858.939 609.6 4378.667 5888.799 609.6 4419.766 5995.221 609.6 4295.154 6018.284 609.6 4340.417 6142.888 609.6 4233.988 6158.586 609.6 4282.302 6298.307 609.6 4196.675 6306.253 609.6 4246.85 6457.648 609.6 4184.135 6457.648 609.6 4234.935 12649.2 609.6 4184.135 12649.2 609.6 4234.935 13038.6 609.6 4214.781 13030.65 609.6 4264.956 13418.41 609.6 4305.965 13402.71 609.6 4354.278 13779.27 609.6 4455.441 13756.21 609.6 4500.705 14112.32 609.6 4659.53 14082.46 609.6 4700.628 14409.33 609.6 4913.205 14373.41 609.6 4949.126 14663.01 609.6 5210.22 14621.91 609.6 5240.08 14867.09 609.6 5543.262 14821.83 609.6 5566.325 15016.57 609.6 5904.13 14968.26 609.6 5919.828 15107.75 609.6 6283.938 15057.58 609.6 6291.885 15138.4 609.6 6673.335 15087.6 609.6 6673.335 15138.4 609.6 13099.95 15087.6 609.6 13099.95 15145.28 609.6 13187.36 15095.11 609.6 13195.31 15165.75 609.6 13272.63 15117.44 609.6 13288.32 15199.31 609.6 13353.64 15154.04 609.6 13376.7 15245.12 609.6 13428.4 15204.02 609.6 13458.26 15302.07 609.6 13495.08 15266.15 609.6 13531 15368.75 609.6 13552.03 15338.89 609.6 13593.12 15443.51 609.6 13597.84 15420.45 609.6 13643.1 15524.52 609.6 13631.4 15508.82 609.6 13679.71 15609.79 609.6 13651.87 15601.84 609.6 13702.04 22327.99 609.6 13705.24 21793.2 609.6 13658.75 12794.19 609.6 20730.74 12794.19 609.6 20784.71 17396.63 609.6 22382.09 17396.63 609.6 22436.06 21999.07 609.6 20730.74 22016.23 609.6 20778.56 22676.46 609.6 20418.86 22701.69 609.6 20462.95 23289.62 609.6 19994.42 23322.15 609.6 20033.44 23820.05 609.6 19470.24 23858.89 609.6 19502.99 24251.72 609.6 18862.15 24295.68 609.6 18887.62 24571.61 609.6 18188.51 24619.34 609.6 18205.93 24770.05 609.6 17469.67 24820.08 609.6 17478.49 24841.05 609.6 16727.33 24891.85 609.6 16727.28 24790.11 609.6 16201.83 24840.14 609.6 16192.97 24649.26 609.6 15693.01 24696.99 609.6 15675.61 24422.72 609.6 15216.13 24466.69 609.6 15190.71 24117.28 609.6 14785.5 24156.18 609.6 14752.83 23742.11 609.6 14414.03 23774.75 609.6 14375.1 23308.47 609.6 14112.88 23333.86 609.6 14068.88 22829.37 609.6 13891.07 22846.73 609.6 13843.33 22319.17 609.6 13755.27 2375.549 609.6 16476.38 2106.917 609.6 16793.96 2065.537 609.6 16764.5 1894.678 609.6 17151.7 1848.983 609.6 17129.51 1744.71 609.6 17539.68 1695.967 609.6 17525.38 1661.168 609.6 17947.17 1610.726 609.6 17941.14 1646.365 609.6 18362.87 1595.623 609.6 18365.29 1700.713 609.6 18775.26 1651.075 609.6 18786.07 1822.704 609.6 19172.93 1775.546 609.6 19191.82 2008.961 609.6 19544.86 1965.589 609.6 19571.31 2254.323 609.6 19880.75 2215.938 609.6 19914.02 2551.995 609.6 20171.29 2519.661 609.6 20210.47 2893.732 609.6 20408.43 2868.344 609.6 20452.43 3234.311 609.6 20585.15 3212.954 609.6 20631.24 2739.107 609.6 7552.606 2493.407 609.6 7762.305 2324.635 609.6 8037.717 2201.024 609.6 8336.14 2125.619 609.6 8650.227 2100.275 609.6 8972.242 2125.619 609.6 9294.256 2201.024 609.6 9608.342 2324.635 609.6 9906.765 2493.407 609.6 10182.18 2739.107 609.6 10391.88 2534.506 609.6 7792.165 2369.898 609.6 8060.78 2249.338 609.6 8351.838 2175.794 609.6 8658.173 2151.075 609.6 8972.242 2175.794 609.6 9286.31 2249.338 609.6 9592.644 2369.898 609.6 9883.703 2534.506 609.6 10152.32 3230.919 609.6 18126.7 3183.897 609.6 18145.92 3277.322 609.6 18217.62 3234.166 609.6 18244.42 3338.244 609.6 18299.52 3300.166 609.6 18333.15 3411.979 609.6 18370.11 3380.044 609.6 18409.62 3496.457 609.6 18427.4 3471.563 609.6 18471.68 3589.312 609.6 18469.8 3572.155 609.6 18517.61 8191.751 609.6 20121.14 8191.751 609.6 20175.11 11339.11 609.6 18991.88 11431.7 609.6 19012.63 6588.161 609.6 14240.93 6588.161 609.6 14169.09 3364.132 609.6 17464.96 3328.211 609.6 17429.04 3298.25 609.6 17542.93 3256.839 609.6 17513.5 3246.302 609.6 17630.8 3200.562 609.6 17608.69 3209.742 609.6 17726.1 3160.955 609.6 17711.94 3189.598 609.6 17826.16 3139.134 609.6 17820.35 3186.434 609.6 17928.19 3135.704 609.6 17930.87 3200.337 609.6 18029.32 3150.766 609.6 18040.42 8191.751 304.8 20121.14 11339.11 304.8 18991.88 6588.161 304.8 14240.93 3364.132 304.8 17464.96 3589.312 304.8 18469.8 3496.457 304.8 18427.4 3411.979 304.8 18370.11 3338.244 304.8 18299.52 3277.322 304.8 18217.62 3230.919 304.8 18126.7 3200.337 304.8 18029.32 3186.434 304.8 17928.19 3189.598 304.8 17826.16 3209.742 304.8 17726.1 3246.302 304.8 17630.8 3298.25 304.8 17542.93 4953 914.4 17989.65 4991.773 914.4 17988.01 4953 914.4 17532.45 4914.228 914.4 17988.01 4696.979 914.4 17911.25 4764.679 914.4 17949.07 4837.796 914.4 17974.9 4544.755 914.4 17738.29 4585.413 914.4 17804.32 4636.646 914.4 17862.53 4496.212 914.4 17513.05 4499.503 914.4 17590.53 4515.841 914.4 17666.33 4563.682 914.4 17292.74 4528.77 914.4 17361.98 4506.062 914.4 17436.13 4730.026 914.4 17133.31 4665.778 914.4 17176.74 4609.792 914.4 17230.39 4953 914.4 17075.25 4875.733 914.4 17081.83 4800.689 914.4 17101.37 5175.975 914.4 17133.31 5105.312 914.4 17101.37 5030.268 914.4 17081.83 5342.319 914.4 17292.74 5296.208 914.4 17230.39 5240.223 914.4 17176.74 5409.788 914.4 17513.05 5399.938 914.4 17436.13 5377.231 914.4 17361.98 5361.246 914.4 17738.29 5390.16 914.4 17666.33 5406.497 914.4 17590.53 5209.02 914.4 17911.25 5269.355 914.4 17862.53 5320.588 914.4 17804.32 5068.205 914.4 17974.9 5141.322 914.4 17949.07 4914.228 304.8 17988.01 4837.796 304.8 17974.9 4764.679 304.8 17949.07 4696.979 304.8 17911.25 4636.646 304.8 17862.53 4585.413 304.8 17804.32 4544.755 304.8 17738.29 4515.841 304.8 17666.33 4499.503 304.8 17590.53 4496.212 304.8 17513.05 4506.062 304.8 17436.13 4528.77 304.8 17361.98 4563.682 304.8 17292.74 4609.792 304.8 17230.39 4665.778 304.8 17176.74 4730.026 304.8 17133.31 4800.689 304.8 17101.37 4875.733 304.8 17081.83 4953 304.8 17075.25 5030.268 304.8 17081.83 5105.312 304.8 17101.37 5175.975 304.8 17133.31 5240.223 304.8 17176.74 5296.208 304.8 17230.39 5342.319 304.8 17292.74 5377.231 304.8 17361.98 5399.938 304.8 17436.13 5409.788 304.8 17513.05 5406.497 304.8 17590.53 5390.16 304.8 17666.33 5361.246 304.8 17738.29 5320.588 304.8 17804.32 5269.355 304.8 17862.53 5209.02 304.8 17911.25 5141.322 304.8 17949.07 5068.205 304.8 17974.9 4991.773 304.8 17988.01 3691.769 609.6 8505.269 3624.467 609.6 8584.068 3570.321 609.6 8672.426 3530.665 609.6 8768.167 3506.473 609.6 8868.932 3498.342 609.6 8972.242 3506.473 609.6 9075.55 3530.665 609.6 9176.317 3570.321 609.6 9272.057 3624.467 609.6 9360.415 3691.769 609.6 9439.215 12766.32 609.6 18513.77 17396.63 609.6 20175.11 22016.23 609.6 18517.61 22108.52 609.6 18476.27 22193.43 609.6 18421.32 22268.94 609.6 18354.05 22333.3 609.6 18276.04 22384.99 609.6 18189.12 22422.81 609.6 18095.32 22445.86 609.6 17996.85 22453.6 609.6 17896.01 22453.6 609.6 16147.95 22445.47 609.6 16044.64 22421.28 609.6 15943.87 22381.62 609.6 15848.13 22327.48 609.6 15759.77 22260.17 609.6 15680.97 22181.37 609.6 15613.67 22093.02 609.6 15559.53 21997.28 609.6 15519.87 21896.51 609.6 15495.68 21793.2 609.6 15487.55 15697.2 609.6 15487.55 15323.7 609.6 15458.15 14959.39 609.6 15370.69 14613.25 609.6 15227.31 14293.8 609.6 15031.56 14008.91 609.6 14788.23 13765.59 609.6 14503.34 13569.83 609.6 14183.9 13426.46 609.6 13837.76 13339 609.6 13473.45 13309.6 609.6 13099.95 13309.6 609.6 6673.335 13301.47 609.6 6570.026 13277.28 609.6 6469.26 13237.62 609.6 6373.52 13183.48 609.6 6285.162 13116.17 609.6 6206.362 13037.37 609.6 6139.06 12949.02 609.6 6084.914 12853.28 609.6 6045.258 12752.51 609.6 6021.066 12649.2 609.6 6012.935 6457.648 609.6 6012.935 6354.339 609.6 6021.066 6253.573 609.6 6045.258 6157.833 609.6 6084.914 6069.474 609.6 6139.06 5990.675 609.6 6206.362 6457.648 609.6 6063.735 6362.286 609.6 6071.24 6269.271 609.6 6093.571 6180.896 609.6 6130.178 6099.334 609.6 6180.158 6026.596 609.6 6242.283 3727.69 609.6 8541.19 3665.565 609.6 8613.928 3615.584 609.6 8695.489 3578.978 609.6 8783.865 3556.647 609.6 8876.879 3549.142 609.6 8972.242 3556.647 609.6 9067.605 3578.978 609.6 9160.619 3615.584 609.6 9248.995 3665.565 609.6 9330.555 3727.69 609.6 9403.294 12794.19 609.6 18469.8 17396.63 609.6 20121.14 21999.07 609.6 18469.8 22084.27 609.6 18431.63 22162.64 609.6 18380.91 22232.35 609.6 18318.82 22291.75 609.6 18246.81 22339.47 609.6 18166.57 22374.38 609.6 18079.99 22395.65 609.6 17989.09 22402.8 609.6 17896.01 22402.8 609.6 16147.95 22395.3 609.6 16052.59 22372.97 609.6 15959.57 22336.36 609.6 15871.2 22286.38 609.6 15789.63 22224.25 609.6 15716.89 22151.51 609.6 15654.77 22069.95 609.6 15604.79 21981.58 609.6 15568.18 21888.56 609.6 15545.85 21793.2 609.6 15538.35 15697.2 609.6 15538.35 15315.75 609.6 15508.33 14943.69 609.6 15419 14590.19 609.6 15272.58 14263.94 609.6 15072.65 13972.99 609.6 14824.16 13724.49 609.6 14533.2 13524.57 609.6 14206.96 13378.14 609.6 13853.45 13288.82 609.6 13481.4 13258.8 609.6 13099.95 13258.8 609.6 6673.335 13251.29 609.6 6577.973 13228.96 609.6 6484.958 13192.36 609.6 6396.583 13142.38 609.6 6315.021 13080.25 609.6 6242.283 13007.51 609.6 6180.158 12925.95 609.6 6130.178 12837.58 609.6 6093.571 12744.56 609.6 6071.24 12649.2 609.6 6063.735 3727.69 304.8 9403.294 3665.565 304.8 9330.555 3615.584 304.8 9248.995 3578.978 304.8 9160.619 3556.647 304.8 9067.605 3549.142 304.8 8972.242 3556.647 304.8 8876.879 3578.978 304.8 8783.865 3615.584 304.8 8695.489 3665.565 304.8 8613.928 3727.69 304.8 8541.19 12794.19 304.8 18469.8 17396.63 304.8 20121.14 21999.07 304.8 18469.8 22402.8 304.8 17896.01 22395.65 304.8 17989.09 22374.38 304.8 18079.99 22339.47 304.8 18166.57 22291.75 304.8 18246.81 22232.35 304.8 18318.82 22162.64 304.8 18380.91 22084.27 304.8 18431.63 22402.8 304.8 16147.95 21793.2 304.8 15538.35 21888.56 304.8 15545.85 21981.58 304.8 15568.18 22069.95 304.8 15604.79 22151.51 304.8 15654.77 22224.25 304.8 15716.89 22286.38 304.8 15789.63 22336.36 304.8 15871.2 22372.97 304.8 15959.57 22395.3 304.8 16052.59 15697.2 304.8 15538.35 13258.8 304.8 13099.95 13288.82 304.8 13481.4 13378.14 304.8 13853.45 13524.57 304.8 14206.96 13724.49 304.8 14533.2 13972.99 304.8 14824.16 14263.94 304.8 15072.65 14590.19 304.8 15272.58 14943.69 304.8 15419 15315.75 304.8 15508.33 13258.8 304.8 6673.335 12649.2 304.8 6063.735 12744.56 304.8 6071.24 12837.58 304.8 6093.571 12925.95 304.8 6130.178 13007.51 304.8 6180.158 13080.25 304.8 6242.283 13142.38 304.8 6315.021 13192.36 304.8 6396.583 13228.96 304.8 6484.958 13251.29 304.8 6577.973 6457.648 304.8 6063.735 6026.596 304.8 6242.283 6099.334 304.8 6180.158 6180.896 304.8 6130.178 6269.271 304.8 6093.571 6362.286 304.8 6071.24 4953 914.4 9429.442 4991.773 914.4 9427.794 4953 914.4 8972.242 4914.228 914.4 9427.794 4696.979 914.4 9351.037 4764.679 914.4 9388.856 4837.796 914.4 9414.689 4544.755 914.4 9178.075 4585.413 914.4 9244.108 4636.646 914.4 9302.32 4496.212 914.4 8952.837 4499.503 914.4 9030.314 4515.841 914.4 9106.12 4563.682 914.4 8732.528 4528.77 914.4 8801.772 4506.062 914.4 8875.918 4730.026 914.4 8573.1 4665.778 914.4 8616.524 4609.792 914.4 8670.181 4953 914.4 8515.041 4875.733 914.4 8521.619 4800.689 914.4 8541.159 5175.975 914.4 8573.1 5105.312 914.4 8541.159 5030.268 914.4 8521.619 5342.319 914.4 8732.528 5296.208 914.4 8670.181 5240.223 914.4 8616.524 5409.788 914.4 8952.837 5399.938 914.4 8875.918 5377.231 914.4 8801.772 5361.246 914.4 9178.075 5390.16 914.4 9106.12 5406.497 914.4 9030.314 5209.02 914.4 9351.037 5269.355 914.4 9302.32 5320.588 914.4 9244.108 5068.205 914.4 9414.689 5141.322 914.4 9388.856 21259.8 914.4 17989.65 21298.57 914.4 17988.01 21259.8 914.4 17532.45 21221.03 914.4 17988.01 21003.78 914.4 17911.25 21071.48 914.4 17949.07 21144.6 914.4 17974.9 20851.56 914.4 17738.29 20892.21 914.4 17804.32 20943.45 914.4 17862.53 20803.01 914.4 17513.05 20806.3 914.4 17590.53 20822.64 914.4 17666.33 20870.48 914.4 17292.74 20835.57 914.4 17361.98 20812.86 914.4 17436.13 21036.83 914.4 17133.31 20972.58 914.4 17176.74 20916.59 914.4 17230.39 21259.8 914.4 17075.25 21182.53 914.4 17081.83 21107.49 914.4 17101.37 21482.78 914.4 17133.31 21412.11 914.4 17101.37 21337.07 914.4 17081.83 21649.12 914.4 17292.74 21603.01 914.4 17230.39 21547.02 914.4 17176.74 21716.59 914.4 17513.05 21706.74 914.4 17436.13 21684.03 914.4 17361.98 21668.05 914.4 17738.29 21696.96 914.4 17666.33 21713.3 914.4 17590.53 21515.82 914.4 17911.25 21576.16 914.4 17862.53 21627.39 914.4 17804.32 21375 914.4 17974.9 21448.12 914.4 17949.07 4914.228 304.8 9427.794 4837.796 304.8 9414.689 4764.679 304.8 9388.856 4696.979 304.8 9351.037 4636.646 304.8 9302.32 4585.413 304.8 9244.108 4544.755 304.8 9178.075 4515.841 304.8 9106.12 4499.503 304.8 9030.314 4496.212 304.8 8952.837 4506.062 304.8 8875.918 4528.77 304.8 8801.772 4563.682 304.8 8732.528 4609.792 304.8 8670.181 4665.778 304.8 8616.524 4730.026 304.8 8573.1 4800.689 304.8 8541.159 4875.733 304.8 8521.619 4953 304.8 8515.041 5030.268 304.8 8521.619 5105.312 304.8 8541.159 5175.975 304.8 8573.1 5240.223 304.8 8616.524 5296.208 304.8 8670.181 5342.319 304.8 8732.528 5377.231 304.8 8801.772 5399.938 304.8 8875.918 5409.788 304.8 8952.837 5406.497 304.8 9030.314 5390.16 304.8 9106.12 5361.246 304.8 9178.075 5320.588 304.8 9244.108 5269.355 304.8 9302.32 5209.02 304.8 9351.037 5141.322 304.8 9388.856 5068.205 304.8 9414.689 4991.773 304.8 9427.794 21259.8 304.8 17989.65 21221.03 304.8 17988.01 21144.6 304.8 17974.9 21071.48 304.8 17949.07 21003.78 304.8 17911.25 20943.45 304.8 17862.53 20892.21 304.8 17804.32 20851.56 304.8 17738.29 20822.64 304.8 17666.33 20806.3 304.8 17590.53 20803.01 304.8 17513.05 20812.86 304.8 17436.13 20835.57 304.8 17361.98 20870.48 304.8 17292.74 20916.59 304.8 17230.39 20972.58 304.8 17176.74 21036.83 304.8 17133.31 21107.49 304.8 17101.37 21182.53 304.8 17081.83 21259.8 304.8 17075.25 21337.07 304.8 17081.83 21412.11 304.8 17101.37 21482.78 304.8 17133.31 21547.02 304.8 17176.74 21603.01 304.8 17230.39 21649.12 304.8 17292.74 21684.03 304.8 17361.98 21706.74 304.8 17436.13 21716.59 304.8 17513.05 21713.3 304.8 17590.53 21696.96 304.8 17666.33 21668.05 304.8 17738.29 21627.39 304.8 17804.32 21576.16 304.8 17862.53 21515.82 304.8 17911.25 21448.12 304.8 17949.07 21375 304.8 17974.9 21298.57 304.8 17988.01 26212.8 0 30784.8 26212.8 0 0 0 0 30784.8 0 0 0 15087.6 304.8001 10113.62 13309.6 304.8001 10113.62 14198.48 304.8001 10113.62 15087.6 304.8001 10372.94 13309.6 304.8001 10372.94 14198.48 304.8001 10372.94 15087.6 304.8001 10243.28 13309.6 304.8001 10243.28 14198.48 304.8001 10243.28 13754.04 304.8001 10113.62 14643.04 304.8001 10113.62 13754.04 304.8001 10372.94 14643.04 304.8001 10372.94 14643.04 304.8001 10243.28 13754.04 304.8001 10243.28 15087.6 304.8001 10178.45 13309.6 304.8001 10178.45 14198.48 304.8001 10178.45 13531.82 304.8001 10113.62 14865.32 304.8001 10113.62 13531.82 304.8001 10372.94 14865.32 304.8001 10372.94 15087.6 304.8001 10308.11 13309.6 304.8001 10308.11 14198.48 304.8001 10308.11 13976.26 304.8001 10113.62 14420.76 304.8001 10113.62 13976.26 304.8001 10372.94 14420.76 304.8001 10372.94 14865.32 304.8001 10243.28 14420.76 304.8001 10243.28 14643.04 304.8001 10178.45 14643.04 304.8001 10308.11 13754.04 304.8001 10178.45 13754.04 304.8001 10308.11 13531.82 304.8001 10243.28 13976.26 304.8001 10243.28 13976.26 304.8001 10308.11 13531.82 304.8001 10308.11 13531.82 304.8001 10178.45 14420.76 304.8001 10308.11 14420.76 304.8001 10178.45 14865.32 304.8001 10178.45 14865.32 304.8001 10308.11 13976.26 304.8001 10178.45 13420.71 304.8001 10113.62 14976.46 304.8001 10113.62 13420.71 304.8001 10372.94 14976.46 304.8001 10372.94 13865.15 304.8001 10113.62 14531.9 304.8001 10113.62 13865.15 304.8001 10372.94 14531.9 304.8001 10372.94 14976.46 304.8001 10243.28 14531.9 304.8001 10243.28 13420.71 304.8001 10243.28 13865.15 304.8001 10243.28 13642.93 304.8001 10113.62 14754.18 304.8001 10113.62 13642.93 304.8001 10372.94 14754.18 304.8001 10372.94 14087.37 304.8001 10113.62 14309.62 304.8001 10113.62 14087.37 304.8001 10372.94 14309.62 304.8001 10372.94 14754.18 304.8001 10243.28 14309.62 304.8001 10243.28 13642.93 304.8001 10243.28 14087.37 304.8001 10243.28 13865.15 304.8001 10308.11 14087.37 304.8001 10308.11 13420.71 304.8001 10308.11 13642.93 304.8001 10308.11 13420.71 304.8001 10178.45 13642.93 304.8001 10178.45 14531.9 304.8001 10308.11 14309.62 304.8001 10308.11 14531.9 304.8001 10178.45 14309.62 304.8001 10178.45 14976.46 304.8001 10178.45 14754.18 304.8001 10178.45 14976.46 304.8001 10308.11 14754.18 304.8001 10308.11 13865.15 304.8001 10178.45 14087.37 304.8001 10178.45 + + + + + + + + + + 0 1 0 0 1 -1.36195e-6 0 1 2.69182e-7 0 1 9.60032e-7 0 1 -1.19947e-7 0 1 1.66854e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.13176e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86357e-7 0 1 0 0 1 2.18864e-7 0 1 0 0 1 0 0 1 -2.14779e-7 0 1 2.02566e-7 0 1 0 0 1 0 0 1 4.03013e-7 0 1 0 0 1 -3.86322e-7 0 1 0 0 1 0 0 1 3.51669e-7 0 1 0 0 1 0 0 1 0 0 1 1.47708e-7 0 1 -1.82424e-7 0 1 0 0 1 2.42063e-7 0 1 -1.47707e-7 0 1 2.0698e-7 0 1 0 0 1 -2.66618e-7 0 1 1.47707e-7 0 1 0 0 1 2.52587e-7 0 1 0 0 1 -1.4109e-7 0 1 0 0 1 0 0 1 -1.47707e-7 0 1 0 0 1 -4.49039e-7 0 1 -2.72226e-7 0 1 0 0 1 0 0 1 1.31561e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.84307e-7 0 1 0 0 1 1.61267e-7 0 1 0 0 1 1.95822e-7 0 1 -1.26713e-7 0 1 -4.95321e-7 0 1 4.26209e-7 0 1 0 0 1 -6.80518e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.40266e-7 0 1 3.40266e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86662e-7 0 1 3.79746e-7 0 1 -5.70014e-7 0 1 -8.30863e-7 0 1 -1.23531e-7 0 1 4.06975e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -2.33059e-7 0 1 0 0 1 -4.47898e-7 0 1 1.47255e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.94378e-6 0 1 5.35069e-7 0 1 2.62896e-7 0 1 -6.99035e-7 0 1 -2.48655e-7 0 1 1.63782e-7 0 1 -8.41199e-7 0 1 5.74106e-7 0 1 -3.25127e-6 0 1 6.68142e-7 0 1 0 0 1 -2.55171e-7 0 1 -2.09289e-7 0 1 -1.44906e-7 0 1 0 0 1 0 0 1 0 0 1 -4.08287e-7 0 1 -1.47309e-7 0 1 6.80571e-7 0 1 -7.0972e-7 0 1 1.67399e-6 0 1 0 0 1 -4.80344e-7 0 1 3.44634e-7 0 1 -2.00338e-7 0 1 0 0 1 -1.52528e-7 0 1 0 0 1 -4.00417e-7 0 1 -1.60696e-7 0 1 2.32111e-7 0 1 0 0 1 0 0 1 -3.18761e-7 0 1 0 0 1 0 0 1 -2.63805e-7 0 1 2.15004e-7 0 1 1.50717e-7 0 1 1.42572e-7 0 1 -1.92404e-7 0 1 -3.15719e-6 0 1 3.54195e-6 0 1 -2.59503e-6 0 1 0 0 1 -2.05381e-7 0 1 2.61852e-7 0 1 -3.77799e-7 0 1 -1.26857e-7 0 1 0 0 1 1.51319e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.69175e-6 0 1 -5.85532e-7 0 1 5.43053e-7 0 1 -7.17334e-7 0 1 0 0 1 2.01279e-7 0 1 0 0 1 1.24325e-7 0 1 0 0 1 -5.45718e-7 0 1 -4.1768e-7 0 1 -1.76178e-7 0 1 0 0 1 4.30178e-7 0 1 -3.37058e-7 0 1 1.64426e-7 0 1 0 0 1 0 0 1 7.37446e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.27513e-7 0 1 0 0 1 0 0 1 1.63064e-7 0 1 0 0 1 0 0 1 0 0 1 -2.50256e-7 0 1 0 0 1 2.37914e-7 0 1 -3.07842e-7 0 1 4.01381e-7 0 1 0 0 1 0 0 1 5.99026e-7 0 1 -5.81391e-7 0 1 0 0 1 0 0 1 -6.0316e-7 0 1 0 0 1 0 0 1 0 0 1 -4.04567e-7 0 1 0 0 1 0 0 1 1.10553e-6 0 1 -8.95172e-7 0 1 5.72646e-7 0 1 -3.88634e-7 0 1 -5.46157e-7 0 1 1.60839e-7 0 1 -2.29594e-7 0 1 4.47285e-7 0 1 -6.41062e-7 0 1 0 0 1 -1.24665e-7 0 1 0 0 1 -1.21222e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 8.90567e-7 0 1 -2.54036e-7 0 1 0 0 1 0 0 1 -2.89199e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.45397e-7 0 1 -3.98484e-7 0 1 6.31295e-7 0 1 0 0 1 0 0 1 -5.39227e-6 0 1 -8.04815e-7 0 1 3.58849e-7 0 1 0 0 1 0 0 1 -2.54038e-7 0 1 1.60025e-7 0 1 0 0 1 0 0 1 0 0 1 -3.90913e-7 0 1 1.34628e-7 0 1 0 0 1 0 0 1 0 0 1 -1.60208e-7 0 1 0 0 1 2.24115e-7 0 1 -4.78945e-7 0 1 -1.41553e-7 0 1 2.16425e-7 0 1 9.76196e-7 0 1 0 0 1 3.6213e-7 0 1 -2.74968e-7 0 1 2.16809e-7 0 1 2.14425e-7 0 1 0 0 1 1.6284e-7 0 1 -2.84007e-7 0 1 0 0 1 -1.76013e-7 0 1 3.70969e-7 0 1 2.23278e-7 0 1 0 0 1 2.10879e-7 0 1 5.23008e-7 0 1 -3.96383e-7 0 1 3.44815e-7 0 1 0 0 1 -3.42936e-7 0 1 2.01671e-7 0 1 4.15565e-7 0 1 1.27353e-7 0 1 -3.36209e-7 0 1 0 0 1 0 0 1 0 0 1 -4.40803e-7 0 1 1.52909e-7 0 1 -8.13019e-7 0 1 4.08692e-7 0 1 1.5212e-7 0 1 2.90774e-7 0 1 -4.91629e-7 0 1 4.54566e-7 0 1 -3.51698e-7 0 1 7.08594e-7 0 1 0 0 1 1.12233e-6 0 1 -3.42933e-7 0 1 0 0 1 -1.61029e-7 0 1 -6.78246e-7 0 1 -3.85095e-7 0 1 6.07892e-7 0 1 -2.08514e-6 0 1 1.51015e-7 0 1 -1.29571e-7 0 1 4.77127e-7 0 1 3.45905e-7 0 1 0 0 1 3.04233e-7 0 1 0 0 1 1.27847e-7 0 1 -8.26306e-7 0 1 2.90771e-7 0 1 -8.35958e-7 0 1 0 0 1 -1.52408e-7 0 1 0 0 1 0 0 1 -1.81308e-7 0 1 0 0 1 0 0 1 1.45177e-7 0 1 0 0 1 0 0 1 -1.19284e-7 0 1 0 0.4350869 0.01505959 0.9002625 0.4876925 0 0.8730156 0.3331517 0 0.9428732 0.3331328 0 0.94288 0.1689983 0 0.9856163 0.1689983 0 0.9856164 0.04244089 0 0.999099 -0.0424388 0 0.9990991 -0.1689983 0 0.9856163 -0.1689983 0 0.9856164 -0.3331407 0 0.9428772 -0.3331596 0 0.9428705 -0.5099561 0 0.8602005 -0.4351604 0 0.900353 -0.4876819 0.004563927 0.8730095 -0.5099336 0 0.8602138 -0.628227 0 0.7780301 -0.6282016 0 0.7780508 -0.7506508 0 0.6606993 -0.7506508 0 0.6606992 -0.8515417 0 0.5242871 -0.8515416 0 0.524287 -0.9278891 0 0.3728566 -0.9278861 0 0.3728639 -0.9775547 0 0.2106818 -0.9775547 0 0.2106819 -0.9991002 0 0.04241389 -0.9991001 0 0.04241478 -0.9919003 0 -0.1270194 -0.9919006 0 -0.1270167 -0.9561694 0 -0.2928141 -0.8929209 0 -0.4502136 -0.8929209 0 -0.4502136 -0.804001 0 -0.5946282 -0.8040084 0 -0.594618 -0.6919487 0 -0.7219467 -0.5599701 0 -0.8285129 -0.55997 0 -0.8285129 -0.4118942 0 -0.9112318 -0.2519842 0 -0.9677314 -0.2519842 0 -0.9677314 -0.08480596 0 -0.9963975 -0.08482694 0 -0.9963957 0.08482909 0 -0.9963956 0.08480811 0 -0.9963973 0.2519842 0 -0.9677314 0.2519842 0 -0.9677314 0.4118847 0 -0.9112361 0.4118847 0 -0.9112361 0.5599701 0 -0.8285129 0.55997 0 -0.8285129 0.6919487 0 -0.7219467 0.8039963 0 -0.5946344 0.8039889 0 -0.5946444 0.8929209 0 -0.4502136 0.8929209 0 -0.4502136 0.9561694 0 -0.2928141 0.9919006 0 -0.1270167 0.9919003 0 -0.1270194 0.999098 0 0.04246503 0.9990981 0 0.04246413 0.9775599 0 0.2106578 0.9775599 0 0.2106578 0.9278774 0 0.3728855 0.9278803 0 0.3728783 0.8515417 0 0.5242871 0.8515416 0 0.524287 0.7506633 0 0.6606851 0.6282138 0 0.7780408 0.6282394 0 0.7780202 0.5099132 0 0.8602259 0.5099244 0 0.8602193 0.6995408 0.01884025 0.7143443 0.7506726 0 0.6606744 0.6281984 0 0.7780532 0.6282242 0 0.7780325 0.4876925 0 0.8730155 0.4877085 0 0.8730066 0.2784087 0 0.9604627 0.3188757 0.01775956 -0.9476302 0.2519843 0 -0.9677314 0.4118766 0 -0.9112397 0.4119117 0 -0.9112238 0.5599671 0 -0.8285149 0.5599672 0 -0.8285148 0.7292699 0 -0.6842263 0.3588242 0 0.9334052 0.333148 0.004719853 0.9428628 0.2784088 0 0.9604627 0.1689983 0 0.9856164 0.04243874 0 0.9990991 0 -0.002700865 0.9999964 0.6686147 0 -0.7436091 0.6919289 0.005069017 -0.7219479 0.7293226 0 -0.68417 0.8040053 0 -0.5946222 0.8039979 0 -0.5946322 0.9990991 0 0.04243993 0.9990991 0 0.04243898 0.977556 0 0.2106758 0.9278883 0 0.3728585 0.9278912 0 0.3728511 0.8515305 0 0.5243053 0.7576253 0 0.6526898 0.7576407 0 0.6526719 -0.04243981 0 0.999099 -0.1689993 0 0.9856163 -0.1689993 0 0.9856162 -0.3331309 0 0.9428807 -0.3331308 0 0.9428806 -0.4877192 0 0.8730006 -0.4876871 0 0.8730186 -0.6282332 0 0.7780251 -0.6282076 0 0.7780457 -0.7506695 0 0.6606779 -0.7506695 0 0.660678 -0.8515305 0 0.5243053 -0.9278912 0 0.3728511 -0.9278883 0 0.3728585 -0.9775534 0 0.2106879 -0.9775535 0 0.2106879 -0.9990991 0 0.04243904 -0.9990991 0 0.04243987 -0.9918987 0 -0.1270318 -0.991899 0 -0.1270291 -0.8040038 0 -0.5946241 -0.8040114 0 -0.5946139 -0.6919393 0 -0.7219558 -0.6919394 0 -0.7219557 -0.4118918 0 -0.9112328 -0.2519857 0 -0.967731 -0.2519857 0 -0.967731 -0.08480703 0 -0.9963974 -0.08482801 0 -0.9963957 0.08482694 0 -0.9963957 0.08480596 0 -0.9963975 0.2373676 0 -0.97142 0.2373797 0 -0.971417 0 0 -1 -1 0 0 0 0 1 -1 6.28758e-6 0 1 0 0 1 1.96487e-7 0 1 2.35675e-7 0 1 0 0 1 -1.92836e-7 0 0.04244089 0 0.999099 -0.04243874 0 0.9990991 -0.04252314 0 0.9990956 -0.1689777 0 0.9856199 -0.1690188 0 0.9856128 -0.3331031 0 0.9428904 -0.3331783 0 0.9428638 -0.4876548 0 0.8730366 -0.7506693 0 0.6606783 -0.7506323 0 0.6607202 -0.8515533 0 0.5242682 -0.9278831 0 0.3728712 -0.9775528 0 0.2106906 -0.9775566 0 0.2106732 -0.9991002 0 0.04241389 -0.991901 0 -0.1270141 -0.9561676 0 -0.2928201 -0.9561713 0 -0.2928082 -0.8039935 0 -0.5946382 -0.6919267 0 -0.7219678 -0.5599846 0 -0.8285031 -0.5599845 0 -0.8285031 -0.4119117 0 -0.9112238 -0.4118415 0 -0.9112556 -0.08478492 0 -0.9963993 0.08478707 0 -0.9963991 0.411832 0 -0.9112598 0.4119022 0 -0.9112281 0.5599846 0 -0.8285031 0.5599845 0 -0.8285031 0.6919267 0 -0.7219678 0.8039814 0 -0.5946545 0.9561713 0 -0.2928082 0.9561676 0 -0.2928201 0.991901 0 -0.1270141 0.9990981 0 0.04246413 0.9775618 0 0.2106491 0.977558 0 0.2106665 0.9278745 0 0.3728929 0.8515533 0 0.5242681 0.7506448 0 0.6607061 0.7506818 0 0.6606641 0.487644 0 0.8730426 0.4877086 0 0.8730066 0.3331704 0 0.9428667 0.3330952 0 0.9428933 0.1690188 0 0.9856128 0.1689777 0 0.98562 0.04252529 0 0.9990954 0 1 4.42303e-7 0 1 1.76919e-6 0 1 -1.54797e-6 0 1 6.63475e-7 0 1 4.97587e-7 0 1 -9.95181e-7 0 1 -2.21148e-7 0 1 -8.84618e-7 0 1 -4.42309e-7 0 1 4.42287e-7 0 1 8.84618e-7 0 1 -4.42279e-7 0 1 -8.84624e-7 0 1 2.21151e-7 0 1 -1.76921e-6 0 1 1.54806e-6 0 1 -1.43748e-6 0 1 -1.76916e-6 0 1 7.18742e-7 0 1 1.79687e-7 0 1 1.76934e-6 0 1 -1.32689e-6 0 1 1.10575e-6 0 1 4.42284e-7 0 1 -6.63428e-7 -0.0423544 0 0.9991027 -0.1690188 0 0.9856128 -0.6282014 0 0.7780508 -0.6282528 0 0.7780094 -0.7506324 0 0.6607202 -0.7506693 0 0.6606782 -0.85153 0 0.5243059 -0.9278891 0 0.3728566 -0.9991001 0 0.04241567 -0.9919017 0 -0.1270087 -0.956164 0 -0.2928319 -0.8929381 0 -0.4501796 -0.5599555 0 -0.8285228 -0.4118765 0 -0.9112397 -0.2519446 0 -0.9677417 0.2519446 0 -0.9677417 0.4119023 0 -0.9112281 0.4118671 0 -0.911244 0.5599555 0 -0.8285228 0.892938 0 -0.4501796 0.956164 0 -0.2928319 0.9919017 0 -0.1270087 0.999098 0 0.04246592 0.9278803 0 0.3728782 0.8515301 0 0.5243059 0.6282651 0 0.7779995 0.6282138 0 0.7780408 0.1690188 0 0.9856128 0.04235649 0 0.9991025 0 1 6.63473e-7 0 1 4.97597e-7 0 1 -9.95167e-7 0 1 -2.21154e-7 0 1 -9.95152e-7 0 1 -4.42302e-7 0 1 4.42292e-7 0 1 -4.42298e-7 0 1 -1.76917e-6 0 1 1.5481e-6 0 1 -1.43745e-6 0 1 -1.76914e-6 0 1 7.18757e-7 0 1 1.10576e-6 0 1 -1.54798e-6 0 1 -9.95195e-7 0 1 -8.84611e-7 0 1 4.4229e-7 0 1 4.42278e-7 0 1 8.84567e-7 0 1 -8.84586e-7 0 1 2.21164e-7 0 1 -1.76924e-6 0.04248309 0 0.9990972 -0.04248094 0 0.9990974 -0.1689983 0 0.9856164 -0.3331595 0 0.9428705 -0.3331219 0 0.9428838 -0.4877031 0 0.8730096 -0.6282272 0 0.7780301 -0.8515359 0 0.5242965 -0.9775538 0 0.2106862 -0.9775538 0 0.2106862 -0.8929253 0 -0.4502052 -0.8929253 0 -0.4502052 -0.8039935 0 -0.5946383 -0.6919377 0 -0.7219572 -0.2519644 0 -0.9677366 -0.252004 0 -0.9677262 0.252004 0 -0.9677263 0.2519644 0 -0.9677366 0.6919377 0 -0.7219572 0.8039813 0 -0.5946546 0.8929253 0 -0.4502052 0.8929253 0 -0.4502052 0.9775589 0 0.2106622 0.977559 0 0.2106621 0.8515358 0 0.5242965 0.6282395 0 0.7780202 0.4876763 0 0.8730247 0.4876924 0 0.8730155 0.333114 0 0.9428867 0.3331516 0 0.9428733 0 1 4.42312e-7 0 1 1.76924e-6 0 1 4.9759e-7 0 1 -4.42292e-7 0 1 -4.42276e-7 0 1 -1.7692e-6 0 1 7.18747e-7 0 1 4.42282e-7 -0.3331501 0 0.9428738 -0.487695 0 0.8730141 -0.4877032 0 0.8730096 -0.6282206 0 0.7780354 -0.6282143 0 0.7780404 -0.9278861 0 0.372864 -0.9919008 0 -0.1270154 -0.9561685 0 -0.2928171 -0.8040009 0 -0.5946282 -0.6919432 0 -0.721952 -0.5599774 0 -0.828508 -0.4119029 0 -0.9112278 -0.2519743 0 -0.9677339 -0.2519743 0 -0.9677339 -0.08481645 0 -0.9963967 -0.08480596 0 -0.9963975 0.08480805 0 -0.9963973 0.0848186 0 -0.9963964 0.2519743 0 -0.9677339 0.2519743 0 -0.9677339 0.4118934 0 -0.9112321 0.5599773 0 -0.828508 0.6919432 0 -0.721952 0.8039888 0 -0.5946446 0.9561685 0 -0.2928171 0.9919008 0 -0.1270154 0.9278774 0 0.3728856 0.6282266 0 0.7780305 0.628233 0 0.7780253 0.4876924 0 0.8730155 0.4876844 0 0.8730201 0.3331422 0 0.9428766 0.3331328 0 0.94288 0 1 4.4232e-7 0 1 6.63463e-7 0 1 4.97594e-7 0 1 -9.9516e-7 0 1 -2.2115e-7 0 1 -8.84599e-7 0 1 4.42273e-7 0 1 1.54807e-6 0 1 -1.43747e-6 0 1 7.18752e-7 0 1 1.79684e-7 0 1 4.42296e-7 -0.04252421 0 0.9990954 -0.1689788 0 0.9856197 -0.1690198 0 0.9856126 -0.3330933 0 0.942894 -0.3331685 0 0.9428673 -0.750688 0 0.6606569 -0.750651 0 0.660699 -0.8515421 0 0.5242864 -0.9278853 0 0.3728658 -0.9775515 0 0.2106966 -0.9775553 0 0.2106792 -0.9990991 0 0.04243898 -0.9918994 0 -0.1270265 -0.8039965 0 -0.5946342 -0.6919172 0 -0.7219769 -0.4119093 0 -0.9112249 -0.411839 0 -0.9112566 -0.08478599 0 -0.9963992 0.08478498 0 -0.9963993 0.4118415 0 -0.9112556 0.4119117 0 -0.9112238 0.5599816 0 -0.8285051 0.5599817 0 -0.828505 0.8039905 0 -0.5946424 0.9990991 0 0.04243904 0.9775579 0 0.2106671 0.9775542 0 0.2106845 0.9278853 0 0.3728657 0.8515421 0 0.5242864 0.7506541 0 0.6606954 0.7506911 0 0.6606534 0.628224 0 0.7780326 0.4876601 0 0.8730336 0.4877246 0 0.8729976 0.04252314 0 0.9990956 0 -0.002704083 0.9999964 0 1 -8.84605e-7 0 1 4.42292e-7 0 1 8.84621e-7 0 1 0 0 1 1.32693e-6 0 1 -2.21149e-7 0 1 6.6346e-7 0 1 8.8463e-7 0 1 -4.42296e-7 0 1 -8.84593e-7 0 1 -2.21149e-7 0 1 3.31729e-7 0 1 9.95175e-7 0 1 -1.32691e-6 0 1 2.2115e-7 0 1 8.84585e-7 0 1 4.42305e-7 0 1 -2.21153e-7 -0.06563907 0.004892766 -0.9978315 -0.08482801 0 -0.9963957 0.084827 0 -0.9963957 0.08478498 0 -0.9963993 0.3366506 0 -0.9416297 0.4118765 5.9629e-4 -0.9112395 0.4141265 0 -0.9102194 0.5599527 0 -0.8285247 0.7410519 0 -0.6714478 -0.6282076 0 0.7780458 -0.6282589 0 0.7780044 -0.7506511 0 0.660699 -0.750688 0 0.660657 -0.8515188 0 0.5243241 -0.9278912 0 0.3728511 -0.999099 0 0.04244083 -0.9918994 0 -0.1270264 -0.9919 0 -0.1270211 -0.4118742 0 -0.9112408 -0.2519461 0 -0.9677413 -0.1502529 0 -0.9886476 -0.1499791 0 -0.9886892 0.6815053 0 -0.7318132 0.6919236 0.003030359 -0.7219644 0.7411645 0 -0.6713235 0.999099 0 0.04244077 0.9278912 0 0.3728511 0.8515188 0 0.5243241 0.7506911 0 0.6606534 0.7506542 0 0.6606954 0.6282497 0 0.7780119 0.0423544 0 0.9991027 -0.04235547 0 0.9991026 -0.1690198 0 0.9856127 0 1 8.84608e-7 0 1 0 0 1 1.32691e-6 0 1 8.84605e-7 0 1 -4.423e-7 0 1 -8.84601e-7 0 1 -2.21154e-7 0 1 3.3172e-7 0 1 9.952e-7 0 1 8.84607e-7 0 1 1.3269e-6 0 1 6.63448e-7 0 1 -8.84607e-7 0 1 3.3173e-7 0 1 2.21152e-7 0 1 4.42299e-7 0 1 -2.21152e-7 0.9255732 0.001568317 0.3785654 0.9278883 0 0.3728583 0.8515304 0 0.5243052 0.8515276 0 0.5243099 0.7576461 0 0.6526657 0.7506706 0.00236392 0.6606726 0.6995354 0 0.714598 0.6282112 0 0.7780429 0.4877007 0 0.8730111 0.3331292 0.004721224 0.9428694 0.278439 0 0.9604539 0 -0.002701699 0.9999964 -0.3331402 0 0.9428773 -0.6282268 0 0.7780303 -0.6282204 0 0.7780354 -0.9278883 0 0.3728585 -0.9775524 0 0.2106923 -0.9775525 0 0.2106922 -0.9918992 0 -0.1270278 -0.804004 0 -0.5946241 -0.6919338 0 -0.7219611 -0.4119006 0 -0.9112289 -0.2519758 0 -0.9677336 -0.2519758 0 -0.9677336 -0.08481752 0 -0.9963965 -0.08480703 0 -0.9963974 0.08480596 0 -0.9963975 0.08481645 0 -0.9963966 0.4119029 0 -0.9112278 0.5599744 0 -0.82851 0.8039979 0 -0.5946323 0.977555 0 0.2106802 0.9543291 0 0.2987575 0.9543486 0 0.2986953 0 1 4.42296e-7 0 1 -2.21151e-7 0 1 8.84613e-7 0 1 0 0 1 1.32691e-6 0 1 -2.2115e-7 0 1 6.63447e-7 0 1 -4.42301e-7 0 1 8.8461e-7 0 1 3.31728e-7 0 1 9.95188e-7 0 1 -1.3269e-6 -0.3377181 0 0.9412473 -0.3377182 0 0.9412473 -0.3377177 0 0.9412475 -0.3325102 -0.05120038 0.9417089 -0.368694 0 0.9295508 0.3377175 0 -0.9412476 0.3377181 1.34193e-6 -0.9412473 0.3377174 0 -0.9412477 -0.7071073 0 0.7071064 -0.7071065 0 0.707107 -0.707108 0 0.7071056 -0.7071067 0 -0.7071068 -0.7071068 1.68559e-6 -0.7071068 -0.7071093 5.84625e-6 -0.7071043 -0.7071067 0 -0.7071069 -0.7071059 0 -0.7071076 -0.7071053 0 -0.7071084 -0.7071068 0 -0.7071068 -0.707107 -7.28285e-7 -0.7071067 -0.7071075 -3.37762e-6 -0.7071061 -0.7071063 0 -0.7071073 0 1 -2.8853e-6 0 1 1.42886e-7 0 1 -1.0989e-6 0 1 9.65132e-7 0 1 -9.65147e-7 0 1 1.57976e-6 0 1 -1.6127e-6 0 1 1.6127e-6 0 1 -1.61265e-6 0 1 8.06368e-7 0 1 -3.9493e-7 0 1 2.01582e-7 0 1 -1.75937e-6 0 1 8.06327e-7 0 1 -1.75923e-6 0 1 -1.75926e-6 0 1 1.75929e-6 0 1 -1.75927e-6 0 1 -2.93972e-6 0 1 1.22953e-5 0 1 -1.65572e-6 0 1 1.63707e-6 0 1 -8.27683e-7 0 1 4.13798e-7 0 1 0 0 1 2.92603e-7 0 1 -1.43676e-7 0 1 5.85162e-7 0 1 -1.17032e-6 0 1 1.14983e-6 0 1 -1.14991e-6 0 1 -2.33982e-6 0 1 2.33962e-6 0 1 8.89577e-6 0 1 -2.09286e-6 0 0.9999857 -0.005343377 0 1 -8.41298e-6 0 1 2.48724e-6 0 1 -2.67851e-6 0 1 1.2025e-6 0 1 -3.7101e-7 0 1 -1.85505e-7 0 1 -1.48399e-6 0 1 1.45445e-6 0 1 1.45444e-6 0 1 1.68718e-6 0.7071065 0 0.7071071 0.7071068 0 0.7071068 0.7071063 0 0.7071073 -0.07846242 0 -0.9969171 -0.07845729 0 -0.9969176 -0.2334424 0 -0.9723708 -0.3826914 0 -0.9238762 -0.382687 0 -0.9238781 -0.5224946 0 -0.8526427 -0.5224907 0 -0.852645 -0.649454 0 -0.760401 -0.6494538 0 -0.7604011 -0.7604047 0 -0.6494495 -0.7604046 0 -0.6494497 -0.8526414 0 -0.5224968 -0.85264 0 -0.522499 -0.9238796 0 -0.3826832 -0.9238803 0 -0.3826816 -0.9723704 0 -0.2334437 -0.9723701 0 -0.2334449 -0.9969173 0 -0.07846075 -0.9969172 0 -0.07846152 -0.9969172 0 0.07846111 -0.9723701 0 0.2334448 -0.9723701 0 0.2334449 -0.9238796 0 0.3826832 -0.9238803 0 0.3826816 -0.85264 0 0.522499 -0.8526428 0 0.5224944 -0.7604026 0 0.6494521 -0.7604067 0 0.6494472 -0.7634967 0 -0.6458117 -0.7634935 0 -0.6458156 -0.8600334 0 -0.5102379 -0.8600313 0 -0.5102413 -0.9327465 0 -0.3605332 -0.9327444 0 -0.3605384 -0.9796238 0 -0.2008416 -0.9796238 0 -0.2008417 -0.9993667 0 -0.03558629 -0.9993667 0 -0.03558576 -0.9914279 0 0.1306555 -0.9914279 0 0.1306555 -0.956027 0 0.2932789 -0.9560283 0 0.2932746 -0.8941457 0 0.4477761 -0.8941457 0 0.4477763 -0.8074998 0 0.5898678 -0.8074971 0 0.5898717 -0.6984835 0 0.7156261 -0.6984796 0 0.71563 -0.5701161 0 0.8215643 -0.5701212 0 0.8215606 -0.4605595 0 0.8876289 -0.4605696 -1.03463e-6 0.8876237 -0.460563 0 0.8876271 -0.3794497 0 0.9252124 -0.3794496 0 0.9252125 0.337718 0 0.9412474 0.3377173 0 0.9412476 0.3377186 0 0.9412472 -0.3377215 0 0.9412461 -0.3377175 5.36773e-6 0.9412475 -0.3377176 -3.15943e-6 0.9412476 -0.3377197 0 0.9412468 0.3377179 0 0.9412474 0.3377171 2.6739e-6 0.9412477 0.3377182 0 0.9412473 0.4182301 0 0.9083412 0.5691767 0 0.8222154 0.5691757 5.70628e-6 0.822216 0.5691506 0 0.8222333 0.7029302 0 0.7112588 0.7029325 0 0.7112566 0.815458 0 0.5788164 0.8154566 0 0.5788184 0.9033517 0 0.4289007 0.9033533 0 0.4288974 0.9639683 0 0.2660173 0.9639683 0 0.2660173 0.9954667 0 0.09511137 0.9954668 0 0.09511101 0.9953484 0 -0.0963419 0.9953484 0 -0.09634131 0.9637866 0 -0.2666748 0.9033047 0 -0.4289997 0.9033044 -3.05587e-6 -0.4290002 0.9033001 0 -0.4290094 0.8157168 0 -0.5784517 0.8157166 0 -0.5784518 0.703646 0 -0.7105508 0.703646 0 -0.7105509 0.5704607 0 -0.821325 0.5704566 0 -0.8213278 0.4202188 0 -0.9074229 0.4201537 -6.11177e-6 -0.907453 0.4201602 0 -0.9074501 0.2572458 0 -0.9663461 0.2572515 0 -0.9663446 0.08661603 0 -0.9962419 0.08661299 0 -0.9962421 0.07846057 0 -0.9969173 0.07846057 0 -0.9969173 0.2334185 0 -0.9723764 0.2334541 0 -0.9723679 0.38269 0 -0.9238768 0.3826901 0 -0.9238768 0.522494 0 -0.852643 0.5225077 0 -0.8526347 0.6494306 0 -0.7604209 0.6494416 0 -0.7604115 0.7604106 0 -0.6494427 0.7604107 0 -0.6494426 0.8526446 0 -0.5224914 0.8526396 0 -0.5224996 0.9238822 0 -0.3826769 0.9238795 0 -0.3826836 0.9723684 0 -0.2334519 0.9969174 0 -0.07845985 0.9969171 0 -0.07846277 0.9969175 0 -0.07845741 0.9969175 0 -0.07845741 0.9723697 0 -0.2334466 0.9723696 0 -0.2334467 0.9238791 0 -0.3826847 0.9238796 0 -0.3826833 0.8526403 0 -0.5224984 0.8526414 0 -0.5224966 0.7604051 0 -0.6494492 0.7604041 0 -0.6494503 0.6494507 0 -0.7604038 0.649448 0 -0.760406 0.5225003 0 -0.8526391 0.5224988 0 -0.85264 0.382683 0 -0.9238798 0.3826812 0 -0.9238806 0.2334451 0 -0.97237 0.2334464 -2.62483e-7 -0.9723697 0.2334407 0 -0.9723711 0.0784595 0 -0.9969174 0.0784595 0 -0.9969174 0 1 -6.6203e-7 0 1 3.7899e-7 0 1 9.55154e-7 0 1 3.67247e-7 0 1 -1.19395e-7 0 1 -4.7758e-7 0 1 -9.79332e-7 0 1 9.55161e-7 0 1 2.48233e-6 0.6494506 0 0.7604039 0.5225001 0 0.8526393 0.5225002 0 0.8526393 0.3826826 0 0.92388 0.3826827 0 0.9238799 0.2334417 0 0.9723709 0.2334468 0 0.9723697 0.07846003 0 0.9969173 0.0784654 0 0.9969169 0.7604057 0 -0.6494485 0.7604078 0 -0.649446 0.8526415 0 -0.5224965 0.85264 0 -0.522499 0.92388 0 -0.3826824 0.9723698 0 -0.233446 0.9723701 0 -0.2334449 0.9969173 0 -0.07846087 0.9969173 0 -0.07846081 0.9969173 0 0.07846087 0.9969173 0 0.07846081 0.9723698 0 0.233446 0.9723704 0 0.2334437 0.8526401 0 0.5224989 0.8526386 0 0.5225012 0.7604078 0 0.649446 0.7071066 0 -0.7071071 0.7071067 0 -0.707107 0.7071069 0 0.7071067 0.5701174 0 -0.8215633 0.5701229 0 -0.8215595 0.6984791 0 -0.7156305 0.6984871 0 -0.7156227 0.8074973 0 -0.5898714 0.8074946 0 -0.589875 0.8941465 0 -0.4477747 0.9560281 0 -0.2932754 0.9560274 0 -0.2932776 0.9914279 0 -0.1306556 0.9914278 0 -0.1306566 0.9993666 0 0.03558731 0.9993667 0 0.03558754 0.9796237 0 0.2008415 0.9796239 0 0.2008414 0.9327459 0 0.3605345 0.932746 0 0.3605345 0.8600304 0 0.5102429 0.8600325 0 0.5102393 0.7634978 0 0.6458105 0.7634947 0 0.6458141 0.3794506 0 -0.925212 0.4605692 0 -0.887624 0.4605558 0 -0.8876308 -0.337718 0 -0.9412474 -0.3377175 0 -0.9412475 0.3377175 0 -0.9412477 0.3377181 0 -0.9412473 -0.337718 0 -0.9412474 -0.3377176 0 -0.9412475 -0.9954577 0 -0.09520566 -0.9954576 0 -0.09520608 -0.9639448 0 -0.2661026 -0.9639451 0 -0.2661014 -0.9033244 0 -0.4289584 -0.9033259 0 -0.428955 -0.8154251 0 -0.5788626 -0.8154237 0 -0.5788647 -0.7029066 0 -0.7112822 -0.5691574 0 -0.8222286 -0.5691546 0 -0.8222306 -0.4182223 0 -0.9083448 -0.4182224 0 -0.9083447 -0.08660483 0 0.9962428 -0.08660793 0 0.9962425 -0.2572187 0 0.9663532 -0.2572245 0 0.9663518 -0.4201192 0 0.9074689 -0.4201193 0 0.9074689 -0.5704174 0 0.8213551 -0.5704174 0 0.821355 -0.7035926 0 0.7106036 -0.7035896 0 0.7106066 -0.8156601 0 0.5785315 -0.8156603 0 0.5785313 -0.9032591 0 0.4290956 -0.9032592 0 0.4290953 -0.9637545 0 0.2667908 -0.9637545 0 0.2667908 -0.9953349 0 0.09648013 -0.9953349 0 0.09648072 -0.9969169 0 0.07846599 -0.9969167 0 0.07846736 -0.9723721 0 0.2334367 -0.9723721 0 0.2334368 -0.9238774 0 0.3826887 -0.9238798 0 0.3826828 -0.852643 0 0.522494 -0.8526476 0 0.5224865 -0.7604009 0 0.6494541 -0.7604008 0 0.6494542 -0.6494579 0 0.7603976 -0.649438 0 0.7604146 -0.5224936 0 0.8526432 -0.3826968 0 0.9238741 -0.3826821 0 0.9238802 -0.2334473 0 0.9723695 -0.2334472 0 0.9723695 -0.07845562 0 0.9969177 -0.07845562 0 0.9969176 -1 -1.07538e-4 0 -0.07846045 0 0.9969173 -0.07845836 0 0.9969174 -0.2334464 0 0.9723697 -0.2334444 0 0.9723702 -0.382682 0 0.9238802 -0.3826858 0 0.9238786 -0.5224994 0 0.8526397 -0.5224995 0 0.8526396 -0.6494479 0 0.7604061 -0.6494493 0 0.760405 -0.7604052 0 0.6494491 -0.7604061 0 0.649448 -0.8526395 0 0.5224997 -0.8526395 0 0.5224997 -0.9238795 0 0.3826835 -0.9238799 0 0.3826826 -0.9723697 0 0.2334465 -0.9723699 0 0.2334454 -0.9969175 0 0.07845836 -0.9969175 0 0.07845854 0 1 -1.39562e-6 0 1 -2.01287e-6 0 1 -1.46494e-6 0 1 -7.55972e-7 0 1 1.39562e-6 0 1 1.88988e-7 0 1 -1.88991e-7 0 1 7.5599e-7 0 1 -3.48916e-7 0 1 -1.04673e-6 0 1 1.51196e-6 0.3377168 0 0.9412478 0.3377177 0 0.9412475 0.7071068 0 -0.7071068 0.7071069 0 -0.7071067 -0.7071068 0 -0.7071068 -0.7071073 0 -0.7071064 -0.7638131 0 -0.6454375 -0.763813 0 -0.6454378 -0.8608213 0 -0.5089076 -0.8608058 0 -0.5089337 -0.9336584 0 -0.358165 -0.9336621 0 -0.3581552 -0.9803354 0 -0.1973392 -0.9803364 0 -0.1973335 -0.9995191 0 -0.03101283 -0.9995189 0 -0.03101372 -0.99068 0 0.1362099 -0.99068 0 0.13621 -0.9540613 0 0.2996116 -0.9540666 0 0.2995947 -0.8906989 0 0.4545937 -0.8907051 0 0.4545819 -0.8023511 0 0.5968524 -0.8023617 0 0.5968382 -0.6915133 0 0.7223637 -0.6915442 0 0.7223342 -0.5612819 0 0.8276247 -0.5613023 0 0.8276109 -0.4153383 0 0.9096671 -0.4153382 0 0.909667 -0.3377174 0 0.9412477 -0.3377173 0 0.9412477 -0.3377168 0 -0.9412478 -0.7071071 0 0.7071066 -0.7071066 0 0.707107 0.7071067 0 0.7071069 0.7071071 0 0.7071065 0.4153321 0 -0.9096699 0.4153323 0 -0.9096698 0.5612918 0 -0.827618 0.561314 0 -0.8276031 0.691523 0 -0.7223545 0.6915064 0 -0.7223704 0.802355 0 -0.5968473 0.8023664 0 -0.5968319 0.8906993 0 -0.454593 0.8906994 0 -0.454593 0.9540644 0 -0.2996017 0.9540644 0 -0.2996017 0.9906804 0 -0.1362071 0.9995195 0 0.0309993 0.9995195 0 0.03100031 0.9803328 0 0.1973515 0.9803328 0 0.1973516 0.9336619 0 0.3581556 0.9336579 0 0.3581662 0.8608115 0 0.5089241 0.8608116 0 0.508924 0.7638185 0 0.6454311 0.7638321 0 0.6454151 0.3377175 0 -0.9412476 0 1 -2.21153e-7 0 1 -1.76921e-6 0 1 0 0 1 2.21154e-7 -0.1689788 0 0.9856198 -0.487687 0 0.8730186 -0.6282333 0 0.778025 -0.9775515 0 0.2106966 -0.8040113 0 -0.594614 -0.8039965 0 -0.5946342 -0.6919613 0 -0.7219346 -0.6919173 0 -0.7219768 -0.08478599 0 -0.9963992 0.08478492 0 -0.9963993 0.08482694 0 -0.9963957 0.5599526 0 -0.8285247 0.6919708 0 -0.7219256 0.8039903 0 -0.5946424 0.8040054 0 -0.5946221 0.7506726 0 0.6606743 0.4876924 0 0.8730156 0.1689777 0 0.9856199 0 1 0 0 1 0 0 1 3.47736e-7 0 1 -1.68821e-7 0 1 2.38026e-7 0 1 2.14628e-7 0 1 0 0 1 -4.88404e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.4246e-7 0 1 -4.52646e-7 0 1 -1.42243e-7 0 1 0 0 1 0 0 1 1.79861e-7 0 1 2.28656e-7 0 1 0 0 1 1.58371e-7 0 1 1.77485e-7 0 1 -9.34957e-7 0 1 5.81856e-7 0 1 0 0 1 -3.23208e-7 0 1 5.38503e-7 0 1 0 0 1 0 0 1 3.3679e-7 0 1 0 0 1 0 0 1 -6.0084e-7 0 1 5.62393e-7 0 1 1.41339e-7 0 1 -3.5243e-7 0 1 1.85211e-7 -0.7604018 0 -0.649453 -0.7604019 0 -0.6494529 -0.8526362 0 -0.5225051 -0.8526448 0 -0.5224913 -0.923885 0 -0.3826702 -0.9238804 0 -0.3826815 -0.9723681 0 -0.2334535 -0.9723698 0 -0.2334463 -0.996917 0 -0.07846415 -0.9969171 0 -0.07846295 -0.996917 0 0.07846415 -0.996917 0 0.07846421 -0.9723707 0 0.2334427 -0.9723698 0 0.2334463 -0.9238804 0 0.3826814 -0.9238804 0 0.3826815 -0.8526405 0 0.522498 -0.8526404 0 0.5224983 -0.7604018 0 0.649453 -0.7604085 0 0.6494451 -0.7071067 0 0.707107 -0.7071069 0 0.7071067 -0.3377174 0 0.9412476 0.3377171 0 0.9412477 0.3377174 0 0.9412477 0.4088019 0 0.9126232 0.5433716 0 0.8394923 0.5433486 0 0.8395072 0.6651481 0 0.7467114 0.6651663 0 0.7466953 0.7713751 0 0.6363808 0.8595024 0 0.5111318 0.8595023 0 0.5111318 0.9274571 0 0.3739298 0.9736846 0 0.2278997 0.9736812 0 0.2279141 0.9970655 0 0.07655417 0.9969171 0 -0.07846307 0.9969173 0 -0.07846063 0.9723716 0 -0.2334382 0.97237 0 -0.2334454 0.9238902 0 -0.3826577 0.9238902 0 -0.3826578 0.8526247 0 -0.522524 0.8526332 0 -0.5225101 0.7604065 0 -0.6494475 0.7604064 0 -0.6494476 0.6494533 0 -0.7604016 0.6494348 0 -0.7604174 0.522486 0 -0.852648 0.522509 0 -0.8526339 0.382699 0 -0.9238731 0.3826719 0 -0.9238843 0.2334566 0 -0.9723672 0.2334266 0 -0.9723744 0.07848435 0 -0.9969154 0.07845294 0 -0.9969179 0.07845282 0 -0.9969179 0.07846158 0 -0.9969173 0.2334417 0 -0.9723708 0.2334501 0 -0.9723688 0.382685 0 -0.923879 0.382685 0 -0.923879 0.5224969 0 -0.8526412 0.6494476 0 -0.7604064 0.6494528 0 -0.7604019 0.7604025 0 -0.6494522 0.7604064 0 -0.6494476 0.8526411 0 -0.5224973 0.9238789 0 -0.3826852 0.9238802 0 -0.382682 0.9723699 0 -0.2334457 0.9723704 0 -0.2334437 0.9969174 0 -0.07845973 0.9969173 0 -0.07846009 1 -1.64474e-4 0 0.9969171 0 -0.07846182 0.9969173 0 -0.07846122 0.9723704 0 -0.2334436 0.9723708 0 -0.2334418 0.9238778 0 -0.3826875 0.9238791 0 -0.3826847 0.8526415 0 -0.5224964 0.8526436 0 -0.5224931 0.7604052 0 -0.6494491 0.7604019 0 -0.6494529 0.6494488 0 -0.7604055 0.5224933 0 -0.8526434 0.5225048 0 -0.8526364 0.3826787 0 -0.9238815 0.2334491 0 -0.972369 0.233449 0 -0.9723691 0.07846009 0 -0.9969174 0.07846003 0 -0.9969173 -0.07846009 0 -0.9969174 -0.07846003 0 -0.9969173 -0.2334491 0 -0.972369 -0.233449 0 -0.9723691 -0.3826719 0 -0.9238843 -0.3826787 0 -0.9238815 -0.5225027 0 -0.8526377 -0.5224911 0 -0.8526449 -0.6494511 0 -0.7604035 -0.6494555 0 -0.7603996 -0.707107 0 -0.7071066 0 1 1.48864e-6 0 1 1.48863e-6 0 1 -1.51368e-6 0 1 1.5137e-6 0 1 -8.06348e-7 0 1 -1.48861e-6 0 1 4.03163e-7 0 1 4.03174e-7 0 1 -7.44313e-7 0 1 8.06337e-7 0 1 -5.58235e-7 0 1 5.58242e-7 0 1 3.72157e-7 0 1 -1.48863e-6 0 1 1.61266e-6 0 1 1.53386e-6 0 1 1.65222e-6 0 1 -1.52521e-6 0 1 8.2602e-7 0 1 -4.13054e-7 0 1 -7.62642e-7 0 1 2.06527e-7 0 1 -3.81284e-7 0 1 7.44331e-7 0 1 1.64705e-6 0 1 -1.61275e-6 0 1 1.64699e-6 0 1 1.64703e-6 0 1 -4.11748e-7 0 1 -2.05874e-7 0 1 1.61274e-6 0 1 -7.44296e-7 0 1 1.61265e-6 0 1 1.48859e-6 0 1 -1.48866e-6 0 1 -2.97725e-6 0.7604191 0 -0.6494328 0.7604046 0 -0.6494497 0.852636 0 -0.5225054 0.8526406 0 -0.5224978 0.9238756 0 -0.3826931 0.9238806 0 -0.382681 0.9723705 0 -0.2334431 0.9723705 0 -0.233443 0.9969172 0 -0.07846093 0.9969173 0 -0.07845956 0.9969171 0 0.07846224 0.9969173 0 0.07845956 0.9723714 0 0.2334392 0.9723705 0 0.233443 0.9238806 0 0.382681 0.9238756 0 0.3826932 0.852636 0 0.5225054 0.8526406 0 0.5224978 0.7604045 0 0.6494497 0.7604046 0 0.6494497 0.7071067 0 -0.707107 0.3377175 0 -0.9412475 -0.3377175 0 -0.9412477 -0.997064 0 -0.07657283 -0.9970638 0 -0.07657545 -0.9736855 0 -0.2278963 -0.9736818 0 -0.2279119 -0.9274672 0 -0.3739047 -0.9274623 0 -0.3739168 -0.8594946 0 -0.5111449 -0.8594946 0 -0.5111448 -0.7713643 0 -0.6363939 -0.7713785 0 -0.6363766 -0.6651691 0 -0.7466928 -0.6651693 0 -0.7466927 -0.5433443 0 -0.83951 -0.5433445 0 -0.8395098 -0.4087958 0 -0.912626 -0.4087959 0 -0.9126259 -0.07844018 0 0.9969189 -0.07847428 0 0.9969162 -0.2334334 0 0.9723729 -0.2334658 0 0.972365 -0.3826895 0 0.9238771 -0.5224732 0 0.8526557 -0.5224981 0 0.8526405 -0.6494578 0 0.7603977 -0.6494381 0 0.7604146 -0.7604081 0 0.6494457 -0.7604081 0 0.6494457 -0.8526429 0 0.5224942 -0.9238763 0 0.3826913 -0.9238763 0 0.3826915 -0.9969167 0 0.0784673 -0.9969174 0 0.07845872 -0.9969174 0 0.07845801 -0.9723699 0 0.2334459 -0.97237 0 0.2334451 -0.9238786 0 0.3826858 -0.8526418 0 0.5224961 -0.7604069 0 0.6494469 -0.7604033 0 0.6494512 -0.649448 0 0.760406 -0.6494528 0 0.7604019 -0.5224949 0 0.8526425 -0.5225009 0 0.8526389 -0.3826785 0 0.9238816 -0.3826857 0 0.9238786 -0.2334398 0 0.9723713 -0.2334478 0 0.9723693 -0.07845622 0 0.9969176 -0.07846474 0 0.9969169 -0.07846415 0 0.996917 -0.2334496 0 0.972369 -0.2334496 0 0.9723689 -0.5225044 0 0.8526366 -0.6494429 0 0.7604105 -0.6494429 0 0.7604104 -0.7604094 0 0.6494441 -0.760406 0 0.6494481 -0.8526384 0 0.5225016 -0.8526384 0 0.5225015 -0.9238787 0 0.3826857 -0.9723715 0 0.2334387 -0.9723715 0 0.2334387 -0.9969169 0 0.07846599 0.6494504 0 0.760404 0.6494505 0 0.7604039 0.5224975 0 0.8526409 0.5224914 0 0.8526446 0.3826821 0 0.9238802 0.3826894 0 0.9238771 0.2334472 0 0.9723695 0.2334473 0 0.9723695 0.07846456 0 0.996917 0.07845604 0 0.9969177 0.7071068 0 0.7071068 0.7071069 0 0.7071067 0 1 4.42294e-7 0 1 6.63451e-7 0 1 8.84614e-7 0 1 -2.21154e-7 0 1 3.31722e-7 0 1 4.42305e-7 0 1 4.97601e-7 0 1 -4.42284e-7 0 1 -4.42304e-7 0 1 7.18762e-7 0 1 1.79685e-7 -0.3331497 0 0.942874 -0.333112 0 0.9428873 -0.8515246 0 0.5243147 -0.6919283 0 -0.7219663 -0.2519659 0 -0.9677362 -0.2520055 0 -0.9677258 0.4118942 0 -0.9112318 0.5599672 0 -0.8285149 0.8515246 0 0.5243147 0 -0.002702474 0.9999964 0.04252529 0 0.9990954 -0.1689777 0 0.98562 -0.8515301 0 0.5243059 -0.8515533 0 0.5242681 -0.9775528 0 0.2106906 -0.6919708 0 -0.7219256 -0.08482694 0 -0.9963957 -0.08478498 0 -0.9963993 0.08478707 0 -0.9963991 0.08482909 0 -0.9963956 0.8039963 0 -0.5946343 0.977558 0 0.2106665 0.8515533 0 0.5242682 0.85153 0 0.5243059 0.4876763 0 0.8730245 0 1 0 0 1 0 0 1 2.24463e-6 0 1 1.94362e-7 0 1 -1.16318e-6 0 1 -5.88233e-7 0 1 2.08935e-7 0 1 -2.24034e-7 0 1 5.38001e-7 0 1 -1.23791e-7 0 1 0 0 1 0 0 1 -2.69884e-7 0 1 0 0 1 -2.9482e-7 0 1 -1.57388e-7 0 1 -1.67453e-7 0 1 2.97656e-7 0 1 -1.91198e-7 0 1 3.15968e-7 0 1 1.50945e-7 0 1 -1.37875e-6 0 1 4.38865e-7 0 1 0 0 1 0 0 1 -1.90748e-7 0 1 2.84629e-7 0 1 -1.99262e-7 0 1 -1.84052e-7 0 1 1.62234e-7 0 1 -2.16137e-7 0 1 5.20744e-7 0 1 0 0 1 -7.98472e-7 0 1 0 0 1 5.32256e-7 0 1 0 0 1 -1.97084e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.68275e-7 0 1 -8.64119e-7 0 1 1.27137e-7 0 1 4.81648e-7 0 1 -1.17678e-6 0 1 2.76536e-7 0 1 -3.39727e-7 0 1 1.81597e-7 0 1 0 0 1 -3.38823e-7 0 1 0 0 1 0 0 1 0 0 1 2.07481e-7 0 1 0 0 1 0 0 1 5.74164e-7 0 1 -3.24048e-7 0 1 2.94898e-7 0 1 3.16302e-7 0 1 1.6652e-7 0 1 -5.14827e-7 0 1 3.7239e-7 0 1 -3.16176e-7 0 1 0 0 1 -5.31252e-7 0 1 -6.90631e-7 0 1 0 0 1 0 0 1 0 0 1 -6.1034e-7 0 1 0 0 1 0 0 1 3.18038e-7 0 1 -3.69128e-7 0 -1 0 0 1 0 0 1 -8.67642e-7 0 1 -8.67627e-7 0 1 2.1693e-7 0 1 2.16926e-7 0.92388 0 0.3826824 0 1 0 0 1 0 0 1 0 0 1 2.06222e-7 0 1 0 0 1 0 1 -1.52585e-5 2.83861e-7 1 0 -7.16216e-7 1 3.41591e-4 1.50632e-5 0 1 1.80701e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.08458e-6 0 1 1.08456e-6 + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

476 257 1401 477 257 1402 478 257 1403 604 347 1878 605 347 1879 606 347 1880 606 348 1881 607 348 1882 604 348 1883 604 349 1884 607 349 1885 608 349 1886 604 350 1887 608 350 1888 609 350 1889 609 351 1890 608 351 1891 610 351 1892 609 352 1893 610 352 1894 611 352 1895 611 353 1896 610 353 1897 612 353 1898 612 353 1899 610 353 1900 613 353 1901 612 354 1902 613 354 1903 614 354 1904 613 354 1905 615 354 1906 614 354 1907 614 355 1908 615 355 1909 616 355 1910 614 356 1911 616 356 1912 617 356 1913 617 357 1914 616 357 1915 618 357 1916 617 358 1917 618 358 1918 619 358 1919 341 359 1920 340 359 1921 620 359 1922 619 360 1923 618 360 1924 620 360 1925 620 361 1926 618 361 1927 621 361 1928 620 362 1929 621 362 1930 341 362 1931 341 363 1932 621 363 1933 622 363 1934 341 364 1935 622 364 1936 343 364 1937 343 365 1938 622 365 1939 623 365 1940 343 366 1941 623 366 1942 344 366 1943 344 367 1944 623 367 1945 624 367 1946 344 368 1947 624 368 1948 345 368 1949 345 369 1950 624 369 1951 625 369 1952 345 370 1953 625 370 1954 346 370 1955 346 371 1956 625 371 1957 626 371 1958 346 372 1959 626 372 1960 347 372 1961 347 373 1962 626 373 1963 627 373 1964 347 374 1965 627 374 1966 348 374 1967 348 375 1968 627 375 1969 628 375 1970 348 376 1971 628 376 1972 349 376 1973 349 377 1974 628 377 1975 629 377 1976 349 377 1977 629 377 1978 351 377 1979 351 378 1980 629 378 1981 630 378 1982 351 379 1983 630 379 1984 353 379 1985 353 380 1986 630 380 1987 631 380 1988 353 381 1989 631 381 1990 354 381 1991 354 382 1992 631 382 1993 632 382 1994 354 382 1995 632 382 1996 366 382 1997 366 383 1998 632 383 1999 633 383 2000 366 384 2001 633 384 2002 367 384 2003 367 385 2004 633 385 2005 634 385 2006 367 385 2007 634 385 2008 368 385 2009 368 386 2010 634 386 2011 635 386 2012 368 387 2013 635 387 2014 387 387 2015 387 388 2016 635 388 2017 636 388 2018 387 389 2019 636 389 2020 420 389 2021 420 390 2022 636 390 2023 637 390 2024 420 391 2025 637 391 2026 422 391 2027 422 392 2028 637 392 2029 638 392 2030 422 393 2031 638 393 2032 423 393 2033 423 394 2034 638 394 2035 639 394 2036 423 395 2037 639 395 2038 408 395 2039 408 396 2040 639 396 2041 640 396 2042 408 397 2043 640 397 2044 407 397 2045 407 398 2046 640 398 2047 641 398 2048 407 398 2049 641 398 2050 411 398 2051 411 399 2052 641 399 2053 642 399 2054 411 400 2055 642 400 2056 412 400 2057 412 401 2058 642 401 2059 643 401 2060 412 402 2061 643 402 2062 413 402 2063 413 403 2064 643 403 2065 644 403 2066 413 403 2067 644 403 2068 381 403 2069 381 404 2070 644 404 2071 645 404 2072 381 405 2073 645 405 2074 380 405 2075 380 406 2076 645 406 2077 646 406 2078 380 407 2079 646 407 2080 379 407 2081 379 408 2082 646 408 2083 647 408 2084 379 409 2085 647 409 2086 401 409 2087 401 410 2088 647 410 2089 648 410 2090 401 411 2091 648 411 2092 402 411 2093 402 412 2094 648 412 2095 649 412 2096 402 413 2097 649 413 2098 403 413 2099 403 414 2100 649 414 2101 650 414 2102 403 414 2103 650 414 2104 385 414 2105 385 415 2106 650 415 2107 606 415 2108 385 416 2109 606 416 2110 384 416 2111 384 417 2112 606 417 2113 605 417 2114 384 418 2115 605 418 2116 382 418 2117 651 419 2118 652 419 2119 653 419 2120 653 420 2121 654 420 2122 651 420 2123 651 421 2124 654 421 2125 655 421 2126 651 422 2127 655 422 2128 656 422 2129 656 423 2130 655 423 2131 657 423 2132 656 424 2133 657 424 2134 658 424 2135 207 425 2136 206 425 2137 659 425 2138 660 426 2139 661 426 2140 662 426 2141 662 427 2142 663 427 2143 660 427 2144 660 428 2145 663 428 2146 664 428 2147 660 429 2148 664 429 2149 665 429 2150 665 430 2151 664 430 2152 666 430 2153 665 431 2154 666 431 2155 667 431 2156 33 432 2157 105 432 2158 668 432 2159 658 433 2160 657 433 2161 659 433 2162 659 434 2163 657 434 2164 669 434 2165 659 435 2166 669 435 2167 207 435 2168 207 352 2169 669 352 2170 670 352 2171 207 436 2172 670 436 2173 208 436 2174 208 437 2175 670 437 2176 671 437 2177 208 438 2178 671 438 2179 209 438 2180 667 439 2181 666 439 2182 668 439 2183 668 440 2184 666 440 2185 672 440 2186 668 441 2187 672 441 2188 33 441 2189 33 442 2190 672 442 2191 673 442 2192 33 443 2193 673 443 2194 8 443 2195 8 401 2196 673 401 2197 674 401 2198 8 402 2199 674 402 2200 9 402 2201 9 403 2202 674 403 2203 675 403 2204 9 403 2205 675 403 2206 14 403 2207 14 404 2208 675 404 2209 676 404 2210 14 405 2211 676 405 2212 15 405 2213 15 444 2214 676 444 2215 677 444 2216 15 445 2217 677 445 2218 11 445 2219 11 446 2220 677 446 2221 678 446 2222 11 446 2223 678 446 2224 12 446 2225 12 447 2226 678 447 2227 679 447 2228 12 448 2229 679 448 2230 13 448 2231 13 449 2232 679 449 2233 653 449 2234 13 449 2235 653 449 2236 113 449 2237 113 450 2238 653 450 2239 652 450 2240 113 451 2241 652 451 2242 112 451 2243 671 452 2244 680 452 2245 209 452 2246 209 453 2247 680 453 2248 681 453 2249 209 454 2250 681 454 2251 210 454 2252 210 455 2253 681 455 2254 682 455 2255 210 456 2256 682 456 2257 211 456 2258 211 457 2259 682 457 2260 683 457 2261 211 458 2262 683 458 2263 212 458 2264 212 459 2265 683 459 2266 684 459 2267 212 460 2268 684 460 2269 213 460 2270 213 461 2271 684 461 2272 685 461 2273 213 462 2274 685 462 2275 199 462 2276 199 463 2277 685 463 2278 686 463 2279 199 463 2280 686 463 2281 200 463 2282 200 464 2283 686 464 2284 687 464 2285 200 465 2286 687 465 2287 220 465 2288 220 466 2289 687 466 2290 688 466 2291 220 467 2292 688 467 2293 221 467 2294 221 468 2295 688 468 2296 689 468 2297 221 469 2298 689 469 2299 222 469 2300 222 470 2301 689 470 2302 690 470 2303 222 471 2304 690 471 2305 214 471 2306 214 377 2307 690 377 2308 691 377 2309 214 377 2310 691 377 2311 215 377 2312 215 378 2313 691 378 2314 692 378 2315 215 379 2316 692 379 2317 216 379 2318 216 472 2319 692 472 2320 693 472 2321 216 473 2322 693 473 2323 217 473 2324 217 474 2325 693 474 2326 694 474 2327 217 475 2328 694 475 2329 218 475 2330 218 383 2331 694 383 2332 695 383 2333 218 384 2334 695 384 2335 219 384 2336 219 476 2337 695 476 2338 696 476 2339 219 476 2340 696 476 2341 201 476 2342 201 477 2343 696 477 2344 697 477 2345 201 478 2346 697 478 2347 202 478 2348 202 479 2349 697 479 2350 698 479 2351 202 480 2352 698 480 2353 203 480 2354 203 481 2355 698 481 2356 662 481 2357 203 482 2358 662 482 2359 204 482 2360 204 483 2361 662 483 2362 661 483 2363 204 484 2364 661 484 2365 205 484 2366 699 485 2367 700 485 2368 0 485 2369 0 485 2370 700 485 2371 6 485 2372 701 486 2373 699 486 2374 2 486 2375 2 486 2376 699 486 2377 0 486 2378 702 487 2379 701 487 2380 4 487 2381 4 487 2382 701 487 2383 2 487 2384 325 486 2385 703 486 2386 321 486 2387 321 486 2388 703 486 2389 704 486 2390 321 486 2391 704 486 2392 333 486 2393 333 486 2394 704 486 2395 600 486 2396 325 486 2397 603 486 2398 703 486 2399 703 488 2400 603 488 2401 602 488 2402 703 486 2403 602 486 2404 601 486 2405 601 485 2406 599 485 2407 703 485 2408 703 485 2409 599 485 2410 598 485 2411 703 485 2412 598 485 2413 705 485 2414 705 485 2415 598 485 2416 171 485 2417 705 485 2418 171 485 2419 170 485 2420 170 489 2421 169 489 2422 705 489 2423 705 490 2424 169 490 2425 519 490 2426 519 489 2427 228 489 2428 705 489 2429 705 491 2430 228 491 2431 193 491 2432 705 492 2433 193 492 2434 706 492 2435 706 493 2436 193 493 2437 188 493 2438 706 489 2439 188 489 2440 517 489 2441 517 487 2442 487 487 2443 706 487 2444 706 487 2445 487 487 2446 428 487 2447 706 487 2448 428 487 2449 704 487 2450 704 487 2451 428 487 2452 447 487 2453 704 487 2454 447 487 2455 600 487 2456 700 489 2457 702 489 2458 6 489 2459 6 489 2460 702 489 2461 4 489 2462 704 0 2463 700 0 2464 706 0 2465 706 0 2466 700 0 2467 699 0 2468 706 0 2469 699 0 2470 705 0 2471 705 0 2472 699 0 2473 701 0 2474 705 0 2475 701 0 2476 703 0 2477 703 0 2478 701 0 2479 702 0 2480 703 0 2481 702 0 2482 704 0 2483 704 0 2484 702 0 2485 700 0 2486 707 494 2487 708 494 2488 569 494 2489 569 495 2490 708 495 2491 562 495 2492 708 496 2493 709 496 2494 562 496 2495 562 497 2496 709 497 2497 710 497 2498 562 498 2499 710 498 2500 570 498 2501 570 499 2502 710 499 2503 711 499 2504 570 500 2505 711 500 2506 571 500 2507 571 457 2508 711 457 2509 712 457 2510 571 501 2511 712 501 2512 572 501 2513 572 363 2514 712 363 2515 713 363 2516 572 364 2517 713 364 2518 578 364 2519 578 502 2520 713 502 2521 714 502 2522 578 503 2523 714 503 2524 579 503 2525 579 504 2526 714 504 2527 715 504 2528 579 368 2529 715 368 2530 580 368 2531 580 369 2532 715 369 2533 716 369 2534 580 505 2535 716 505 2536 581 505 2537 581 506 2538 716 506 2539 717 506 2540 581 507 2541 717 507 2542 582 507 2543 582 373 2544 717 373 2545 718 373 2546 582 508 2547 718 508 2548 583 508 2549 583 375 2550 718 375 2551 719 375 2552 583 509 2553 719 509 2554 573 509 2555 573 510 2556 719 510 2557 720 510 2558 573 511 2559 720 511 2560 574 511 2561 574 378 2562 720 378 2563 721 378 2564 574 379 2565 721 379 2566 584 379 2567 584 512 2568 721 512 2569 722 512 2570 584 381 2571 722 381 2572 585 381 2573 585 513 2574 722 513 2575 723 513 2576 585 382 2577 723 382 2578 563 382 2579 563 514 2580 723 514 2581 724 514 2582 563 515 2583 724 515 2584 564 515 2585 564 516 2586 724 516 2587 725 516 2588 564 517 2589 725 517 2590 565 517 2591 565 386 2592 725 386 2593 726 386 2594 565 387 2595 726 387 2596 566 387 2597 566 518 2598 726 518 2599 727 518 2600 566 389 2601 727 389 2602 559 389 2603 559 390 2604 727 390 2605 728 390 2606 559 519 2607 728 519 2608 560 519 2609 560 392 2610 728 392 2611 729 392 2612 560 393 2613 729 393 2614 575 393 2615 575 520 2616 729 520 2617 730 520 2618 575 521 2619 730 521 2620 576 521 2621 576 522 2622 730 522 2623 731 522 2624 576 523 2625 731 523 2626 577 523 2627 577 398 2628 731 398 2629 732 398 2630 577 524 2631 732 524 2632 589 524 2633 589 399 2634 732 399 2635 733 399 2636 589 525 2637 733 525 2638 590 525 2639 590 401 2640 733 401 2641 734 401 2642 590 402 2643 734 402 2644 591 402 2645 591 526 2646 734 526 2647 735 526 2648 591 527 2649 735 527 2650 592 527 2651 592 528 2652 735 528 2653 736 528 2654 592 405 2655 736 405 2656 593 405 2657 593 529 2658 736 529 2659 737 529 2660 593 407 2661 737 407 2662 594 407 2663 594 530 2664 737 530 2665 738 530 2666 594 531 2667 738 531 2668 595 531 2669 595 532 2670 738 532 2671 739 532 2672 595 411 2673 739 411 2674 596 411 2675 596 412 2676 739 412 2677 740 412 2678 596 533 2679 740 533 2680 597 533 2681 597 534 2682 740 534 2683 741 534 2684 597 535 2685 741 535 2686 586 535 2687 586 415 2688 741 415 2689 742 415 2690 586 416 2691 742 416 2692 587 416 2693 587 536 2694 742 536 2695 743 536 2696 587 537 2697 743 537 2698 588 537 2699 588 538 2700 743 538 2701 744 538 2702 588 539 2703 744 539 2704 567 539 2705 567 540 2706 744 540 2707 707 540 2708 567 541 2709 707 541 2710 568 541 2711 568 542 2712 707 542 2713 569 542 2714 708 0 2715 707 0 2716 745 0 2717 708 0 2718 745 0 2719 709 0 2720 712 0 2721 711 0 2722 745 0 2723 745 543 2724 711 543 2725 710 543 2726 745 0 2727 710 0 2728 709 0 2729 715 544 2730 714 544 2731 745 544 2732 745 545 2733 714 545 2734 713 545 2735 745 546 2736 713 546 2737 712 546 2738 718 0 2739 717 0 2740 745 0 2741 745 547 2742 717 547 2743 716 547 2744 745 548 2745 716 548 2746 715 548 2747 721 0 2748 720 0 2749 745 0 2750 745 549 2751 720 549 2752 719 549 2753 745 548 2754 719 548 2755 718 548 2756 724 0 2757 723 0 2758 745 0 2759 745 550 2760 723 550 2761 722 550 2762 745 543 2763 722 543 2764 721 543 2765 727 0 2766 726 0 2767 745 0 2768 745 551 2769 726 551 2770 725 551 2771 745 552 2772 725 552 2773 724 552 2774 730 553 2775 729 553 2776 745 553 2777 745 554 2778 729 554 2779 728 554 2780 745 0 2781 728 0 2782 727 0 2783 733 0 2784 732 0 2785 745 0 2786 745 555 2787 732 555 2788 731 555 2789 745 556 2790 731 556 2791 730 556 2792 736 557 2793 735 557 2794 745 557 2795 745 558 2796 735 558 2797 734 558 2798 745 559 2799 734 559 2800 733 559 2801 739 560 2802 738 560 2803 745 560 2804 745 561 2805 738 561 2806 737 561 2807 745 562 2808 737 562 2809 736 562 2810 742 563 2811 741 563 2812 745 563 2813 745 564 2814 741 564 2815 740 564 2816 745 565 2817 740 565 2818 739 565 2819 707 0 2820 744 0 2821 745 0 2822 745 566 2823 744 566 2824 743 566 2825 745 567 2826 743 567 2827 742 567 2828 746 494 2829 747 494 2830 312 494 2831 312 495 2832 747 495 2833 313 495 2834 747 568 2835 748 568 2836 313 568 2837 313 569 2838 748 569 2839 749 569 2840 313 498 2841 749 498 2842 289 498 2843 289 499 2844 749 499 2845 750 499 2846 289 500 2847 750 500 2848 290 500 2849 290 457 2850 750 457 2851 751 457 2852 290 501 2853 751 501 2854 291 501 2855 291 570 2856 751 570 2857 752 570 2858 291 571 2859 752 571 2860 292 571 2861 292 572 2862 752 572 2863 753 572 2864 292 573 2865 753 573 2866 293 573 2867 293 504 2868 753 504 2869 754 504 2870 293 574 2871 754 574 2872 294 574 2873 294 369 2874 754 369 2875 755 369 2876 294 575 2877 755 575 2878 295 575 2879 295 506 2880 755 506 2881 756 506 2882 295 372 2883 756 372 2884 296 372 2885 296 576 2886 756 576 2887 757 576 2888 296 508 2889 757 508 2890 297 508 2891 297 509 2892 757 509 2893 758 509 2894 297 577 2895 758 577 2896 298 577 2897 298 510 2898 758 510 2899 759 510 2900 298 578 2901 759 578 2902 302 578 2903 302 579 2904 759 579 2905 760 579 2906 302 379 2907 760 379 2908 303 379 2909 303 512 2910 760 512 2911 761 512 2912 303 381 2913 761 381 2914 304 381 2915 304 513 2916 761 513 2917 762 513 2918 304 382 2919 762 382 2920 305 382 2921 305 580 2922 762 580 2923 763 580 2924 305 515 2925 763 515 2926 282 515 2927 282 581 2928 763 581 2929 764 581 2930 282 516 2931 764 516 2932 283 516 2933 283 386 2934 764 386 2935 765 386 2936 283 582 2937 765 582 2938 284 582 2939 284 518 2940 765 518 2941 766 518 2942 284 389 2943 766 389 2944 285 389 2945 285 390 2946 766 390 2947 767 390 2948 285 519 2949 767 519 2950 286 519 2951 286 583 2952 767 583 2953 768 583 2954 286 393 2955 768 393 2956 299 393 2957 299 584 2958 768 584 2959 769 584 2960 299 585 2961 769 585 2962 300 585 2963 300 522 2964 769 522 2965 770 522 2966 300 586 2967 770 586 2968 301 586 2969 301 398 2970 770 398 2971 771 398 2972 301 524 2973 771 524 2974 316 524 2975 316 399 2976 771 399 2977 772 399 2978 316 525 2979 772 525 2980 317 525 2981 317 401 2982 772 401 2983 773 401 2984 317 587 2985 773 587 2986 318 587 2987 318 588 2988 773 588 2989 774 588 2990 318 527 2991 774 527 2992 319 527 2993 319 589 2994 774 589 2995 775 589 2996 319 528 2997 775 528 2998 320 528 2999 320 529 3000 775 529 3001 776 529 3002 320 590 3003 776 590 3004 287 590 3005 287 408 3006 776 408 3007 777 408 3008 287 531 3009 777 531 3010 288 531 3011 288 591 3012 777 591 3013 778 591 3014 288 411 3015 778 411 3016 314 411 3017 314 592 3018 778 592 3019 779 592 3020 314 533 3021 779 533 3022 315 533 3023 315 535 3024 779 535 3025 780 535 3026 315 534 3027 780 534 3028 307 534 3029 307 593 3030 780 593 3031 781 593 3032 307 594 3033 781 594 3034 308 594 3035 308 536 3036 781 536 3037 782 536 3038 308 537 3039 782 537 3040 309 537 3041 309 538 3042 782 538 3043 783 538 3044 309 539 3045 783 539 3046 310 539 3047 310 540 3048 783 540 3049 746 540 3050 310 595 3051 746 595 3052 311 595 3053 311 596 3054 746 596 3055 312 596 3056 747 0 3057 746 0 3058 784 0 3059 747 0 3060 784 0 3061 748 0 3062 751 0 3063 750 0 3064 784 0 3065 784 543 3066 750 543 3067 749 543 3068 784 0 3069 749 0 3070 748 0 3071 754 544 3072 753 544 3073 784 544 3074 784 545 3075 753 545 3076 752 545 3077 784 597 3078 752 597 3079 751 597 3080 757 0 3081 756 0 3082 784 0 3083 784 598 3084 756 598 3085 755 598 3086 784 599 3087 755 599 3088 754 599 3089 760 0 3090 759 0 3091 784 0 3092 784 600 3093 759 600 3094 758 600 3095 784 601 3096 758 601 3097 757 601 3098 763 0 3099 762 0 3100 784 0 3101 784 550 3102 762 550 3103 761 550 3104 784 543 3105 761 543 3106 760 543 3107 766 0 3108 765 0 3109 784 0 3110 784 602 3111 765 602 3112 764 602 3113 784 603 3114 764 603 3115 763 603 3116 769 553 3117 768 553 3118 784 553 3119 784 604 3120 768 604 3121 767 604 3122 784 0 3123 767 0 3124 766 0 3125 772 0 3126 771 0 3127 784 0 3128 784 555 3129 771 555 3130 770 555 3131 784 556 3132 770 556 3133 769 556 3134 775 605 3135 774 605 3136 784 605 3137 784 606 3138 774 606 3139 773 606 3140 784 607 3141 773 607 3142 772 607 3143 778 608 3144 777 608 3145 784 608 3146 784 609 3147 777 609 3148 776 609 3149 784 562 3150 776 562 3151 775 562 3152 781 563 3153 780 563 3154 784 563 3155 784 564 3156 780 564 3157 779 564 3158 784 610 3159 779 610 3160 778 610 3161 746 0 3162 783 0 3163 784 0 3164 784 566 3165 783 566 3166 782 566 3167 784 567 3168 782 567 3169 781 567 3170 613 0 3171 610 0 3172 785 0 3173 613 0 3174 785 0 3175 615 0 3176 621 0 3177 618 0 3178 785 0 3179 785 543 3180 618 543 3181 616 543 3182 785 0 3183 616 0 3184 615 0 3185 624 544 3186 623 544 3187 785 544 3188 785 611 3189 623 611 3190 622 611 3191 785 597 3192 622 597 3193 621 597 3194 627 0 3195 626 0 3196 785 0 3197 785 547 3198 626 547 3199 625 547 3200 785 599 3201 625 599 3202 624 599 3203 630 0 3204 629 0 3205 785 0 3206 785 549 3207 629 549 3208 628 549 3209 785 612 3210 628 612 3211 627 612 3212 633 0 3213 632 0 3214 785 0 3215 785 613 3216 632 613 3217 631 613 3218 785 614 3219 631 614 3220 630 614 3221 636 0 3222 635 0 3223 785 0 3224 785 551 3225 635 551 3226 634 551 3227 785 615 3228 634 615 3229 633 615 3230 639 616 3231 638 616 3232 785 616 3233 785 554 3234 638 554 3235 637 554 3236 785 0 3237 637 0 3238 636 0 3239 642 0 3240 641 0 3241 785 0 3242 785 617 3243 641 617 3244 640 617 3245 785 618 3246 640 618 3247 639 618 3248 645 619 3249 644 619 3250 785 619 3251 785 558 3252 644 558 3253 643 558 3254 785 559 3255 643 559 3256 642 559 3257 648 608 3258 647 608 3259 785 608 3260 785 561 3261 647 561 3262 646 561 3263 785 562 3264 646 562 3265 645 562 3266 606 563 3267 650 563 3268 785 563 3269 785 564 3270 650 564 3271 649 564 3272 785 610 3273 649 610 3274 648 610 3275 610 0 3276 608 0 3277 785 0 3278 785 566 3279 608 566 3280 607 566 3281 785 567 3282 607 567 3283 606 567 3284 786 620 3285 787 620 3286 419 620 3287 419 621 3288 787 621 3289 388 621 3290 787 495 3291 788 495 3292 388 495 3293 388 356 3294 788 356 3295 789 356 3296 388 622 3297 789 622 3298 386 622 3299 386 623 3300 789 623 3301 790 623 3302 386 624 3303 790 624 3304 373 624 3305 373 625 3306 790 625 3307 791 625 3308 373 458 3309 791 458 3310 372 458 3311 372 363 3312 791 363 3313 792 363 3314 372 626 3315 792 626 3316 371 626 3317 371 365 3318 792 365 3319 793 365 3320 371 366 3321 793 366 3322 389 366 3323 389 367 3324 793 367 3325 794 367 3326 389 627 3327 794 627 3328 390 627 3329 390 369 3330 794 369 3331 795 369 3332 390 575 3333 795 575 3334 369 575 3335 369 628 3336 795 628 3337 796 628 3338 369 629 3339 796 629 3340 357 629 3341 357 373 3342 796 373 3343 797 373 3344 357 508 3345 797 508 3346 356 508 3347 356 509 3348 797 509 3349 798 509 3350 356 376 3351 798 376 3352 355 376 3353 355 510 3354 798 510 3355 799 510 3356 355 510 3357 799 510 3358 374 510 3359 374 630 3360 799 630 3361 800 630 3362 374 631 3363 800 631 3364 375 631 3365 375 380 3366 800 380 3367 801 380 3368 375 632 3369 801 632 3370 376 632 3371 376 382 3372 801 382 3373 802 382 3374 376 633 3375 802 633 3376 404 633 3377 404 383 3378 802 383 3379 803 383 3380 404 384 3381 803 384 3382 405 384 3383 405 516 3384 803 516 3385 804 516 3386 405 385 3387 804 385 3388 406 385 3389 406 634 3390 804 634 3391 805 634 3392 406 635 3393 805 635 3394 417 635 3395 417 518 3396 805 518 3397 806 518 3398 417 389 3399 806 389 3400 418 389 3401 418 390 3402 806 390 3403 807 390 3404 418 519 3405 807 519 3406 377 519 3407 377 636 3408 807 636 3409 808 636 3410 377 637 3411 808 637 3412 378 637 3413 378 394 3414 808 394 3415 809 394 3416 378 521 3417 809 521 3418 391 521 3419 391 396 3420 809 396 3421 810 396 3422 391 397 3423 810 397 3424 392 397 3425 392 638 3426 810 638 3427 811 638 3428 392 398 3429 811 398 3430 393 398 3431 393 639 3432 811 639 3433 812 639 3434 393 400 3435 812 400 3436 394 400 3437 394 640 3438 812 640 3439 813 640 3440 394 641 3441 813 641 3442 395 641 3443 395 527 3444 813 527 3445 814 527 3446 395 527 3447 814 527 3448 396 527 3449 396 404 3450 814 404 3451 815 404 3452 396 528 3453 815 528 3454 397 528 3455 397 529 3456 815 529 3457 816 529 3458 397 407 3459 816 407 3460 398 407 3461 398 642 3462 816 642 3463 817 642 3464 398 643 3465 817 643 3466 399 643 3467 399 591 3468 817 591 3469 818 591 3470 399 411 3471 818 411 3472 400 411 3473 400 644 3474 818 644 3475 819 644 3476 400 413 3477 819 413 3478 409 413 3479 409 414 3480 819 414 3481 820 414 3482 409 414 3483 820 414 3484 410 414 3485 410 645 3486 820 645 3487 821 645 3488 410 416 3489 821 416 3490 414 416 3491 414 646 3492 821 646 3493 822 646 3494 414 647 3495 822 647 3496 415 647 3497 415 648 3498 822 648 3499 823 648 3500 415 649 3501 823 649 3502 416 649 3503 416 352 3504 823 352 3505 786 352 3506 416 436 3507 786 436 3508 421 436 3509 421 353 3510 786 353 3511 419 353 3512 787 0 3513 786 0 3514 824 0 3515 787 0 3516 824 0 3517 788 0 3518 791 0 3519 790 0 3520 824 0 3521 824 650 3522 790 650 3523 789 650 3524 824 0 3525 789 0 3526 788 0 3527 794 651 3528 793 651 3529 824 651 3530 824 611 3531 793 611 3532 792 611 3533 824 597 3534 792 597 3535 791 597 3536 797 0 3537 796 0 3538 824 0 3539 824 652 3540 796 652 3541 795 652 3542 824 599 3543 795 599 3544 794 599 3545 800 0 3546 799 0 3547 824 0 3548 824 600 3549 799 600 3550 798 600 3551 824 599 3552 798 599 3553 797 599 3554 803 0 3555 802 0 3556 824 0 3557 824 613 3558 802 613 3559 801 613 3560 824 543 3561 801 543 3562 800 543 3563 806 0 3564 805 0 3565 824 0 3566 824 653 3567 805 653 3568 804 653 3569 824 603 3570 804 603 3571 803 603 3572 809 553 3573 808 553 3574 824 553 3575 824 654 3576 808 654 3577 807 654 3578 824 0 3579 807 0 3580 806 0 3581 812 0 3582 811 0 3583 824 0 3584 824 550 3585 811 550 3586 810 550 3587 824 618 3588 810 618 3589 809 618 3590 815 655 3591 814 655 3592 824 655 3593 824 606 3594 814 606 3595 813 606 3596 824 607 3597 813 607 3598 812 607 3599 818 608 3600 817 608 3601 824 608 3602 824 656 3603 817 656 3604 816 656 3605 824 562 3606 816 562 3607 815 562 3608 821 563 3609 820 563 3610 824 563 3611 824 564 3612 820 564 3613 819 564 3614 824 610 3615 819 610 3616 818 610 3617 786 0 3618 823 0 3619 824 0 3620 824 657 3621 823 657 3622 822 657 3623 824 567 3624 822 567 3625 821 567 3626 825 494 3627 826 494 3628 471 494 3629 471 495 3630 826 495 3631 433 495 3632 826 495 3633 827 495 3634 433 495 3635 433 356 3636 827 356 3637 828 356 3638 433 622 3639 828 622 3640 434 622 3641 434 357 3642 828 357 3643 829 357 3644 434 658 3645 829 658 3646 435 658 3647 435 659 3648 829 659 3649 830 659 3650 435 660 3651 830 660 3652 436 660 3653 436 661 3654 830 661 3655 831 661 3656 436 662 3657 831 662 3658 437 662 3659 437 365 3660 831 365 3661 832 365 3662 437 366 3663 832 366 3664 454 366 3665 454 367 3666 832 367 3667 833 367 3668 454 368 3669 833 368 3670 455 368 3671 455 663 3672 833 663 3673 834 663 3674 455 575 3675 834 575 3676 438 575 3677 438 628 3678 834 628 3679 835 628 3680 438 629 3681 835 629 3682 439 629 3683 439 373 3684 835 373 3685 836 373 3686 439 508 3687 836 508 3688 441 508 3689 441 664 3690 836 664 3691 837 664 3692 441 376 3693 837 376 3694 424 376 3695 424 665 3696 837 665 3697 838 665 3698 424 665 3699 838 665 3700 444 665 3701 444 378 3702 838 378 3703 839 378 3704 444 631 3705 839 631 3706 430 631 3707 430 380 3708 839 380 3709 840 380 3710 430 666 3711 840 666 3712 429 666 3713 429 667 3714 840 667 3715 841 667 3716 429 382 3717 841 382 3718 427 382 3719 427 668 3720 841 668 3721 842 668 3722 427 384 3723 842 384 3724 461 384 3725 461 669 3726 842 669 3727 843 669 3728 461 516 3729 843 516 3730 462 516 3731 462 670 3732 843 670 3733 844 670 3734 462 671 3735 844 671 3736 463 671 3737 463 672 3738 844 672 3739 845 672 3740 463 673 3741 845 673 3742 445 673 3743 445 674 3744 845 674 3745 846 674 3746 445 675 3747 846 675 3748 446 675 3749 446 676 3750 846 676 3751 847 676 3752 446 677 3753 847 677 3754 448 677 3755 448 584 3756 847 584 3757 848 584 3758 448 678 3759 848 678 3760 464 678 3761 464 396 3762 848 396 3763 849 396 3764 464 679 3765 849 679 3766 465 679 3767 465 398 3768 849 398 3769 850 398 3770 465 680 3771 850 680 3772 449 680 3773 449 681 3774 850 681 3775 851 681 3776 449 400 3777 851 400 3778 450 400 3779 450 640 3780 851 640 3781 852 640 3782 450 402 3783 852 402 3784 466 402 3785 466 682 3786 852 682 3787 853 682 3788 466 682 3789 853 682 3790 467 682 3791 467 404 3792 853 404 3793 854 404 3794 467 683 3795 854 683 3796 468 683 3797 468 529 3798 854 529 3799 855 529 3800 468 407 3801 855 407 3802 431 407 3803 431 642 3804 855 642 3805 856 642 3806 431 643 3807 856 643 3808 432 643 3809 432 591 3810 856 591 3811 857 591 3812 432 684 3813 857 684 3814 451 684 3815 451 412 3816 857 412 3817 858 412 3818 451 413 3819 858 413 3820 452 413 3821 452 414 3822 858 414 3823 859 414 3824 452 414 3825 859 414 3826 453 414 3827 453 685 3828 859 685 3829 860 685 3830 453 686 3831 860 686 3832 472 686 3833 472 687 3834 860 687 3835 861 687 3836 472 688 3837 861 688 3838 473 688 3839 473 689 3840 861 689 3841 862 689 3842 473 690 3843 862 690 3844 469 690 3845 469 352 3846 862 352 3847 825 352 3848 469 436 3849 825 436 3850 470 436 3851 470 353 3852 825 353 3853 471 353 3854 826 0 3855 825 0 3856 863 0 3857 826 0 3858 863 0 3859 827 0 3860 830 0 3861 829 0 3862 863 0 3863 863 691 3864 829 691 3865 828 691 3866 863 0 3867 828 0 3868 827 0 3869 833 651 3870 832 651 3871 863 651 3872 863 611 3873 832 611 3874 831 611 3875 863 692 3876 831 692 3877 830 692 3878 836 0 3879 835 0 3880 863 0 3881 863 693 3882 835 693 3883 834 693 3884 863 694 3885 834 694 3886 833 694 3887 839 0 3888 838 0 3889 863 0 3890 863 695 3891 838 695 3892 837 695 3893 863 548 3894 837 548 3895 836 548 3896 842 0 3897 841 0 3898 863 0 3899 863 696 3900 841 696 3901 840 696 3902 863 543 3903 840 543 3904 839 543 3905 845 0 3906 844 0 3907 863 0 3908 863 653 3909 844 653 3910 843 653 3911 863 697 3912 843 697 3913 842 697 3914 848 616 3915 847 616 3916 863 616 3917 863 654 3918 847 654 3919 846 654 3920 863 0 3921 846 0 3922 845 0 3923 851 0 3924 850 0 3925 863 0 3926 863 550 3927 850 550 3928 849 550 3929 863 618 3930 849 618 3931 848 618 3932 854 557 3933 853 557 3934 863 557 3935 863 698 3936 853 698 3937 852 698 3938 863 699 3939 852 699 3940 851 699 3941 857 560 3942 856 560 3943 863 560 3944 863 700 3945 856 700 3946 855 700 3947 863 701 3948 855 701 3949 854 701 3950 860 563 3951 859 563 3952 863 563 3953 863 564 3954 859 564 3955 858 564 3956 863 610 3957 858 610 3958 857 610 3959 825 0 3960 862 0 3961 863 0 3962 863 702 3963 862 702 3964 861 702 3965 863 567 3966 861 567 3967 860 567 3968 864 703 3969 865 703 3970 531 703 3971 531 704 3972 865 704 3973 866 704 3974 531 705 3975 866 705 3976 532 705 3977 532 706 3978 866 706 3979 867 706 3980 532 707 3981 867 707 3982 533 707 3983 533 457 3984 867 457 3985 868 457 3986 533 501 3987 868 501 3988 545 501 3989 545 459 3990 868 459 3991 869 459 3992 545 460 3993 869 460 3994 546 460 3995 546 708 3996 869 708 3997 870 708 3998 546 709 3999 870 709 4000 534 709 4001 534 710 4002 870 710 4003 871 710 4004 534 463 4005 871 463 4006 535 463 4007 535 464 4008 871 464 4009 872 464 4010 535 711 4011 872 711 4012 547 711 4013 547 712 4014 872 712 4015 873 712 4016 547 713 4017 873 713 4018 548 713 4019 548 468 4020 873 468 4021 874 468 4022 548 714 4023 874 714 4024 549 714 4025 549 470 4026 874 470 4027 875 470 4028 549 715 4029 875 715 4030 527 715 4031 527 510 4032 875 510 4033 876 510 4034 527 511 4035 876 511 4036 528 511 4037 528 378 4038 876 378 4039 877 378 4040 528 379 4041 877 379 4042 529 379 4043 529 716 4044 877 716 4045 878 716 4046 529 473 4047 878 473 4048 530 473 4049 530 717 4050 878 717 4051 879 717 4052 530 475 4053 879 475 4054 521 475 4055 521 514 4056 879 514 4057 880 514 4058 521 515 4059 880 515 4060 522 515 4061 522 718 4062 880 718 4063 881 718 4064 522 719 4065 881 719 4066 523 719 4067 523 477 4068 881 477 4069 882 477 4070 523 478 4071 882 478 4072 536 478 4073 536 720 4074 882 720 4075 883 720 4076 536 480 4077 883 480 4078 537 480 4079 537 481 4080 883 481 4081 884 481 4082 537 721 4083 884 721 4084 538 721 4085 538 392 4086 884 392 4087 885 392 4088 538 393 4089 885 393 4090 539 393 4091 539 722 4092 885 722 4093 886 722 4094 539 723 4095 886 723 4096 540 723 4097 540 724 4098 886 724 4099 887 724 4100 540 725 4101 887 725 4102 541 725 4103 541 398 4104 887 398 4105 888 398 4106 541 524 4107 888 524 4108 542 524 4109 542 442 4110 888 442 4111 889 442 4112 542 726 4113 889 726 4114 543 726 4115 543 401 4116 889 401 4117 890 401 4118 543 402 4119 890 402 4120 544 402 4121 544 526 4122 890 526 4123 891 526 4124 544 527 4125 891 527 4126 554 527 4127 554 528 4128 891 528 4129 892 528 4130 554 405 4131 892 405 4132 555 405 4133 555 727 4134 892 727 4135 893 727 4136 555 445 4137 893 445 4138 556 445 4139 556 728 4140 893 728 4141 894 728 4142 556 729 4143 894 729 4144 550 729 4145 550 730 4146 894 730 4147 895 730 4148 550 448 4149 895 448 4150 551 448 4151 551 449 4152 895 449 4153 896 449 4154 551 731 4155 896 731 4156 552 731 4157 552 732 4158 896 732 4159 897 732 4160 552 733 4161 897 733 4162 553 733 4163 553 421 4164 897 421 4165 898 421 4166 553 734 4167 898 734 4168 557 734 4169 557 735 4170 898 735 4171 899 735 4172 557 736 4173 899 736 4174 558 736 4175 558 538 4176 899 538 4177 900 538 4178 558 539 4179 900 539 4180 525 539 4181 525 540 4182 900 540 4183 901 540 4184 525 541 4185 901 541 4186 524 541 4187 524 737 4188 901 737 4189 864 737 4190 524 738 4191 864 738 4192 531 738 4193 864 0 4194 901 0 4195 902 0 4196 864 0 4197 902 0 4198 865 0 4199 868 739 4200 867 739 4201 902 739 4202 902 740 4203 867 740 4204 866 740 4205 902 0 4206 866 0 4207 865 0 4208 871 605 4209 870 605 4210 902 605 4211 902 549 4212 870 549 4213 869 549 4214 902 741 4215 869 741 4216 868 741 4217 874 557 4218 873 557 4219 902 557 4220 902 742 4221 873 742 4222 872 742 4223 902 743 4224 872 743 4225 871 743 4226 877 0 4227 876 0 4228 902 0 4229 902 744 4230 876 744 4231 875 744 4232 902 0 4233 875 0 4234 874 0 4235 880 0 4236 879 0 4237 902 0 4238 902 745 4239 879 745 4240 878 745 4241 902 0 4242 878 0 4243 877 0 4244 883 0 4245 882 0 4246 902 0 4247 902 0 4248 882 0 4249 881 0 4250 902 0 4251 881 0 4252 880 0 4253 886 746 4254 885 746 4255 902 746 4256 902 747 4257 885 747 4258 884 747 4259 902 0 4260 884 0 4261 883 0 4262 889 0 4263 888 0 4264 902 0 4265 902 741 4266 888 741 4267 887 741 4268 902 748 4269 887 748 4270 886 748 4271 892 0 4272 891 0 4273 902 0 4274 902 749 4275 891 749 4276 890 749 4277 902 750 4278 890 750 4279 889 750 4280 895 0 4281 894 0 4282 902 0 4283 902 751 4284 894 751 4285 893 751 4286 902 752 4287 893 752 4288 892 752 4289 898 0 4290 897 0 4291 902 0 4292 902 753 4293 897 753 4294 896 753 4295 902 754 4296 896 754 4297 895 754 4298 901 0 4299 900 0 4300 902 0 4301 902 755 4302 900 755 4303 899 755 4304 902 756 4305 899 756 4306 898 756 4307 903 757 4308 904 757 4309 905 757 4310 905 758 4311 906 758 4312 903 758 4313 903 759 4314 906 759 4315 907 759 4316 903 760 4317 907 760 4318 908 760 4319 908 427 4320 907 427 4321 909 427 4322 908 583 4323 909 583 4324 910 583 4325 910 761 4326 909 761 4327 911 761 4328 911 762 4329 909 762 4330 912 762 4331 911 763 4332 912 763 4333 913 763 4334 913 724 4335 912 724 4336 914 724 4337 913 764 4338 914 764 4339 915 764 4340 239 765 4341 238 765 4342 916 765 4343 256 705 4344 917 705 4345 270 705 4346 270 706 4347 917 706 4348 918 706 4349 270 707 4350 918 707 4351 271 707 4352 271 457 4353 918 457 4354 919 457 4355 271 501 4356 919 501 4357 261 501 4358 261 766 4359 919 766 4360 920 766 4361 261 767 4362 920 767 4363 262 767 4364 262 768 4365 920 768 4366 921 768 4367 262 769 4368 921 769 4369 263 769 4370 263 710 4371 921 710 4372 922 710 4373 263 770 4374 922 770 4375 264 770 4376 264 464 4377 922 464 4378 923 464 4379 264 771 4380 923 771 4381 265 771 4382 265 712 4383 923 712 4384 924 712 4385 265 467 4386 924 467 4387 266 467 4388 266 772 4389 924 772 4390 925 772 4391 266 714 4392 925 714 4393 267 714 4394 267 773 4395 925 773 4396 926 773 4397 267 774 4398 926 774 4399 268 774 4400 268 510 4401 926 510 4402 927 510 4403 268 578 4404 927 578 4405 269 578 4406 269 579 4407 927 579 4408 928 579 4409 269 379 4410 928 379 4411 273 379 4412 273 716 4413 928 716 4414 929 716 4415 273 473 4416 929 473 4417 274 473 4418 274 717 4419 929 717 4420 930 717 4421 274 475 4422 930 475 4423 240 475 4424 240 580 4425 930 580 4426 931 580 4427 240 515 4428 931 515 4429 241 515 4430 241 775 4431 931 775 4432 932 775 4433 241 718 4434 932 718 4435 249 718 4436 249 477 4437 932 477 4438 905 477 4439 249 776 4440 905 776 4441 250 776 4442 250 777 4443 905 777 4444 904 777 4445 250 778 4446 904 778 4447 251 778 4448 915 779 4449 914 779 4450 916 779 4451 916 780 4452 914 780 4453 933 780 4454 916 781 4455 933 781 4456 239 781 4457 239 442 4458 933 442 4459 934 442 4460 239 726 4461 934 726 4462 243 726 4463 243 401 4464 934 401 4465 935 401 4466 243 587 4467 935 587 4468 244 587 4469 244 588 4470 935 588 4471 936 588 4472 244 527 4473 936 527 4474 245 527 4475 245 589 4476 936 589 4477 937 589 4478 245 528 4479 937 528 4480 246 528 4481 246 727 4482 937 727 4483 938 727 4484 246 782 4485 938 782 4486 247 782 4487 247 446 4488 938 446 4489 939 446 4490 247 729 4491 939 729 4492 248 729 4493 248 783 4494 939 783 4495 940 783 4496 248 448 4497 940 448 4498 252 448 4499 252 784 4500 940 784 4501 941 784 4502 252 731 4503 941 731 4504 253 731 4505 253 785 4506 941 785 4507 942 785 4508 253 786 4509 942 786 4510 254 786 4511 254 787 4512 942 787 4513 943 787 4514 254 421 4515 943 421 4516 258 421 4517 258 735 4518 943 735 4519 944 735 4520 258 736 4521 944 736 4522 259 736 4523 259 538 4524 944 538 4525 945 538 4526 259 539 4527 945 539 4528 260 539 4529 260 540 4530 945 540 4531 946 540 4532 260 595 4533 946 595 4534 255 595 4535 255 788 4536 946 788 4537 947 788 4538 255 438 4539 947 438 4540 256 438 4541 256 789 4542 947 789 4543 948 789 4544 256 790 4545 948 790 4546 917 790 4547 947 0 4548 946 0 4549 949 0 4550 947 0 4551 949 0 4552 948 0 4553 919 739 4554 918 739 4555 949 739 4556 949 740 4557 918 740 4558 917 740 4559 949 0 4560 917 0 4561 948 0 4562 922 557 4563 921 557 4564 949 557 4565 949 695 4566 921 695 4567 920 695 4568 949 791 4569 920 791 4570 919 791 4571 925 557 4572 924 557 4573 949 557 4574 949 792 4575 924 792 4576 923 792 4577 949 793 4578 923 793 4579 922 793 4580 928 0 4581 927 0 4582 949 0 4583 949 600 4584 927 600 4585 926 600 4586 949 0 4587 926 0 4588 925 0 4589 931 0 4590 930 0 4591 949 0 4592 949 745 4593 930 745 4594 929 745 4595 949 0 4596 929 0 4597 928 0 4598 906 0 4599 905 0 4600 949 0 4601 949 0 4602 905 0 4603 932 0 4604 949 0 4605 932 0 4606 931 0 4607 912 794 4608 909 794 4609 949 794 4610 949 795 4611 909 795 4612 907 795 4613 949 0 4614 907 0 4615 906 0 4616 934 0 4617 933 0 4618 949 0 4619 949 741 4620 933 741 4621 914 741 4622 949 796 4623 914 796 4624 912 796 4625 937 0 4626 936 0 4627 949 0 4628 949 797 4629 936 797 4630 935 797 4631 949 798 4632 935 798 4633 934 798 4634 940 0 4635 939 0 4636 949 0 4637 949 799 4638 939 799 4639 938 799 4640 949 752 4641 938 752 4642 937 752 4643 943 0 4644 942 0 4645 949 0 4646 949 753 4647 942 753 4648 941 753 4649 949 800 4650 941 800 4651 940 800 4652 946 0 4653 945 0 4654 949 0 4655 949 755 4656 945 755 4657 944 755 4658 949 756 4659 944 756 4660 943 756 4661 671 0 4662 670 0 4663 950 0 4664 671 0 4665 950 0 4666 680 0 4667 683 739 4668 682 739 4669 950 739 4670 950 740 4671 682 740 4672 681 740 4673 950 0 4674 681 0 4675 680 0 4676 686 557 4677 685 557 4678 950 557 4679 950 695 4680 685 695 4681 684 695 4682 950 553 4683 684 553 4684 683 553 4685 689 557 4686 688 557 4687 950 557 4688 950 742 4689 688 742 4690 687 742 4691 950 801 4692 687 801 4693 686 801 4694 692 0 4695 691 0 4696 950 0 4697 950 744 4698 691 744 4699 690 744 4700 950 0 4701 690 0 4702 689 0 4703 695 0 4704 694 0 4705 950 0 4706 950 802 4707 694 802 4708 693 802 4709 950 0 4710 693 0 4711 692 0 4712 698 0 4713 697 0 4714 950 0 4715 950 0 4716 697 0 4717 696 0 4718 950 0 4719 696 0 4720 695 0 4721 664 553 4722 663 553 4723 950 553 4724 950 747 4725 663 747 4726 662 747 4727 950 0 4728 662 0 4729 698 0 4730 673 0 4731 672 0 4732 950 0 4733 950 800 4734 672 800 4735 666 800 4736 950 803 4737 666 803 4738 664 803 4739 676 0 4740 675 0 4741 950 0 4742 950 749 4743 675 749 4744 674 749 4745 950 804 4746 674 804 4747 673 804 4748 679 0 4749 678 0 4750 950 0 4751 950 751 4752 678 751 4753 677 751 4754 950 752 4755 677 752 4756 676 752 4757 655 0 4758 654 0 4759 950 0 4760 950 805 4761 654 805 4762 653 805 4763 950 800 4764 653 800 4765 679 800 4766 670 0 4767 669 0 4768 950 0 4769 950 806 4770 669 806 4771 657 806 4772 950 807 4773 657 807 4774 655 807 4775 951 808 4776 952 808 4777 953 808 4778 953 809 4779 954 809 4780 951 809 4781 951 810 4782 954 810 4783 955 810 4784 951 811 4785 955 811 4786 956 811 4787 956 812 4788 955 812 4789 957 812 4790 957 813 4791 955 813 4792 958 813 4793 957 814 4794 958 814 4795 959 814 4796 959 815 4797 958 815 4798 960 815 4799 959 422 4800 960 422 4801 961 422 4802 961 816 4803 960 816 4804 962 816 4805 961 424 4806 962 424 4807 963 424 4808 482 425 4809 481 425 4810 964 425 4811 963 433 4812 962 433 4813 964 433 4814 964 817 4815 962 817 4816 965 817 4817 964 818 4818 965 818 4819 482 818 4820 482 352 4821 965 352 4822 966 352 4823 482 436 4824 966 436 4825 483 436 4826 483 437 4827 966 437 4828 967 437 4829 483 819 4830 967 819 4831 484 819 4832 967 452 4833 968 452 4834 484 452 4835 484 453 4836 968 453 4837 969 453 4838 484 454 4839 969 454 4840 485 454 4841 485 455 4842 969 455 4843 970 455 4844 485 820 4845 970 820 4846 492 820 4847 492 659 4848 970 659 4849 971 659 4850 492 660 4851 971 660 4852 493 660 4853 493 821 4854 971 821 4855 972 821 4856 493 822 4857 972 822 4858 494 822 4859 494 461 4860 972 461 4861 973 461 4862 494 462 4863 973 462 4864 486 462 4865 486 463 4866 973 463 4867 974 463 4868 486 463 4869 974 463 4870 479 463 4871 479 823 4872 974 823 4873 975 823 4874 479 771 4875 975 771 4876 480 771 4877 480 824 4878 975 824 4879 976 824 4880 480 825 4881 976 825 4882 495 825 4883 495 468 4884 976 468 4885 977 468 4886 495 714 4887 977 714 4888 496 714 4889 496 826 4890 977 826 4891 978 826 4892 496 471 4893 978 471 4894 497 471 4895 497 665 4896 978 665 4897 979 665 4898 497 665 4899 979 665 4900 498 665 4901 498 378 4902 979 378 4903 980 378 4904 498 631 4905 980 631 4906 499 631 4907 499 472 4908 980 472 4909 981 472 4910 499 827 4911 981 827 4912 500 827 4913 500 828 4914 981 828 4915 982 828 4916 500 475 4917 982 475 4918 501 475 4919 501 668 4920 982 668 4921 983 668 4922 501 384 4923 983 384 4924 502 384 4925 502 829 4926 983 829 4927 984 829 4928 502 718 4929 984 718 4930 503 718 4931 503 830 4932 984 830 4933 985 830 4934 503 831 4935 985 831 4936 504 831 4937 504 832 4938 985 832 4939 986 832 4940 504 833 4941 986 833 4942 505 833 4943 505 834 4944 986 834 4945 987 834 4946 505 835 4947 987 835 4948 488 835 4949 488 676 4950 987 676 4951 988 676 4952 488 677 4953 988 677 4954 489 677 4955 489 723 4956 988 723 4957 989 723 4958 489 836 4959 989 836 4960 490 836 4961 490 430 4962 989 430 4963 990 430 4964 490 837 4965 990 837 4966 491 837 4967 491 398 4968 990 398 4969 991 398 4970 491 680 4971 991 680 4972 512 680 4973 512 838 4974 991 838 4975 992 838 4976 512 443 4977 992 443 4978 513 443 4979 513 640 4980 992 640 4981 993 640 4982 513 402 4983 993 402 4984 507 402 4985 507 682 4986 993 682 4987 994 682 4988 507 682 4989 994 682 4990 508 682 4991 508 404 4992 994 404 4993 995 404 4994 508 683 4995 995 683 4996 474 683 4997 474 727 4998 995 727 4999 996 727 5000 474 445 5001 996 445 5002 475 445 5003 475 839 5004 996 839 5005 953 839 5006 475 839 5007 953 839 5008 477 839 5009 477 840 5010 953 840 5011 952 840 5012 477 841 5013 952 841 5014 478 841 5015 967 0 5016 966 0 5017 997 0 5018 967 0 5019 997 0 5020 968 0 5021 971 739 5022 970 739 5023 997 739 5024 997 842 5025 970 842 5026 969 842 5027 997 0 5028 969 0 5029 968 0 5030 974 557 5031 973 557 5032 997 557 5033 997 843 5034 973 843 5035 972 843 5036 997 844 5037 972 844 5038 971 844 5039 977 655 5040 976 655 5041 997 655 5042 997 845 5043 976 845 5044 975 845 5045 997 846 5046 975 846 5047 974 846 5048 980 0 5049 979 0 5050 997 0 5051 997 847 5052 979 847 5053 978 847 5054 997 0 5055 978 0 5056 977 0 5057 983 0 5058 982 0 5059 997 0 5060 997 848 5061 982 848 5062 981 848 5063 997 0 5064 981 0 5065 980 0 5066 986 0 5067 985 0 5068 997 0 5069 997 0 5070 985 0 5071 984 0 5072 997 0 5073 984 0 5074 983 0 5075 989 794 5076 988 794 5077 997 794 5078 997 849 5079 988 849 5080 987 849 5081 997 0 5082 987 0 5083 986 0 5084 992 0 5085 991 0 5086 997 0 5087 997 850 5088 991 850 5089 990 850 5090 997 803 5091 990 803 5092 989 803 5093 995 0 5094 994 0 5095 997 0 5096 997 695 5097 994 695 5098 993 695 5099 997 851 5100 993 851 5101 992 851 5102 954 0 5103 953 0 5104 997 0 5105 997 852 5106 953 852 5107 996 852 5108 997 853 5109 996 853 5110 995 853 5111 960 0 5112 958 0 5113 997 0 5114 997 805 5115 958 805 5116 955 805 5117 997 800 5118 955 800 5119 954 800 5120 966 0 5121 965 0 5122 997 0 5123 997 806 5124 965 806 5125 962 806 5126 997 807 5127 962 807 5128 960 807 5129 342 485 5130 998 485 5131 340 485 5132 340 485 5133 998 485 5134 620 485 5135 999 487 5136 125 487 5137 612 487 5138 612 487 5139 125 487 5140 123 487 5141 612 487 5142 123 487 5143 1000 487 5144 1001 854 5145 242 854 5146 904 854 5147 904 855 5148 242 855 5149 251 855 5150 916 856 5151 238 856 5152 1002 856 5153 1002 857 5154 238 857 5155 237 857 5156 1002 858 5157 237 858 5158 276 858 5159 1003 859 5160 58 859 5161 911 859 5162 911 860 5163 58 860 5164 60 860 5165 911 861 5166 60 861 5167 1004 861 5168 205 862 5169 661 862 5170 191 862 5171 191 863 5172 661 863 5173 1005 863 5174 191 864 5175 1005 864 5176 192 864 5177 659 865 5178 206 865 5179 182 865 5180 659 866 5181 182 866 5182 1006 866 5183 1006 867 5184 182 867 5185 184 867 5186 1006 868 5187 184 868 5188 223 868 5189 1007 869 5190 476 869 5191 952 869 5192 952 870 5193 476 870 5194 478 870 5195 964 871 5196 481 871 5197 172 871 5198 964 872 5199 172 872 5200 1008 872 5201 1008 873 5202 172 873 5203 174 873 5204 1008 874 5205 174 874 5206 185 874 5207 957 0 5208 1009 0 5209 956 0 5210 956 0 5211 1009 0 5212 951 0 5213 614 0 5214 617 0 5215 998 0 5216 998 875 5217 617 875 5218 619 875 5219 998 876 5220 619 876 5221 620 876 5222 952 0 5223 951 0 5224 1007 0 5225 1007 877 5226 951 877 5227 1009 877 5228 1007 878 5229 1009 878 5230 1010 878 5231 1010 0 5232 1009 0 5233 1011 0 5234 1010 879 5235 1011 879 5236 1012 879 5237 1012 0 5238 1011 0 5239 1013 0 5240 1012 0 5241 1013 0 5242 1014 0 5243 1014 0 5244 1013 0 5245 1015 0 5246 1014 0 5247 1015 0 5248 1016 0 5249 1016 0 5250 1015 0 5251 1017 0 5252 1016 0 5253 1017 0 5254 1018 0 5255 1018 0 5256 1017 0 5257 1019 0 5258 1018 0 5259 1019 0 5260 1020 0 5261 1020 0 5262 1019 0 5263 1021 0 5264 1020 0 5265 1021 0 5266 1022 0 5267 1022 0 5268 1021 0 5269 1023 0 5270 1022 0 5271 1023 0 5272 1024 0 5273 1024 0 5274 1023 0 5275 1025 0 5276 1024 880 5277 1025 880 5278 1026 880 5279 1026 881 5280 1025 881 5281 1027 881 5282 1026 0 5283 1027 0 5284 1028 0 5285 1028 0 5286 1027 0 5287 1029 0 5288 1028 0 5289 1029 0 5290 1030 0 5291 1030 882 5292 1029 882 5293 1031 882 5294 1030 0 5295 1031 0 5296 1032 0 5297 1032 883 5298 1031 883 5299 1033 883 5300 1032 0 5301 1033 0 5302 1034 0 5303 1034 884 5304 1033 884 5305 1035 884 5306 1034 0 5307 1035 0 5308 1036 0 5309 1036 0 5310 1035 0 5311 1037 0 5312 1036 0 5313 1037 0 5314 1038 0 5315 1038 0 5316 1037 0 5317 1039 0 5318 1038 885 5319 1039 885 5320 1040 885 5321 1040 886 5322 1039 886 5323 1041 886 5324 1040 0 5325 1041 0 5326 1042 0 5327 1042 0 5328 1041 0 5329 1043 0 5330 1042 0 5331 1043 0 5332 1044 0 5333 1044 0 5334 1043 0 5335 1045 0 5336 1044 887 5337 1045 887 5338 1046 887 5339 1046 888 5340 1045 888 5341 1047 888 5342 1046 889 5343 1047 889 5344 1048 889 5345 1048 0 5346 1047 0 5347 1049 0 5348 1048 0 5349 1049 0 5350 1050 0 5351 1050 0 5352 1049 0 5353 1051 0 5354 1050 0 5355 1051 0 5356 1052 0 5357 1052 0 5358 1051 0 5359 1053 0 5360 1052 0 5361 1053 0 5362 1054 0 5363 1054 0 5364 1053 0 5365 1055 0 5366 1054 890 5367 1055 890 5368 1056 890 5369 1056 0 5370 1055 0 5371 1057 0 5372 1056 891 5373 1057 891 5374 1058 891 5375 1058 0 5376 1057 0 5377 1059 0 5378 1058 0 5379 1059 0 5380 1060 0 5381 1060 0 5382 1059 0 5383 1061 0 5384 1060 892 5385 1061 892 5386 998 892 5387 998 0 5388 1061 0 5389 999 0 5390 998 0 5391 999 0 5392 614 0 5393 614 0 5394 999 0 5395 612 0 5396 916 0 5397 1002 0 5398 915 0 5399 915 0 5400 1002 0 5401 913 0 5402 1062 893 5403 609 893 5404 611 893 5405 609 0 5406 1062 0 5407 604 0 5408 604 0 5409 1062 0 5410 1063 0 5411 604 0 5412 1063 0 5413 605 0 5414 911 894 5415 913 894 5416 1003 894 5417 1003 0 5418 913 0 5419 1002 0 5420 1003 0 5421 1002 0 5422 1064 0 5423 1064 0 5424 1002 0 5425 1065 0 5426 1064 0 5427 1065 0 5428 1066 0 5429 1066 0 5430 1065 0 5431 1067 0 5432 1066 0 5433 1067 0 5434 1068 0 5435 1068 0 5436 1067 0 5437 1069 0 5438 1068 0 5439 1069 0 5440 1070 0 5441 1070 0 5442 1069 0 5443 1071 0 5444 1070 0 5445 1071 0 5446 1072 0 5447 1072 0 5448 1071 0 5449 1073 0 5450 1072 895 5451 1073 895 5452 1074 895 5453 1074 896 5454 1073 896 5455 1075 896 5456 1074 897 5457 1075 897 5458 1076 897 5459 1076 0 5460 1075 0 5461 1077 0 5462 1076 0 5463 1077 0 5464 1078 0 5465 1078 0 5466 1077 0 5467 1079 0 5468 1078 898 5469 1079 898 5470 1080 898 5471 1080 0 5472 1079 0 5473 1081 0 5474 1080 899 5475 1081 899 5476 1082 899 5477 1082 0 5478 1081 0 5479 1083 0 5480 1082 900 5481 1083 900 5482 1084 900 5483 1084 901 5484 1083 901 5485 1085 901 5486 1084 902 5487 1085 902 5488 1086 902 5489 1086 0 5490 1085 0 5491 1087 0 5492 1086 0 5493 1087 0 5494 1088 0 5495 1088 0 5496 1087 0 5497 1089 0 5498 1088 903 5499 1089 903 5500 1090 903 5501 1090 904 5502 1089 904 5503 1091 904 5504 1090 0 5505 1091 0 5506 1092 0 5507 1092 905 5508 1091 905 5509 1093 905 5510 1092 0 5511 1093 0 5512 1094 0 5513 1094 0 5514 1093 0 5515 1095 0 5516 1094 906 5517 1095 906 5518 1096 906 5519 1096 0 5520 1095 0 5521 1097 0 5522 1096 907 5523 1097 907 5524 1098 907 5525 1098 0 5526 1097 0 5527 1062 0 5528 1098 0 5529 1062 0 5530 1000 0 5531 1000 0 5532 1062 0 5533 611 0 5534 1000 908 5535 611 908 5536 612 908 5537 903 0 5538 908 0 5539 1004 0 5540 1004 909 5541 908 909 5542 910 909 5543 1004 910 5544 910 910 5545 911 910 5546 651 911 5547 656 911 5548 1006 911 5549 1006 912 5550 656 912 5551 658 912 5552 1006 913 5553 658 913 5554 659 913 5555 652 0 5556 651 0 5557 1099 0 5558 1099 914 5559 651 914 5560 1006 914 5561 1099 0 5562 1006 0 5563 1100 0 5564 1100 0 5565 1006 0 5566 1101 0 5567 1100 0 5568 1101 0 5569 1102 0 5570 1102 0 5571 1101 0 5572 1103 0 5573 1102 915 5574 1103 915 5575 1104 915 5576 1104 0 5577 1103 0 5578 1105 0 5579 1104 916 5580 1105 916 5581 1106 916 5582 1106 0 5583 1105 0 5584 1107 0 5585 1106 0 5586 1107 0 5587 1108 0 5588 1108 0 5589 1107 0 5590 1109 0 5591 1108 0 5592 1109 0 5593 1110 0 5594 1110 0 5595 1109 0 5596 1111 0 5597 1110 0 5598 1111 0 5599 1112 0 5600 1112 0 5601 1111 0 5602 1113 0 5603 1112 0 5604 1113 0 5605 1114 0 5606 1114 0 5607 1113 0 5608 1115 0 5609 1114 0 5610 1115 0 5611 1116 0 5612 1116 0 5613 1115 0 5614 1117 0 5615 1116 917 5616 1117 917 5617 1118 917 5618 1118 918 5619 1117 918 5620 1119 918 5621 1118 0 5622 1119 0 5623 1120 0 5624 1120 919 5625 1119 919 5626 1121 919 5627 1120 0 5628 1121 0 5629 1122 0 5630 1122 0 5631 1121 0 5632 1123 0 5633 1122 0 5634 1123 0 5635 1004 0 5636 1004 0 5637 1123 0 5638 1001 0 5639 1004 920 5640 1001 920 5641 903 920 5642 903 0 5643 1001 0 5644 904 0 5645 1124 921 5646 92 921 5647 957 921 5648 957 922 5649 92 922 5650 94 922 5651 957 923 5652 94 923 5653 1009 923 5654 1018 485 5655 1020 485 5656 511 485 5657 511 485 5658 1020 485 5659 515 485 5660 1018 924 5661 511 924 5662 510 924 5663 1018 925 5664 510 925 5665 1016 925 5666 1016 926 5667 510 926 5668 509 926 5669 1016 926 5670 509 926 5671 1014 926 5672 1014 927 5673 509 927 5674 514 927 5675 1014 928 5676 514 928 5677 1012 928 5678 1012 929 5679 514 929 5680 506 929 5681 1012 930 5682 506 930 5683 1010 930 5684 1010 931 5685 506 931 5686 476 931 5687 1010 932 5688 476 932 5689 1007 932 5690 1008 933 5691 185 933 5692 190 933 5693 1008 934 5694 190 934 5695 1125 934 5696 1125 935 5697 190 935 5698 189 935 5699 1125 936 5700 189 936 5701 1126 936 5702 1126 937 5703 189 937 5704 187 937 5705 1126 938 5706 187 938 5707 1127 938 5708 1127 939 5709 187 939 5710 186 939 5711 1127 940 5712 186 940 5713 1128 940 5714 1128 941 5715 186 941 5716 198 941 5717 1128 942 5718 198 942 5719 1129 942 5720 1129 943 5721 198 943 5722 197 943 5723 1129 943 5724 197 943 5725 1130 943 5726 1130 944 5727 197 944 5728 196 944 5729 1130 945 5730 196 945 5731 1131 945 5732 1131 946 5733 196 946 5734 195 946 5735 1131 947 5736 195 947 5737 1132 947 5738 1132 948 5739 195 948 5740 194 948 5741 1132 949 5742 194 949 5743 1133 949 5744 1133 950 5745 194 950 5746 192 950 5747 1133 951 5748 192 951 5749 1005 951 5750 1006 952 5751 223 952 5752 226 952 5753 1006 953 5754 226 953 5755 1101 953 5756 1101 954 5757 226 954 5758 225 954 5759 1101 955 5760 225 955 5761 1103 955 5762 1103 956 5763 225 956 5764 224 956 5765 1103 957 5766 224 957 5767 1105 957 5768 1105 958 5769 224 958 5770 233 958 5771 1105 959 5772 233 959 5773 1107 959 5774 1107 960 5775 233 960 5776 232 960 5777 1107 961 5778 232 961 5779 1109 961 5780 1109 962 5781 232 962 5782 231 962 5783 1109 963 5784 231 963 5785 1111 963 5786 1111 964 5787 231 964 5788 227 964 5789 1111 965 5790 227 965 5791 1113 965 5792 1113 966 5793 227 966 5794 229 966 5795 1113 967 5796 229 967 5797 1115 967 5798 1115 968 5799 229 968 5800 230 968 5801 1115 969 5802 230 969 5803 1117 969 5804 1117 970 5805 230 970 5806 236 970 5807 1117 971 5808 236 971 5809 1119 971 5810 1119 972 5811 236 972 5812 235 972 5813 1119 973 5814 235 973 5815 1121 973 5816 1121 974 5817 235 974 5818 1123 974 5819 1123 975 5820 235 975 5821 234 975 5822 234 976 5823 272 976 5824 1123 976 5825 1123 977 5826 272 977 5827 242 977 5828 1123 978 5829 242 978 5830 1001 978 5831 280 979 5832 1065 979 5833 275 979 5834 275 980 5835 1065 980 5836 1002 980 5837 275 981 5838 1002 981 5839 276 981 5840 1065 982 5841 280 982 5842 181 982 5843 1065 983 5844 181 983 5845 1067 983 5846 1067 984 5847 181 984 5848 179 984 5849 1067 985 5850 179 985 5851 178 985 5852 306 986 5853 1069 986 5854 278 986 5855 278 987 5856 1069 987 5857 1067 987 5858 278 988 5859 1067 988 5860 178 988 5861 1069 989 5862 306 989 5863 281 989 5864 1069 989 5865 281 989 5866 1071 989 5867 1071 990 5868 281 990 5869 176 990 5870 1071 991 5871 176 991 5872 1073 991 5873 176 992 5874 175 992 5875 1073 992 5876 1073 993 5877 175 993 5878 330 993 5879 1073 994 5880 330 994 5881 1075 994 5882 1075 995 5883 330 995 5884 329 995 5885 1075 996 5886 329 996 5887 1077 996 5888 1077 997 5889 329 997 5890 328 997 5891 1077 998 5892 328 998 5893 1079 998 5894 1079 999 5895 328 999 5896 324 999 5897 1079 1000 5898 324 1000 5899 1081 1000 5900 1081 1001 5901 324 1001 5902 326 1001 5903 1081 1002 5904 326 1002 5905 1083 1002 5906 1083 1003 5907 326 1003 5908 327 1003 5909 1083 1004 5910 327 1004 5911 1085 1004 5912 1085 1005 5913 327 1005 5914 323 1005 5915 1085 1005 5916 323 1005 5917 1087 1005 5918 1087 1006 5919 323 1006 5920 322 1006 5921 1087 1007 5922 322 1007 5923 1089 1007 5924 322 1008 5925 336 1008 5926 1089 1008 5927 1089 1009 5928 336 1009 5929 335 1009 5930 1089 1010 5931 335 1010 5932 1091 1010 5933 1091 1011 5934 335 1011 5935 334 1011 5936 1091 1012 5937 334 1012 5938 1093 1012 5939 1093 1013 5940 334 1013 5941 332 1013 5942 1093 1014 5943 332 1014 5944 1095 1014 5945 1095 1015 5946 332 1015 5947 331 1015 5948 1095 1016 5949 331 1016 5950 1097 1016 5951 331 1017 5952 339 1017 5953 1097 1017 5954 1097 1018 5955 339 1018 5956 338 1018 5957 1097 1019 5958 338 1019 5959 1062 1019 5960 1062 1020 5961 338 1020 5962 383 1020 5963 1062 1021 5964 383 1021 5965 1063 1021 5966 1063 485 5967 383 485 5968 605 485 5969 605 485 5970 383 485 5971 382 485 5972 998 1022 5973 342 1022 5974 1060 1022 5975 1060 1023 5976 342 1023 5977 365 1023 5978 1060 1024 5979 365 1024 5980 1058 1024 5981 1058 1025 5982 365 1025 5983 359 1025 5984 1058 1026 5985 359 1026 5986 1056 1026 5987 1056 1027 5988 359 1027 5989 358 1027 5990 1056 1028 5991 358 1028 5992 1054 1028 5993 1054 1029 5994 358 1029 5995 362 1029 5996 1054 1030 5997 362 1030 5998 1052 1030 5999 1052 1031 6000 362 1031 6001 364 1031 6002 1052 1032 6003 364 1032 6004 1050 1032 6005 1050 1033 6006 364 1033 6007 363 1033 6008 1050 1034 6009 363 1034 6010 1048 1034 6011 1048 1035 6012 363 1035 6013 361 1035 6014 1048 1036 6015 361 1036 6016 1046 1036 6017 1046 1037 6018 361 1037 6019 360 1037 6020 1046 1038 6021 360 1038 6022 1044 1038 6023 1044 1038 6024 360 1038 6025 370 1038 6026 1044 1039 6027 370 1039 6028 1042 1039 6029 1042 1040 6030 370 1040 6031 350 1040 6032 456 489 6033 1040 489 6034 352 489 6035 352 489 6036 1040 489 6037 1042 489 6038 352 489 6039 1042 489 6040 350 489 6041 1040 1041 6042 456 1041 6043 457 1041 6044 1040 1042 6045 457 1042 6046 1038 1042 6047 1038 1043 6048 457 1043 6049 440 1043 6050 1038 1044 6051 440 1044 6052 1036 1044 6053 1036 1045 6054 440 1045 6055 460 1045 6056 1036 1046 6057 460 1046 6058 1034 1046 6059 1034 1047 6060 460 1047 6061 459 1047 6062 1034 1048 6063 459 1048 6064 1032 1048 6065 1032 1049 6066 459 1049 6067 458 1049 6068 1032 1050 6069 458 1050 6070 1030 1050 6071 1030 1051 6072 458 1051 6073 443 1051 6074 1030 1052 6075 443 1052 6076 1028 1052 6077 1028 1053 6078 443 1053 6079 442 1053 6080 1028 1054 6081 442 1054 6082 1026 1054 6083 1026 1055 6084 442 1055 6085 426 1055 6086 1026 1056 6087 426 1056 6088 1024 1056 6089 1024 1057 6090 426 1057 6091 425 1057 6092 1024 1058 6093 425 1058 6094 1022 1058 6095 425 1059 6096 516 1059 6097 1022 1059 6098 1022 1060 6099 516 1060 6100 515 1060 6101 1022 1061 6102 515 1061 6103 1020 1061 6104 668 0 6105 1134 0 6106 667 0 6107 667 0 6108 1134 0 6109 665 0 6110 959 0 6111 961 0 6112 1008 0 6113 1008 1062 6114 961 1062 6115 963 1062 6116 1008 1063 6117 963 1063 6118 964 1063 6119 661 0 6120 660 0 6121 1005 0 6122 1005 0 6123 660 0 6124 1133 0 6125 957 0 6126 959 0 6127 1124 0 6128 1124 0 6129 959 0 6130 1008 0 6131 1124 0 6132 1008 0 6133 1135 0 6134 1135 1064 6135 1008 1064 6136 1125 1064 6137 1135 0 6138 1125 0 6139 1136 0 6140 1136 0 6141 1125 0 6142 1126 0 6143 1136 0 6144 1126 0 6145 1137 0 6146 1137 0 6147 1126 0 6148 1127 0 6149 1137 1065 6150 1127 1065 6151 1138 1065 6152 1138 0 6153 1127 0 6154 1128 0 6155 1138 0 6156 1128 0 6157 1139 0 6158 1139 1066 6159 1128 1066 6160 1129 1066 6161 1139 0 6162 1129 0 6163 1140 0 6164 1140 0 6165 1129 0 6166 1130 0 6167 1140 0 6168 1130 0 6169 1141 0 6170 1141 1067 6171 1130 1067 6172 1131 1067 6173 1141 0 6174 1131 0 6175 1142 0 6176 1142 0 6177 1131 0 6178 1132 0 6179 1142 1068 6180 1132 1068 6181 1143 1068 6182 1143 1069 6183 1132 1069 6184 1133 1069 6185 1143 0 6186 1133 0 6187 1134 0 6188 1134 1070 6189 1133 1070 6190 660 1070 6191 1134 0 6192 660 0 6193 665 0 6194 1021 487 6195 1019 487 6196 167 487 6197 167 487 6198 1019 487 6199 168 487 6200 1009 1071 6201 94 1071 6202 1011 1071 6203 1011 1071 6204 94 1071 6205 116 1071 6206 1011 1072 6207 116 1072 6208 1013 1072 6209 1013 1073 6210 116 1073 6211 118 1073 6212 1013 1074 6213 118 1074 6214 1015 1074 6215 1015 1075 6216 118 1075 6217 119 1075 6218 1015 1076 6219 119 1076 6220 1017 1076 6221 1017 1077 6222 119 1077 6223 121 1077 6224 1017 1078 6225 121 1078 6226 1019 1078 6227 1019 1079 6228 121 1079 6229 168 1079 6230 1134 1080 6231 104 1080 6232 1143 1080 6233 1143 1081 6234 104 1081 6235 103 1081 6236 1143 1082 6237 103 1082 6238 1142 1082 6239 1142 1083 6240 103 1083 6241 18 1083 6242 1142 1084 6243 18 1084 6244 1141 1084 6245 1141 1084 6246 18 1084 6247 78 1084 6248 1136 1093 6273 88 1093 6274 1135 1093 6275 1135 1094 6276 88 1094 6277 90 1094 6278 1135 1095 6279 90 1095 6280 1124 1095 6281 1124 1095 6282 90 1095 6283 92 1095 6284 1134 1096 6285 668 1096 6286 104 1096 6287 104 1097 6288 668 1097 6289 105 1097 6290 652 1098 6291 1099 1098 6292 112 1098 6293 112 922 6294 1099 922 6295 110 922 6296 1120 1099 6297 77 1099 6298 1118 1099 6299 1118 1100 6300 77 1100 6301 76 1100 6302 1118 1101 6303 76 1101 6304 1116 1101 6305 1116 1102 6306 76 1102 6307 74 1102 6308 1116 1103 6309 74 1103 6310 1114 1103 6311 1114 1104 6312 74 1104 6313 72 1104 6314 1114 1105 6315 72 1105 6316 1112 1105 6317 1112 1105 6318 72 1105 6319 70 1105 6320 1102 1116 6351 25 1116 6352 1100 1116 6353 1100 1117 6354 25 1117 6355 108 1117 6356 1100 1118 6357 108 1118 6358 1099 1118 6359 1099 1119 6360 108 1119 6361 110 1119 6362 1004 1120 6363 60 1120 6364 1122 1120 6365 1122 1120 6366 60 1120 6367 62 1120 6368 1122 1121 6369 62 1121 6370 1120 1121 6371 1120 1122 6372 62 1122 6373 77 1122 6374 1003 1123 6375 1064 1123 6376 58 1123 6377 58 1124 6378 1064 1124 6379 28 1124 6380 1064 1125 6381 1066 1125 6382 28 1125 6383 28 1126 6384 1066 1126 6385 102 1126 6386 1066 1127 6387 1068 1127 6388 102 1127 6389 102 1128 6390 1068 1128 6391 101 1128 6392 1082 1129 6393 54 1129 6394 1080 1129 6395 1080 1130 6396 54 1130 6397 44 1130 6398 1080 1131 6399 44 1131 6400 1078 1131 6401 1078 1132 6402 44 1132 6403 42 1132 6404 1070 1140 6426 99 1140 6427 1068 1140 6428 1068 1141 6429 99 1141 6430 101 1141 6431 1000 1142 6432 123 1142 6433 1098 1142 6434 1098 1143 6435 123 1143 6436 39 1143 6437 1098 1144 6438 39 1144 6439 1096 1144 6440 1096 1145 6441 39 1145 6442 37 1145 6443 1096 1146 6444 37 1146 6445 1094 1146 6446 1094 1147 6447 37 1147 6448 35 1147 6449 1094 1148 6450 35 1148 6451 1092 1148 6452 1092 1149 6453 35 1149 6454 20 1149 6455 1092 1150 6456 20 1150 6457 1090 1150 6458 1090 1151 6459 20 1151 6460 19 1151 6461 1090 1152 6462 19 1152 6463 1088 1152 6464 1088 1153 6465 19 1153 6466 49 1153 6467 1088 1154 6468 49 1154 6469 1086 1154 6470 1086 1155 6471 49 1155 6472 51 1155 6473 1086 1156 6474 51 1156 6475 1084 1156 6476 1084 1157 6477 51 1157 6478 53 1157 6479 1084 1158 6480 53 1158 6481 1082 1158 6482 1082 1159 6483 53 1159 6484 54 1159 6485 1043 1160 6486 145 1160 6487 143 1160 6488 1043 1161 6489 143 1161 6490 1045 1161 6491 1045 1162 6492 143 1162 6493 141 1162 6494 1045 1163 6495 141 1163 6496 1047 1163 6497 1047 1164 6498 141 1164 6499 139 1164 6500 1047 1165 6501 139 1165 6502 1049 1165 6503 1049 1166 6504 139 1166 6505 137 1166 6506 1049 1167 6507 137 1167 6508 1051 1167 6509 1051 1168 6510 137 1168 6511 135 1168 6512 1051 1169 6513 135 1169 6514 1053 1169 6515 1053 1170 6516 135 1170 6517 133 1170 6518 1053 1171 6519 133 1171 6520 1055 1171 6521 1055 1172 6522 133 1172 6523 131 1172 6524 1055 1172 6525 131 1172 6526 1057 1172 6527 1057 1173 6528 131 1173 6529 129 1173 6530 1057 1174 6531 129 1174 6532 1059 1174 6533 1059 1175 6534 129 1175 6535 127 1175 6536 1059 1176 6537 127 1176 6538 1061 1176 6539 1061 1177 6540 127 1177 6541 125 1177 6542 1061 1178 6543 125 1178 6544 999 1178 6545 1043 486 6546 1041 486 6547 145 486 6548 1041 1179 6549 1614 1179 6550 1630 1179 6551 1021 1180 6552 167 1180 6553 1023 1180 6554 1023 1181 6555 167 1181 6556 165 1181 6557 1033 1192 6588 155 1192 6589 1035 1192 6590 1035 1193 6591 155 1193 6592 153 1193 6593 1035 1194 6594 153 1194 6595 1037 1194 6596 1037 1195 6597 153 1195 6598 151 1195 6599 1037 1196 6600 151 1196 6601 1039 1196 6602 1039 1197 6603 151 1197 6604 149 1197 6605 1039 1198 6606 149 1198 6607 1041 1198 6608 1041 1199 6609 149 1199 6610 147 1199 6611 1144 0 6612 1145 0 6613 1146 0 6614 1146 0 6615 1145 0 6616 1147 0 6617 1146 0 6618 1147 0 6619 1148 0 6620 1148 0 6621 1147 0 6622 1149 0 6623 1148 0 6624 1149 0 6625 1150 0 6626 1150 0 6627 1149 0 6628 1151 0 6629 1150 0 6630 1151 0 6631 1152 0 6632 1152 0 6633 1151 0 6634 1153 0 6635 1152 0 6636 1153 0 6637 1154 0 6638 1154 1200 6639 1153 1200 6640 1155 1200 6641 1154 1201 6642 1155 1201 6643 1156 1201 6644 1156 0 6645 1155 0 6646 1157 0 6647 1156 0 6648 1157 0 6649 1158 0 6650 1158 0 6651 1157 0 6652 1159 0 6653 1158 1202 6654 1159 1202 6655 1160 1202 6656 1160 0 6657 1159 0 6658 1161 0 6659 1160 0 6660 1161 0 6661 1162 0 6662 1162 0 6663 1161 0 6664 1163 0 6665 1162 1203 6666 1163 1203 6667 1164 1203 6668 1164 1204 6669 1163 1204 6670 1165 1204 6671 1164 1205 6672 1165 1205 6673 1166 1205 6674 1166 0 6675 1165 0 6676 1167 0 6677 1166 1206 6678 1167 1206 6679 1168 1206 6680 1168 0 6681 1167 0 6682 1169 0 6683 1168 1203 6684 1169 1203 6685 1170 1203 6686 1170 0 6687 1169 0 6688 1171 0 6689 1170 1207 6690 1171 1207 6691 1172 1207 6692 1172 1208 6693 1171 1208 6694 1173 1208 6695 1172 0 6696 1173 0 6697 1174 0 6698 1174 1209 6699 1173 1209 6700 1175 1209 6701 1174 1210 6702 1175 1210 6703 1144 1210 6704 1144 0 6705 1175 0 6706 1145 0 6707 1159 1211 6708 1157 1211 6709 30 1211 6710 30 1212 6711 1157 1212 6712 59 1212 6713 1161 1213 6714 1159 1213 6715 10 1213 6716 10 1214 6717 1159 1214 6718 30 1214 6719 1163 1215 6720 1161 1215 6721 111 1215 6722 111 1216 6723 1161 1216 6724 10 1216 6725 1163 1217 6726 111 1217 6727 109 1217 6728 1163 1218 6729 109 1218 6730 1165 1218 6731 1165 1219 6732 109 1219 6733 107 1219 6734 1165 1220 6735 107 1220 6736 1167 1220 6737 1167 1221 6738 107 1221 6739 106 1221 6740 1167 1222 6741 106 1222 6742 1169 1222 6743 1169 1223 6744 106 1223 6745 27 1223 6746 1169 1224 6747 27 1224 6748 1171 1224 6749 1171 1225 6750 27 1225 6751 63 1225 6752 1171 1226 6753 63 1226 6754 1173 1226 6755 1173 1227 6756 63 1227 6757 65 1227 6758 1173 1228 6759 65 1228 6760 1175 1228 6761 1175 1229 6762 65 1229 6763 67 1229 6764 1175 1230 6765 67 1230 6766 1145 1230 6767 1145 1231 6768 67 1231 6769 69 1231 6770 1145 1232 6771 69 1232 6772 1147 1232 6773 1147 1233 6774 69 1233 6775 71 1233 6776 1147 1234 6777 71 1234 6778 1149 1234 6779 1149 1235 6780 71 1235 6781 73 1235 6782 1149 1236 6783 73 1236 6784 1151 1236 6785 1151 1237 6786 73 1237 6787 75 1237 6788 1151 1238 6789 75 1238 6790 1153 1238 6791 1153 1239 6792 75 1239 6793 61 1239 6794 1153 1240 6795 61 1240 6796 1155 1240 6797 1157 1241 6798 1155 1241 6799 59 1241 6800 59 1242 6801 1155 1242 6802 61 1242 6803 1156 1128 6804 1158 1128 6805 1176 1128 6806 1176 1243 6807 1158 1243 6808 1177 1243 6809 1158 1244 6810 1160 1244 6811 1177 1244 6812 1177 1245 6813 1160 1245 6814 1178 1245 6815 1160 1246 6816 1162 1246 6817 1178 1246 6818 1178 1247 6819 1162 1247 6820 1179 1247 6821 1154 1248 6822 1180 1248 6823 1152 1248 6824 1152 1249 6825 1180 1249 6826 1181 1249 6827 1152 1250 6828 1181 1250 6829 1150 1250 6830 1150 1251 6831 1181 1251 6832 1182 1251 6833 1150 1252 6834 1182 1252 6835 1148 1252 6836 1148 1253 6837 1182 1253 6838 1183 1253 6839 1148 1254 6840 1183 1254 6841 1146 1254 6842 1146 1255 6843 1183 1255 6844 1184 1255 6845 1146 1256 6846 1184 1256 6847 1144 1256 6848 1144 1257 6849 1184 1257 6850 1185 1257 6851 1144 1258 6852 1185 1258 6853 1174 1258 6854 1174 1259 6855 1185 1259 6856 1186 1259 6857 1174 1260 6858 1186 1260 6859 1172 1260 6860 1172 1260 6861 1186 1260 6862 1187 1260 6863 1172 1261 6864 1187 1261 6865 1170 1261 6866 1170 1262 6867 1187 1262 6868 1188 1262 6869 1170 1263 6870 1188 1263 6871 1168 1263 6872 1168 1264 6873 1188 1264 6874 1189 1264 6875 1168 1265 6876 1189 1265 6877 1166 1265 6878 1166 1266 6879 1189 1266 6880 1190 1266 6881 1166 1267 6882 1190 1267 6883 1164 1267 6884 1164 1268 6885 1190 1268 6886 1191 1268 6887 1164 1269 6888 1191 1269 6889 1162 1269 6890 1162 1270 6891 1191 1270 6892 1179 1270 6893 1154 1125 6894 1156 1125 6895 1180 1125 6896 1180 1271 6897 1156 1271 6898 1176 1271 6899 1192 0 6900 1193 0 6901 1194 0 6902 1192 0 6903 1194 0 6904 1195 0 6905 1196 739 6906 1197 739 6907 1194 739 6908 1194 740 6909 1197 740 6910 1198 740 6911 1194 0 6912 1198 0 6913 1195 0 6914 1199 557 6915 1200 557 6916 1194 557 6917 1194 1272 6918 1200 1272 6919 1201 1272 6920 1194 791 6921 1201 791 6922 1196 791 6923 1202 1273 6924 1203 1273 6925 1194 1273 6926 1194 1274 6927 1203 1274 6928 1204 1274 6929 1194 801 6930 1204 801 6931 1199 801 6932 1205 0 6933 1206 0 6934 1194 0 6935 1194 744 6936 1206 744 6937 1207 744 6938 1194 0 6939 1207 0 6940 1202 0 6941 1208 0 6942 1209 0 6943 1194 0 6944 1194 802 6945 1209 802 6946 1210 802 6947 1194 0 6948 1210 0 6949 1205 0 6950 1211 0 6951 1212 0 6952 1194 0 6953 1194 0 6954 1212 0 6955 1213 0 6956 1194 0 6957 1213 0 6958 1208 0 6959 1214 794 6960 1215 794 6961 1194 794 6962 1194 747 6963 1215 747 6964 1216 747 6965 1194 0 6966 1216 0 6967 1211 0 6968 1217 0 6969 1218 0 6970 1194 0 6971 1194 800 6972 1218 800 6973 1219 800 6974 1194 796 6975 1219 796 6976 1214 796 6977 1220 0 6978 1221 0 6979 1194 0 6980 1194 749 6981 1221 749 6982 1222 749 6983 1194 750 6984 1222 750 6985 1217 750 6986 1223 0 6987 1224 0 6988 1194 0 6989 1194 799 6990 1224 799 6991 1225 799 6992 1194 752 6993 1225 752 6994 1220 752 6995 1226 0 6996 1227 0 6997 1194 0 6998 1194 1275 6999 1227 1275 7000 1228 1275 7001 1194 800 7002 1228 800 7003 1223 800 7004 1193 0 7005 1229 0 7006 1194 0 7007 1194 755 7008 1229 755 7009 1230 755 7010 1194 756 7011 1230 756 7012 1226 756 7013 1192 789 7014 1195 789 7015 1231 789 7016 1231 790 7017 1195 790 7018 1198 790 7019 1231 1276 7020 1198 1276 7021 1232 1276 7022 1232 455 7023 1198 455 7024 1197 455 7025 1232 707 7026 1197 707 7027 1233 707 7028 1233 1277 7029 1197 1277 7030 1196 1277 7031 1233 458 7032 1196 458 7033 1234 458 7034 1234 766 7035 1196 766 7036 1201 766 7037 1234 1278 7038 1201 1278 7039 1235 1278 7040 1235 461 7041 1201 461 7042 1200 461 7043 1235 462 7044 1200 462 7045 1236 462 7046 1236 770 7047 1200 770 7048 1199 770 7049 1236 710 7050 1199 710 7051 1237 710 7052 1237 464 7053 1199 464 7054 1204 464 7055 1237 711 7056 1204 711 7057 1238 711 7058 1238 466 7059 1204 466 7060 1203 466 7061 1238 1279 7062 1203 1279 7063 1239 1279 7064 1239 468 7065 1203 468 7066 1202 468 7067 1239 714 7068 1202 714 7069 1240 714 7070 1240 773 7071 1202 773 7072 1207 773 7073 1240 715 7074 1207 715 7075 1241 715 7076 1241 510 7077 1207 510 7078 1206 510 7079 1241 511 7080 1206 511 7081 1242 511 7082 1242 378 7083 1206 378 7084 1205 378 7085 1242 379 7086 1205 379 7087 1243 379 7088 1243 1280 7089 1205 1280 7090 1210 1280 7091 1243 1281 7092 1210 1281 7093 1244 1281 7094 1244 1282 7095 1210 1282 7096 1209 1282 7097 1244 1283 7098 1209 1283 7099 1245 1283 7100 1245 580 7101 1209 580 7102 1208 580 7103 1245 515 7104 1208 515 7105 1246 515 7106 1246 718 7107 1208 718 7108 1213 718 7109 1246 718 7110 1213 718 7111 1247 718 7112 1247 477 7113 1213 477 7114 1212 477 7115 1247 478 7116 1212 478 7117 1248 478 7118 1248 758 7119 1212 758 7120 1211 758 7121 1248 1284 7122 1211 1284 7123 1249 1284 7124 1249 1285 7125 1211 1285 7126 1216 1285 7127 1249 1286 7128 1216 1286 7129 1250 1286 7130 1250 392 7131 1216 392 7132 1215 392 7133 1250 393 7134 1215 393 7135 1251 393 7136 1251 723 7137 1215 723 7138 1214 723 7139 1251 723 7140 1214 723 7141 1252 723 7142 1252 724 7143 1214 724 7144 1219 724 7145 1252 1287 7146 1219 1287 7147 1253 1287 7148 1253 524 7149 1219 524 7150 1218 524 7151 1253 1288 7152 1218 1288 7153 1254 1288 7154 1254 1289 7155 1218 1289 7156 1217 1289 7157 1254 1290 7158 1217 1290 7159 1255 1290 7160 1255 401 7161 1217 401 7162 1222 401 7163 1255 402 7164 1222 402 7165 1256 402 7166 1256 526 7167 1222 526 7168 1221 526 7169 1256 527 7170 1221 527 7171 1257 527 7172 1257 528 7173 1221 528 7174 1220 528 7175 1257 528 7176 1220 528 7177 1258 528 7178 1258 727 7179 1220 727 7180 1225 727 7181 1258 445 7182 1225 445 7183 1259 445 7184 1259 729 7185 1225 729 7186 1224 729 7187 1259 446 7188 1224 446 7189 1260 446 7190 1260 730 7191 1224 730 7192 1223 730 7193 1260 448 7194 1223 448 7195 1261 448 7196 1261 731 7197 1223 731 7198 1228 731 7199 1261 784 7200 1228 784 7201 1262 784 7202 1262 420 7203 1228 420 7204 1227 420 7205 1262 1291 7206 1227 1291 7207 1263 1291 7208 1263 734 7209 1227 734 7210 1226 734 7211 1263 421 7212 1226 421 7213 1264 421 7214 1264 1292 7215 1226 1292 7216 1230 1292 7217 1264 1292 7218 1230 1292 7219 1265 1292 7220 1265 538 7221 1230 538 7222 1229 538 7223 1265 690 7224 1229 690 7225 1266 690 7226 1266 1293 7227 1229 1293 7228 1193 1293 7229 1266 595 7230 1193 595 7231 1267 595 7232 1267 788 7233 1193 788 7234 1192 788 7235 1267 438 7236 1192 438 7237 1231 438 7238 1268 1331 7398 93 1331 7399 91 1331 7400 1268 1332 7401 91 1332 7402 1269 1332 7403 1269 1333 7404 91 1333 7405 89 1333 7406 1269 1334 7407 89 1334 7408 1270 1334 7409 1270 1335 7410 89 1335 7411 87 1335 7412 1270 1336 7413 87 1336 7414 1271 1336 7415 1271 1337 7416 87 1337 7417 85 1337 7418 1271 1338 7419 85 1338 7420 1272 1338 7421 1272 1339 7422 85 1339 7423 83 1339 7424 1272 1340 7425 83 1340 7426 1273 1340 7427 1273 1341 7428 83 1341 7429 81 1341 7430 1273 1342 7431 81 1342 7432 1274 1342 7433 1274 1343 7434 81 1343 7435 79 1343 7436 1274 1344 7437 79 1344 7438 1275 1344 7439 1275 1345 7440 79 1345 7441 17 1345 7442 1275 1346 7443 17 1346 7444 1276 1346 7445 1276 1347 7446 17 1347 7447 16 1347 7448 1276 1348 7449 16 1348 7450 1277 1348 7451 1277 1349 7452 16 1349 7453 32 1349 7454 1277 1350 7455 32 1350 7456 1278 1350 7457 1279 1351 7458 1278 1351 7459 31 1351 7460 31 1352 7461 1278 1352 7462 32 1352 7463 1280 1353 7464 1279 1353 7465 29 1353 7466 29 1353 7467 1279 1353 7468 31 1353 7469 1281 1354 7470 1280 1354 7471 100 1354 7472 100 1355 7473 1280 1355 7474 29 1355 7475 1281 1356 7476 100 1356 7477 98 1356 7478 1281 1356 7479 98 1356 7480 1282 1356 7481 1282 1357 7482 98 1357 7483 97 1357 7484 1282 1358 7485 97 1358 7486 1283 1358 7487 1283 1359 7488 97 1359 7489 24 1359 7490 1283 1360 7491 24 1360 7492 1284 1360 7493 1284 1361 7494 24 1361 7495 57 1361 7496 1284 1361 7497 57 1361 7498 1285 1361 7499 1285 1362 7500 57 1362 7501 56 1362 7502 1285 1363 7503 56 1363 7504 1286 1363 7505 1286 1364 7506 56 1364 7507 55 1364 7508 1286 1364 7509 55 1364 7510 1287 1364 7511 1287 1365 7512 55 1365 7513 43 1365 7514 1287 1366 7515 43 1366 7516 1288 1366 7517 1288 1367 7518 43 1367 7519 46 1367 7520 1288 1367 7521 46 1367 7522 1289 1367 7523 1290 489 7524 1289 489 7525 45 489 7526 45 489 7527 1289 489 7528 46 489 7529 1290 1368 7530 45 1368 7531 52 1368 7532 1290 1369 7533 52 1369 7534 1291 1369 7535 1291 1370 7536 52 1370 7537 50 1370 7538 1291 1371 7539 50 1371 7540 1292 1371 7541 1292 1372 7542 50 1372 7543 48 1372 7544 1292 1373 7545 48 1373 7546 1293 1373 7547 1293 1374 7548 48 1374 7549 47 1374 7550 1293 1375 7551 47 1375 7552 1294 1375 7553 1294 1376 7554 47 1376 7555 21 1376 7556 1294 1377 7557 21 1377 7558 1295 1377 7559 1295 1378 7560 21 1378 7561 34 1378 7562 1295 1379 7563 34 1379 7564 1296 1379 7565 1296 1380 7566 34 1380 7567 36 1380 7568 1296 1381 7569 36 1381 7570 1297 1381 7571 1297 1382 7572 36 1382 7573 38 1382 7574 1297 1383 7575 38 1383 7576 1298 1383 7577 1298 1384 7578 38 1384 7579 40 1384 7580 1298 1385 7581 40 1385 7582 1299 1385 7583 1299 1386 7584 40 1386 7585 122 1386 7586 1299 1387 7587 122 1387 7588 1300 1387 7589 1301 485 7590 1300 485 7591 124 485 7592 124 485 7593 1300 485 7594 122 485 7595 1301 1388 7596 124 1388 7597 1302 1388 7598 1302 1389 7599 124 1389 7600 126 1389 7601 1302 1390 7602 126 1390 7603 1303 1390 7604 1303 1391 7605 126 1391 7606 128 1391 7607 1303 1392 7608 128 1392 7609 1304 1392 7610 1304 1393 7611 128 1393 7612 130 1393 7613 1304 1394 7614 130 1394 7615 1305 1394 7616 1305 1394 7617 130 1394 7618 132 1394 7619 1305 1395 7620 132 1395 7621 1306 1395 7622 1306 1396 7623 132 1396 7624 134 1396 7625 1306 1397 7626 134 1397 7627 1307 1397 7628 1307 1398 7629 134 1398 7630 136 1398 7631 1307 1399 7632 136 1399 7633 1308 1399 7634 1308 1399 7635 136 1399 7636 138 1399 7637 1308 1400 7638 138 1400 7639 1309 1400 7640 1309 1401 7641 138 1401 7642 140 1401 7643 1309 1402 7644 140 1402 7645 1310 1402 7646 1310 1403 7647 140 1403 7648 142 1403 7649 1310 1404 7650 142 1404 7651 1311 1404 7652 1311 1405 7653 142 1405 7654 144 1405 7655 1312 489 7656 1311 489 7657 146 489 7658 1311 1406 7659 1615 1406 7660 1624 1406 7661 1312 1407 7662 146 1407 7663 148 1407 7664 1312 1408 7665 148 1408 7666 1313 1408 7667 1313 1409 7668 148 1409 7669 150 1409 7670 1313 1410 7671 150 1410 7672 1314 1410 7673 1314 1411 7674 150 1411 7675 152 1411 7676 1314 1412 7677 152 1412 7678 1315 1412 7679 1315 1413 7680 152 1413 7681 154 1413 7682 1315 1414 7683 154 1414 7684 1316 1414 7685 1316 1415 7686 154 1415 7687 156 1415 7688 1316 1416 7689 156 1416 7690 1317 1416 7691 1317 1378 7692 156 1378 7693 158 1378 7694 1317 1417 7695 158 1417 7696 1318 1417 7697 1318 1418 7698 158 1418 7699 160 1418 7700 1318 1419 7701 160 1419 7702 1319 1419 7703 1319 1420 7704 160 1420 7705 162 1420 7706 1319 1383 7707 162 1383 7708 1320 1383 7709 1320 1421 7710 162 1421 7711 164 1421 7712 1320 1422 7713 164 1422 7714 1321 1422 7715 1321 1423 7716 164 1423 7717 166 1423 7718 1321 1424 7719 166 1424 7720 1322 1424 7721 1323 485 7722 1322 485 7723 120 485 7724 120 485 7725 1322 485 7726 166 485 7727 1323 1425 7728 120 1425 7729 117 1425 7730 1323 1426 7731 117 1426 7732 1324 1426 7733 1324 1427 7734 117 1427 7735 115 1427 7736 1324 1428 7737 115 1428 7738 1325 1428 7739 1325 1429 7740 115 1429 7741 114 1429 7742 1325 1430 7743 114 1430 7744 1326 1430 7745 1326 1431 7746 114 1431 7747 96 1431 7748 1326 1432 7749 96 1432 7750 1327 1432 7751 1327 1433 7752 96 1433 7753 95 1433 7754 1327 1434 7755 95 1434 7756 1328 1434 7757 1268 868 7758 1328 868 7759 93 868 7760 93 1435 7761 1328 1435 7762 95 1435 7763 1329 0 7764 1323 0 7765 1330 0 7766 1330 1436 7767 1323 1436 7768 1324 1436 7769 1330 0 7770 1324 0 7771 1331 0 7772 1331 0 7773 1324 0 7774 1325 0 7775 1331 0 7776 1325 0 7777 1332 0 7778 1332 0 7779 1325 0 7780 1326 0 7781 1332 0 7782 1326 0 7783 1333 0 7784 1333 0 7785 1326 0 7786 1327 0 7787 1333 0 7788 1327 0 7789 1334 0 7790 1334 1437 7791 1327 1437 7792 1328 1437 7793 1334 1438 7794 1328 1438 7795 1335 1438 7796 1335 1439 7797 1328 1439 7798 1268 1439 7799 1335 1440 7800 1268 1440 7801 1336 1440 7802 1336 1441 7803 1268 1441 7804 1269 1441 7805 1336 1442 7806 1269 1442 7807 1337 1442 7808 1337 0 7809 1269 0 7810 1270 0 7811 1337 1443 7812 1270 1443 7813 1338 1443 7814 1338 1444 7815 1270 1444 7816 1271 1444 7817 1338 0 7818 1271 0 7819 1339 0 7820 1339 0 7821 1271 0 7822 1272 0 7823 1339 1445 7824 1272 1445 7825 1340 1445 7826 1340 1446 7827 1272 1446 7828 1273 1446 7829 1340 0 7830 1273 0 7831 1341 0 7832 1341 1447 7833 1273 1447 7834 1274 1447 7835 1341 0 7836 1274 0 7837 1342 0 7838 1342 1448 7839 1274 1448 7840 1275 1448 7841 1342 0 7842 1275 0 7843 1343 0 7844 1343 0 7845 1275 0 7846 1276 0 7847 1343 0 7848 1276 0 7849 1344 0 7850 1344 1449 7851 1276 1449 7852 1277 1449 7853 1344 1450 7854 1277 1450 7855 1345 1450 7856 1345 1437 7857 1277 1437 7858 1278 1437 7859 1345 0 7860 1278 0 7861 1346 0 7862 1346 1451 7863 1278 1451 7864 1279 1451 7865 1346 0 7866 1279 0 7867 1347 0 7868 1347 0 7869 1279 0 7870 1280 0 7871 1347 0 7872 1280 0 7873 1348 0 7874 1348 0 7875 1280 0 7876 1281 0 7877 1348 1452 7878 1281 1452 7879 1349 1452 7880 1349 0 7881 1281 0 7882 1282 0 7883 1349 0 7884 1282 0 7885 1350 0 7886 1350 1453 7887 1282 1453 7888 1283 1453 7889 1350 1454 7890 1283 1454 7891 1351 1454 7892 1351 0 7893 1283 0 7894 1284 0 7895 1351 1455 7896 1284 1455 7897 1352 1455 7898 1352 0 7899 1284 0 7900 1285 0 7901 1352 1455 7902 1285 1455 7903 1353 1455 7904 1353 1456 7905 1285 1456 7906 1286 1456 7907 1353 1457 7908 1286 1457 7909 1354 1457 7910 1354 0 7911 1286 0 7912 1287 0 7913 1354 0 7914 1287 0 7915 1355 0 7916 1355 0 7917 1287 0 7918 1288 0 7919 1355 0 7920 1288 0 7921 1356 0 7922 1356 1458 7923 1288 1458 7924 1289 1458 7925 1356 0 7926 1289 0 7927 1357 0 7928 1357 0 7929 1289 0 7930 1290 0 7931 1357 0 7932 1290 0 7933 1358 0 7934 1358 0 7935 1290 0 7936 1291 0 7937 1358 0 7938 1291 0 7939 1359 0 7940 1359 1459 7941 1291 1459 7942 1292 1459 7943 1359 0 7944 1292 0 7945 1360 0 7946 1360 0 7947 1292 0 7948 1293 0 7949 1360 0 7950 1293 0 7951 1361 0 7952 1361 0 7953 1293 0 7954 1294 0 7955 1361 0 7956 1294 0 7957 1362 0 7958 1362 0 7959 1294 0 7960 1295 0 7961 1362 0 7962 1295 0 7963 1363 0 7964 1363 0 7965 1295 0 7966 1296 0 7967 1363 0 7968 1296 0 7969 1364 0 7970 1364 0 7971 1296 0 7972 1297 0 7973 1364 0 7974 1297 0 7975 1365 0 7976 1365 0 7977 1297 0 7978 1298 0 7979 1365 0 7980 1298 0 7981 1366 0 7982 1366 0 7983 1298 0 7984 1299 0 7985 1366 0 7986 1299 0 7987 1367 0 7988 1367 0 7989 1299 0 7990 1300 0 7991 1367 0 7992 1300 0 7993 1368 0 7994 1368 0 7995 1300 0 7996 1301 0 7997 1368 0 7998 1301 0 7999 1369 0 8000 1369 1460 8001 1301 1460 8002 1302 1460 8003 1369 1461 8004 1302 1461 8005 1370 1461 8006 1370 1462 8007 1302 1462 8008 1303 1462 8009 1370 881 8010 1303 881 8011 1371 881 8012 1371 0 8013 1303 0 8014 1304 0 8015 1371 0 8016 1304 0 8017 1372 0 8018 1372 0 8019 1304 0 8020 1305 0 8021 1372 0 8022 1305 0 8023 1373 0 8024 1373 0 8025 1305 0 8026 1306 0 8027 1373 0 8028 1306 0 8029 1374 0 8030 1374 1463 8031 1306 1463 8032 1307 1463 8033 1374 0 8034 1307 0 8035 1375 0 8036 1375 0 8037 1307 0 8038 1308 0 8039 1375 0 8040 1308 0 8041 1376 0 8042 1376 0 8043 1308 0 8044 1309 0 8045 1376 0 8046 1309 0 8047 1377 0 8048 1377 1464 8049 1309 1464 8050 1310 1464 8051 1377 1442 8052 1310 1442 8053 1378 1442 8054 1378 1465 8055 1310 1465 8056 1311 1465 8057 1378 0 8058 1311 0 8059 1379 0 8060 1379 0 8061 1311 0 8062 1312 0 8063 1379 1466 8064 1312 1466 8065 1380 1466 8066 1380 1467 8067 1312 1467 8068 1313 1467 8069 1380 1468 8070 1313 1468 8071 1381 1468 8072 1381 1467 8073 1313 1467 8074 1314 1467 8075 1381 0 8076 1314 0 8077 1382 0 8078 1382 0 8079 1314 0 8080 1315 0 8081 1382 0 8082 1315 0 8083 1383 0 8084 1383 1469 8085 1315 1469 8086 1316 1469 8087 1383 883 8088 1316 883 8089 1384 883 8090 1384 1470 8091 1316 1470 8092 1317 1470 8093 1384 0 8094 1317 0 8095 1385 0 8096 1385 0 8097 1317 0 8098 1318 0 8099 1385 0 8100 1318 0 8101 1386 0 8102 1386 1471 8103 1318 1471 8104 1319 1471 8105 1386 0 8106 1319 0 8107 1387 0 8108 1387 0 8109 1319 0 8110 1320 0 8111 1387 0 8112 1320 0 8113 1388 0 8114 1388 0 8115 1320 0 8116 1321 0 8117 1388 0 8118 1321 0 8119 1389 0 8120 1389 0 8121 1321 0 8122 1322 0 8123 1389 0 8124 1322 0 8125 1329 0 8126 1329 0 8127 1322 0 8128 1323 0 8129 1345 1472 8130 1390 1472 8131 1344 1472 8132 1344 1473 8133 1390 1473 8134 1391 1473 8135 1344 1474 8136 1391 1474 8137 1343 1474 8138 1343 1475 8139 1391 1475 8140 1392 1475 8141 1343 1476 8142 1392 1476 8143 1342 1476 8144 1342 1477 8145 1392 1477 8146 1393 1477 8147 1342 1478 8148 1393 1478 8149 1341 1478 8150 1341 1479 8151 1393 1479 8152 1394 1479 8153 1341 1480 8154 1394 1480 8155 1340 1480 8156 1340 1481 8157 1394 1481 8158 1395 1481 8159 1340 1482 8160 1395 1482 8161 1339 1482 8162 1339 1483 8163 1395 1483 8164 1396 1483 8165 1339 1484 8166 1396 1484 8167 1338 1484 8168 1338 1485 8169 1396 1485 8170 1397 1485 8171 1338 1486 8172 1397 1486 8173 1337 1486 8174 1337 1487 8175 1397 1487 8176 1398 1487 8177 1337 1488 8178 1398 1488 8179 1336 1488 8180 1336 1489 8181 1398 1489 8182 1399 1489 8183 1336 1490 8184 1399 1490 8185 1335 1490 8186 1335 1491 8187 1399 1491 8188 1400 1491 8189 1345 1492 8190 1346 1492 8191 1390 1492 8192 1390 1213 8193 1346 1213 8194 1401 1213 8195 1346 1125 8196 1347 1125 8197 1401 1125 8198 1401 1493 8199 1347 1493 8200 1402 1493 8201 1347 1494 8202 1348 1494 8203 1402 1494 8204 1402 1128 8205 1348 1128 8206 1403 1128 8207 1356 1495 8208 1404 1495 8209 1355 1495 8210 1355 1496 8211 1404 1496 8212 1405 1496 8213 1355 1497 8214 1405 1497 8215 1354 1497 8216 1354 1498 8217 1405 1498 8218 1406 1498 8219 1354 1499 8220 1406 1499 8221 1353 1499 8222 1353 1500 8223 1406 1500 8224 1407 1500 8225 1353 1501 8226 1407 1501 8227 1352 1501 8228 1352 1502 8229 1407 1502 8230 1408 1502 8231 1352 1503 8232 1408 1503 8233 1351 1503 8234 1351 1504 8235 1408 1504 8236 1409 1504 8237 1351 1505 8238 1409 1505 8239 1350 1505 8240 1350 1506 8241 1409 1506 8242 1410 1506 8243 1350 1507 8244 1410 1507 8245 1349 1507 8246 1349 1508 8247 1410 1508 8248 1411 1508 8249 1349 1509 8250 1411 1509 8251 1348 1509 8252 1348 1510 8253 1411 1510 8254 1403 1510 8255 1356 486 8256 1357 486 8257 1404 486 8258 1404 486 8259 1357 486 8260 1412 486 8261 1367 1511 8262 1413 1511 8263 1366 1511 8264 1366 1512 8265 1413 1512 8266 1414 1512 8267 1366 1513 8268 1414 1513 8269 1365 1513 8270 1365 1514 8271 1414 1514 8272 1415 1514 8273 1365 1515 8274 1415 1515 8275 1364 1515 8276 1364 1515 8277 1415 1515 8278 1416 1515 8279 1364 1516 8280 1416 1516 8281 1363 1516 8282 1363 1517 8283 1416 1517 8284 1417 1517 8285 1363 1518 8286 1417 1518 8287 1362 1518 8288 1362 1519 8289 1417 1519 8290 1418 1519 8291 1362 1520 8292 1418 1520 8293 1361 1520 8294 1361 1521 8295 1418 1521 8296 1419 1521 8297 1361 1522 8298 1419 1522 8299 1360 1522 8300 1360 1166 8301 1419 1166 8302 1420 1166 8303 1360 1523 8304 1420 1523 8305 1359 1523 8306 1359 1524 8307 1420 1524 8308 1421 1524 8309 1359 1163 8310 1421 1163 8311 1358 1163 8312 1358 1162 8313 1421 1162 8314 1422 1162 8315 1358 1161 8316 1422 1161 8317 1357 1161 8318 1357 1525 8319 1422 1525 8320 1412 1525 8321 1367 487 8322 1368 487 8323 1413 487 8324 1413 487 8325 1368 487 8326 1423 487 8327 1378 1526 8328 1424 1526 8329 1425 1526 8330 1378 1527 8331 1425 1527 8332 1377 1527 8333 1377 1528 8334 1425 1528 8335 1426 1528 8336 1377 1529 8337 1426 1529 8338 1376 1529 8339 1376 1195 8340 1426 1195 8341 1427 1195 8342 1376 1530 8343 1427 1530 8344 1375 1530 8345 1375 1192 8346 1427 1192 8347 1428 1192 8348 1375 1531 8349 1428 1531 8350 1374 1531 8351 1374 1532 8352 1428 1532 8353 1429 1532 8354 1374 1533 8355 1429 1533 8356 1373 1533 8357 1373 1534 8358 1429 1534 8359 1430 1534 8360 1373 1535 8361 1430 1535 8362 1372 1535 8363 1372 1536 8364 1430 1536 8365 1431 1536 8366 1372 1537 8367 1431 1537 8368 1371 1537 8369 1371 1538 8370 1431 1538 8371 1432 1538 8372 1371 1539 8373 1432 1539 8374 1370 1539 8375 1370 1540 8376 1432 1540 8377 1433 1540 8378 1370 1541 8379 1433 1541 8380 1369 1541 8381 1369 1542 8382 1433 1542 8383 1423 1542 8384 1369 1543 8385 1423 1543 8386 1368 1543 8387 1378 486 8388 1379 486 8389 1424 486 8390 1424 486 8391 1379 486 8392 1434 486 8393 1389 1178 8394 1435 1178 8395 1388 1178 8396 1388 1544 8397 1435 1544 8398 1436 1544 8399 1388 1545 8400 1436 1545 8401 1387 1545 8402 1387 1546 8403 1436 1546 8404 1437 1546 8405 1387 1539 8406 1437 1539 8407 1386 1539 8408 1386 1538 8409 1437 1538 8410 1438 1538 8411 1386 1517 8412 1438 1517 8413 1385 1517 8414 1385 1547 8415 1438 1547 8416 1439 1547 8417 1385 1548 8418 1439 1548 8419 1384 1548 8420 1384 1549 8421 1439 1549 8422 1440 1549 8423 1384 1550 8424 1440 1550 8425 1383 1550 8426 1383 1551 8427 1440 1551 8428 1441 1551 8429 1383 1552 8430 1441 1552 8431 1382 1552 8432 1382 1553 8433 1441 1553 8434 1442 1553 8435 1382 1165 8436 1442 1165 8437 1381 1165 8438 1381 1554 8439 1442 1554 8440 1443 1554 8441 1381 1555 8442 1443 1555 8443 1380 1555 8444 1380 1556 8445 1443 1556 8446 1444 1556 8447 1380 1557 8448 1444 1557 8449 1379 1557 8450 1379 1160 8451 1444 1160 8452 1434 1160 8453 1389 487 8454 1329 487 8455 1435 487 8456 1435 487 8457 1329 487 8458 1445 487 8459 1334 1558 8460 1446 1558 8461 1333 1558 8462 1333 1559 8463 1446 1559 8464 1447 1559 8465 1333 1560 8466 1447 1560 8467 1332 1560 8468 1332 1561 8469 1447 1561 8470 1448 1561 8471 1332 1562 8472 1448 1562 8473 1331 1562 8474 1331 1563 8475 1448 1563 8476 1449 1563 8477 1331 1564 8478 1449 1564 8479 1330 1564 8480 1330 1565 8481 1449 1565 8482 1450 1565 8483 1330 1566 8484 1450 1566 8485 1329 1566 8486 1329 1567 8487 1450 1567 8488 1445 1567 8489 1334 1568 8490 1335 1568 8491 1446 1568 8492 1446 1569 8493 1335 1569 8494 1400 1569 8495 1451 0 8496 1452 0 8497 1453 0 8498 1451 0 8499 1453 0 8500 1454 0 8501 1455 739 8502 1456 739 8503 1453 739 8504 1453 1570 8505 1456 1570 8506 1457 1570 8507 1453 0 8508 1457 0 8509 1454 0 8510 1458 557 8511 1459 557 8512 1453 557 8513 1453 843 8514 1459 843 8515 1460 843 8516 1453 791 8517 1460 791 8518 1455 791 8519 1461 557 8520 1462 557 8521 1453 557 8522 1453 845 8523 1462 845 8524 1463 845 8525 1453 801 8526 1463 801 8527 1458 801 8528 1464 0 8529 1465 0 8530 1453 0 8531 1453 600 8532 1465 600 8533 1466 600 8534 1453 0 8535 1466 0 8536 1461 0 8537 1467 0 8538 1468 0 8539 1453 0 8540 1453 1571 8541 1468 1571 8542 1469 1571 8543 1453 0 8544 1469 0 8545 1464 0 8546 1470 0 8547 1471 0 8548 1453 0 8549 1453 0 8550 1471 0 8551 1472 0 8552 1453 0 8553 1472 0 8554 1467 0 8555 1473 794 8556 1474 794 8557 1453 794 8558 1453 849 8559 1474 849 8560 1475 849 8561 1453 0 8562 1475 0 8563 1470 0 8564 1476 0 8565 1477 0 8566 1453 0 8567 1453 1572 8568 1477 1572 8569 1478 1572 8570 1453 803 8571 1478 803 8572 1473 803 8573 1479 0 8574 1480 0 8575 1453 0 8576 1453 1573 8577 1480 1573 8578 1481 1573 8579 1453 1574 8580 1481 1574 8581 1476 1574 8582 1482 0 8583 1483 0 8584 1453 0 8585 1453 852 8586 1483 852 8587 1484 852 8588 1453 752 8589 1484 752 8590 1479 752 8591 1485 0 8592 1486 0 8593 1453 0 8594 1453 805 8595 1486 805 8596 1487 805 8597 1453 800 8598 1487 800 8599 1482 800 8600 1452 0 8601 1488 0 8602 1453 0 8603 1453 1575 8604 1488 1575 8605 1489 1575 8606 1453 807 8607 1489 807 8608 1485 807 8609 1490 0 8610 1491 0 8611 1492 0 8612 1490 0 8613 1492 0 8614 1493 0 8615 1494 0 8616 1495 0 8617 1492 0 8618 1492 543 8619 1495 543 8620 1496 543 8621 1492 0 8622 1496 0 8623 1493 0 8624 1497 544 8625 1498 544 8626 1492 544 8627 1492 611 8628 1498 611 8629 1499 611 8630 1492 597 8631 1499 597 8632 1494 597 8633 1500 0 8634 1501 0 8635 1492 0 8636 1492 1576 8637 1501 1576 8638 1502 1576 8639 1492 599 8640 1502 599 8641 1497 599 8642 1503 0 8643 1504 0 8644 1492 0 8645 1492 549 8646 1504 549 8647 1505 549 8648 1492 694 8649 1505 694 8650 1500 694 8651 1506 0 8652 1507 0 8653 1492 0 8654 1492 613 8655 1507 613 8656 1508 613 8657 1492 543 8658 1508 543 8659 1503 543 8660 1509 0 8661 1510 0 8662 1492 0 8663 1492 1577 8664 1510 1577 8665 1511 1577 8666 1492 603 8667 1511 603 8668 1506 603 8669 1512 553 8670 1513 553 8671 1492 553 8672 1492 1578 8673 1513 1578 8674 1514 1578 8675 1492 0 8676 1514 0 8677 1509 0 8678 1515 0 8679 1516 0 8680 1492 0 8681 1492 613 8682 1516 613 8683 1517 613 8684 1492 556 8685 1517 556 8686 1512 556 8687 1518 605 8688 1519 605 8689 1492 605 8690 1492 558 8691 1519 558 8692 1520 558 8693 1492 559 8694 1520 559 8695 1515 559 8696 1521 608 8697 1522 608 8698 1492 608 8699 1492 1579 8700 1522 1579 8701 1523 1579 8702 1492 1580 8703 1523 1580 8704 1518 1580 8705 1524 563 8706 1525 563 8707 1492 563 8708 1492 853 8709 1525 853 8710 1526 853 8711 1492 610 8712 1526 610 8713 1521 610 8714 1491 0 8715 1527 0 8716 1492 0 8717 1492 566 8718 1527 566 8719 1528 566 8720 1492 567 8721 1528 567 8722 1524 567 8723 1451 452 8724 1454 452 8725 1529 452 8726 1529 453 8727 1454 453 8728 1457 453 8729 1529 454 8730 1457 454 8731 1530 454 8732 1530 1581 8733 1457 1581 8734 1456 1581 8735 1530 1582 8736 1456 1582 8737 1531 1582 8738 1531 625 8739 1456 625 8740 1455 625 8741 1531 458 8742 1455 458 8743 1532 458 8744 1532 459 8745 1455 459 8746 1460 459 8747 1532 1278 8748 1460 1278 8749 1533 1278 8750 1533 461 8751 1460 461 8752 1459 461 8753 1533 462 8754 1459 462 8755 1534 462 8756 1534 463 8757 1459 463 8758 1458 463 8759 1534 1583 8760 1458 1583 8761 1535 1583 8762 1535 464 8763 1458 464 8764 1463 464 8765 1535 771 8766 1463 771 8767 1536 771 8768 1536 824 8769 1463 824 8770 1462 824 8771 1536 825 8772 1462 825 8773 1537 825 8774 1537 468 8775 1462 468 8776 1461 468 8777 1537 714 8778 1461 714 8779 1538 714 8780 1538 773 8781 1461 773 8782 1466 773 8783 1538 471 8784 1466 471 8785 1539 471 8786 1539 510 8787 1466 510 8788 1465 510 8789 1539 510 8790 1465 510 8791 1540 510 8792 1540 630 8793 1465 630 8794 1464 630 8795 1540 631 8796 1464 631 8797 1541 631 8798 1541 472 8799 1464 472 8800 1469 472 8801 1541 1281 8802 1469 1281 8803 1542 1281 8804 1542 474 8805 1469 474 8806 1468 474 8807 1542 1584 8808 1468 1584 8809 1543 1584 8810 1543 383 8811 1468 383 8812 1467 383 8813 1543 384 8814 1467 384 8815 1544 384 8816 1544 718 8817 1467 718 8818 1472 718 8819 1544 476 8820 1472 476 8821 1545 476 8822 1545 1585 8823 1472 1585 8824 1471 1585 8825 1545 1586 8826 1471 1586 8827 1546 1586 8828 1546 720 8829 1471 720 8830 1470 720 8831 1546 480 8832 1470 480 8833 1547 480 8834 1547 481 8835 1470 481 8836 1475 481 8837 1547 721 8838 1475 721 8839 1548 721 8840 1548 636 8841 1475 636 8842 1474 636 8843 1548 637 8844 1474 637 8845 1549 637 8846 1549 1587 8847 1474 1587 8848 1473 1587 8849 1549 723 8850 1473 723 8851 1550 723 8852 1550 430 8853 1473 430 8854 1478 430 8855 1550 1588 8856 1478 1588 8857 1551 1588 8858 1551 638 8859 1478 638 8860 1477 638 8861 1551 398 8862 1477 398 8863 1552 398 8864 1552 1289 8865 1477 1289 8866 1476 1289 8867 1552 443 8868 1476 443 8869 1553 443 8870 1553 640 8871 1476 640 8872 1481 640 8873 1553 641 8874 1481 641 8875 1554 641 8876 1554 527 8877 1481 527 8878 1480 527 8879 1554 527 8880 1480 527 8881 1555 527 8882 1555 404 8883 1480 404 8884 1479 404 8885 1555 528 8886 1479 528 8887 1556 528 8888 1556 727 8889 1479 727 8890 1484 727 8891 1556 445 8892 1484 445 8893 1557 445 8894 1557 839 8895 1484 839 8896 1483 839 8897 1557 839 8898 1483 839 8899 1558 839 8900 1558 783 8901 1483 783 8902 1482 783 8903 1558 448 8904 1482 448 8905 1559 448 8906 1559 1589 8907 1482 1589 8908 1487 1589 8909 1559 449 8910 1487 449 8911 1560 449 8912 1560 420 8913 1487 420 8914 1486 420 8915 1560 1291 8916 1486 1291 8917 1561 1291 8918 1561 734 8919 1486 734 8920 1485 734 8921 1561 734 8922 1485 734 8923 1562 734 8924 1562 1292 8925 1485 1292 8926 1489 1292 8927 1562 424 8928 1489 424 8929 1563 424 8930 1563 648 8931 1489 648 8932 1488 648 8933 1563 649 8934 1488 649 8935 1564 649 8936 1564 352 8937 1488 352 8938 1452 352 8939 1564 436 8940 1452 436 8941 1565 436 8942 1565 437 8943 1452 437 8944 1451 437 8945 1565 1590 8946 1451 1590 8947 1529 1590 8948 1491 1591 8949 1490 1591 8950 1566 1591 8951 1566 496 8952 1490 496 8953 1567 496 8954 1490 568 8955 1493 568 8956 1567 568 8957 1567 569 8958 1493 569 8959 1496 569 8960 1567 1592 8961 1496 1592 8962 1568 1592 8963 1568 357 8964 1496 357 8965 1495 357 8966 1568 500 8967 1495 500 8968 1569 500 8969 1569 1277 8970 1495 1277 8971 1494 1277 8972 1569 458 8973 1494 458 8974 1570 458 8975 1570 570 8976 1494 570 8977 1499 570 8978 1570 626 8979 1499 626 8980 1571 626 8981 1571 365 8982 1499 365 8983 1498 365 8984 1571 366 8985 1498 366 8986 1572 366 8987 1572 1593 8988 1498 1593 8989 1497 1593 8990 1572 1594 8991 1497 1594 8992 1573 1594 8993 1573 369 8994 1497 369 8995 1502 369 8996 1573 505 8997 1502 505 8998 1574 505 8999 1574 371 9000 1502 371 9001 1501 371 9002 1574 1595 9003 1501 1595 9004 1575 1595 9005 1575 373 9006 1501 373 9007 1500 373 9008 1575 508 9009 1500 508 9010 1576 508 9011 1576 509 9012 1500 509 9013 1505 509 9014 1576 509 9015 1505 509 9016 1577 509 9017 1577 510 9018 1505 510 9019 1504 510 9020 1577 511 9021 1504 511 9022 1578 511 9023 1578 378 9024 1504 378 9025 1503 378 9026 1578 379 9027 1503 379 9028 1579 379 9029 1579 381 9030 1503 381 9031 1508 381 9032 1579 632 9033 1508 632 9034 1580 632 9035 1580 1596 9036 1508 1596 9037 1507 1596 9038 1580 513 9039 1507 513 9040 1581 513 9041 1581 580 9042 1507 580 9043 1506 580 9044 1581 515 9045 1506 515 9046 1582 515 9047 1582 516 9048 1506 516 9049 1511 516 9050 1582 516 9051 1511 516 9052 1583 516 9053 1583 386 9054 1511 386 9055 1510 386 9056 1583 387 9057 1510 387 9058 1584 387 9059 1584 1597 9060 1510 1597 9061 1509 1597 9062 1584 1598 9063 1509 1598 9064 1585 1598 9065 1585 1599 9066 1509 1599 9067 1514 1599 9068 1585 1600 9069 1514 1600 9070 1586 1600 9071 1586 392 9072 1514 392 9073 1513 392 9074 1586 393 9075 1513 393 9076 1587 393 9077 1587 584 9078 1513 584 9079 1512 584 9080 1587 521 9081 1512 521 9082 1588 521 9083 1588 522 9084 1512 522 9085 1517 522 9086 1588 586 9087 1517 586 9088 1589 586 9089 1589 524 9090 1517 524 9091 1516 524 9092 1589 1288 9093 1516 1288 9094 1590 1288 9095 1590 639 9096 1516 639 9097 1515 639 9098 1590 1601 9099 1515 1601 9100 1591 1601 9101 1591 401 9102 1515 401 9103 1520 401 9104 1591 402 9105 1520 402 9106 1592 402 9107 1592 526 9108 1520 526 9109 1519 526 9110 1592 527 9111 1519 527 9112 1593 527 9113 1593 528 9114 1519 528 9115 1518 528 9116 1593 528 9117 1518 528 9118 1594 528 9119 1594 529 9120 1518 529 9121 1523 529 9122 1594 407 9123 1523 407 9124 1595 407 9125 1595 1602 9126 1523 1602 9127 1522 1602 9128 1595 409 9129 1522 409 9130 1596 409 9131 1596 532 9132 1522 532 9133 1521 532 9134 1596 411 9135 1521 411 9136 1597 411 9137 1597 1603 9138 1521 1603 9139 1526 1603 9140 1597 1604 9141 1526 1604 9142 1598 1604 9143 1598 414 9144 1526 414 9145 1525 414 9146 1598 414 9147 1525 414 9148 1599 414 9149 1599 645 9150 1525 645 9151 1524 645 9152 1599 594 9153 1524 594 9154 1600 594 9155 1600 646 9156 1524 646 9157 1528 646 9158 1600 1605 9159 1528 1605 9160 1601 1605 9161 1601 538 9162 1528 538 9163 1527 538 9164 1601 690 9165 1527 690 9166 1602 690 9167 1602 1293 9168 1527 1293 9169 1491 1293 9170 1602 595 9171 1491 595 9172 1603 595 9173 1603 596 9174 1491 596 9175 1566 596 9176 1611 486 9870 145 486 9871 1041 486 9872 1041 486 9873 147 486 9874 1608 486 9875 1608 486 9876 1623 486 9877 1041 486 9878 1630 486 9879 1611 486 9880 1041 486 9881 1623 486 9882 1614 486 9883 1041 486 9884 1609 1696 9885 146 1696 9886 1311 1696 9887 1311 1697 9888 144 1697 9889 1612 1697 9890 1631 489 9891 1615 489 9892 1311 489 9893 1311 1698 9894 1612 1698 9895 1631 1698 9896 1624 489 9897 1609 489 9898 1311 489 9899

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

8 1 24 9 1 25 10 1 26 11 0 27 12 0 28 10 0 29 10 2 30 12 2 31 13 2 32 9 3 33 14 3 34 10 3 35 10 4 36 14 4 37 15 4 38 10 5 39 15 5 40 11 5 41 16 0 42 17 0 43 18 0 44 19 0 45 20 0 46 21 0 47 22 0 48 23 0 49 24 0 50 25 6 51 26 6 52 27 6 53 28 7 54 29 7 55 30 7 56 30 8 57 29 8 58 31 8 59 30 9 60 31 9 61 10 9 62 10 10 63 31 10 64 32 10 65 10 0 66 32 0 67 8 0 68 8 0 69 32 0 70 33 0 71 21 11 72 20 11 73 34 11 74 34 12 75 20 12 76 35 12 77 34 0 78 35 0 79 36 0 80 36 13 81 35 13 82 37 13 83 36 0 84 37 0 85 38 0 86 38 0 87 37 0 88 39 0 89 38 0 90 39 0 91 40 0 92 41 0 93 42 0 94 43 0 95 44 0 96 45 0 97 42 0 98 42 0 99 45 0 100 46 0 101 42 14 102 46 14 103 43 14 104 21 0 105 47 0 106 19 0 107 19 15 108 47 15 109 48 15 110 19 0 111 48 0 112 49 0 113 49 16 114 48 16 115 50 16 116 49 0 117 50 0 118 51 0 119 51 17 120 50 17 121 52 17 122 51 18 123 52 18 124 53 18 125 53 19 126 52 19 127 45 19 128 53 0 129 45 0 130 54 0 131 54 0 132 45 0 133 44 0 134 43 0 135 55 0 136 41 0 137 41 20 138 55 20 139 56 20 140 41 21 141 56 21 142 23 21 143 23 22 144 56 22 145 57 22 146 23 23 147 57 23 148 24 23 149 28 24 150 30 24 151 58 24 152 58 0 153 30 0 154 59 0 155 58 0 156 59 0 157 60 0 158 60 25 159 59 25 160 61 25 161 60 0 162 61 0 163 62 0 164 27 26 165 26 26 166 63 26 167 63 27 168 26 27 169 64 27 170 63 28 171 64 28 172 65 28 173 65 29 174 64 29 175 66 29 176 65 0 177 66 0 178 67 0 179 67 30 180 66 30 181 68 30 182 67 31 183 68 31 184 69 31 185 69 32 186 68 32 187 70 32 188 69 0 189 70 0 190 71 0 191 71 0 192 70 0 193 72 0 194 71 0 195 72 0 196 73 0 197 73 0 198 72 0 199 74 0 200 73 0 201 74 0 202 75 0 203 75 33 204 74 33 205 76 33 206 75 0 207 76 0 208 61 0 209 61 0 210 76 0 211 77 0 212 61 34 213 77 34 214 62 34 215 18 35 216 17 35 217 78 35 218 78 36 219 17 36 220 79 36 221 78 0 222 79 0 223 80 0 224 80 37 225 79 37 226 81 37 227 80 0 228 81 0 229 82 0 230 82 38 231 81 38 232 83 38 233 82 39 234 83 39 235 84 39 236 84 40 237 83 40 238 85 40 239 84 0 240 85 0 241 86 0 242 86 41 243 85 41 244 87 41 245 86 0 246 87 0 247 88 0 248 88 42 249 87 42 250 89 42 251 88 43 252 89 43 253 90 43 254 90 44 255 89 44 256 91 44 257 90 0 258 91 0 259 92 0 260 92 45 261 91 45 262 93 45 263 92 0 264 93 0 265 94 0 266 94 0 267 93 0 268 95 0 269 94 46 270 95 46 271 96 46 272 24 0 273 97 0 274 22 0 275 22 47 276 97 47 277 98 47 278 22 0 279 98 0 280 99 0 281 99 48 282 98 48 283 100 48 284 99 49 285 100 49 286 101 49 287 101 0 288 100 0 289 29 0 290 101 0 291 29 0 292 102 0 293 102 0 294 29 0 295 28 0 296 18 50 297 103 50 298 16 50 299 16 51 300 103 51 301 104 51 302 16 52 303 104 52 304 32 52 305 32 0 306 104 0 307 105 0 308 32 53 309 105 53 310 33 53 311 27 0 312 106 0 313 25 0 314 25 54 315 106 54 316 107 54 317 25 0 318 107 0 319 108 0 320 108 55 321 107 55 322 109 55 323 108 0 324 109 0 325 110 0 326 110 56 327 109 56 328 111 56 329 110 57 330 111 57 331 112 57 332 112 0 333 111 0 334 10 0 335 112 0 336 10 0 337 113 0 338 113 0 339 10 0 340 13 0 341 96 0 342 114 0 343 94 0 344 94 58 345 114 58 346 115 58 347 94 59 348 115 59 349 116 59 350 116 60 351 115 60 352 117 60 353 116 0 354 117 0 355 118 0 356 118 0 357 117 0 358 119 0 359 119 61 360 117 61 361 120 61 362 119 62 363 120 62 364 121 62 365 40 0 366 39 0 367 122 0 368 122 0 369 39 0 370 123 0 371 122 0 372 123 0 373 124 0 374 124 0 375 123 0 376 125 0 377 124 0 378 125 0 379 126 0 380 126 63 381 125 63 382 127 63 383 126 0 384 127 0 385 128 0 386 128 64 387 127 64 388 129 64 389 128 0 390 129 0 391 130 0 392 130 65 393 129 65 394 131 65 395 130 66 396 131 66 397 132 66 398 132 67 399 131 67 400 133 67 401 132 0 402 133 0 403 134 0 404 134 68 405 133 68 406 135 68 407 134 0 408 135 0 409 136 0 410 136 69 411 135 69 412 137 69 413 136 70 414 137 70 415 138 70 416 138 71 417 137 71 418 139 71 419 138 0 420 139 0 421 140 0 422 140 72 423 139 72 424 141 72 425 140 0 426 141 0 427 142 0 428 142 73 429 141 73 430 143 73 431 142 0 432 143 0 433 144 0 434 144 74 435 143 74 436 145 74 437 1657 0 438 1633 0 439 146 0 440 145 75 441 1620 75 442 1660 75 443 146 76 444 147 76 445 148 76 446 148 77 447 147 77 448 149 77 449 148 0 450 149 0 451 150 0 452 150 78 453 149 78 454 151 78 455 150 0 456 151 0 457 152 0 458 152 79 459 151 79 460 153 79 461 152 0 462 153 0 463 154 0 464 154 80 465 153 80 466 155 80 467 154 0 468 155 0 469 156 0 470 156 81 471 155 81 472 157 81 473 156 0 474 157 0 475 158 0 476 158 82 477 157 82 478 159 82 479 158 83 480 159 83 481 160 83 482 160 0 483 159 0 484 161 0 485 160 84 486 161 84 487 162 84 488 162 0 489 161 0 490 163 0 491 162 0 492 163 0 493 164 0 494 164 85 495 163 85 496 165 85 497 164 0 498 165 0 499 166 0 500 166 0 501 165 0 502 167 0 503 166 0 504 167 0 505 120 0 506 120 0 507 167 0 508 168 0 509 120 0 510 168 0 511 121 0 512 1658 1684 9624 1618 1684 9625 147 1684 9626 1659 0 9627 1619 0 9628 144 0 9629 146 1690 9828 1609 1690 9829 1653 1690 9830 1626 1691 9831 1665 1691 9832 146 1691 9833 146 1690 9834 1653 1690 9835 1626 1690 9836 1669 0 9837 1610 0 9838 146 0 9839 1617 1692 9840 1657 1692 9841 146 1692 9842 1633 0 9843 1669 0 9844 146 0 9845 146 0 9846 1665 0 9847 1617 0 9848 1672 1693 9849 1613 1693 9850 145 1693 9851 145 1694 9852 1611 1694 9853 1656 1694 9854 1629 1695 9855 1668 1695 9856 145 1695 9857 145 0 9858 1656 0 9859 1629 0 9860 1636 0 9861 1672 0 9862 145 0 9863 1668 0 9864 1620 0 9865 145 0 9866 1660 0 9867 1636 0 9868 145 0 9869 147 1700 9903 146 1700 9904 1610 1700 9905 1670 0 9906 1634 0 9907 147 0 9908 147 1701 9909 1610 1701 9910 1670 1701 9911 1654 1702 9912 1608 1702 9913 147 1702 9914 1618 0 9915 1666 0 9916 147 0 9917 1627 0 9918 1654 0 9919 147 0 9920 147 0 9921 1634 0 9922 1658 0 9923 1666 1703 9924 1627 1703 9925 147 1703 9926 1612 1704 9927 144 1704 9928 1655 1704 9929 145 1705 9930 1613 1705 9931 144 1705 9932 1635 1706 9933 1659 1706 9934 144 1706 9935 1613 1707 9936 1671 1707 9937 144 1707 9938 1655 0 9939 144 0 9940 1628 0 9941 1619 0 9942 1667 0 9943 144 0 9944 1628 1704 9945 144 1704 9946 1667 1704 9947 1671 1706 9948 1635 1706 9949 144 1706 9950

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 2 0 3 1 0 4 3 0 5 2 0 6 3 0 7 4 0 8 4 0 9 3 0 10 5 0 11 4 0 12 5 0 13 6 0 14 6 0 15 5 0 16 7 0 17 6 0 18 7 0 19 0 0 20 0 0 21 7 0 22 1 0 23 169 0 513 170 0 514 171 0 515 172 0 516 173 0 517 174 0 518 175 0 519 176 0 520 177 0 521 178 0 522 179 0 523 180 0 524 180 0 525 179 0 526 181 0 527 182 0 528 183 0 529 184 0 530 174 0 531 173 0 532 185 0 533 186 0 534 187 0 535 188 0 536 188 0 537 187 0 538 189 0 539 188 86 540 189 86 541 190 86 542 191 0 543 192 0 544 193 0 545 193 87 546 192 87 547 194 87 548 193 88 549 194 88 550 195 88 551 195 0 552 196 0 553 193 0 554 193 89 555 196 89 556 197 89 557 193 0 558 197 0 559 188 0 560 188 90 561 197 90 562 198 90 563 188 91 564 198 91 565 186 91 566 199 0 567 200 0 568 183 0 569 191 92 570 201 92 571 202 92 572 202 0 573 203 0 574 191 0 575 191 93 576 203 93 577 204 93 578 191 94 579 204 94 580 205 94 581 182 95 582 206 95 583 207 95 584 207 0 585 208 0 586 182 0 587 182 96 588 208 96 589 209 96 590 182 97 591 209 97 592 210 97 593 210 0 594 211 0 595 182 0 596 182 98 597 211 98 598 212 98 599 182 0 600 212 0 601 183 0 602 183 99 603 212 99 604 213 99 605 183 100 606 213 100 607 199 100 608 214 0 609 215 0 610 191 0 611 191 101 612 215 101 613 216 101 614 191 102 615 216 102 616 217 102 617 217 0 618 218 0 619 191 0 620 191 103 621 218 103 622 219 103 623 191 104 624 219 104 625 201 104 626 200 0 627 220 0 628 183 0 629 183 105 630 220 105 631 221 105 632 183 0 633 221 0 634 191 0 635 191 106 636 221 106 637 222 106 638 191 107 639 222 107 640 214 107 641 191 0 642 193 0 643 183 0 644 183 0 645 193 0 646 223 0 647 183 0 648 223 0 649 184 0 650 224 0 651 225 0 652 193 0 653 193 108 654 225 108 655 226 108 656 193 109 657 226 109 658 223 109 659 227 0 660 228 0 661 229 0 662 229 110 663 228 110 664 230 110 665 227 111 666 231 111 667 228 111 668 228 112 669 231 112 670 232 112 671 228 0 672 232 0 673 193 0 674 193 113 675 232 113 676 233 113 677 193 114 678 233 114 679 224 114 680 234 0 681 235 0 682 228 0 683 228 0 684 235 0 685 236 0 686 228 0 687 236 0 688 230 0 689 237 115 690 238 115 691 239 115 692 240 0 693 241 0 694 242 0 695 239 0 696 243 0 697 237 0 698 237 116 699 243 116 700 244 116 701 237 117 702 244 117 703 245 117 704 245 118 705 246 118 706 237 118 707 237 119 708 246 119 709 247 119 710 237 120 711 247 120 712 248 120 713 241 121 714 249 121 715 242 121 716 242 122 717 249 122 718 250 122 719 242 123 720 250 123 721 251 123 722 248 124 723 252 124 724 237 124 725 237 125 726 252 125 727 253 125 728 237 126 729 253 126 730 254 126 731 255 0 732 256 0 733 257 0 734 254 0 735 258 0 736 237 0 737 237 127 738 258 127 739 259 127 740 237 128 741 259 128 742 260 128 743 261 0 744 262 0 745 257 0 746 257 129 747 262 129 748 263 129 749 257 130 750 263 130 751 264 130 752 264 0 753 265 0 754 257 0 755 257 131 756 265 131 757 266 131 758 257 132 759 266 132 760 267 132 761 234 133 762 268 133 763 269 133 764 256 0 765 270 0 766 257 0 767 257 134 768 270 134 769 271 134 770 257 135 771 271 135 772 261 135 773 234 136 774 269 136 775 272 136 776 272 137 777 269 137 778 273 137 779 272 0 780 273 0 781 242 0 782 242 138 783 273 138 784 274 138 785 242 139 786 274 139 787 240 139 788 275 140 789 276 140 790 277 140 791 279 0 792 178 0 793 277 0 794 277 0 795 178 0 796 180 0 797 277 0 798 180 0 799 275 0 800 275 0 801 180 0 802 181 0 803 275 141 804 181 141 805 280 141 806 281 0 807 282 0 808 283 0 809 283 0 810 284 0 811 281 0 812 281 142 813 284 142 814 285 142 815 281 143 816 285 143 817 286 143 818 287 0 819 288 0 820 177 0 821 289 0 822 290 0 823 278 0 824 278 144 825 290 144 826 291 144 827 278 145 828 291 145 829 292 145 830 292 0 831 293 0 832 278 0 833 278 146 834 293 146 835 294 146 836 278 147 837 294 147 838 295 147 839 295 0 840 296 0 841 278 0 842 278 148 843 296 148 844 297 148 845 278 149 846 297 149 847 298 149 848 286 0 849 299 0 850 281 0 851 281 150 852 299 150 853 300 150 854 281 151 855 300 151 856 301 151 857 298 0 858 302 0 859 278 0 860 278 152 861 302 152 862 303 152 863 278 153 864 303 153 865 304 153 866 304 0 867 305 0 868 278 0 869 278 154 870 305 154 871 282 154 872 278 0 873 282 0 874 306 0 875 306 0 876 282 0 877 281 0 878 307 0 879 308 0 880 177 0 881 177 155 882 308 155 883 309 155 884 177 156 885 309 156 886 310 156 887 310 0 888 311 0 889 177 0 890 177 157 891 311 157 892 312 157 893 177 0 894 312 0 895 278 0 896 278 158 897 312 158 898 313 158 899 278 159 900 313 159 901 289 159 902 288 0 903 314 0 904 177 0 905 177 160 906 314 160 907 315 160 908 177 161 909 315 161 910 307 161 911 301 0 912 316 0 913 281 0 914 281 162 915 316 162 916 317 162 917 281 163 918 317 163 919 176 163 920 317 0 921 318 0 922 176 0 923 176 164 924 318 164 925 319 164 926 176 0 927 319 0 928 177 0 929 177 165 930 319 165 931 320 165 932 177 166 933 320 166 934 287 166 935 321 0 936 322 0 937 323 0 938 324 167 939 325 167 940 326 167 941 326 0 942 325 0 943 321 0 944 326 168 945 321 168 946 327 168 947 327 169 948 321 169 949 323 169 950 324 0 951 328 0 952 325 0 953 325 170 954 328 170 955 329 170 956 325 0 957 329 0 958 330 0 959 331 0 960 332 0 961 333 0 962 332 0 963 334 0 964 333 0 965 333 171 966 334 171 967 335 171 968 333 0 969 335 0 970 321 0 971 321 172 972 335 172 973 336 172 974 321 173 975 336 173 976 322 173 977 337 174 978 338 174 979 339 174 980 340 175 981 341 175 982 342 175 983 342 176 984 341 176 985 343 176 986 342 177 987 343 177 988 344 177 989 344 178 990 345 178 991 342 178 992 342 179 993 345 179 994 346 179 995 342 180 996 346 180 997 347 180 998 348 0 999 349 0 1000 350 0 1001 350 181 1002 349 181 1003 351 181 1004 350 0 1005 351 0 1006 352 0 1007 352 182 1008 351 182 1009 353 182 1010 352 183 1011 353 183 1012 354 183 1013 355 0 1014 352 0 1015 356 0 1016 356 0 1017 352 0 1018 357 0 1019 358 0 1020 359 0 1021 350 0 1022 360 0 1023 361 0 1024 362 0 1025 362 184 1026 361 184 1027 363 184 1028 362 0 1029 363 0 1030 364 0 1031 347 0 1032 348 0 1033 342 0 1034 342 0 1035 348 0 1036 350 0 1037 342 0 1038 350 0 1039 365 0 1040 365 185 1041 350 185 1042 359 185 1043 354 0 1044 366 0 1045 352 0 1046 352 186 1047 366 186 1048 367 186 1049 352 187 1050 367 187 1051 357 187 1052 357 0 1053 367 0 1054 368 0 1055 357 0 1056 368 0 1057 369 0 1058 358 0 1059 350 0 1060 362 0 1061 362 188 1062 350 188 1063 370 188 1064 362 189 1065 370 189 1066 360 189 1067 371 0 1068 368 0 1069 372 0 1070 372 0 1071 368 0 1072 373 0 1073 355 0 1074 374 0 1075 352 0 1076 352 190 1077 374 190 1078 375 190 1079 352 191 1080 375 191 1081 376 191 1082 337 192 1083 377 192 1084 378 192 1085 379 0 1086 338 0 1087 380 0 1088 380 193 1089 338 193 1090 381 193 1091 382 0 1092 383 0 1093 384 0 1094 384 0 1095 383 0 1096 385 0 1097 373 194 1098 368 194 1099 386 194 1100 386 0 1101 368 0 1102 387 0 1103 386 0 1104 387 0 1105 388 0 1106 371 0 1107 389 0 1108 368 0 1109 368 195 1110 389 195 1111 390 195 1112 368 196 1113 390 196 1114 369 196 1115 378 0 1116 391 0 1117 337 0 1118 337 197 1119 391 197 1120 392 197 1121 337 198 1122 392 198 1123 393 198 1124 393 199 1125 394 199 1126 337 199 1127 337 200 1128 394 200 1129 395 200 1130 337 201 1131 395 201 1132 396 201 1133 396 0 1134 397 0 1135 337 0 1136 337 202 1137 397 202 1138 398 202 1139 337 203 1140 398 203 1141 338 203 1142 338 204 1143 398 204 1144 399 204 1145 338 205 1146 399 205 1147 400 205 1148 379 0 1149 401 0 1150 338 0 1151 338 206 1152 401 206 1153 402 206 1154 338 207 1155 402 207 1156 383 207 1157 383 208 1158 402 208 1159 403 208 1160 383 0 1161 403 0 1162 385 0 1163 376 0 1164 404 0 1165 352 0 1166 352 209 1167 404 209 1168 405 209 1169 352 210 1170 405 210 1171 406 210 1172 407 0 1173 400 0 1174 408 0 1175 408 211 1176 400 211 1177 409 211 1178 408 212 1179 409 212 1180 410 212 1181 407 0 1182 411 0 1183 400 0 1184 400 0 1185 411 0 1186 412 0 1187 400 0 1188 412 0 1189 338 0 1190 338 213 1191 412 213 1192 413 213 1193 338 214 1194 413 214 1195 381 214 1196 410 215 1197 414 215 1198 408 215 1199 408 0 1200 414 0 1201 415 0 1202 408 216 1203 415 216 1204 416 216 1205 406 0 1206 417 0 1207 337 0 1208 337 217 1209 417 217 1210 418 217 1211 337 218 1212 418 218 1213 377 218 1214 388 0 1215 387 0 1216 419 0 1217 419 0 1218 387 0 1219 420 0 1220 419 0 1221 420 0 1222 421 0 1223 421 219 1224 420 219 1225 422 219 1226 421 0 1227 422 0 1228 416 0 1229 416 0 1230 422 0 1231 423 0 1232 416 220 1233 423 220 1234 408 220 1235 424 221 1236 425 221 1237 426 221 1238 427 0 1239 428 0 1240 429 0 1241 429 0 1242 428 0 1243 430 0 1244 337 222 1245 431 222 1246 432 222 1247 406 0 1248 337 0 1249 352 0 1250 352 223 1251 337 223 1252 433 223 1253 352 224 1254 433 224 1255 434 224 1256 434 225 1257 435 225 1258 352 225 1259 352 226 1260 435 226 1261 436 226 1262 352 227 1263 436 227 1264 437 227 1265 438 228 1266 439 228 1267 440 228 1268 424 0 1269 426 0 1270 441 0 1271 441 229 1272 426 229 1273 442 229 1274 441 230 1275 442 230 1276 443 230 1277 425 0 1278 424 0 1279 428 0 1280 428 231 1281 424 231 1282 444 231 1283 428 232 1284 444 232 1285 430 232 1286 445 0 1287 446 0 1288 447 0 1289 447 233 1290 446 233 1291 448 233 1292 447 234 1293 449 234 1294 450 234 1295 432 0 1296 451 0 1297 337 0 1298 337 235 1299 451 235 1300 452 235 1301 337 236 1302 452 236 1303 453 236 1304 437 0 1305 454 0 1306 352 0 1307 352 237 1308 454 237 1309 455 237 1310 352 0 1311 455 0 1312 456 0 1313 456 238 1314 455 238 1315 438 238 1316 456 0 1317 438 0 1318 457 0 1319 457 239 1320 438 239 1321 440 239 1322 443 0 1323 458 0 1324 441 0 1325 441 240 1326 458 240 1327 459 240 1328 441 0 1329 459 0 1330 439 0 1331 439 241 1332 459 241 1333 460 241 1334 439 242 1335 460 242 1336 440 242 1337 427 243 1338 461 243 1339 428 243 1340 428 244 1341 461 244 1342 462 244 1343 428 245 1344 462 245 1345 447 245 1346 447 246 1347 462 246 1348 463 246 1349 447 247 1350 463 247 1351 445 247 1352 448 0 1353 464 0 1354 447 0 1355 447 248 1356 464 248 1357 465 248 1358 447 249 1359 465 249 1360 449 249 1361 450 0 1362 466 0 1363 447 0 1364 447 250 1365 466 250 1366 467 250 1367 447 0 1368 467 0 1369 337 0 1370 337 251 1371 467 251 1372 468 251 1373 337 252 1374 468 252 1375 431 252 1376 469 0 1377 470 0 1378 337 0 1379 337 253 1380 470 253 1381 471 253 1382 337 254 1383 471 254 1384 433 254 1385 453 0 1386 472 0 1387 337 0 1388 337 255 1389 472 255 1390 473 255 1391 337 256 1392 473 256 1393 469 256 1394 474 0 1395 475 0 1396 476 0 1397 476 0 1398 475 0 1399 477 0 1400 479 0 1404 480 0 1405 173 0 1406 172 258 1407 481 258 1408 482 258 1409 482 0 1410 483 0 1411 172 0 1412 172 259 1413 483 259 1414 484 259 1415 172 260 1416 484 260 1417 485 260 1418 479 0 1419 173 0 1420 486 0 1421 428 261 1422 487 261 1423 488 261 1424 488 0 1425 489 0 1426 428 0 1427 428 262 1428 489 262 1429 490 262 1430 428 263 1431 490 263 1432 491 263 1433 485 0 1434 492 0 1435 172 0 1436 172 264 1437 492 264 1438 493 264 1439 172 0 1440 493 0 1441 173 0 1442 173 265 1443 493 265 1444 494 265 1445 173 266 1446 494 266 1447 486 266 1448 480 0 1449 495 0 1450 173 0 1451 173 267 1452 495 267 1453 496 267 1454 173 0 1455 496 0 1456 487 0 1457 487 268 1458 496 268 1459 497 268 1460 497 0 1461 498 0 1462 487 0 1463 487 269 1464 498 269 1465 499 269 1466 487 270 1467 499 270 1468 500 270 1469 500 0 1470 501 0 1471 487 0 1472 487 271 1473 501 271 1474 502 271 1475 487 272 1476 502 272 1477 503 272 1478 503 0 1479 504 0 1480 487 0 1481 487 273 1482 504 273 1483 505 273 1484 487 274 1485 505 274 1486 488 274 1487 506 275 1488 507 275 1489 476 275 1490 476 276 1491 507 276 1492 508 276 1493 476 277 1494 508 277 1495 474 277 1496 509 278 1497 510 278 1498 428 278 1499 428 279 1500 510 279 1501 511 279 1502 491 0 1503 512 0 1504 428 0 1505 428 280 1506 512 280 1507 513 280 1508 428 281 1509 513 281 1510 509 281 1511 509 282 1512 513 282 1513 507 282 1514 509 0 1515 507 0 1516 514 0 1517 514 0 1518 507 0 1519 506 0 1520 511 0 1521 515 0 1522 428 0 1523 428 0 1524 515 0 1525 516 0 1526 428 0 1527 516 0 1528 425 0 1529 190 283 1530 185 283 1531 188 283 1532 188 284 1533 185 284 1534 173 284 1535 188 0 1536 173 0 1537 517 0 1538 517 0 1539 173 0 1540 487 0 1541 169 0 1542 518 0 1543 519 0 1544 519 0 1545 518 0 1546 520 0 1547 519 0 1548 520 0 1549 228 0 1550 228 0 1551 520 0 1552 257 0 1553 228 0 1554 257 0 1555 234 0 1556 234 0 1557 257 0 1558 267 0 1559 234 285 1560 267 285 1561 268 285 1562 521 0 1563 522 0 1564 520 0 1565 520 286 1566 522 286 1567 523 286 1568 524 0 1569 518 0 1570 525 0 1571 525 0 1572 518 0 1573 526 0 1574 527 0 1575 528 0 1576 520 0 1577 528 0 1578 529 0 1579 520 0 1580 520 287 1581 529 287 1582 530 287 1583 520 288 1584 530 288 1585 521 288 1586 524 0 1587 531 0 1588 518 0 1589 518 289 1590 531 289 1591 532 289 1592 518 290 1593 532 290 1594 533 290 1595 518 291 1596 534 291 1597 535 291 1598 523 0 1599 536 0 1600 520 0 1601 520 292 1602 536 292 1603 537 292 1604 520 293 1605 537 293 1606 538 293 1607 260 0 1608 255 0 1609 237 0 1610 237 294 1611 255 294 1612 257 294 1613 237 295 1614 257 295 1615 276 295 1616 276 0 1617 257 0 1618 520 0 1619 276 0 1620 520 0 1621 277 0 1622 277 296 1623 520 296 1624 538 296 1625 538 0 1626 539 0 1627 277 0 1628 277 297 1629 539 297 1630 540 297 1631 277 298 1632 540 298 1633 541 298 1634 541 0 1635 542 0 1636 277 0 1637 277 299 1638 542 299 1639 543 299 1640 277 300 1641 543 300 1642 544 300 1643 533 301 1644 545 301 1645 518 301 1646 518 302 1647 545 302 1648 546 302 1649 518 303 1650 546 303 1651 534 303 1652 535 0 1653 547 0 1654 518 0 1655 518 304 1656 547 304 1657 548 304 1658 518 0 1659 548 0 1660 520 0 1661 520 305 1662 548 305 1663 549 305 1664 520 306 1665 549 306 1666 527 306 1667 550 307 1668 551 307 1669 526 307 1670 526 308 1671 551 308 1672 552 308 1673 526 309 1674 552 309 1675 553 309 1676 544 0 1677 554 0 1678 277 0 1679 277 310 1680 554 310 1681 555 310 1682 277 0 1683 555 0 1684 526 0 1685 526 311 1686 555 311 1687 556 311 1688 526 312 1689 556 312 1690 550 312 1691 553 0 1692 557 0 1693 526 0 1694 526 313 1695 557 313 1696 558 313 1697 526 314 1698 558 314 1699 525 314 1700 559 0 1701 560 0 1702 279 0 1703 526 315 1704 561 315 1705 562 315 1706 563 316 1707 564 316 1708 277 316 1709 277 317 1710 564 317 1711 565 317 1712 277 318 1713 565 318 1714 279 318 1715 279 319 1716 565 319 1717 566 319 1718 279 320 1719 566 320 1720 559 320 1721 567 0 1722 568 0 1723 561 0 1724 561 321 1725 568 321 1726 569 321 1727 561 322 1728 569 322 1729 562 322 1730 562 323 1731 570 323 1732 526 323 1733 526 324 1734 570 324 1735 571 324 1736 526 325 1737 571 325 1738 572 325 1739 277 326 1740 573 326 1741 574 326 1742 560 0 1743 575 0 1744 279 0 1745 279 327 1746 575 327 1747 576 327 1748 279 328 1749 576 328 1750 577 328 1751 572 0 1752 578 0 1753 526 0 1754 526 329 1755 578 329 1756 579 329 1757 526 330 1758 579 330 1759 580 330 1760 580 0 1761 581 0 1762 526 0 1763 526 331 1764 581 331 1765 582 331 1766 526 0 1767 582 0 1768 277 0 1769 277 332 1770 582 332 1771 583 332 1772 277 333 1773 583 333 1774 573 333 1775 574 334 1776 584 334 1777 277 334 1778 277 335 1779 584 335 1780 585 335 1781 277 336 1782 585 336 1783 563 336 1784 586 0 1785 587 0 1786 561 0 1787 561 337 1788 587 337 1789 588 337 1790 561 338 1791 588 338 1792 567 338 1793 577 0 1794 589 0 1795 279 0 1796 279 339 1797 589 339 1798 590 339 1799 279 340 1800 590 340 1801 591 340 1802 591 0 1803 592 0 1804 279 0 1805 279 341 1806 592 341 1807 593 341 1808 279 0 1809 593 0 1810 561 0 1811 561 342 1812 593 342 1813 594 342 1814 561 343 1815 594 343 1816 595 343 1817 595 0 1818 596 0 1819 561 0 1820 561 344 1821 596 344 1822 597 344 1823 561 345 1824 597 345 1825 586 345 1826 169 0 1827 171 0 1828 518 0 1829 518 0 1830 171 0 1831 598 0 1832 518 0 1833 598 0 1834 526 0 1835 526 0 1836 598 0 1837 599 0 1838 526 0 1839 599 0 1840 561 0 1841 339 0 1842 331 0 1843 337 0 1844 337 0 1845 331 0 1846 333 0 1847 337 0 1848 333 0 1849 447 0 1850 447 0 1851 333 0 1852 600 0 1853 599 0 1854 601 0 1855 561 0 1856 561 0 1857 601 0 1858 602 0 1859 561 0 1860 602 0 1861 279 0 1862 279 0 1863 602 0 1864 603 0 1865 279 0 1866 603 0 1867 177 0 1868 177 0 1869 603 0 1870 325 0 1871 177 0 1872 325 0 1873 175 0 1874 175 346 1875 325 346 1876 330 346 1877 1257 0 7239 1258 0 7240 1177 0 7241 1180 1294 7242 1233 1294 7243 1234 1294 7244 1242 0 7245 1243 0 7246 1179 0 7247 1176 1295 7248 1265 1295 7249 1266 1295 7250 1242 0 7251 1179 0 7252 1241 0 7253 1247 1296 7254 1248 1296 7255 1178 1296 7256 1178 1297 7257 1248 1297 7258 1249 1297 7259 1178 1298 7260 1249 1298 7261 1250 1298 7262 1253 0 7263 1254 0 7264 1178 0 7265 1178 1299 7266 1254 1299 7267 1255 1299 7268 1178 1300 7269 1255 1300 7270 1177 1300 7271 1177 1301 7272 1255 1301 7273 1256 1301 7274 1177 1302 7275 1256 1302 7276 1257 1302 7277 1266 0 7278 1267 0 7279 1176 0 7280 1176 1303 7281 1267 1303 7282 1231 1303 7283 1176 1304 7284 1231 1304 7285 1180 1304 7286 1180 1305 7287 1231 1305 7288 1232 1305 7289 1180 1306 7290 1232 1306 7291 1233 1306 7292 1187 1307 7293 1186 1307 7294 1238 1307 7295 1250 0 7296 1251 0 7297 1178 0 7298 1178 0 7299 1251 0 7300 1252 0 7301 1178 1308 7302 1252 1308 7303 1253 1308 7304 1262 0 7305 1263 0 7306 1176 0 7307 1176 1309 7308 1263 1309 7309 1264 1309 7310 1176 1310 7311 1264 1310 7312 1265 1310 7313 1191 0 7314 1239 0 7315 1179 0 7316 1179 1311 7317 1239 1311 7318 1240 1311 7319 1179 1312 7320 1240 1312 7321 1241 1312 7322 1191 0 7323 1190 0 7324 1239 0 7325 1239 1313 7326 1190 1313 7327 1189 1313 7328 1239 0 7329 1189 0 7330 1238 0 7331 1238 1314 7332 1189 1314 7333 1188 1314 7334 1238 1315 7335 1188 1315 7336 1187 1315 7337 1243 1316 7338 1244 1316 7339 1179 1316 7340 1179 1317 7341 1244 1317 7342 1245 1317 7343 1179 0 7344 1245 0 7345 1178 0 7346 1178 1318 7347 1245 1318 7348 1246 1318 7349 1178 1319 7350 1246 1319 7351 1247 1319 7352 1258 1320 7353 1259 1320 7354 1177 1320 7355 1177 1321 7356 1259 1321 7357 1260 1321 7358 1177 1322 7359 1260 1322 7360 1176 1322 7361 1176 1323 7362 1260 1323 7363 1261 1323 7364 1176 1324 7365 1261 1324 7366 1262 1324 7367 1234 0 7368 1235 0 7369 1180 0 7370 1180 1325 7371 1235 1325 7372 1236 1325 7373 1180 1326 7374 1236 1326 7375 1181 1326 7376 1181 1327 7377 1236 1327 7378 1237 1327 7379 1181 0 7380 1237 0 7381 1182 0 7382 1186 0 7383 1185 0 7384 1238 0 7385 1238 1328 7386 1185 1328 7387 1184 1328 7388 1238 0 7389 1184 0 7390 1237 0 7391 1237 1329 7392 1184 1329 7393 1183 1329 7394 1237 1330 7395 1183 1330 7396 1182 1330 7397 1565 0 9177 1529 0 9178 1401 0 9179 1401 1606 9180 1529 1606 9181 1530 1606 9182 1401 1607 9183 1530 1607 9184 1390 1607 9185 1530 1608 9186 1531 1608 9187 1390 1608 9188 1390 1609 9189 1531 1609 9190 1532 1609 9191 1390 1610 9192 1532 1610 9193 1533 1610 9194 1396 0 9195 1538 0 9196 1397 0 9197 1397 1611 9198 1538 1611 9199 1539 1611 9200 1599 0 9201 1600 0 9202 1403 0 9203 1403 1612 9204 1600 1612 9205 1601 1612 9206 1403 1613 9207 1601 1613 9208 1602 1613 9209 1533 1614 9210 1534 1614 9211 1390 1614 9212 1390 1615 9213 1534 1615 9214 1535 1615 9215 1390 0 9216 1535 0 9217 1391 0 9218 1391 1616 9219 1535 1616 9220 1536 1616 9221 1391 0 9222 1536 0 9223 1392 0 9224 1392 1617 9225 1536 1617 9226 1537 1617 9227 1396 0 9228 1395 0 9229 1538 0 9230 1538 1618 9231 1395 1618 9232 1394 1618 9233 1538 0 9234 1394 0 9235 1537 0 9236 1537 1619 9237 1394 1619 9238 1393 1619 9239 1537 1620 9240 1393 1620 9241 1392 1620 9242 1541 0 9243 1400 0 9244 1540 0 9245 1540 1621 9246 1400 1621 9247 1399 1621 9248 1540 0 9249 1399 0 9250 1539 0 9251 1539 1622 9252 1399 1622 9253 1398 1622 9254 1539 1623 9255 1398 1623 9256 1397 1623 9257 1568 0 9258 1569 0 9259 1402 0 9260 1402 1624 9261 1569 1624 9262 1570 1624 9263 1402 1625 9264 1570 1625 9265 1571 1625 9266 1412 1626 9267 1589 1626 9268 1590 1626 9269 1602 0 9270 1603 0 9271 1403 0 9272 1403 1627 9273 1603 1627 9274 1566 1627 9275 1403 0 9276 1566 0 9277 1402 0 9278 1402 1628 9279 1566 1628 9280 1567 1628 9281 1402 1629 9282 1567 1629 9283 1568 1629 9284 1421 0 9285 1420 0 9286 1588 0 9287 1588 1630 9288 1420 1630 9289 1419 1630 9290 1590 0 9291 1591 0 9292 1412 0 9293 1412 1631 9294 1591 1631 9295 1592 1631 9296 1412 0 9297 1592 0 9298 1404 0 9299 1404 1632 9300 1592 1632 9301 1593 1632 9302 1404 1633 9303 1593 1633 9304 1594 1633 9305 1544 0 9306 1446 0 9307 1543 0 9308 1543 0 9309 1446 0 9310 1400 0 9311 1543 0 9312 1400 0 9313 1542 0 9314 1542 0 9315 1400 0 9316 1541 0 9317 1544 0 9318 1545 0 9319 1446 0 9320 1446 1634 9321 1545 1634 9322 1546 1634 9323 1446 1635 9324 1546 1635 9325 1547 1635 9326 1441 0 9327 1555 0 9328 1442 0 9329 1442 0 9330 1555 0 9331 1443 0 9332 1441 0 9333 1440 0 9334 1555 0 9335 1555 1636 9336 1440 1636 9337 1439 1636 9338 1555 1637 9339 1439 1637 9340 1438 1637 9341 1574 0 9342 1401 0 9343 1573 0 9344 1573 1638 9345 1401 1638 9346 1402 1638 9347 1573 0 9348 1402 0 9349 1572 0 9350 1572 0 9351 1402 0 9352 1571 0 9353 1557 0 9354 1424 0 9355 1556 0 9356 1556 0 9357 1424 0 9358 1434 0 9359 1556 1639 9360 1434 1639 9361 1555 1639 9362 1555 1640 9363 1434 1640 9364 1444 1640 9365 1555 1641 9366 1444 1641 9367 1443 1641 9368 1589 0 9369 1412 0 9370 1588 0 9371 1588 1642 9372 1412 1642 9373 1422 1642 9374 1588 1643 9375 1422 1643 9376 1421 1643 9377 1552 0 9378 1435 0 9379 1551 0 9380 1551 1644 9381 1435 1644 9382 1445 1644 9383 1551 0 9384 1445 0 9385 1550 0 9386 1550 1645 9387 1445 1645 9388 1450 1645 9389 1550 1646 9390 1450 1646 9391 1449 1646 9392 1547 0 9393 1548 0 9394 1446 0 9395 1446 1647 9396 1548 1647 9397 1549 1647 9398 1446 1648 9399 1549 1648 9400 1447 1648 9401 1447 0 9402 1549 0 9403 1550 0 9404 1447 0 9405 1550 0 9406 1448 0 9407 1448 0 9408 1550 0 9409 1449 0 9410 1552 1649 9411 1553 1649 9412 1435 1649 9413 1435 1650 9414 1553 1650 9415 1554 1650 9416 1435 0 9417 1554 0 9418 1436 0 9419 1436 1651 9420 1554 1651 9421 1555 1651 9422 1436 1652 9423 1555 1652 9424 1437 1652 9425 1437 0 9426 1555 0 9427 1438 0 9428 1562 0 9429 1563 0 9430 1401 0 9431 1401 1653 9432 1563 1653 9433 1564 1653 9434 1401 1654 9435 1564 1654 9436 1565 1654 9437 1577 0 9438 1578 0 9439 1423 0 9440 1423 1655 9441 1578 1655 9442 1579 1655 9443 1423 1656 9444 1579 1656 9445 1580 1656 9446 1580 0 9447 1581 0 9448 1423 0 9449 1423 1657 9450 1581 1657 9451 1582 1657 9452 1423 1658 9453 1582 1658 9454 1413 1658 9455 1413 0 9456 1582 0 9457 1583 0 9458 1413 1659 9459 1583 1659 9460 1584 1659 9461 1584 0 9462 1585 0 9463 1413 0 9464 1413 1660 9465 1585 1660 9466 1586 1660 9467 1413 1661 9468 1586 1661 9469 1414 1661 9470 1414 1662 9471 1586 1662 9472 1587 1662 9473 1414 0 9474 1587 0 9475 1415 0 9476 1419 0 9477 1418 0 9478 1588 0 9479 1588 1663 9480 1418 1663 9481 1417 1663 9482 1588 0 9483 1417 0 9484 1587 0 9485 1587 0 9486 1417 0 9487 1416 0 9488 1587 0 9489 1416 0 9490 1415 0 9491 1594 1664 9492 1595 1664 9493 1404 1664 9494 1404 1665 9495 1595 1665 9496 1596 1665 9497 1404 0 9498 1596 0 9499 1405 0 9500 1405 1666 9501 1596 1666 9502 1597 1666 9503 1405 0 9504 1597 0 9505 1406 0 9506 1406 0 9507 1597 0 9508 1407 0 9509 1407 1667 9510 1597 1667 9511 1598 1667 9512 1407 0 9513 1598 0 9514 1408 0 9515 1403 0 9516 1411 0 9517 1599 0 9518 1599 1668 9519 1411 1668 9520 1410 1668 9521 1599 1669 9522 1410 1669 9523 1598 1669 9524 1598 1670 9525 1410 1670 9526 1409 1670 9527 1598 1671 9528 1409 1671 9529 1408 1671 9530 1428 0 9531 1427 0 9532 1560 0 9533 1574 0 9534 1575 0 9535 1401 0 9536 1401 1672 9537 1575 1672 9538 1576 1672 9539 1401 1673 9540 1576 1673 9541 1577 1673 9542 1423 0 9543 1433 0 9544 1577 0 9545 1577 1674 9546 1433 1674 9547 1432 1674 9548 1577 1675 9549 1432 1675 9550 1401 1675 9551 1401 0 9552 1432 0 9553 1431 0 9554 1401 1676 9555 1431 1676 9556 1430 1676 9557 1562 0 9558 1401 0 9559 1561 0 9560 1561 1677 9561 1401 1677 9562 1430 1677 9563 1561 1678 9564 1430 1678 9565 1560 1678 9566 1560 1679 9567 1430 1679 9568 1429 1679 9569 1560 1680 9570 1429 1680 9571 1428 1680 9572 1557 0 9573 1558 0 9574 1424 0 9575 1424 1681 9576 1558 1681 9577 1559 1681 9578 1424 0 9579 1559 0 9580 1425 0 9581 1425 1682 9582 1559 1682 9583 1560 1682 9584 1425 0 9585 1560 0 9586 1426 0 9587 1426 0 9588 1560 0 9589 1427 0 9590 1604 489 9591 1605 489 9592 5 489 9593 5 489 9594 1605 489 9595 7 489 9596 1606 487 9597 1604 487 9598 3 487 9599 3 487 9600 1604 487 9601 5 487 9602 1607 486 9603 1606 486 9604 1 486 9605 1 486 9606 1606 486 9607 3 486 9608 1605 485 9609 1607 485 9610 7 485 9611 7 485 9612 1607 485 9613 1 485 9614 1604 1683 9615 1606 1683 9616 1605 1683 9617 1605 1683 9618 1606 1683 9619 1607 1683 9620 278 0 9621 279 0 9622 177 0 9623 278 1699 9900 178 1699 9901 279 1699 9902

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1676 1685 9633 1652 1685 9634 1644 1685 9635 1659 0 9645 1642 0 9646 1619 0 9647 1671 0 9651 1645 0 9652 1635 0 9653 1655 1686 9654 1631 1686 9655 1612 1686 9656 1663 0 9663 1624 0 9664 1615 0 9665 1688 0 9666 1627 0 9667 1666 0 9668 1664 0 9672 1641 0 9673 1622 0 9674 1652 0 9681 1657 0 9682 1691 0 9683 1620 0 9684 1690 0 9685 1640 0 9686 1689 0 9693 1614 0 9694 1661 0 9695 1684 0 9699 1638 0 9700 1674 0 9701 1621 0 9702 1688 0 9703 1639 0 9704 1687 0 9711 1608 0 9712 1654 0 9713 1686 0 9717 1634 0 9718 1670 0 9719 1616 0 9720 1686 0 9721 1625 0 9722 1675 0 9723 1647 0 9724 1643 0 9725 1685 0 9729 1618 0 9730 1658 0 9731 1613 0 9738 1684 0 9739 1632 0 9740 1667 0 9741 1646 0 9742 1628 0 9743 1683 0 9747 1621 0 9748 1662 0 9749 1647 0 9762 1653 0 9763 1681 0 9764 1646 0 9771 1663 0 9772 1679 0 9773 1645 0 9780 1664 0 9781 1677 0 9782 1632 0 9783 1676 0 9784 1678 0 9785 1642 0 9786 1675 0 9787 1680 0 9788 1641 1686 9789 1665 1686 9790 1682 1686 9791 1636 0 9792 1683 0 9793 1648 0 9794 1638 0 9798 1685 0 9799 1649 0 9800 1637 0 9804 1687 0 9805 1650 0 9806 1629 0 9810 1689 0 9811 1651 0 9812 1690 0 9813 1637 0 9814 1673 0 9815 1625 0 9816 1669 0 9817 1692 0 9818 1676 1708 9954 1692 1708 9955 1652 1708 9956 1659 0 9966 1677 0 9967 1642 0 9968 1671 0 9972 1678 0 9973 1645 0 9974 1655 1708 9975 1679 1708 9976 1631 1708 9977 1663 0 9984 1681 0 9985 1624 0 9986 1688 0 9987 1650 0 9988 1627 0 9989 1664 0 9993 1691 0 9994 1641 0 9995 1652 0 10002 1633 0 10003 1657 0 10004 1620 0 10005 1668 0 10006 1690 0 10007 1689 0 10014 1630 0 10015 1614 0 10016 1684 0 10020 1648 0 10021 1638 0 10022 1621 0 10023 1673 0 10024 1688 0 10025 1687 0 10032 1623 0 10033 1608 0 10034 1686 0 10038 1649 0 10039 1634 0 10040 1616 0 10041 1674 0 10042 1686 0 10043 1675 0 10044 1682 0 10045 1647 0 10046 1685 0 10050 1639 0 10051 1618 0 10052 1613 0 10059 1672 0 10060 1684 0 10061 1667 0 10062 1680 0 10063 1646 0 10064 1683 0 10068 1640 0 10069 1621 0 10070 1647 0 10083 1626 0 10084 1653 0 10085 1646 0 10092 1643 0 10093 1663 0 10094 1645 0 10101 1644 0 10102 1664 0 10103 1632 0 10104 1616 0 10105 1676 0 10106 1642 0 10107 1622 0 10108 1675 0 10109 1641 1709 10110 1617 1709 10111 1665 1709 10112 1636 0 10113 1660 0 10114 1683 0 10115 1638 0 10119 1662 0 10120 1685 0 10121 1637 0 10125 1661 0 10126 1687 0 10127 1629 0 10131 1656 0 10132 1689 0 10133 1690 0 10134 1651 0 10135 1637 0 10136 1625 0 10137 1610 0 10138 1669 0 10139

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1692 0 9630 1633 0 9631 1652 0 9632 1680 0 9636 1643 0 9637 1646 0 9638 1678 0 9639 1644 0 9640 1645 0 9641 1660 0 9642 1640 0 9643 1683 0 9644 1677 0 9648 1622 0 9649 1642 0 9650 1682 0 9657 1626 0 9658 1647 0 9659 1662 0 9660 1639 0 9661 1685 0 9662 1673 0 9669 1650 0 9670 1688 0 9671 1616 1687 9675 1692 1687 9676 1676 1687 9677 1644 0 9678 1691 0 9679 1664 0 9680 1672 0 9687 1648 0 9688 1684 0 9689 1640 0 9690 1673 0 9691 1621 0 9692 1651 0 9696 1661 0 9697 1637 0 9698 1674 0 9705 1649 0 9706 1686 0 9707 1639 0 9708 1666 0 9709 1618 0 9710 1650 0 9714 1654 0 9715 1627 0 9716 1625 0 9726 1670 0 9727 1610 0 9728 1649 0 9732 1658 0 9733 1634 0 9734 1681 0 9735 1609 0 9736 1624 0 9737 1632 0 9744 1674 0 9745 1616 0 9746 1648 0 9750 1662 0 9751 1638 0 9752 1679 0 9753 1615 0 9754 1631 0 9755 1622 0 9756 1682 0 9757 1675 0 9758 1643 0 9759 1681 0 9760 1663 0 9761 1619 0 9765 1680 0 9766 1667 0 9767 1628 1688 9768 1679 1688 9769 1655 1688 9770 1613 0 9774 1678 0 9775 1671 0 9776 1635 0 9777 1677 0 9778 1659 0 9779 1656 0 9795 1630 0 9796 1689 0 9797 1661 0 9801 1623 0 9802 1687 0 9803 1691 1687 9807 1617 1687 9808 1641 1687 9809 1668 0 9819 1651 0 9820 1690 0 9821 1692 0 9951 1669 0 9952 1633 0 9953 1680 0 9957 1675 0 9958 1643 0 9959 1678 0 9960 1676 0 9961 1644 0 9962 1660 0 9963 1620 0 9964 1640 0 9965 1677 0 9969 1664 0 9970 1622 0 9971 1682 0 9978 1665 0 9979 1626 0 9980 1662 0 9981 1621 0 9982 1639 0 9983 1673 0 9990 1637 0 9991 1650 0 9992 1616 0 9996 1625 0 9997 1692 0 9998 1644 0 9999 1652 0 10000 1691 0 10001 1672 0 10008 1636 0 10009 1648 0 10010 1640 0 10011 1690 0 10012 1673 0 10013 1651 0 10017 1689 0 10018 1661 0 10019 1674 0 10026 1638 0 10027 1649 0 10028 1639 0 10029 1688 0 10030 1666 0 10031 1650 0 10035 1687 0 10036 1654 0 10037 1625 0 10047 1686 0 10048 1670 0 10049 1649 0 10053 1685 0 10054 1658 0 10055 1681 0 10056 1653 0 10057 1609 0 10058 1632 0 10065 1684 0 10066 1674 0 10067 1648 0 10071 1683 0 10072 1662 0 10073 1679 0 10074 1663 0 10075 1615 0 10076 1622 0 10077 1641 0 10078 1682 0 10079 1643 0 10080 1647 0 10081 1681 0 10082 1619 0 10086 1642 0 10087 1680 0 10088 1628 0 10089 1646 0 10090 1679 0 10091 1613 0 10095 1632 0 10096 1678 0 10097 1635 0 10098 1645 0 10099 1677 0 10100 1656 0 10116 1611 0 10117 1630 0 10118 1661 0 10122 1614 0 10123 1623 0 10124 1691 0 10128 1657 0 10129 1617 0 10130 1668 0 10140 1629 0 10141 1651 0 10142

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1023 1182 6558 165 1182 6559 1025 1182 6560 1025 1183 6561 165 1183 6562 163 1183 6563 1027 1184 6564 1025 1184 6565 163 1184 6566 1027 1185 6567 163 1185 6568 161 1185 6569 1027 1186 6570 161 1186 6571 1029 1186 6572 1029 1187 6573 161 1187 6574 159 1187 6575 1029 1188 6576 159 1188 6577 1031 1188 6578 1031 1189 6579 159 1189 6580 157 1189 6581 1031 1190 6582 157 1190 6583 1033 1190 6584 1033 1191 6585 157 1191 6586 155 1191 6587

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1141 1085 6249 78 1085 6250 1140 1085 6251 1140 1086 6252 78 1086 6253 80 1086 6254 1140 1087 6255 80 1087 6256 1139 1087 6257 1139 1088 6258 80 1088 6259 82 1088 6260 1139 1089 6261 82 1089 6262 1138 1089 6263 1138 1090 6264 82 1090 6265 84 1090 6266 1138 1091 6267 84 1091 6268 1137 1091 6269 1137 1092 6270 84 1092 6271 86 1092 6272 86 1689 9822 1136 1689 9823 1137 1689 9824 86 1689 10143 88 1689 10144 1136 1689 10145

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1112 1106 6321 70 1106 6322 1110 1106 6323 1110 1107 6324 70 1107 6325 68 1107 6326 1110 1108 6327 68 1108 6328 1108 1108 6329 1108 1109 6330 68 1109 6331 66 1109 6332 1108 1110 6333 66 1110 6334 1106 1110 6335 1106 1111 6336 66 1111 6337 64 1111 6338 1106 1112 6339 64 1112 6340 1104 1112 6341 1104 1113 6342 64 1113 6343 26 1113 6344 1104 1114 6345 26 1114 6346 1102 1114 6347 1102 1115 6348 26 1115 6349 25 1115 6350

+
+ + + + + 3 3 3 3 3 3 3 3 +

1078 1133 6405 42 1133 6406 1076 1133 6407 1076 1134 6408 42 1134 6409 41 1134 6410 1076 1135 6411 41 1135 6412 1074 1135 6413 1074 1136 6414 41 1136 6415 23 1136 6416 1072 1137 6417 23 1137 6418 22 1137 6419 1072 1138 6420 22 1138 6421 1070 1138 6422 1070 1139 6423 22 1139 6424 99 1139 6425 1072 1137 9825 1074 1137 9826 23 1137 9827

+
+
+
+
+ + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.001175366 0 0 -15 0 8.87376e-11 -0.001175366 18 0 0.001175366 8.87376e-11 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.config b/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.config new file mode 100755 index 0000000..50a42ad --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.config @@ -0,0 +1,11 @@ + + + MIT_Tunnel + 1.0 + model.sdf + + Abhishek Agarwal + abhia@mit.edu + + Building 32-081 + diff --git a/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.sdf b/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.sdf new file mode 100755 index 0000000..9e1e0fc --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/MIT_Tunnel/model.sdf @@ -0,0 +1,917 @@ + + + + 3.61177 6.74312 0 0 -0 0 + + + + + 32.6917 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 32.6917 0.15 2.5 + + + + + 1 1 1 1 + + + -19.1952 15.5558 0 0 0 -0.001042 + + + + + + 8.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.5 0.15 2.5 + + + + + 1 1 1 1 + + + -2.92483 11.3639 0 0 0 -1.5708 + + + + + + 18.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 18.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.37517 7.18889 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 15.0799 4.96726 0 0 0 -1.8326 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 13.1846 2.74563 0 0 -0 3.14159 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 10.9654 1.82639 0 0 0 -2.35619 + + + + + + 24.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 24.25 0.15 2.5 + + + + + 1 1 1 1 + + + -52.25 -18.2689 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 10.0461 -0.142849 0 0 0 -1.5708 + + + + + + 5.08891 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.08891 0.15 2.5 + + + + + 1 1 1 1 + + + 8.53852 -3.14869 0 0 0 -2.22749 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.23091 -5.10454 0 0 -0 3.14159 + + + + + + 2.59216 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.59216 0.15 2.5 + + + + + 1 1 1 1 + + + 4.6163 -6.01417 0 0 0 -2.30114 + + + + + + 3 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 3 0.15 2.5 + + + + + 1 1 1 1 + + + 3.80168 -8.34882 0 0 0 -1.5708 + + + + + + 2.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.5 0.15 2.5 + + + + + 1 1 1 1 + + + 2.62668 -9.77382 0 0 -0 3.14159 + + + + + + 4.15096 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.15096 0.15 2.5 + + + + + 1 1 1 1 + + + 0.152007 -11.2946 0 0 0 -2.27796 + + + + + + 5.87777 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.87777 0.15 2.5 + + + + + 1 1 1 1 + + + -1.14312 -15.679 0 0 0 -1.56921 + + + + + + 65.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 65.5 0.15 2.5 + + + + + 1 1 1 1 + + + 31.5103 -18.5427 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 64.1853 -20.8427 0 0 0 -1.5708 + + + + + + 5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5 0.15 2.5 + + + + + 1 1 1 1 + + + -64.3 -20.6939 0 0 0 -1.5708 + + + + + + 128.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 128.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1e-06 -23.1189 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + -37.9 23.0811 0 0 -0 0 + + + + + + 31.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 31.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4175 -2.72616 0 0 -0 1.5708 + + + + + + 30 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 30 0.15 2.5 + + + + + 1 1 1 1 + + + -20.4925 13.0738 0 0 -0 0 + + + + + + 8.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.75 0.15 2.5 + + + + + 1 1 1 1 + + + -5.56745 8.77384 0 0 0 -1.5708 + + + + + + 13.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 13.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1.23255 4.47384 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 8.03255 3.42384 0 0 0 -1.5708 + + + + + + 15.8243 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 15.8243 0.15 2.5 + + + + + 1 1 1 1 + + + 2.89068 -3.54071 0 0 0 -2.28642 + + + + + + 41.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 41.5 0.15 2.5 + + + + + 1 1 1 1 + + + -40.2 2.40609 0 0 -0 1.5708 + + + + + + 1 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1 0.15 2.5 + + + + + 1 1 1 1 + + + -2.6617 -9.34526 0 0 -0 2.87979 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.47221 -9.92808 0 0 0 -2.0944 + + + + + + 1.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.5 0.15 2.5 + + + + + 1 1 1 1 + + + -3.39492 -11.0982 0 0 0 -0.785398 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.12975 -11.7876 0 0 0 -2.35619 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.64188 -11.9998 0 0 -0 3.14159 + + + + + + 7.13355 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.13355 0.15 2.5 + + + + + 1 1 1 1 + + + -5.21192 -15.2524 0 0 0 -1.94306 + + + + + + 29 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 29 0.15 2.5 + + + + + 1 1 1 1 + + + -20.9925 -18.5262 0 0 -0 0 + + + + + + 7.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4657 19.3427 0 0 0 -1.5708 + + 1 + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png new file mode 100755 index 0000000..e7da3a0 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae new file mode 100755 index 0000000..ad2e324 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker0.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf new file mode 100755 index 0000000..bf35114 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf new file mode 100755 index 0000000..b258bab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.config new file mode 100755 index 0000000..0b661f4 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.config @@ -0,0 +1,17 @@ + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.sdf new file mode 100755 index 0000000..7cf00bf --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker0/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png new file mode 100755 index 0000000..44c03b4 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae new file mode 100755 index 0000000..08d0848 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker1.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf new file mode 100755 index 0000000..19cf0d7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf new file mode 100755 index 0000000..a3679dd --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.config new file mode 100755 index 0000000..7ef2b4a --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.config @@ -0,0 +1,17 @@ + + Marker1 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.sdf new file mode 100755 index 0000000..3155a67 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker1/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png new file mode 100755 index 0000000..2a203ef Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae new file mode 100755 index 0000000..98a2b82 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker10.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf new file mode 100755 index 0000000..8b8815d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf new file mode 100755 index 0000000..cb99cb3 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.config new file mode 100755 index 0000000..2f33aaa --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.config @@ -0,0 +1,17 @@ + + Marker10 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.sdf new file mode 100755 index 0000000..b3411e6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker10/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png new file mode 100755 index 0000000..2303c36 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae new file mode 100755 index 0000000..e575966 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker11.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf new file mode 100755 index 0000000..ed845f8 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf new file mode 100755 index 0000000..fd2e9f7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.config new file mode 100755 index 0000000..d3a850b --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.config @@ -0,0 +1,17 @@ + + Marker11 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.sdf new file mode 100755 index 0000000..cf63a96 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker11/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png new file mode 100755 index 0000000..704b9bb Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae new file mode 100755 index 0000000..95674a9 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker12.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf new file mode 100755 index 0000000..9c2663a --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf new file mode 100755 index 0000000..c19c0ad --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.config new file mode 100755 index 0000000..6938798 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.config @@ -0,0 +1,17 @@ + + Marker12 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.sdf new file mode 100755 index 0000000..689af0c --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker12/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png new file mode 100755 index 0000000..79a7b32 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae new file mode 100755 index 0000000..bf0a650 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker13.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf new file mode 100755 index 0000000..379023e --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf new file mode 100755 index 0000000..72f5259 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.config new file mode 100755 index 0000000..982712d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.config @@ -0,0 +1,17 @@ + + Marker13 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.sdf new file mode 100755 index 0000000..4df884a --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker13/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png new file mode 100755 index 0000000..3337cda Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae new file mode 100755 index 0000000..71cee4b --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker14.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf new file mode 100755 index 0000000..1ca8533 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf new file mode 100755 index 0000000..8dfa8a6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.config new file mode 100755 index 0000000..a247db7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.config @@ -0,0 +1,17 @@ + + Marker14 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.sdf new file mode 100755 index 0000000..8d512f7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker14/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png new file mode 100755 index 0000000..df61cc7 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae new file mode 100755 index 0000000..4100937 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker15.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf new file mode 100755 index 0000000..04fb049 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf new file mode 100755 index 0000000..b6e79cd --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.config new file mode 100755 index 0000000..6cfc9fe --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.config @@ -0,0 +1,17 @@ + + Marker15 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.sdf new file mode 100755 index 0000000..3da547f --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker15/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png new file mode 100755 index 0000000..84cea70 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae new file mode 100755 index 0000000..e309ae9 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker16.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf new file mode 100755 index 0000000..967d534 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf new file mode 100755 index 0000000..bc4eae9 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.config new file mode 100755 index 0000000..7e7ffb7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.config @@ -0,0 +1,17 @@ + + Marker16 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.sdf new file mode 100755 index 0000000..629d5a3 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker16/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png new file mode 100755 index 0000000..8ca4a9d Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae new file mode 100755 index 0000000..c5fd548 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker17.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf new file mode 100755 index 0000000..eec5c67 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf new file mode 100755 index 0000000..4012a53 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.config new file mode 100755 index 0000000..00af1b1 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.config @@ -0,0 +1,17 @@ + + Marker17 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.sdf new file mode 100755 index 0000000..48d7ab4 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker17/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png new file mode 100755 index 0000000..d2cb1ea Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae new file mode 100755 index 0000000..ecdc879 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker2.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf new file mode 100755 index 0000000..4afebd4 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf new file mode 100755 index 0000000..1433e1f --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.config new file mode 100755 index 0000000..fa54371 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.config @@ -0,0 +1,17 @@ + + Marker2 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.sdf new file mode 100755 index 0000000..21e4a9b --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker2/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png new file mode 100755 index 0000000..05a3281 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae new file mode 100755 index 0000000..27855f8 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker3.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf new file mode 100755 index 0000000..0d4a4bd --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf new file mode 100755 index 0000000..e4894a7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.config new file mode 100755 index 0000000..047cf17 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.config @@ -0,0 +1,17 @@ + + Marker3 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.sdf new file mode 100755 index 0000000..fe58f24 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker3/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png new file mode 100755 index 0000000..bc7830b Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae new file mode 100755 index 0000000..58d0649 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker4.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf new file mode 100755 index 0000000..2c67932 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf new file mode 100755 index 0000000..1dae276 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.config new file mode 100755 index 0000000..2e9fd7e --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.config @@ -0,0 +1,17 @@ + + Marker4 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.sdf new file mode 100755 index 0000000..cc4d203 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker4/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png new file mode 100755 index 0000000..5d3113c Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae new file mode 100755 index 0000000..67f2252 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker5.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf new file mode 100755 index 0000000..dd62bd7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf new file mode 100755 index 0000000..d7702ad --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.config new file mode 100755 index 0000000..0f0e870 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.config @@ -0,0 +1,17 @@ + + Marker5 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.sdf new file mode 100755 index 0000000..07db97d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker5/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png new file mode 100755 index 0000000..cb00f15 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae new file mode 100755 index 0000000..956fb0c --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker6.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf new file mode 100755 index 0000000..93e6a27 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf new file mode 100755 index 0000000..4d462fe --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.config new file mode 100755 index 0000000..c4f59c6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.config @@ -0,0 +1,17 @@ + + Marker6 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.sdf new file mode 100755 index 0000000..6aa9902 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker6/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png new file mode 100755 index 0000000..41ddc8b Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae new file mode 100755 index 0000000..f486fbf --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker7.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf new file mode 100755 index 0000000..d86bb12 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf new file mode 100755 index 0000000..266b6d7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.config new file mode 100755 index 0000000..b4af58e --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.config @@ -0,0 +1,17 @@ + + Marker7 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.sdf new file mode 100755 index 0000000..cb6db5f --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker7/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png new file mode 100755 index 0000000..dec84a2 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae new file mode 100755 index 0000000..0ec7bf6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker8.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf new file mode 100755 index 0000000..8f15643 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf new file mode 100755 index 0000000..cb4f7b6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.config new file mode 100755 index 0000000..317baae --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.config @@ -0,0 +1,17 @@ + + Marker8 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.sdf new file mode 100755 index 0000000..12ab587 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker8/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png new file mode 100755 index 0000000..358cb97 Binary files /dev/null and b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png differ diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae new file mode 100755 index 0000000..dedced0 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker9.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf new file mode 100755 index 0000000..875f1f1 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf new file mode 100755 index 0000000..e6adfe5 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.config b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.config new file mode 100755 index 0000000..4daf6ea --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.config @@ -0,0 +1,17 @@ + + Marker9 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.sdf b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.sdf new file mode 100755 index 0000000..ec27065 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/ar_tags/marker9/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/JET1/slam/f110_description/models/cone/model.config b/stack_master/config/JET1/slam/f110_description/models/cone/model.config new file mode 100755 index 0000000..9baefb6 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/cone/model.config @@ -0,0 +1,7 @@ + + + cone + 1.0 + model.sdf + A bright orange cone + diff --git a/stack_master/config/JET1/slam/f110_description/models/cone/model.sdf b/stack_master/config/JET1/slam/f110_description/models/cone/model.sdf new file mode 100755 index 0000000..e5875eb --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/cone/model.sdf @@ -0,0 +1,27 @@ + + + + + + + + model://racecar_description/meshes/cone.dae + + + + + + + model://racecar_description/meshes/cone.dae + + + + 1 0.2 0 1 + 1 0.2 0 1 + 0.1 0.1 0.1 1 + 0 0 0 0 + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/models/parking_1/model.config b/stack_master/config/JET1/slam/f110_description/models/parking_1/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/parking_1/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/stack_master/config/JET1/slam/f110_description/models/parking_1/model.sdf b/stack_master/config/JET1/slam/f110_description/models/parking_1/model.sdf new file mode 100755 index 0000000..e1da33e --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/parking_1/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + 1 + + diff --git a/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.config b/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.sdf b/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.sdf new file mode 100755 index 0000000..18d303b --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/models/walker_racecourse/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + 1 + + diff --git a/stack_master/config/JET1/slam/f110_description/package.xml b/stack_master/config/JET1/slam/f110_description/package.xml new file mode 100755 index 0000000..f0b5eff --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/package.xml @@ -0,0 +1,49 @@ + + + f110_description + 0.0.0 + The racecar_description package + + + + + ubuntu + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/urdf/F110.xacro b/stack_master/config/JET1/slam/f110_description/urdf/F110.xacro new file mode 100644 index 0000000..c8d1b61 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/urdf/F110.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/urdf/macros.xacro b/stack_master/config/JET1/slam/f110_description/urdf/macros.xacro new file mode 100755 index 0000000..73d4f94 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/urdf/macros.xacro @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/urdf/materials.xacro b/stack_master/config/JET1/slam/f110_description/urdf/materials.xacro new file mode 100755 index 0000000..49f4bc1 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/urdf/materials.xacro @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/urdf/racecar.gazebo b/stack_master/config/JET1/slam/f110_description/urdf/racecar.gazebo new file mode 100755 index 0000000..ab4ff78 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/urdf/racecar.gazebo @@ -0,0 +1,135 @@ + + + + + + + + + + + Gazebo/Blue + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + /racecar + gazebo_ros_control/DefaultRobotHWSim + + + + + + + Gazebo/Grey + + 0 0 0.0124 0 0 0 + true + 40 + + + + 1081 + 1 + -2.3561944902 + 2.3561944902 + + + + 0.1 + 10.0 + 0.01 + + + 0.0 + 0.01 + + + + /scan + laser + + + + + + + + + + 30.0 + + + 0.8709216071359963 + + 640 + 480 + B8G8R8 + + + 0.02 + 300 + + + gaussian + 0.0 + 0.007 + + + + true + 30.0 + /camera/zed + rgb/image_rect_color + rgb/camera_info + camera_link + 0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + + + + diff --git a/stack_master/config/JET1/slam/f110_description/urdf/racecar.xacro b/stack_master/config/JET1/slam/f110_description/urdf/racecar.xacro new file mode 100755 index 0000000..2c25e89 --- /dev/null +++ b/stack_master/config/JET1/slam/f110_description/urdf/racecar.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/static_transforms.launch.xml b/stack_master/config/JET1/static_transforms.launch.xml new file mode 100644 index 0000000..65639dd --- /dev/null +++ b/stack_master/config/JET1/static_transforms.launch.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/vesc.launch.xml b/stack_master/config/JET1/vesc.launch.xml new file mode 100644 index 0000000..1752d81 --- /dev/null +++ b/stack_master/config/JET1/vesc.launch.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/JET1/vesc.yaml b/stack_master/config/JET1/vesc.yaml new file mode 100644 index 0000000..ddf7743 --- /dev/null +++ b/stack_master/config/JET1/vesc.yaml @@ -0,0 +1,50 @@ + +# erpm (electrical rpm) = speed_to_erpm_gain * speed (meters / second) + speed_to_erpm_offset +speed_to_erpm_gain: 4614 +speed_to_erpm_offset: 0.0 + +tachometer_ticks_to_meters_gain: 0.00225 + +# servo smoother - limits rotation speed and smooths anything above limit +max_servo_speed: 3.2 # radians/second +servo_smoother_rate: 75.0 # messages/sec +servo_timeout: 0.1 # (stop publishing after inactive for) s + +# motor rpm smoother - limits acceleration and smooths anything above limit +# not used when sending current commands +max_acceleration: 2.5 # meters/second^2 +throttle_smoother_rate: 75.0 # messages/sec +motor_timeout: 0.1 # (stop publishing after inactive for) s + +# motor current smoother - limits current and filters with time constant +max_accel_current: 65 #A +max_brake_current: 50 #A () +current_time_constant: 0.05 #s +current_smoother_rate: 100.0 # messages/sec +current_timeout: 0.1 # s for correct interpolation the controller must publish at frequency higher than 1/this + +# servo value (0 to 1) = steering_angle_to_servo_gain * steering angle (radians) + steering_angle_to_servo_offset +steering_angle_to_servo_gain: -1.2135 +steering_angle_to_servo_offset: 0.47 +#0.5304 + +# publish odom to base link tf +vesc_to_odom/publish_tf: false + +# car wheelbase is about 25cm +wheelbase: .25 + +vesc_driver: + port: /dev/sensors/vesc + duty_cycle_min: 0.0 + duty_cycle_max: 0.0 + current_min: 0.0 + current_max: 100.0 + brake_min: -20000.0 + brake_max: 200000.0 + speed_min: -23250 + speed_max: 23250 + position_min: 0.0 + position_max: 0.0 + servo_min: 0.15 + servo_max: 0.85 diff --git a/stack_master/config/JET1/vesc_new.yaml b/stack_master/config/JET1/vesc_new.yaml new file mode 100644 index 0000000..71b47e0 --- /dev/null +++ b/stack_master/config/JET1/vesc_new.yaml @@ -0,0 +1,51 @@ + +# erpm (electrical rpm) = speed_to_erpm_gain * speed (meters / second) + speed_to_erpm_offset +speed_to_erpm_gain: 4614 +speed_to_erpm_offset: 0.0 + +tachometer_ticks_to_meters_gain: 0.00225 + +# servo smoother - limits rotation speed and smooths anything above limit +max_servo_speed: 3.2 # radians/second +servo_smoother_rate: 75.0 # messages/sec +servo_timeout: 0.1 # (stop publishing after inactive for) s + +# motor rpm smoother - limits acceleration and smooths anything above limit +# not used when sending current commands +max_acceleration: 2.5 # meters/second^2 +throttle_smoother_rate: 75.0 # messages/sec +motor_timeout: 0.1 # (stop publishing after inactive for) s + +# motor current smoother - limits current and filters with time constant +max_accel_current: 65 #A +max_brake_current: 50 #A () +current_time_constant: 0.05 #s +current_smoother_rate: 100.0 # messages/sec +current_timeout: 0.1 # s for correct interpolation the controller must publish at frequency higher than 1/this + +# servo value (0 to 1) = steering_angle_to_servo_gain * steering angle (radians) + steering_angle_to_servo_offset +steering_angle_to_servo_gain: -1.2135 +#steering_angle_to_servo_offset: 0.5304 +steering_angle_to_servo_offset: 0.5 + + +# publish odom to base link tf +vesc_to_odom/publish_tf: false + +# car wheelbase is about 25cm +wheelbase: .25 + +vesc_driver: + port: /dev/ttyACM1 + duty_cycle_min: 0.0 + duty_cycle_max: 0.5 + current_min: 0.0 + current_max: 100.0 + brake_min: -20000.0 + brake_max: 200000.0 + speed_min: -33250 + speed_max: 33250 + position_min: 0.0 + position_max: 0.0 + servo_min: 0.15 + servo_max: 0.85 diff --git a/stack_master/config/NUC2/BO_ranges.yaml b/stack_master/config/NUC2/BO_ranges.yaml new file mode 100644 index 0000000..656b995 --- /dev/null +++ b/stack_master/config/NUC2/BO_ranges.yaml @@ -0,0 +1,36 @@ + +l1_param: + t_clip_min: + lower_bound: 0.6 + upper_bound: 0.9 + m_l1: + lower_bound: 0.3 + upper_bound: 0.6 + q_l1: + lower_bound: -0.2 + upper_bound: -0.1 + +Sector0: + lower_bound: 0.75 + upper_bound: 0.79 +Sector1: + lower_bound: 0.75 + upper_bound: 0.79 +Sector2: + lower_bound: 0.75 + upper_bound: 0.79 +Sector3: + lower_bound: 0.75 + upper_bound: 0.79 +Sector4: + lower_bound: 0.75 + upper_bound: 0.79 +Sector5: + lower_bound: 0.75 + upper_bound: 0.79 +Sector6: + lower_bound: 0.75 + upper_bound: 0.79 + + + diff --git a/stack_master/config/NUC2/NUC2_linear.yaml b/stack_master/config/NUC2/NUC2_linear.yaml new file mode 100644 index 0000000..f803fc2 --- /dev/null +++ b/stack_master/config/NUC2/NUC2_linear.yaml @@ -0,0 +1,20 @@ +C_0d: 0.48 +C_0v: 100 +C_Sf: 5.035741752330491 +C_Sr: 9.618871913816136 +C_acc: 3.2 +C_d: -1.1 +C_dec: 3.2 +C_v: 20 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC2 +mu: 1.0 +tau_steer: 0.15779476 +tire_model: linear diff --git a/stack_master/config/NUC2/NUC2_pacejka.yaml b/stack_master/config/NUC2/NUC2_pacejka.yaml new file mode 100644 index 0000000..633a4ad --- /dev/null +++ b/stack_master/config/NUC2/NUC2_pacejka.yaml @@ -0,0 +1,27 @@ +C_0d: 0.48 +C_Pf: +- 4.798521440254997 +- 2.1640281784621833 +- 0.6502296853018044 +- 0.3732212044732381 +C_Pr: +- 19.999999999999996 +- 1.4999999999999998 +- 0.6184183350099146 +- 1.1322308905491715e-16 +C_R: 9.618150720869203 +C_acc: 0.35909931926497446 +C_d: -1.1 +C_dec: 3.2 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC2 +mu: 1 +tau_steer: 0.15779476 +tire_model: pacejka diff --git a/stack_master/config/NUC2/high_level_mux.yaml b/stack_master/config/NUC2/high_level_mux.yaml new file mode 100644 index 0000000..f7bf481 --- /dev/null +++ b/stack_master/config/NUC2/high_level_mux.yaml @@ -0,0 +1,38 @@ +# Individual subscriber configuration: +# name: Source name +# topic: The topic that provides ackermann_cmd messages +# timeout: Time in seconds without incoming messages to consider this topic inactive +# priority: Priority: an UNIQUE unsigned integer from 0 (lowest) to MAX_INT +# short_desc: Short description (optional) + +subscribers: + - name: "FTG" + topic: "input/ctrl" + timeout: 0.2 + priority: 20 + short_desc: "Input for autonomous navigation, highest priority" + + - name: "Nav_1" + topic: "input/nav_1" + timeout: 0.2 + priority: 15 + short_desc: "Input for autonomous navigation" + + - name: "Nav_2" + topic: "input/nav_2" + timeout: 0.2 + priority: 10 + short_desc: "Input for autonomous navigation" + + - name: "Nav_3" + topic: "input/nav_3" + timeout: 0.2 + priority: 5 + short_desc: "Input for autonomous navigation" + + - name: "Default" + topic: "input/default" + timeout: 1.0 + priority: 0 + short_desc: "Default input, lowest priority" +publisher: "output" \ No newline at end of file diff --git a/stack_master/config/NUC2/joy_teleop.launch.xml b/stack_master/config/NUC2/joy_teleop.launch.xml new file mode 100644 index 0000000..41bbca9 --- /dev/null +++ b/stack_master/config/NUC2/joy_teleop.launch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/joy_teleop.yaml b/stack_master/config/NUC2/joy_teleop.yaml new file mode 100644 index 0000000..4b80e4b --- /dev/null +++ b/stack_master/config/NUC2/joy_teleop.yaml @@ -0,0 +1,52 @@ +joy_node: + dev: /dev/input/js0 + deadzone: 0.3 + autorepeat_rate: 20 + coalesce_interval: 0.01 + +teleop: + # Default mode - Stop for safety + default: + type: topic + is_default: true + message_type: ackermann_msgs/AckermannDriveStamped + topic_name: low_level/ackermann_cmd_mux/input/teleop + message_value: + - + target: drive.speed + value: 0.0 + - + target: drive.steering_angle + value: 0.0 + + # Enable Human control by holding Left Bumper + human_control: + type: topic + message_type: ackermann_msgs/AckermannDriveStamped + topic_name: low_level/ackermann_cmd_mux/input/teleop + deadman_buttons: [4] + axis_mappings: + - + axis: 1 + target: drive.speed + scale: 4.0 # joystick will command plus or minus 2 meters / second + offset: 0.0 + - + axis: 3 + target: drive.steering_angle + scale: 0.34 # joystick will command plus or minus ~20 degrees steering angle + offset: 0.0 + + # Enable autonomous control by pressing right bumper + # This switch causes the joy_teleop to stop sending messages to input/teleop + # And send messages to /dev/null (an unused ROS topic) + autonomous_control: + type: topic + message_type: std_msgs/Int8 + topic_name: /dev/null + deadman_buttons: [5] + message_value: + - + target: data + value: 0 + diff --git a/stack_master/config/NUC2/l1_params.yaml b/stack_master/config/NUC2/l1_params.yaml new file mode 100644 index 0000000..ee1ff8e --- /dev/null +++ b/stack_master/config/NUC2/l1_params.yaml @@ -0,0 +1,31 @@ +## L1 Parameters + +t_clip_min: 0.8 +t_clip_max: 5 +m_l1: 0.6 +q_l1: -0.165 +speed_lookahead: 0.25 +lat_err_coeff: 1 +# acc_scaler_for_steer_safe: 1.2 +# dec_scaler_for_steer_safe: 0.9 +# acc_scaler_for_steer_aggressive: 1.1 +acc_scaler_for_steer: 1.2 +dec_scaler_for_steer: 0.9 + +start_scale_speed: 7.0 +end_scale_speed: 8.0 +downscale_factor: 0.2 + +# increasing this to 0.20 AT MOST can make the car faster on the laptime but cut more corners +speed_lookahead_for_steer: 0.0 # safe/agg 0.0/0.175 + + +## Trailing Controller Parameters +prioritize_dyn: True +trailing_gap: 2 # Distance in meters or gap in seconds, depending on mode +trailing_p_gain: 1 +trailing_i_gain: 0.0 +trailing_d_gain: 0.2 +blind_trailing_speed: 1.5 + + diff --git a/stack_master/config/NUC2/low_level_mux.yaml b/stack_master/config/NUC2/low_level_mux.yaml new file mode 100644 index 0000000..443b98c --- /dev/null +++ b/stack_master/config/NUC2/low_level_mux.yaml @@ -0,0 +1,27 @@ +# Individual subscriber configuration: +# name: Source name +# topic: The topic that provides ackermann_cmd messages +# timeout: Time in seconds without incoming messages to consider this topic inactive +# priority: Priority: an UNIQUE unsigned integer from 0 (lowest) to MAX_INT +# short_desc: Short description (optional) + +subscribers: + - name: "Teleoperation" + topic: "input/teleop" + timeout: 0.2 + priority: 10 + short_desc: "Input for human teleoperation (joystick). Highest priority." + + - name: "Safety" + topic: "input/safety" + timeout: 0.2 + priority: 5 + short_desc: "Input for safety monitor." + + - name: "Navigation" + topic: "input/navigation" + timeout: 0.2 + priority: 0 + short_desc: "Input for autonomous navigation" + +publisher: "output" \ No newline at end of file diff --git a/stack_master/config/NUC2/sensors.launch.xml b/stack_master/config/NUC2/sensors.launch.xml new file mode 100644 index 0000000..e0e808f --- /dev/null +++ b/stack_master/config/NUC2/sensors.launch.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/sensors.yaml b/stack_master/config/NUC2/sensors.yaml new file mode 100644 index 0000000..0f66edf --- /dev/null +++ b/stack_master/config/NUC2/sensors.yaml @@ -0,0 +1,7 @@ + +laser_node: + ip_address: 192.168.0.10 + device: /dev/sensors/hokuyo + +imu_node: + device: /dev/imu diff --git a/stack_master/config/NUC2/slam/f110_2d.lua b/stack_master/config/NUC2/slam/f110_2d.lua new file mode 100644 index 0000000..e751cf0 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_2d.lua @@ -0,0 +1,52 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 3.0 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.1 + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 100 +POSE_GRAPH.optimize_every_n_nodes = 20 + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0 +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0 + +return options diff --git a/stack_master/config/NUC2/slam/f110_2d_loc.lua b/stack_master/config/NUC2/slam/f110_2d_loc.lua new file mode 100644 index 0000000..8f2c6a1 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_2d_loc.lua @@ -0,0 +1,60 @@ +include "map_builder.lua" +include "trajectory_builder.lua" + +options = { + map_builder = MAP_BUILDER, + trajectory_builder = TRAJECTORY_BUILDER, + map_frame = "map", + tracking_frame = "base_link", + published_frame = "base_link", --Change to "odom" for REP105 compliance (but worse performance) + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_nav_sat = false, + num_laser_scans = 1, + num_multi_echo_laser_scans = 0, + num_subdivisions_per_laser_scan = 1, + num_point_clouds = 0, + lookup_transform_timeout_sec = 0.2, + submap_publish_period_sec = 0.3, + pose_publish_period_sec = 5e-3, + trajectory_publish_period_sec = 30e-3, + rangefinder_sampling_ratio = 1., + odometry_sampling_ratio = 0.5, + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + publish_to_tf = true, + use_landmarks = false, + publish_tracked_pose = true, + publish_frame_projected_to_2d = true, + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true +MAP_BUILDER.use_trajectory_builder_3d = false +MAP_BUILDER.num_background_threads = 4.0 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.max_range = 25.0 +TRAJECTORY_BUILDER_2D.min_range = 0.05 +TRAJECTORY_BUILDER.pure_localization_trimmer = { + max_submaps_to_keep = 5, +} + +-- might be able to optimize these parameters +-- see: http://google-cartographer-ros.readthedocs.io/en/latest/tuning.html +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 80 +POSE_GRAPH.optimize_every_n_nodes = 5 +POSE_GRAPH.global_sampling_ratio = 0.05 +POSE_GRAPH.constraint_builder.sampling_ratio = 0.05 + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight + +TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight = 0.2 * TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight + +POSE_GRAPH.optimization_problem.odometry_rotation_weight = 0 +POSE_GRAPH.optimization_problem.odometry_translation_weight = 0 +--POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight = 1.25 * POSE_GRAPH.optimization_problem.local_slam_pose_rotation_weight + + +return options + diff --git a/stack_master/config/NUC2/slam/f110_description/CMakeLists.txt b/stack_master/config/NUC2/slam/f110_description/CMakeLists.txt new file mode 100755 index 0000000..1ef2615 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/CMakeLists.txt @@ -0,0 +1,181 @@ +cmake_minimum_required(VERSION 2.8.3) +project(f110_description) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a run_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs # Or other packages containing msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a run_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if you package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES racecar_description +# CATKIN_DEPENDS other_catkin_pkg +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +# include_directories(include) + +## Declare a C++ library +# add_library(racecar_description +# src/${PROJECT_NAME}/racecar_description.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(racecar_description ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +# add_executable(racecar_description_node src/racecar_description_node.cpp) + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(racecar_description_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(racecar_description_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS racecar_description racecar_description_node +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_racecar_description.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/chassis.STL b/stack_master/config/NUC2/slam/f110_description/meshes/chassis.STL new file mode 100755 index 0000000..08b269e Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/chassis.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/chassis.dae b/stack_master/config/NUC2/slam/f110_description/meshes/chassis.dae new file mode 100755 index 0000000..0ac16c7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/chassis.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:50:44 2016 GMT + Tue Jan 19 19:50:44 2016 GMT + Y_UP + + + + + + -0.0384776 -0.0776537 0.03 -0.0276537 0.0884776 0.03 0.255 -0.07 0.03 0.242654 -0.0884776 0.03 0.363478 0.0476537 0.03 0.249142 0.0841421 0.03 0.242654 0.0884776 0.03 0.345 0.06 0.03 0.255 -0.06 0.03 0.345 -0.06 0.03 0.352654 -0.0584776 0.03 0.352654 -0.0584776 -0.03 0.345 -0.06 -0.03 0.363478 0.0476537 -0.03 -0.02 0.09 -0.03 0.255 -0.06 -0.03 -0.0384776 0.0776537 -0.03 -0.04 0.07 -0.03 0.242654 0.0884776 -0.03 0.359142 0.0541421 -0.03 0.352654 0.0584776 -0.03 0.235 -0.09 -0.03 0.253478 -0.0776537 -0.03 0.242654 -0.0884776 -0.03 -0.0341421 -0.0841421 -0.03 -0.0384776 -0.0776537 -0.03 -0.04 -0.07 -0.03 -0.02 -0.09 -0.03 0.255 0.06 -0.03 0.255 0.07 -0.03 0.235 0.09 -0.03 0.253478 0.0776537 -0.03 0.345 0.06 -0.03 -0.005 -0.09 0 -0.00433013 -0.09 0.0025 -0.02 -0.09 0.03 0 -0.09 0.005 0.0025 -0.09 0.00433013 0.235 -0.09 0.03 0.005 -0.09 0 0.00433013 -0.09 -0.0025 0.0025 -0.09 -0.00433013 0.365 0.04 -0.03 -0.04 0.07 0.03 -0.00433013 0.09 -0.0025 -0.005 0.09 6.93889e-18 -0.00433013 0.09 0.0025 0 0.09 -0.005 0.235 0.09 0.03 -0.02 0.09 0.03 0.0025 0.09 0.00433013 0 0.09 0.005 0.0025 0.09 -0.00433013 0.00433013 0.09 -0.0025 0.005 0.09 0 0.00433013 0.09 0.0025 0.32 0.06 3.46945e-18 0.3275 0.06 -0.00433013 0.33 0.06 0 0.255 0.06 0.03 0.32067 0.06 0.0025 0.32067 0.06 -0.0025 0.325 0.06 -0.005 0.33 -0.06 0 0.32933 -0.06 0.0025 0.32 -0.06 0 0.32067 -0.06 0.0025 0.3225 -0.06 0.00433013 0.3275 -0.06 0.00433013 0.325 -0.06 -0.005 -0.0384776 0.0776537 0.03 -0.0341421 0.0841421 0.03 -0.0341421 0.0841421 -0.03 -0.0276537 0.0884776 -0.03 -0.04 -0.07 0.03 -0.0341421 -0.0841421 0.03 -0.0276537 -0.0884776 -0.03 -0.0276537 -0.0884776 0.03 0.249142 -0.0841421 -0.03 0.249142 -0.0841421 0.03 0.253478 -0.0776537 0.03 0.255 -0.07 -0.03 0.359142 -0.0541421 0.03 0.359142 -0.0541421 -0.03 0.363478 -0.0476537 -0.03 0.363478 -0.0476537 0.03 0.365 -0.04 -0.03 0.365 -0.04 0.03 0.352654 0.0584776 0.03 0.359142 0.0541421 0.03 0.365 0.04 0.03 0.255 0.07 0.03 0.253478 0.0776537 0.03 0.249142 0.0841421 -0.03 -0.00433013 0.1 0.0025 6.12323e-19 0.1 0.005 0.0025 0.1 0.00433013 -0.00433013 0.1 -0.0025 0.00433013 0.1 -0.0025 0.0025 0.1 -0.00433013 0.00433013 0.1 0.0025 0 0.1 0 0.005 0.1 -1.41638e-18 0.005 0.09 -1.41638e-18 2.83277e-18 0.09 0.005 2.83277e-18 0.1 0.005 -0.0025 0.1 0.00433013 -0.0025 0.09 0.00433013 -0.005 0.1 5.35938e-18 -0.005 0.09 5.35938e-18 -0.0025 0.1 -0.00433013 -0.0025 0.09 -0.00433013 0 0.1 -0.005 0.0025 -0.1 -0.00433013 0.00433013 -0.1 -0.0025 0.005 -0.09 -1.41638e-18 0.00433013 -0.09 0.0025 0.0025 -0.1 0.00433013 2.83277e-18 -0.09 0.005 2.83277e-18 -0.1 0.005 -0.0025 -0.09 0.00433013 -0.005 -0.09 5.35938e-18 -0.00433013 -0.09 -0.0025 -0.005 -0.1 5.35938e-18 -0.0025 -0.09 -0.00433013 0 -0.09 -0.005 1.83697e-18 -0.1 0.005 -0.0025 -0.1 0.00433013 0.005 -0.1 -1.41638e-18 0 -0.1 0 0.00433013 -0.1 0.0025 -0.00433013 -0.1 -0.0025 -0.0025 -0.1 -0.00433013 0 -0.1 -0.005 -0.00433013 -0.1 0.0025 0.3275 -0.1 0.00433013 0.3275 -0.1 -0.00433013 0.32933 -0.1 0.0025 0.3225 -0.1 -0.00433013 0.325 -0.1 0 0.32067 -0.1 0.0025 0.32 -0.1 5.35938e-18 0.3275 -0.06 -0.00433013 0.32933 -0.06 -0.0025 0.32933 -0.1 -0.0025 0.33 -0.06 -1.41638e-18 0.33 -0.1 -1.41638e-18 0.325 -0.06 0.005 0.325 -0.1 0.005 0.3225 -0.1 0.00433013 0.32 -0.06 5.35938e-18 0.32067 -0.06 -0.0025 0.3225 -0.06 -0.00433013 0.32067 -0.1 -0.0025 0.325 -0.1 -0.005 0.32933 0.06 -0.0025 0.33 0.06 -1.41638e-18 0.32933 0.06 0.0025 0.32933 0.1 0.0025 0.3275 0.1 0.00433013 0.3275 0.06 0.00433013 0.325 0.06 0.005 0.3225 0.1 0.00433013 0.3225 0.06 0.00433013 0.32 0.06 5.35938e-18 0.32067 0.1 -0.0025 0.3225 0.06 -0.00433013 0.3225 0.1 -0.00433013 0.3275 0.1 -0.00433013 0.325 0.1 0.005 0.325 0.1 0 0.32 0.1 5.35938e-18 0.32067 0.1 0.0025 0.32933 0.1 -0.0025 0.325 0.1 -0.005 0.33 0.1 -1.41638e-18 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.980785 0.19509 0 -0.980785 0.19509 0 -0.83147 0.55557 0 -0.83147 0.55557 0 -0.55557 0.83147 0 -0.55557 0.83147 0 -0.195091 0.980785 0 -0.195091 0.980785 0 -0.980785 -0.19509 0 -0.980785 -0.19509 0 -0.83147 -0.55557 0 -0.83147 -0.55557 0 -0.55557 -0.83147 0 -0.55557 -0.83147 0 -0.195091 -0.980785 0 -0.195091 -0.980785 0 0.195091 -0.980785 0 0.195091 -0.980785 0 0.55557 -0.83147 0 0.55557 -0.83147 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980786 -0.195088 0 0.980786 -0.195088 0 0.19509 -0.980785 0 0.19509 -0.980785 0 0.555572 -0.831469 0 0.555572 -0.831469 0 0.831469 -0.555571 0 0.831469 -0.555571 0 0.980785 -0.195092 0 0.980785 -0.195092 0 0.19509 0.980785 0 0.19509 0.980785 0 0.555572 0.831469 0 0.555572 0.831469 0 0.831469 0.555571 0 0.831469 0.555571 0 0.980785 0.195092 0 0.980785 0.195092 0 0.980786 0.195088 0 0.980786 0.195088 0 0.831469 0.555571 0 0.831469 0.555571 0 0.55557 0.83147 0 0.55557 0.83147 0 0.195091 0.980785 0 0.195091 0.980785 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707107 0 -0.707107 0.707107 0 -0.707107 0.965926 0 -0.258819 0.965926 0 -0.258819 0.965926 0 0.258819 0.965926 0 0.258819 0.707107 0 0.707107 0.707107 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707107 0 0.707107 -0.707107 0 0.707107 -0.965926 0 0.258819 -0.965926 0 0.258819 -0.965926 0 -0.258819 -0.965926 0 -0.258819 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0.258819 0 -0.965926 0.707106 0 -0.707107 0.707106 0 -0.707107 0.965924 0 -0.258828 0.965924 0 -0.258828 0.965924 0 0.258828 0.965924 0 0.258828 0.707106 0 0.707107 0.707106 0 0.707107 0.258819 0 0.965926 0.258819 0 0.965926 -0.258819 0 0.965926 -0.258819 0 0.965926 -0.707106 0 0.707107 -0.707106 0 0.707107 -0.965926 0 0.258817 -0.965926 0 0.258817 -0.965926 0 -0.258817 -0.965926 0 -0.258817 -0.707106 0 -0.707107 -0.707106 0 -0.707107 -0.258819 0 -0.965926 -0.258819 0 -0.965926 0.258819 0 -0.965926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 0.282353 0.494118 0.807843 1 + + + + + + + + + + + + + + + + +

79 79 0 80 80 0 2 2 0 74 74 1 2 2 1 43 43 1 43 43 2 2 2 2 8 8 2 87 87 3 90 90 3 7 7 3 74 74 4 0 0 4 75 75 4 79 79 5 2 2 5 3 3 5 70 70 6 43 43 6 71 71 6 71 71 7 43 43 7 8 8 7 71 71 8 8 8 8 1 1 8 1 1 9 8 8 9 49 49 9 75 75 10 77 77 10 74 74 10 74 74 11 77 77 11 35 35 11 74 74 12 35 35 12 2 2 12 2 2 13 35 35 13 38 38 13 2 2 14 38 38 14 3 3 14 88 88 15 7 7 15 89 89 15 89 89 16 7 7 16 90 90 16 89 89 17 90 90 17 4 4 17 5 5 18 6 6 18 92 92 18 92 92 19 6 6 19 48 48 19 92 92 20 48 48 20 91 91 20 91 91 21 48 48 21 49 49 21 91 91 22 49 49 22 59 59 22 59 59 23 49 49 23 8 8 23 59 59 24 8 8 24 7 7 24 7 7 25 8 8 25 9 9 25 7 7 26 9 9 26 87 87 26 87 87 27 9 9 27 10 10 27 87 87 28 10 10 28 85 85 28 85 85 29 10 10 29 82 82 29 83 83 30 11 11 30 12 12 30 28 28 31 32 32 31 12 12 31 19 19 32 13 13 32 42 42 32 81 81 33 21 21 33 15 15 33 15 15 34 21 21 34 26 26 34 15 15 35 26 26 35 17 17 35 73 73 36 14 14 36 72 72 36 72 72 37 14 14 37 15 15 37 72 72 38 15 15 38 16 16 38 16 16 39 15 15 39 17 17 39 30 30 40 18 18 40 93 93 40 19 19 41 42 42 41 20 20 41 81 81 42 22 22 42 21 21 42 21 21 43 22 22 43 78 78 43 21 21 44 78 78 44 23 23 44 24 24 45 25 25 45 76 76 45 76 76 46 25 25 46 26 26 46 76 76 47 26 26 47 27 27 47 27 27 48 26 26 48 21 21 48 12 12 49 15 15 49 28 28 49 28 28 50 15 15 50 14 14 50 28 28 51 14 14 51 29 29 51 29 29 52 14 14 52 30 30 52 29 29 53 30 30 53 31 31 53 31 31 54 30 30 54 93 93 54 84 84 55 83 83 55 86 86 55 86 86 56 83 83 56 12 12 56 86 86 57 12 12 57 42 42 57 42 42 58 12 12 58 32 32 58 42 42 59 32 32 59 20 20 59 21 21 60 41 41 60 27 27 60 27 27 61 41 41 61 125 125 61 27 27 62 125 125 62 124 124 62 124 124 63 122 122 63 27 27 63 27 27 64 122 122 64 33 33 64 27 27 65 33 33 65 35 35 65 35 35 66 33 33 66 34 34 66 34 34 67 120 120 67 35 35 67 35 35 68 120 120 68 36 36 68 35 35 69 36 36 69 38 38 69 38 38 70 36 36 70 37 37 70 37 37 71 116 116 71 38 38 71 38 38 72 116 116 72 39 39 72 38 38 73 39 39 73 21 21 73 21 21 74 39 39 74 40 40 74 21 21 75 40 40 75 41 41 75 86 86 76 42 42 76 87 87 76 87 87 77 42 42 77 90 90 77 17 17 78 26 26 78 43 43 78 43 43 79 26 26 79 74 74 79 44 44 80 14 14 80 45 45 80 45 45 81 14 14 81 49 49 81 45 45 82 49 49 82 46 46 82 46 46 83 49 49 83 107 107 83 52 52 84 30 30 84 47 47 84 47 47 85 30 30 85 14 14 85 47 47 86 14 14 86 111 111 86 111 111 87 14 14 87 44 44 87 48 48 88 50 50 88 49 49 88 49 49 89 50 50 89 51 51 89 49 49 90 51 51 90 107 107 90 52 52 91 53 53 91 30 30 91 30 30 92 53 53 92 54 54 92 30 30 93 54 54 93 48 48 93 48 48 94 54 54 94 55 55 94 48 48 95 55 55 95 50 50 95 60 60 96 56 56 96 59 59 96 59 59 97 56 56 97 28 28 97 57 57 98 155 155 98 32 32 98 32 32 99 155 155 99 58 58 99 32 32 100 58 58 100 7 7 100 7 7 101 58 58 101 157 157 101 157 157 102 160 160 102 7 7 102 7 7 103 160 160 103 161 161 103 7 7 104 161 161 104 59 59 104 59 59 105 161 161 105 163 163 105 59 59 106 163 163 106 60 60 106 56 56 107 61 61 107 28 28 107 28 28 108 61 61 108 166 166 108 28 28 109 166 166 109 32 32 109 32 32 110 166 166 110 62 62 110 32 32 111 62 62 111 57 57 111 91 91 112 59 59 112 29 29 112 29 29 113 59 59 113 28 28 113 81 81 114 15 15 114 2 2 114 2 2 115 15 15 115 8 8 115 65 65 116 8 8 116 151 151 116 151 151 117 8 8 117 15 15 117 143 143 118 12 12 118 63 63 118 63 63 119 12 12 119 9 9 119 63 63 120 9 9 120 64 64 120 64 64 121 9 9 121 68 68 121 65 65 122 66 66 122 8 8 122 8 8 123 66 66 123 67 67 123 8 8 124 67 67 124 9 9 124 9 9 125 67 67 125 147 147 125 9 9 126 147 147 126 68 68 126 143 143 127 142 142 127 12 12 127 12 12 128 142 142 128 69 69 128 12 12 129 69 69 129 15 15 129 15 15 130 69 69 130 152 152 130 15 15 131 152 152 131 151 151 131 17 17 132 43 43 132 70 70 132 17 17 133 70 70 133 16 16 133 16 16 134 70 70 134 71 71 134 16 16 135 71 71 135 72 72 135 72 72 136 71 71 136 1 1 136 72 72 137 1 1 137 73 73 137 73 73 138 1 1 138 49 49 138 73 73 139 49 49 139 14 14 139 74 74 140 26 26 140 25 25 140 74 74 141 25 25 141 0 0 141 0 0 142 25 25 142 24 24 142 0 0 143 24 24 143 75 75 143 75 75 144 24 24 144 76 76 144 75 75 145 76 76 145 77 77 145 77 77 146 76 76 146 27 27 146 77 77 147 27 27 147 35 35 147 38 38 148 21 21 148 23 23 148 38 38 149 23 23 149 3 3 149 3 3 150 23 23 150 78 78 150 3 3 151 78 78 151 79 79 151 79 79 152 78 78 152 22 22 152 79 79 153 22 22 153 80 80 153 80 80 154 22 22 154 81 81 154 80 80 155 81 81 155 2 2 155 9 9 156 12 12 156 11 11 156 9 9 157 11 11 157 10 10 157 10 10 158 11 11 158 83 83 158 10 10 159 83 83 159 82 82 159 82 82 160 83 83 160 84 84 160 82 82 161 84 84 161 85 85 161 85 85 162 84 84 162 86 86 162 85 85 163 86 86 163 87 87 163 32 32 164 7 7 164 88 88 164 32 32 165 88 88 165 20 20 165 20 20 166 88 88 166 89 89 166 20 20 167 89 89 167 19 19 167 19 19 168 89 89 168 4 4 168 19 19 169 4 4 169 13 13 169 13 13 170 4 4 170 90 90 170 13 13 171 90 90 171 42 42 171 91 91 172 29 29 172 31 31 172 91 91 173 31 31 173 92 92 173 92 92 174 31 31 174 93 93 174 92 92 175 93 93 175 5 5 175 5 5 176 93 93 176 18 18 176 5 5 177 18 18 177 6 6 177 6 6 178 18 18 178 30 30 178 6 6 179 30 30 179 48 48 179 94 94 180 106 106 180 101 101 180 101 101 181 106 106 181 95 95 181 101 101 182 95 95 182 96 96 182 110 110 183 97 97 183 101 101 183 101 101 184 97 97 184 108 108 184 101 101 185 108 108 185 94 94 185 98 98 186 99 99 186 101 101 186 101 101 187 99 99 187 112 112 187 101 101 188 112 112 188 110 110 188 96 96 189 100 100 189 101 101 189 101 101 190 100 100 190 102 102 190 101 101 191 102 102 191 98 98 191 47 47 192 99 99 192 52 52 192 52 52 193 99 99 193 98 98 193 52 52 194 98 98 194 53 53 194 53 53 195 98 98 195 102 102 195 53 53 196 102 102 196 103 103 196 103 103 197 102 102 197 100 100 197 103 103 198 100 100 198 55 55 198 55 55 199 100 100 199 96 96 199 55 55 200 96 96 200 50 50 200 50 50 201 96 96 201 105 105 201 50 50 202 105 105 202 104 104 202 104 104 203 105 105 203 106 106 203 104 104 204 106 106 204 107 107 204 107 107 205 106 106 205 94 94 205 107 107 206 94 94 206 46 46 206 46 46 207 94 94 207 108 108 207 46 46 208 108 108 208 109 109 208 109 109 209 108 108 209 97 97 209 109 109 210 97 97 210 44 44 210 44 44 211 97 97 211 110 110 211 44 44 212 110 110 212 111 111 212 111 111 213 110 110 213 112 112 213 111 111 214 112 112 214 47 47 214 47 47 215 112 112 215 99 99 215 133 133 216 41 41 216 113 113 216 113 113 217 41 41 217 40 40 217 113 113 218 40 40 218 114 114 218 114 114 219 40 40 219 115 115 219 114 114 220 115 115 220 128 128 220 128 128 221 115 115 221 116 116 221 128 128 222 116 116 222 130 130 222 130 130 223 116 116 223 37 37 223 130 130 224 37 37 224 117 117 224 117 117 225 37 37 225 118 118 225 117 117 226 118 118 226 119 119 226 119 119 227 118 118 227 120 120 227 119 119 228 120 120 228 127 127 228 127 127 229 120 120 229 34 34 229 127 127 230 34 34 230 134 134 230 134 134 231 34 34 231 121 121 231 134 134 232 121 121 232 123 123 232 123 123 233 121 121 233 122 122 233 123 123 234 122 122 234 131 131 234 131 131 235 122 122 235 124 124 235 131 131 236 124 124 236 132 132 236 132 132 237 124 124 237 125 125 237 132 132 238 125 125 238 133 133 238 133 133 239 125 125 239 41 41 239 130 130 240 117 117 240 129 129 240 129 129 241 117 117 241 126 126 241 129 129 242 126 126 242 127 127 242 113 113 243 114 114 243 129 129 243 129 129 244 114 114 244 128 128 244 129 129 245 128 128 245 130 130 245 131 131 246 132 132 246 129 129 246 129 129 247 132 132 247 133 133 247 129 129 248 133 133 248 113 113 248 127 127 249 134 134 249 129 129 249 129 129 250 134 134 250 123 123 250 129 129 251 123 123 251 131 131 251 137 137 252 135 135 252 139 139 252 139 139 253 135 135 253 148 148 253 139 139 254 148 148 254 149 149 254 136 136 255 144 144 255 139 139 255 139 139 256 144 144 256 146 146 256 139 139 257 146 146 257 137 137 257 153 153 258 138 138 258 139 139 258 139 139 259 138 138 259 154 154 259 139 139 260 154 154 260 136 136 260 149 149 261 140 140 261 139 139 261 139 139 262 140 140 262 141 141 262 139 139 263 141 141 263 153 153 263 154 154 264 142 142 264 136 136 264 136 136 265 142 142 265 143 143 265 136 136 266 143 143 266 144 144 266 144 144 267 143 143 267 145 145 267 144 144 268 145 145 268 146 146 268 146 146 269 145 145 269 64 64 269 146 146 270 64 64 270 137 137 270 137 137 271 64 64 271 68 68 271 137 137 272 68 68 272 135 135 272 135 135 273 68 68 273 147 147 273 135 135 274 147 147 274 148 148 274 148 148 275 147 147 275 67 67 275 148 148 276 67 67 276 149 149 276 149 149 277 67 67 277 66 66 277 149 149 278 66 66 278 140 140 278 140 140 279 66 66 279 150 150 279 140 140 280 150 150 280 141 141 280 141 141 281 150 150 281 151 151 281 141 141 282 151 151 282 153 153 282 153 153 283 151 151 283 152 152 283 153 153 284 152 152 284 138 138 284 138 138 285 152 152 285 69 69 285 138 138 286 69 69 286 154 154 286 154 154 287 69 69 287 142 142 287 62 62 288 168 168 288 57 57 288 57 57 289 168 168 289 173 173 289 57 57 290 173 173 290 155 155 290 155 155 291 173 173 291 175 175 291 155 155 292 175 175 292 156 156 292 156 156 293 175 175 293 158 158 293 156 156 294 158 158 294 157 157 294 157 157 295 158 158 295 159 159 295 157 157 296 159 159 296 160 160 296 160 160 297 159 159 297 169 169 297 160 160 298 169 169 298 161 161 298 161 161 299 169 169 299 162 162 299 161 161 300 162 162 300 163 163 300 163 163 301 162 162 301 172 172 301 163 163 302 172 172 302 60 60 302 60 60 303 172 172 303 171 171 303 60 60 304 171 171 304 164 164 304 164 164 305 171 171 305 165 165 305 164 164 306 165 165 306 61 61 306 61 61 307 165 165 307 167 167 307 61 61 308 167 167 308 166 166 308 166 166 309 167 167 309 174 174 309 166 166 310 174 174 310 62 62 310 62 62 311 174 174 311 168 168 311 172 172 312 162 162 312 170 170 312 170 170 313 162 162 313 169 169 313 170 170 314 169 169 314 159 159 314 167 167 315 165 165 315 170 170 315 170 170 316 165 165 316 171 171 316 170 170 317 171 171 317 172 172 317 173 173 318 168 168 318 170 170 318 170 170 319 168 168 319 174 174 319 170 170 320 174 174 320 167 167 320 159 159 321 158 158 321 170 170 321 170 170 322 158 158 322 175 175 322 170 170 323 175 175 323 173 173 323

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/cone.dae b/stack_master/config/NUC2/slam/f110_description/meshes/cone.dae new file mode 100755 index 0000000..7b0fa99 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/cone.dae @@ -0,0 +1,123 @@ + + + + + SketchUp 15.3.331 + + 2016-03-10T00:21:04Z + 2016-03-10T00:21:04Z + + Z_UP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.952756 2.952756 0 -2.952756 -2.952756 0 -2.952756 2.952756 0 2.952756 -2.952756 0 -2.952756 2.952756 0.1968504 2.952756 2.952756 0 -2.952756 2.952756 0 2.952756 2.952756 0.1968504 2.952756 2.952756 0 2.952756 -2.952756 0.1968504 2.952756 -2.952756 0 2.952756 2.952756 0.1968504 2.952756 -2.952756 0.1968504 -2.952756 -2.952756 0 2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0.1968504 -2.952756 -2.952756 0 -2.952756 -2.952756 0.1968504 -2.952756 2.952756 0 -2.952756 -2.952756 0.1968504 -2.362205 0 0.1968504 -2.952756 2.952756 0.1968504 -2.045729 -1.181102 0.1968504 -1.181102 -2.045729 0.1968504 4.440892e-016 -2.362205 0.1968504 2.952756 -2.952756 0.1968504 1.181102 -2.045729 0.1968504 2.045729 -1.181102 0.1968504 2.362205 4.440892e-016 0.1968504 0 2.362205 0.1968504 2.952756 2.952756 0.1968504 -1.181102 2.045729 0.1968504 -2.045729 1.181102 0.1968504 1.181102 2.045729 0.1968504 2.045729 1.181102 0.1968504 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23 23 20 24 24 20 25 25 20 26 25 26 27 27 26 28 28 26 29 22 30 31 30 22 32 32 22 33 33 22 21 31 30 34 31 34 35 31 35 29 31 29 26

+
+
+
+ + + + -2.045729 1.181102 0.1968504 -2.362205 0 0.1968504 0 0 6.692913 -2.045729 -1.181102 0.1968504 0 0 6.692913 -1.181102 2.045729 0.1968504 0 0 6.692913 0 0 6.692913 -1.181102 -2.045729 0.1968504 0 0 6.692913 0 2.362205 0.1968504 0 0 6.692913 4.440892e-016 -2.362205 0.1968504 0 0 6.692913 1.181102 2.045729 0.1968504 0 0 6.692913 1.181102 -2.045729 0.1968504 0 0 6.692913 2.045729 1.181102 0.1968504 0 0 6.692913 2.045729 -1.181102 0.1968504 0 0 6.692913 2.362205 4.440892e-016 0.1968504 0 0 6.692913 + + + + + + + + + + -0.813885 0.4698967 0.3417431 -0.9397934 -3.08962e-016 0.3417431 -0.9113426 0.2441935 0.3313973 -0.813885 -0.4698967 0.3417431 -0.9113426 -0.2441935 0.3313973 -0.4698967 0.813885 0.3417431 -0.6671491 0.6671491 0.3313973 -0.6671491 -0.6671491 0.3313973 -0.4698967 -0.813885 0.3417431 -0.2441935 0.9113426 0.3313973 -1.737911e-016 0.9397934 0.3417431 -0.2441935 -0.9113426 0.3313973 2.317215e-016 -0.9397934 0.3417431 0.2441935 0.9113426 0.3313973 0.4698967 0.813885 0.3417431 0.2441935 -0.9113426 0.3313973 0.4698967 -0.813885 0.3417431 0.6671491 0.6671491 0.3313973 0.813885 0.4698967 0.3417431 0.6671491 -0.6671491 0.3313973 0.813885 -0.4698967 0.3417431 0.9113426 0.2441935 0.3313973 0.9397934 -2.896519e-016 0.3417431 0.9113426 -0.2441935 0.3313973 + + + + + + + + + + + + + + +

0 1 2 1 3 4 5 0 6 7 3 8 9 10 5 11 8 12 13 14 10 15 12 16 17 18 14 19 16 20 18 21 22 22 23 20

+
+
+
+
+ + + + + + + + + + + + 0.7529412 0.3764706 0.0627451 1 + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/hokuyo.dae b/stack_master/config/NUC2/slam/f110_description/meshes/hokuyo.dae new file mode 100755 index 0000000..bc65151 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/hokuyo.dae @@ -0,0 +1,253 @@ + + + + + Blender User + Blender 2.64.0 r51232 + + 2013-03-22T08:19:53 + 2013-03-22T08:19:53 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 0 + 1 + 1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 45 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.020312 0.020312 0.020312 1 + + + 0.25 0.25 0.25 1 + + + 12 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.695112 0.695112 0.695112 1 + + + 0.0625 0.0625 0.0625 1 + + + 0 + + + 1 + + + + + + 1 + + + + 1 + + + + + + + + + + + + + + + -0.02213996 0.005949974 -0.004869997 -0.02213996 0.005949974 0.004869997 -0.02164 0.009949982 -0.004999995 -0.02164 0.009949982 -0.005999982 -0.02164 0.009949982 0.004999995 -0.02164 0.009949982 0.005999982 -0.02149999 0.009949982 -0.006499946 -0.02149999 0.009949982 0.006499946 -0.02113997 0.009949982 -0.006869971 -0.02113997 0.009949982 0.006869971 -0.02063995 0.005949974 0.006999969 -0.02063995 0.009949982 -0.006999969 -0.02063995 0.009949982 0.006999969 -0.01979994 0.009949982 -0.006999969 -0.01979994 0.005949974 -0.006999969 -0.01979994 0.005949974 0.006999969 -0.01979994 0.009949982 0.006999969 -0.01838999 0.005949974 0.01014 -0.02063995 0.005949974 -0.006999969 -0.02113997 0.005949974 0.006869971 -0.02113997 0.005949974 -0.006869971 -0.02149999 0.005949974 0.006499946 -0.02149999 0.005949974 -0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02164 0.005949974 -0.004999995 -0.02164 0.005949974 -0.005999982 -0.01920998 0.01990997 0.004999995 -0.01920998 0.01990997 -0.004999995 -0.005279958 0.02695 -0.01798999 -0.009719967 0.02695 -0.01595997 -0.01014 0.02695 -0.01576995 -0.01365 0.02695 -0.01273 -0.01416999 0.02695 -0.01227998 -0.01655995 0.02695 -0.008569955 -0.01705998 0.02695 -0.007789969 -0.01822996 0.02695 -0.003779947 -0.01855999 0.02695 -0.00266999 -0.01855999 0.02695 0.00127995 -0.01855999 0.02695 0.00266999 -0.01750999 0.02695 0.006229996 -0.01705998 0.02695 0.007789969 -0.01516997 0.02695 0.01071995 -0.01416999 0.02695 0.01227998 -0.01170998 0.02695 0.01440995 -0.01014 0.02695 0.01576995 -0.007389962 0.02695 0.01703 -0.005279958 0.02695 0.01798999 -0.002529978 0.02695 0.01838999 0 0.02695 0.01874995 0.002529978 0.02695 0.01838999 0.005279958 0.02695 0.01798999 0.007389962 0.02695 0.01703 0.01014 0.02695 0.01576995 0.01170998 0.02695 0.01440995 0.01416999 0.02695 0.01227998 0.01516997 0.02695 0.01071995 0.01705998 0.02695 0.007789969 0.01750999 0.02695 0.006229996 0.01855999 0.02695 0.00266999 0.01855999 0.02695 0.00127995 0.01855999 0.02695 -0.00266999 0.01822996 0.02695 -0.003779947 0.01705998 0.02695 -0.007789969 0.01655995 0.02695 -0.008569955 0.01416999 0.02695 -0.01227998 0.01365 0.02695 -0.01273 0.01014 0.02695 -0.01576995 0.009719967 0.02695 -0.01595997 0.005279958 0.02695 -0.01798999 0.005049943 0.02695 -0.01801997 -0.005049943 0.02695 -0.01801997 0 0.02695 -0.01874995 -0.01885998 0.02594995 0.001289963 -0.01850998 0.02594995 -0.003849983 -0.02039998 0.009949982 -0.004999995 -0.02039998 0.009949982 0.004999995 -0.01848 0.02594995 0.003999948 -0.01836997 0.02572995 0.004629969 -0.01840996 0.02588999 0.004329979 -0.01838999 0.02579998 0.004489958 -0.01835 0.02544999 0.004859983 -0.01838999 0.02494996 0.004999995 -0.01835995 0.02517998 0.004969954 -0.02164 0.02494996 0.004999995 -0.02164 0.02544999 0.004869997 -0.02188998 0.02537995 0.004869997 -0.02206999 0.02519994 0.004869997 -0.02213996 0.02494996 0.004869997 -0.02164 0.02581995 0.004499971 -0.02206999 0.02569997 0.004499971 -0.02238994 0.02537995 0.004499971 -0.02249997 0.02494996 0.004499971 -0.02164 0.02594995 0.003999948 -0.02213996 0.02581995 0.003999948 -0.02263998 0.02494996 0.003999948 -0.02249997 0.02544999 0.003999948 -0.02213996 0.02581995 -0.003999948 -0.02249997 0.02544999 -0.003999948 -0.02263998 0.02494996 -0.003999948 -0.02206999 0.02569997 -0.004499971 -0.02188998 0.02537995 -0.004869997 -0.02238994 0.02537995 -0.004499971 -0.02249997 0.02494996 -0.004499971 -0.02206999 0.02519994 -0.004869997 -0.02213996 0.02494996 -0.004869997 -0.01838999 0.02494996 -0.004999995 -0.02164 0.02494996 -0.004999995 -0.01835 0.02555996 -0.004789948 -0.01835995 0.02526998 -0.004949986 -0.01835 0.02543997 -0.00484997 -0.01836997 0.02577996 -0.004559993 -0.02164 0.02544999 -0.004869997 -0.02164 0.02581995 -0.004499971 -0.01848 0.02594995 -0.003999948 -0.02164 0.02594995 -0.003999948 -0.01841998 0.02590996 -0.004269957 -0.02001994 0.01871997 -0.004999995 -0.01986998 0.01879996 -0.004999995 -0.02025997 0.01844996 -0.004999995 -0.02039998 0.01794999 -0.004999995 -0.02037996 0.01813995 -0.004999995 -0.02039998 0.01794999 0.004999995 -0.02033996 0.01826995 0.004999995 -0.01993995 0.01877999 0.004999995 -0.01936 0.01894998 0.004999995 -0.01962 0.01892 0.004999995 -0.01879996 0.01894998 0.006679952 -0.01845997 0.01894998 0.007699966 -0.01936 0.01894998 -0.004999995 -0.01971 0.01888996 -0.004999995 -0.01845997 0.01894998 -0.007699966 -0.01668 0.01894998 -0.01102995 -0.01141995 0.01894998 -0.01641994 -7.8e-4 0.01894998 -0.01997995 0 0.01894998 -0.01993995 0.002989947 0.01894998 -0.01976996 0.01315999 0.01894998 -0.01505994 0.01454997 0.01894998 -0.01358997 0.01576 0.01894998 -0.01230996 0.01990997 0.01894998 0.001369953 0.01990997 0.01894998 -0.001889944 0.01919996 0.01894998 0.005609989 0.01779997 0.01894998 0.009119987 0.00792998 0.01894998 0.01826995 0.01008999 0.01894998 0.01726996 -0.007959961 0.01894998 0.01832997 -0.004529953 0.01894998 0.01947999 -0.01668 0.01894998 0.01102995 -0.01892 0.01881998 0.007889986 -0.02024996 0.01843994 0.004999995 -0.02017998 0.01855999 0.004999995 -0.00812 0.01894998 -0.01827996 0.006659984 0.01894998 -0.01885998 0.01576 0.01894998 0.01230996 0.002989947 0.01894998 0.01976996 0.002719998 0.01894998 0.01978999 -0.01141995 0.01894998 0.01641994 -0.01256996 0.01894998 0.01545 -0.01767998 0.01894998 -0.009159982 -0.01892 0.01881998 -0.007889986 -0.01937997 0.01794999 -0.008079946 -0.01830995 0.01794999 -0.01009994 -0.01925998 0.01844996 -0.008029997 -0.01458996 0.01894998 -0.01362997 -0.01709997 0.01881998 -0.01130998 -0.01750999 0.01794999 -0.01159 -0.0151 0.01794999 -0.01457995 -0.01739996 0.01844996 -0.01150995 -0.01431 0.01894998 -0.01397997 -0.01466 0.01881998 -0.01432996 -0.01501995 0.01794999 -0.01467996 -0.01491999 0.01844996 -0.01457995 -0.01034998 0.01894998 -0.01701998 -0.008319973 0.01881998 -0.01872998 -0.01169997 0.01881998 -0.01682996 -0.01198995 0.01794999 -0.01723998 -0.01190996 0.01844996 -0.01712995 -8.2e-4 0.01794999 -0.02098 -0.004759967 0.01794999 -0.02044999 -0.004729986 0.01844996 -0.02031999 -0.005689978 0.01794999 -0.02013999 -0.01073998 0.01794999 -0.01794999 -0.008529961 0.01794999 -0.01918995 -0.008469998 0.01844996 -0.01906996 -2.5e-4 0.01794999 -0.02094995 -8.2e-4 0.01844996 -0.02085 -8.1e-4 0.01881998 -0.02047997 -0.005379974 0.01894998 -0.01919996 -0.004649996 0.01881998 -0.01996999 -0.004529953 0.01894998 -0.01947999 0.005379974 0.01894998 -0.01917999 0.006829977 0.01881998 -0.01932996 0.003069996 0.01881998 -0.02026998 0.003139972 0.01794999 -0.02075999 0.003119945 0.01844996 -0.02063 0.01381999 0.01794999 -0.01580995 0.01059997 0.01794999 -0.01813 0.01052999 0.01844996 -0.01800996 0.01034998 0.01794999 -0.01824998 0.005209982 0.01794999 -0.02024996 0.006989955 0.01794999 -0.01979994 0.006949961 0.01844996 -0.01966995 0.01469999 0.01794999 -0.01488 0.01372998 0.01844996 -0.01570999 0.01348996 0.01881998 -0.01542997 0.01008999 0.01894998 -0.01726996 0.01034998 0.01881998 -0.01769995 0.01036995 0.01894998 -0.01705998 0.01774996 0.01894998 -0.009199976 0.01823997 0.01881998 -0.009349942 0.01615995 0.01881998 -0.01261997 0.01655 0.01794999 -0.01291996 0.01644998 0.01844996 -0.01283997 0.02090996 0.01794999 -0.00198996 0.02023994 0.01794999 -0.005469977 0.02002996 0.01844996 -0.005849957 0.02015995 0.01794999 -0.005889952 0.01807999 0.01794999 -0.01052999 0.01868999 0.01794999 -0.009579956 0.01857 0.01844996 -0.009519994 0.02090996 0.01794999 0 0.02076995 0.01844996 -0.001969993 0.02041 0.01881998 -0.001939952 0.01919996 0.01894998 -0.005609989 0.01967996 0.01881998 -0.00575 0.01949995 0.01894998 -0.004049956 0.01990997 0.01894998 0.001889944 0.02041 0.01881998 0.001939952 0.02090996 0.01794999 0.00198996 0.02023994 0.01794999 0.005469977 0.02076995 0.01844996 0.001969993 0.01876997 0.01894998 0.006669998 0.01967996 0.01881998 0.00575 0.02015995 0.01794999 0.005889952 0.02002996 0.01844996 0.005849957 0.01627999 0.01894998 0.0115 0.01615995 0.01881998 0.01261997 0.01823997 0.01881998 0.009349942 0.01868999 0.01794999 0.009579956 0.01857 0.01844996 0.009519994 0.01059997 0.01794999 0.01813 0.01381999 0.01794999 0.01580995 0.01372998 0.01844996 0.01570999 0.01469999 0.01794999 0.01488 0.01807999 0.01794999 0.01052999 0.01655 0.01794999 0.01291996 0.01644998 0.01844996 0.01283997 0.01034998 0.01794999 0.01824998 0.01052999 0.01844996 0.01800996 0.01034998 0.01881998 0.01769995 0.01315999 0.01894998 0.01505994 0.01348996 0.01881998 0.01542997 0.01258999 0.01894998 0.01546996 0.006659984 0.01894998 0.01885998 0.003069996 0.01881998 0.02026998 0.006829977 0.01881998 0.01932996 0.006989955 0.01794999 0.01979994 0.006949961 0.01844996 0.01966995 -0.004759967 0.01794999 0.02044999 -8.2e-4 0.01794999 0.02098 -8.2e-4 0.01844996 0.02085 -2.5e-4 0.01794999 0.02094995 0.005209982 0.01794999 0.02024996 0.003139972 0.01794999 0.02075999 0.003119945 0.01844996 0.02063 -0.005689978 0.01794999 0.02013999 -0.004729986 0.01844996 0.02031999 -0.004649996 0.01881998 0.01996999 -7.8e-4 0.01894998 0.01997995 -8.1e-4 0.01881998 0.02047997 -0.002709984 0.01894998 0.01972997 -0.00812 0.01894998 0.01827996 -0.01169997 0.01881998 0.01682996 -0.008319973 0.01881998 0.01872998 -0.008529961 0.01794999 0.01918995 -0.008469998 0.01844996 0.01906996 -0.01750999 0.01794999 0.01159 -0.0151 0.01794999 0.01457995 -0.01491999 0.01844996 0.01457995 -0.01501995 0.01794999 0.01467996 -0.01073998 0.01794999 0.01794999 -0.01198995 0.01794999 0.01723998 -0.01190996 0.01844996 0.01712995 -0.01937997 0.01794999 0.008079946 -0.01830995 0.01794999 0.01009994 -0.01925998 0.01844996 0.008029997 -0.01739996 0.01844996 0.01150995 -0.01709997 0.01881998 0.01130998 -0.01431 0.01894998 0.01397997 -0.01466 0.01881998 0.01432996 -0.01629996 0.01894998 0.0115 -0.01014 0.03504997 -0.01576995 -0.005279958 0.03504997 0.01798999 0 0.03504997 0.01874995 0.005279958 0.03504997 0.01798999 0.01014 0.03504997 0.01576995 0.01416999 0.03504997 0.01227998 0.01705998 0.03504997 0.007789969 0.01855999 0.03504997 0.00266999 0.01855999 0.03504997 -0.00266999 -0.01014 0.03504997 0.01576995 -0.01416999 0.03504997 0.01227998 -0.01705998 0.03504997 0.007789969 -0.01855999 0.03504997 0.00266999 -0.01855999 0.03504997 -0.00266999 -0.01705998 0.03504997 -0.007789969 -0.01416999 0.03504997 -0.01227998 -0.005279958 0.03504997 -0.01798999 0 0.03504997 -0.01874995 0.005279958 0.03504997 -0.01798999 0.01014 0.03504997 -0.01576995 0.01416999 0.03504997 -0.01227998 0.01705998 0.03504997 -0.007789969 0.001609981 0.03494995 -0.01717996 -0.003309965 0.03504997 -0.01692998 -0.003309965 0.03494995 -0.01692998 0.001759946 0.03494995 -0.01713997 0.001969993 0.03494995 -0.01708996 0.001609981 0.03504997 -0.01717996 0.004629969 0.03494995 -0.01644998 0.006399989 0.03494995 -0.01601999 0.007199943 0.03494995 -0.01555997 0.007989943 0.03494995 -0.0151 0.006399989 0.03504997 -0.01601999 0.009659945 0.03494995 -0.01413995 0.01066994 0.03494995 -0.01354998 0.01066994 0.03504997 -0.01354998 0.01512998 0.03494995 -0.007909953 0.01104998 0.03494995 -0.01314997 0.01406997 0.03504997 -0.009979963 0.01406997 0.03494995 -0.009979963 0.01695996 0.03494995 -0.002209961 0.01631999 0.03494995 -0.005589962 0.01631999 0.03504997 -0.005589962 0.01652997 0.03494995 -0.004479944 -0.007969975 0.03494995 -0.01529997 -0.007969975 0.03504997 -0.01529997 -0.009269952 0.03494995 -0.01454997 -0.01002997 0.03494995 0.01388996 -0.01088994 0.03494995 0.01314997 -0.01299995 0.03494995 0.01133996 -0.01299995 0.03504997 0.01133996 -0.01378995 0.03494995 0.01010996 -0.01567995 0.03494995 0.007189989 -0.01567995 0.03504997 0.007189989 -0.01626998 0.03494995 0.005199968 -0.01706999 0.03494995 0.002459943 -0.01706999 0.03494995 0.002019941 -0.01706999 0.03494995 9.7e-4 -0.01706999 0.03494995 6.9e-4 -0.01706999 0.03504997 0.002459943 -0.01706999 0.03494995 -0.002209961 -0.01706999 0.03494995 -0.002459943 -0.01706999 0.03504997 -0.002459943 -0.01647996 0.03494995 -0.004479944 -0.01567995 0.03494995 -0.007189989 -0.01567995 0.03504997 -0.007189989 -0.01521998 0.03494995 -0.007909953 -0.01299995 0.03504997 -0.01133996 -0.01299995 0.03494995 -0.01133996 -0.01002997 0.03494995 -0.01388996 -0.01088994 0.03494995 -0.01314997 -0.009269952 0.03504997 -0.01454997 -0.009269952 0.03494995 0.01454997 -0.009269952 0.03504997 0.01454997 0.01718997 0.03494995 9.7e-4 0.01699 0.03494995 0.002019941 0.01638996 0.03494995 0.005199968 0.01631999 0.03494995 0.005589962 0.01631999 0.03504997 0.005589962 0.01104998 0.03494995 0.01314997 0.01406997 0.03494995 0.009979963 0.01406997 0.03504997 0.009979963 0.01394999 0.03494995 0.01010996 0.01066994 0.03494995 0.01354998 0.009659945 0.03494995 0.01413995 0.01066994 0.03504997 0.01354998 0.007199943 0.03494995 0.01555997 0.006399989 0.03494995 0.01601999 0.006399989 0.03504997 0.01601999 0.004629969 0.03494995 0.01644998 0.001969993 0.03494995 0.01708996 0.001759946 0.03494995 0.01713997 0.001609981 0.03494995 0.01717996 0.001609981 0.03504997 0.01717996 -0.003309965 0.03494995 0.01692998 -0.007969975 0.03504997 0.01529997 -0.007969975 0.03494995 0.01529997 -0.003309965 0.03504997 0.01692998 0.01722997 0.03504997 7.5e-4 0.01722997 0.03494995 7.5e-4 0.01722997 0.03494995 -7.5e-4 0.01722997 0.03504997 -7.5e-4 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.02499997 -0.03504997 -0.023 -0.02499997 -0.03504997 0.023 -0.02472996 -0.03504997 -0.02399998 -0.02472996 -0.03504997 0.02399998 -0.02399998 -0.03504997 -0.02472996 -0.02399998 -0.03504997 0.02472996 -0.02363997 0.003949999 -0.02164 -0.02363997 0.003949999 0.02164 -0.02363997 0.00544995 -0.02164 -0.02363997 0.00544995 0.02164 -0.02357 0.005699992 -0.02164 -0.02357 0.005699992 0.02164 -0.02338999 0.005879998 -0.02164 -0.02338999 0.005879998 0.02164 -0.02336996 0.003959953 0.02263998 -0.02336996 0.00544995 -0.02263998 -0.02336996 0.00544995 0.02263998 -0.02336996 0.003959953 -0.02263998 -0.02331 0.005699992 -0.02260994 -0.02331 0.005699992 0.02260994 -0.02314996 0.005879998 -0.02250999 -0.02314996 0.005879998 0.02250999 -0.02313995 0.005949974 -0.02164 -0.02313995 0.005949974 0 -0.02313995 0.005949974 0.02164 -0.023 -0.03504997 -0.02499997 -0.023 -0.03504997 0.02499997 -0.02293998 0.005949974 -0.02238994 -0.02293998 0.005949974 0.02238994 0 -0.03504997 0 -0.02263998 0.003959953 0.02336996 -0.02263998 0.003959953 -0.02336996 -0.02263998 0.00544995 -0.02336996 -0.02263998 0.00544995 0.02336996 -0.02260994 0.005699992 -0.02331 -0.02260994 0.005699992 0.02331 -0.02250999 0.005879998 -0.02314996 -0.02250999 0.005879998 0.02314996 0 0.005949974 -0.02313995 -0.02164 0.005949974 -0.02313995 -0.02238994 0.005949974 -0.02293998 -0.02238994 0.005949974 0.02293998 -0.02164 0.003949999 -0.02363997 -0.02164 0.003949999 0.02363997 -0.02164 0.00544995 -0.02363997 -0.02164 0.00544995 0.02363997 -0.02164 0.005699992 -0.02357 -0.02164 0.005699992 0.02357 -0.02164 0.005879998 -0.02338999 -0.02164 0.005879998 0.02338999 -0.02164 0.005949974 0.02313995 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02213996 0.005949974 -0.004869997 0 0.005949974 0.02313995 0.02164 0.003949999 -0.02363997 0.02164 0.003949999 0.02363997 0.02164 0.00544995 -0.02363997 0.02164 0.00544995 0.02363997 0.02164 0.005699992 -0.02357 0.02164 0.005699992 0.02357 0.02164 0.005879998 -0.02338999 0.02164 0.005879998 0.02338999 0.02164 0.005949974 -0.02313995 0.02164 0.005949974 0.02313995 0.02238994 0.005949974 -0.02293998 0.02238994 0.005949974 0.02293998 0.02250999 0.005879998 -0.02314996 0.02250999 0.005879998 0.02314996 0.02260994 0.005699992 -0.02331 0.02260994 0.005699992 0.02331 0.02263998 0.003959953 -0.02336996 0.02263998 0.003959953 0.02336996 0.02263998 0.00544995 -0.02336996 0.02263998 0.00544995 0.02336996 0.02293998 0.005949974 -0.02238994 0.02293998 0.005949974 0.02238994 0.023 -0.03504997 -0.02499997 0.023 -0.03504997 0.02499997 0.02313995 0.005949974 -0.02164 0.02313995 0.005949974 0 0.02313995 0.005949974 0.02164 0.02314996 0.005879998 -0.02250999 0.02314996 0.005879998 0.02250999 0.02331 0.005699992 -0.02260994 0.02331 0.005699992 0.02260994 0.02336996 0.003959953 -0.02263998 0.02336996 0.003959953 0.02263998 0.02336996 0.00544995 -0.02263998 0.02336996 0.00544995 0.02263998 0.02338999 0.005879998 -0.02164 0.02338999 0.005879998 0.02164 0.02357 0.005699992 -0.02164 0.02357 0.005699992 0.02164 0.02363997 0.003949999 -0.02164 0.02363997 0.003949999 0.02164 0.02363997 0.00544995 -0.02164 0.02363997 0.00544995 0.02164 0.02399998 -0.03504997 -0.02472996 0.02399998 -0.03504997 0.02472996 0.02472996 -0.03504997 -0.02399998 0.02472996 -0.03504997 0.02399998 0.02499997 -0.03504997 -0.023 0.02499997 -0.03504997 0.023 0 0.03504997 0 -0.02213996 0.005949974 0.004869997 -0.02063995 0.005949974 0.006999969 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.02063995 0.005949974 0.006999969 -0.02213996 0.005949974 0.004869997 -0.02213996 0.005949974 -0.004869997 -0.01979994 0.005949974 0.006999969 -0.01838999 0.005949974 0.01014 -0.02113997 0.005949974 0.006869971 -0.02149999 0.005949974 0.006499946 -0.02164 0.005949974 0.005999982 -0.02164 0.005949974 0.004999995 -0.02263998 0.005949974 -0.003999948 -0.02263998 0.005949974 0.003999948 -0.02249997 0.005949974 -0.004499971 -0.02249997 0.005949974 0.004499971 -0.01838999 0.005949974 -0.01014 -0.01510995 0.005949974 -0.01458996 -0.01510995 0.005949974 0.01458996 -0.01077997 0.005949974 -0.01801997 -0.01077997 0.005949974 0.01801997 -0.005709946 0.005949974 -0.02020996 -0.005709946 0.005949974 0.02020996 -2.5e-4 0.005949974 -0.02099996 -2.5e-4 0.005949974 0.02099996 0 0.005949974 -0.02096998 0 0.005949974 0.02096998 0.005239963 0.005949974 -0.02033996 0.005239963 0.005949974 0.02033996 0.01036 0.005949974 -0.01826995 0.01036 0.005949974 0.01826995 0.01475995 0.005949974 -0.01493996 0.01475995 0.005949974 0.01493996 0.01814997 0.005949974 -0.01056998 0.01814997 0.005949974 0.01056998 0.02026998 0.005949974 -0.005479991 0.02099996 0.005949974 0 0.02026998 0.005949974 0.005479991 -0.005709946 0.005949974 -0.02020996 -0.01077997 0.005949974 -0.01801997 -0.01510995 0.005949974 -0.01458996 -0.01838999 0.005949974 -0.01014 -0.00945729 0.003627836 -0.001710772 0 -0.01554995 0.02431994 0 0.005949974 0 + + + + + + + + + + 0 -1 0 0 -1 0 -0.9492978 0 -0.3143782 -0.9492978 0 0.3143782 -0.7785766 0.001171708 0.6275485 -0.7808654 0.001171231 0.6246982 -0.6209343 -0.001221954 0.7838616 -0.6453004 -0.01542252 0.7637733 -0.3964945 -0.0151537 0.9179121 -0.4893132 0.006718158 0.8720822 -0.4938785 0.006718337 0.8695049 -0.1431924 -0.008457064 0.9896588 -0.316222 0.006060898 0.9486659 -0.3172233 0.0060606 0.9483315 0.2392156 0.007879972 0.9709345 0.119358 -0.01385879 0.9927546 0.0559594 0.00282979 0.9984291 0.1191433 0.00413686 0.9928685 0.05255794 0.004160761 0.9986092 -0.1333157 -0.004680752 0.9910625 0.2450903 0.007883667 0.9694681 0.3747907 -0.01294112 0.9270192 0.4188861 0.001862525 0.9080369 0.4327281 0.001863181 0.9015226 0.6034716 -0.002766609 0.7973797 0.5845207 -0.01302987 0.8112742 0.7900453 -0.01468151 0.6128727 0.7272006 0.007067918 0.6863886 0.7263449 0.007068157 0.6872941 0.9823358 0.002611696 0.1871086 0.9289886 -0.004128932 0.3700852 0.9230861 -0.009820222 0.3844679 0.8414472 0.006709396 0.5402976 0.8421885 0.006709873 0.5391413 0.9819628 0.002612411 0.1890563 0.9911401 -0.01446169 0.1320315 0.9999719 0.007499694 0 0.9999719 0.007499694 0 0.9911401 -0.01446169 -0.1320315 0.9819628 0.002612411 -0.1890563 0.9823358 0.002611696 -0.1871086 0.9231205 -0.004674613 -0.3844823 0.9289375 -0.01127177 -0.3700649 0.7900453 -0.01468151 -0.6128727 0.8421885 0.006709873 -0.5391413 0.8414472 0.006709396 -0.5402976 0.4327281 0.001863181 -0.9015226 0.5845689 -0.002225697 -0.8113411 0.6034404 -0.0105375 -0.7973385 0.7263449 0.007068157 -0.6872941 0.7272006 0.007067918 -0.6863886 0.4188861 0.001862525 -0.9080369 0.3747907 -0.01294112 -0.9270192 0.2450903 0.007883667 -0.9694681 0.2392156 0.007879972 -0.9709345 0.119358 -0.01385879 -0.9927546 0.0559594 0.00282979 -0.9984291 0.1191433 0.00413686 -0.9928685 0.05255794 0.004160761 -0.9986092 -0.1431956 -0.005152344 -0.989681 -0.1333114 -0.009266734 -0.9910309 -0.3964945 -0.0151537 -0.9179121 -0.3172233 0.0060606 -0.9483315 -0.316222 0.006060898 -0.9486659 -0.7808654 0.001171231 -0.6246982 -0.6453768 -8.88654e-4 -0.7638639 -0.6208926 -0.01165908 -0.783809 -0.4938785 0.006718337 -0.8695049 -0.4893132 0.006718158 -0.8720822 -0.7785766 0.001171708 -0.6275485 -0.8049004 -0.01266139 -0.5932749 -0.881016 0.007450222 -0.4730277 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.9471516 0.1680965 0.2732169 -0.407418 0.1514139 -0.9006023 -0.9422059 0.2770094 -0.1884511 -0.9113164 0.1482697 -0.3840813 -0.9315509 0.1626105 -0.3252239 -0.7991091 -0.3146805 -0.5122509 -0.9081746 0.2506373 -0.3352608 -0.9111543 0.1456485 -0.3854666 -0.928664 0.2243673 -0.2953684 -0.925579 0.2859641 -0.2480482 -0.9177774 0.2868903 0.2745518 -0.9178981 0.2856691 0.2754201 -0.9143468 0.1813663 0.3620446 -0.9384292 0.1466302 0.31281 -0.9311535 0.1683419 0.3234411 -0.901751 0.1467134 0.4065961 -0.9103941 0.1680585 0.3780726 -0.912325 0.3225979 0.2521777 -0.9188216 0.2869244 0.2710005 -0.9848498 0.1048805 0.138097 -0.9578264 0.2873474 0 -0.9559739 0.2861407 -0.06509518 -0.9987523 -0.04993659 0 -0.9210147 0.2770513 -0.2738146 -0.4861897 0.1523008 -0.8604789 -0.4091901 0.1777053 -0.8949773 -0.3149025 0.1457877 -0.9378605 -0.1278769 0.1498839 -0.9803991 -0.309273 0.1512408 -0.9388697 -0.141013 0.1688628 -0.9755002 -0.1303948 0.1630746 -0.977959 -0.4837509 0.1474936 -0.8626881 -0.636475 0.163087 -0.7538581 -0.645197 0.1696269 -0.744948 -0.7708169 0.1599442 -0.6166515 -0.6459589 0.159875 -0.746443 -0.7711567 0.1450923 -0.6198915 -0.8274903 0.1763324 -0.533073 -0.8709936 0.1562899 -0.4657721 -0.9149418 0.1555567 -0.3724025 -0.7441748 0.5367867 -0.3975726 -0.9384292 0.1466302 -0.3128098 -0.9364062 0.1603595 0.3121352 -0.8722791 0.1474033 0.4662632 -0.8271023 0.1767897 0.5335236 -0.7664864 0.1686882 0.6197121 -0.8297607 0.1690638 0.5318973 -0.7716946 0.1450895 0.6192225 -0.6450954 0.1696101 0.7450398 -0.6363618 0.1663306 0.7532449 -0.64563 0.1662972 0.7453235 -0.6361207 0.1630551 0.754164 -0.4856274 0.1477051 0.8615968 -0.4099487 0.177209 0.8947284 -0.2937462 0.1736751 0.9399735 -0.4077602 0.1746891 0.8962228 -0.3145152 0.1452308 0.9380769 -0.1418845 0.1683772 0.9754577 -0.1341822 0.1666406 0.976845 -0.1389042 0.1666364 0.9761855 -0.1267469 0.1627997 0.9784843 0.1395421 0.1371724 0.980669 0.05338537 0.1733645 0.9834097 0.07274723 0.1735997 0.9821257 0.1416881 0.1761806 0.9741073 0.2381073 0.1455035 0.9602779 0.4082419 0.1680009 0.8972816 0.4154286 0.1666471 0.8942303 0.4107152 0.1666655 0.8964015 0.4143497 0.165222 0.894995 0.6486326 0.1363442 0.7487897 0.575868 0.1693211 0.7998164 0.575499 0.1693159 0.8000832 0.6442187 0.1772168 0.7440273 0.7189208 0.1454344 0.6797072 0.8300612 0.16697 0.5320899 0.8296917 0.1670521 0.5326398 0.8285282 0.1670665 0.5344434 0.8312138 0.1651425 0.5308593 0.9521918 0.1337416 0.2746708 0.9171259 0.1644181 0.3631072 0.914055 0.1643574 0.3707966 0.9438654 0.1778166 0.2783871 0.9717582 0.1459009 0.1854698 0.9860588 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9860587 0.1663975 0 0.9500489 0.1327823 -0.2824464 0.9697747 0.1601643 -0.1840775 0.9693279 0.1601721 -0.1864089 0.9447124 0.1775989 -0.2756393 0.830715 0.1654286 -0.5315507 0.8288937 0.166745 -0.533977 0.7189707 0.1454441 -0.6796524 0.6466634 0.1530798 -0.747257 0.717962 0.1537514 -0.6788895 0.6443232 0.1772074 -0.743939 0.5763537 0.1462174 -0.8040131 0.4070715 0.1568021 -0.8998366 0.5925795 0.1567866 -0.7901059 0.4147536 0.1656929 -0.8947209 0.4098841 0.1681987 -0.8964955 0.2399455 0.1457665 -0.9597803 0.1279237 0.1474865 -0.9807565 0.2369926 0.1489789 -0.9600207 0.1408129 0.1768286 -0.9741167 0.05614864 0.1468989 -0.9875566 0.05065917 0.1469421 -0.987847 -0.1424711 -3.79589e-4 -0.9897989 -0.129338 0 -0.9916005 -0.4158082 0 -0.9094523 -0.4154945 -2.07829e-4 -0.9095956 -0.4121701 0 -0.911107 -0.6546844 0 -0.7559022 -0.6546447 -3.01789e-5 -0.7559368 -0.6543759 0 -0.7561693 -0.840663 0 -0.5415588 -0.8408741 2.12565e-4 -0.5412307 -0.8418785 0 -0.5396671 -0.9599732 0 -0.280092 -0.9596633 -5.69179e-4 -0.2811512 -0.9585365 0 -0.2849697 -1 0 0 -1 0 0 -1 0 0 -0.9591508 0 0.2828954 -0.9596631 -8.33003e-4 0.2811512 -0.9608235 0 0.2771607 -0.8403387 0 0.5420618 -0.840874 -4.25545e-4 0.5412307 -0.8418794 0 0.5396656 -0.6545795 0 0.7559933 -0.6546447 -3.46783e-5 0.7559368 -0.6547469 0 0.7558482 -0.4165412 0 0.9091168 -0.4154945 4.29833e-4 0.9095956 -0.4141279 0 0.9102187 -0.1439396 0 0.9895865 -0.142471 5.09058e-4 0.9897989 -0.1408738 0 0.9900277 0.1408738 0 0.9900277 0.142471 5.09058e-4 0.9897989 0.1439396 0 0.9895865 0.4141279 0 0.9102187 0.4154945 4.29833e-4 0.9095956 0.4165412 0 0.9091168 0.6547469 0 0.7558482 0.6546447 -3.46783e-5 0.7559368 0.6545795 0 0.7559933 0.8418794 0 0.5396656 0.840874 -4.25545e-4 0.5412307 0.8403387 0 0.5420618 0.9608235 0 0.2771607 0.9596631 -8.33003e-4 0.2811512 0.9591508 0 0.2828954 1 0 0 1 0 0 1 0 0 0.9585365 0 -0.2849697 0.9596633 -5.69179e-4 -0.2811512 0.9599732 0 -0.280092 0.8418785 0 -0.5396671 0.8408741 2.12565e-4 -0.5412307 0.840663 0 -0.5415588 0.6543759 0 -0.7561693 0.6546447 -3.01789e-5 -0.7559368 0.6546844 0 -0.7559022 0.4121701 0 -0.911107 0.4154945 -2.07829e-4 -0.9095956 0.4158082 0 -0.9094523 0.129338 0 -0.9916005 0.1424711 -3.79589e-4 -0.9897989 0.1430675 0 -0.9897129 -0.1430675 0 -0.9897129 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9838701 0.1788842 -0.007730364 0.9677938 0.2516258 -0.008649408 0.7070808 0.7070799 0.006879746 0.8947982 0.4464178 0.006871819 0.8719238 0.4895934 0.002814829 0.377206 0.9261251 -0.008792817 0.2516237 0.9677851 0 0.1293374 0.9916006 -0.9629649 0 0.269627 -0.9629649 0 0.269627 -0.251012 0.07028329 0.965429 -0.1845505 0.1845505 0.9653404 -0.07028359 0.2510112 0.9654293 -0.1942211 0.6936423 0.6936414 -0.1935422 0.6935194 0.6939541 -0.5112335 0.5112336 0.690855 -0.5112314 0.5112344 0.690856 -0.6932809 0.1941184 0.6940315 -0.7049736 0.1803423 0.6859219 -0.2607492 0.9343423 0.2429284 -0.243086 0.9349478 0.2584215 -0.682882 0.6828859 0.2594976 -0.6944488 0.6756823 0.2473751 -0.9403539 0.2405559 0.2405565 -0.9297617 0.2603295 0.2603303 -0.2516335 0.9678226 0 -0.2516335 0.9678226 0 -0.7167247 0.6973562 0 -0.7167247 0.6973562 0 -0.962965 0.2696263 0 -0.962965 0.2696263 0 -0.7167251 0 -0.6973558 -0.9629649 0 -0.269627 -0.9629649 0 -0.269627 -0.07028359 0.2510112 -0.9654293 -0.1845506 0.1845506 -0.9653404 -0.2440263 0.938564 -0.2440261 -0.2595868 0.9301772 -0.2595866 -0.6923445 0.673635 -0.2586021 -0.6852509 0.685255 -0.2466917 -0.9343009 0.2616005 -0.2421712 -0.9350127 0.2391895 -0.2618005 -0.1936007 0.6937291 -0.6937282 -0.1941202 0.693282 -0.6940299 -0.5112318 0.5112348 -0.6908552 -0.5112326 0.5112326 -0.6908563 -0.6994224 0.1789222 -0.6919503 -0.7027144 0.1967598 -0.6837237 -0.251012 0.07028329 -0.965429 0 0.1543763 -0.9880121 -0.009795784 0.2516214 -0.9677761 -0.007334709 0.722306 -0.6915347 0.00679636 0.4472005 -0.8944079 0.006780803 0.5067117 -0.8620889 -0.009076535 0.9677828 -0.2516229 0 0.9892032 -0.1465499 -0.2263051 0.7072249 0.6697902 0.3015977 0.696307 0.6513029 0.7167264 0.6973544 0 0.5183387 0.69911 -0.4925142 0.03862148 0.6995103 -0.7135781 -0.1644762 0.9669772 0.1946862 -0.1248043 0.9671578 0.2214269 0.01370066 0.9675313 0.2523798 0.06004744 0.9683741 0.2421693 0.1849305 0.9670732 0.1748434 0.1059339 0.9677575 -0.2285243 -0.1261059 0.966584 -0.2231875 -0.199501 0.9668129 -0.1596003 -0.6712515 0.704275 -0.2311238 -0.4654791 0.8727707 -0.1469718 -0.4844728 0.8612704 -0.1532949 -0.8913083 0.3450198 -0.2941612 -0.915989 0.251125 -0.3128905 -0.944593 0.09943693 -0.3128201 -0.9346077 0.1752427 0.3095133 -0.9163941 0.251105 0.3117182 -0.8494461 0.4497035 0.2760577 -0.6587777 0.7186641 0.2225626 -0.11454 0.9926847 0.03817999 -0.2079164 0.9745261 0.08408081 -0.2403051 0.9673867 0.08010166 -0.2239108 0.9672326 0.119688 -0.2239329 0.9672339 -0.1196353 -0.2369856 0.9674997 -0.08821576 -0.168695 0.984063 -0.05623167 -0.220901 0.9681158 -0.1181289 -0.195109 0.9681603 -0.1568376 -0.1642051 0.9670629 -0.194489 -0.1243403 0.9671458 -0.2217399 -0.03328311 0.9677709 -0.249623 0.01294058 0.9675522 -0.2523397 0.01371669 0.9672559 -0.2534325 0.01418453 0.9682756 -0.2494817 0.05979275 0.9683793 -0.2422114 0.1485582 0.966945 -0.2072386 0.1849181 0.9670735 -0.1748546 0.1827625 0.9676989 -0.173657 0.181624 0.9682638 -0.1716915 0.2103747 0.9683087 -0.1346127 0.2516335 0.9678226 0 0.2516335 0.9678226 0 0.2516335 0.9678227 0 0.2469634 0.9678903 -0.04687726 0.2482241 0.9675434 0.04737603 0.2343087 0.9675045 0.09504997 0.2367252 0.9670455 0.09372389 0.21423 0.9671535 0.1368191 0.1064419 0.9675605 0.2291214 0.1058055 0.9677801 0.2284879 0.1058276 0.9677543 0.2285876 0.1467888 0.9679301 0.2038734 -0.0766099 0.966454 0.245148 -0.08143335 0.9670985 0.2410164 -0.07958346 0.9681548 0.2373665 -0.03413015 0.9680389 0.2484672 -0.1947117 0.9681448 0.1574264 -0.2211804 0.9681038 0.1177042 -0.6276769 0.7031698 0.3340269 -0.6718416 0.7042246 0.2295574 -0.8316648 0.4851421 0.270131 -0.224141 0.7071188 -0.6706294 -0.08158397 0.9665949 -0.242978 -0.08118349 0.9673035 -0.240277 -0.230294 0.6945442 -0.6815959 -0.09658795 0.6949279 -0.7125629 -0.1300739 0.2494957 -0.9596003 0.05087167 0.2513077 -0.9665695 0.3019366 0.6962896 -0.6511644 0.06135189 0.9674767 -0.2454073 0.1061488 0.9675673 -0.2292293 0.3024179 0.6942894 -0.653074 0.4201316 0.6941274 -0.584531 0.5638182 0.2583763 -0.7844429 0.7015674 0.2590524 -0.6638488 0.657499 0.7065963 -0.2615662 0.6635753 0.6994388 -0.2654304 0.7016292 0.6998641 -0.133816 0.5189352 0.6991608 0.4918134 0.2101477 0.9683169 0.1349092 0.1812267 0.9682484 0.1721977 0.5147917 0.7040795 0.4891439 0.4141255 0.7046437 0.5761747 0.562515 0.2665852 0.7826297 0.4170309 0.2669032 0.8688198 0.03983807 0.6995611 0.7134614 0.01843094 0.9683725 0.2488275 0.01364505 0.9676027 0.2521088 0.03827118 0.7060714 0.7071057 -0.09523808 0.7051784 0.7026044 -0.1298174 0.2567928 0.9577082 -0.305629 0.2567279 0.916887 -0.4603919 0.7019324 0.5434429 -0.1641054 0.967066 0.194558 -0.164548 0.966937 0.1948249 -0.463243 0.6961148 0.5484799 -0.5580259 0.6967077 0.4507831 -0.8506854 0.2602313 -0.4567428 -0.2229626 0.9675791 -0.1186526 -0.6337479 0.6961472 -0.3372576 -0.6271286 0.7031058 -0.3351895 -0.8501825 0.2659004 -0.454408 -0.8554773 0.2506282 -0.4531491 -0.7517282 0.2706233 -0.6013882 -0.1978173 0.9671215 -0.159826 -0.5579887 0.6967101 -0.4508255 -0.5582559 0.6964031 -0.4509689 -0.7490752 0.2696682 -0.6051161 -0.7513393 0.2621917 -0.6055946 -0.1644515 0.9669765 -0.1947106 -0.4595423 0.7019816 -0.5440982 -0.464033 0.6961706 -0.5477408 -0.6238481 0.261821 -0.7363854 -0.621176 0.2712791 -0.7352197 -0.1242595 0.9673138 -0.221051 -0.3465486 0.7069951 -0.6164916 -0.3499536 0.7017597 -0.6205367 -0.4731478 0.2687683 -0.8389843 -0.4767771 0.2609524 -0.839397 -0.1288474 0.2567702 -0.9578452 -0.305629 0.2567279 -0.9168869 -0.3062461 0.2581284 -0.9162877 -0.3065935 0.2567667 -0.916554 -0.4726419 0.2588881 -0.8423696 0.05413478 0.2532923 -0.965874 0.05391412 0.2545722 -0.9655498 0.03948223 0.7060217 -0.7070888 -0.09333491 0.7052802 -0.7027577 -0.03303414 0.9680098 -0.2487279 -0.07829689 0.9681807 -0.2376884 0.06135183 0.9674766 -0.2454078 0.1740778 0.696309 -0.6963121 0.1739403 0.6986982 -0.6939493 0.2341818 0.2688215 -0.9342879 0.2314112 0.2534631 -0.9392579 0.5634199 0.2665578 -0.7819878 0.4170309 0.2669032 -0.8688198 0.4046592 0.2732187 -0.8726983 0.4044461 0.2603067 -0.8767347 0.2365246 0.2621741 -0.9355859 0.7046238 0.2473371 -0.6650787 0.7013934 0.2572429 -0.6647355 0.5154538 0.7040323 -0.488514 0.415661 0.7047259 -0.5749672 0.1455301 0.9686573 -0.2013059 0.15098 0.9678227 -0.2013067 0.2147524 0.9670686 -0.1366009 0.5968894 0.7068039 -0.3796725 0.6017773 0.7001448 -0.3842673 0.8154708 0.2526968 -0.5207222 0.8161497 0.2468252 -0.5224721 0.9629638 0.2696306 0 0.9449788 0.2718722 -0.1819358 0.9482918 0.2608299 -0.18086 0.9482879 0.261008 -0.1806234 0.8967889 0.2617092 -0.3567605 0.8974719 0.258296 -0.3575298 0.8130294 0.2577725 -0.5220504 0.9629638 0.2696306 0 0.9629638 0.2696306 0 0.7167264 0.6973544 0 0.70467 0.6965711 -0.1350152 0.2486808 0.9674128 -0.04764741 0.2481271 0.9675516 -0.04771661 0.9482879 0.261008 0.1806234 0.2469177 0.9678809 0.04730957 0.7014893 0.6998912 0.1344058 0.7047534 0.6966033 0.1344119 0.9482918 0.2608299 0.18086 0.9449788 0.2718721 0.1819358 0.2322279 0.9682156 0.09289127 0.6569463 0.7066604 0.2627788 0.6640112 0.699507 0.2641569 0.8976452 0.2582861 0.3571012 0.8966205 0.2616998 0.3571906 0.2123748 0.9678058 0.1350885 0.6024934 0.7000937 0.3832371 0.59627 0.7067469 0.3807505 0.8154708 0.2526969 0.5207222 0.8130294 0.2577725 0.5220504 0.5647161 0.2584066 0.7837867 0.7015674 0.2590524 0.6638488 0.7013934 0.2572429 0.6647355 0.7046238 0.2473371 0.6650787 0.8161497 0.2468252 0.5224721 0.4044461 0.2603067 0.8767347 0.4046592 0.2732187 0.8726983 0.3027438 0.6943063 0.6529051 0.4217932 0.6940296 0.5834496 0.1488554 0.9671839 0.2059057 0.1488695 0.9669557 0.2069647 0.06135171 0.9674767 0.2454074 0.1735082 0.6987219 0.6940336 0.1745008 0.6963297 0.6961856 0.2341818 0.2688215 0.9342879 0.2365246 0.2621741 0.9355859 -0.1291 0.2495277 0.9597235 0.05087167 0.2513077 0.9665695 0.05391412 0.2545722 0.9655498 0.05413478 0.2532923 0.965874 0.2314112 0.2534631 0.9392579 -0.3065935 0.2567667 0.916554 -0.3062461 0.2581284 0.9162877 -0.2280214 0.6946619 0.6822397 -0.09468263 0.6948394 0.7129049 -0.03354847 0.9669889 0.2526004 -0.03234249 0.9677872 0.2496837 -0.1255912 0.9665973 0.22342 -0.3491178 0.7017115 0.6210619 -0.3474251 0.7069473 0.616053 -0.4731478 0.2687683 0.8389843 -0.4726419 0.2588881 0.8423696 -0.8506854 0.2602313 0.4567428 -0.7513393 0.2621915 0.6055946 -0.7490752 0.2696682 0.6051161 -0.7517282 0.2706233 0.6013882 -0.6221522 0.2713071 0.7343835 -0.6228598 0.2618451 0.7372128 -0.4767771 0.2609524 0.839397 -0.8554773 0.2506282 0.4531491 -0.8501825 0.2659004 0.454408 -0.6330834 0.6962109 0.3383722 -0.5582225 0.6964006 0.4510145 -0.1946848 0.9681715 0.1572951 -0.1992351 0.9668231 0.15987 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2576645 0 -0.9662344 -0.05074721 0 -0.9987115 -0.05074721 0 -0.9987115 -0.3301701 0 -0.9439214 -0.3301701 0 -0.9439214 0.2314149 -0.04166501 -0.9719626 0.2337992 -0.0328713 -0.9717291 -0.2353472 -0.01319801 0.9718218 0.2360719 0 -0.9717356 0.498471 0 -0.8669065 0.5025548 0.05025458 -0.8630836 0.4977039 -0.0518344 -0.8657968 0.5000953 0.04980254 -0.8645372 0.5044022 0 -0.8634689 0.7249996 0 -0.6887493 0.7241208 -0.006897449 -0.6896386 0.8897777 0 -0.4563943 0.8898923 -0.008304476 -0.4560952 0.8900858 0 -0.4557931 0.7240293 0 -0.6897691 -0.9833266 0 0.1818479 -0.9818185 -0.044227 0.1845983 0.9825241 -0.002599418 -0.1861173 0.9825702 0 -0.1858918 0.6556872 0 0.7550326 -0.6556872 0 0.7550326 -0.6515577 -0.04579263 0.7572157 -0.6516571 -0.04426085 0.7572213 -0.6510875 0 0.7590027 -0.8414006 0 0.540412 -0.8395078 -0.03620713 0.54214 -0.8394931 0 0.5433704 -0.9587494 0 0.2842525 -0.9582376 0.04984301 0.2815961 -0.9599216 0 0.2802686 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9598937 0 -0.2803642 -0.9588532 0.03467482 -0.281777 -0.9590831 0 -0.2831244 -0.8426965 0 -0.5383889 0.8393291 -0.04166615 0.5420246 0.8395044 0 0.5433529 0.6522963 0 0.757964 0.6490944 0.0781871 0.7566791 0.6515577 0.04579263 0.7572157 0.8899229 0 0.4561109 0.9838697 0 0.1788867 0.9821668 0.01870387 0.187079 0.9826549 -0.003704786 0.1854068 0.9822553 -0.03267395 0.1846804 0.9842713 0 0.1766641 0.8899229 0 0.4561109 0.7249996 0 0.6887493 0.7241208 -0.006897449 0.6896386 0.7232667 0.02902907 0.6899583 0.7348049 0 0.6782786 0.5044022 0 0.8634689 0.4990119 0.0604375 0.864485 0.5005733 0.02391499 0.8653637 0.498471 0 0.8669065 0.2360719 0 0.9717356 0.2353472 0.01319825 0.9718218 0.2337992 -0.03287124 0.9717291 0.2314148 -0.04166501 0.9719625 0.2576645 0 0.9662344 -0.05074721 0 0.9987115 -0.05074721 0 0.9987115 -0.3301701 0 0.9439214 0.3301701 0 -0.9439214 0 -1 0 0 -1 0 0 -1 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 1 0 0 0 0 -1 -0.260666 0 0.9654291 -0.9654291 0 -0.260666 -0.9654291 0 -0.260666 -0.260666 0 -0.9654291 -0.9645484 0.04270619 -0.2604277 -0.9646556 0.04270696 -0.2600302 0.9654291 0 -0.260666 0.2604277 0.04270619 -0.9645484 0.7071068 0 0.7071068 0.2689354 0.9604846 -0.07171601 0.2758985 0.9581687 -0.07611 0.2031767 0.95783 -0.2031767 0.2031767 0.95783 -0.2031767 0.07389479 0.9579936 -0.2771059 0.07417577 0.9603113 -0.2688869 0.6940287 0.6940234 -0.1914564 0.6821739 0.707958 -0.1828504 0.4946855 0.7145437 -0.4946855 0.4946855 0.7145437 -0.4946855 0.1876068 0.7087336 -0.6800739 0.1862189 0.6947355 -0.694741 0.9324051 0.2610736 -0.2499225 0.9336825 0.2543331 -0.2520944 0.6852533 0.2466892 -0.6852533 0.6852534 0.2466892 -0.6852534 0.2503941 0.2542446 -0.9341641 0.2516342 0.2609541 -0.9319781 0 0 0 0 0.7071041 -0.7071095 0 0.7071041 -0.7071095 0 0.2696301 -0.9629639 0 0.2696301 -0.9629639 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.2696297 0.9629641 0 0.7071095 0.7071041 0 0.7071095 0.7071041 0 0.9629639 0.2696301 0 0.9629639 0.2696301 0 -0.07611 0.9581687 -0.2758985 -0.2031767 0.95783 -0.2031767 -0.2031767 0.95783 -0.2031767 -0.2771059 0.9579936 -0.07389479 -0.2688869 0.9603113 -0.07417577 -0.1914564 0.6940234 -0.6940287 -0.1828504 0.7079579 -0.6821739 -0.4946855 0.7145437 -0.4946855 -0.4946855 0.7145437 -0.4946855 -0.6800737 0.7087335 -0.1876068 -0.694741 0.6947355 -0.1862189 -0.2499225 0.2610736 -0.9324051 -0.2520944 0.2543331 -0.9336825 -0.6852533 0.2466892 -0.6852533 -0.6852534 0.2466892 -0.6852534 -0.9341641 0.2542446 -0.2503941 -0.9319781 0.2609541 -0.2516342 0.07171601 0.9604846 0.2689354 0.07611 0.9581687 0.2758985 0.2031767 0.95783 0.2031767 0.2031767 0.95783 0.2031767 0.2771059 0.9579936 0.07389479 0.2688869 0.9603113 0.07417577 0.1914564 0.6940234 0.6940287 0.1828504 0.7079579 0.6821739 0.4946855 0.7145437 0.4946855 0.4946855 0.7145437 0.4946855 0.6800737 0.7087335 0.1876068 0.694741 0.6947355 0.1862189 0.2499225 0.2610736 0.9324051 0.2520944 0.2543331 0.9336825 0.6852533 0.2466892 0.6852533 0.6852534 0.2466892 0.6852534 0.9341641 0.2542446 0.2503941 0.9319781 0.2609541 0.2516342 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.2696297 0.9629641 0 -0.7071095 0.7071041 0 -0.7071095 0.7071041 0 -0.9629639 0.2696301 0 -0.9629639 0.2696301 0 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.9629641 0.2696297 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2696301 0.9629639 0 0.2696301 0.9629639 -0.2689354 0.9604846 0.07171601 -0.2758985 0.9581687 0.07611 -0.2031767 0.95783 0.2031767 -0.2031767 0.95783 0.2031767 -0.07389479 0.9579936 0.2771059 -0.07417577 0.9603113 0.2688869 -0.6940287 0.6940234 0.1914564 -0.6821739 0.707958 0.1828504 -0.4946855 0.7145437 0.4946855 -0.4946855 0.7145437 0.4946855 -0.1876068 0.7087336 0.6800739 -0.1862189 0.6947355 0.694741 -0.9324051 0.2610736 0.2499225 -0.9336825 0.2543331 0.2520944 -0.6852533 0.2466892 0.6852533 -0.6852534 0.2466892 0.6852534 -0.2503941 0.2542446 0.9341641 -0.2516342 0.2609541 0.9319781 -0.9629639 0 -0.2696301 -0.9629639 0 -0.2696301 -0.7167251 0 -0.6973558 -0.7167237 -2.52567e-7 -0.6973572 -0.2516344 0 -0.9678224 -0.2516335 0 -0.9678226 -0.2516344 0 -0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.9629639 0 0.2696301 -0.9629639 0 0.2696301 -1 0 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.9122474 0 0.4096398 -0.8835567 -0.01679629 -0.4680228 -0.957763 0.01149314 -0.2873293 -0.957763 0.01149314 0.2873293 -0.8835567 -0.01679629 0.4680228 -0.9086417 0.007449328 0.4175103 -0.881016 0.007450222 0.4730277 -0.8049004 -0.01266139 0.5932749 -0.9122221 0.007446944 -0.4096284 -0.901296 0 -0.4332039 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 -0.9190827 0.28875 -0.2681613 -0.9068856 0.3034356 -0.292379 -0.9189138 0.2091057 0.3344731 0.9175001 0.1444488 -0.3705781 0.8302804 0.1654177 -0.5322325 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2516344 0 0.9678224 0.002348303 0.6348381 0.7726417 -0.7167251 0 0.6973558 -0.7167251 0 0.6973558 -0.2516344 0 0.9678224 -0.2516344 0 0.9678224 -0.2516344 0 -0.9678224 -0.2516344 0 -0.9678224 -0.7167251 0 -0.6973558 -0.004324674 0.7071006 -0.7070997 0.003669202 0.9127396 -0.4085254 0.2344187 0.967514 -0.09468168 -0.7256583 0.6450302 -0.2394912 -0.3975354 0.9086532 0.1277299 0.2290577 0.9690912 -0.09162318 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0.03485059 -0.9993925 0.9993925 0.03485059 0 -0.9993925 0.03485059 0 -0.9993925 0.03485059 0 0 0 1 0 0 1 1 0 0 0 0 -1 -1 0 0 -1 0 0 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.260666 0 0.9654291 -0.9654291 0 0.260666 -0.9654291 0 0.260666 -0.9646556 0.04270696 0.2600302 -0.9645484 0.04270619 0.2604277 -0.706249 0.04924374 0.7062489 -0.7062489 0.04924374 0.7062489 -0.2604277 0.04270619 0.9645484 -0.2600302 0.04270696 0.9646556 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.260666 0 -0.9654291 -0.2600301 0.04270696 -0.9646555 -0.2604277 0.04270619 -0.9645484 -0.7062489 0.04924374 -0.706249 -0.7062489 0.04924374 -0.7062489 0.260666 0 -0.9654291 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.260666 0 -0.9654291 0.9654291 0 -0.260666 0.9646556 0.04270696 -0.2600302 0.9645484 0.04270619 -0.2604277 0.706249 0.04924374 -0.7062489 0.7062489 0.04924374 -0.7062489 0.2600302 0.04270696 -0.9646556 0.2604278 0.04270619 0.9645484 0.2600301 0.04270696 0.9646556 0.9645479 0.04271709 0.2604277 0.964656 0.04269605 0.2600303 0.7062489 0.04924374 0.7062489 0.706249 0.04924374 0.7062489 0.7071068 0 0.7071068 0.9654291 0 0.260666 0.9654291 0 0.260666 0.260666 0 0.9654291 0.260666 0 0.9654291 0 0 0 0 0 0 -1.5404e-7 1 -6.36081e-7 3.24032e-7 1 5.61656e-7 6.54708e-7 1 0 -6.48629e-7 1 0 -5.82531e-7 1 2.98564e-7 4.26935e-7 1 4.96095e-7 -3.27791e-7 1 5.66667e-7 6.28108e-7 1 1.84581e-7 -1.5404e-7 1 6.36081e-7 5.49908e-7 1 -3.55121e-7 5.49908e-7 1 3.55121e-7 -4.74061e-7 1 -4.51486e-7 0 1 6.53629e-7 2.16121e-7 1 -6.17868e-7 3.24032e-7 1 -5.61656e-7 -5.82531e-7 1 -2.98564e-7 -4.74061e-7 1 4.51486e-7 4.26935e-7 1 -4.96095e-7 -3.27791e-7 1 -5.66667e-7 -6.43363e-7 1 1.20963e-7 2.16121e-7 1 6.17868e-7 6.28108e-7 1 -1.84581e-7 -6.43363e-7 1 -1.20963e-7 0 1 -6.53629e-7 0 0.9629641 -0.2696297 0 0.9629641 -0.2696297 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1872387 -0.9823144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1364855 -0.9817008 -0.1327975 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.08765232 -0.9373711 -0.3371237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0 0 -0.1734797 -0.9848374 0 0 0 0 0 0 0 0 0.9629641 -0.2696297 0 0 0 -0.07171601 0.9604846 -0.2689354 -0.08764123 -0.9899891 0.1106374 0.07545632 -0.9970984 0.01005166 -0.165484 -0.9851234 -0.04633498 0.06710433 -0.9963871 -0.05205571 -0.01855289 -0.9915714 -0.1282264 -0.1596735 -0.9861569 0.0447086 0.01166564 -0.9952132 0.09702873 0.1506127 0.98234 0.1110134 0.01357448 -0.9934884 -0.1131218 0 0 0 -0.1199531 -0.9858954 0.1167114 0.0334047 -0.9960209 0.08262425 0.07395762 -0.9967855 -0.03080356 -0.1550459 -0.986953 0.04341232 -0.04902708 -0.9923275 0.1135011 -0.05939245 -0.9717465 0.2284322 0.01359909 -0.9934894 -0.1131098 0 0 0 -0.1297165 -0.9869306 0.09561127 0.05006933 -0.9965522 0.06615769 0.07658731 -0.9970107 -0.01020228 -0.1044685 -0.9857454 -0.1318801 0.1044685 0.9857454 0.1318801 0 -0.9662557 0.2575849 -0.01562213 -0.9940313 0.1079711 -0.1443563 -0.9795069 -0.1404551 0.03801149 -0.9948446 -0.09401881 0.06233876 -0.9968829 0.04835891 -0.05876457 -0.9889584 -0.136044 -0.05089199 -0.9793348 0.195738 0.01164436 -0.9952126 0.09703755 -0.1872387 -0.9823144 0 0.05545455 -0.995769 -0.0732733 -0.1144365 -0.9871711 0.1113438 0.07075601 -0.9970582 0.02947002 -0.1506127 -0.98234 -0.1110134 0.05876457 0.9889584 0.136044 -0.1603716 -0.9844262 0.07201397 -0.01855289 -0.9915714 -0.1282265 0 0.03485065 0.9993925 0 0.03485059 0.9993926 0 0.03485053 0.9993925 0 0.03485059 0.9993926 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.1707559 -0.9841526 -0.04781168 0.070692 0.9597275 0.2718927 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1790391 0.9805517 0.08039653 -0.1790391 -0.9805517 -0.08039653 0 -0.9156407 -0.4019977 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

376 0 371 0 375 0 325 1 326 1 329 1 161 2 75 2 120 2 122 3 76 3 284 3 277 4 404 4 278 4 278 5 404 5 280 5 280 6 404 6 406 6 280 7 406 7 282 7 408 8 275 8 406 8 406 9 275 9 281 9 406 10 281 10 282 10 410 11 259 11 408 11 408 12 259 12 266 12 408 13 266 13 275 13 414 14 263 14 264 14 414 15 264 15 412 15 412 16 264 16 262 16 412 17 262 17 410 17 410 18 262 18 260 18 410 19 260 19 259 19 263 20 414 20 257 20 257 21 414 21 416 21 257 22 416 22 248 22 248 23 416 23 241 23 241 24 416 24 418 24 241 25 418 25 242 25 420 26 246 26 418 26 418 27 246 27 244 27 418 28 244 28 242 28 230 29 234 29 423 29 423 30 234 30 239 30 423 31 239 31 420 31 420 32 239 32 245 32 420 33 245 33 246 33 230 34 423 34 229 34 229 35 423 35 422 35 229 36 422 36 221 36 221 37 422 37 214 37 214 38 422 38 421 38 214 39 421 39 215 39 215 40 421 40 217 40 217 41 421 41 419 41 217 42 419 42 219 42 417 43 212 43 419 43 419 44 212 44 218 44 419 45 218 45 219 45 199 46 197 46 415 46 415 47 197 47 196 47 415 48 196 48 417 48 417 49 196 49 203 49 417 50 203 50 212 50 199 51 415 51 201 51 201 52 415 52 413 52 201 53 413 53 200 53 200 54 413 54 194 54 194 55 413 55 411 55 194 56 411 56 185 56 185 57 411 57 409 57 185 58 409 58 178 58 178 59 409 59 407 59 178 60 407 60 179 60 405 61 183 61 407 61 407 62 183 62 181 62 407 63 181 63 179 63 167 64 171 64 403 64 403 65 171 65 176 65 403 66 176 66 405 66 405 67 176 67 182 67 405 68 182 68 183 68 167 69 403 69 166 69 166 70 403 70 402 70 166 71 402 71 162 71 84 72 76 72 122 72 122 73 123 73 84 73 84 74 123 74 150 74 84 75 150 75 151 75 151 76 124 76 84 76 126 77 125 77 84 77 84 78 125 78 27 78 84 79 27 79 82 79 118 80 117 80 107 80 107 81 106 81 28 81 120 82 107 82 121 82 121 83 107 83 119 83 118 84 107 84 130 84 130 85 107 85 28 85 130 86 28 86 129 86 41 87 40 87 127 87 31 88 30 88 173 88 114 89 74 89 36 89 28 90 106 90 34 90 108 91 35 91 110 91 110 92 35 92 34 92 110 93 34 93 109 93 109 94 34 94 106 94 108 95 111 95 35 95 36 96 116 96 114 96 78 97 40 97 80 97 80 98 40 98 79 98 40 99 81 99 83 99 125 100 127 100 27 100 27 101 127 101 40 101 27 102 40 102 82 102 82 103 40 103 83 103 79 104 40 104 77 104 77 105 40 105 39 105 77 106 39 106 73 106 73 107 39 107 38 107 73 108 38 108 74 108 74 109 38 109 37 109 74 110 37 110 36 110 173 111 30 111 152 111 152 112 30 112 29 112 152 113 29 113 188 113 188 114 29 114 71 114 188 115 71 115 190 115 190 116 71 116 72 116 190 117 72 117 134 117 173 118 133 118 31 118 31 119 133 119 169 119 31 120 169 120 32 120 32 121 169 121 164 121 32 122 164 122 33 122 33 123 164 123 132 123 33 124 132 124 34 124 34 125 132 125 159 125 34 126 159 126 28 126 28 127 159 127 131 127 28 128 131 128 129 128 127 129 128 129 41 129 41 130 128 130 148 130 41 131 148 131 42 131 42 132 148 132 291 132 42 133 291 133 43 133 43 134 291 134 289 134 43 135 289 135 44 135 44 136 289 136 158 136 44 137 158 137 45 137 158 138 157 138 45 138 45 139 157 139 272 139 45 140 272 140 46 140 46 141 272 141 146 141 46 142 146 142 47 142 47 143 146 143 147 143 47 144 147 144 48 144 48 145 147 145 271 145 48 146 271 146 49 146 49 147 271 147 269 147 49 148 269 148 50 148 269 149 156 149 50 149 50 150 156 150 155 150 50 151 155 151 51 151 51 152 155 152 254 152 51 153 254 153 52 153 52 154 254 154 144 154 52 155 144 155 53 155 53 156 144 156 145 156 53 157 145 157 54 157 145 158 253 158 54 158 54 159 253 159 251 159 54 160 251 160 55 160 55 161 251 161 154 161 55 162 154 162 56 162 56 163 154 163 236 163 56 164 236 164 57 164 57 165 236 165 143 165 57 166 143 166 58 166 143 167 232 167 58 167 58 168 232 168 142 168 58 169 142 169 59 169 59 170 142 170 227 170 59 171 227 171 60 171 60 172 227 172 140 172 60 173 140 173 61 173 61 174 140 174 141 174 61 175 141 175 62 175 141 176 226 176 62 176 62 177 226 177 224 177 62 178 224 178 63 178 64 179 209 179 139 179 64 180 139 180 65 180 65 181 139 181 138 181 65 182 138 182 66 182 66 183 138 183 137 183 66 184 137 184 67 184 67 185 137 185 208 185 67 186 208 186 68 186 208 187 206 187 68 187 68 188 206 188 153 188 68 189 153 189 69 189 69 190 153 190 191 190 69 191 191 191 70 191 70 192 191 192 136 192 70 193 136 193 72 193 72 194 136 194 135 194 72 195 135 195 134 195 71 196 308 196 309 196 71 197 29 197 308 197 308 198 29 198 30 198 308 199 30 199 292 199 30 200 31 200 292 200 292 201 31 201 32 201 292 202 32 202 307 202 32 203 33 203 307 203 307 204 33 204 34 204 307 205 34 205 306 205 34 206 35 206 306 206 306 207 35 207 36 207 306 208 36 208 305 208 36 209 37 209 305 209 305 210 37 210 38 210 305 211 38 211 304 211 38 212 39 212 304 212 304 213 39 213 40 213 304 214 40 214 303 214 40 215 41 215 303 215 303 216 41 216 42 216 303 217 42 217 302 217 42 218 43 218 302 218 302 219 43 219 44 219 302 220 44 220 301 220 44 221 45 221 301 221 301 222 45 222 46 222 301 223 46 223 293 223 46 224 47 224 293 224 293 225 47 225 48 225 293 226 48 226 294 226 48 227 49 227 294 227 294 228 49 228 50 228 294 229 50 229 295 229 50 230 51 230 295 230 295 231 51 231 52 231 295 232 52 232 296 232 52 233 53 233 296 233 296 234 53 234 54 234 296 235 54 235 297 235 54 236 55 236 297 236 297 237 55 237 56 237 297 238 56 238 298 238 56 239 57 239 298 239 298 240 57 240 58 240 298 241 58 241 299 241 58 242 59 242 299 242 299 243 59 243 60 243 299 244 60 244 300 244 60 245 61 245 300 245 300 246 61 246 62 246 300 247 62 247 313 247 62 248 63 248 313 248 313 249 63 249 64 249 313 250 64 250 312 250 64 251 65 251 312 251 312 252 65 252 66 252 312 253 66 253 311 253 66 254 67 254 311 254 311 255 67 255 68 255 311 256 68 256 310 256 68 257 69 257 310 257 310 258 69 258 70 258 310 259 70 259 309 259 309 260 70 260 72 260 309 261 72 261 71 261 399 262 95 262 398 262 398 263 95 263 99 263 398 264 99 264 397 264 93 265 77 265 73 265 93 266 73 266 115 266 115 267 73 267 74 267 115 268 74 268 114 268 77 269 93 269 79 269 79 270 93 270 89 270 85 271 78 271 89 271 89 272 78 272 80 272 89 273 80 273 79 273 81 274 85 274 83 274 83 275 85 275 84 275 83 276 84 276 82 276 95 277 399 277 401 277 95 278 401 278 92 278 84 279 87 279 88 279 86 280 87 280 84 280 85 281 86 281 84 281 85 282 89 282 86 282 86 283 89 283 90 283 86 284 90 284 87 284 87 285 90 285 91 285 87 286 91 286 88 286 88 287 91 287 92 287 89 288 93 288 90 288 90 289 93 289 94 289 90 290 94 290 91 290 91 291 94 291 96 291 91 292 96 292 92 292 92 293 96 293 95 293 93 294 115 294 97 294 93 295 97 295 94 295 94 296 97 296 98 296 94 297 98 297 96 297 96 298 98 298 99 298 96 299 99 299 95 299 105 300 400 300 103 300 103 301 400 301 397 301 103 302 397 302 99 302 101 303 112 303 107 303 101 304 107 304 104 304 115 305 113 305 97 305 97 306 113 306 100 306 97 307 100 307 98 307 98 308 100 308 102 308 98 309 102 309 99 309 99 310 102 310 103 310 113 311 112 311 100 311 100 312 112 312 101 312 100 313 101 313 102 313 102 314 101 314 104 314 102 315 104 315 103 315 103 316 104 316 105 316 105 317 104 317 107 317 106 318 107 318 109 318 109 319 107 319 112 319 111 320 108 320 112 320 112 321 108 321 110 321 112 322 110 322 109 322 116 323 113 323 115 323 116 324 115 324 114 324 268 325 274 325 276 325 250 326 256 326 258 326 223 327 228 327 231 327 205 328 211 328 213 328 187 329 193 329 195 329 158 330 289 330 290 330 272 331 157 331 273 331 156 332 269 332 270 332 254 333 155 333 255 333 154 334 251 334 252 334 153 335 206 335 207 335 173 336 152 336 174 336 164 337 169 337 170 337 163 338 117 338 160 338 160 339 117 339 118 339 160 340 118 340 130 340 119 341 163 341 121 341 121 342 163 342 161 342 121 343 161 343 120 343 122 344 284 344 123 344 123 345 284 345 286 345 123 346 286 346 150 346 149 347 124 347 151 347 125 348 126 348 127 348 127 349 126 349 149 349 127 350 149 350 128 350 128 351 149 351 148 351 159 352 160 352 131 352 131 353 160 353 130 353 131 354 130 354 129 354 159 355 132 355 165 355 165 356 132 356 164 356 169 357 133 357 175 357 175 358 133 358 173 358 190 359 134 359 187 359 187 360 134 360 135 360 187 361 135 361 193 361 193 362 135 362 136 362 193 363 136 363 191 363 208 364 137 364 205 364 205 365 137 365 138 365 205 366 138 366 211 366 211 367 138 367 139 367 211 368 139 368 209 368 227 369 228 369 140 369 140 370 228 370 223 370 140 371 223 371 141 371 141 372 223 372 226 372 227 373 142 373 233 373 233 374 142 374 232 374 232 375 143 375 238 375 238 376 143 376 236 376 254 377 256 377 144 377 144 378 256 378 250 378 144 379 250 379 145 379 145 380 250 380 253 380 272 381 274 381 146 381 146 382 274 382 268 382 146 383 268 383 147 383 147 384 268 384 271 384 291 385 148 385 288 385 288 386 148 386 149 386 288 387 149 387 286 387 286 388 149 388 151 388 286 389 151 389 150 389 180 390 184 390 174 390 152 391 188 391 174 391 174 392 188 392 189 392 174 393 189 393 180 393 180 394 189 394 186 394 180 395 186 395 178 395 178 396 186 396 185 396 198 397 202 397 192 397 191 398 153 398 192 398 192 399 153 399 207 399 192 400 207 400 198 400 198 401 207 401 204 401 198 402 204 402 196 402 196 403 204 403 203 403 216 404 220 404 210 404 210 405 225 405 216 405 216 406 225 406 222 406 243 407 247 407 237 407 236 408 154 408 237 408 237 409 154 409 252 409 237 410 252 410 243 410 243 411 252 411 249 411 243 412 249 412 241 412 241 413 249 413 248 413 261 414 265 414 255 414 155 415 156 415 255 415 255 416 156 416 270 416 255 417 270 417 261 417 261 418 270 418 267 418 261 419 267 419 259 419 259 420 267 420 266 420 279 421 283 421 273 421 157 422 158 422 273 422 273 423 158 423 290 423 273 424 290 424 279 424 279 425 290 425 287 425 168 426 166 426 162 426 159 427 165 427 160 427 160 428 165 428 168 428 160 429 168 429 163 429 163 430 168 430 162 430 163 431 162 431 161 431 172 432 171 432 167 432 164 433 170 433 165 433 165 434 170 434 172 434 165 435 172 435 168 435 168 436 172 436 167 436 168 437 167 437 166 437 169 438 175 438 170 438 170 439 175 439 177 439 170 440 177 440 172 440 172 441 177 441 176 441 172 442 176 442 171 442 173 443 174 443 175 443 175 444 174 444 184 444 175 445 184 445 177 445 177 446 184 446 182 446 177 447 182 447 176 447 178 448 179 448 180 448 180 449 179 449 181 449 180 450 181 450 184 450 184 451 181 451 183 451 184 452 183 452 182 452 194 453 185 453 195 453 195 454 185 454 186 454 195 455 186 455 187 455 187 456 186 456 189 456 187 457 189 457 190 457 190 458 189 458 188 458 191 459 192 459 193 459 193 460 192 460 202 460 193 461 202 461 195 461 195 462 202 462 200 462 195 463 200 463 194 463 196 464 197 464 198 464 198 465 197 465 199 465 198 466 199 466 202 466 202 467 199 467 201 467 202 468 201 468 200 468 212 469 203 469 213 469 213 470 203 470 204 470 213 471 204 471 205 471 205 472 204 472 207 472 205 473 207 473 208 473 208 474 207 474 206 474 209 475 210 475 211 475 211 476 210 476 220 476 211 477 220 477 213 477 213 478 220 478 218 478 213 479 218 479 212 479 221 480 214 480 222 480 222 481 214 481 215 481 222 482 215 482 216 482 216 483 215 483 217 483 216 484 217 484 220 484 220 485 217 485 219 485 220 486 219 486 218 486 229 487 221 487 231 487 231 488 221 488 222 488 231 489 222 489 223 489 223 490 222 490 225 490 223 491 225 491 226 491 226 492 225 492 224 492 235 493 234 493 230 493 227 494 233 494 228 494 228 495 233 495 235 495 228 496 235 496 231 496 231 497 235 497 230 497 231 498 230 498 229 498 232 499 238 499 233 499 233 500 238 500 240 500 233 501 240 501 235 501 235 502 240 502 239 502 235 503 239 503 234 503 236 504 237 504 238 504 238 505 237 505 247 505 238 506 247 506 240 506 240 507 247 507 245 507 240 508 245 508 239 508 241 509 242 509 243 509 243 510 242 510 244 510 243 511 244 511 247 511 247 512 244 512 246 512 247 513 246 513 245 513 257 514 248 514 258 514 258 515 248 515 249 515 258 516 249 516 250 516 250 517 249 517 252 517 250 518 252 518 253 518 253 519 252 519 251 519 254 520 255 520 256 520 256 521 255 521 265 521 256 522 265 522 258 522 258 523 265 523 263 523 258 524 263 524 257 524 259 525 260 525 261 525 261 526 260 526 262 526 261 527 262 527 265 527 265 528 262 528 264 528 265 529 264 529 263 529 275 530 266 530 276 530 276 531 266 531 267 531 276 532 267 532 268 532 268 533 267 533 270 533 268 534 270 534 271 534 271 535 270 535 269 535 272 536 273 536 274 536 274 537 273 537 283 537 274 538 283 538 276 538 276 539 283 539 281 539 276 540 281 540 275 540 285 541 277 541 287 541 287 542 277 542 278 542 287 543 278 543 279 543 279 544 278 544 280 544 279 545 280 545 283 545 283 546 280 546 282 546 283 547 282 547 281 547 284 548 285 548 286 548 286 549 285 549 287 549 286 550 287 550 288 550 288 551 287 551 290 551 288 552 290 552 291 552 291 553 290 553 289 553 301 554 293 554 389 554 308 555 292 555 363 555 363 556 292 556 307 556 389 557 293 557 385 557 385 558 293 558 294 558 385 559 294 559 380 559 380 560 294 560 295 560 380 561 295 561 377 561 377 562 295 562 296 562 377 563 296 563 373 563 373 564 296 564 297 564 373 565 297 565 370 565 370 566 297 566 298 566 370 567 298 567 390 567 390 568 298 568 299 568 390 569 299 569 393 569 393 570 299 570 300 570 393 571 300 571 313 571 389 572 387 572 301 572 301 573 387 573 365 573 301 574 365 574 302 574 302 575 365 575 342 575 302 576 342 576 303 576 303 577 342 577 345 577 303 578 345 578 304 578 304 579 345 579 351 579 304 580 351 580 305 580 305 581 351 581 354 581 305 582 354 582 306 582 306 583 354 583 357 583 306 584 357 584 307 584 307 585 357 585 359 585 307 586 359 586 363 586 363 587 337 587 308 587 308 588 337 588 315 588 308 589 315 589 309 589 309 590 315 590 319 590 309 591 319 591 310 591 310 592 319 592 324 592 310 593 324 593 311 593 311 594 324 594 327 594 311 595 327 595 312 595 312 596 327 596 330 596 312 597 330 597 313 597 313 598 330 598 334 598 313 599 334 599 393 599 317 600 314 600 319 600 314 601 315 601 319 601 314 602 316 602 315 602 316 603 337 603 315 603 316 604 336 604 337 604 317 605 319 605 318 605 319 606 320 606 318 606 319 607 320 607 324 607 324 608 321 608 320 608 324 609 322 609 321 609 322 610 324 610 323 610 324 611 325 611 323 611 324 612 327 612 325 612 325 613 327 613 326 613 327 614 329 614 326 614 327 615 330 615 329 615 333 616 328 616 334 616 328 617 330 617 334 617 328 618 331 618 330 618 331 619 329 619 330 619 392 620 393 620 332 620 332 621 393 621 334 621 332 622 335 622 334 622 335 623 333 623 334 623 361 624 338 624 363 624 364 625 365 625 339 625 365 626 340 626 339 626 365 627 342 627 340 627 340 628 342 628 341 628 342 629 343 629 341 629 342 630 345 630 343 630 343 631 345 631 344 631 345 632 346 632 344 632 345 633 351 633 346 633 346 634 351 634 347 634 351 635 348 635 347 635 351 636 349 636 348 636 349 637 351 637 350 637 351 638 352 638 350 638 351 639 354 639 352 639 352 640 354 640 353 640 354 641 355 641 353 641 354 642 357 642 355 642 355 643 357 643 356 643 357 644 358 644 356 644 357 645 358 645 359 645 359 646 358 646 360 646 359 647 360 647 363 647 363 648 360 648 362 648 363 649 362 649 361 649 372 650 370 650 373 650 390 651 366 651 391 651 366 652 390 652 367 652 390 653 368 653 367 653 390 654 370 654 368 654 370 655 369 655 368 655 370 656 372 656 369 656 375 657 371 657 377 657 371 658 373 658 377 658 371 659 374 659 373 659 374 660 372 660 373 660 375 661 377 661 376 661 377 662 378 662 376 662 377 663 380 663 378 663 378 664 380 664 379 664 380 665 381 665 379 665 380 666 385 666 381 666 385 667 382 667 381 667 385 668 383 668 382 668 383 669 385 669 384 669 385 670 386 670 384 670 385 671 389 671 386 671 389 672 388 672 386 672 389 673 388 673 387 673 559 708 557 708 593 708 595 708 6 787 26 787 3 787 6 788 22 788 26 788 8 789 22 789 6 789 8 790 20 790 22 790 11 791 20 791 8 791 11 792 18 792 20 792 25 793 0 793 2 793 1 794 24 794 4 794 9 795 19 795 10 795 7 796 19 796 9 796 7 797 21 797 19 797 5 798 21 798 7 798 5 799 23 799 21 799 23 800 4 800 24 800 5 801 4 801 23 801 10 802 15 802 12 802 18 803 13 803 14 803 11 804 13 804 18 804 3 805 25 805 2 805 26 806 25 806 3 806 16 807 15 807 17 807 162 808 13 808 161 808 161 809 13 809 75 809 284 810 76 810 16 810 284 811 16 811 285 811 285 812 16 812 17 812 285 813 17 813 277 813 277 814 17 814 404 814 162 815 402 815 14 815 162 816 14 816 13 816 4 817 76 817 84 817 84 818 124 818 126 818 107 819 117 819 119 819 75 820 2 820 120 820 120 821 2 821 107 821 35 822 111 822 36 822 36 823 111 823 116 823 78 824 81 824 40 824 63 825 224 825 209 825 63 826 209 826 64 826 75 827 13 827 11 827 2 828 75 828 3 828 3 829 75 829 11 829 3 830 11 830 6 830 6 831 11 831 8 831 12 832 15 832 16 832 16 833 76 833 12 833 12 834 76 834 4 834 12 835 4 835 9 835 9 836 4 836 5 836 9 837 5 837 7 837 9 838 10 838 12 838 85 839 81 839 78 839 92 840 401 840 1 840 92 841 1 841 88 841 88 842 1 842 4 842 88 843 4 843 84 843 105 844 107 844 2 844 2 845 0 845 105 845 105 846 0 846 400 846 111 847 112 847 113 847 111 848 113 848 116 848 209 849 224 849 225 849 163 850 119 850 117 850 126 851 124 851 149 851 210 852 209 852 225 852 550 859 548 859 407 859 409 859 544 860 543 860 402 860 403 860 545 868 534 868 570 868 581 868 423 869 420 869 561 869 564 869 590 919 588 919 552 919 554 919 558 920 556 920 415 920 417 920 530 921 385 921 380 921 530 922 337 922 363 922 530 923 354 923 351 923 530 924 390 924 393 924 530 925 334 925 330 925 530 926 363 926 359 926 530 927 327 927 324 927 530 928 357 928 354 928 530 929 324 929 319 929 530 930 345 930 342 930 530 931 359 931 357 931 530 932 377 932 373 932 530 933 319 933 315 933 389 934 530 934 387 934 530 935 365 935 387 935 530 936 373 936 370 936 530 937 330 937 327 937 365 938 530 938 342 938 530 939 380 939 377 939 530 940 393 940 334 940 337 941 530 941 315 941 530 942 351 942 345 942 390 943 530 943 370 943 530 944 389 944 385 944 395 947 574 947 538 947 531 947 414 948 412 948 553 948 555 948 1 949 401 949 542 949 531 949 536 950 535 950 19 950 21 950 560 951 558 951 417 951 419 951 541 952 539 952 397 952 400 952 25 953 26 953 644 953 535 954 532 954 10 954 19 954 476 955 477 955 567 955 566 955 422 956 423 956 564 956 563 956 406 957 404 957 545 957 547 957 552 958 550 958 409 958 411 958 416 959 414 959 555 959 557 959 531 960 538 960 24 960 1 960 537 961 536 961 21 961 23 961 562 962 560 962 419 962 421 962 401 963 399 963 540 963 542 963 408 964 406 964 547 964 549 964 554 965 552 965 411 965 413 965 400 966 0 966 479 966 541 966 533 967 534 967 17 967 15 967 418 968 416 968 557 968 559 968 23 969 24 969 538 969 537 969 475 970 476 970 566 970 565 970 421 971 422 971 563 971 562 971 546 972 544 972 403 972 405 972 404 973 17 973 534 973 545 973 410 974 408 974 549 974 551 974 556 975 554 975 413 975 415 975 532 976 533 976 15 976 10 976 420 977 418 977 559 977 561 977 409 978 475 978 565 978 550 978 477 979 478 979 568 979 567 979 548 980 546 980 405 980 407 980 412 981 410 981 551 981 553 981 587 982 585 982 624 982 626 982 605 983 608 983 569 983 394 983 602 984 603 984 642 984 641 984 621 985 619 985 580 985 582 985 598 986 599 986 638 986 637 986 595 987 593 987 632 987 634 987 581 988 570 988 609 988 620 988 573 989 572 989 536 989 537 989 562 990 563 990 599 990 598 990 582 991 580 991 544 991 546 991 566 992 567 992 603 992 602 992 394 993 569 993 533 993 532 993 551 994 549 994 585 994 587 994 396 995 577 995 541 995 479 995 592 996 590 996 554 996 556 996 561 997 559 997 595 997 597 997 537 998 538 998 574 998 573 998 584 999 582 999 546 999 548 999 571 1000 394 1000 532 1000 535 1000 553 1001 551 1001 587 1001 589 1001 594 1002 592 1002 556 1002 558 1002 564 1003 561 1003 597 1003 600 1003 580 1004 579 1004 543 1004 544 1004 565 1005 566 1005 602 1005 601 1005 569 1006 570 1006 534 1006 533 1006 586 1007 584 1007 548 1007 550 1007 555 1008 553 1008 589 1008 591 1008 550 1009 565 1009 601 1009 586 1009 596 1010 594 1010 558 1010 560 1010 577 1011 575 1011 539 1011 541 1011 644 1012 22 1012 20 1012 563 1013 564 1013 600 1013 599 1013 547 1014 545 1014 581 1014 583 1014 567 1015 568 1015 604 1015 603 1015 572 1016 571 1016 535 1016 536 1016 588 1017 586 1017 550 1017 552 1017 531 1018 542 1018 578 1018 395 1018 557 1019 555 1019 591 1019 593 1019 598 1020 596 1020 560 1020 562 1020 542 1021 540 1021 576 1021 578 1021 549 1022 547 1022 583 1022 585 1022 607 1023 616 1023 577 1023 396 1023 631 1024 629 1024 590 1024 592 1024 597 1025 595 1025 634 1025 636 1025 623 1026 621 1026 582 1026 584 1026 610 1027 605 1027 394 1027 571 1027 589 1028 587 1028 626 1028 628 1028 573 1029 574 1029 613 1029 612 1029 633 1030 631 1030 592 1030 594 1030 611 1031 610 1031 571 1031 572 1031 600 1032 597 1032 636 1032 639 1032 619 1033 618 1033 579 1033 580 1033 601 1034 602 1034 641 1034 640 1034 608 1035 609 1035 570 1035 569 1035 625 1036 623 1036 584 1036 586 1036 591 1037 589 1037 628 1037 630 1037 612 1038 611 1038 572 1038 573 1038 586 1039 601 1039 640 1039 625 1039 635 1040 633 1040 594 1040 596 1040 616 1041 614 1041 575 1041 577 1041 599 1042 600 1042 639 1042 638 1042 583 1043 581 1043 620 1043 622 1043 603 1044 604 1044 643 1044 642 1044 627 1045 625 1045 586 1045 588 1045 607 1046 25 1046 644 1046 395 1047 578 1047 617 1047 606 1047 593 1048 591 1048 630 1048 632 1048 637 1049 635 1049 596 1049 598 1049 578 1050 576 1050 615 1050 617 1050 585 1051 583 1051 622 1051 624 1051 606 1052 613 1052 574 1052 395 1052 629 1053 627 1053 588 1053 590 1053 396 1054 25 1054 607 1054 644 1055 615 1055 398 1055 398 1056 615 1056 576 1056 614 1057 398 1057 575 1057 398 1058 540 1058 399 1058 644 1059 398 1059 614 1059 398 1060 576 1060 540 1060 539 1061 398 1061 397 1061 575 1063 398 1063 539 1063 622 1065 620 1065 644 1065 638 1066 639 1066 644 1066 644 1067 614 1067 616 1067 644 1068 633 1068 635 1068 625 1069 644 1069 640 1069 644 1070 611 1070 612 1070 630 1071 628 1071 644 1071 642 1072 643 1072 644 1072 644 1073 625 1073 627 1073 479 1074 25 1074 396 1074 606 1075 617 1075 644 1075 632 1076 630 1076 644 1076 644 1077 635 1077 637 1077 617 1078 615 1078 644 1078 624 1079 622 1079 644 1079 644 1080 613 1080 606 1080 644 1081 627 1081 629 1081 0 1082 25 1082 479 1082 620 1083 609 1083 644 1083 634 1084 632 1084 644 1084 637 1085 638 1085 644 1085 644 1086 619 1086 621 1086 641 1087 642 1087 644 1087 644 1088 608 1088 605 1088 626 1089 624 1089 644 1089 644 1090 616 1090 607 1090 644 1091 629 1091 631 1091 636 1092 634 1092 644 1092 644 1093 621 1093 623 1093 644 1094 605 1094 610 1094 628 1095 626 1095 644 1095 612 1096 613 1096 644 1096 644 1097 631 1097 633 1097 644 1098 610 1098 611 1098 639 1099 636 1099 644 1099 644 1100 618 1100 619 1100 640 1101 641 1101 644 1101 644 1102 609 1102 608 1102 644 1103 623 1103 625 1103 26 1128 22 1128 644 1128 644 1129 18 1129 20 1129 543 1130 14 1130 402 1130 478 1131 14 1131 568 1131 568 1132 14 1132 604 1132 579 1133 14 1133 543 1133 604 1134 14 1134 643 1134 618 1135 14 1135 579 1135 643 1136 14 1136 644 1136 644 1137 14 1137 618 1137 18 1138 14 1138 644 1138

+
+ + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

453 674 526 674 528 674 453 675 503 675 524 675 453 676 449 676 503 676 503 677 449 677 466 677 529 678 528 678 520 678 523 679 521 679 522 679 483 680 481 680 468 680 467 681 469 681 457 681 430 682 432 682 439 682 439 683 441 683 430 683 466 684 456 684 468 684 426 685 424 685 441 685 441 686 424 686 430 686 520 687 514 687 522 687 497 688 524 688 503 688 498 689 515 689 500 689 505 690 516 690 501 690 501 691 516 691 508 691 501 692 508 692 491 692 491 693 508 693 493 693 491 694 493 694 489 694 489 695 493 695 487 695 516 696 518 696 508 696 508 697 518 697 510 697 508 698 510 698 493 698 493 699 510 699 495 699 493 700 495 700 487 700 487 701 495 701 485 701 518 702 522 702 510 702 510 703 522 703 514 703 510 704 514 704 495 704 495 705 514 705 499 705 495 706 499 706 485 706 485 707 499 707 483 707 472 709 487 709 485 709 472 710 485 710 470 710 470 711 485 711 483 711 470 712 483 712 468 712 506 713 507 713 517 713 516 714 505 714 506 714 506 715 517 715 516 715 516 716 517 716 519 716 516 717 519 717 518 717 518 718 519 718 523 718 518 719 523 719 522 719 464 720 472 720 460 720 464 721 460 721 451 721 451 722 460 722 444 722 451 723 444 723 446 723 446 724 444 724 436 724 472 725 470 725 460 725 460 726 470 726 458 726 460 727 458 727 444 727 444 728 458 728 442 728 444 729 442 729 436 729 436 730 442 730 434 730 470 731 468 731 458 731 458 732 468 732 456 732 458 733 456 733 442 733 442 734 456 734 439 734 442 735 439 735 434 735 434 736 439 736 432 736 490 737 488 737 492 737 492 738 488 738 494 738 492 739 494 739 502 739 502 740 494 740 509 740 502 741 509 741 507 741 507 742 509 742 517 742 488 743 486 743 494 743 494 744 486 744 496 744 494 745 496 745 509 745 509 746 496 746 511 746 509 747 511 747 517 747 517 748 511 748 519 748 486 749 484 749 496 749 496 750 484 750 500 750 496 751 500 751 511 751 511 752 500 752 515 752 511 753 515 753 519 753 519 754 515 754 523 754 447 755 446 755 436 755 437 756 448 756 447 756 447 757 436 757 437 757 437 758 436 758 434 758 437 759 434 759 435 759 435 760 434 760 432 760 435 761 432 761 433 761 480 762 474 762 473 762 488 763 490 763 480 763 480 764 473 764 488 764 488 765 473 765 471 765 488 766 471 766 486 766 486 767 471 767 469 767 486 768 469 768 484 768 448 769 437 769 452 769 452 770 437 770 445 770 452 771 445 771 465 771 465 772 445 772 461 772 465 773 461 773 474 773 474 774 461 774 473 774 437 775 435 775 445 775 445 776 435 776 443 776 445 777 443 777 461 777 461 778 443 778 459 778 461 779 459 779 473 779 473 780 459 780 471 780 435 781 433 781 443 781 443 782 433 782 440 782 443 783 440 783 459 783 459 784 440 784 457 784 459 785 457 785 471 785 471 786 457 786 469 786 529 853 527 853 453 853 450 854 429 854 453 854 528 855 529 855 453 855 429 856 427 856 453 856 525 857 504 857 453 857 504 858 450 858 453 858 453 861 425 861 424 861 453 862 428 862 449 862 453 863 426 863 428 863 453 864 424 864 426 864 527 865 525 865 453 865 453 866 524 866 526 866 427 867 425 867 453 867 503 870 466 870 481 870 529 871 520 871 521 871 424 872 425 872 431 872 424 873 431 873 430 873 469 874 467 874 484 874 484 875 467 875 482 875 522 876 521 876 520 876 468 877 481 877 466 877 432 878 430 878 433 878 433 879 430 879 431 879 440 880 438 880 457 880 457 881 438 881 454 881 457 882 454 882 467 882 438 883 440 883 431 883 431 884 440 884 433 884 438 885 431 885 425 885 438 886 425 886 427 886 438 887 427 887 454 887 454 888 427 888 429 888 454 889 429 889 450 889 454 890 450 890 467 890 456 891 455 891 439 891 439 892 455 892 441 892 455 893 456 893 466 893 455 894 466 894 449 894 455 895 449 895 428 895 455 896 428 896 441 896 441 897 428 897 426 897 481 898 483 898 499 898 514 899 512 899 499 899 499 900 512 900 497 900 499 901 497 901 481 901 512 902 514 902 520 902 512 903 520 903 528 903 512 904 528 904 526 904 512 905 526 905 497 905 497 906 526 906 524 906 497 907 503 907 481 907 525 908 498 908 504 908 504 909 498 909 482 909 529 910 521 910 527 910 527 911 521 911 513 911 498 912 525 912 527 912 498 913 527 913 513 913 498 914 513 914 515 914 515 915 513 915 523 915 523 916 513 916 521 916 498 917 500 917 482 917 482 918 500 918 484 918 462 945 489 945 487 945 462 946 487 946 472 946 472 1062 463 1062 462 1062 463 1064 472 1064 464 1064 645 1104 450 1104 504 1104 504 1105 482 1105 645 1105 482 1106 467 1106 645 1106 467 1107 450 1107 645 1107 646 1108 452 1108 465 1108 489 1109 462 1109 646 1109 646 1110 506 1110 505 1110 646 1111 465 1111 474 1111 463 1112 464 1112 646 1112 447 1113 448 1113 646 1113 646 1114 492 1114 502 1114 646 1115 490 1115 492 1115 646 1116 502 1116 507 1116 646 1117 448 1117 452 1117 646 1118 507 1118 506 1118 446 1119 447 1119 646 1119 462 1120 463 1120 646 1120 501 1121 491 1121 646 1121 505 1122 501 1122 646 1122 451 1123 446 1123 646 1123 646 1124 480 1124 490 1124 646 1125 474 1125 480 1125 491 1126 489 1126 646 1126 464 1127 451 1127 646 1127

+
+
+ 1 +
+
+ + + + 7.481132 -6.50764 5.343665 + 0 0 1 46.69194 + 0 1 0 0.619768 + 1 0 0 63.5593 + 1 1 1 + + + + 4.076245 1.005454 5.903862 + 0 0 1 106.9363 + 0 1 0 3.163707 + 1 0 0 37.26105 + 1 1 1 + + + + 0 0 0 + 0 0 1 0 + 0 1 0 0 + 1 0 0 90.00001 + 1 1 1 + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.STL b/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.STL new file mode 100755 index 0000000..880c11b Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.dae b/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.dae new file mode 100755 index 0000000..18515d0 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/left_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:01 2016 GMT + Tue Jan 19 19:53:01 2016 GMT + Y_UP + + + + + + -0.0499122 7.98557e-17 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -4.71309e-17 -0.01 0.05 -4.67605e-17 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -4.98767e-17 1.78814e-09 -2.40741e-18 1.32111e-17 1.78814e-09 0.0397192 -0.00473093 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.00590586 -0.0395616 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.0252035 -0.031061 1.78814e-09 -0.0399297 0.00236963 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0393692 0.00707561 1.78814e-09 -0.0128108 0.0378931 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0193117 0.0350294 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0397192 0.00473093 1.78814e-09 0.0374968 0.0139281 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 0 1.38778e-17 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 8.0226e-17 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -5.28837e-17 -0.035 0.0496593 -5.23914e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -5.10248e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -4.88769e-17 -0.0420711 0.045 -4.60941e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -4.28661e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -3.94129e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0422893 -0.00503704 -0.000340743 0.0388809 -0.00939544 1.78814e-09 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0233192 -0.0324995 1.78814e-09 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.00823914 -0.0391423 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0425134 0.00252295 -0.000340743 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.038256 0.0116823 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.043038 0.0131426 -0.00133975 -0.0389744 0.0171683 -0.000340743 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.0252035 0.031061 1.78814e-09 -0.0305573 0.0296648 -0.000340743 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0136397 0.0403449 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00118533 0.0399824 1.78814e-09 0.00126203 0.0425695 -0.000340743 0.006288 0.0421214 -0.000340743 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.0353229 0.0237918 -0.000340743 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -4.35227e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -5.28385e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.0413967 -0.0100034 -0.000340743 0.0355863 -0.0182652 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0205612 -0.037296 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0172026 -0.0361119 1.78814e-09 -0.0213529 -0.0338238 1.78814e-09 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0227346 -0.0360124 -0.000340743 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0317942 -0.024272 1.78814e-09 -0.0305573 -0.0296648 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0366058 -0.0161249 1.78814e-09 -0.038256 -0.0116823 1.78814e-09 -0.0407314 -0.0124382 -0.000340743 -0.0393692 -0.00707561 1.78814e-09 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0419166 -0.00753344 -0.000340743 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0287003 0.027862 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0268343 0.0330707 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0172026 0.0361119 1.78814e-09 -0.0227346 0.0360124 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00877226 0.0416749 -0.000340743 -0.00823914 0.0391423 1.78814e-09 -0.00355184 0.039842 1.78814e-09 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 -0.00378166 0.04242 -0.000340743 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0066441 0.0445068 -0.00133975 0.00590586 0.0395616 1.78814e-09 0.0112257 0.0410821 -0.000340743 0.0150331 0.0370676 1.78814e-09 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0160058 0.039466 -0.000340743 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.0205612 0.037296 -0.000340743 0.0233192 0.0324995 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.024828 0.0346023 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0287463 0.031423 -0.000340743 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0378889 0.019447 -0.000340743 0.0355863 0.0182652 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0388809 0.00939544 1.78814e-09 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.043741 0.0105699 -0.00133975 0.04 -4.00796e-17 1.78814e-09 0.0422893 0.00503704 -0.000340743 0.0446841 0.00532229 -0.00133975 0.045 -4.67211e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -4.94567e-17 -0.00292893 0.0486603 -5.15433e-17 -0.005 0.05 -5.32541e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -8.7761e-19 0.998244 0.0592405 8.7761e-19 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 181 181 0 0 0 0 0 0 1 181 181 1 180 180 1 0 0 2 180 180 2 1 1 2 1 1 3 180 180 3 178 178 3 1 1 4 178 178 4 2 2 4 2 2 5 178 178 5 177 177 5 2 2 6 177 177 6 3 3 6 3 3 7 177 177 7 175 175 7 3 3 8 175 175 8 4 4 8 4 4 9 175 175 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 173 173 15 9 9 16 173 173 16 666 666 16 666 666 17 173 173 17 11 11 17 666 666 18 11 11 18 665 665 18 665 665 19 11 11 19 171 171 19 665 665 20 171 171 20 12 12 20 12 12 21 171 171 21 169 169 21 12 12 22 169 169 22 13 13 22 13 13 23 169 169 23 168 168 23 13 13 24 168 168 24 649 649 24 649 649 25 168 168 25 14 14 25 649 649 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 166 166 29 16 16 30 166 166 30 642 642 30 642 642 31 166 166 31 165 165 31 642 642 32 165 165 32 640 640 32 640 640 33 165 165 33 164 164 33 640 640 34 164 164 34 627 627 34 627 627 35 164 164 35 163 163 35 627 627 36 163 163 36 625 625 36 625 625 37 163 163 37 162 162 37 625 625 38 162 162 38 18 18 38 18 18 39 162 162 39 161 161 39 18 18 40 161 161 40 626 626 40 626 626 41 161 161 41 159 159 41 626 626 42 159 159 42 20 20 42 20 20 43 159 159 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 604 604 50 604 604 51 26 26 51 27 27 51 604 604 52 27 27 52 28 28 52 28 28 53 27 27 53 156 156 53 28 28 54 156 156 54 489 489 54 489 489 55 156 156 55 29 29 55 489 489 56 29 29 56 603 603 56 603 603 57 29 29 57 30 30 57 603 603 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 151 151 67 39 39 68 151 151 68 40 40 68 40 40 69 151 151 69 41 41 69 40 40 70 41 41 70 490 490 70 490 490 71 41 41 71 42 42 71 490 490 72 42 42 72 43 43 72 43 43 73 42 42 73 148 148 73 43 43 74 148 148 74 44 44 74 44 44 75 148 148 75 147 147 75 44 44 76 147 147 76 566 566 76 566 566 77 147 147 77 146 146 77 566 566 78 146 146 78 45 45 78 45 45 79 146 146 79 46 46 79 45 45 80 46 46 80 554 554 80 554 554 81 46 46 81 145 145 81 554 554 82 145 145 82 494 494 82 494 494 83 145 145 83 219 219 83 494 494 84 219 219 84 553 553 84 553 553 85 219 219 85 218 218 85 553 553 86 218 218 86 47 47 86 47 47 87 218 218 87 217 217 87 47 47 88 217 217 88 48 48 88 48 48 89 217 217 89 215 215 89 48 48 90 215 215 90 49 49 90 49 49 91 215 215 91 50 50 91 49 49 92 50 50 92 807 807 92 807 807 93 50 50 93 51 51 93 807 807 94 51 51 94 483 483 94 483 483 95 51 51 95 52 52 95 483 483 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 211 211 99 800 800 100 211 211 100 56 56 100 56 56 101 211 211 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 787 787 108 787 787 109 62 62 109 210 210 109 787 787 110 210 210 110 63 63 110 63 63 111 210 210 111 64 64 111 63 63 112 64 64 112 781 781 112 781 781 113 64 64 113 65 65 113 781 781 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 780 780 116 780 780 117 67 67 117 208 208 117 780 780 118 208 208 118 766 766 118 766 766 119 208 208 119 207 207 119 766 766 120 207 207 120 68 68 120 68 68 121 207 207 121 206 206 121 68 68 122 206 206 122 69 69 122 69 69 123 206 206 123 203 203 123 69 69 124 203 203 124 70 70 124 70 70 125 203 203 125 202 202 125 70 70 126 202 202 126 71 71 126 71 71 127 202 202 127 201 201 127 71 71 128 201 201 128 485 485 128 485 485 129 201 201 129 72 72 129 485 485 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 749 749 134 749 749 135 76 76 135 77 77 135 749 749 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 197 197 139 80 80 140 197 197 140 81 81 140 81 81 141 197 197 141 82 82 141 81 81 142 82 82 142 486 486 142 486 486 143 82 82 143 83 83 143 486 486 144 83 83 144 728 728 144 728 728 145 83 83 145 195 195 145 728 728 146 195 195 146 84 84 146 84 84 147 195 195 147 85 85 147 84 84 148 85 85 148 727 727 148 727 727 149 85 85 149 86 86 149 727 727 150 86 86 150 87 87 150 87 87 151 86 86 151 192 192 151 87 87 152 192 192 152 88 88 152 88 88 153 192 192 153 191 191 153 88 88 154 191 191 154 89 89 154 89 89 155 191 191 155 190 190 155 89 89 156 190 190 156 715 715 156 715 715 157 190 190 157 90 90 157 715 715 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 187 187 161 93 93 162 187 187 162 94 94 162 94 94 163 187 187 163 186 186 163 94 94 164 186 186 164 697 697 164 697 697 165 186 186 165 95 95 165 697 697 166 95 95 166 96 96 166 96 96 167 95 95 167 184 184 167 96 96 168 184 184 168 487 487 168 487 487 169 184 184 169 183 183 169 487 487 170 183 183 170 696 696 170 696 696 171 183 183 171 97 97 171 696 696 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 686 686 176 686 686 177 101 101 177 102 102 177 686 686 178 102 102 178 103 103 178 103 103 179 102 102 179 181 181 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 562 562 182 560 560 182 105 105 182 105 105 183 560 560 183 496 496 183 105 105 184 496 496 184 106 106 184 585 585 185 578 578 185 105 105 185 105 105 186 578 578 186 571 571 186 105 105 187 571 571 187 562 562 187 597 597 188 107 107 188 105 105 188 105 105 189 107 107 189 501 501 189 105 105 190 501 501 190 585 585 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 598 598 192 105 105 193 598 598 193 597 597 193 506 506 194 505 505 194 105 105 194 105 105 195 505 505 195 620 620 195 105 105 196 620 620 196 109 109 196 110 110 197 633 633 197 105 105 197 105 105 198 633 633 198 632 632 198 105 105 199 632 632 199 506 506 199 661 661 200 658 658 200 105 105 200 105 105 201 658 658 201 660 660 201 105 105 202 660 660 202 110 110 202 675 675 203 673 673 203 105 105 203 105 105 204 673 673 204 672 672 204 105 105 205 672 672 205 661 661 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 675 675 208 701 701 209 524 524 209 105 105 209 105 105 210 524 524 210 523 523 210 105 105 211 523 523 211 113 113 211 530 530 212 713 713 212 105 105 212 105 105 213 713 713 213 714 714 213 105 105 214 714 714 214 701 701 214 114 114 215 722 722 215 105 105 215 105 105 216 722 722 216 721 721 216 105 105 217 721 721 217 530 530 217 541 541 218 738 738 218 105 105 218 105 105 219 738 738 219 737 737 219 105 105 220 737 737 220 114 114 220 757 757 221 115 115 221 105 105 221 105 105 222 115 115 222 755 755 222 105 105 223 755 755 223 541 541 223 772 772 224 771 771 224 105 105 224 105 105 225 771 771 225 116 116 225 105 105 226 116 116 226 757 757 226 795 795 227 117 117 227 105 105 227 105 105 228 117 117 228 786 786 228 105 105 229 786 786 229 772 772 229 118 118 230 806 806 230 105 105 230 105 105 231 806 806 231 119 119 231 105 105 232 119 119 232 795 795 232 482 482 233 480 480 233 138 138 233 482 482 234 138 138 234 120 120 234 431 431 235 429 429 235 138 138 235 138 138 236 429 429 236 121 121 236 138 138 237 121 121 237 120 120 237 122 122 238 123 123 238 138 138 238 138 138 239 123 123 239 124 124 239 138 138 240 124 124 240 431 431 240 128 128 241 434 434 241 138 138 241 138 138 242 434 434 242 125 125 242 138 138 243 125 125 243 122 122 243 436 436 244 126 126 244 138 138 244 138 138 245 126 126 245 127 127 245 138 138 246 127 127 246 128 128 246 129 129 247 438 438 247 138 138 247 138 138 248 438 438 248 130 130 248 138 138 249 130 130 249 436 436 249 441 441 250 131 131 250 138 138 250 138 138 251 131 131 251 440 440 251 138 138 252 440 440 252 129 129 252 132 132 253 443 443 253 138 138 253 138 138 254 443 443 254 133 133 254 138 138 255 133 133 255 441 441 255 449 449 256 447 447 256 138 138 256 138 138 257 447 447 257 444 444 257 138 138 258 444 444 258 132 132 258 453 453 259 134 134 259 138 138 259 138 138 260 134 134 260 450 450 260 138 138 261 450 450 261 449 449 261 455 455 262 135 135 262 138 138 262 138 138 263 135 135 263 136 136 263 138 138 264 136 136 264 453 453 264 460 460 265 458 458 265 138 138 265 138 138 266 458 458 266 137 137 266 138 138 267 137 137 267 455 455 267 463 463 268 462 462 268 138 138 268 138 138 269 462 462 269 461 461 269 138 138 270 461 461 270 460 460 270 467 467 271 466 466 271 138 138 271 138 138 272 466 466 272 464 464 272 138 138 273 464 464 273 463 463 273 470 470 274 139 139 274 138 138 274 138 138 275 139 139 275 468 468 275 138 138 276 468 468 276 467 467 276 142 142 277 140 140 277 138 138 277 138 138 278 140 140 278 141 141 278 138 138 279 141 141 279 470 470 279 477 477 280 476 476 280 138 138 280 138 138 281 476 476 281 474 474 281 138 138 282 474 474 282 142 142 282 480 480 283 143 143 283 138 138 283 138 138 284 143 143 284 144 144 284 138 138 285 144 144 285 477 477 285 219 219 286 268 268 286 270 270 286 219 219 287 145 145 287 268 268 287 268 268 288 145 145 288 46 46 288 268 268 289 46 46 289 266 266 289 266 266 290 46 46 290 146 146 290 266 266 291 146 146 291 264 264 291 264 264 292 146 146 292 147 147 292 264 264 293 147 147 293 149 149 293 149 149 294 147 147 294 148 148 294 148 148 295 42 42 295 149 149 295 149 149 296 42 42 296 41 41 296 149 149 297 41 41 297 150 150 297 41 41 298 151 151 298 150 150 298 150 150 299 151 151 299 38 38 299 150 150 300 38 38 300 152 152 300 152 152 301 38 38 301 37 37 301 152 152 302 37 37 302 153 153 302 37 37 303 33 33 303 153 153 303 153 153 304 33 33 304 32 32 304 153 153 305 32 32 305 260 260 305 32 32 306 30 30 306 260 260 306 260 260 307 30 30 307 29 29 307 260 260 308 29 29 308 154 154 308 154 154 309 29 29 309 156 156 309 154 154 310 156 156 310 155 155 310 155 155 311 156 156 311 27 27 311 155 155 312 27 27 312 157 157 312 157 157 313 27 27 313 26 26 313 26 26 314 24 24 314 157 157 314 157 157 315 24 24 315 22 22 315 157 157 316 22 22 316 158 158 316 22 22 317 19 19 317 158 158 317 158 158 318 19 19 318 159 159 318 158 158 319 159 159 319 160 160 319 160 160 320 159 159 320 161 161 320 160 160 321 161 161 321 254 254 321 254 254 322 161 161 322 162 162 322 254 254 323 162 162 323 253 253 323 253 253 324 162 162 324 163 163 324 163 163 325 164 164 325 253 253 325 253 253 326 164 164 326 165 165 326 253 253 327 165 165 327 252 252 327 252 252 328 165 165 328 166 166 328 252 252 329 166 166 329 167 167 329 167 167 330 166 166 330 17 17 330 167 167 331 17 17 331 250 250 331 250 250 332 17 17 332 14 14 332 14 14 333 168 168 333 250 250 333 250 250 334 168 168 334 169 169 334 250 250 335 169 169 335 170 170 335 169 169 336 171 171 336 170 170 336 170 170 337 171 171 337 11 11 337 170 170 338 11 11 338 172 172 338 172 172 339 11 11 339 173 173 339 172 172 340 173 173 340 247 247 340 247 247 341 173 173 341 10 10 341 247 247 342 10 10 342 174 174 342 174 174 343 10 10 343 7 7 343 7 7 344 5 5 344 174 174 344 174 174 345 5 5 345 175 175 345 174 174 346 175 175 346 176 176 346 176 176 347 175 175 347 177 177 347 176 176 348 177 177 348 179 179 348 177 177 349 178 178 349 179 179 349 179 179 350 178 178 350 180 180 350 179 179 351 180 180 351 182 182 351 180 180 352 181 181 352 182 182 352 182 182 353 181 181 353 102 102 353 182 182 354 102 102 354 242 242 354 102 102 355 101 101 355 242 242 355 242 242 356 101 101 356 100 100 356 242 242 357 100 100 357 240 240 357 240 240 358 100 100 358 97 97 358 240 240 359 97 97 359 239 239 359 239 239 360 97 97 360 183 183 360 239 239 361 183 183 361 185 185 361 185 185 362 183 183 362 184 184 362 184 184 363 95 95 363 185 185 363 185 185 364 95 95 364 186 186 364 185 185 365 186 186 365 237 237 365 237 237 366 186 186 366 187 187 366 237 237 367 187 187 367 188 188 367 187 187 368 92 92 368 188 188 368 188 188 369 92 92 369 90 90 369 188 188 370 90 90 370 189 189 370 90 90 371 190 190 371 189 189 371 189 189 372 190 190 372 191 191 372 189 189 373 191 191 373 235 235 373 191 191 374 192 192 374 235 235 374 235 235 375 192 192 375 86 86 375 235 235 376 86 86 376 193 193 376 193 193 377 86 86 377 85 85 377 193 193 378 85 85 378 194 194 378 194 194 379 85 85 379 195 195 379 194 194 380 195 195 380 196 196 380 196 196 381 195 195 381 83 83 381 83 83 382 82 82 382 196 196 382 196 196 383 82 82 383 197 197 383 196 196 384 197 197 384 198 198 384 198 198 385 197 197 385 79 79 385 198 198 386 79 79 386 199 199 386 79 79 387 77 77 387 199 199 387 199 199 388 77 77 388 76 76 388 199 199 389 76 76 389 200 200 389 76 76 390 74 74 390 200 200 390 200 200 391 74 74 391 72 72 391 200 200 392 72 72 392 230 230 392 72 72 393 201 201 393 230 230 393 230 230 394 201 201 394 202 202 394 230 230 395 202 202 395 229 229 395 229 229 396 202 202 396 203 203 396 229 229 397 203 203 397 204 204 397 204 204 398 203 203 398 206 206 398 204 204 399 206 206 399 205 205 399 205 205 400 206 206 400 207 207 400 207 207 401 208 208 401 205 205 401 205 205 402 208 208 402 67 67 402 205 205 403 67 67 403 226 226 403 226 226 404 67 67 404 65 65 404 226 226 405 65 65 405 209 209 405 65 65 406 64 64 406 209 209 406 209 209 407 64 64 407 210 210 407 209 209 408 210 210 408 223 223 408 210 210 409 62 62 409 223 223 409 223 223 410 62 62 410 60 60 410 223 223 411 60 60 411 222 222 411 60 60 412 59 59 412 222 222 412 222 222 413 59 59 413 55 55 413 222 222 414 55 55 414 221 221 414 221 221 415 55 55 415 211 211 415 221 221 416 211 211 416 212 212 416 212 212 417 211 211 417 54 54 417 212 212 418 54 54 418 220 220 418 220 220 419 54 54 419 52 52 419 52 52 420 51 51 420 220 220 420 220 220 421 51 51 421 213 213 421 220 220 422 213 213 422 214 214 422 214 214 423 213 213 423 215 215 423 214 214 424 215 215 424 216 216 424 216 216 425 215 215 425 217 217 425 216 216 426 217 217 426 270 270 426 270 270 427 217 217 427 218 218 427 270 270 428 218 218 428 219 219 428 214 214 429 272 272 429 220 220 429 220 220 430 272 272 430 275 275 430 220 220 431 275 275 431 212 212 431 212 212 432 275 275 432 277 277 432 212 212 433 277 277 433 221 221 433 221 221 434 277 277 434 278 278 434 221 221 435 278 278 435 222 222 435 222 222 436 278 278 436 224 224 436 222 222 437 224 224 437 223 223 437 223 223 438 224 224 438 281 281 438 223 223 439 281 281 439 209 209 439 209 209 440 281 281 440 225 225 440 209 209 441 225 225 441 226 226 441 226 226 442 225 225 442 283 283 442 226 226 443 283 283 443 205 205 443 205 205 444 283 283 444 227 227 444 205 205 445 227 227 445 204 204 445 204 204 446 227 227 446 228 228 446 204 204 447 228 228 447 229 229 447 229 229 448 228 228 448 231 231 448 229 229 449 231 231 449 230 230 449 230 230 450 231 231 450 288 288 450 230 230 451 288 288 451 200 200 451 200 200 452 288 288 452 232 232 452 200 200 453 232 232 453 199 199 453 199 199 454 232 232 454 233 233 454 199 199 455 233 233 455 198 198 455 198 198 456 233 233 456 234 234 456 198 198 457 234 234 457 196 196 457 196 196 458 234 234 458 292 292 458 196 196 459 292 292 459 194 194 459 194 194 460 292 292 460 293 293 460 194 194 461 293 293 461 193 193 461 193 193 462 293 293 462 294 294 462 193 193 463 294 294 463 235 235 463 235 235 464 294 294 464 236 236 464 235 235 465 236 236 465 189 189 465 189 189 466 236 236 466 297 297 466 189 189 467 297 297 467 188 188 467 188 188 468 297 297 468 298 298 468 188 188 469 298 298 469 237 237 469 237 237 470 298 298 470 238 238 470 237 237 471 238 238 471 185 185 471 185 185 472 238 238 472 299 299 472 185 185 473 299 299 473 239 239 473 239 239 474 299 299 474 241 241 474 239 239 475 241 241 475 240 240 475 240 240 476 241 241 476 301 301 476 240 240 477 301 301 477 242 242 477 242 242 478 301 301 478 243 243 478 242 242 479 243 243 479 182 182 479 182 182 480 243 243 480 303 303 480 182 182 481 303 303 481 179 179 481 179 179 482 303 303 482 244 244 482 179 179 483 244 244 483 176 176 483 176 176 484 244 244 484 245 245 484 176 176 485 245 245 485 174 174 485 174 174 486 245 245 486 246 246 486 174 174 487 246 246 487 247 247 487 247 247 488 246 246 488 248 248 488 247 247 489 248 248 489 172 172 489 172 172 490 248 248 490 249 249 490 172 172 491 249 249 491 170 170 491 170 170 492 249 249 492 308 308 492 170 170 493 308 308 493 250 250 493 250 250 494 308 308 494 309 309 494 250 250 495 309 309 495 167 167 495 167 167 496 309 309 496 251 251 496 167 167 497 251 251 497 252 252 497 252 252 498 251 251 498 310 310 498 252 252 499 310 310 499 253 253 499 253 253 500 310 310 500 255 255 500 253 253 501 255 255 501 254 254 501 254 254 502 255 255 502 256 256 502 254 254 503 256 256 503 160 160 503 160 160 504 256 256 504 257 257 504 160 160 505 257 257 505 158 158 505 158 158 506 257 257 506 258 258 506 158 158 507 258 258 507 157 157 507 157 157 508 258 258 508 259 259 508 157 157 509 259 259 509 155 155 509 155 155 510 259 259 510 316 316 510 155 155 511 316 316 511 154 154 511 154 154 512 316 316 512 261 261 512 154 154 513 261 261 513 260 260 513 260 260 514 261 261 514 319 319 514 260 260 515 319 319 515 153 153 515 153 153 516 319 319 516 262 262 516 153 153 517 262 262 517 152 152 517 152 152 518 262 262 518 321 321 518 152 152 519 321 321 519 150 150 519 150 150 520 321 321 520 263 263 520 150 150 521 263 263 521 149 149 521 149 149 522 263 263 522 322 322 522 149 149 523 322 322 523 264 264 523 264 264 524 322 322 524 265 265 524 264 264 525 265 265 525 266 266 525 266 266 526 265 265 526 267 267 526 266 266 527 267 267 527 268 268 527 268 268 528 267 267 528 269 269 528 268 268 529 269 269 529 270 270 529 270 270 530 269 269 530 325 325 530 270 270 531 325 325 531 216 216 531 216 216 532 325 325 532 271 271 532 216 216 533 271 271 533 214 214 533 214 214 534 271 271 534 272 272 534 271 271 535 273 273 535 272 272 535 272 272 536 273 273 536 274 274 536 272 272 537 274 274 537 275 275 537 275 275 538 274 274 538 329 329 538 275 275 539 329 329 539 277 277 539 277 277 540 329 329 540 276 276 540 277 277 541 276 276 541 278 278 541 278 278 542 276 276 542 279 279 542 278 278 543 279 279 543 224 224 543 224 224 544 279 279 544 280 280 544 224 224 545 280 280 545 281 281 545 281 281 546 280 280 546 332 332 546 281 281 547 332 332 547 225 225 547 225 225 548 332 332 548 282 282 548 225 225 549 282 282 549 283 283 549 283 283 550 282 282 550 284 284 550 283 283 551 284 284 551 227 227 551 227 227 552 284 284 552 285 285 552 227 227 553 285 285 553 228 228 553 228 228 554 285 285 554 286 286 554 228 228 555 286 286 555 231 231 555 231 231 556 286 286 556 287 287 556 231 231 557 287 287 557 288 288 557 288 288 558 287 287 558 289 289 558 288 288 559 289 289 559 232 232 559 232 232 560 289 289 560 290 290 560 232 232 561 290 290 561 233 233 561 233 233 562 290 290 562 291 291 562 233 233 563 291 291 563 234 234 563 234 234 564 291 291 564 336 336 564 234 234 565 336 336 565 292 292 565 292 292 566 336 336 566 337 337 566 292 292 567 337 337 567 293 293 567 293 293 568 337 337 568 338 338 568 293 293 569 338 338 569 294 294 569 294 294 570 338 338 570 295 295 570 294 294 571 295 295 571 236 236 571 236 236 572 295 295 572 296 296 572 236 236 573 296 296 573 297 297 573 297 297 574 296 296 574 343 343 574 297 297 575 343 343 575 298 298 575 298 298 576 343 343 576 344 344 576 298 298 577 344 344 577 238 238 577 238 238 578 344 344 578 345 345 578 238 238 579 345 345 579 299 299 579 299 299 580 345 345 580 300 300 580 299 299 581 300 300 581 241 241 581 241 241 582 300 300 582 346 346 582 241 241 583 346 346 583 301 301 583 301 301 584 346 346 584 302 302 584 301 301 585 302 302 585 243 243 585 243 243 586 302 302 586 348 348 586 243 243 587 348 348 587 303 303 587 303 303 588 348 348 588 304 304 588 303 303 589 304 304 589 244 244 589 244 244 590 304 304 590 305 305 590 244 244 591 305 305 591 245 245 591 245 245 592 305 305 592 350 350 592 245 245 593 350 350 593 246 246 593 246 246 594 350 350 594 306 306 594 246 246 595 306 306 595 248 248 595 248 248 596 306 306 596 351 351 596 248 248 597 351 351 597 249 249 597 249 249 598 351 351 598 307 307 598 249 249 599 307 307 599 308 308 599 308 308 600 307 307 600 354 354 600 308 308 601 354 354 601 309 309 601 309 309 602 354 354 602 355 355 602 309 309 603 355 355 603 251 251 603 251 251 604 355 355 604 356 356 604 251 251 605 356 356 605 310 310 605 310 310 606 356 356 606 357 357 606 310 310 607 357 357 607 255 255 607 255 255 608 357 357 608 311 311 608 255 255 609 311 311 609 256 256 609 256 256 610 311 311 610 312 312 610 256 256 611 312 312 611 257 257 611 257 257 612 312 312 612 313 313 612 257 257 613 313 313 613 258 258 613 258 258 614 313 313 614 314 314 614 258 258 615 314 314 615 259 259 615 259 259 616 314 314 616 315 315 616 259 259 617 315 315 617 316 316 617 316 316 618 315 315 618 317 317 618 316 316 619 317 317 619 261 261 619 261 261 620 317 317 620 318 318 620 261 261 621 318 318 621 319 319 621 319 319 622 318 318 622 360 360 622 319 319 623 360 360 623 262 262 623 262 262 624 360 360 624 320 320 624 262 262 625 320 320 625 321 321 625 321 321 626 320 320 626 362 362 626 321 321 627 362 362 627 263 263 627 263 263 628 362 362 628 365 365 628 263 263 629 365 365 629 322 322 629 322 322 630 365 365 630 323 323 630 322 322 631 323 323 631 265 265 631 265 265 632 323 323 632 324 324 632 265 265 633 324 324 633 267 267 633 267 267 634 324 324 634 367 367 634 267 267 635 367 367 635 269 269 635 269 269 636 367 367 636 368 368 636 269 269 637 368 368 637 325 325 637 325 325 638 368 368 638 369 369 638 325 325 639 369 369 639 271 271 639 271 271 640 369 369 640 273 273 640 369 369 641 371 371 641 273 273 641 273 273 642 371 371 642 326 326 642 273 273 643 326 326 643 274 274 643 274 274 644 326 326 644 327 327 644 274 274 645 327 327 645 329 329 645 329 329 646 327 327 646 328 328 646 329 329 647 328 328 647 276 276 647 276 276 648 328 328 648 330 330 648 276 276 649 330 330 649 279 279 649 279 279 650 330 330 650 331 331 650 279 279 651 331 331 651 280 280 651 280 280 652 331 331 652 375 375 652 280 280 653 375 375 653 332 332 653 332 332 654 375 375 654 377 377 654 332 332 655 377 377 655 282 282 655 282 282 656 377 377 656 379 379 656 282 282 657 379 379 657 284 284 657 284 284 658 379 379 658 333 333 658 284 284 659 333 333 659 285 285 659 285 285 660 333 333 660 381 381 660 285 285 661 381 381 661 286 286 661 286 286 662 381 381 662 383 383 662 286 286 663 383 383 663 287 287 663 287 287 664 383 383 664 334 334 664 287 287 665 334 334 665 289 289 665 289 289 666 334 334 666 385 385 666 289 289 667 385 385 667 290 290 667 290 290 668 385 385 668 335 335 668 290 290 669 335 335 669 291 291 669 291 291 670 335 335 670 386 386 670 291 291 671 386 386 671 336 336 671 336 336 672 386 386 672 389 389 672 336 336 673 389 389 673 337 337 673 337 337 674 389 389 674 339 339 674 337 337 675 339 339 675 338 338 675 338 338 676 339 339 676 340 340 676 338 338 677 340 340 677 295 295 677 295 295 678 340 340 678 341 341 678 295 295 679 341 341 679 296 296 679 296 296 680 341 341 680 342 342 680 296 296 681 342 342 681 343 343 681 343 343 682 342 342 682 393 393 682 343 343 683 393 393 683 344 344 683 344 344 684 393 393 684 394 394 684 344 344 685 394 394 685 345 345 685 345 345 686 394 394 686 396 396 686 345 345 687 396 396 687 300 300 687 300 300 688 396 396 688 397 397 688 300 300 689 397 397 689 346 346 689 346 346 690 397 397 690 347 347 690 346 346 691 347 347 691 302 302 691 302 302 692 347 347 692 398 398 692 302 302 693 398 398 693 348 348 693 348 348 694 398 398 694 400 400 694 348 348 695 400 400 695 304 304 695 304 304 696 400 400 696 349 349 696 304 304 697 349 349 697 305 305 697 305 305 698 349 349 698 402 402 698 305 305 699 402 402 699 350 350 699 350 350 700 402 402 700 403 403 700 350 350 701 403 403 701 306 306 701 306 306 702 403 403 702 404 404 702 306 306 703 404 404 703 351 351 703 351 351 704 404 404 704 352 352 704 351 351 705 352 352 705 307 307 705 307 307 706 352 352 706 406 406 706 307 307 707 406 406 707 354 354 707 354 354 708 406 406 708 353 353 708 354 354 709 353 353 709 355 355 709 355 355 710 353 353 710 409 409 710 355 355 711 409 409 711 356 356 711 356 356 712 409 409 712 410 410 712 356 356 713 410 410 713 357 357 713 357 357 714 410 410 714 411 411 714 357 357 715 411 411 715 311 311 715 311 311 716 411 411 716 413 413 716 311 311 717 413 413 717 312 312 717 312 312 718 413 413 718 358 358 718 312 312 719 358 358 719 313 313 719 313 313 720 358 358 720 359 359 720 313 313 721 359 359 721 314 314 721 314 314 722 359 359 722 417 417 722 314 314 723 417 417 723 315 315 723 315 315 724 417 417 724 418 418 724 315 315 725 418 418 725 317 317 725 317 317 726 418 418 726 420 420 726 317 317 727 420 420 727 318 318 727 318 318 728 420 420 728 421 421 728 318 318 729 421 421 729 360 360 729 360 360 730 421 421 730 361 361 730 360 360 731 361 361 731 320 320 731 320 320 732 361 361 732 363 363 732 320 320 733 363 363 733 362 362 733 362 362 734 363 363 734 364 364 734 362 362 735 364 364 735 365 365 735 365 365 736 364 364 736 366 366 736 365 365 737 366 366 737 323 323 737 323 323 738 366 366 738 424 424 738 323 323 739 424 424 739 324 324 739 324 324 740 424 424 740 425 425 740 324 324 741 425 425 741 367 367 741 367 367 742 425 425 742 426 426 742 367 367 743 426 426 743 368 368 743 368 368 744 426 426 744 370 370 744 368 368 745 370 370 745 369 369 745 369 369 746 370 370 746 371 371 746 370 370 747 427 427 747 371 371 747 371 371 748 427 427 748 372 372 748 371 371 749 372 372 749 326 326 749 326 326 750 372 372 750 430 430 750 326 326 751 430 430 751 327 327 751 327 327 752 430 430 752 373 373 752 327 327 753 373 373 753 328 328 753 328 328 754 373 373 754 432 432 754 328 328 755 432 432 755 330 330 755 330 330 756 432 432 756 374 374 756 330 330 757 374 374 757 331 331 757 331 331 758 374 374 758 433 433 758 331 331 759 433 433 759 375 375 759 375 375 760 433 433 760 376 376 760 375 375 761 376 376 761 377 377 761 377 377 762 376 376 762 378 378 762 377 377 763 378 378 763 379 379 763 379 379 764 378 378 764 380 380 764 379 379 765 380 380 765 333 333 765 333 333 766 380 380 766 435 435 766 333 333 767 435 435 767 381 381 767 381 381 768 435 435 768 382 382 768 381 381 769 382 382 769 383 383 769 383 383 770 382 382 770 384 384 770 383 383 771 384 384 771 334 334 771 334 334 772 384 384 772 437 437 772 334 334 773 437 437 773 385 385 773 385 385 774 437 437 774 439 439 774 385 385 775 439 439 775 335 335 775 335 335 776 439 439 776 387 387 776 335 335 777 387 387 777 386 386 777 386 386 778 387 387 778 388 388 778 386 386 779 388 388 779 389 389 779 389 389 780 388 388 780 442 442 780 389 389 781 442 442 781 339 339 781 339 339 782 442 442 782 390 390 782 339 339 783 390 390 783 340 340 783 340 340 784 390 390 784 391 391 784 340 340 785 391 391 785 341 341 785 341 341 786 391 391 786 392 392 786 341 341 787 392 392 787 342 342 787 342 342 788 392 392 788 445 445 788 342 342 789 445 445 789 393 393 789 393 393 790 445 445 790 446 446 790 393 393 791 446 446 791 394 394 791 394 394 792 446 446 792 395 395 792 394 394 793 395 395 793 396 396 793 396 396 794 395 395 794 448 448 794 396 396 795 448 448 795 397 397 795 397 397 796 448 448 796 451 451 796 397 397 797 451 451 797 347 347 797 347 347 798 451 451 798 452 452 798 347 347 799 452 452 799 398 398 799 398 398 800 452 452 800 399 399 800 398 398 801 399 399 801 400 400 801 400 400 802 399 399 802 454 454 802 400 400 803 454 454 803 349 349 803 349 349 804 454 454 804 401 401 804 349 349 805 401 401 805 402 402 805 402 402 806 401 401 806 456 456 806 402 402 807 456 456 807 403 403 807 403 403 808 456 456 808 457 457 808 403 403 809 457 457 809 404 404 809 404 404 810 457 457 810 459 459 810 404 404 811 459 459 811 352 352 811 352 352 812 459 459 812 405 405 812 352 352 813 405 405 813 406 406 813 406 406 814 405 405 814 407 407 814 406 406 815 407 407 815 353 353 815 353 353 816 407 407 816 408 408 816 353 353 817 408 408 817 409 409 817 409 409 818 408 408 818 465 465 818 409 409 819 465 465 819 410 410 819 410 410 820 465 465 820 412 412 820 410 410 821 412 412 821 411 411 821 411 411 822 412 412 822 414 414 822 411 411 823 414 414 823 413 413 823 413 413 824 414 414 824 415 415 824 413 413 825 415 415 825 358 358 825 358 358 826 415 415 826 469 469 826 358 358 827 469 469 827 359 359 827 359 359 828 469 469 828 416 416 828 359 359 829 416 416 829 417 417 829 417 417 830 416 416 830 471 471 830 417 417 831 471 471 831 418 418 831 418 418 832 471 471 832 419 419 832 418 418 833 419 419 833 420 420 833 420 420 834 419 419 834 472 472 834 420 420 835 472 472 835 421 421 835 421 421 836 472 472 836 473 473 836 421 421 837 473 473 837 361 361 837 361 361 838 473 473 838 475 475 838 361 361 839 475 475 839 363 363 839 363 363 840 475 475 840 422 422 840 363 363 841 422 422 841 364 364 841 364 364 842 422 422 842 423 423 842 364 364 843 423 423 843 366 366 843 366 366 844 423 423 844 478 478 844 366 366 845 478 478 845 424 424 845 424 424 846 478 478 846 479 479 846 424 424 847 479 479 847 425 425 847 425 425 848 479 479 848 481 481 848 425 425 849 481 481 849 426 426 849 426 426 850 481 481 850 428 428 850 426 426 851 428 428 851 370 370 851 370 370 852 428 428 852 427 427 852 428 428 853 120 120 853 427 427 853 427 427 854 120 120 854 121 121 854 427 427 855 121 121 855 372 372 855 372 372 856 121 121 856 429 429 856 372 372 857 429 429 857 430 430 857 430 430 858 429 429 858 431 431 858 430 430 859 431 431 859 373 373 859 373 373 860 431 431 860 124 124 860 373 373 861 124 124 861 432 432 861 432 432 862 124 124 862 123 123 862 432 432 863 123 123 863 374 374 863 374 374 864 123 123 864 122 122 864 374 374 865 122 122 865 433 433 865 433 433 866 122 122 866 125 125 866 433 433 867 125 125 867 376 376 867 376 376 868 125 125 868 434 434 868 376 376 869 434 434 869 378 378 869 378 378 870 434 434 870 128 128 870 378 378 871 128 128 871 380 380 871 380 380 872 128 128 872 127 127 872 380 380 873 127 127 873 435 435 873 435 435 874 127 127 874 126 126 874 435 435 875 126 126 875 382 382 875 382 382 876 126 126 876 436 436 876 382 382 877 436 436 877 384 384 877 384 384 878 436 436 878 130 130 878 384 384 879 130 130 879 437 437 879 437 437 880 130 130 880 438 438 880 437 437 881 438 438 881 439 439 881 439 439 882 438 438 882 129 129 882 439 439 883 129 129 883 387 387 883 387 387 884 129 129 884 440 440 884 387 387 885 440 440 885 388 388 885 388 388 886 440 440 886 131 131 886 388 388 887 131 131 887 442 442 887 442 442 888 131 131 888 441 441 888 442 442 889 441 441 889 390 390 889 390 390 890 441 441 890 133 133 890 390 390 891 133 133 891 391 391 891 391 391 892 133 133 892 443 443 892 391 391 893 443 443 893 392 392 893 392 392 894 443 443 894 132 132 894 392 392 895 132 132 895 445 445 895 445 445 896 132 132 896 444 444 896 445 445 897 444 444 897 446 446 897 446 446 898 444 444 898 447 447 898 446 446 899 447 447 899 395 395 899 395 395 900 447 447 900 449 449 900 395 395 901 449 449 901 448 448 901 448 448 902 449 449 902 450 450 902 448 448 903 450 450 903 451 451 903 451 451 904 450 450 904 134 134 904 451 451 905 134 134 905 452 452 905 452 452 906 134 134 906 453 453 906 452 452 907 453 453 907 399 399 907 399 399 908 453 453 908 136 136 908 399 399 909 136 136 909 454 454 909 454 454 910 136 136 910 135 135 910 454 454 911 135 135 911 401 401 911 401 401 912 135 135 912 455 455 912 401 401 913 455 455 913 456 456 913 456 456 914 455 455 914 137 137 914 456 456 915 137 137 915 457 457 915 457 457 916 137 137 916 458 458 916 457 457 917 458 458 917 459 459 917 459 459 918 458 458 918 460 460 918 459 459 919 460 460 919 405 405 919 405 405 920 460 460 920 461 461 920 405 405 921 461 461 921 407 407 921 407 407 922 461 461 922 462 462 922 407 407 923 462 462 923 408 408 923 408 408 924 462 462 924 463 463 924 408 408 925 463 463 925 465 465 925 465 465 926 463 463 926 464 464 926 465 465 927 464 464 927 412 412 927 412 412 928 464 464 928 466 466 928 412 412 929 466 466 929 414 414 929 414 414 930 466 466 930 467 467 930 414 414 931 467 467 931 415 415 931 415 415 932 467 467 932 468 468 932 415 415 933 468 468 933 469 469 933 469 469 934 468 468 934 139 139 934 469 469 935 139 139 935 416 416 935 416 416 936 139 139 936 470 470 936 416 416 937 470 470 937 471 471 937 471 471 938 470 470 938 141 141 938 471 471 939 141 141 939 419 419 939 419 419 940 141 141 940 140 140 940 419 419 941 140 140 941 472 472 941 472 472 942 140 140 942 142 142 942 472 472 943 142 142 943 473 473 943 473 473 944 142 142 944 474 474 944 473 473 945 474 474 945 475 475 945 475 475 946 474 474 946 476 476 946 475 475 947 476 476 947 422 422 947 422 422 948 476 476 948 477 477 948 422 422 949 477 477 949 423 423 949 423 423 950 477 477 950 144 144 950 423 423 951 144 144 951 478 478 951 478 478 952 144 144 952 143 143 952 478 478 953 143 143 953 479 479 953 479 479 954 143 143 954 480 480 954 479 479 955 480 480 955 481 481 955 481 481 956 480 480 956 482 482 956 481 481 957 482 482 957 428 428 957 428 428 958 482 482 958 120 120 958 483 483 959 53 53 959 809 809 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 789 789 961 781 781 962 66 66 962 484 484 962 766 766 963 68 68 963 768 768 963 69 69 964 70 70 964 762 762 964 485 485 965 73 73 965 751 751 965 78 78 966 80 80 966 742 742 966 486 486 967 728 728 967 731 731 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 710 710 969 96 96 970 487 487 970 695 695 970 686 686 971 103 103 971 488 488 971 2 2 972 3 3 972 678 678 972 6 6 973 8 8 973 518 518 973 12 12 974 13 13 974 655 655 974 649 649 975 15 15 975 643 643 975 16 16 976 642 642 976 641 641 976 627 627 977 625 625 977 511 511 977 21 21 978 23 23 978 609 609 978 25 25 979 604 604 979 610 610 979 28 28 980 489 489 980 602 602 980 31 31 981 34 34 981 504 504 981 40 40 982 490 490 982 491 491 982 43 43 983 44 44 983 492 492 983 566 566 984 45 45 984 493 493 984 494 494 985 553 553 985 555 555 985 106 106 986 496 496 986 495 495 986 495 495 987 496 496 987 561 561 987 495 495 988 561 561 988 550 550 988 550 550 989 561 561 989 497 497 989 550 550 990 497 497 990 498 498 990 498 498 991 497 497 991 557 557 991 498 498 992 557 557 992 499 499 992 499 499 993 557 557 993 500 500 993 499 499 994 500 500 994 552 552 994 552 552 995 500 500 995 555 555 995 501 501 996 107 107 996 586 586 996 586 586 997 107 107 997 596 596 997 586 586 998 596 596 998 587 587 998 587 587 999 596 596 999 594 594 999 587 587 1000 594 594 1000 588 588 1000 588 588 1001 594 594 1001 502 502 1001 588 588 1002 502 502 1002 503 503 1002 503 503 1003 502 502 1003 591 591 1003 503 503 1004 591 591 1004 589 589 1004 589 589 1005 591 591 1005 504 504 1005 505 505 1006 506 506 1006 508 508 1006 508 508 1007 506 506 1007 507 507 1007 508 508 1008 507 507 1008 509 509 1008 509 509 1009 507 507 1009 631 631 1009 509 509 1010 631 631 1010 622 622 1010 622 622 1011 631 631 1011 629 629 1011 622 622 1012 629 629 1012 623 623 1012 623 623 1013 629 629 1013 628 628 1013 623 623 1014 628 628 1014 510 510 1014 510 510 1015 628 628 1015 511 511 1015 661 661 1016 672 672 1016 512 512 1016 512 512 1017 672 672 1017 514 514 1017 512 512 1018 514 514 1018 513 513 1018 513 513 1019 514 514 1019 671 671 1019 513 513 1020 671 671 1020 516 516 1020 516 516 1021 671 671 1021 515 515 1021 516 516 1022 515 515 1022 517 517 1022 517 517 1023 515 515 1023 668 668 1023 517 517 1024 668 668 1024 664 664 1024 664 664 1025 668 668 1025 518 518 1025 112 112 1026 111 111 1026 685 685 1026 685 685 1027 111 111 1027 519 519 1027 685 685 1028 519 519 1028 520 520 1028 520 520 1029 519 519 1029 521 521 1029 520 520 1030 521 521 1030 682 682 1030 682 682 1031 521 521 1031 689 689 1031 682 682 1032 689 689 1032 680 680 1032 680 680 1033 689 689 1033 522 522 1033 680 680 1034 522 522 1034 679 679 1034 679 679 1035 522 522 1035 488 488 1035 523 523 1036 524 524 1036 691 691 1036 691 691 1037 524 524 1037 526 526 1037 691 691 1038 526 526 1038 525 525 1038 525 525 1039 526 526 1039 699 699 1039 525 525 1040 699 699 1040 527 527 1040 527 527 1041 699 699 1041 698 698 1041 527 527 1042 698 698 1042 528 528 1042 528 528 1043 698 698 1043 529 529 1043 528 528 1044 529 529 1044 694 694 1044 694 694 1045 529 529 1045 695 695 1045 713 713 1046 530 530 1046 531 531 1046 531 531 1047 530 530 1047 720 720 1047 531 531 1048 720 720 1048 533 533 1048 533 533 1049 720 720 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 718 718 1051 534 534 1052 718 718 1052 711 711 1052 711 711 1053 718 718 1053 535 535 1053 711 711 1054 535 535 1054 709 709 1054 709 709 1055 535 535 1055 536 536 1055 722 722 1056 114 114 1056 724 724 1056 724 724 1057 114 114 1057 537 537 1057 724 724 1058 537 537 1058 538 538 1058 538 538 1059 537 537 1059 735 735 1059 538 538 1060 735 735 1060 539 539 1060 539 539 1061 735 735 1061 540 540 1061 539 539 1062 540 540 1062 725 725 1062 725 725 1063 540 540 1063 732 732 1063 725 725 1064 732 732 1064 729 729 1064 729 729 1065 732 732 1065 731 731 1065 541 541 1066 755 755 1066 542 542 1066 542 542 1067 755 755 1067 543 543 1067 542 542 1068 543 543 1068 747 747 1068 747 747 1069 543 543 1069 754 754 1069 747 747 1070 754 754 1070 746 746 1070 746 746 1071 754 754 1071 544 544 1071 746 746 1072 544 544 1072 744 744 1072 744 744 1073 544 544 1073 545 545 1073 744 744 1074 545 545 1074 743 743 1074 743 743 1075 545 545 1075 751 751 1075 786 786 1076 117 117 1076 547 547 1076 547 547 1077 117 117 1077 546 546 1077 547 547 1078 546 546 1078 548 548 1078 548 548 1079 546 546 1079 793 793 1079 548 548 1080 793 793 1080 785 785 1080 785 785 1081 793 793 1081 792 792 1081 785 785 1082 792 792 1082 783 783 1082 783 783 1083 792 792 1083 791 791 1083 783 783 1084 791 791 1084 782 782 1084 782 782 1085 791 791 1085 789 789 1085 813 813 1086 106 106 1086 549 549 1086 549 549 1087 106 106 1087 495 495 1087 549 549 1088 495 495 1088 816 816 1088 816 816 1089 495 495 1089 550 550 1089 816 816 1090 550 550 1090 818 818 1090 818 818 1091 550 550 1091 498 498 1091 818 818 1092 498 498 1092 819 819 1092 819 819 1093 498 498 1093 499 499 1093 819 819 1094 499 499 1094 551 551 1094 551 551 1095 499 499 1095 552 552 1095 551 551 1096 552 552 1096 820 820 1096 820 820 1097 552 552 1097 48 48 1097 555 555 1098 553 553 1098 552 552 1098 552 552 1099 553 553 1099 47 47 1099 552 552 1100 47 47 1100 48 48 1100 554 554 1101 494 494 1101 565 565 1101 565 565 1102 494 494 1102 555 555 1102 565 565 1103 555 555 1103 556 556 1103 556 556 1104 555 555 1104 500 500 1104 556 556 1105 500 500 1105 558 558 1105 558 558 1106 500 500 1106 557 557 1106 558 558 1107 557 557 1107 559 559 1107 559 559 1108 557 557 1108 497 497 1108 559 559 1109 497 497 1109 563 563 1109 563 563 1110 497 497 1110 561 561 1110 563 563 1111 561 561 1111 560 560 1111 560 560 1112 561 561 1112 496 496 1112 560 560 1113 562 562 1113 563 563 1113 563 563 1114 562 562 1114 564 564 1114 563 563 1115 564 564 1115 559 559 1115 559 559 1116 564 564 1116 569 569 1116 559 559 1117 569 569 1117 558 558 1117 558 558 1118 569 569 1118 568 568 1118 558 558 1119 568 568 1119 556 556 1119 556 556 1120 568 568 1120 567 567 1120 556 556 1121 567 567 1121 565 565 1121 565 565 1122 567 567 1122 493 493 1122 565 565 1123 493 493 1123 554 554 1123 554 554 1124 493 493 1124 45 45 1124 44 44 1125 566 566 1125 492 492 1125 492 492 1126 566 566 1126 493 493 1126 492 492 1127 493 493 1127 574 574 1127 574 574 1128 493 493 1128 567 567 1128 574 574 1129 567 567 1129 575 575 1129 575 575 1130 567 567 1130 568 568 1130 575 575 1131 568 568 1131 570 570 1131 570 570 1132 568 568 1132 569 569 1132 570 570 1133 569 569 1133 577 577 1133 577 577 1134 569 569 1134 564 564 1134 577 577 1135 564 564 1135 571 571 1135 571 571 1136 564 564 1136 562 562 1136 490 490 1137 43 43 1137 491 491 1137 491 491 1138 43 43 1138 492 492 1138 491 491 1139 492 492 1139 572 572 1139 572 572 1140 492 492 1140 574 574 1140 572 572 1141 574 574 1141 573 573 1141 573 573 1142 574 574 1142 575 575 1142 573 573 1143 575 575 1143 576 576 1143 576 576 1144 575 575 1144 570 570 1144 576 576 1145 570 570 1145 584 584 1145 584 584 1146 570 570 1146 577 577 1146 584 584 1147 577 577 1147 578 578 1147 578 578 1148 577 577 1148 571 571 1148 39 39 1149 40 40 1149 579 579 1149 579 579 1150 40 40 1150 491 491 1150 579 579 1151 491 491 1151 580 580 1151 580 580 1152 491 491 1152 572 572 1152 580 580 1153 572 572 1153 581 581 1153 581 581 1154 572 572 1154 573 573 1154 581 581 1155 573 573 1155 582 582 1155 582 582 1156 573 573 1156 576 576 1156 582 582 1157 576 576 1157 583 583 1157 583 583 1158 576 576 1158 584 584 1158 583 583 1159 584 584 1159 585 585 1159 585 585 1160 584 584 1160 578 578 1160 585 585 1161 501 501 1161 583 583 1161 583 583 1162 501 501 1162 586 586 1162 583 583 1163 586 586 1163 582 582 1163 582 582 1164 586 586 1164 587 587 1164 582 582 1165 587 587 1165 581 581 1165 581 581 1166 587 587 1166 588 588 1166 581 581 1167 588 588 1167 580 580 1167 580 580 1168 588 588 1168 503 503 1168 580 580 1169 503 503 1169 579 579 1169 579 579 1170 503 503 1170 589 589 1170 579 579 1171 589 589 1171 39 39 1171 39 39 1172 589 589 1172 36 36 1172 504 504 1173 34 34 1173 589 589 1173 589 589 1174 34 34 1174 35 35 1174 589 589 1175 35 35 1175 36 36 1175 603 603 1176 31 31 1176 601 601 1176 601 601 1177 31 31 1177 504 504 1177 601 601 1178 504 504 1178 590 590 1178 590 590 1179 504 504 1179 591 591 1179 590 590 1180 591 591 1180 592 592 1180 592 592 1181 591 591 1181 502 502 1181 592 592 1182 502 502 1182 593 593 1182 593 593 1183 502 502 1183 594 594 1183 593 593 1184 594 594 1184 595 595 1184 595 595 1185 594 594 1185 596 596 1185 595 595 1186 596 596 1186 597 597 1186 597 597 1187 596 596 1187 107 107 1187 597 597 1188 598 598 1188 595 595 1188 595 595 1189 598 598 1189 608 608 1189 595 595 1190 608 608 1190 593 593 1190 593 593 1191 608 608 1191 599 599 1191 593 593 1192 599 599 1192 592 592 1192 592 592 1193 599 599 1193 600 600 1193 592 592 1194 600 600 1194 590 590 1194 590 590 1195 600 600 1195 606 606 1195 590 590 1196 606 606 1196 601 601 1196 601 601 1197 606 606 1197 602 602 1197 601 601 1198 602 602 1198 603 603 1198 603 603 1199 602 602 1199 489 489 1199 604 604 1200 28 28 1200 610 610 1200 610 610 1201 28 28 1201 602 602 1201 610 610 1202 602 602 1202 605 605 1202 605 605 1203 602 602 1203 606 606 1203 605 605 1204 606 606 1204 613 613 1204 613 613 1205 606 606 1205 600 600 1205 613 613 1206 600 600 1206 607 607 1206 607 607 1207 600 600 1207 599 599 1207 607 607 1208 599 599 1208 615 615 1208 615 615 1209 599 599 1209 608 608 1209 615 615 1210 608 608 1210 108 108 1210 108 108 1211 608 608 1211 598 598 1211 23 23 1212 25 25 1212 609 609 1212 609 609 1213 25 25 1213 610 610 1213 609 609 1214 610 610 1214 611 611 1214 611 611 1215 610 610 1215 605 605 1215 611 611 1216 605 605 1216 612 612 1216 612 612 1217 605 605 1217 613 613 1217 612 612 1218 613 613 1218 619 619 1218 619 619 1219 613 613 1219 607 607 1219 619 619 1220 607 607 1220 614 614 1220 614 614 1221 607 607 1221 615 615 1221 614 614 1222 615 615 1222 109 109 1222 109 109 1223 615 615 1223 108 108 1223 20 20 1224 21 21 1224 616 616 1224 616 616 1225 21 21 1225 609 609 1225 616 616 1226 609 609 1226 624 624 1226 624 624 1227 609 609 1227 611 611 1227 624 624 1228 611 611 1228 617 617 1228 617 617 1229 611 611 1229 612 612 1229 617 617 1230 612 612 1230 618 618 1230 618 618 1231 612 612 1231 619 619 1231 618 618 1232 619 619 1232 621 621 1232 621 621 1233 619 619 1233 614 614 1233 621 621 1234 614 614 1234 620 620 1234 620 620 1235 614 614 1235 109 109 1235 620 620 1236 505 505 1236 621 621 1236 621 621 1237 505 505 1237 508 508 1237 621 621 1238 508 508 1238 618 618 1238 618 618 1239 508 508 1239 509 509 1239 618 618 1240 509 509 1240 617 617 1240 617 617 1241 509 509 1241 622 622 1241 617 617 1242 622 622 1242 624 624 1242 624 624 1243 622 622 1243 623 623 1243 624 624 1244 623 623 1244 616 616 1244 616 616 1245 623 623 1245 510 510 1245 616 616 1246 510 510 1246 20 20 1246 20 20 1247 510 510 1247 626 626 1247 511 511 1248 625 625 1248 510 510 1248 510 510 1249 625 625 1249 18 18 1249 510 510 1250 18 18 1250 626 626 1250 640 640 1251 627 627 1251 639 639 1251 639 639 1252 627 627 1252 511 511 1252 639 639 1253 511 511 1253 638 638 1253 638 638 1254 511 511 1254 628 628 1254 638 638 1255 628 628 1255 635 635 1255 635 635 1256 628 628 1256 629 629 1256 635 635 1257 629 629 1257 634 634 1257 634 634 1258 629 629 1258 631 631 1258 634 634 1259 631 631 1259 630 630 1259 630 630 1260 631 631 1260 507 507 1260 630 630 1261 507 507 1261 632 632 1261 632 632 1262 507 507 1262 506 506 1262 632 632 1263 633 633 1263 630 630 1263 630 630 1264 633 633 1264 648 648 1264 630 630 1265 648 648 1265 634 634 1265 634 634 1266 648 648 1266 647 647 1266 634 634 1267 647 647 1267 635 635 1267 635 635 1268 647 647 1268 636 636 1268 635 635 1269 636 636 1269 638 638 1269 638 638 1270 636 636 1270 637 637 1270 638 638 1271 637 637 1271 639 639 1271 639 639 1272 637 637 1272 641 641 1272 639 639 1273 641 641 1273 640 640 1273 640 640 1274 641 641 1274 642 642 1274 15 15 1275 16 16 1275 643 643 1275 643 643 1276 16 16 1276 641 641 1276 643 643 1277 641 641 1277 644 644 1277 644 644 1278 641 641 1278 637 637 1278 644 644 1279 637 637 1279 645 645 1279 645 645 1280 637 637 1280 636 636 1280 645 645 1281 636 636 1281 646 646 1281 646 646 1282 636 636 1282 647 647 1282 646 646 1283 647 647 1283 653 653 1283 653 653 1284 647 647 1284 648 648 1284 653 653 1285 648 648 1285 110 110 1285 110 110 1286 648 648 1286 633 633 1286 13 13 1287 649 649 1287 655 655 1287 655 655 1288 649 649 1288 643 643 1288 655 655 1289 643 643 1289 650 650 1289 650 650 1290 643 643 1290 644 644 1290 650 650 1291 644 644 1291 651 651 1291 651 651 1292 644 644 1292 645 645 1292 651 651 1293 645 645 1293 652 652 1293 652 652 1294 645 645 1294 646 646 1294 652 652 1295 646 646 1295 659 659 1295 659 659 1296 646 646 1296 653 653 1296 659 659 1297 653 653 1297 660 660 1297 660 660 1298 653 653 1298 110 110 1298 665 665 1299 12 12 1299 663 663 1299 663 663 1300 12 12 1300 655 655 1300 663 663 1301 655 655 1301 654 654 1301 654 654 1302 655 655 1302 650 650 1302 654 654 1303 650 650 1303 656 656 1303 656 656 1304 650 650 1304 651 651 1304 656 656 1305 651 651 1305 657 657 1305 657 657 1306 651 651 1306 652 652 1306 657 657 1307 652 652 1307 662 662 1307 662 662 1308 652 652 1308 659 659 1308 662 662 1309 659 659 1309 658 658 1309 658 658 1310 659 659 1310 660 660 1310 658 658 1311 661 661 1311 662 662 1311 662 662 1312 661 661 1312 512 512 1312 662 662 1313 512 512 1313 657 657 1313 657 657 1314 512 512 1314 513 513 1314 657 657 1315 513 513 1315 656 656 1315 656 656 1316 513 513 1316 516 516 1316 656 656 1317 516 516 1317 654 654 1317 654 654 1318 516 516 1318 517 517 1318 654 654 1319 517 517 1319 663 663 1319 663 663 1320 517 517 1320 664 664 1320 663 663 1321 664 664 1321 665 665 1321 665 665 1322 664 664 1322 666 666 1322 518 518 1323 8 8 1323 664 664 1323 664 664 1324 8 8 1324 9 9 1324 664 664 1325 9 9 1325 666 666 1325 4 4 1326 6 6 1326 667 667 1326 667 667 1327 6 6 1327 518 518 1327 667 667 1328 518 518 1328 677 677 1328 677 677 1329 518 518 1329 668 668 1329 677 677 1330 668 668 1330 669 669 1330 669 669 1331 668 668 1331 515 515 1331 669 669 1332 515 515 1332 670 670 1332 670 670 1333 515 515 1333 671 671 1333 670 670 1334 671 671 1334 674 674 1334 674 674 1335 671 671 1335 514 514 1335 674 674 1336 514 514 1336 673 673 1336 673 673 1337 514 514 1337 672 672 1337 673 673 1338 675 675 1338 674 674 1338 674 674 1339 675 675 1339 684 684 1339 674 674 1340 684 684 1340 670 670 1340 670 670 1341 684 684 1341 676 676 1341 670 670 1342 676 676 1342 669 669 1342 669 669 1343 676 676 1343 683 683 1343 669 669 1344 683 683 1344 677 677 1344 677 677 1345 683 683 1345 681 681 1345 677 677 1346 681 681 1346 667 667 1346 667 667 1347 681 681 1347 678 678 1347 667 667 1348 678 678 1348 4 4 1348 4 4 1349 678 678 1349 3 3 1349 1 1 1350 2 2 1350 679 679 1350 679 679 1351 2 2 1351 678 678 1351 679 679 1352 678 678 1352 680 680 1352 680 680 1353 678 678 1353 681 681 1353 680 680 1354 681 681 1354 682 682 1354 682 682 1355 681 681 1355 683 683 1355 682 682 1356 683 683 1356 520 520 1356 520 520 1357 683 683 1357 676 676 1357 520 520 1358 676 676 1358 685 685 1358 685 685 1359 676 676 1359 684 684 1359 685 685 1360 684 684 1360 112 112 1360 112 112 1361 684 684 1361 675 675 1361 488 488 1362 103 103 1362 679 679 1362 679 679 1363 103 103 1363 0 0 1363 679 679 1364 0 0 1364 1 1 1364 99 99 1365 686 686 1365 693 693 1365 693 693 1366 686 686 1366 488 488 1366 693 693 1367 488 488 1367 687 687 1367 687 687 1368 488 488 1368 522 522 1368 687 687 1369 522 522 1369 688 688 1369 688 688 1370 522 522 1370 689 689 1370 688 688 1371 689 689 1371 692 692 1371 692 692 1372 689 689 1372 521 521 1372 692 692 1373 521 521 1373 690 690 1373 690 690 1374 521 521 1374 519 519 1374 690 690 1375 519 519 1375 113 113 1375 113 113 1376 519 519 1376 111 111 1376 113 113 1377 523 523 1377 690 690 1377 690 690 1378 523 523 1378 691 691 1378 690 690 1379 691 691 1379 692 692 1379 692 692 1380 691 691 1380 525 525 1380 692 692 1381 525 525 1381 688 688 1381 688 688 1382 525 525 1382 527 527 1382 688 688 1383 527 527 1383 687 687 1383 687 687 1384 527 527 1384 528 528 1384 687 687 1385 528 528 1385 693 693 1385 693 693 1386 528 528 1386 694 694 1386 693 693 1387 694 694 1387 99 99 1387 99 99 1388 694 694 1388 98 98 1388 695 695 1389 487 487 1389 694 694 1389 694 694 1390 487 487 1390 696 696 1390 694 694 1391 696 696 1391 98 98 1391 697 697 1392 96 96 1392 708 708 1392 708 708 1393 96 96 1393 695 695 1393 708 708 1394 695 695 1394 707 707 1394 707 707 1395 695 695 1395 529 529 1395 707 707 1396 529 529 1396 705 705 1396 705 705 1397 529 529 1397 698 698 1397 705 705 1398 698 698 1398 702 702 1398 702 702 1399 698 698 1399 699 699 1399 702 702 1400 699 699 1400 700 700 1400 700 700 1401 699 699 1401 526 526 1401 700 700 1402 526 526 1402 701 701 1402 701 701 1403 526 526 1403 524 524 1403 701 701 1404 714 714 1404 700 700 1404 700 700 1405 714 714 1405 703 703 1405 700 700 1406 703 703 1406 702 702 1406 702 702 1407 703 703 1407 704 704 1407 702 702 1408 704 704 1408 705 705 1408 705 705 1409 704 704 1409 706 706 1409 705 705 1410 706 706 1410 707 707 1410 707 707 1411 706 706 1411 712 712 1411 707 707 1412 712 712 1412 708 708 1412 708 708 1413 712 712 1413 710 710 1413 708 708 1414 710 710 1414 697 697 1414 697 697 1415 710 710 1415 94 94 1415 91 91 1416 93 93 1416 709 709 1416 709 709 1417 93 93 1417 710 710 1417 709 709 1418 710 710 1418 711 711 1418 711 711 1419 710 710 1419 712 712 1419 711 711 1420 712 712 1420 534 534 1420 534 534 1421 712 712 1421 706 706 1421 534 534 1422 706 706 1422 533 533 1422 533 533 1423 706 706 1423 704 704 1423 533 533 1424 704 704 1424 531 531 1424 531 531 1425 704 704 1425 703 703 1425 531 531 1426 703 703 1426 713 713 1426 713 713 1427 703 703 1427 714 714 1427 536 536 1428 89 89 1428 709 709 1428 709 709 1429 89 89 1429 715 715 1429 709 709 1430 715 715 1430 91 91 1430 87 87 1431 88 88 1431 726 726 1431 726 726 1432 88 88 1432 536 536 1432 726 726 1433 536 536 1433 716 716 1433 716 716 1434 536 536 1434 535 535 1434 716 716 1435 535 535 1435 717 717 1435 717 717 1436 535 535 1436 718 718 1436 717 717 1437 718 718 1437 719 719 1437 719 719 1438 718 718 1438 532 532 1438 719 719 1439 532 532 1439 723 723 1439 723 723 1440 532 532 1440 720 720 1440 723 723 1441 720 720 1441 721 721 1441 721 721 1442 720 720 1442 530 530 1442 721 721 1443 722 722 1443 723 723 1443 723 723 1444 722 722 1444 724 724 1444 723 723 1445 724 724 1445 719 719 1445 719 719 1446 724 724 1446 538 538 1446 719 719 1447 538 538 1447 717 717 1447 717 717 1448 538 538 1448 539 539 1448 717 717 1449 539 539 1449 716 716 1449 716 716 1450 539 539 1450 725 725 1450 716 716 1451 725 725 1451 726 726 1451 726 726 1452 725 725 1452 729 729 1452 726 726 1453 729 729 1453 87 87 1453 87 87 1454 729 729 1454 727 727 1454 731 731 1455 728 728 1455 729 729 1455 729 729 1456 728 728 1456 84 84 1456 729 729 1457 84 84 1457 727 727 1457 81 81 1458 486 486 1458 741 741 1458 741 741 1459 486 486 1459 731 731 1459 741 741 1460 731 731 1460 730 730 1460 730 730 1461 731 731 1461 732 732 1461 730 730 1462 732 732 1462 733 733 1462 733 733 1463 732 732 1463 540 540 1463 733 733 1464 540 540 1464 734 734 1464 734 734 1465 540 540 1465 735 735 1465 734 734 1466 735 735 1466 736 736 1466 736 736 1467 735 735 1467 537 537 1467 736 736 1468 537 537 1468 737 737 1468 737 737 1469 537 537 1469 114 114 1469 737 737 1470 738 738 1470 736 736 1470 736 736 1471 738 738 1471 748 748 1471 736 736 1472 748 748 1472 734 734 1472 734 734 1473 748 748 1473 739 739 1473 734 734 1474 739 739 1474 733 733 1474 733 733 1475 739 739 1475 740 740 1475 733 733 1476 740 740 1476 730 730 1476 730 730 1477 740 740 1477 745 745 1477 730 730 1478 745 745 1478 741 741 1478 741 741 1479 745 745 1479 742 742 1479 741 741 1480 742 742 1480 81 81 1480 81 81 1481 742 742 1481 80 80 1481 749 749 1482 78 78 1482 743 743 1482 743 743 1483 78 78 1483 742 742 1483 743 743 1484 742 742 1484 744 744 1484 744 744 1485 742 742 1485 745 745 1485 744 744 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 740 740 1487 746 746 1488 740 740 1488 747 747 1488 747 747 1489 740 740 1489 739 739 1489 747 747 1490 739 739 1490 542 542 1490 542 542 1491 739 739 1491 748 748 1491 542 542 1492 748 748 1492 541 541 1492 541 541 1493 748 748 1493 738 738 1493 751 751 1494 73 73 1494 743 743 1494 743 743 1495 73 73 1495 75 75 1495 743 743 1496 75 75 1496 749 749 1496 71 71 1497 485 485 1497 750 750 1497 750 750 1498 485 485 1498 751 751 1498 750 750 1499 751 751 1499 760 760 1499 760 760 1500 751 751 1500 545 545 1500 760 760 1501 545 545 1501 752 752 1501 752 752 1502 545 545 1502 544 544 1502 752 752 1503 544 544 1503 753 753 1503 753 753 1504 544 544 1504 754 754 1504 753 753 1505 754 754 1505 756 756 1505 756 756 1506 754 754 1506 543 543 1506 756 756 1507 543 543 1507 115 115 1507 115 115 1508 543 543 1508 755 755 1508 115 115 1509 757 757 1509 756 756 1509 756 756 1510 757 757 1510 765 765 1510 756 756 1511 765 765 1511 753 753 1511 753 753 1512 765 765 1512 758 758 1512 753 753 1513 758 758 1513 752 752 1513 752 752 1514 758 758 1514 759 759 1514 752 752 1515 759 759 1515 760 760 1515 760 760 1516 759 759 1516 761 761 1516 760 760 1517 761 761 1517 750 750 1517 750 750 1518 761 761 1518 762 762 1518 750 750 1519 762 762 1519 71 71 1519 71 71 1520 762 762 1520 70 70 1520 68 68 1521 69 69 1521 768 768 1521 768 768 1522 69 69 1522 762 762 1522 768 768 1523 762 762 1523 769 769 1523 769 769 1524 762 762 1524 761 761 1524 769 769 1525 761 761 1525 763 763 1525 763 763 1526 761 761 1526 759 759 1526 763 763 1527 759 759 1527 764 764 1527 764 764 1528 759 759 1528 758 758 1528 764 764 1529 758 758 1529 770 770 1529 770 770 1530 758 758 1530 765 765 1530 770 770 1531 765 765 1531 116 116 1531 116 116 1532 765 765 1532 757 757 1532 780 780 1533 766 766 1533 767 767 1533 767 767 1534 766 766 1534 768 768 1534 767 767 1535 768 768 1535 779 779 1535 779 779 1536 768 768 1536 769 769 1536 779 779 1537 769 769 1537 777 777 1537 777 777 1538 769 769 1538 763 763 1538 777 777 1539 763 763 1539 774 774 1539 774 774 1540 763 763 1540 764 764 1540 774 774 1541 764 764 1541 773 773 1541 773 773 1542 764 764 1542 770 770 1542 773 773 1543 770 770 1543 771 771 1543 771 771 1544 770 770 1544 116 116 1544 771 771 1545 772 772 1545 773 773 1545 773 773 1546 772 772 1546 775 775 1546 773 773 1547 775 775 1547 774 774 1547 774 774 1548 775 775 1548 776 776 1548 774 774 1549 776 776 1549 777 777 1549 777 777 1550 776 776 1550 778 778 1550 777 777 1551 778 778 1551 779 779 1551 779 779 1552 778 778 1552 784 784 1552 779 779 1553 784 784 1553 767 767 1553 767 767 1554 784 784 1554 484 484 1554 767 767 1555 484 484 1555 780 780 1555 780 780 1556 484 484 1556 66 66 1556 63 63 1557 781 781 1557 782 782 1557 782 782 1558 781 781 1558 484 484 1558 782 782 1559 484 484 1559 783 783 1559 783 783 1560 484 484 1560 784 784 1560 783 783 1561 784 784 1561 785 785 1561 785 785 1562 784 784 1562 778 778 1562 785 785 1563 778 778 1563 548 548 1563 548 548 1564 778 778 1564 776 776 1564 548 548 1565 776 776 1565 547 547 1565 547 547 1566 776 776 1566 775 775 1566 547 547 1567 775 775 1567 786 786 1567 786 786 1568 775 775 1568 772 772 1568 789 789 1569 61 61 1569 782 782 1569 782 782 1570 61 61 1570 787 787 1570 782 782 1571 787 787 1571 63 63 1571 57 57 1572 58 58 1572 788 788 1572 788 788 1573 58 58 1573 789 789 1573 788 788 1574 789 789 1574 790 790 1574 790 790 1575 789 789 1575 791 791 1575 790 790 1576 791 791 1576 798 798 1576 798 798 1577 791 791 1577 792 792 1577 798 798 1578 792 792 1578 797 797 1578 797 797 1579 792 792 1579 793 793 1579 797 797 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 546 546 1581 794 794 1582 546 546 1582 795 795 1582 795 795 1583 546 546 1583 117 117 1583 795 795 1584 119 119 1584 794 794 1584 794 794 1585 119 119 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 790 790 1590 790 790 1591 803 803 1591 802 802 1591 790 790 1592 802 802 1592 788 788 1592 788 788 1593 802 802 1593 799 799 1593 788 788 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 809 809 1596 809 809 1597 800 800 1597 799 799 1597 809 809 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 811 811 1600 811 811 1601 802 802 1601 803 803 1601 811 811 1602 803 803 1602 812 812 1602 812 812 1603 803 803 1603 804 804 1603 812 812 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 796 796 1605 805 805 1606 796 796 1606 806 806 1606 806 806 1607 796 796 1607 119 119 1607 807 807 1608 483 483 1608 808 808 1608 808 808 1609 483 483 1609 809 809 1609 808 808 1610 809 809 1610 817 817 1610 817 817 1611 809 809 1611 801 801 1611 817 817 1612 801 801 1612 810 810 1612 810 810 1613 801 801 1613 811 811 1613 810 810 1614 811 811 1614 815 815 1614 815 815 1615 811 811 1615 812 812 1615 815 815 1616 812 812 1616 814 814 1616 814 814 1617 812 812 1617 805 805 1617 814 814 1618 805 805 1618 118 118 1618 118 118 1619 805 805 1619 806 806 1619 118 118 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 549 549 1621 814 814 1622 549 549 1622 815 815 1622 815 815 1623 549 549 1623 816 816 1623 815 815 1624 816 816 1624 810 810 1624 810 810 1625 816 816 1625 818 818 1625 810 810 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 808 808 1628 808 808 1629 819 819 1629 551 551 1629 808 808 1630 551 551 1630 807 807 1630 807 807 1631 551 551 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.STL b/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.STL new file mode 100755 index 0000000..d2e59ed Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.dae b/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.dae new file mode 100755 index 0000000..c376542 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/left_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 19:53:28 2016 GMT + Tue Jan 19 19:53:28 2016 GMT + Y_UP + + + + + + -0.0499122 3.7271e-18 -0.01 -0.0499122 -0.00296203 -0.01 -0.0492852 -0.00822582 -0.01 -0.0492115 -0.00884451 -0.01 -0.0478201 -0.0146028 -0.01 -0.0478201 -0.0146028 -0.035 -0.0472231 -0.0162098 -0.01 -0.0472231 -0.0162098 -0.035 -0.0457573 -0.0201562 -0.01 -0.0439062 -0.0237627 -0.01 -0.0457573 -0.0201562 -0.035 -0.0430522 -0.0254266 -0.035 -0.0394377 -0.030694 -0.01 -0.0358754 -0.0348276 -0.01 -0.033805 -0.0367216 -0.035 -0.0315044 -0.0388262 -0.01 -0.027324 -0.0418257 -0.01 -0.0315044 -0.0388262 -0.035 -0.0122534 -0.0483938 -0.01 -0.00443979 -0.0498025 -0.035 -0.00443979 -0.0498025 -0.01 -0.00412845 -0.0498117 -0.01 -0.00412845 -0.0498117 -0.035 0.00148167 -0.049978 -0.01 0.00148167 -0.049978 -0.035 0.00412126 -0.0497427 -0.01 0.00412126 -0.0497427 -0.035 0.00738233 -0.049452 -0.035 0.0122647 -0.0484243 -0.01 0.0131794 -0.0482318 -0.035 0.0187914 -0.0463345 -0.035 0.0200575 -0.0457314 -0.01 0.0200575 -0.0457314 -0.035 0.0241396 -0.0437867 -0.035 0.0241396 -0.0437867 -0.01 0.0273038 -0.0417892 -0.01 0.029149 -0.0406243 -0.01 0.0273038 -0.0417892 -0.035 0.029149 -0.0406243 -0.035 0.0337491 -0.0368917 -0.01 0.0338576 -0.0367799 -0.01 0.0338576 -0.0367799 -0.035 0.0378756 -0.0326411 -0.035 0.039389 -0.0306587 -0.01 0.0414703 -0.0279323 -0.01 0.0444829 -0.0228315 -0.01 0.0444829 -0.0228315 -0.035 0.0492355 -0.00821488 -0.01 0.0496491 -0.00591366 -0.01 0.05 -6.78839e-18 -0.01 0.05 -7.97172e-18 -0.035 0.0496491 0.00591366 -0.035 0.0492355 0.00821488 -0.035 0.0486011 0.0117443 -0.01 0.0486011 0.0117443 -0.035 0.046871 0.0174101 -0.035 0.046871 0.0174101 -0.01 0.0444829 0.0228315 -0.01 0.0439282 0.0237705 -0.01 0.0444829 0.0228315 -0.035 0.0439282 0.0237705 -0.035 0.0414703 0.0279323 -0.01 0.0414703 0.0279323 -0.035 0.0378756 0.0326411 -0.01 0.0378756 0.0326411 -0.035 0.0338576 0.0367799 -0.035 0.0337491 0.0368917 -0.01 0.0337491 0.0368917 -0.035 0.0241396 0.0437867 -0.01 0.0200575 0.0457314 -0.01 0.0187914 0.0463345 -0.01 0.0131794 0.0482318 -0.01 0.0122647 0.0484243 -0.035 0.00738233 0.049452 -0.01 0.00738233 0.049452 -0.035 0.00412126 0.0497427 -0.01 0.00412126 0.0497427 -0.035 0.00148167 0.049978 -0.035 -0.00412845 0.0498117 -0.01 -0.00412845 0.0498117 -0.035 -0.00443979 0.0498025 -0.01 -0.0102989 0.0489278 -0.01 -0.0102989 0.0489278 -0.035 -0.0122534 0.0483938 -0.035 -0.0200592 0.0457256 -0.01 -0.0200592 0.0457256 -0.035 -0.0215033 0.0451399 -0.035 -0.0266912 0.0422798 -0.01 -0.027324 0.0418257 -0.01 -0.0315044 0.0388262 -0.01 -0.033805 0.0367216 -0.035 -0.0358754 0.0348276 -0.01 -0.0358754 0.0348276 -0.035 -0.0394377 0.030694 -0.01 -0.0397427 0.03034 -0.01 -0.0430522 0.0254266 -0.035 -0.0439062 0.0237627 -0.01 -0.0472231 0.0162098 -0.035 -0.0478201 0.0146028 -0.01 -0.0492115 0.00884451 -0.01 -0.0478201 0.0146028 -0.035 -0.0492115 0.00884451 -0.035 -0.0492852 0.00822582 -0.035 -0.0499122 0.00296203 -0.01 0.04 -2.05701e-17 1.78814e-09 0.0355863 -0.0182652 1.78814e-09 2.04635e-17 -4.11162e-18 1.78814e-09 0.0193117 -0.0350294 1.78814e-09 0.0233192 -0.0324995 1.78814e-09 0.0105435 -0.0385854 1.78814e-09 -0.00823914 -0.0391423 1.78814e-09 -0.0172026 -0.0361119 1.78814e-09 -0.0128108 -0.0378931 1.78814e-09 -0.0344417 -0.0203412 1.78814e-09 -0.0317942 -0.024272 1.78814e-09 -0.0393692 -0.00707561 1.78814e-09 -0.0399297 -0.00236963 1.78814e-09 -0.0366058 0.0161249 1.78814e-09 -0.0317942 0.024272 1.78814e-09 -0.0252035 0.031061 1.78814e-09 0.0233192 0.0324995 1.78814e-09 0.0355863 0.0182652 1.78814e-09 0.0331762 0.0223459 1.78814e-09 0.0269993 0.0295133 1.78814e-09 0.0388809 0.00939544 1.78814e-09 0.0397192 0.00473093 -0.045 0.0388809 0.00939544 -0.045 0.0269993 0.0295133 -0.045 0.0303004 0.0261129 -0.045 0.0331762 0.0223459 -0.045 0.0233192 0.0324995 -0.045 0.00590586 0.0395616 -0.045 0.0105435 0.0385854 -0.045 0.0150331 0.0370676 -0.045 -0.0128108 0.0378931 -0.045 -0.00355184 0.039842 -0.045 -0.0213529 0.0338238 -0.045 -0.0344417 0.0203412 -0.045 -0.0287003 0.027862 -0.045 -0.0399297 -0.00236963 -0.045 -0.0366058 -0.0161249 -0.045 -0.038256 -0.0116823 -0.045 -0.0317942 -0.024272 -0.045 1.53808e-17 -6.24162e-18 -0.045 0.0105435 -0.0385854 -0.045 0.0233192 -0.0324995 -0.045 0.0193117 -0.0350294 -0.045 0.0269993 -0.0295133 -0.045 0.0388809 -0.00939544 -0.045 0.0374968 -0.0139281 -0.045 0.046871 -0.0174101 -0.035 0.0439282 -0.0237705 -0.035 0.0414703 -0.0279323 -0.035 0.039389 -0.0306587 -0.035 0.0376174 -0.0324187 -0.0375882 0.0335192 -0.0366403 -0.0375882 0.0337491 -0.0368917 -0.035 0.0289503 -0.0403475 -0.0375882 0.0239751 -0.0434883 -0.0375882 0.0130895 -0.0479031 -0.0375882 0.00733202 -0.049115 -0.0375882 0.0122647 -0.0484243 -0.035 0.00147157 -0.0496374 -0.0375882 -0.00440954 -0.0494631 -0.0375882 -0.0102989 -0.0489278 -0.035 -0.0102287 -0.0485944 -0.0375882 -0.0122534 -0.0483938 -0.035 -0.0160135 -0.0473663 -0.035 -0.0200592 -0.0457256 -0.035 -0.0215033 -0.0451399 -0.035 -0.0266912 -0.0422798 -0.035 -0.027324 -0.0418257 -0.035 -0.0312897 -0.0385616 -0.0375882 -0.0358754 -0.0348276 -0.035 -0.0394377 -0.030694 -0.035 -0.0394719 -0.0301332 -0.0375882 -0.0397427 -0.03034 -0.035 -0.0427588 -0.0252533 -0.0375882 -0.0439062 -0.0237627 -0.035 -0.0474942 -0.0145033 -0.0375882 -0.0492115 -0.00884451 -0.035 -0.0488762 -0.00878424 -0.0375882 -0.0492852 -0.00822582 -0.035 -0.0499122 -0.00296203 -0.035 -0.049572 -0.00294185 -0.0375882 -0.0499122 2.54376e-18 -0.035 -0.0499122 0.00296203 -0.035 -0.049572 0.00294185 -0.0375882 -0.0457573 0.0201562 -0.035 -0.0439062 0.0237627 -0.035 -0.0427588 0.0252533 -0.0375882 -0.0397427 0.03034 -0.035 -0.0394377 0.030694 -0.035 -0.0356309 0.0345902 -0.0375882 -0.0312897 0.0385616 -0.0375882 -0.0315044 0.0388262 -0.035 -0.027324 0.0418257 -0.035 -0.0266912 0.0422798 -0.035 -0.0213567 0.0448323 -0.0375882 -0.0159044 0.0470435 -0.0375882 -0.0160135 0.0473663 -0.035 -0.0102287 0.0485944 -0.0375882 -0.00443979 0.0498025 -0.035 -0.00440954 0.0494631 -0.0375882 0.00147157 0.0496374 -0.0375882 0.00733202 0.049115 -0.0375882 0.0131794 0.0482318 -0.035 0.0187914 0.0463345 -0.035 0.0200575 0.0457314 -0.035 0.0239751 0.0434883 -0.0375882 0.0289503 0.0403475 -0.0375882 0.0241396 0.0437867 -0.035 0.0273038 0.0417892 -0.035 0.029149 0.0406243 -0.035 0.0376174 0.0324187 -0.0375882 0.039389 0.0306587 -0.035 0.047235 0.0162179 -0.035 0.0482699 0.0116643 -0.0375882 0.05 -1.4095e-17 -0.035 0.0496593 -1.41607e-17 -0.0375882 0.0496491 -0.00591366 -0.035 0.0493107 -0.00587336 -0.0375882 0.0492355 -0.00821488 -0.035 0.0486011 -0.0117443 -0.035 0.047235 -0.0162179 -0.035 0.0493107 0.00587336 -0.0375882 0.0465516 0.0172914 -0.0375882 0.0441797 0.0226759 -0.0375882 0.0411877 0.027742 -0.0375882 0.0403591 0.0271839 -0.04 0.0328448 0.0359032 -0.04 0.0335192 0.0366403 -0.0375882 0.0234928 0.0426135 -0.04 0.0182879 0.045093 -0.04 0.0186633 0.0460187 -0.0375882 0.0130895 0.0479031 -0.0375882 0.0128262 0.0469394 -0.04 0.00144197 0.0486389 -0.04 -0.00432083 0.048468 -0.04 -0.010023 0.0476168 -0.04 -0.0265093 0.0419917 -0.0375882 -0.0306602 0.0377858 -0.04 -0.0394719 0.0301332 -0.0375882 -0.0418986 0.0247453 -0.04 -0.0454455 0.0200188 -0.0375882 -0.0474942 0.0145033 -0.0375882 -0.0465387 0.0142116 -0.04 -0.0488762 0.00878424 -0.0375882 -0.0485748 0.00288266 -0.04 -0.0478929 -0.00860753 -0.04 -0.0465387 -0.0142116 -0.04 -0.0445312 -0.0196161 -0.04 -0.0454455 -0.0200188 -0.0375882 -0.0418986 -0.0247453 -0.04 -0.0386778 -0.029527 -0.04 -0.0356309 -0.0345902 -0.0375882 -0.025976 -0.0411469 -0.04 -0.0265093 -0.0419917 -0.0375882 -0.0213567 -0.0448323 -0.0375882 -0.0159044 -0.0470435 -0.0375882 -0.0155844 -0.0460971 -0.04 -0.010023 -0.0476168 -0.04 -0.00432083 -0.048468 -0.04 0.00144197 -0.0486389 -0.04 0.00718452 -0.0481269 -0.04 0.0186633 -0.0460187 -0.0375882 0.0182879 -0.045093 -0.04 0.0283679 -0.0395358 -0.04 0.0368607 -0.0317665 -0.04 0.0411877 -0.027742 -0.0375882 0.0432909 -0.0222197 -0.04 0.0441797 -0.0226759 -0.0375882 0.0456151 -0.0169436 -0.04 0.0465516 -0.0172914 -0.0375882 0.0472989 -0.0114296 -0.04 0.0482699 -0.0116643 -0.0375882 0.0486603 -1.41085e-17 -0.04 0.0483187 0.0057552 -0.04 0.0467407 0.00556724 -0.0420711 0.0457542 0.0110563 -0.0420711 0.0472989 0.0114296 -0.04 0.0418771 0.021494 -0.0420711 0.0456151 0.0169436 -0.04 0.0432909 0.0222197 -0.04 0.039041 0.0262961 -0.0420711 0.0356569 0.030729 -0.0420711 0.0368607 0.0317665 -0.04 0.0274415 0.0382446 -0.0420711 0.0283679 0.0395358 -0.04 0.0227255 0.0412218 -0.0420711 0.0176906 0.0436203 -0.0420711 0.0124073 0.0454064 -0.0420711 0.00694988 0.0465552 -0.0420711 0.00718452 0.0481269 -0.04 0.00139487 0.0470504 -0.0420711 -0.00417972 0.0468851 -0.0420711 -0.00969563 0.0460617 -0.0420711 -0.0155844 0.0460971 -0.04 -0.0209271 0.0439304 -0.04 -0.025976 0.0411469 -0.04 -0.0296589 0.0365518 -0.0420711 -0.0337738 0.0327874 -0.0420711 -0.0349141 0.0338943 -0.04 -0.0386778 0.029527 -0.04 -0.0445312 0.0196161 -0.04 -0.0450188 0.0137474 -0.0420711 -0.0478929 0.00860753 -0.04 -0.0469884 0.00278852 -0.0420711 -0.0485748 -0.00288266 -0.04 -0.0463288 -0.00832641 -0.0420711 -0.0450188 -0.0137474 -0.0420711 -0.0405302 -0.0239371 -0.0420711 -0.0337738 -0.0327874 -0.0420711 -0.0349141 -0.0338943 -0.04 -0.0306602 -0.0377858 -0.04 -0.0209271 -0.0439304 -0.04 -0.00969563 -0.0460617 -0.0420711 -0.00417972 -0.0468851 -0.0420711 0.00139487 -0.0470504 -0.0420711 0.00694988 -0.0465552 -0.0420711 0.0124073 -0.0454064 -0.0420711 0.0128262 -0.0469394 -0.04 0.0176906 -0.0436203 -0.0420711 0.0227255 -0.0412218 -0.0420711 0.0234928 -0.0426135 -0.04 0.0317722 -0.0347306 -0.0420711 0.0328448 -0.0359032 -0.04 0.0403591 -0.0271839 -0.04 0.0418771 -0.021494 -0.0420711 0.0441253 -0.0163902 -0.0420711 0.0483187 -0.0057552 -0.04 0.043741 0.0105699 -0.0436603 0.0421839 0.0156691 -0.0436603 0.0400346 0.0205483 -0.0436603 0.0441253 0.0163902 -0.0420711 0.0373233 0.0251391 -0.0436603 0.034088 0.029377 -0.0436603 0.0317722 0.0347306 -0.0420711 0.0169122 0.041701 -0.0436603 0.0013335 0.0449802 -0.0436603 -0.00926904 0.044035 -0.0436603 -0.0150754 0.0445917 -0.0420711 -0.0202436 0.0424957 -0.0420711 -0.0251276 0.0398031 -0.0420711 -0.0240221 0.0380518 -0.0436603 -0.028354 0.0349436 -0.0436603 -0.0322878 0.0313448 -0.0436603 -0.0357684 0.027306 -0.0436603 -0.0374146 0.0285627 -0.0420711 -0.0405302 0.0239371 -0.0420711 -0.0430769 0.0189754 -0.0420711 -0.0463288 0.00832641 -0.0420711 -0.044921 0.00266583 -0.0436603 -0.0469884 -0.00278852 -0.0420711 -0.043038 -0.0131426 -0.0436603 -0.0430769 -0.0189754 -0.0420711 -0.0374146 -0.0285627 -0.0420711 -0.0322878 -0.0313448 -0.0436603 -0.0240221 -0.0380518 -0.0436603 -0.0296589 -0.0365518 -0.0420711 -0.0251276 -0.0398031 -0.0420711 -0.0202436 -0.0424957 -0.0420711 -0.0150754 -0.0445917 -0.0420711 0.0013335 -0.0449802 -0.0436603 0.0066441 -0.0445068 -0.0436603 0.0274415 -0.0382446 -0.0420711 0.0303742 -0.0332025 -0.0436603 0.0356569 -0.030729 -0.0420711 0.034088 -0.029377 -0.0436603 0.0373233 -0.0251391 -0.0436603 0.039041 -0.0262961 -0.0420711 0.0400346 -0.0205483 -0.0436603 0.0457542 -0.0110563 -0.0420711 0.0467407 -0.00556724 -0.0420711 0.0470711 -1.39419e-17 -0.0420711 0.045 -1.36722e-17 -0.0436603 0.0446841 0.00532229 -0.0436603 0.0413967 0.0100034 -0.0446593 0.0378889 0.019447 -0.0446593 0.032261 0.0278025 -0.0446593 0.0303742 0.0332025 -0.0436603 0.024828 0.0346023 -0.0446593 0.0262341 0.0365619 -0.0436603 0.0205612 0.037296 -0.0446593 0.0217256 0.0394081 -0.0436603 0.0160058 0.039466 -0.0446593 0.0118614 0.0434086 -0.0436603 0.006288 0.0421214 -0.0446593 0.0066441 0.0445068 -0.0436603 0.00126203 0.0425695 -0.0446593 -0.00399582 0.0448222 -0.0436603 -0.0144121 0.0426297 -0.0436603 -0.0136397 0.0403449 -0.0446593 -0.0183157 0.0384485 -0.0446593 -0.0193529 0.0406259 -0.0436603 -0.0268343 0.0330707 -0.0446593 -0.0305573 0.0296648 -0.0446593 -0.0338514 0.0258425 -0.0446593 -0.038747 0.0228839 -0.0436603 -0.0411816 0.0181406 -0.0436603 -0.0407314 0.0124382 -0.0446593 -0.043038 0.0131426 -0.0436603 -0.0442904 0.00796006 -0.0436603 -0.044921 -0.00266583 -0.0436603 -0.0419166 -0.00753344 -0.0446593 -0.0442904 -0.00796006 -0.0436603 -0.0389744 -0.0171683 -0.0446593 -0.0411816 -0.0181406 -0.0436603 -0.038747 -0.0228839 -0.0436603 -0.0357684 -0.027306 -0.0436603 -0.0268343 -0.0330707 -0.0446593 -0.028354 -0.0349436 -0.0436603 -0.0227346 -0.0360124 -0.0446593 -0.0183157 -0.0384485 -0.0446593 -0.0193529 -0.0406259 -0.0436603 -0.0144121 -0.0426297 -0.0436603 -0.00926904 -0.044035 -0.0436603 -0.00877226 -0.0416749 -0.0446593 -0.00399582 -0.0448222 -0.0436603 -0.00378166 -0.04242 -0.0446593 0.00126203 -0.0425695 -0.0446593 0.0112257 -0.0410821 -0.0446593 0.0118614 -0.0434086 -0.0436603 0.0169122 -0.041701 -0.0436603 0.0205612 -0.037296 -0.0446593 0.0217256 -0.0394081 -0.0436603 0.0262341 -0.0365619 -0.0436603 0.0353229 -0.0237918 -0.0446593 0.0378889 -0.019447 -0.0446593 0.0421839 -0.0156691 -0.0436603 0.043741 -0.0105699 -0.0436603 0.0446841 -0.00532229 -0.0436603 0.0422893 0.00503704 -0.0446593 0.0425882 -1.33178e-17 -0.0446593 0.0374968 0.0139281 -0.045 0.039923 0.0148293 -0.0446593 0.0355863 0.0182652 -0.045 0.0353229 0.0237918 -0.0446593 0.0287463 0.031423 -0.0446593 0.0193117 0.0350294 -0.045 0.0112257 0.0410821 -0.0446593 0.00118533 0.0399824 -0.045 -0.00378166 0.04242 -0.0446593 -0.00823914 0.0391423 -0.045 -0.00877226 0.0416749 -0.0446593 -0.0172026 0.0361119 -0.045 -0.0252035 0.031061 -0.045 -0.0227346 0.0360124 -0.0446593 -0.0317942 0.024272 -0.045 -0.0366058 0.0161249 -0.045 -0.0366703 0.0216574 -0.0446593 -0.0389744 0.0171683 -0.0446593 -0.038256 0.0116823 -0.045 -0.0419166 0.00753344 -0.0446593 -0.0393692 0.00707561 -0.045 -0.0399297 0.00236963 -0.045 -0.0425134 0.00252295 -0.0446593 -0.0425134 -0.00252295 -0.0446593 -0.0393692 -0.00707561 -0.045 -0.0407314 -0.0124382 -0.0446593 -0.0344417 -0.0203412 -0.045 -0.0366703 -0.0216574 -0.0446593 -0.0338514 -0.0258425 -0.0446593 -0.0287003 -0.027862 -0.045 -0.0305573 -0.0296648 -0.0446593 -0.0252035 -0.031061 -0.045 -0.0213529 -0.0338238 -0.045 -0.0172026 -0.0361119 -0.045 -0.0128108 -0.0378931 -0.045 -0.00823914 -0.0391423 -0.045 -0.0136397 -0.0403449 -0.0446593 -0.00355184 -0.039842 -0.045 0.00118533 -0.0399824 -0.045 0.00590586 -0.0395616 -0.045 0.006288 -0.0421214 -0.0446593 0.0150331 -0.0370676 -0.045 0.0160058 -0.039466 -0.0446593 0.024828 -0.0346023 -0.0446593 0.0287463 -0.031423 -0.0446593 0.0303004 -0.0261129 -0.045 0.032261 -0.0278025 -0.0446593 0.0331762 -0.0223459 -0.045 0.0355863 -0.0182652 -0.045 0.039923 -0.0148293 -0.0446593 0.0413967 -0.0100034 -0.0446593 0.0397192 -0.00473093 -0.045 0.0422893 -0.00503704 -0.0446593 0.04 -1.2903e-17 -0.045 0.0492355 0.00821488 -0.01 0.0335192 0.0366403 -0.00741181 0.0122647 0.0484243 -0.01 -0.0122534 0.0483938 -0.01 -0.0457573 0.0201562 -0.01 -0.049572 0.00294185 -0.00741181 0.0131794 -0.0482318 -0.01 0.0378756 -0.0326411 -0.01 0.0376174 -0.0324187 -0.00741181 0.0411877 -0.027742 -0.00741181 0.0441797 -0.0226759 -0.00741181 0.047235 -0.0162179 -0.01 0.0397192 -0.00473093 1.78814e-09 0.0388809 -0.00939544 1.78814e-09 0.0422893 -0.00503704 -0.000340743 0.0413967 -0.0100034 -0.000340743 0.043741 -0.0105699 -0.00133975 0.0467407 -0.00556724 -0.00292893 0.0483187 -0.0057552 -0.005 0.0472989 -0.0114296 -0.005 0.0227255 -0.0412218 -0.00292893 0.0283679 -0.0395358 -0.005 0.0239751 -0.0434883 -0.00741181 -0.0136397 -0.0403449 -0.000340743 -0.00877226 -0.0416749 -0.000340743 -0.00926904 -0.044035 -0.00133975 -0.0102287 -0.0485944 -0.00741181 -0.0159044 -0.0470435 -0.00741181 -0.0366703 -0.0216574 -0.000340743 -0.0366058 -0.0161249 1.78814e-09 -0.038747 -0.0228839 -0.00133975 -0.0389744 -0.0171683 -0.000340743 -0.0430769 -0.0189754 -0.00292893 -0.0405302 -0.0239371 -0.00292893 -0.0418986 -0.0247453 -0.005 -0.0454455 -0.0200188 -0.00741181 -0.0399297 0.00236963 1.78814e-09 -0.044921 -0.00266583 -0.00133975 -0.044921 0.00266583 -0.00133975 -0.0485748 0.00288266 -0.005 -0.043038 0.0131426 -0.00133975 -0.0450188 0.0137474 -0.00292893 -0.0465387 0.0142116 -0.005 -0.0445312 0.0196161 -0.005 -0.028354 0.0349436 -0.00133975 -0.0322878 0.0313448 -0.00133975 -0.0337738 0.0327874 -0.00292893 -0.0306602 0.0377858 -0.005 -0.0312897 0.0385616 -0.00741181 -0.0128108 0.0378931 1.78814e-09 -0.0136397 0.0403449 -0.000340743 -0.0183157 0.0384485 -0.000340743 -0.0193529 0.0406259 -0.00133975 -0.0202436 0.0424957 -0.00292893 -0.0150754 0.0445917 -0.00292893 0.00694988 0.0465552 -0.00292893 0.00718452 0.0481269 -0.005 0.032261 0.0278025 -0.000340743 0.034088 0.029377 -0.00133975 0.0425882 -1.12201e-17 -0.000340743 0.0446841 -0.00532229 -0.00133975 0.0496593 -1.27324e-17 -0.00741181 0.0493107 -0.00587336 -0.00741181 0.0486011 -0.0117443 -0.01 0.046871 -0.0174101 -0.01 0.0482699 -0.0116643 -0.00741181 0.0456151 -0.0169436 -0.005 0.0457542 -0.0110563 -0.00292893 0.0441253 -0.0163902 -0.00292893 0.0421839 -0.0156691 -0.00133975 0.0374968 -0.0139281 1.78814e-09 0.039923 -0.0148293 -0.000340743 0.0378889 -0.019447 -0.000340743 0.0465516 -0.0172914 -0.00741181 0.0439282 -0.0237705 -0.01 0.0432909 -0.0222197 -0.005 0.0418771 -0.021494 -0.00292893 0.0400346 -0.0205483 -0.00133975 0.0373233 -0.0251391 -0.00133975 0.0331762 -0.0223459 1.78814e-09 0.0368607 -0.0317665 -0.005 0.0356569 -0.030729 -0.00292893 0.0403591 -0.0271839 -0.005 0.039041 -0.0262961 -0.00292893 0.034088 -0.029377 -0.00133975 0.0353229 -0.0237918 -0.000340743 0.0303004 -0.0261129 1.78814e-09 0.0335192 -0.0366403 -0.00741181 0.0328448 -0.0359032 -0.005 0.0317722 -0.0347306 -0.00292893 0.0303742 -0.0332025 -0.00133975 0.0287463 -0.031423 -0.000340743 0.032261 -0.0278025 -0.000340743 0.0269993 -0.0295133 1.78814e-09 0.024828 -0.0346023 -0.000340743 0.0262341 -0.0365619 -0.00133975 0.0274415 -0.0382446 -0.00292893 0.0289503 -0.0403475 -0.00741181 0.0182879 -0.045093 -0.005 0.0234928 -0.0426135 -0.005 0.0176906 -0.0436203 -0.00292893 0.0169122 -0.041701 -0.00133975 0.0217256 -0.0394081 -0.00133975 0.0160058 -0.039466 -0.000340743 0.0150331 -0.0370676 1.78814e-09 0.0205612 -0.037296 -0.000340743 0.0118614 -0.0434086 -0.00133975 0.0124073 -0.0454064 -0.00292893 0.0186633 -0.0460187 -0.00741181 0.0130895 -0.0479031 -0.00741181 0.0187914 -0.0463345 -0.01 0.00738233 -0.049452 -0.01 0.00718452 -0.0481269 -0.005 0.0128262 -0.0469394 -0.005 0.0066441 -0.0445068 -0.00133975 0.00590586 -0.0395616 1.78814e-09 0.0112257 -0.0410821 -0.000340743 0.00147157 -0.0496374 -0.00741181 0.00733202 -0.049115 -0.00741181 0.00144197 -0.0486389 -0.005 0.00139487 -0.0470504 -0.00292893 0.00694988 -0.0465552 -0.00292893 0.00126203 -0.0425695 -0.000340743 0.006288 -0.0421214 -0.000340743 -0.00440954 -0.0494631 -0.00741181 -0.00417972 -0.0468851 -0.00292893 -0.00399582 -0.0448222 -0.00133975 0.0013335 -0.0449802 -0.00133975 -0.00355184 -0.039842 1.78814e-09 0.00118533 -0.0399824 1.78814e-09 -0.00378166 -0.04242 -0.000340743 -0.00969563 -0.0460617 -0.00292893 -0.010023 -0.0476168 -0.005 -0.00432083 -0.048468 -0.005 -0.0160135 -0.0473663 -0.01 -0.0102989 -0.0489278 -0.01 -0.0200592 -0.0457256 -0.01 -0.0155844 -0.0460971 -0.005 -0.0150754 -0.0445917 -0.00292893 -0.0183157 -0.0384485 -0.000340743 -0.0144121 -0.0426297 -0.00133975 -0.0193529 -0.0406259 -0.00133975 -0.0202436 -0.0424957 -0.00292893 -0.0251276 -0.0398031 -0.00292893 -0.025976 -0.0411469 -0.005 -0.0209271 -0.0439304 -0.005 -0.0213567 -0.0448323 -0.00741181 -0.0215033 -0.0451399 -0.01 -0.0265093 -0.0419917 -0.00741181 -0.0266912 -0.0422798 -0.01 -0.0312897 -0.0385616 -0.00741181 -0.0306602 -0.0377858 -0.005 -0.0296589 -0.0365518 -0.00292893 -0.028354 -0.0349436 -0.00133975 -0.0240221 -0.0380518 -0.00133975 -0.0252035 -0.031061 1.78814e-09 -0.0227346 -0.0360124 -0.000340743 -0.0213529 -0.0338238 1.78814e-09 -0.033805 -0.0367216 -0.01 -0.0349141 -0.0338943 -0.005 -0.0337738 -0.0327874 -0.00292893 -0.0322878 -0.0313448 -0.00133975 -0.0268343 -0.0330707 -0.000340743 -0.0287003 -0.027862 1.78814e-09 -0.0386778 -0.029527 -0.005 -0.0356309 -0.0345902 -0.00741181 -0.0374146 -0.0285627 -0.00292893 -0.0357684 -0.027306 -0.00133975 -0.0305573 -0.0296648 -0.000340743 -0.0338514 -0.0258425 -0.000340743 -0.0394719 -0.0301332 -0.00741181 -0.0427588 -0.0252533 -0.00741181 -0.0397427 -0.03034 -0.01 -0.0430522 -0.0254266 -0.01 -0.0474942 -0.0145033 -0.00741181 -0.0445312 -0.0196161 -0.005 -0.0450188 -0.0137474 -0.00292893 -0.043038 -0.0131426 -0.00133975 -0.0411816 -0.0181406 -0.00133975 -0.0407314 -0.0124382 -0.000340743 -0.038256 -0.0116823 1.78814e-09 -0.0419166 -0.00753344 -0.000340743 -0.0442904 -0.00796006 -0.00133975 -0.0465387 -0.0142116 -0.005 -0.0488762 -0.00878424 -0.00741181 -0.049572 -0.00294185 -0.00741181 -0.0485748 -0.00288266 -0.005 -0.0478929 -0.00860753 -0.005 -0.0469884 -0.00278852 -0.00292893 -0.0463288 -0.00832641 -0.00292893 -0.0425134 -0.00252295 -0.000340743 -0.0492852 0.00822582 -0.01 -0.0478929 0.00860753 -0.005 -0.0463288 0.00832641 -0.00292893 -0.0469884 0.00278852 -0.00292893 -0.0425134 0.00252295 -0.000340743 -0.0393692 0.00707561 1.78814e-09 -0.038256 0.0116823 1.78814e-09 -0.0419166 0.00753344 -0.000340743 -0.0407314 0.0124382 -0.000340743 -0.0442904 0.00796006 -0.00133975 -0.0488762 0.00878424 -0.00741181 -0.0474942 0.0145033 -0.00741181 -0.0454455 0.0200188 -0.00741181 -0.0472231 0.0162098 -0.01 -0.0430522 0.0254266 -0.01 -0.0430769 0.0189754 -0.00292893 -0.0411816 0.0181406 -0.00133975 -0.0366703 0.0216574 -0.000340743 -0.0389744 0.0171683 -0.000340743 -0.0344417 0.0203412 1.78814e-09 -0.038747 0.0228839 -0.00133975 -0.0338514 0.0258425 -0.000340743 -0.0357684 0.027306 -0.00133975 -0.0405302 0.0239371 -0.00292893 -0.0374146 0.0285627 -0.00292893 -0.0418986 0.0247453 -0.005 -0.0427588 0.0252533 -0.00741181 -0.0356309 0.0345902 -0.00741181 -0.0394719 0.0301332 -0.00741181 -0.0349141 0.0338943 -0.005 -0.0386778 0.029527 -0.005 -0.0305573 0.0296648 -0.000340743 -0.0287003 0.027862 1.78814e-09 -0.033805 0.0367216 -0.01 -0.025976 0.0411469 -0.005 -0.0251276 0.0398031 -0.00292893 -0.0296589 0.0365518 -0.00292893 -0.0240221 0.0380518 -0.00133975 -0.0227346 0.0360124 -0.000340743 -0.0213529 0.0338238 1.78814e-09 -0.0268343 0.0330707 -0.000340743 -0.0172026 0.0361119 1.78814e-09 -0.0209271 0.0439304 -0.005 -0.0265093 0.0419917 -0.00741181 -0.0215033 0.0451399 -0.01 -0.0160135 0.0473663 -0.01 -0.0213567 0.0448323 -0.00741181 -0.010023 0.0476168 -0.005 -0.0159044 0.0470435 -0.00741181 -0.0155844 0.0460971 -0.005 -0.00969563 0.0460617 -0.00292893 -0.00926904 0.044035 -0.00133975 -0.0144121 0.0426297 -0.00133975 -0.00823914 0.0391423 1.78814e-09 -0.00877226 0.0416749 -0.000340743 -0.00378166 0.04242 -0.000340743 -0.00399582 0.0448222 -0.00133975 -0.00417972 0.0468851 -0.00292893 -0.0102287 0.0485944 -0.00741181 -0.00440954 0.0494631 -0.00741181 0.00147157 0.0496374 -0.00741181 0.00144197 0.0486389 -0.005 -0.00432083 0.048468 -0.005 0.00139487 0.0470504 -0.00292893 0.0013335 0.0449802 -0.00133975 0.00126203 0.0425695 -0.000340743 0.00118533 0.0399824 1.78814e-09 -0.00355184 0.039842 1.78814e-09 0.00148167 0.049978 -0.01 0.0130895 0.0479031 -0.00741181 0.00733202 0.049115 -0.00741181 0.0124073 0.0454064 -0.00292893 0.0118614 0.0434086 -0.00133975 0.0112257 0.0410821 -0.000340743 0.0066441 0.0445068 -0.00133975 0.006288 0.0421214 -0.000340743 0.00590586 0.0395616 1.78814e-09 0.0105435 0.0385854 1.78814e-09 0.0150331 0.0370676 1.78814e-09 0.0160058 0.039466 -0.000340743 0.0169122 0.041701 -0.00133975 0.0176906 0.0436203 -0.00292893 0.0128262 0.0469394 -0.005 0.0182879 0.045093 -0.005 0.0186633 0.0460187 -0.00741181 0.0227255 0.0412218 -0.00292893 0.0217256 0.0394081 -0.00133975 0.0205612 0.037296 -0.000340743 0.0193117 0.0350294 1.78814e-09 0.0273038 0.0417892 -0.01 0.0289503 0.0403475 -0.00741181 0.0239751 0.0434883 -0.00741181 0.0234928 0.0426135 -0.005 0.024828 0.0346023 -0.000340743 0.0287463 0.031423 -0.000340743 0.0262341 0.0365619 -0.00133975 0.0303742 0.0332025 -0.00133975 0.0274415 0.0382446 -0.00292893 0.0317722 0.0347306 -0.00292893 0.0283679 0.0395358 -0.005 0.029149 0.0406243 -0.01 0.0338576 0.0367799 -0.01 0.0376174 0.0324187 -0.00741181 0.0368607 0.0317665 -0.005 0.0328448 0.0359032 -0.005 0.0356569 0.030729 -0.00292893 0.0303004 0.0261129 1.78814e-09 0.039389 0.0306587 -0.01 0.0441797 0.0226759 -0.00741181 0.0411877 0.027742 -0.00741181 0.0432909 0.0222197 -0.005 0.0403591 0.0271839 -0.005 0.039041 0.0262961 -0.00292893 0.0373233 0.0251391 -0.00133975 0.0353229 0.0237918 -0.000340743 0.0378889 0.019447 -0.000340743 0.0374968 0.0139281 1.78814e-09 0.039923 0.0148293 -0.000340743 0.0400346 0.0205483 -0.00133975 0.0418771 0.021494 -0.00292893 0.0465516 0.0172914 -0.00741181 0.047235 0.0162179 -0.01 0.0472989 0.0114296 -0.005 0.0456151 0.0169436 -0.005 0.0441253 0.0163902 -0.00292893 0.0421839 0.0156691 -0.00133975 0.0496491 0.00591366 -0.01 0.0493107 0.00587336 -0.00741181 0.0482699 0.0116643 -0.00741181 0.0467407 0.00556724 -0.00292893 0.0457542 0.0110563 -0.00292893 0.0422893 0.00503704 -0.000340743 0.043741 0.0105699 -0.00133975 0.0413967 0.0100034 -0.000340743 0.0397192 0.00473093 1.78814e-09 0.04 -1.0773e-17 1.78814e-09 0.0446841 0.00532229 -0.00133975 0.045 -1.1669e-17 -0.00133975 0.0483187 0.0057552 -0.005 0.0470711 -1.20892e-17 -0.00292893 0.0486603 -1.24518e-17 -0.005 0.05 -1.29116e-17 -0.01 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 2.80405e-18 0.998244 0.0592405 -2.80405e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.62094e-15 2.25907e-15 1 1.34237e-15 2.43493e-15 1 2.22312e-14 -7.51588e-15 1 2.30611e-15 1.55328e-15 1 2.10621e-15 1.81513e-15 1 1.87675e-15 2.0515e-15 1 2.70265e-15 6.53087e-16 1 2.60644e-15 9.68154e-16 1 2.47364e-15 1.26963e-15 1 2.76093e-15 -3.28851e-16 1 2.78044e-15 0 1 2.76093e-15 3.28851e-16 1 0 0 1 9.46024e-15 2.1476e-14 1 2.70265e-15 -6.53087e-16 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.382111 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560754 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.38211 0.493315 0.78143 -0.38211 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.83429 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.38211 0.0820577 0.920467 -0.38211 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.856369 -0.38211 -0.347309 0.856369 -0.38211 -0.446156 0.809281 -0.38211 -0.446156 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446156 -0.809282 -0.38211 -0.347309 -0.856369 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.38211 0.190348 -0.904301 -0.38211 0.190348 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.38211 0.582275 -0.717599 -0.38211 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.382111 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547447 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607028 -0.792836 0.0541153 0.607028 -0.792836 -0.0180599 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571297 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229043 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923642 0.377214 0.0677946 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.1545 -0.923641 0.350736 0.1545 -0.923642 0.330001 0.194898 -0.923642 0.330001 0.194899 -0.923642 0.304634 0.232561 -0.923642 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266958 -0.923642 0.241486 0.297609 -0.923642 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923642 0.0789429 0.375039 -0.923642 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923642 -0.0113574 0.383089 -0.923642 -0.0113574 0.383089 -0.923642 -0.0565866 0.379057 -0.923642 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923642 -0.223431 0.311392 -0.923642 -0.223431 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923642 -0.317876 0.214106 -0.923642 -0.317876 0.214106 -0.923642 -0.340968 0.175007 -0.923642 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923642 -0.380568 0.0453291 -0.923642 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923642 -0.372535 -0.0900216 -0.923642 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359273 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923642 -0.317876 -0.214106 -0.923642 -0.317876 -0.214106 -0.923642 -0.290322 -0.250199 -0.923642 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223431 -0.311392 -0.923641 -0.223431 -0.311392 -0.923642 -0.185034 -0.335632 -0.923642 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369704 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923642 -0.0113574 -0.383089 -0.923642 -0.0113574 -0.383089 -0.923642 0.0340317 -0.381744 -0.923642 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923642 0.122746 -0.36307 -0.923642 0.122746 -0.36307 -0.923642 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923642 0.27499 -0.266958 -0.923642 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923642 0.330002 -0.194898 -0.923642 0.330001 -0.194898 -0.923642 0.350736 -0.1545 -0.923642 0.350737 -0.1545 -0.923641 0.366548 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130523 0.00774585 -0.991415 0.128691 0.0231289 -0.991415 0.128691 0.023129 -0.991415 0.125052 0.0381874 -0.991415 0.125052 0.0381873 -0.991415 0.119658 0.0527096 -0.991415 0.119658 0.0527097 -0.991415 0.112584 0.0664919 -0.991415 0.112584 0.0664921 -0.991415 0.10393 0.0793411 -0.991415 0.10393 0.079341 -0.991415 0.0938163 0.0910762 -0.991415 0.0938163 0.0910762 -0.991415 0.0823859 0.101533 -0.991415 0.0823859 0.101533 -0.991415 0.069799 0.110564 -0.991415 0.069799 0.110564 -0.991415 0.0562324 0.118044 -0.991415 0.0562323 0.118044 -0.991415 0.0418763 0.123866 -0.991415 0.0418763 0.123866 -0.991415 0.0269323 0.127949 -0.991415 0.0269323 0.127949 -0.991415 0.0116104 0.130237 -0.991415 0.0116103 0.130237 -0.991415 -0.00387465 0.130696 -0.991415 -0.00387472 0.130696 -0.991415 -0.0193053 0.12932 -0.991415 -0.0193052 0.12932 -0.991415 -0.0344648 0.126129 -0.991415 -0.0344648 0.126129 -0.991415 -0.0491405 0.121167 -0.991415 -0.0491406 0.121167 -0.991415 -0.0631266 0.114505 -0.991415 -0.0631266 0.114505 -0.991415 -0.0762264 0.106235 -0.991415 -0.0762263 0.106235 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0882561 0.0964739 -0.991415 -0.0990468 0.0853585 -0.991415 -0.0990471 0.0853586 -0.991415 -0.108447 0.0730448 -0.991415 -0.108447 0.0730448 -0.991415 -0.116325 0.0597057 -0.991415 -0.116325 0.0597057 -0.991415 -0.12257 0.0455284 -0.991415 -0.12257 0.0455284 -0.991415 -0.127095 0.030712 -0.991415 -0.127095 0.030712 -0.991415 -0.129835 0.0154646 -0.991415 -0.129835 0.0154646 -0.991415 -0.130753 0 -0.991415 -0.130753 0 -0.991415 -0.129835 -0.0154646 -0.991415 -0.129835 -0.0154646 -0.991415 -0.127095 -0.0307121 -0.991415 -0.127095 -0.030712 -0.991415 -0.12257 -0.0455284 -0.991415 -0.12257 -0.0455284 -0.991415 -0.116325 -0.0597057 -0.991415 -0.116325 -0.0597056 -0.991415 -0.108447 -0.0730447 -0.991415 -0.108447 -0.0730449 -0.991415 -0.099047 -0.0853586 -0.991415 -0.0990469 -0.0853584 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0882561 -0.0964739 -0.991415 -0.0762263 -0.106235 -0.991415 -0.0762264 -0.106235 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0631266 -0.114505 -0.991415 -0.0491406 -0.121168 -0.991415 -0.0491406 -0.121167 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0344648 -0.126129 -0.991415 -0.0193053 -0.12932 -0.991415 -0.0193053 -0.12932 -0.991415 -0.00387465 -0.130696 -0.991415 -0.00387471 -0.130696 -0.991415 0.0116104 -0.130237 -0.991415 0.0116103 -0.130237 -0.991415 0.0269323 -0.127949 -0.991415 0.0269324 -0.127949 -0.991415 0.0418763 -0.123866 -0.991415 0.0418763 -0.123866 -0.991415 0.0562324 -0.118044 -0.991415 0.0562323 -0.118044 -0.991415 0.069799 -0.110564 -0.991415 0.069799 -0.110564 -0.991415 0.0823858 -0.101533 -0.991415 0.082386 -0.101533 -0.991415 0.0938163 -0.0910762 -0.991415 0.0938163 -0.0910762 -0.991415 0.10393 -0.079341 -0.991415 0.10393 -0.079341 -0.991415 0.112584 -0.066492 -0.991415 0.112584 -0.066492 -0.991415 0.119658 -0.0527096 -0.991415 0.119658 -0.0527097 -0.991415 0.125052 -0.0381873 -0.991415 0.125053 -0.0381873 -0.991415 0.128691 -0.0231289 -0.991415 0.128691 -0.023129 -0.991415 0.130523 -0.0077459 -0.991415 0.130523 -0.00774586 -0.991415 0.130523 0.00774591 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564757 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596366 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608364 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 186 186 0 0 0 0 0 0 1 186 186 1 185 185 1 0 0 2 185 185 2 1 1 2 1 1 3 185 185 3 183 183 3 1 1 4 183 183 4 2 2 4 2 2 5 183 183 5 182 182 5 2 2 6 182 182 6 3 3 6 3 3 7 182 182 7 180 180 7 3 3 8 180 180 8 4 4 8 4 4 9 180 180 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 178 178 15 9 9 16 178 178 16 661 661 16 661 661 17 178 178 17 11 11 17 661 661 18 11 11 18 660 660 18 660 660 19 11 11 19 176 176 19 660 660 20 176 176 20 12 12 20 12 12 21 176 176 21 174 174 21 12 12 22 174 174 22 13 13 22 13 13 23 174 174 23 173 173 23 13 13 24 173 173 24 646 646 24 646 646 25 173 173 25 14 14 25 646 646 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 171 171 29 16 16 30 171 171 30 637 637 30 637 637 31 171 171 31 170 170 31 637 637 32 170 170 32 635 635 32 635 635 33 170 170 33 169 169 33 635 635 34 169 169 34 624 624 34 624 624 35 169 169 35 168 168 35 624 624 36 168 168 36 622 622 36 622 622 37 168 168 37 167 167 37 622 622 38 167 167 38 18 18 38 18 18 39 167 167 39 166 166 39 18 18 40 166 166 40 623 623 40 623 623 41 166 166 41 164 164 41 623 623 42 164 164 42 20 20 42 20 20 43 164 164 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 599 599 50 599 599 51 26 26 51 27 27 51 599 599 52 27 27 52 28 28 52 28 28 53 27 27 53 161 161 53 28 28 54 161 161 54 494 494 54 494 494 55 161 161 55 29 29 55 494 494 56 29 29 56 598 598 56 598 598 57 29 29 57 30 30 57 598 598 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 156 156 67 39 39 68 156 156 68 40 40 68 40 40 69 156 156 69 41 41 69 40 40 70 41 41 70 495 495 70 495 495 71 41 41 71 42 42 71 495 495 72 42 42 72 43 43 72 43 43 73 42 42 73 153 153 73 43 43 74 153 153 74 44 44 74 44 44 75 153 153 75 152 152 75 44 44 76 152 152 76 562 562 76 562 562 77 152 152 77 151 151 77 562 562 78 151 151 78 45 45 78 45 45 79 151 151 79 46 46 79 45 45 80 46 46 80 552 552 80 552 552 81 46 46 81 150 150 81 552 552 82 150 150 82 499 499 82 499 499 83 150 150 83 224 224 83 499 499 84 224 224 84 551 551 84 551 551 85 224 224 85 223 223 85 551 551 86 223 223 86 47 47 86 47 47 87 223 223 87 222 222 87 47 47 88 222 222 88 48 48 88 48 48 89 222 222 89 220 220 89 48 48 90 220 220 90 49 49 90 49 49 91 220 220 91 50 50 91 49 49 92 50 50 92 805 805 92 805 805 93 50 50 93 51 51 93 805 805 94 51 51 94 488 488 94 488 488 95 51 51 95 52 52 95 488 488 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 800 800 98 800 800 99 54 54 99 216 216 99 800 800 100 216 216 100 56 56 100 56 56 101 216 216 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 786 786 108 786 786 109 62 62 109 215 215 109 786 786 110 215 215 110 63 63 110 63 63 111 215 215 111 64 64 111 63 63 112 64 64 112 780 780 112 780 780 113 64 64 113 65 65 113 780 780 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 779 779 116 779 779 117 67 67 117 213 213 117 779 779 118 213 213 118 768 768 118 768 768 119 213 213 119 212 212 119 768 768 120 212 212 120 68 68 120 68 68 121 212 212 121 211 211 121 68 68 122 211 211 122 69 69 122 69 69 123 211 211 123 208 208 123 69 69 124 208 208 124 70 70 124 70 70 125 208 208 125 207 207 125 70 70 126 207 207 126 71 71 126 71 71 127 207 207 127 206 206 127 71 71 128 206 206 128 490 490 128 490 490 129 206 206 129 72 72 129 490 490 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 747 747 134 747 747 135 76 76 135 77 77 135 747 747 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 202 202 139 80 80 140 202 202 140 81 81 140 81 81 141 202 202 141 82 82 141 81 81 142 82 82 142 491 491 142 491 491 143 82 82 143 83 83 143 491 491 144 83 83 144 724 724 144 724 724 145 83 83 145 200 200 145 724 724 146 200 200 146 84 84 146 84 84 147 200 200 147 85 85 147 84 84 148 85 85 148 723 723 148 723 723 149 85 85 149 86 86 149 723 723 150 86 86 150 87 87 150 87 87 151 86 86 151 197 197 151 87 87 152 197 197 152 88 88 152 88 88 153 197 197 153 196 196 153 88 88 154 196 196 154 89 89 154 89 89 155 196 196 155 195 195 155 89 89 156 195 195 156 712 712 156 712 712 157 195 195 157 90 90 157 712 712 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 192 192 161 93 93 162 192 192 162 94 94 162 94 94 163 192 192 163 191 191 163 94 94 164 191 191 164 693 693 164 693 693 165 191 191 165 95 95 165 693 693 166 95 95 166 96 96 166 96 96 167 95 95 167 189 189 167 96 96 168 189 189 168 492 492 168 492 492 169 189 189 169 188 188 169 492 492 170 188 188 170 692 692 170 692 692 171 188 188 171 97 97 171 692 692 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 679 679 176 679 679 177 101 101 177 102 102 177 679 679 178 102 102 178 103 103 178 103 103 179 102 102 179 186 186 179 104 104 180 813 813 180 106 106 180 104 104 181 106 106 181 500 500 181 105 105 182 558 558 182 106 106 182 106 106 183 558 558 183 501 501 183 106 106 184 501 501 184 500 500 184 581 581 185 574 574 185 106 106 185 106 106 186 574 574 186 567 567 186 106 106 187 567 567 187 105 105 187 592 592 188 107 107 188 106 106 188 106 106 189 107 107 189 108 108 189 106 106 190 108 108 190 581 581 190 617 617 191 603 603 191 106 106 191 106 106 192 603 603 192 109 109 192 106 106 193 109 109 193 592 592 193 112 112 194 110 110 194 106 106 194 106 106 195 110 110 195 616 616 195 106 106 196 616 616 196 617 617 196 643 643 197 645 645 197 106 106 197 106 106 198 645 645 198 111 111 198 106 106 199 111 111 199 112 112 199 113 113 200 114 114 200 106 106 200 106 106 201 114 114 201 651 651 201 106 106 202 651 651 202 643 643 202 115 115 203 668 668 203 106 106 203 106 106 204 668 668 204 517 517 204 106 106 205 517 517 205 113 113 205 684 684 206 524 524 206 106 106 206 106 106 207 524 524 207 116 116 207 106 106 208 116 116 208 115 115 208 698 698 209 117 117 209 106 106 209 106 106 210 117 117 210 685 685 210 106 106 211 685 685 211 684 684 211 119 119 212 711 711 212 106 106 212 106 106 213 711 711 213 118 118 213 106 106 214 118 118 214 698 698 214 537 537 215 720 720 215 106 106 215 106 106 216 720 720 216 718 718 216 106 106 217 718 718 217 119 119 217 745 745 218 746 746 218 106 106 218 106 106 219 746 746 219 732 732 219 106 106 220 732 732 220 537 537 220 757 757 221 756 756 221 106 106 221 106 106 222 756 756 222 755 755 222 106 106 223 755 755 223 745 745 223 123 123 224 120 120 224 106 106 224 106 106 225 120 120 225 767 767 225 106 106 226 767 767 226 757 757 226 121 121 227 122 122 227 106 106 227 106 106 228 122 122 228 785 785 228 106 106 229 785 785 229 123 123 229 813 813 230 124 124 230 106 106 230 106 106 231 124 124 231 795 795 231 106 106 232 795 795 232 121 121 232 487 487 233 485 485 233 143 143 233 487 487 234 143 143 234 125 125 234 436 436 235 434 434 235 143 143 235 143 143 236 434 434 236 126 126 236 143 143 237 126 126 237 125 125 237 127 127 238 128 128 238 143 143 238 143 143 239 128 128 239 129 129 239 143 143 240 129 129 240 436 436 240 133 133 241 439 439 241 143 143 241 143 143 242 439 439 242 130 130 242 143 143 243 130 130 243 127 127 243 441 441 244 131 131 244 143 143 244 143 143 245 131 131 245 132 132 245 143 143 246 132 132 246 133 133 246 134 134 247 443 443 247 143 143 247 143 143 248 443 443 248 135 135 248 143 143 249 135 135 249 441 441 249 446 446 250 136 136 250 143 143 250 143 143 251 136 136 251 445 445 251 143 143 252 445 445 252 134 134 252 137 137 253 448 448 253 143 143 253 143 143 254 448 448 254 138 138 254 143 143 255 138 138 255 446 446 255 454 454 256 452 452 256 143 143 256 143 143 257 452 452 257 449 449 257 143 143 258 449 449 258 137 137 258 458 458 259 139 139 259 143 143 259 143 143 260 139 139 260 455 455 260 143 143 261 455 455 261 454 454 261 460 460 262 140 140 262 143 143 262 143 143 263 140 140 263 141 141 263 143 143 264 141 141 264 458 458 264 465 465 265 463 463 265 143 143 265 143 143 266 463 463 266 142 142 266 143 143 267 142 142 267 460 460 267 468 468 268 467 467 268 143 143 268 143 143 269 467 467 269 466 466 269 143 143 270 466 466 270 465 465 270 472 472 271 471 471 271 143 143 271 143 143 272 471 471 272 469 469 272 143 143 273 469 469 273 468 468 273 475 475 274 144 144 274 143 143 274 143 143 275 144 144 275 473 473 275 143 143 276 473 473 276 472 472 276 147 147 277 145 145 277 143 143 277 143 143 278 145 145 278 146 146 278 143 143 279 146 146 279 475 475 279 482 482 280 481 481 280 143 143 280 143 143 281 481 481 281 479 479 281 143 143 282 479 479 282 147 147 282 485 485 283 148 148 283 143 143 283 143 143 284 148 148 284 149 149 284 143 143 285 149 149 285 482 482 285 224 224 286 273 273 286 275 275 286 224 224 287 150 150 287 273 273 287 273 273 288 150 150 288 46 46 288 273 273 289 46 46 289 271 271 289 271 271 290 46 46 290 151 151 290 271 271 291 151 151 291 269 269 291 269 269 292 151 151 292 152 152 292 269 269 293 152 152 293 154 154 293 154 154 294 152 152 294 153 153 294 153 153 295 42 42 295 154 154 295 154 154 296 42 42 296 41 41 296 154 154 297 41 41 297 155 155 297 41 41 298 156 156 298 155 155 298 155 155 299 156 156 299 38 38 299 155 155 300 38 38 300 157 157 300 157 157 301 38 38 301 37 37 301 157 157 302 37 37 302 158 158 302 37 37 303 33 33 303 158 158 303 158 158 304 33 33 304 32 32 304 158 158 305 32 32 305 265 265 305 32 32 306 30 30 306 265 265 306 265 265 307 30 30 307 29 29 307 265 265 308 29 29 308 159 159 308 159 159 309 29 29 309 161 161 309 159 159 310 161 161 310 160 160 310 160 160 311 161 161 311 27 27 311 160 160 312 27 27 312 162 162 312 162 162 313 27 27 313 26 26 313 26 26 314 24 24 314 162 162 314 162 162 315 24 24 315 22 22 315 162 162 316 22 22 316 163 163 316 22 22 317 19 19 317 163 163 317 163 163 318 19 19 318 164 164 318 163 163 319 164 164 319 165 165 319 165 165 320 164 164 320 166 166 320 165 165 321 166 166 321 259 259 321 259 259 322 166 166 322 167 167 322 259 259 323 167 167 323 258 258 323 258 258 324 167 167 324 168 168 324 168 168 325 169 169 325 258 258 325 258 258 326 169 169 326 170 170 326 258 258 327 170 170 327 257 257 327 257 257 328 170 170 328 171 171 328 257 257 329 171 171 329 172 172 329 172 172 330 171 171 330 17 17 330 172 172 331 17 17 331 255 255 331 255 255 332 17 17 332 14 14 332 14 14 333 173 173 333 255 255 333 255 255 334 173 173 334 174 174 334 255 255 335 174 174 335 175 175 335 174 174 336 176 176 336 175 175 336 175 175 337 176 176 337 11 11 337 175 175 338 11 11 338 177 177 338 177 177 339 11 11 339 178 178 339 177 177 340 178 178 340 252 252 340 252 252 341 178 178 341 10 10 341 252 252 342 10 10 342 179 179 342 179 179 343 10 10 343 7 7 343 7 7 344 5 5 344 179 179 344 179 179 345 5 5 345 180 180 345 179 179 346 180 180 346 181 181 346 181 181 347 180 180 347 182 182 347 181 181 348 182 182 348 184 184 348 182 182 349 183 183 349 184 184 349 184 184 350 183 183 350 185 185 350 184 184 351 185 185 351 187 187 351 185 185 352 186 186 352 187 187 352 187 187 353 186 186 353 102 102 353 187 187 354 102 102 354 247 247 354 102 102 355 101 101 355 247 247 355 247 247 356 101 101 356 100 100 356 247 247 357 100 100 357 245 245 357 245 245 358 100 100 358 97 97 358 245 245 359 97 97 359 244 244 359 244 244 360 97 97 360 188 188 360 244 244 361 188 188 361 190 190 361 190 190 362 188 188 362 189 189 362 189 189 363 95 95 363 190 190 363 190 190 364 95 95 364 191 191 364 190 190 365 191 191 365 242 242 365 242 242 366 191 191 366 192 192 366 242 242 367 192 192 367 193 193 367 192 192 368 92 92 368 193 193 368 193 193 369 92 92 369 90 90 369 193 193 370 90 90 370 194 194 370 90 90 371 195 195 371 194 194 371 194 194 372 195 195 372 196 196 372 194 194 373 196 196 373 240 240 373 196 196 374 197 197 374 240 240 374 240 240 375 197 197 375 86 86 375 240 240 376 86 86 376 198 198 376 198 198 377 86 86 377 85 85 377 198 198 378 85 85 378 199 199 378 199 199 379 85 85 379 200 200 379 199 199 380 200 200 380 201 201 380 201 201 381 200 200 381 83 83 381 83 83 382 82 82 382 201 201 382 201 201 383 82 82 383 202 202 383 201 201 384 202 202 384 203 203 384 203 203 385 202 202 385 79 79 385 203 203 386 79 79 386 204 204 386 79 79 387 77 77 387 204 204 387 204 204 388 77 77 388 76 76 388 204 204 389 76 76 389 205 205 389 76 76 390 74 74 390 205 205 390 205 205 391 74 74 391 72 72 391 205 205 392 72 72 392 235 235 392 72 72 393 206 206 393 235 235 393 235 235 394 206 206 394 207 207 394 235 235 395 207 207 395 234 234 395 234 234 396 207 207 396 208 208 396 234 234 397 208 208 397 209 209 397 209 209 398 208 208 398 211 211 398 209 209 399 211 211 399 210 210 399 210 210 400 211 211 400 212 212 400 212 212 401 213 213 401 210 210 401 210 210 402 213 213 402 67 67 402 210 210 403 67 67 403 231 231 403 231 231 404 67 67 404 65 65 404 231 231 405 65 65 405 214 214 405 65 65 406 64 64 406 214 214 406 214 214 407 64 64 407 215 215 407 214 214 408 215 215 408 228 228 408 215 215 409 62 62 409 228 228 409 228 228 410 62 62 410 60 60 410 228 228 411 60 60 411 227 227 411 60 60 412 59 59 412 227 227 412 227 227 413 59 59 413 55 55 413 227 227 414 55 55 414 226 226 414 226 226 415 55 55 415 216 216 415 226 226 416 216 216 416 217 217 416 217 217 417 216 216 417 54 54 417 217 217 418 54 54 418 225 225 418 225 225 419 54 54 419 52 52 419 52 52 420 51 51 420 225 225 420 225 225 421 51 51 421 218 218 421 225 225 422 218 218 422 219 219 422 219 219 423 218 218 423 220 220 423 219 219 424 220 220 424 221 221 424 221 221 425 220 220 425 222 222 425 221 221 426 222 222 426 275 275 426 275 275 427 222 222 427 223 223 427 275 275 428 223 223 428 224 224 428 219 219 429 277 277 429 225 225 429 225 225 430 277 277 430 280 280 430 225 225 431 280 280 431 217 217 431 217 217 432 280 280 432 282 282 432 217 217 433 282 282 433 226 226 433 226 226 434 282 282 434 283 283 434 226 226 435 283 283 435 227 227 435 227 227 436 283 283 436 229 229 436 227 227 437 229 229 437 228 228 437 228 228 438 229 229 438 286 286 438 228 228 439 286 286 439 214 214 439 214 214 440 286 286 440 230 230 440 214 214 441 230 230 441 231 231 441 231 231 442 230 230 442 288 288 442 231 231 443 288 288 443 210 210 443 210 210 444 288 288 444 232 232 444 210 210 445 232 232 445 209 209 445 209 209 446 232 232 446 233 233 446 209 209 447 233 233 447 234 234 447 234 234 448 233 233 448 236 236 448 234 234 449 236 236 449 235 235 449 235 235 450 236 236 450 293 293 450 235 235 451 293 293 451 205 205 451 205 205 452 293 293 452 237 237 452 205 205 453 237 237 453 204 204 453 204 204 454 237 237 454 238 238 454 204 204 455 238 238 455 203 203 455 203 203 456 238 238 456 239 239 456 203 203 457 239 239 457 201 201 457 201 201 458 239 239 458 297 297 458 201 201 459 297 297 459 199 199 459 199 199 460 297 297 460 298 298 460 199 199 461 298 298 461 198 198 461 198 198 462 298 298 462 299 299 462 198 198 463 299 299 463 240 240 463 240 240 464 299 299 464 241 241 464 240 240 465 241 241 465 194 194 465 194 194 466 241 241 466 302 302 466 194 194 467 302 302 467 193 193 467 193 193 468 302 302 468 303 303 468 193 193 469 303 303 469 242 242 469 242 242 470 303 303 470 243 243 470 242 242 471 243 243 471 190 190 471 190 190 472 243 243 472 304 304 472 190 190 473 304 304 473 244 244 473 244 244 474 304 304 474 246 246 474 244 244 475 246 246 475 245 245 475 245 245 476 246 246 476 306 306 476 245 245 477 306 306 477 247 247 477 247 247 478 306 306 478 248 248 478 247 247 479 248 248 479 187 187 479 187 187 480 248 248 480 308 308 480 187 187 481 308 308 481 184 184 481 184 184 482 308 308 482 249 249 482 184 184 483 249 249 483 181 181 483 181 181 484 249 249 484 250 250 484 181 181 485 250 250 485 179 179 485 179 179 486 250 250 486 251 251 486 179 179 487 251 251 487 252 252 487 252 252 488 251 251 488 253 253 488 252 252 489 253 253 489 177 177 489 177 177 490 253 253 490 254 254 490 177 177 491 254 254 491 175 175 491 175 175 492 254 254 492 313 313 492 175 175 493 313 313 493 255 255 493 255 255 494 313 313 494 314 314 494 255 255 495 314 314 495 172 172 495 172 172 496 314 314 496 256 256 496 172 172 497 256 256 497 257 257 497 257 257 498 256 256 498 315 315 498 257 257 499 315 315 499 258 258 499 258 258 500 315 315 500 260 260 500 258 258 501 260 260 501 259 259 501 259 259 502 260 260 502 261 261 502 259 259 503 261 261 503 165 165 503 165 165 504 261 261 504 262 262 504 165 165 505 262 262 505 163 163 505 163 163 506 262 262 506 263 263 506 163 163 507 263 263 507 162 162 507 162 162 508 263 263 508 264 264 508 162 162 509 264 264 509 160 160 509 160 160 510 264 264 510 321 321 510 160 160 511 321 321 511 159 159 511 159 159 512 321 321 512 266 266 512 159 159 513 266 266 513 265 265 513 265 265 514 266 266 514 324 324 514 265 265 515 324 324 515 158 158 515 158 158 516 324 324 516 267 267 516 158 158 517 267 267 517 157 157 517 157 157 518 267 267 518 326 326 518 157 157 519 326 326 519 155 155 519 155 155 520 326 326 520 268 268 520 155 155 521 268 268 521 154 154 521 154 154 522 268 268 522 327 327 522 154 154 523 327 327 523 269 269 523 269 269 524 327 327 524 270 270 524 269 269 525 270 270 525 271 271 525 271 271 526 270 270 526 272 272 526 271 271 527 272 272 527 273 273 527 273 273 528 272 272 528 274 274 528 273 273 529 274 274 529 275 275 529 275 275 530 274 274 530 330 330 530 275 275 531 330 330 531 221 221 531 221 221 532 330 330 532 276 276 532 221 221 533 276 276 533 219 219 533 219 219 534 276 276 534 277 277 534 276 276 535 278 278 535 277 277 535 277 277 536 278 278 536 279 279 536 277 277 537 279 279 537 280 280 537 280 280 538 279 279 538 334 334 538 280 280 539 334 334 539 282 282 539 282 282 540 334 334 540 281 281 540 282 282 541 281 281 541 283 283 541 283 283 542 281 281 542 284 284 542 283 283 543 284 284 543 229 229 543 229 229 544 284 284 544 285 285 544 229 229 545 285 285 545 286 286 545 286 286 546 285 285 546 337 337 546 286 286 547 337 337 547 230 230 547 230 230 548 337 337 548 287 287 548 230 230 549 287 287 549 288 288 549 288 288 550 287 287 550 289 289 550 288 288 551 289 289 551 232 232 551 232 232 552 289 289 552 290 290 552 232 232 553 290 290 553 233 233 553 233 233 554 290 290 554 291 291 554 233 233 555 291 291 555 236 236 555 236 236 556 291 291 556 292 292 556 236 236 557 292 292 557 293 293 557 293 293 558 292 292 558 294 294 558 293 293 559 294 294 559 237 237 559 237 237 560 294 294 560 295 295 560 237 237 561 295 295 561 238 238 561 238 238 562 295 295 562 296 296 562 238 238 563 296 296 563 239 239 563 239 239 564 296 296 564 341 341 564 239 239 565 341 341 565 297 297 565 297 297 566 341 341 566 342 342 566 297 297 567 342 342 567 298 298 567 298 298 568 342 342 568 343 343 568 298 298 569 343 343 569 299 299 569 299 299 570 343 343 570 300 300 570 299 299 571 300 300 571 241 241 571 241 241 572 300 300 572 301 301 572 241 241 573 301 301 573 302 302 573 302 302 574 301 301 574 348 348 574 302 302 575 348 348 575 303 303 575 303 303 576 348 348 576 349 349 576 303 303 577 349 349 577 243 243 577 243 243 578 349 349 578 350 350 578 243 243 579 350 350 579 304 304 579 304 304 580 350 350 580 305 305 580 304 304 581 305 305 581 246 246 581 246 246 582 305 305 582 351 351 582 246 246 583 351 351 583 306 306 583 306 306 584 351 351 584 307 307 584 306 306 585 307 307 585 248 248 585 248 248 586 307 307 586 353 353 586 248 248 587 353 353 587 308 308 587 308 308 588 353 353 588 309 309 588 308 308 589 309 309 589 249 249 589 249 249 590 309 309 590 310 310 590 249 249 591 310 310 591 250 250 591 250 250 592 310 310 592 355 355 592 250 250 593 355 355 593 251 251 593 251 251 594 355 355 594 311 311 594 251 251 595 311 311 595 253 253 595 253 253 596 311 311 596 356 356 596 253 253 597 356 356 597 254 254 597 254 254 598 356 356 598 312 312 598 254 254 599 312 312 599 313 313 599 313 313 600 312 312 600 359 359 600 313 313 601 359 359 601 314 314 601 314 314 602 359 359 602 360 360 602 314 314 603 360 360 603 256 256 603 256 256 604 360 360 604 361 361 604 256 256 605 361 361 605 315 315 605 315 315 606 361 361 606 362 362 606 315 315 607 362 362 607 260 260 607 260 260 608 362 362 608 316 316 608 260 260 609 316 316 609 261 261 609 261 261 610 316 316 610 317 317 610 261 261 611 317 317 611 262 262 611 262 262 612 317 317 612 318 318 612 262 262 613 318 318 613 263 263 613 263 263 614 318 318 614 319 319 614 263 263 615 319 319 615 264 264 615 264 264 616 319 319 616 320 320 616 264 264 617 320 320 617 321 321 617 321 321 618 320 320 618 322 322 618 321 321 619 322 322 619 266 266 619 266 266 620 322 322 620 323 323 620 266 266 621 323 323 621 324 324 621 324 324 622 323 323 622 365 365 622 324 324 623 365 365 623 267 267 623 267 267 624 365 365 624 325 325 624 267 267 625 325 325 625 326 326 625 326 326 626 325 325 626 367 367 626 326 326 627 367 367 627 268 268 627 268 268 628 367 367 628 370 370 628 268 268 629 370 370 629 327 327 629 327 327 630 370 370 630 328 328 630 327 327 631 328 328 631 270 270 631 270 270 632 328 328 632 329 329 632 270 270 633 329 329 633 272 272 633 272 272 634 329 329 634 372 372 634 272 272 635 372 372 635 274 274 635 274 274 636 372 372 636 373 373 636 274 274 637 373 373 637 330 330 637 330 330 638 373 373 638 374 374 638 330 330 639 374 374 639 276 276 639 276 276 640 374 374 640 278 278 640 374 374 641 376 376 641 278 278 641 278 278 642 376 376 642 331 331 642 278 278 643 331 331 643 279 279 643 279 279 644 331 331 644 332 332 644 279 279 645 332 332 645 334 334 645 334 334 646 332 332 646 333 333 646 334 334 647 333 333 647 281 281 647 281 281 648 333 333 648 335 335 648 281 281 649 335 335 649 284 284 649 284 284 650 335 335 650 336 336 650 284 284 651 336 336 651 285 285 651 285 285 652 336 336 652 380 380 652 285 285 653 380 380 653 337 337 653 337 337 654 380 380 654 382 382 654 337 337 655 382 382 655 287 287 655 287 287 656 382 382 656 384 384 656 287 287 657 384 384 657 289 289 657 289 289 658 384 384 658 338 338 658 289 289 659 338 338 659 290 290 659 290 290 660 338 338 660 386 386 660 290 290 661 386 386 661 291 291 661 291 291 662 386 386 662 388 388 662 291 291 663 388 388 663 292 292 663 292 292 664 388 388 664 339 339 664 292 292 665 339 339 665 294 294 665 294 294 666 339 339 666 390 390 666 294 294 667 390 390 667 295 295 667 295 295 668 390 390 668 340 340 668 295 295 669 340 340 669 296 296 669 296 296 670 340 340 670 391 391 670 296 296 671 391 391 671 341 341 671 341 341 672 391 391 672 394 394 672 341 341 673 394 394 673 342 342 673 342 342 674 394 394 674 344 344 674 342 342 675 344 344 675 343 343 675 343 343 676 344 344 676 345 345 676 343 343 677 345 345 677 300 300 677 300 300 678 345 345 678 346 346 678 300 300 679 346 346 679 301 301 679 301 301 680 346 346 680 347 347 680 301 301 681 347 347 681 348 348 681 348 348 682 347 347 682 398 398 682 348 348 683 398 398 683 349 349 683 349 349 684 398 398 684 399 399 684 349 349 685 399 399 685 350 350 685 350 350 686 399 399 686 401 401 686 350 350 687 401 401 687 305 305 687 305 305 688 401 401 688 402 402 688 305 305 689 402 402 689 351 351 689 351 351 690 402 402 690 352 352 690 351 351 691 352 352 691 307 307 691 307 307 692 352 352 692 403 403 692 307 307 693 403 403 693 353 353 693 353 353 694 403 403 694 405 405 694 353 353 695 405 405 695 309 309 695 309 309 696 405 405 696 354 354 696 309 309 697 354 354 697 310 310 697 310 310 698 354 354 698 407 407 698 310 310 699 407 407 699 355 355 699 355 355 700 407 407 700 408 408 700 355 355 701 408 408 701 311 311 701 311 311 702 408 408 702 409 409 702 311 311 703 409 409 703 356 356 703 356 356 704 409 409 704 357 357 704 356 356 705 357 357 705 312 312 705 312 312 706 357 357 706 411 411 706 312 312 707 411 411 707 359 359 707 359 359 708 411 411 708 358 358 708 359 359 709 358 358 709 360 360 709 360 360 710 358 358 710 414 414 710 360 360 711 414 414 711 361 361 711 361 361 712 414 414 712 415 415 712 361 361 713 415 415 713 362 362 713 362 362 714 415 415 714 416 416 714 362 362 715 416 416 715 316 316 715 316 316 716 416 416 716 418 418 716 316 316 717 418 418 717 317 317 717 317 317 718 418 418 718 363 363 718 317 317 719 363 363 719 318 318 719 318 318 720 363 363 720 364 364 720 318 318 721 364 364 721 319 319 721 319 319 722 364 364 722 422 422 722 319 319 723 422 422 723 320 320 723 320 320 724 422 422 724 423 423 724 320 320 725 423 423 725 322 322 725 322 322 726 423 423 726 425 425 726 322 322 727 425 425 727 323 323 727 323 323 728 425 425 728 426 426 728 323 323 729 426 426 729 365 365 729 365 365 730 426 426 730 366 366 730 365 365 731 366 366 731 325 325 731 325 325 732 366 366 732 368 368 732 325 325 733 368 368 733 367 367 733 367 367 734 368 368 734 369 369 734 367 367 735 369 369 735 370 370 735 370 370 736 369 369 736 371 371 736 370 370 737 371 371 737 328 328 737 328 328 738 371 371 738 429 429 738 328 328 739 429 429 739 329 329 739 329 329 740 429 429 740 430 430 740 329 329 741 430 430 741 372 372 741 372 372 742 430 430 742 431 431 742 372 372 743 431 431 743 373 373 743 373 373 744 431 431 744 375 375 744 373 373 745 375 375 745 374 374 745 374 374 746 375 375 746 376 376 746 375 375 747 432 432 747 376 376 747 376 376 748 432 432 748 377 377 748 376 376 749 377 377 749 331 331 749 331 331 750 377 377 750 435 435 750 331 331 751 435 435 751 332 332 751 332 332 752 435 435 752 378 378 752 332 332 753 378 378 753 333 333 753 333 333 754 378 378 754 437 437 754 333 333 755 437 437 755 335 335 755 335 335 756 437 437 756 379 379 756 335 335 757 379 379 757 336 336 757 336 336 758 379 379 758 438 438 758 336 336 759 438 438 759 380 380 759 380 380 760 438 438 760 381 381 760 380 380 761 381 381 761 382 382 761 382 382 762 381 381 762 383 383 762 382 382 763 383 383 763 384 384 763 384 384 764 383 383 764 385 385 764 384 384 765 385 385 765 338 338 765 338 338 766 385 385 766 440 440 766 338 338 767 440 440 767 386 386 767 386 386 768 440 440 768 387 387 768 386 386 769 387 387 769 388 388 769 388 388 770 387 387 770 389 389 770 388 388 771 389 389 771 339 339 771 339 339 772 389 389 772 442 442 772 339 339 773 442 442 773 390 390 773 390 390 774 442 442 774 444 444 774 390 390 775 444 444 775 340 340 775 340 340 776 444 444 776 392 392 776 340 340 777 392 392 777 391 391 777 391 391 778 392 392 778 393 393 778 391 391 779 393 393 779 394 394 779 394 394 780 393 393 780 447 447 780 394 394 781 447 447 781 344 344 781 344 344 782 447 447 782 395 395 782 344 344 783 395 395 783 345 345 783 345 345 784 395 395 784 396 396 784 345 345 785 396 396 785 346 346 785 346 346 786 396 396 786 397 397 786 346 346 787 397 397 787 347 347 787 347 347 788 397 397 788 450 450 788 347 347 789 450 450 789 398 398 789 398 398 790 450 450 790 451 451 790 398 398 791 451 451 791 399 399 791 399 399 792 451 451 792 400 400 792 399 399 793 400 400 793 401 401 793 401 401 794 400 400 794 453 453 794 401 401 795 453 453 795 402 402 795 402 402 796 453 453 796 456 456 796 402 402 797 456 456 797 352 352 797 352 352 798 456 456 798 457 457 798 352 352 799 457 457 799 403 403 799 403 403 800 457 457 800 404 404 800 403 403 801 404 404 801 405 405 801 405 405 802 404 404 802 459 459 802 405 405 803 459 459 803 354 354 803 354 354 804 459 459 804 406 406 804 354 354 805 406 406 805 407 407 805 407 407 806 406 406 806 461 461 806 407 407 807 461 461 807 408 408 807 408 408 808 461 461 808 462 462 808 408 408 809 462 462 809 409 409 809 409 409 810 462 462 810 464 464 810 409 409 811 464 464 811 357 357 811 357 357 812 464 464 812 410 410 812 357 357 813 410 410 813 411 411 813 411 411 814 410 410 814 412 412 814 411 411 815 412 412 815 358 358 815 358 358 816 412 412 816 413 413 816 358 358 817 413 413 817 414 414 817 414 414 818 413 413 818 470 470 818 414 414 819 470 470 819 415 415 819 415 415 820 470 470 820 417 417 820 415 415 821 417 417 821 416 416 821 416 416 822 417 417 822 419 419 822 416 416 823 419 419 823 418 418 823 418 418 824 419 419 824 420 420 824 418 418 825 420 420 825 363 363 825 363 363 826 420 420 826 474 474 826 363 363 827 474 474 827 364 364 827 364 364 828 474 474 828 421 421 828 364 364 829 421 421 829 422 422 829 422 422 830 421 421 830 476 476 830 422 422 831 476 476 831 423 423 831 423 423 832 476 476 832 424 424 832 423 423 833 424 424 833 425 425 833 425 425 834 424 424 834 477 477 834 425 425 835 477 477 835 426 426 835 426 426 836 477 477 836 478 478 836 426 426 837 478 478 837 366 366 837 366 366 838 478 478 838 480 480 838 366 366 839 480 480 839 368 368 839 368 368 840 480 480 840 427 427 840 368 368 841 427 427 841 369 369 841 369 369 842 427 427 842 428 428 842 369 369 843 428 428 843 371 371 843 371 371 844 428 428 844 483 483 844 371 371 845 483 483 845 429 429 845 429 429 846 483 483 846 484 484 846 429 429 847 484 484 847 430 430 847 430 430 848 484 484 848 486 486 848 430 430 849 486 486 849 431 431 849 431 431 850 486 486 850 433 433 850 431 431 851 433 433 851 375 375 851 375 375 852 433 433 852 432 432 852 433 433 853 125 125 853 432 432 853 432 432 854 125 125 854 126 126 854 432 432 855 126 126 855 377 377 855 377 377 856 126 126 856 434 434 856 377 377 857 434 434 857 435 435 857 435 435 858 434 434 858 436 436 858 435 435 859 436 436 859 378 378 859 378 378 860 436 436 860 129 129 860 378 378 861 129 129 861 437 437 861 437 437 862 129 129 862 128 128 862 437 437 863 128 128 863 379 379 863 379 379 864 128 128 864 127 127 864 379 379 865 127 127 865 438 438 865 438 438 866 127 127 866 130 130 866 438 438 867 130 130 867 381 381 867 381 381 868 130 130 868 439 439 868 381 381 869 439 439 869 383 383 869 383 383 870 439 439 870 133 133 870 383 383 871 133 133 871 385 385 871 385 385 872 133 133 872 132 132 872 385 385 873 132 132 873 440 440 873 440 440 874 132 132 874 131 131 874 440 440 875 131 131 875 387 387 875 387 387 876 131 131 876 441 441 876 387 387 877 441 441 877 389 389 877 389 389 878 441 441 878 135 135 878 389 389 879 135 135 879 442 442 879 442 442 880 135 135 880 443 443 880 442 442 881 443 443 881 444 444 881 444 444 882 443 443 882 134 134 882 444 444 883 134 134 883 392 392 883 392 392 884 134 134 884 445 445 884 392 392 885 445 445 885 393 393 885 393 393 886 445 445 886 136 136 886 393 393 887 136 136 887 447 447 887 447 447 888 136 136 888 446 446 888 447 447 889 446 446 889 395 395 889 395 395 890 446 446 890 138 138 890 395 395 891 138 138 891 396 396 891 396 396 892 138 138 892 448 448 892 396 396 893 448 448 893 397 397 893 397 397 894 448 448 894 137 137 894 397 397 895 137 137 895 450 450 895 450 450 896 137 137 896 449 449 896 450 450 897 449 449 897 451 451 897 451 451 898 449 449 898 452 452 898 451 451 899 452 452 899 400 400 899 400 400 900 452 452 900 454 454 900 400 400 901 454 454 901 453 453 901 453 453 902 454 454 902 455 455 902 453 453 903 455 455 903 456 456 903 456 456 904 455 455 904 139 139 904 456 456 905 139 139 905 457 457 905 457 457 906 139 139 906 458 458 906 457 457 907 458 458 907 404 404 907 404 404 908 458 458 908 141 141 908 404 404 909 141 141 909 459 459 909 459 459 910 141 141 910 140 140 910 459 459 911 140 140 911 406 406 911 406 406 912 140 140 912 460 460 912 406 406 913 460 460 913 461 461 913 461 461 914 460 460 914 142 142 914 461 461 915 142 142 915 462 462 915 462 462 916 142 142 916 463 463 916 462 462 917 463 463 917 464 464 917 464 464 918 463 463 918 465 465 918 464 464 919 465 465 919 410 410 919 410 410 920 465 465 920 466 466 920 410 410 921 466 466 921 412 412 921 412 412 922 466 466 922 467 467 922 412 412 923 467 467 923 413 413 923 413 413 924 467 467 924 468 468 924 413 413 925 468 468 925 470 470 925 470 470 926 468 468 926 469 469 926 470 470 927 469 469 927 417 417 927 417 417 928 469 469 928 471 471 928 417 417 929 471 471 929 419 419 929 419 419 930 471 471 930 472 472 930 419 419 931 472 472 931 420 420 931 420 420 932 472 472 932 473 473 932 420 420 933 473 473 933 474 474 933 474 474 934 473 473 934 144 144 934 474 474 935 144 144 935 421 421 935 421 421 936 144 144 936 475 475 936 421 421 937 475 475 937 476 476 937 476 476 938 475 475 938 146 146 938 476 476 939 146 146 939 424 424 939 424 424 940 146 146 940 145 145 940 424 424 941 145 145 941 477 477 941 477 477 942 145 145 942 147 147 942 477 477 943 147 147 943 478 478 943 478 478 944 147 147 944 479 479 944 478 478 945 479 479 945 480 480 945 480 480 946 479 479 946 481 481 946 480 480 947 481 481 947 427 427 947 427 427 948 481 481 948 482 482 948 427 427 949 482 482 949 428 428 949 428 428 950 482 482 950 149 149 950 428 428 951 149 149 951 483 483 951 483 483 952 149 149 952 148 148 952 483 483 953 148 148 953 484 484 953 484 484 954 148 148 954 485 485 954 484 484 955 485 485 955 486 486 955 486 486 956 485 485 956 487 487 956 486 486 957 487 487 957 433 433 957 433 433 958 487 487 958 125 125 958 488 488 959 53 53 959 807 807 959 800 800 960 56 56 960 799 799 960 58 58 961 61 61 961 788 788 961 780 780 962 66 66 962 489 489 962 768 768 963 68 68 963 770 770 963 69 69 964 70 70 964 763 763 964 490 490 965 73 73 965 749 749 965 78 78 966 80 80 966 738 738 966 491 491 967 724 724 967 727 727 967 88 88 968 89 89 968 536 536 968 93 93 969 94 94 969 707 707 969 96 96 970 492 492 970 691 691 970 679 679 971 103 103 971 493 493 971 2 2 972 3 3 972 672 672 972 6 6 973 8 8 973 523 523 973 12 12 974 13 13 974 653 653 974 646 646 975 15 15 975 638 638 975 16 16 976 637 637 976 636 636 976 624 624 977 622 622 977 515 515 977 21 21 978 23 23 978 605 605 978 25 25 979 599 599 979 606 606 979 28 28 980 494 494 980 597 597 980 31 31 981 34 34 981 510 510 981 40 40 982 495 495 982 496 496 982 43 43 983 44 44 983 497 497 983 562 562 984 45 45 984 498 498 984 499 499 985 551 551 985 553 553 985 500 500 986 501 501 986 502 502 986 502 502 987 501 501 987 503 503 987 502 502 988 503 503 988 548 548 988 548 548 989 503 503 989 504 504 989 548 548 990 504 504 990 505 505 990 505 505 991 504 504 991 555 555 991 505 505 992 555 555 992 506 506 992 506 506 993 555 555 993 507 507 993 506 506 994 507 507 994 550 550 994 550 550 995 507 507 995 553 553 995 108 108 996 107 107 996 582 582 996 582 582 997 107 107 997 593 593 997 582 582 998 593 593 998 583 583 998 583 583 999 593 593 999 590 590 999 583 583 1000 590 590 1000 584 584 1000 584 584 1001 590 590 1001 508 508 1001 584 584 1002 508 508 1002 509 509 1002 509 509 1003 508 508 1003 587 587 1003 509 509 1004 587 587 1004 585 585 1004 585 585 1005 587 587 1005 510 510 1005 110 110 1006 112 112 1006 512 512 1006 512 512 1007 112 112 1007 511 511 1007 512 512 1008 511 511 1008 513 513 1008 513 513 1009 511 511 1009 628 628 1009 513 513 1010 628 628 1010 619 619 1010 619 619 1011 628 628 1011 626 626 1011 619 619 1012 626 626 1012 620 620 1012 620 620 1013 626 626 1013 625 625 1013 620 620 1014 625 625 1014 514 514 1014 514 514 1015 625 625 1015 515 515 1015 113 113 1016 517 517 1016 516 516 1016 516 516 1017 517 517 1017 519 519 1017 516 516 1018 519 519 1018 518 518 1018 518 518 1019 519 519 1019 666 666 1019 518 518 1020 666 666 1020 521 521 1020 521 521 1021 666 666 1021 520 520 1021 521 521 1022 520 520 1022 522 522 1022 522 522 1023 520 520 1023 663 663 1023 522 522 1024 663 663 1024 659 659 1024 659 659 1025 663 663 1025 523 523 1025 116 116 1026 524 524 1026 678 678 1026 678 678 1027 524 524 1027 683 683 1027 678 678 1028 683 683 1028 525 525 1028 525 525 1029 683 683 1029 526 526 1029 525 525 1030 526 526 1030 676 676 1030 676 676 1031 526 526 1031 682 682 1031 676 676 1032 682 682 1032 674 674 1032 674 674 1033 682 682 1033 527 527 1033 674 674 1034 527 527 1034 673 673 1034 673 673 1035 527 527 1035 493 493 1035 685 685 1036 117 117 1036 687 687 1036 687 687 1037 117 117 1037 697 697 1037 687 687 1038 697 697 1038 528 528 1038 528 528 1039 697 697 1039 695 695 1039 528 528 1040 695 695 1040 529 529 1040 529 529 1041 695 695 1041 694 694 1041 529 529 1042 694 694 1042 530 530 1042 530 530 1043 694 694 1043 531 531 1043 530 530 1044 531 531 1044 690 690 1044 690 690 1045 531 531 1045 691 691 1045 711 711 1046 119 119 1046 710 710 1046 710 710 1047 119 119 1047 719 719 1047 710 710 1048 719 719 1048 533 533 1048 533 533 1049 719 719 1049 532 532 1049 533 533 1050 532 532 1050 534 534 1050 534 534 1051 532 532 1051 715 715 1051 534 534 1052 715 715 1052 708 708 1052 708 708 1053 715 715 1053 535 535 1053 708 708 1054 535 535 1054 706 706 1054 706 706 1055 535 535 1055 536 536 1055 720 720 1056 537 537 1056 539 539 1056 539 539 1057 537 537 1057 538 538 1057 539 539 1058 538 538 1058 540 540 1058 540 540 1059 538 538 1059 731 731 1059 540 540 1060 731 731 1060 541 541 1060 541 541 1061 731 731 1061 542 542 1061 541 541 1062 542 542 1062 721 721 1062 721 721 1063 542 542 1063 728 728 1063 721 721 1064 728 728 1064 725 725 1064 725 725 1065 728 728 1065 727 727 1065 745 745 1066 755 755 1066 744 744 1066 744 744 1067 755 755 1067 754 754 1067 744 744 1068 754 754 1068 743 743 1068 743 743 1069 754 754 1069 753 753 1069 743 743 1070 753 753 1070 742 742 1070 742 742 1071 753 753 1071 543 543 1071 742 742 1072 543 543 1072 740 740 1072 740 740 1073 543 543 1073 544 544 1073 740 740 1074 544 544 1074 739 739 1074 739 739 1075 544 544 1075 749 749 1075 785 785 1076 122 122 1076 545 545 1076 545 545 1077 122 122 1077 793 793 1077 545 545 1078 793 793 1078 546 546 1078 546 546 1079 793 793 1079 792 792 1079 546 546 1080 792 792 1080 784 784 1080 784 784 1081 792 792 1081 791 791 1081 784 784 1082 791 791 1082 782 782 1082 782 782 1083 791 791 1083 790 790 1083 782 782 1084 790 790 1084 781 781 1084 781 781 1085 790 790 1085 788 788 1085 814 814 1086 500 500 1086 547 547 1086 547 547 1087 500 500 1087 502 502 1087 547 547 1088 502 502 1088 816 816 1088 816 816 1089 502 502 1089 548 548 1089 816 816 1090 548 548 1090 818 818 1090 818 818 1091 548 548 1091 505 505 1091 818 818 1092 505 505 1092 819 819 1092 819 819 1093 505 505 1093 506 506 1093 819 819 1094 506 506 1094 549 549 1094 549 549 1095 506 506 1095 550 550 1095 549 549 1096 550 550 1096 820 820 1096 820 820 1097 550 550 1097 48 48 1097 553 553 1098 551 551 1098 550 550 1098 550 550 1099 551 551 1099 47 47 1099 550 550 1100 47 47 1100 48 48 1100 552 552 1101 499 499 1101 561 561 1101 561 561 1102 499 499 1102 553 553 1102 561 561 1103 553 553 1103 554 554 1103 554 554 1104 553 553 1104 507 507 1104 554 554 1105 507 507 1105 556 556 1105 556 556 1106 507 507 1106 555 555 1106 556 556 1107 555 555 1107 557 557 1107 557 557 1108 555 555 1108 504 504 1108 557 557 1109 504 504 1109 559 559 1109 559 559 1110 504 504 1110 503 503 1110 559 559 1111 503 503 1111 558 558 1111 558 558 1112 503 503 1112 501 501 1112 558 558 1113 105 105 1113 559 559 1113 559 559 1114 105 105 1114 560 560 1114 559 559 1115 560 560 1115 557 557 1115 557 557 1116 560 560 1116 565 565 1116 557 557 1117 565 565 1117 556 556 1117 556 556 1118 565 565 1118 564 564 1118 556 556 1119 564 564 1119 554 554 1119 554 554 1120 564 564 1120 563 563 1120 554 554 1121 563 563 1121 561 561 1121 561 561 1122 563 563 1122 498 498 1122 561 561 1123 498 498 1123 552 552 1123 552 552 1124 498 498 1124 45 45 1124 44 44 1125 562 562 1125 497 497 1125 497 497 1126 562 562 1126 498 498 1126 497 497 1127 498 498 1127 570 570 1127 570 570 1128 498 498 1128 563 563 1128 570 570 1129 563 563 1129 571 571 1129 571 571 1130 563 563 1130 564 564 1130 571 571 1131 564 564 1131 566 566 1131 566 566 1132 564 564 1132 565 565 1132 566 566 1133 565 565 1133 573 573 1133 573 573 1134 565 565 1134 560 560 1134 573 573 1135 560 560 1135 567 567 1135 567 567 1136 560 560 1136 105 105 1136 495 495 1137 43 43 1137 496 496 1137 496 496 1138 43 43 1138 497 497 1138 496 496 1139 497 497 1139 568 568 1139 568 568 1140 497 497 1140 570 570 1140 568 568 1141 570 570 1141 569 569 1141 569 569 1142 570 570 1142 571 571 1142 569 569 1143 571 571 1143 572 572 1143 572 572 1144 571 571 1144 566 566 1144 572 572 1145 566 566 1145 580 580 1145 580 580 1146 566 566 1146 573 573 1146 580 580 1147 573 573 1147 574 574 1147 574 574 1148 573 573 1148 567 567 1148 39 39 1149 40 40 1149 575 575 1149 575 575 1150 40 40 1150 496 496 1150 575 575 1151 496 496 1151 576 576 1151 576 576 1152 496 496 1152 568 568 1152 576 576 1153 568 568 1153 577 577 1153 577 577 1154 568 568 1154 569 569 1154 577 577 1155 569 569 1155 578 578 1155 578 578 1156 569 569 1156 572 572 1156 578 578 1157 572 572 1157 579 579 1157 579 579 1158 572 572 1158 580 580 1158 579 579 1159 580 580 1159 581 581 1159 581 581 1160 580 580 1160 574 574 1160 581 581 1161 108 108 1161 579 579 1161 579 579 1162 108 108 1162 582 582 1162 579 579 1163 582 582 1163 578 578 1163 578 578 1164 582 582 1164 583 583 1164 578 578 1165 583 583 1165 577 577 1165 577 577 1166 583 583 1166 584 584 1166 577 577 1167 584 584 1167 576 576 1167 576 576 1168 584 584 1168 509 509 1168 576 576 1169 509 509 1169 575 575 1169 575 575 1170 509 509 1170 585 585 1170 575 575 1171 585 585 1171 39 39 1171 39 39 1172 585 585 1172 36 36 1172 510 510 1173 34 34 1173 585 585 1173 585 585 1174 34 34 1174 35 35 1174 585 585 1175 35 35 1175 36 36 1175 598 598 1176 31 31 1176 596 596 1176 596 596 1177 31 31 1177 510 510 1177 596 596 1178 510 510 1178 586 586 1178 586 586 1179 510 510 1179 587 587 1179 586 586 1180 587 587 1180 588 588 1180 588 588 1181 587 587 1181 508 508 1181 588 588 1182 508 508 1182 589 589 1182 589 589 1183 508 508 1183 590 590 1183 589 589 1184 590 590 1184 591 591 1184 591 591 1185 590 590 1185 593 593 1185 591 591 1186 593 593 1186 592 592 1186 592 592 1187 593 593 1187 107 107 1187 592 592 1188 109 109 1188 591 591 1188 591 591 1189 109 109 1189 604 604 1189 591 591 1190 604 604 1190 589 589 1190 589 589 1191 604 604 1191 594 594 1191 589 589 1192 594 594 1192 588 588 1192 588 588 1193 594 594 1193 595 595 1193 588 588 1194 595 595 1194 586 586 1194 586 586 1195 595 595 1195 601 601 1195 586 586 1196 601 601 1196 596 596 1196 596 596 1197 601 601 1197 597 597 1197 596 596 1198 597 597 1198 598 598 1198 598 598 1199 597 597 1199 494 494 1199 599 599 1200 28 28 1200 606 606 1200 606 606 1201 28 28 1201 597 597 1201 606 606 1202 597 597 1202 600 600 1202 600 600 1203 597 597 1203 601 601 1203 600 600 1204 601 601 1204 609 609 1204 609 609 1205 601 601 1205 595 595 1205 609 609 1206 595 595 1206 602 602 1206 602 602 1207 595 595 1207 594 594 1207 602 602 1208 594 594 1208 611 611 1208 611 611 1209 594 594 1209 604 604 1209 611 611 1210 604 604 1210 603 603 1210 603 603 1211 604 604 1211 109 109 1211 23 23 1212 25 25 1212 605 605 1212 605 605 1213 25 25 1213 606 606 1213 605 605 1214 606 606 1214 607 607 1214 607 607 1215 606 606 1215 600 600 1215 607 607 1216 600 600 1216 608 608 1216 608 608 1217 600 600 1217 609 609 1217 608 608 1218 609 609 1218 615 615 1218 615 615 1219 609 609 1219 602 602 1219 615 615 1220 602 602 1220 610 610 1220 610 610 1221 602 602 1221 611 611 1221 610 610 1222 611 611 1222 617 617 1222 617 617 1223 611 611 1223 603 603 1223 20 20 1224 21 21 1224 612 612 1224 612 612 1225 21 21 1225 605 605 1225 612 612 1226 605 605 1226 621 621 1226 621 621 1227 605 605 1227 607 607 1227 621 621 1228 607 607 1228 613 613 1228 613 613 1229 607 607 1229 608 608 1229 613 613 1230 608 608 1230 614 614 1230 614 614 1231 608 608 1231 615 615 1231 614 614 1232 615 615 1232 618 618 1232 618 618 1233 615 615 1233 610 610 1233 618 618 1234 610 610 1234 616 616 1234 616 616 1235 610 610 1235 617 617 1235 616 616 1236 110 110 1236 618 618 1236 618 618 1237 110 110 1237 512 512 1237 618 618 1238 512 512 1238 614 614 1238 614 614 1239 512 512 1239 513 513 1239 614 614 1240 513 513 1240 613 613 1240 613 613 1241 513 513 1241 619 619 1241 613 613 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 620 620 1243 621 621 1244 620 620 1244 612 612 1244 612 612 1245 620 620 1245 514 514 1245 612 612 1246 514 514 1246 20 20 1246 20 20 1247 514 514 1247 623 623 1247 515 515 1248 622 622 1248 514 514 1248 514 514 1249 622 622 1249 18 18 1249 514 514 1250 18 18 1250 623 623 1250 635 635 1251 624 624 1251 634 634 1251 634 634 1252 624 624 1252 515 515 1252 634 634 1253 515 515 1253 633 633 1253 633 633 1254 515 515 1254 625 625 1254 633 633 1255 625 625 1255 630 630 1255 630 630 1256 625 625 1256 626 626 1256 630 630 1257 626 626 1257 629 629 1257 629 629 1258 626 626 1258 628 628 1258 629 629 1259 628 628 1259 627 627 1259 627 627 1260 628 628 1260 511 511 1260 627 627 1261 511 511 1261 111 111 1261 111 111 1262 511 511 1262 112 112 1262 111 111 1263 645 645 1263 627 627 1263 627 627 1264 645 645 1264 644 644 1264 627 627 1265 644 644 1265 629 629 1265 629 629 1266 644 644 1266 642 642 1266 629 629 1267 642 642 1267 630 630 1267 630 630 1268 642 642 1268 631 631 1268 630 630 1269 631 631 1269 633 633 1269 633 633 1270 631 631 1270 632 632 1270 633 633 1271 632 632 1271 634 634 1271 634 634 1272 632 632 1272 636 636 1272 634 634 1273 636 636 1273 635 635 1273 635 635 1274 636 636 1274 637 637 1274 15 15 1275 16 16 1275 638 638 1275 638 638 1276 16 16 1276 636 636 1276 638 638 1277 636 636 1277 639 639 1277 639 639 1278 636 636 1278 632 632 1278 639 639 1279 632 632 1279 640 640 1279 640 640 1280 632 632 1280 631 631 1280 640 640 1281 631 631 1281 641 641 1281 641 641 1282 631 631 1282 642 642 1282 641 641 1283 642 642 1283 650 650 1283 650 650 1284 642 642 1284 644 644 1284 650 650 1285 644 644 1285 643 643 1285 643 643 1286 644 644 1286 645 645 1286 13 13 1287 646 646 1287 653 653 1287 653 653 1288 646 646 1288 638 638 1288 653 653 1289 638 638 1289 647 647 1289 647 647 1290 638 638 1290 639 639 1290 647 647 1291 639 639 1291 648 648 1291 648 648 1292 639 639 1292 640 640 1292 648 648 1293 640 640 1293 649 649 1293 649 649 1294 640 640 1294 641 641 1294 649 649 1295 641 641 1295 656 656 1295 656 656 1296 641 641 1296 650 650 1296 656 656 1297 650 650 1297 651 651 1297 651 651 1298 650 650 1298 643 643 1298 660 660 1299 12 12 1299 658 658 1299 658 658 1300 12 12 1300 653 653 1300 658 658 1301 653 653 1301 652 652 1301 652 652 1302 653 653 1302 647 647 1302 652 652 1303 647 647 1303 654 654 1303 654 654 1304 647 647 1304 648 648 1304 654 654 1305 648 648 1305 655 655 1305 655 655 1306 648 648 1306 649 649 1306 655 655 1307 649 649 1307 657 657 1307 657 657 1308 649 649 1308 656 656 1308 657 657 1309 656 656 1309 114 114 1309 114 114 1310 656 656 1310 651 651 1310 114 114 1311 113 113 1311 657 657 1311 657 657 1312 113 113 1312 516 516 1312 657 657 1313 516 516 1313 655 655 1313 655 655 1314 516 516 1314 518 518 1314 655 655 1315 518 518 1315 654 654 1315 654 654 1316 518 518 1316 521 521 1316 654 654 1317 521 521 1317 652 652 1317 652 652 1318 521 521 1318 522 522 1318 652 652 1319 522 522 1319 658 658 1319 658 658 1320 522 522 1320 659 659 1320 658 658 1321 659 659 1321 660 660 1321 660 660 1322 659 659 1322 661 661 1322 523 523 1323 8 8 1323 659 659 1323 659 659 1324 8 8 1324 9 9 1324 659 659 1325 9 9 1325 661 661 1325 4 4 1326 6 6 1326 662 662 1326 662 662 1327 6 6 1327 523 523 1327 662 662 1328 523 523 1328 671 671 1328 671 671 1329 523 523 1329 663 663 1329 671 671 1330 663 663 1330 664 664 1330 664 664 1331 663 663 1331 520 520 1331 664 664 1332 520 520 1332 665 665 1332 665 665 1333 520 520 1333 666 666 1333 665 665 1334 666 666 1334 667 667 1334 667 667 1335 666 666 1335 519 519 1335 667 667 1336 519 519 1336 668 668 1336 668 668 1337 519 519 1337 517 517 1337 668 668 1338 115 115 1338 667 667 1338 667 667 1339 115 115 1339 669 669 1339 667 667 1340 669 669 1340 665 665 1340 665 665 1341 669 669 1341 670 670 1341 665 665 1342 670 670 1342 664 664 1342 664 664 1343 670 670 1343 677 677 1343 664 664 1344 677 677 1344 671 671 1344 671 671 1345 677 677 1345 675 675 1345 671 671 1346 675 675 1346 662 662 1346 662 662 1347 675 675 1347 672 672 1347 662 662 1348 672 672 1348 4 4 1348 4 4 1349 672 672 1349 3 3 1349 1 1 1350 2 2 1350 673 673 1350 673 673 1351 2 2 1351 672 672 1351 673 673 1352 672 672 1352 674 674 1352 674 674 1353 672 672 1353 675 675 1353 674 674 1354 675 675 1354 676 676 1354 676 676 1355 675 675 1355 677 677 1355 676 676 1356 677 677 1356 525 525 1356 525 525 1357 677 677 1357 670 670 1357 525 525 1358 670 670 1358 678 678 1358 678 678 1359 670 670 1359 669 669 1359 678 678 1360 669 669 1360 116 116 1360 116 116 1361 669 669 1361 115 115 1361 493 493 1362 103 103 1362 673 673 1362 673 673 1363 103 103 1363 0 0 1363 673 673 1364 0 0 1364 1 1 1364 99 99 1365 679 679 1365 689 689 1365 689 689 1366 679 679 1366 493 493 1366 689 689 1367 493 493 1367 680 680 1367 680 680 1368 493 493 1368 527 527 1368 680 680 1369 527 527 1369 681 681 1369 681 681 1370 527 527 1370 682 682 1370 681 681 1371 682 682 1371 688 688 1371 688 688 1372 682 682 1372 526 526 1372 688 688 1373 526 526 1373 686 686 1373 686 686 1374 526 526 1374 683 683 1374 686 686 1375 683 683 1375 684 684 1375 684 684 1376 683 683 1376 524 524 1376 684 684 1377 685 685 1377 686 686 1377 686 686 1378 685 685 1378 687 687 1378 686 686 1379 687 687 1379 688 688 1379 688 688 1380 687 687 1380 528 528 1380 688 688 1381 528 528 1381 681 681 1381 681 681 1382 528 528 1382 529 529 1382 681 681 1383 529 529 1383 680 680 1383 680 680 1384 529 529 1384 530 530 1384 680 680 1385 530 530 1385 689 689 1385 689 689 1386 530 530 1386 690 690 1386 689 689 1387 690 690 1387 99 99 1387 99 99 1388 690 690 1388 98 98 1388 691 691 1389 492 492 1389 690 690 1389 690 690 1390 492 492 1390 692 692 1390 690 690 1391 692 692 1391 98 98 1391 693 693 1392 96 96 1392 705 705 1392 705 705 1393 96 96 1393 691 691 1393 705 705 1394 691 691 1394 704 704 1394 704 704 1395 691 691 1395 531 531 1395 704 704 1396 531 531 1396 702 702 1396 702 702 1397 531 531 1397 694 694 1397 702 702 1398 694 694 1398 699 699 1398 699 699 1399 694 694 1399 695 695 1399 699 699 1400 695 695 1400 696 696 1400 696 696 1401 695 695 1401 697 697 1401 696 696 1402 697 697 1402 698 698 1402 698 698 1403 697 697 1403 117 117 1403 698 698 1404 118 118 1404 696 696 1404 696 696 1405 118 118 1405 700 700 1405 696 696 1406 700 700 1406 699 699 1406 699 699 1407 700 700 1407 701 701 1407 699 699 1408 701 701 1408 702 702 1408 702 702 1409 701 701 1409 703 703 1409 702 702 1410 703 703 1410 704 704 1410 704 704 1411 703 703 1411 709 709 1411 704 704 1412 709 709 1412 705 705 1412 705 705 1413 709 709 1413 707 707 1413 705 705 1414 707 707 1414 693 693 1414 693 693 1415 707 707 1415 94 94 1415 91 91 1416 93 93 1416 706 706 1416 706 706 1417 93 93 1417 707 707 1417 706 706 1418 707 707 1418 708 708 1418 708 708 1419 707 707 1419 709 709 1419 708 708 1420 709 709 1420 534 534 1420 534 534 1421 709 709 1421 703 703 1421 534 534 1422 703 703 1422 533 533 1422 533 533 1423 703 703 1423 701 701 1423 533 533 1424 701 701 1424 710 710 1424 710 710 1425 701 701 1425 700 700 1425 710 710 1426 700 700 1426 711 711 1426 711 711 1427 700 700 1427 118 118 1427 536 536 1428 89 89 1428 706 706 1428 706 706 1429 89 89 1429 712 712 1429 706 706 1430 712 712 1430 91 91 1430 87 87 1431 88 88 1431 722 722 1431 722 722 1432 88 88 1432 536 536 1432 722 722 1433 536 536 1433 713 713 1433 713 713 1434 536 536 1434 535 535 1434 713 713 1435 535 535 1435 714 714 1435 714 714 1436 535 535 1436 715 715 1436 714 714 1437 715 715 1437 716 716 1437 716 716 1438 715 715 1438 532 532 1438 716 716 1439 532 532 1439 717 717 1439 717 717 1440 532 532 1440 719 719 1440 717 717 1441 719 719 1441 718 718 1441 718 718 1442 719 719 1442 119 119 1442 718 718 1443 720 720 1443 717 717 1443 717 717 1444 720 720 1444 539 539 1444 717 717 1445 539 539 1445 716 716 1445 716 716 1446 539 539 1446 540 540 1446 716 716 1447 540 540 1447 714 714 1447 714 714 1448 540 540 1448 541 541 1448 714 714 1449 541 541 1449 713 713 1449 713 713 1450 541 541 1450 721 721 1450 713 713 1451 721 721 1451 722 722 1451 722 722 1452 721 721 1452 725 725 1452 722 722 1453 725 725 1453 87 87 1453 87 87 1454 725 725 1454 723 723 1454 727 727 1455 724 724 1455 725 725 1455 725 725 1456 724 724 1456 84 84 1456 725 725 1457 84 84 1457 723 723 1457 81 81 1458 491 491 1458 737 737 1458 737 737 1459 491 491 1459 727 727 1459 737 737 1460 727 727 1460 726 726 1460 726 726 1461 727 727 1461 728 728 1461 726 726 1462 728 728 1462 729 729 1462 729 729 1463 728 728 1463 542 542 1463 729 729 1464 542 542 1464 730 730 1464 730 730 1465 542 542 1465 731 731 1465 730 730 1466 731 731 1466 733 733 1466 733 733 1467 731 731 1467 538 538 1467 733 733 1468 538 538 1468 732 732 1468 732 732 1469 538 538 1469 537 537 1469 732 732 1470 746 746 1470 733 733 1470 733 733 1471 746 746 1471 734 734 1471 733 733 1472 734 734 1472 730 730 1472 730 730 1473 734 734 1473 735 735 1473 730 730 1474 735 735 1474 729 729 1474 729 729 1475 735 735 1475 736 736 1475 729 729 1476 736 736 1476 726 726 1476 726 726 1477 736 736 1477 741 741 1477 726 726 1478 741 741 1478 737 737 1478 737 737 1479 741 741 1479 738 738 1479 737 737 1480 738 738 1480 81 81 1480 81 81 1481 738 738 1481 80 80 1481 747 747 1482 78 78 1482 739 739 1482 739 739 1483 78 78 1483 738 738 1483 739 739 1484 738 738 1484 740 740 1484 740 740 1485 738 738 1485 741 741 1485 740 740 1486 741 741 1486 742 742 1486 742 742 1487 741 741 1487 736 736 1487 742 742 1488 736 736 1488 743 743 1488 743 743 1489 736 736 1489 735 735 1489 743 743 1490 735 735 1490 744 744 1490 744 744 1491 735 735 1491 734 734 1491 744 744 1492 734 734 1492 745 745 1492 745 745 1493 734 734 1493 746 746 1493 749 749 1494 73 73 1494 739 739 1494 739 739 1495 73 73 1495 75 75 1495 739 739 1496 75 75 1496 747 747 1496 71 71 1497 490 490 1497 748 748 1497 748 748 1498 490 490 1498 749 749 1498 748 748 1499 749 749 1499 761 761 1499 761 761 1500 749 749 1500 544 544 1500 761 761 1501 544 544 1501 750 750 1501 750 750 1502 544 544 1502 543 543 1502 750 750 1503 543 543 1503 751 751 1503 751 751 1504 543 543 1504 753 753 1504 751 751 1505 753 753 1505 752 752 1505 752 752 1506 753 753 1506 754 754 1506 752 752 1507 754 754 1507 756 756 1507 756 756 1508 754 754 1508 755 755 1508 756 756 1509 757 757 1509 752 752 1509 752 752 1510 757 757 1510 758 758 1510 752 752 1511 758 758 1511 751 751 1511 751 751 1512 758 758 1512 759 759 1512 751 751 1513 759 759 1513 750 750 1513 750 750 1514 759 759 1514 760 760 1514 750 750 1515 760 760 1515 761 761 1515 761 761 1516 760 760 1516 762 762 1516 761 761 1517 762 762 1517 748 748 1517 748 748 1518 762 762 1518 763 763 1518 748 748 1519 763 763 1519 71 71 1519 71 71 1520 763 763 1520 70 70 1520 68 68 1521 69 69 1521 770 770 1521 770 770 1522 69 69 1522 763 763 1522 770 770 1523 763 763 1523 771 771 1523 771 771 1524 763 763 1524 762 762 1524 771 771 1525 762 762 1525 764 764 1525 764 764 1526 762 762 1526 760 760 1526 764 764 1527 760 760 1527 765 765 1527 765 765 1528 760 760 1528 759 759 1528 765 765 1529 759 759 1529 766 766 1529 766 766 1530 759 759 1530 758 758 1530 766 766 1531 758 758 1531 767 767 1531 767 767 1532 758 758 1532 757 757 1532 779 779 1533 768 768 1533 769 769 1533 769 769 1534 768 768 1534 770 770 1534 769 769 1535 770 770 1535 778 778 1535 778 778 1536 770 770 1536 771 771 1536 778 778 1537 771 771 1537 776 776 1537 776 776 1538 771 771 1538 764 764 1538 776 776 1539 764 764 1539 774 774 1539 774 774 1540 764 764 1540 765 765 1540 774 774 1541 765 765 1541 772 772 1541 772 772 1542 765 765 1542 766 766 1542 772 772 1543 766 766 1543 120 120 1543 120 120 1544 766 766 1544 767 767 1544 120 120 1545 123 123 1545 772 772 1545 772 772 1546 123 123 1546 773 773 1546 772 772 1547 773 773 1547 774 774 1547 774 774 1548 773 773 1548 775 775 1548 774 774 1549 775 775 1549 776 776 1549 776 776 1550 775 775 1550 777 777 1550 776 776 1551 777 777 1551 778 778 1551 778 778 1552 777 777 1552 783 783 1552 778 778 1553 783 783 1553 769 769 1553 769 769 1554 783 783 1554 489 489 1554 769 769 1555 489 489 1555 779 779 1555 779 779 1556 489 489 1556 66 66 1556 63 63 1557 780 780 1557 781 781 1557 781 781 1558 780 780 1558 489 489 1558 781 781 1559 489 489 1559 782 782 1559 782 782 1560 489 489 1560 783 783 1560 782 782 1561 783 783 1561 784 784 1561 784 784 1562 783 783 1562 777 777 1562 784 784 1563 777 777 1563 546 546 1563 546 546 1564 777 777 1564 775 775 1564 546 546 1565 775 775 1565 545 545 1565 545 545 1566 775 775 1566 773 773 1566 545 545 1567 773 773 1567 785 785 1567 785 785 1568 773 773 1568 123 123 1568 788 788 1569 61 61 1569 781 781 1569 781 781 1570 61 61 1570 786 786 1570 781 781 1571 786 786 1571 63 63 1571 57 57 1572 58 58 1572 787 787 1572 787 787 1573 58 58 1573 788 788 1573 787 787 1574 788 788 1574 789 789 1574 789 789 1575 788 788 1575 790 790 1575 789 789 1576 790 790 1576 798 798 1576 798 798 1577 790 790 1577 791 791 1577 798 798 1578 791 791 1578 797 797 1578 797 797 1579 791 791 1579 792 792 1579 797 797 1580 792 792 1580 794 794 1580 794 794 1581 792 792 1581 793 793 1581 794 794 1582 793 793 1582 121 121 1582 121 121 1583 793 793 1583 122 122 1583 121 121 1584 795 795 1584 794 794 1584 794 794 1585 795 795 1585 796 796 1585 794 794 1586 796 796 1586 797 797 1586 797 797 1587 796 796 1587 804 804 1587 797 797 1588 804 804 1588 798 798 1588 798 798 1589 804 804 1589 803 803 1589 798 798 1590 803 803 1590 789 789 1590 789 789 1591 803 803 1591 802 802 1591 789 789 1592 802 802 1592 787 787 1592 787 787 1593 802 802 1593 799 799 1593 787 787 1594 799 799 1594 57 57 1594 57 57 1595 799 799 1595 56 56 1595 53 53 1596 800 800 1596 807 807 1596 807 807 1597 800 800 1597 799 799 1597 807 807 1598 799 799 1598 801 801 1598 801 801 1599 799 799 1599 802 802 1599 801 801 1600 802 802 1600 809 809 1600 809 809 1601 802 802 1601 803 803 1601 809 809 1602 803 803 1602 811 811 1602 811 811 1603 803 803 1603 804 804 1603 811 811 1604 804 804 1604 812 812 1604 812 812 1605 804 804 1605 796 796 1605 812 812 1606 796 796 1606 124 124 1606 124 124 1607 796 796 1607 795 795 1607 805 805 1608 488 488 1608 806 806 1608 806 806 1609 488 488 1609 807 807 1609 806 806 1610 807 807 1610 817 817 1610 817 817 1611 807 807 1611 801 801 1611 817 817 1612 801 801 1612 808 808 1612 808 808 1613 801 801 1613 809 809 1613 808 808 1614 809 809 1614 815 815 1614 815 815 1615 809 809 1615 811 811 1615 815 815 1616 811 811 1616 810 810 1616 810 810 1617 811 811 1617 812 812 1617 810 810 1618 812 812 1618 813 813 1618 813 813 1619 812 812 1619 124 124 1619 813 813 1620 814 814 1620 810 810 1620 810 810 1621 814 814 1621 547 547 1621 810 810 1622 547 547 1622 815 815 1622 815 815 1623 547 547 1623 816 816 1623 815 815 1624 816 816 1624 808 808 1624 808 808 1625 816 816 1625 818 818 1625 808 808 1626 818 818 1626 817 817 1626 817 817 1627 818 818 1627 819 819 1627 817 817 1628 819 819 1628 806 806 1628 806 806 1629 819 819 1629 549 549 1629 806 806 1630 549 549 1630 805 805 1630 805 805 1631 549 549 1631 820 820 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.STL b/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.STL new file mode 100755 index 0000000..e60d4d8 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.dae b/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.dae new file mode 100755 index 0000000..25beafa --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/left_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:38:01 2016 GMT + Tue Jan 19 20:38:01 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 -0.0010504 0.00992115 0.000683737 0.00090033 0.00992115 -0.000871921 0.00190833 0.00929776 -0.00314799 0.00155056 0.00968583 -0.00194434 0.00229522 0.00929776 -0.00287811 0.000649718 0.00992115 -0.00107178 0.00100666 0.00968583 -0.00227405 0.00149011 0.00929776 -0.00336618 0.00128919 0.00968583 -0.00212665 0.00249738 0.00876307 -0.00411968 0.000356608 0.00992115 -0.00120153 0.000507328 0.00992115 -0.00114606 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000200032 0.00992115 -0.00123727 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 4.01713e-05 0.00992115 -0.00125269 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 -0.000120349 0.00992115 -0.00124754 -0.0002388 0.00968583 -0.00247541 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.00567642 0.00535827 0.00625037 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000278893 0.00992115 -0.00122191 -0.000858888 0.00968583 -0.00233388 -0.000553387 0.00968583 -0.00242455 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -0.000432857 0.00992115 -0.00117621 -0.00170272 0.00929776 -0.00326379 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000579714 0.00992115 -0.0011112 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.000717052 0.00992115 -0.00102795 -0.00115029 0.00968583 -0.00220488 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00167194 0.00968583 -0.001841 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.0010504 0.00992115 -0.000683737 -0.00308521 0.00929776 -0.00200825 -0.00403752 0.00876307 -0.00262813 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00118948 0.00992115 -0.000394935 -0.00112921 0.00992115 -0.000543801 -0.00236021 0.00968583 -0.000783642 -0.00349371 0.00929776 -0.00115999 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00457211 0.00876307 -0.00151805 -0.00434045 0.00876307 -0.00209025 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00123022 0.00992115 -0.000239585 -0.00244104 0.00968583 -0.000475392 -0.00361336 0.00929776 -0.000703702 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 0.000627905 -0.00190781 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00932245 -0.00187381 -0.00309527 -0.00888141 -0.00425779 -0.00172965 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00671923 -0.00728969 -0.00130857 -0.00125076 0.00992115 -8.03013e-05 -0.00248179 0.00968583 -0.000159336 -0.00480764 0.00876307 -0.000308661 -0.0047287 0.00876307 -0.000920914 -0.00576946 0.00809017 -0.0011236 -0.00683141 0.00728969 -0.000438591 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.0076893 0.00637424 -0.00049367 -0.00828758 0.00535827 -0.00161401 -0.00842593 0.00535827 -0.000540963 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00980269 0.00187381 -0.000629354 -0.00964173 0.00187381 -0.00187773 -0.00995976 0.000627905 -0.000639438 -0.00964173 -0.00187381 -0.00187773 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00933518 -0.00309017 -0.00181803 -0.00828758 -0.00535827 -0.00161401 -0.00683141 -0.00728969 -0.000438591 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 8.03013e-05 6.98426e-19 0.01 5.55111e-19 -0.00248179 0.00968583 0.000159336 -0.00367368 0.00929776 0.000235858 -0.00367368 0.00929776 -0.000235858 -0.00480764 0.00876307 0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00949102 0.00309017 -0.000609344 -0.00995976 -0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00980269 -0.00187381 -0.000629354 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.0076893 -0.00637424 -0.00049367 -0.00586578 -0.00809017 0.000376595 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00123022 0.00992115 0.000239585 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 6.98426e-19 -0.01 -5.55111e-19 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.00123022 -0.00992115 0.000239585 -0.00367368 -0.00929776 0.000235858 -0.00367368 -0.00929776 -0.000235858 -0.0047287 -0.00876307 -0.000920914 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00264442 0.00929776 -0.00256098 0.00346067 0.00876307 -0.00335148 0.0029502 0.00929776 -0.00220179 0.00216688 0.00968583 -0.00122036 0.00109205 0.00992115 -0.000615032 0.00116173 0.00992115 -0.000470334 -0.00361336 -0.00929776 -0.000703702 -0.00349371 -0.00929776 -0.00115999 -0.00457211 -0.00876307 -0.00151805 -0.00529576 -0.00809017 -0.0025503 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00320754 0.00929776 -0.00180645 0.00230515 0.00968583 -0.000933251 0.00121234 0.00992115 -0.000317913 0.00240556 0.00968583 -0.000630813 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 7.04223e-19 0.00341221 0.00929776 -0.00138145 0.00356085 0.00929776 -0.000933765 0.00419761 0.00876307 -0.00236405 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00123022 -0.00992115 -0.000239585 -0.00125076 -0.00992115 -8.03013e-05 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 8.42229e-19 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00465998 0.00876307 -0.00122199 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00224062 -0.00968583 -0.00107902 -0.00118948 -0.00992115 -0.000394935 0.00121234 0.00992115 0.000317913 0.00368125 0.00929776 9.66952e-19 0.00365102 0.00929776 -0.000470747 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00481754 0.00876307 1.07643e-18 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00112921 -0.00992115 -0.000543801 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.0058296 0.00809017 -0.000751643 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.00189364 -0.00968583 -0.00161208 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00587785 0.00809017 1.16892e-18 0.00684547 0.00728969 1.24299e-18 0.00678927 0.00728969 -0.000875379 0.00764187 0.00637424 -0.00098531 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.0014228 -0.00968583 -0.00203969 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00770513 0.00637424 1.29745e-18 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000858888 -0.00968583 -0.00233388 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 1.33145e-18 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000432857 -0.00992115 -0.00117621 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00904827 0.00425779 1.34445e-18 0.00943248 0.00309017 -0.00121618 0.00974223 0.00187381 -0.00125612 0.00965386 0.000627905 -0.00253154 0.00950161 0.00187381 -0.00249162 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000278893 -0.00992115 -0.00122191 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00951057 0.00309017 1.33625e-18 0.00982287 0.00187381 1.30697e-18 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 -0.000120349 -0.00992115 -0.00124754 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00998027 0.000627905 1.25709e-18 0.00989833 0.000627905 -0.00127625 0.00989833 -0.000627905 -0.00127625 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 7.9709e-05 -0.00968583 -0.00248562 0.000396909 -0.00968583 -0.00245502 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000200032 -0.00992115 -0.00123727 4.01713e-05 -0.00992115 -0.00125269 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00982287 -0.00187381 1.09894e-18 0.00998027 -0.000627905 1.18737e-18 0.00919952 -0.00309017 -0.0024124 0.00943248 -0.00309017 -0.00121618 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.000707591 -0.00968583 -0.00238411 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00951057 -0.00309017 9.93169e-19 0.00897398 -0.00425779 -0.00115707 0.00875235 -0.00425779 -0.00229514 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00904827 -0.00425779 8.71738e-19 0.00837396 -0.00535827 -0.0010797 0.00816714 -0.00535827 -0.00214168 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 0.000649718 -0.00992115 -0.00107178 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00745314 -0.00637424 -0.00195444 0.00662159 -0.00728969 -0.00173639 0.00386084 -0.00876307 -0.00288142 0.0029502 -0.00929776 -0.00220179 0.00264442 -0.00929776 -0.00256098 0.00178646 -0.00968583 -0.00173009 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 7.3656e-19 0.00770513 -0.00637424 5.89765e-19 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00544828 -0.00809017 -0.00220576 0.00446546 -0.00876307 -0.00180786 0.00419761 -0.00876307 -0.00236405 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 0.00090033 -0.00992115 -0.000871921 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00678927 -0.00728969 -0.000875379 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00684547 -0.00728969 4.3367e-19 0.0058296 -0.00809017 -0.000751643 0.00477798 -0.00876307 -0.000616053 0.00230515 -0.00968583 -0.000933251 0.00109205 -0.00992115 -0.000615032 0.00587785 -0.00809017 2.70735e-19 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00481754 -0.00876307 1.0353e-19 0.00368125 -0.00929776 -6.53071e-20 0.00121234 -0.00992115 -0.000317913 0.00240556 -0.00968583 -0.000630813 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00246648 -0.00968583 -0.000318018 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 -2.33114e-19 0.00125333 -0.00992115 -3.97245e-19 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 0.000159336 -0.00248179 -0.00968583 -0.000159336 -0.00557841 -0.00809017 -0.00185216 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00480764 -0.00876307 0.000308661 -0.00480764 -0.00876307 -0.000308661 -0.00586578 -0.00809017 -0.000376595 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.0073126 -0.00637424 -0.00242795 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00199303 0.00968583 -0.00148744 0.00178646 0.00968583 -0.00173009 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 0.00124304 -0.00992115 0.000160273 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 -3.55661e-18 0.0640702 0.997945 3.55661e-18 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1134 1134 0 0 0 0 391 391 0 1092 1092 1 4 4 1 1 1 1 1 1 2 4 4 2 201 201 2 2 2 3 201 201 3 4 4 3 3 3 4 425 425 4 1176 1176 4 2 2 5 4 4 5 6 6 5 6 6 6 4 4 6 1092 1092 6 6 6 7 1092 1092 7 7 7 7 8 8 8 201 201 8 2 2 8 8 8 9 2 2 9 11 11 9 11 11 10 2 2 10 6 6 10 11 11 11 6 6 11 5 5 11 5 5 12 6 6 12 7 7 12 5 5 13 7 7 13 12 12 13 14 14 14 201 201 14 8 8 14 14 14 15 8 8 15 9 9 15 9 9 16 8 8 16 11 11 16 9 9 17 11 11 17 10 10 17 10 10 18 11 11 18 5 5 18 10 10 19 5 5 19 15 15 19 15 15 20 5 5 20 12 12 20 15 15 21 12 12 21 1088 1088 21 13 13 22 201 201 22 14 14 22 13 13 23 14 14 23 18 18 23 18 18 24 14 14 24 9 9 24 18 18 25 9 9 25 19 19 25 19 19 26 9 9 26 10 10 26 19 19 27 10 10 27 22 22 27 22 22 28 10 10 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1088 1088 30 16 16 31 1088 1088 31 1087 1087 31 17 17 32 201 201 32 13 13 32 17 17 33 13 13 33 26 26 33 26 26 34 13 13 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1087 1087 42 30 30 43 1087 1087 43 23 23 43 24 24 44 201 201 44 17 17 44 24 24 45 17 17 45 25 25 45 25 25 46 17 17 46 26 26 46 25 25 47 26 26 47 33 33 47 33 33 48 26 26 48 27 27 48 33 33 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 36 36 53 36 36 54 21 21 54 30 30 54 36 36 55 30 30 55 38 38 55 38 38 56 30 30 56 23 23 56 38 38 57 23 23 57 1086 1086 57 31 31 58 201 201 58 24 24 58 1118 1118 59 407 407 59 39 39 59 31 31 60 24 24 60 32 32 60 32 32 61 24 24 61 25 25 61 32 32 62 25 25 62 40 40 62 40 40 63 25 25 63 33 33 63 40 40 64 33 33 64 42 42 64 42 42 65 33 33 65 28 28 65 42 42 66 28 28 66 34 34 66 34 34 67 28 28 67 29 29 67 34 34 68 29 29 68 35 35 68 35 35 69 29 29 69 36 36 69 35 35 70 36 36 70 47 47 70 47 47 71 36 36 71 38 38 71 47 47 72 38 38 72 37 37 72 37 37 73 38 38 73 1086 1086 73 37 37 74 1086 1086 74 1084 1084 74 49 49 75 201 201 75 31 31 75 39 39 76 408 408 76 392 392 76 49 49 77 31 31 77 51 51 77 51 51 78 31 31 78 32 32 78 51 51 79 32 32 79 41 41 79 41 41 80 32 32 80 40 40 80 41 41 81 40 40 81 52 52 81 52 52 82 40 40 82 42 42 82 52 52 83 42 42 83 43 43 83 43 43 84 42 42 84 34 34 84 43 43 85 34 34 85 44 44 85 44 44 86 34 34 86 35 35 86 44 44 87 35 35 87 45 45 87 45 45 88 35 35 88 47 47 88 45 45 89 47 47 89 46 46 89 46 46 90 47 47 90 37 37 90 46 46 91 37 37 91 48 48 91 48 48 92 37 37 92 1084 1084 92 48 48 93 1084 1084 93 1083 1083 93 56 56 94 201 201 94 49 49 94 392 392 95 375 375 95 1121 1121 95 56 56 96 49 49 96 50 50 96 50 50 97 49 49 97 51 51 97 50 50 98 51 51 98 58 58 98 58 58 99 51 51 99 41 41 99 58 58 100 41 41 100 59 59 100 59 59 101 41 41 101 52 52 101 59 59 102 52 52 102 61 61 102 61 61 103 52 52 103 43 43 103 61 61 104 43 43 104 53 53 104 53 53 105 43 43 105 44 44 105 53 53 106 44 44 106 63 63 106 63 63 107 44 44 107 45 45 107 63 63 108 45 45 108 54 54 108 54 54 109 45 45 109 46 46 109 54 54 110 46 46 110 64 64 110 64 64 111 46 46 111 48 48 111 64 64 112 48 48 112 66 66 112 66 66 113 48 48 113 1083 1083 113 66 66 114 1083 1083 114 55 55 114 69 69 115 201 201 115 56 56 115 1121 1121 116 376 376 116 1122 1122 116 69 69 117 56 56 117 73 73 117 73 73 118 56 56 118 50 50 118 73 73 119 50 50 119 57 57 119 57 57 120 50 50 120 58 58 120 57 57 121 58 58 121 60 60 121 60 60 122 58 58 122 59 59 122 60 60 123 59 59 123 76 76 123 76 76 124 59 59 124 61 61 124 76 76 125 61 61 125 77 77 125 77 77 126 61 61 126 53 53 126 77 77 127 53 53 127 62 62 127 62 62 128 53 53 128 63 63 128 62 62 129 63 63 129 79 79 129 79 79 130 63 63 130 54 54 130 79 79 131 54 54 131 81 81 131 81 81 132 54 54 132 64 64 132 81 81 133 64 64 133 65 65 133 65 65 134 64 64 134 66 66 134 65 65 135 66 66 135 67 67 135 67 67 136 66 66 136 55 55 136 67 67 137 55 55 137 68 68 137 72 72 138 201 201 138 69 69 138 1122 1122 139 70 70 139 71 71 139 72 72 140 69 69 140 86 86 140 86 86 141 69 69 141 73 73 141 86 86 142 73 73 142 88 88 142 88 88 143 73 73 143 57 57 143 88 88 144 57 57 144 74 74 144 74 74 145 57 57 145 60 60 145 74 74 146 60 60 146 75 75 146 75 75 147 60 60 147 76 76 147 75 75 148 76 76 148 90 90 148 90 90 149 76 76 149 77 77 149 90 90 150 77 77 150 78 78 150 78 78 151 77 77 151 62 62 151 78 78 152 62 62 152 92 92 152 92 92 153 62 62 153 79 79 153 92 92 154 79 79 154 80 80 154 80 80 155 79 79 155 81 81 155 80 80 156 81 81 156 82 82 156 82 82 157 81 81 157 65 65 157 82 82 158 65 65 158 83 83 158 83 83 159 65 65 159 67 67 159 83 83 160 67 67 160 84 84 160 84 84 161 67 67 161 68 68 161 84 84 162 68 68 162 97 97 162 98 98 163 201 201 163 72 72 163 71 71 164 338 338 164 85 85 164 98 98 165 72 72 165 99 99 165 99 99 166 72 72 166 86 86 166 99 99 167 86 86 167 87 87 167 87 87 168 86 86 168 88 88 168 87 87 169 88 88 169 100 100 169 100 100 170 88 88 170 74 74 170 100 100 171 74 74 171 101 101 171 101 101 172 74 74 172 75 75 172 101 101 173 75 75 173 89 89 173 89 89 174 75 75 174 90 90 174 89 89 175 90 90 175 91 91 175 91 91 176 90 90 176 78 78 176 91 91 177 78 78 177 103 103 177 103 103 178 78 78 178 92 92 178 103 103 179 92 92 179 105 105 179 105 105 180 92 92 180 80 80 180 105 105 181 80 80 181 93 93 181 93 93 182 80 80 182 82 82 182 93 93 183 82 82 183 94 94 183 94 94 184 82 82 184 83 83 184 94 94 185 83 83 185 95 95 185 95 95 186 83 83 186 84 84 186 95 95 187 84 84 187 96 96 187 96 96 188 84 84 188 97 97 188 96 96 189 97 97 189 1080 1080 189 109 109 190 201 201 190 98 98 190 85 85 191 337 337 191 1124 1124 191 109 109 192 98 98 192 111 111 192 111 111 193 98 98 193 99 99 193 111 111 194 99 99 194 112 112 194 112 112 195 99 99 195 87 87 195 112 112 196 87 87 196 113 113 196 113 113 197 87 87 197 100 100 197 113 113 198 100 100 198 116 116 198 116 116 199 100 100 199 101 101 199 116 116 200 101 101 200 102 102 200 102 102 201 101 101 201 89 89 201 102 102 202 89 89 202 117 117 202 117 117 203 89 89 203 91 91 203 117 117 204 91 91 204 119 119 204 119 119 205 91 91 205 103 103 205 119 119 206 103 103 206 104 104 206 104 104 207 103 103 207 105 105 207 104 104 208 105 105 208 123 123 208 123 123 209 105 105 209 93 93 209 123 123 210 93 93 210 106 106 210 106 106 211 93 93 211 94 94 211 106 106 212 94 94 212 107 107 212 107 107 213 94 94 213 95 95 213 107 107 214 95 95 214 125 125 214 125 125 215 95 95 215 96 96 215 125 125 216 96 96 216 108 108 216 108 108 217 96 96 217 1080 1080 217 108 108 218 1080 1080 218 1078 1078 218 126 126 219 201 201 219 109 109 219 1124 1124 220 329 329 220 1126 1126 220 126 126 221 109 109 221 110 110 221 110 110 222 109 109 222 111 111 222 110 110 223 111 111 223 127 127 223 127 127 224 111 111 224 112 112 224 127 127 225 112 112 225 128 128 225 128 128 226 112 112 226 113 113 226 128 128 227 113 113 227 114 114 227 114 114 228 113 113 228 116 116 228 114 114 229 116 116 229 115 115 229 115 115 230 116 116 230 102 102 230 115 115 231 102 102 231 118 118 231 118 118 232 102 102 232 117 117 232 118 118 233 117 117 233 120 120 233 120 120 234 117 117 234 119 119 234 120 120 235 119 119 235 131 131 235 131 131 236 119 119 236 104 104 236 131 131 237 104 104 237 121 121 237 121 121 238 104 104 238 123 123 238 121 121 239 123 123 239 122 122 239 122 122 240 123 123 240 106 106 240 122 122 241 106 106 241 132 132 241 132 132 242 106 106 242 107 107 242 132 132 243 107 107 243 124 124 243 124 124 244 107 107 244 125 125 244 124 124 245 125 125 245 133 133 245 133 133 246 125 125 246 108 108 246 133 133 247 108 108 247 135 135 247 135 135 248 108 108 248 1078 1078 248 135 135 249 1078 1078 249 136 136 249 138 138 250 201 201 250 126 126 250 1126 1126 251 309 309 251 1127 1127 251 138 138 252 126 126 252 141 141 252 141 141 253 126 126 253 110 110 253 141 141 254 110 110 254 142 142 254 142 142 255 110 110 255 127 127 255 142 142 256 127 127 256 144 144 256 144 144 257 127 127 257 128 128 257 144 144 258 128 128 258 146 146 258 146 146 259 128 128 259 114 114 259 146 146 260 114 114 260 148 148 260 148 148 261 114 114 261 115 115 261 148 148 262 115 115 262 149 149 262 149 149 263 115 115 263 118 118 263 149 149 264 118 118 264 150 150 264 150 150 265 118 118 265 120 120 265 150 150 266 120 120 266 129 129 266 129 129 267 120 120 267 131 131 267 129 129 268 131 131 268 130 130 268 130 130 269 131 131 269 121 121 269 130 130 270 121 121 270 153 153 270 153 153 271 121 121 271 122 122 271 153 153 272 122 122 272 155 155 272 155 155 273 122 122 273 132 132 273 155 155 274 132 132 274 156 156 274 156 156 275 132 132 275 124 124 275 156 156 276 124 124 276 157 157 276 157 157 277 124 124 277 133 133 277 157 157 278 133 133 278 134 134 278 134 134 279 133 133 279 135 135 279 134 134 280 135 135 280 159 159 280 159 159 281 135 135 281 136 136 281 159 159 282 136 136 282 160 160 282 137 137 283 201 201 283 138 138 283 1127 1127 284 308 308 284 161 161 284 137 137 285 138 138 285 139 139 285 139 139 286 138 138 286 141 141 286 139 139 287 141 141 287 140 140 287 140 140 288 141 141 288 142 142 288 140 140 289 142 142 289 143 143 289 143 143 290 142 142 290 144 144 290 143 143 291 144 144 291 145 145 291 145 145 292 144 144 292 146 146 292 145 145 293 146 146 293 147 147 293 147 147 294 146 146 294 148 148 294 147 147 295 148 148 295 166 166 295 166 166 296 148 148 296 149 149 296 166 166 297 149 149 297 167 167 297 167 167 298 149 149 298 150 150 298 167 167 299 150 150 299 168 168 299 168 168 300 150 150 300 129 129 300 168 168 301 129 129 301 151 151 301 151 151 302 129 129 302 130 130 302 151 151 303 130 130 303 152 152 303 152 152 304 130 130 304 153 153 304 152 152 305 153 153 305 154 154 305 154 154 306 153 153 306 155 155 306 154 154 307 155 155 307 171 171 307 171 171 308 155 155 308 156 156 308 171 171 309 156 156 309 172 172 309 172 172 310 156 156 310 157 157 310 172 172 311 157 157 311 174 174 311 174 174 312 157 157 312 134 134 312 174 174 313 134 134 313 158 158 313 158 158 314 134 134 314 159 159 314 158 158 315 159 159 315 175 175 315 175 175 316 159 159 316 160 160 316 175 175 317 160 160 317 1077 1077 317 163 163 318 201 201 318 137 137 318 161 161 319 302 302 319 162 162 319 163 163 320 137 137 320 164 164 320 164 164 321 137 137 321 139 139 321 164 164 322 139 139 322 165 165 322 165 165 323 139 139 323 140 140 323 165 165 324 140 140 324 180 180 324 180 180 325 140 140 325 143 143 325 180 180 326 143 143 326 181 181 326 181 181 327 143 143 327 145 145 327 181 181 328 145 145 328 183 183 328 183 183 329 145 145 329 147 147 329 183 183 330 147 147 330 184 184 330 184 184 331 147 147 331 166 166 331 184 184 332 166 166 332 186 186 332 186 186 333 166 166 333 167 167 333 186 186 334 167 167 334 188 188 334 188 188 335 167 167 335 168 168 335 188 188 336 168 168 336 189 189 336 189 189 337 168 168 337 151 151 337 189 189 338 151 151 338 191 191 338 191 191 339 151 151 339 152 152 339 191 191 340 152 152 340 169 169 340 169 169 341 152 152 341 154 154 341 169 169 342 154 154 342 170 170 342 170 170 343 154 154 343 171 171 343 170 170 344 171 171 344 193 193 344 193 193 345 171 171 345 172 172 345 193 193 346 172 172 346 196 196 346 196 196 347 172 172 347 174 174 347 196 196 348 174 174 348 173 173 348 173 173 349 174 174 349 158 158 349 173 173 350 158 158 350 197 197 350 197 197 351 158 158 351 175 175 351 197 197 352 175 175 352 199 199 352 199 199 353 175 175 353 1077 1077 353 199 199 354 1077 1077 354 176 176 354 177 177 355 201 201 355 163 163 355 162 162 356 290 290 356 289 289 356 177 177 357 163 163 357 178 178 357 178 178 358 163 163 358 164 164 358 178 178 359 164 164 359 204 204 359 204 204 360 164 164 360 165 165 360 204 204 361 165 165 361 179 179 361 179 179 362 165 165 362 180 180 362 179 179 363 180 180 363 206 206 363 206 206 364 180 180 364 181 181 364 206 206 365 181 181 365 182 182 365 182 182 366 181 181 366 183 183 366 182 182 367 183 183 367 185 185 367 185 185 368 183 183 368 184 184 368 185 185 369 184 184 369 187 187 369 187 187 370 184 184 370 186 186 370 187 187 371 186 186 371 209 209 371 209 209 372 186 186 372 188 188 372 209 209 373 188 188 373 210 210 373 210 210 374 188 188 374 189 189 374 210 210 375 189 189 375 190 190 375 190 190 376 189 189 376 191 191 376 190 190 377 191 191 377 192 192 377 192 192 378 191 191 378 169 169 378 192 192 379 169 169 379 211 211 379 211 211 380 169 169 380 170 170 380 211 211 381 170 170 381 213 213 381 213 213 382 170 170 382 193 193 382 213 213 383 193 193 383 194 194 383 194 194 384 193 193 384 196 196 384 194 194 385 196 196 385 195 195 385 195 195 386 196 196 386 173 173 386 195 195 387 173 173 387 214 214 387 214 214 388 173 173 388 197 197 388 214 214 389 197 197 389 216 216 389 216 216 390 197 197 390 199 199 390 216 216 391 199 199 391 198 198 391 198 198 392 199 199 392 176 176 392 198 198 393 176 176 393 1074 1074 393 200 200 394 201 201 394 177 177 394 289 289 395 291 291 395 1131 1131 395 200 200 396 177 177 396 202 202 396 202 202 397 177 177 397 178 178 397 202 202 398 178 178 398 203 203 398 203 203 399 178 178 399 204 204 399 203 203 400 204 204 400 205 205 400 205 205 401 204 204 401 179 179 401 205 205 402 179 179 402 223 223 402 223 223 403 179 179 403 206 206 403 223 223 404 206 206 404 224 224 404 224 224 405 206 206 405 182 182 405 224 224 406 182 182 406 225 225 406 225 225 407 182 182 407 185 185 407 225 225 408 185 185 408 207 207 408 207 207 409 185 185 409 187 187 409 207 207 410 187 187 410 208 208 410 208 208 411 187 187 411 209 209 411 208 208 412 209 209 412 227 227 412 227 227 413 209 209 413 210 210 413 227 227 414 210 210 414 230 230 414 230 230 415 210 210 415 190 190 415 230 230 416 190 190 416 233 233 416 233 233 417 190 190 417 192 192 417 233 233 418 192 192 418 235 235 418 235 235 419 192 192 419 211 211 419 235 235 420 211 211 420 212 212 420 212 212 421 211 211 421 213 213 421 212 212 422 213 213 422 238 238 422 238 238 423 213 213 423 194 194 423 238 238 424 194 194 424 239 239 424 239 239 425 194 194 425 195 195 425 239 239 426 195 195 426 240 240 426 240 240 427 195 195 427 214 214 427 240 240 428 214 214 428 215 215 428 215 215 429 214 214 429 216 216 429 215 215 430 216 216 430 244 244 430 244 244 431 216 216 431 198 198 431 244 244 432 198 198 432 217 217 432 217 217 433 198 198 433 1074 1074 433 217 217 434 1074 1074 434 1072 1072 434 220 220 435 201 201 435 200 200 435 1131 1131 436 218 218 436 219 219 436 220 220 437 200 200 437 247 247 437 247 247 438 200 200 438 202 202 438 247 247 439 202 202 439 221 221 439 221 221 440 202 202 440 203 203 440 221 221 441 203 203 441 222 222 441 222 222 442 203 203 442 205 205 442 222 222 443 205 205 443 249 249 443 249 249 444 205 205 444 223 223 444 249 249 445 223 223 445 250 250 445 250 250 446 223 223 446 224 224 446 250 250 447 224 224 447 226 226 447 226 226 448 224 224 448 225 225 448 226 226 449 225 225 449 252 252 449 252 252 450 225 225 450 207 207 450 252 252 451 207 207 451 254 254 451 254 254 452 207 207 452 208 208 452 254 254 453 208 208 453 228 228 453 228 228 454 208 208 454 227 227 454 228 228 455 227 227 455 229 229 455 229 229 456 227 227 456 230 230 456 229 229 457 230 230 457 231 231 457 231 231 458 230 230 458 233 233 458 231 231 459 233 233 459 232 232 459 232 232 460 233 233 460 235 235 460 232 232 461 235 235 461 234 234 461 234 234 462 235 235 462 212 212 462 234 234 463 212 212 463 236 236 463 236 236 464 212 212 464 238 238 464 236 236 465 238 238 465 237 237 465 237 237 466 238 238 466 239 239 466 237 237 467 239 239 467 241 241 467 241 241 468 239 239 468 240 240 468 241 241 469 240 240 469 242 242 469 242 242 470 240 240 470 215 215 470 242 242 471 215 215 471 243 243 471 243 243 472 215 215 472 244 244 472 243 243 473 244 244 473 245 245 473 245 245 474 244 244 474 217 217 474 245 245 475 217 217 475 246 246 475 246 246 476 217 217 476 1072 1072 476 246 246 477 1072 1072 477 1071 1071 477 1093 1093 478 201 201 478 220 220 478 219 219 479 283 283 479 1132 1132 479 1093 1093 480 220 220 480 1095 1095 480 1095 1095 481 220 220 481 247 247 481 1095 1095 482 247 247 482 1096 1096 482 1096 1096 483 247 247 483 221 221 483 1096 1096 484 221 221 484 248 248 484 248 248 485 221 221 485 222 222 485 248 248 486 222 222 486 1097 1097 486 1097 1097 487 222 222 487 249 249 487 1097 1097 488 249 249 488 1098 1098 488 1098 1098 489 249 249 489 250 250 489 1098 1098 490 250 250 490 251 251 490 251 251 491 250 250 491 226 226 491 251 251 492 226 226 492 1100 1100 492 1100 1100 493 226 226 493 252 252 493 1100 1100 494 252 252 494 253 253 494 253 253 495 252 252 495 254 254 495 253 253 496 254 254 496 1103 1103 496 1103 1103 497 254 254 497 228 228 497 1103 1103 498 228 228 498 255 255 498 255 255 499 228 228 499 229 229 499 255 255 500 229 229 500 256 256 500 256 256 501 229 229 501 231 231 501 256 256 502 231 231 502 1105 1105 502 1105 1105 503 231 231 503 232 232 503 1105 1105 504 232 232 504 257 257 504 257 257 505 232 232 505 234 234 505 257 257 506 234 234 506 258 258 506 258 258 507 234 234 507 236 236 507 258 258 508 236 236 508 1107 1107 508 1107 1107 509 236 236 509 237 237 509 1107 1107 510 237 237 510 1108 1108 510 1108 1108 511 237 237 511 241 241 511 1108 1108 512 241 241 512 259 259 512 259 259 513 241 241 513 242 242 513 259 259 514 242 242 514 260 260 514 260 260 515 242 242 515 243 243 515 260 260 516 243 243 516 1112 1112 516 1112 1112 517 243 243 517 245 245 517 1112 1112 518 245 245 518 261 261 518 261 261 519 245 245 519 246 246 519 261 261 520 246 246 520 262 262 520 262 262 521 246 246 521 1071 1071 521 262 262 522 1071 1071 522 1114 1114 522 424 424 523 201 201 523 1093 1093 523 1132 1132 524 263 263 524 280 280 524 1138 1138 525 264 264 525 1024 1024 525 1024 1024 526 264 264 526 1119 1119 526 1024 1024 527 1119 1119 527 1025 1025 527 1025 1025 528 1119 1119 528 1120 1120 528 1025 1025 529 1120 1120 529 265 265 529 265 265 530 1120 1120 530 266 266 530 265 265 531 266 266 531 268 268 531 268 268 532 266 266 532 267 267 532 268 268 533 267 267 533 269 269 533 269 269 534 267 267 534 1123 1123 534 269 269 535 1123 1123 535 1030 1030 535 1030 1030 536 1123 1123 536 270 270 536 1030 1030 537 270 270 537 1031 1031 537 1031 1031 538 270 270 538 271 271 538 1031 1031 539 271 271 539 1032 1032 539 1032 1032 540 271 271 540 272 272 540 1032 1032 541 272 272 541 1034 1034 541 1034 1034 542 272 272 542 1125 1125 542 1034 1034 543 1125 1125 543 1036 1036 543 1036 1036 544 1125 1125 544 1128 1128 544 1036 1036 545 1128 1128 545 273 273 545 273 273 546 1128 1128 546 1129 1129 546 273 273 547 1129 1129 547 275 275 547 275 275 548 1129 1129 548 274 274 548 275 275 549 274 274 549 1039 1039 549 1039 1039 550 274 274 550 1130 1130 550 1039 1039 551 1130 1130 551 1040 1040 551 1040 1040 552 1130 1130 552 276 276 552 1040 1040 553 276 276 553 1041 1041 553 1041 1041 554 276 276 554 277 277 554 1041 1041 555 277 277 555 1043 1043 555 1043 1043 556 277 277 556 278 278 556 1043 1043 557 278 278 557 1044 1044 557 1044 1044 558 278 278 558 1133 1133 558 1044 1044 559 1133 1133 559 279 279 559 279 279 560 1133 1133 560 1117 1117 560 279 279 561 1117 1117 561 1047 1047 561 0 0 562 1134 1134 562 280 280 562 280 280 563 263 263 563 0 0 563 0 0 564 263 263 564 281 281 564 0 0 565 281 281 565 391 391 565 1132 1132 566 283 283 566 263 263 566 263 263 567 283 283 567 282 282 567 263 263 568 282 282 568 281 281 568 281 281 569 282 282 569 286 286 569 281 281 570 286 286 570 391 391 570 219 219 571 218 218 571 283 283 571 283 283 572 218 218 572 284 284 572 283 283 573 284 284 573 282 282 573 282 282 574 284 284 574 285 285 574 282 282 575 285 285 575 286 286 575 286 286 576 285 285 576 287 287 576 286 286 577 287 287 577 391 391 577 1131 1131 578 291 291 578 218 218 578 218 218 579 291 291 579 293 293 579 218 218 580 293 293 580 284 284 580 284 284 581 293 293 581 295 295 581 284 284 582 295 295 582 285 285 582 285 285 583 295 295 583 288 288 583 285 285 584 288 288 584 287 287 584 287 287 585 288 288 585 297 297 585 287 287 586 297 297 586 391 391 586 289 289 587 290 290 587 291 291 587 291 291 588 290 290 588 292 292 588 291 291 589 292 292 589 293 293 589 293 293 590 292 292 590 294 294 590 293 293 591 294 294 591 295 295 591 295 295 592 294 294 592 296 296 592 295 295 593 296 296 593 288 288 593 288 288 594 296 296 594 299 299 594 288 288 595 299 299 595 297 297 595 297 297 596 299 299 596 301 301 596 297 297 597 301 301 597 391 391 597 162 162 598 302 302 598 290 290 598 290 290 599 302 302 599 303 303 599 290 290 600 303 303 600 292 292 600 292 292 601 303 303 601 304 304 601 292 292 602 304 304 602 294 294 602 294 294 603 304 304 603 305 305 603 294 294 604 305 305 604 296 296 604 296 296 605 305 305 605 298 298 605 296 296 606 298 298 606 299 299 606 299 299 607 298 298 607 300 300 607 299 299 608 300 300 608 301 301 608 301 301 609 300 300 609 306 306 609 301 301 610 306 306 610 391 391 610 161 161 611 308 308 611 302 302 611 302 302 612 308 308 612 310 310 612 302 302 613 310 310 613 303 303 613 303 303 614 310 310 614 313 313 614 303 303 615 313 313 615 304 304 615 304 304 616 313 313 616 314 314 616 304 304 617 314 314 617 305 305 617 305 305 618 314 314 618 316 316 618 305 305 619 316 316 619 298 298 619 298 298 620 316 316 620 317 317 620 298 298 621 317 317 621 300 300 621 300 300 622 317 317 622 319 319 622 300 300 623 319 319 623 306 306 623 306 306 624 319 319 624 307 307 624 306 306 625 307 307 625 391 391 625 1127 1127 626 309 309 626 308 308 626 308 308 627 309 309 627 321 321 627 308 308 628 321 321 628 310 310 628 310 310 629 321 321 629 311 311 629 310 310 630 311 311 630 313 313 630 313 313 631 311 311 631 312 312 631 313 313 632 312 312 632 314 314 632 314 314 633 312 312 633 315 315 633 314 314 634 315 315 634 316 316 634 316 316 635 315 315 635 324 324 635 316 316 636 324 324 636 317 317 636 317 317 637 324 324 637 318 318 637 317 317 638 318 318 638 319 319 638 319 319 639 318 318 639 326 326 639 319 319 640 326 326 640 307 307 640 307 307 641 326 326 641 327 327 641 307 307 642 327 327 642 391 391 642 1126 1126 643 329 329 643 309 309 643 309 309 644 329 329 644 320 320 644 309 309 645 320 320 645 321 321 645 321 321 646 320 320 646 332 332 646 321 321 647 332 332 647 311 311 647 311 311 648 332 332 648 333 333 648 311 311 649 333 333 649 312 312 649 312 312 650 333 333 650 322 322 650 312 312 651 322 322 651 315 315 651 315 315 652 322 322 652 323 323 652 315 315 653 323 323 653 324 324 653 324 324 654 323 323 654 325 325 654 324 324 655 325 325 655 318 318 655 318 318 656 325 325 656 334 334 656 318 318 657 334 334 657 326 326 657 326 326 658 334 334 658 336 336 658 326 326 659 336 336 659 327 327 659 327 327 660 336 336 660 328 328 660 327 327 661 328 328 661 391 391 661 1124 1124 662 337 337 662 329 329 662 329 329 663 337 337 663 330 330 663 329 329 664 330 330 664 320 320 664 320 320 665 330 330 665 339 339 665 320 320 666 339 339 666 332 332 666 332 332 667 339 339 667 331 331 667 332 332 668 331 331 668 333 333 668 333 333 669 331 331 669 340 340 669 333 333 670 340 340 670 322 322 670 322 322 671 340 340 671 344 344 671 322 322 672 344 344 672 323 323 672 323 323 673 344 344 673 346 346 673 323 323 674 346 346 674 325 325 674 325 325 675 346 346 675 347 347 675 325 325 676 347 347 676 334 334 676 334 334 677 347 347 677 335 335 677 334 334 678 335 335 678 336 336 678 336 336 679 335 335 679 350 350 679 336 336 680 350 350 680 328 328 680 328 328 681 350 350 681 352 352 681 328 328 682 352 352 682 391 391 682 85 85 683 338 338 683 337 337 683 337 337 684 338 338 684 353 353 684 337 337 685 353 353 685 330 330 685 330 330 686 353 353 686 355 355 686 330 330 687 355 355 687 339 339 687 339 339 688 355 355 688 356 356 688 339 339 689 356 356 689 331 331 689 331 331 690 356 356 690 341 341 690 331 331 691 341 341 691 340 340 691 340 340 692 341 341 692 342 342 692 340 340 693 342 342 693 344 344 693 344 344 694 342 342 694 343 343 694 344 344 695 343 343 695 346 346 695 346 346 696 343 343 696 345 345 696 346 346 697 345 345 697 347 347 697 347 347 698 345 345 698 348 348 698 347 347 699 348 348 699 335 335 699 335 335 700 348 348 700 349 349 700 335 335 701 349 349 701 350 350 701 350 350 702 349 349 702 361 361 702 350 350 703 361 361 703 352 352 703 352 352 704 361 361 704 351 351 704 352 352 705 351 351 705 391 391 705 71 71 706 70 70 706 338 338 706 338 338 707 70 70 707 354 354 707 338 338 708 354 354 708 353 353 708 353 353 709 354 354 709 364 364 709 353 353 710 364 364 710 355 355 710 355 355 711 364 364 711 365 365 711 355 355 712 365 365 712 356 356 712 356 356 713 365 365 713 357 357 713 356 356 714 357 357 714 341 341 714 341 341 715 357 357 715 367 367 715 341 341 716 367 367 716 342 342 716 342 342 717 367 367 717 368 368 717 342 342 718 368 368 718 343 343 718 343 343 719 368 368 719 358 358 719 343 343 720 358 358 720 345 345 720 345 345 721 358 358 721 369 369 721 345 345 722 369 369 722 348 348 722 348 348 723 369 369 723 359 359 723 348 348 724 359 359 724 349 349 724 349 349 725 359 359 725 360 360 725 349 349 726 360 360 726 361 361 726 361 361 727 360 360 727 373 373 727 361 361 728 373 373 728 351 351 728 351 351 729 373 373 729 362 362 729 351 351 730 362 362 730 391 391 730 1122 1122 731 376 376 731 70 70 731 70 70 732 376 376 732 363 363 732 70 70 733 363 363 733 354 354 733 354 354 734 363 363 734 380 380 734 354 354 735 380 380 735 364 364 735 364 364 736 380 380 736 381 381 736 364 364 737 381 381 737 365 365 737 365 365 738 381 381 738 366 366 738 365 365 739 366 366 739 357 357 739 357 357 740 366 366 740 383 383 740 357 357 741 383 383 741 367 367 741 367 367 742 383 383 742 385 385 742 367 367 743 385 385 743 368 368 743 368 368 744 385 385 744 386 386 744 368 368 745 386 386 745 358 358 745 358 358 746 386 386 746 387 387 746 358 358 747 387 387 747 369 369 747 369 369 748 387 387 748 370 370 748 369 369 749 370 370 749 359 359 749 359 359 750 370 370 750 371 371 750 359 359 751 371 371 751 360 360 751 360 360 752 371 371 752 372 372 752 360 360 753 372 372 753 373 373 753 373 373 754 372 372 754 374 374 754 373 373 755 374 374 755 362 362 755 362 362 756 374 374 756 390 390 756 362 362 757 390 390 757 391 391 757 1121 1121 758 375 375 758 376 376 758 376 376 759 375 375 759 377 377 759 376 376 760 377 377 760 363 363 760 363 363 761 377 377 761 378 378 761 363 363 762 378 378 762 380 380 762 380 380 763 378 378 763 379 379 763 380 380 764 379 379 764 381 381 764 381 381 765 379 379 765 382 382 765 381 381 766 382 382 766 366 366 766 366 366 767 382 382 767 396 396 767 366 366 768 396 396 768 383 383 768 383 383 769 396 396 769 384 384 769 383 383 770 384 384 770 385 385 770 385 385 771 384 384 771 397 397 771 385 385 772 397 397 772 386 386 772 386 386 773 397 397 773 399 399 773 386 386 774 399 399 774 387 387 774 387 387 775 399 399 775 400 400 775 387 387 776 400 400 776 370 370 776 370 370 777 400 400 777 401 401 777 370 370 778 401 401 778 371 371 778 371 371 779 401 401 779 402 402 779 371 371 780 402 402 780 372 372 780 372 372 781 402 402 781 388 388 781 372 372 782 388 388 782 374 374 782 374 374 783 388 388 783 406 406 783 374 374 784 406 406 784 390 390 784 390 390 785 406 406 785 389 389 785 390 390 786 389 389 786 391 391 786 392 392 787 408 408 787 375 375 787 375 375 788 408 408 788 393 393 788 375 375 789 393 393 789 377 377 789 377 377 790 393 393 790 409 409 790 377 377 791 409 409 791 378 378 791 378 378 792 409 409 792 411 411 792 378 378 793 411 411 793 379 379 793 379 379 794 411 411 794 394 394 794 379 379 795 394 394 795 382 382 795 382 382 796 394 394 796 395 395 796 382 382 797 395 395 797 396 396 797 396 396 798 395 395 798 412 412 798 396 396 799 412 412 799 384 384 799 384 384 800 412 412 800 414 414 800 384 384 801 414 414 801 397 397 801 397 397 802 414 414 802 398 398 802 397 397 803 398 398 803 399 399 803 399 399 804 398 398 804 415 415 804 399 399 805 415 415 805 400 400 805 400 400 806 415 415 806 417 417 806 400 400 807 417 417 807 401 401 807 401 401 808 417 417 808 403 403 808 401 401 809 403 403 809 402 402 809 402 402 810 403 403 810 420 420 810 402 402 811 420 420 811 388 388 811 388 388 812 420 420 812 404 404 812 388 388 813 404 404 813 406 406 813 406 406 814 404 404 814 405 405 814 406 406 815 405 405 815 389 389 815 389 389 816 405 405 816 422 422 816 389 389 817 422 422 817 391 391 817 39 39 818 407 407 818 408 408 818 408 408 819 407 407 819 1141 1141 819 408 408 820 1141 1141 820 393 393 820 393 393 821 1141 1141 821 410 410 821 393 393 822 410 410 822 409 409 822 409 409 823 410 410 823 1144 1144 823 409 409 824 1144 1144 824 411 411 824 411 411 825 1144 1144 825 1145 1145 825 411 411 826 1145 1145 826 394 394 826 394 394 827 1145 1145 827 1146 1146 827 394 394 828 1146 1146 828 395 395 828 395 395 829 1146 1146 829 1148 1148 829 395 395 830 1148 1148 830 412 412 830 412 412 831 1148 1148 831 1149 1149 831 412 412 832 1149 1149 832 414 414 832 414 414 833 1149 1149 833 413 413 833 414 414 834 413 413 834 398 398 834 398 398 835 413 413 835 1151 1151 835 398 398 836 1151 1151 836 415 415 836 415 415 837 1151 1151 837 416 416 837 415 415 838 416 416 838 417 417 838 417 417 839 416 416 839 418 418 839 417 417 840 418 418 840 403 403 840 403 403 841 418 418 841 419 419 841 403 403 842 419 419 842 420 420 842 420 420 843 419 419 843 421 421 843 420 420 844 421 421 844 404 404 844 404 404 845 421 421 845 1154 1154 845 404 404 846 1154 1154 846 405 405 846 405 405 847 1154 1154 847 423 423 847 405 405 848 423 423 848 422 422 848 422 422 849 423 423 849 1155 1155 849 422 422 850 1155 1155 850 391 391 850 3 3 851 424 424 851 425 425 851 425 425 852 424 424 852 1094 1094 852 425 425 853 1094 1094 853 1136 1136 853 1136 1136 854 1094 1094 854 426 426 854 1136 1136 855 426 426 855 1137 1137 855 1137 1137 856 426 426 856 427 427 856 1137 1137 857 427 427 857 1139 1139 857 1139 1139 858 427 427 858 428 428 858 1139 1139 859 428 428 859 1140 1140 859 1140 1140 860 428 428 860 429 429 860 1140 1140 861 429 429 861 430 430 861 430 430 862 429 429 862 431 431 862 430 430 863 431 431 863 1142 1142 863 1142 1142 864 431 431 864 1099 1099 864 1142 1142 865 1099 1099 865 432 432 865 432 432 866 1099 1099 866 433 433 866 432 432 867 433 433 867 434 434 867 434 434 868 433 433 868 1101 1101 868 434 434 869 1101 1101 869 1143 1143 869 1143 1143 870 1101 1101 870 1102 1102 870 1143 1143 871 1102 1102 871 435 435 871 435 435 872 1102 1102 872 436 436 872 435 435 873 436 436 873 1147 1147 873 1147 1147 874 436 436 874 1104 1104 874 1147 1147 875 1104 1104 875 437 437 875 437 437 876 1104 1104 876 438 438 876 437 437 877 438 438 877 1150 1150 877 1150 1150 878 438 438 878 439 439 878 1150 1150 879 439 439 879 440 440 879 440 440 880 439 439 880 1106 1106 880 440 440 881 1106 1106 881 1152 1152 881 1152 1152 882 1106 1106 882 441 441 882 1152 1152 883 441 441 883 1153 1153 883 1153 1153 884 441 441 884 1109 1109 884 1153 1153 885 1109 1109 885 442 442 885 442 442 886 1109 1109 886 1110 1110 886 442 442 887 1110 1110 887 443 443 887 443 443 888 1110 1110 888 1111 1111 888 443 443 889 1111 1111 889 444 444 889 444 444 890 1111 1111 890 445 445 890 444 444 891 445 445 891 446 446 891 446 446 892 445 445 892 447 447 892 446 446 893 447 447 893 448 448 893 448 448 894 447 447 894 1113 1113 894 448 448 895 1113 1113 895 1156 1156 895 1156 1156 896 1113 1113 896 1115 1115 896 1156 1156 897 1115 1115 897 391 391 897 391 391 898 1116 1116 898 449 449 898 449 449 899 1116 1116 899 1070 1070 899 449 449 900 1070 1070 900 1049 1049 900 1049 1049 901 1070 1070 901 450 450 901 1049 1049 902 450 450 902 451 451 902 451 451 903 450 450 903 1073 1073 903 451 451 904 1073 1073 904 452 452 904 452 452 905 1073 1073 905 1075 1075 905 452 452 906 1075 1075 906 1051 1051 906 1051 1051 907 1075 1075 907 1076 1076 907 1051 1051 908 1076 1076 908 453 453 908 453 453 909 1076 1076 909 454 454 909 453 453 910 454 454 910 1054 1054 910 1054 1054 911 454 454 911 455 455 911 1054 1054 912 455 455 912 1055 1055 912 1055 1055 913 455 455 913 456 456 913 1055 1055 914 456 456 914 457 457 914 457 457 915 456 456 915 1079 1079 915 457 457 916 1079 1079 916 1058 1058 916 1058 1058 917 1079 1079 917 1081 1081 917 1058 1058 918 1081 1081 918 459 459 918 459 459 919 1081 1081 919 458 458 919 459 459 920 458 458 920 1061 1061 920 1061 1061 921 458 458 921 460 460 921 1061 1061 922 460 460 922 1062 1062 922 1062 1062 923 460 460 923 1082 1082 923 1062 1062 924 1082 1082 924 461 461 924 461 461 925 1082 1082 925 462 462 925 461 461 926 462 462 926 463 463 926 463 463 927 462 462 927 1085 1085 927 463 463 928 1085 1085 928 1065 1065 928 1065 1065 929 1085 1085 929 464 464 929 1065 1065 930 464 464 930 1067 1067 930 1067 1067 931 464 464 931 465 465 931 1067 1067 932 465 465 932 466 466 932 466 466 933 465 465 933 467 467 933 466 466 934 467 467 934 468 468 934 468 468 935 467 467 935 1089 1089 935 468 468 936 1089 1089 936 469 469 936 469 469 937 1089 1089 937 1090 1090 937 469 469 938 1090 1090 938 471 471 938 471 471 939 1090 1090 939 470 470 939 471 471 940 470 470 940 472 472 940 472 472 941 470 470 941 1091 1091 941 472 472 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 474 474 943 473 473 944 474 474 944 475 475 944 475 475 945 474 474 945 201 201 945 391 391 946 1048 1048 946 522 522 946 522 522 947 1048 1048 947 1050 1050 947 522 522 948 1050 1050 948 520 520 948 520 520 949 1050 1050 949 476 476 949 520 520 950 476 476 950 477 477 950 477 477 951 476 476 951 478 478 951 477 477 952 478 478 952 517 517 952 517 517 953 478 478 953 479 479 953 517 517 954 479 479 954 516 516 954 516 516 955 479 479 955 1052 1052 955 516 516 956 1052 1052 956 515 515 956 515 515 957 1052 1052 957 1053 1053 957 515 515 958 1053 1053 958 514 514 958 514 514 959 1053 1053 959 1056 1056 959 514 514 960 1056 1056 960 512 512 960 512 512 961 1056 1056 961 1057 1057 961 512 512 962 1057 1057 962 510 510 962 510 510 963 1057 1057 963 1059 1059 963 510 510 964 1059 1059 964 481 481 964 481 481 965 1059 1059 965 480 480 965 481 481 966 480 480 966 509 509 966 509 509 967 480 480 967 1060 1060 967 509 509 968 1060 1060 968 506 506 968 506 506 969 1060 1060 969 1063 1063 969 506 506 970 1063 1063 970 504 504 970 504 504 971 1063 1063 971 483 483 971 504 504 972 483 483 972 482 482 972 482 482 973 483 483 973 1064 1064 973 482 482 974 1064 1064 974 503 503 974 503 503 975 1064 1064 975 1066 1066 975 503 503 976 1066 1066 976 502 502 976 502 502 977 1066 1066 977 1068 1068 977 502 502 978 1068 1068 978 501 501 978 501 501 979 1068 1068 979 484 484 979 501 501 980 484 484 980 500 500 980 500 500 981 484 484 981 1069 1069 981 500 500 982 1069 1069 982 499 499 982 499 499 983 1069 1069 983 485 485 983 499 499 984 485 485 984 497 497 984 497 497 985 485 485 985 486 486 985 497 497 986 486 486 986 495 495 986 495 495 987 486 486 987 487 487 987 495 495 988 487 487 988 493 493 988 493 493 989 487 487 989 488 488 989 493 493 990 488 488 990 490 490 990 490 490 991 488 488 991 489 489 991 490 490 992 489 489 992 491 491 992 491 491 993 489 489 993 201 201 993 201 201 994 492 492 994 491 491 994 491 491 995 492 492 995 525 525 995 491 491 996 525 525 996 490 490 996 490 490 997 525 525 997 494 494 997 490 490 998 494 494 998 493 493 998 493 493 999 494 494 999 526 526 999 493 493 1000 526 526 1000 495 495 1000 495 495 1001 526 526 1001 496 496 1001 495 495 1002 496 496 1002 497 497 1002 497 497 1003 496 496 1003 498 498 1003 497 497 1004 498 498 1004 499 499 1004 499 499 1005 498 498 1005 529 529 1005 499 499 1006 529 529 1006 500 500 1006 500 500 1007 529 529 1007 531 531 1007 500 500 1008 531 531 1008 501 501 1008 501 501 1009 531 531 1009 532 532 1009 501 501 1010 532 532 1010 502 502 1010 502 502 1011 532 532 1011 535 535 1011 502 502 1012 535 535 1012 503 503 1012 503 503 1013 535 535 1013 536 536 1013 503 503 1014 536 536 1014 482 482 1014 482 482 1015 536 536 1015 538 538 1015 482 482 1016 538 538 1016 504 504 1016 504 504 1017 538 538 1017 505 505 1017 504 504 1018 505 505 1018 506 506 1018 506 506 1019 505 505 1019 507 507 1019 506 506 1020 507 507 1020 509 509 1020 509 509 1021 507 507 1021 508 508 1021 509 509 1022 508 508 1022 481 481 1022 481 481 1023 508 508 1023 542 542 1023 481 481 1024 542 542 1024 510 510 1024 510 510 1025 542 542 1025 511 511 1025 510 510 1026 511 511 1026 512 512 1026 512 512 1027 511 511 1027 546 546 1027 512 512 1028 546 546 1028 514 514 1028 514 514 1029 546 546 1029 513 513 1029 514 514 1030 513 513 1030 515 515 1030 515 515 1031 513 513 1031 549 549 1031 515 515 1032 549 549 1032 516 516 1032 516 516 1033 549 549 1033 518 518 1033 516 516 1034 518 518 1034 517 517 1034 517 517 1035 518 518 1035 550 550 1035 517 517 1036 550 550 1036 477 477 1036 477 477 1037 550 550 1037 519 519 1037 477 477 1038 519 519 1038 520 520 1038 520 520 1039 519 519 1039 521 521 1039 520 520 1040 521 521 1040 522 522 1040 522 522 1041 521 521 1041 391 391 1041 201 201 1042 523 523 1042 492 492 1042 492 492 1043 523 523 1043 524 524 1043 492 492 1044 524 524 1044 525 525 1044 525 525 1045 524 524 1045 555 555 1045 525 525 1046 555 555 1046 494 494 1046 494 494 1047 555 555 1047 527 527 1047 494 494 1048 527 527 1048 526 526 1048 526 526 1049 527 527 1049 558 558 1049 526 526 1050 558 558 1050 496 496 1050 496 496 1051 558 558 1051 559 559 1051 496 496 1052 559 559 1052 498 498 1052 498 498 1053 559 559 1053 528 528 1053 498 498 1054 528 528 1054 529 529 1054 529 529 1055 528 528 1055 530 530 1055 529 529 1056 530 530 1056 531 531 1056 531 531 1057 530 530 1057 533 533 1057 531 531 1058 533 533 1058 532 532 1058 532 532 1059 533 533 1059 562 562 1059 532 532 1060 562 562 1060 535 535 1060 535 535 1061 562 562 1061 534 534 1061 535 535 1062 534 534 1062 536 536 1062 536 536 1063 534 534 1063 537 537 1063 536 536 1064 537 537 1064 538 538 1064 538 538 1065 537 537 1065 539 539 1065 538 538 1066 539 539 1066 505 505 1066 505 505 1067 539 539 1067 540 540 1067 505 505 1068 540 540 1068 507 507 1068 507 507 1069 540 540 1069 541 541 1069 507 507 1070 541 541 1070 508 508 1070 508 508 1071 541 541 1071 543 543 1071 508 508 1072 543 543 1072 542 542 1072 542 542 1073 543 543 1073 544 544 1073 542 542 1074 544 544 1074 511 511 1074 511 511 1075 544 544 1075 545 545 1075 511 511 1076 545 545 1076 546 546 1076 546 546 1077 545 545 1077 547 547 1077 546 546 1078 547 547 1078 513 513 1078 513 513 1079 547 547 1079 548 548 1079 513 513 1080 548 548 1080 549 549 1080 549 549 1081 548 548 1081 568 568 1081 549 549 1082 568 568 1082 518 518 1082 518 518 1083 568 568 1083 569 569 1083 518 518 1084 569 569 1084 550 550 1084 550 550 1085 569 569 1085 551 551 1085 550 550 1086 551 551 1086 519 519 1086 519 519 1087 551 551 1087 552 552 1087 519 519 1088 552 552 1088 521 521 1088 521 521 1089 552 552 1089 391 391 1089 201 201 1090 553 553 1090 523 523 1090 523 523 1091 553 553 1091 570 570 1091 523 523 1092 570 570 1092 524 524 1092 524 524 1093 570 570 1093 554 554 1093 524 524 1094 554 554 1094 555 555 1094 555 555 1095 554 554 1095 556 556 1095 555 555 1096 556 556 1096 527 527 1096 527 527 1097 556 556 1097 557 557 1097 527 527 1098 557 557 1098 558 558 1098 558 558 1099 557 557 1099 573 573 1099 558 558 1100 573 573 1100 559 559 1100 559 559 1101 573 573 1101 574 574 1101 559 559 1102 574 574 1102 528 528 1102 528 528 1103 574 574 1103 560 560 1103 528 528 1104 560 560 1104 530 530 1104 530 530 1105 560 560 1105 576 576 1105 530 530 1106 576 576 1106 533 533 1106 533 533 1107 576 576 1107 578 578 1107 533 533 1108 578 578 1108 562 562 1108 562 562 1109 578 578 1109 561 561 1109 562 562 1110 561 561 1110 534 534 1110 534 534 1111 561 561 1111 579 579 1111 534 534 1112 579 579 1112 537 537 1112 537 537 1113 579 579 1113 563 563 1113 537 537 1114 563 563 1114 539 539 1114 539 539 1115 563 563 1115 564 564 1115 539 539 1116 564 564 1116 540 540 1116 540 540 1117 564 564 1117 583 583 1117 540 540 1118 583 583 1118 541 541 1118 541 541 1119 583 583 1119 584 584 1119 541 541 1120 584 584 1120 543 543 1120 543 543 1121 584 584 1121 565 565 1121 543 543 1122 565 565 1122 544 544 1122 544 544 1123 565 565 1123 566 566 1123 544 544 1124 566 566 1124 545 545 1124 545 545 1125 566 566 1125 586 586 1125 545 545 1126 586 586 1126 547 547 1126 547 547 1127 586 586 1127 567 567 1127 547 547 1128 567 567 1128 548 548 1128 548 548 1129 567 567 1129 587 587 1129 548 548 1130 587 587 1130 568 568 1130 568 568 1131 587 587 1131 589 589 1131 568 568 1132 589 589 1132 569 569 1132 569 569 1133 589 589 1133 590 590 1133 569 569 1134 590 590 1134 551 551 1134 551 551 1135 590 590 1135 591 591 1135 551 551 1136 591 591 1136 552 552 1136 552 552 1137 591 591 1137 391 391 1137 201 201 1138 594 594 1138 553 553 1138 553 553 1139 594 594 1139 595 595 1139 553 553 1140 595 595 1140 570 570 1140 570 570 1141 595 595 1141 571 571 1141 570 570 1142 571 571 1142 554 554 1142 554 554 1143 571 571 1143 572 572 1143 554 554 1144 572 572 1144 556 556 1144 556 556 1145 572 572 1145 596 596 1145 556 556 1146 596 596 1146 557 557 1146 557 557 1147 596 596 1147 597 597 1147 557 557 1148 597 597 1148 573 573 1148 573 573 1149 597 597 1149 598 598 1149 573 573 1150 598 598 1150 574 574 1150 574 574 1151 598 598 1151 575 575 1151 574 574 1152 575 575 1152 560 560 1152 560 560 1153 575 575 1153 600 600 1153 560 560 1154 600 600 1154 576 576 1154 576 576 1155 600 600 1155 577 577 1155 576 576 1156 577 577 1156 578 578 1156 578 578 1157 577 577 1157 602 602 1157 578 578 1158 602 602 1158 561 561 1158 561 561 1159 602 602 1159 603 603 1159 561 561 1160 603 603 1160 579 579 1160 579 579 1161 603 603 1161 604 604 1161 579 579 1162 604 604 1162 563 563 1162 563 563 1163 604 604 1163 580 580 1163 563 563 1164 580 580 1164 564 564 1164 564 564 1165 580 580 1165 581 581 1165 564 564 1166 581 581 1166 583 583 1166 583 583 1167 581 581 1167 582 582 1167 583 583 1168 582 582 1168 584 584 1168 584 584 1169 582 582 1169 585 585 1169 584 584 1170 585 585 1170 565 565 1170 565 565 1171 585 585 1171 608 608 1171 565 565 1172 608 608 1172 566 566 1172 566 566 1173 608 608 1173 610 610 1173 566 566 1174 610 610 1174 586 586 1174 586 586 1175 610 610 1175 611 611 1175 586 586 1176 611 611 1176 567 567 1176 567 567 1177 611 611 1177 588 588 1177 567 567 1178 588 588 1178 587 587 1178 587 587 1179 588 588 1179 612 612 1179 587 587 1180 612 612 1180 589 589 1180 589 589 1181 612 612 1181 614 614 1181 589 589 1182 614 614 1182 590 590 1182 590 590 1183 614 614 1183 592 592 1183 590 590 1184 592 592 1184 591 591 1184 591 591 1185 592 592 1185 391 391 1185 201 201 1186 593 593 1186 594 594 1186 594 594 1187 593 593 1187 616 616 1187 594 594 1188 616 616 1188 595 595 1188 595 595 1189 616 616 1189 617 617 1189 595 595 1190 617 617 1190 571 571 1190 571 571 1191 617 617 1191 620 620 1191 571 571 1192 620 620 1192 572 572 1192 572 572 1193 620 620 1193 621 621 1193 572 572 1194 621 621 1194 596 596 1194 596 596 1195 621 621 1195 623 623 1195 596 596 1196 623 623 1196 597 597 1196 597 597 1197 623 623 1197 625 625 1197 597 597 1198 625 625 1198 598 598 1198 598 598 1199 625 625 1199 599 599 1199 598 598 1200 599 599 1200 575 575 1200 575 575 1201 599 599 1201 601 601 1201 575 575 1202 601 601 1202 600 600 1202 600 600 1203 601 601 1203 629 629 1203 600 600 1204 629 629 1204 577 577 1204 577 577 1205 629 629 1205 630 630 1205 577 577 1206 630 630 1206 602 602 1206 602 602 1207 630 630 1207 632 632 1207 602 602 1208 632 632 1208 603 603 1208 603 603 1209 632 632 1209 633 633 1209 603 603 1210 633 633 1210 604 604 1210 604 604 1211 633 633 1211 605 605 1211 604 604 1212 605 605 1212 580 580 1212 580 580 1213 605 605 1213 606 606 1213 580 580 1214 606 606 1214 581 581 1214 581 581 1215 606 606 1215 607 607 1215 581 581 1216 607 607 1216 582 582 1216 582 582 1217 607 607 1217 636 636 1217 582 582 1218 636 636 1218 585 585 1218 585 585 1219 636 636 1219 609 609 1219 585 585 1220 609 609 1220 608 608 1220 608 608 1221 609 609 1221 638 638 1221 608 608 1222 638 638 1222 610 610 1222 610 610 1223 638 638 1223 640 640 1223 610 610 1224 640 640 1224 611 611 1224 611 611 1225 640 640 1225 642 642 1225 611 611 1226 642 642 1226 588 588 1226 588 588 1227 642 642 1227 644 644 1227 588 588 1228 644 644 1228 612 612 1228 612 612 1229 644 644 1229 613 613 1229 612 612 1230 613 613 1230 614 614 1230 614 614 1231 613 613 1231 615 615 1231 614 614 1232 615 615 1232 592 592 1232 592 592 1233 615 615 1233 391 391 1233 201 201 1234 647 647 1234 593 593 1234 593 593 1235 647 647 1235 650 650 1235 593 593 1236 650 650 1236 616 616 1236 616 616 1237 650 650 1237 652 652 1237 616 616 1238 652 652 1238 617 617 1238 617 617 1239 652 652 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 621 621 1242 621 621 1243 619 619 1243 622 622 1243 621 621 1244 622 622 1244 623 623 1244 623 623 1245 622 622 1245 624 624 1245 623 623 1246 624 624 1246 625 625 1246 625 625 1247 624 624 1247 626 626 1247 625 625 1248 626 626 1248 599 599 1248 599 599 1249 626 626 1249 627 627 1249 599 599 1250 627 627 1250 601 601 1250 601 601 1251 627 627 1251 628 628 1251 601 601 1252 628 628 1252 629 629 1252 629 629 1253 628 628 1253 656 656 1253 629 629 1254 656 656 1254 630 630 1254 630 630 1255 656 656 1255 631 631 1255 630 630 1256 631 631 1256 632 632 1256 632 632 1257 631 631 1257 659 659 1257 632 632 1258 659 659 1258 633 633 1258 633 633 1259 659 659 1259 661 661 1259 633 633 1260 661 661 1260 605 605 1260 605 605 1261 661 661 1261 634 634 1261 605 605 1262 634 634 1262 606 606 1262 606 606 1263 634 634 1263 662 662 1263 606 606 1264 662 662 1264 607 607 1264 607 607 1265 662 662 1265 635 635 1265 607 607 1266 635 635 1266 636 636 1266 636 636 1267 635 635 1267 665 665 1267 636 636 1268 665 665 1268 609 609 1268 609 609 1269 665 665 1269 637 637 1269 609 609 1270 637 637 1270 638 638 1270 638 638 1271 637 637 1271 639 639 1271 638 638 1272 639 639 1272 640 640 1272 640 640 1273 639 639 1273 641 641 1273 640 640 1274 641 641 1274 642 642 1274 642 642 1275 641 641 1275 643 643 1275 642 642 1276 643 643 1276 644 644 1276 644 644 1277 643 643 1277 645 645 1277 644 644 1278 645 645 1278 613 613 1278 613 613 1279 645 645 1279 646 646 1279 613 613 1280 646 646 1280 615 615 1280 615 615 1281 646 646 1281 391 391 1281 201 201 1282 648 648 1282 647 647 1282 647 647 1283 648 648 1283 649 649 1283 647 647 1284 649 649 1284 650 650 1284 650 650 1285 649 649 1285 651 651 1285 650 650 1286 651 651 1286 652 652 1286 652 652 1287 651 651 1287 670 670 1287 652 652 1288 670 670 1288 618 618 1288 618 618 1289 670 670 1289 671 671 1289 618 618 1290 671 671 1290 619 619 1290 619 619 1291 671 671 1291 653 653 1291 619 619 1292 653 653 1292 622 622 1292 622 622 1293 653 653 1293 673 673 1293 622 622 1294 673 673 1294 624 624 1294 624 624 1295 673 673 1295 674 674 1295 624 624 1296 674 674 1296 626 626 1296 626 626 1297 674 674 1297 676 676 1297 626 626 1298 676 676 1298 627 627 1298 627 627 1299 676 676 1299 654 654 1299 627 627 1300 654 654 1300 628 628 1300 628 628 1301 654 654 1301 655 655 1301 628 628 1302 655 655 1302 656 656 1302 656 656 1303 655 655 1303 657 657 1303 656 656 1304 657 657 1304 631 631 1304 631 631 1305 657 657 1305 658 658 1305 631 631 1306 658 658 1306 659 659 1306 659 659 1307 658 658 1307 660 660 1307 659 659 1308 660 660 1308 661 661 1308 661 661 1309 660 660 1309 679 679 1309 661 661 1310 679 679 1310 634 634 1310 634 634 1311 679 679 1311 663 663 1311 634 634 1312 663 663 1312 662 662 1312 662 662 1313 663 663 1313 664 664 1313 662 662 1314 664 664 1314 635 635 1314 635 635 1315 664 664 1315 682 682 1315 635 635 1316 682 682 1316 665 665 1316 665 665 1317 682 682 1317 684 684 1317 665 665 1318 684 684 1318 637 637 1318 637 637 1319 684 684 1319 685 685 1319 637 637 1320 685 685 1320 639 639 1320 639 639 1321 685 685 1321 666 666 1321 639 639 1322 666 666 1322 641 641 1322 641 641 1323 666 666 1323 686 686 1323 641 641 1324 686 686 1324 643 643 1324 643 643 1325 686 686 1325 667 667 1325 643 643 1326 667 667 1326 645 645 1326 645 645 1327 667 667 1327 668 668 1327 645 645 1328 668 668 1328 646 646 1328 646 646 1329 668 668 1329 391 391 1329 201 201 1330 691 691 1330 648 648 1330 648 648 1331 691 691 1331 669 669 1331 648 648 1332 669 669 1332 649 649 1332 649 649 1333 669 669 1333 694 694 1333 649 649 1334 694 694 1334 651 651 1334 651 651 1335 694 694 1335 695 695 1335 651 651 1336 695 695 1336 670 670 1336 670 670 1337 695 695 1337 697 697 1337 670 670 1338 697 697 1338 671 671 1338 671 671 1339 697 697 1339 672 672 1339 671 671 1340 672 672 1340 653 653 1340 653 653 1341 672 672 1341 700 700 1341 653 653 1342 700 700 1342 673 673 1342 673 673 1343 700 700 1343 702 702 1343 673 673 1344 702 702 1344 674 674 1344 674 674 1345 702 702 1345 675 675 1345 674 674 1346 675 675 1346 676 676 1346 676 676 1347 675 675 1347 703 703 1347 676 676 1348 703 703 1348 654 654 1348 654 654 1349 703 703 1349 704 704 1349 654 654 1350 704 704 1350 655 655 1350 655 655 1351 704 704 1351 677 677 1351 655 655 1352 677 677 1352 657 657 1352 657 657 1353 677 677 1353 705 705 1353 657 657 1354 705 705 1354 658 658 1354 658 658 1355 705 705 1355 678 678 1355 658 658 1356 678 678 1356 660 660 1356 660 660 1357 678 678 1357 708 708 1357 660 660 1358 708 708 1358 679 679 1358 679 679 1359 708 708 1359 680 680 1359 679 679 1360 680 680 1360 663 663 1360 663 663 1361 680 680 1361 681 681 1361 663 663 1362 681 681 1362 664 664 1362 664 664 1363 681 681 1363 711 711 1363 664 664 1364 711 711 1364 682 682 1364 682 682 1365 711 711 1365 683 683 1365 682 682 1366 683 683 1366 684 684 1366 684 684 1367 683 683 1367 712 712 1367 684 684 1368 712 712 1368 685 685 1368 685 685 1369 712 712 1369 714 714 1369 685 685 1370 714 714 1370 666 666 1370 666 666 1371 714 714 1371 687 687 1371 666 666 1372 687 687 1372 686 686 1372 686 686 1373 687 687 1373 688 688 1373 686 686 1374 688 688 1374 667 667 1374 667 667 1375 688 688 1375 689 689 1375 667 667 1376 689 689 1376 668 668 1376 668 668 1377 689 689 1377 391 391 1377 201 201 1378 690 690 1378 691 691 1378 691 691 1379 690 690 1379 692 692 1379 691 691 1380 692 692 1380 669 669 1380 669 669 1381 692 692 1381 693 693 1381 669 669 1382 693 693 1382 694 694 1382 694 694 1383 693 693 1383 717 717 1383 694 694 1384 717 717 1384 695 695 1384 695 695 1385 717 717 1385 696 696 1385 695 695 1386 696 696 1386 697 697 1386 697 697 1387 696 696 1387 698 698 1387 697 697 1388 698 698 1388 672 672 1388 672 672 1389 698 698 1389 699 699 1389 672 672 1390 699 699 1390 700 700 1390 700 700 1391 699 699 1391 701 701 1391 700 700 1392 701 701 1392 702 702 1392 702 702 1393 701 701 1393 721 721 1393 702 702 1394 721 721 1394 675 675 1394 675 675 1395 721 721 1395 722 722 1395 675 675 1396 722 722 1396 703 703 1396 703 703 1397 722 722 1397 725 725 1397 703 703 1398 725 725 1398 704 704 1398 704 704 1399 725 725 1399 726 726 1399 704 704 1400 726 726 1400 677 677 1400 677 677 1401 726 726 1401 727 727 1401 677 677 1402 727 727 1402 705 705 1402 705 705 1403 727 727 1403 731 731 1403 705 705 1404 731 731 1404 678 678 1404 678 678 1405 731 731 1405 706 706 1405 678 678 1406 706 706 1406 708 708 1406 708 708 1407 706 706 1407 707 707 1407 708 708 1408 707 707 1408 680 680 1408 680 680 1409 707 707 1409 709 709 1409 680 680 1410 709 709 1410 681 681 1410 681 681 1411 709 709 1411 710 710 1411 681 681 1412 710 710 1412 711 711 1412 711 711 1413 710 710 1413 734 734 1413 711 711 1414 734 734 1414 683 683 1414 683 683 1415 734 734 1415 736 736 1415 683 683 1416 736 736 1416 712 712 1416 712 712 1417 736 736 1417 713 713 1417 712 712 1418 713 713 1418 714 714 1418 714 714 1419 713 713 1419 737 737 1419 714 714 1420 737 737 1420 687 687 1420 687 687 1421 737 737 1421 715 715 1421 687 687 1422 715 715 1422 688 688 1422 688 688 1423 715 715 1423 716 716 1423 688 688 1424 716 716 1424 689 689 1424 689 689 1425 716 716 1425 391 391 1425 201 201 1426 739 739 1426 690 690 1426 690 690 1427 739 739 1427 741 741 1427 690 690 1428 741 741 1428 692 692 1428 692 692 1429 741 741 1429 742 742 1429 692 692 1430 742 742 1430 693 693 1430 693 693 1431 742 742 1431 743 743 1431 693 693 1432 743 743 1432 717 717 1432 717 717 1433 743 743 1433 718 718 1433 717 717 1434 718 718 1434 696 696 1434 696 696 1435 718 718 1435 719 719 1435 696 696 1436 719 719 1436 698 698 1436 698 698 1437 719 719 1437 746 746 1437 698 698 1438 746 746 1438 699 699 1438 699 699 1439 746 746 1439 747 747 1439 699 699 1440 747 747 1440 701 701 1440 701 701 1441 747 747 1441 720 720 1441 701 701 1442 720 720 1442 721 721 1442 721 721 1443 720 720 1443 751 751 1443 721 721 1444 751 751 1444 722 722 1444 722 722 1445 751 751 1445 723 723 1445 722 722 1446 723 723 1446 725 725 1446 725 725 1447 723 723 1447 724 724 1447 725 725 1448 724 724 1448 726 726 1448 726 726 1449 724 724 1449 728 728 1449 726 726 1450 728 728 1450 727 727 1450 727 727 1451 728 728 1451 729 729 1451 727 727 1452 729 729 1452 731 731 1452 731 731 1453 729 729 1453 730 730 1453 731 731 1454 730 730 1454 706 706 1454 706 706 1455 730 730 1455 732 732 1455 706 706 1456 732 732 1456 707 707 1456 707 707 1457 732 732 1457 754 754 1457 707 707 1458 754 754 1458 709 709 1458 709 709 1459 754 754 1459 733 733 1459 709 709 1460 733 733 1460 710 710 1460 710 710 1461 733 733 1461 756 756 1461 710 710 1462 756 756 1462 734 734 1462 734 734 1463 756 756 1463 735 735 1463 734 734 1464 735 735 1464 736 736 1464 736 736 1465 735 735 1465 759 759 1465 736 736 1466 759 759 1466 713 713 1466 713 713 1467 759 759 1467 760 760 1467 713 713 1468 760 760 1468 737 737 1468 737 737 1469 760 760 1469 761 761 1469 737 737 1470 761 761 1470 715 715 1470 715 715 1471 761 761 1471 738 738 1471 715 715 1472 738 738 1472 716 716 1472 716 716 1473 738 738 1473 391 391 1473 201 201 1474 763 763 1474 739 739 1474 739 739 1475 763 763 1475 764 764 1475 739 739 1476 764 764 1476 741 741 1476 741 741 1477 764 764 1477 740 740 1477 741 741 1478 740 740 1478 742 742 1478 742 742 1479 740 740 1479 766 766 1479 742 742 1480 766 766 1480 743 743 1480 743 743 1481 766 766 1481 744 744 1481 743 743 1482 744 744 1482 718 718 1482 718 718 1483 744 744 1483 767 767 1483 718 718 1484 767 767 1484 719 719 1484 719 719 1485 767 767 1485 745 745 1485 719 719 1486 745 745 1486 746 746 1486 746 746 1487 745 745 1487 748 748 1487 746 746 1488 748 748 1488 747 747 1488 747 747 1489 748 748 1489 749 749 1489 747 747 1490 749 749 1490 720 720 1490 720 720 1491 749 749 1491 750 750 1491 720 720 1492 750 750 1492 751 751 1492 751 751 1493 750 750 1493 752 752 1493 751 751 1494 752 752 1494 723 723 1494 723 723 1495 752 752 1495 772 772 1495 723 723 1496 772 772 1496 724 724 1496 724 724 1497 772 772 1497 774 774 1497 724 724 1498 774 774 1498 728 728 1498 728 728 1499 774 774 1499 776 776 1499 728 728 1500 776 776 1500 729 729 1500 729 729 1501 776 776 1501 777 777 1501 729 729 1502 777 777 1502 730 730 1502 730 730 1503 777 777 1503 753 753 1503 730 730 1504 753 753 1504 732 732 1504 732 732 1505 753 753 1505 755 755 1505 732 732 1506 755 755 1506 754 754 1506 754 754 1507 755 755 1507 780 780 1507 754 754 1508 780 780 1508 733 733 1508 733 733 1509 780 780 1509 782 782 1509 733 733 1510 782 782 1510 756 756 1510 756 756 1511 782 782 1511 757 757 1511 756 756 1512 757 757 1512 735 735 1512 735 735 1513 757 757 1513 758 758 1513 735 735 1514 758 758 1514 759 759 1514 759 759 1515 758 758 1515 784 784 1515 759 759 1516 784 784 1516 760 760 1516 760 760 1517 784 784 1517 785 785 1517 760 760 1518 785 785 1518 761 761 1518 761 761 1519 785 785 1519 762 762 1519 761 761 1520 762 762 1520 738 738 1520 738 738 1521 762 762 1521 391 391 1521 201 201 1522 787 787 1522 763 763 1522 763 763 1523 787 787 1523 788 788 1523 763 763 1524 788 788 1524 764 764 1524 764 764 1525 788 788 1525 789 789 1525 764 764 1526 789 789 1526 740 740 1526 740 740 1527 789 789 1527 791 791 1527 740 740 1528 791 791 1528 766 766 1528 766 766 1529 791 791 1529 765 765 1529 766 766 1530 765 765 1530 744 744 1530 744 744 1531 765 765 1531 794 794 1531 744 744 1532 794 794 1532 767 767 1532 767 767 1533 794 794 1533 768 768 1533 767 767 1534 768 768 1534 745 745 1534 745 745 1535 768 768 1535 769 769 1535 745 745 1536 769 769 1536 748 748 1536 748 748 1537 769 769 1537 798 798 1537 748 748 1538 798 798 1538 749 749 1538 749 749 1539 798 798 1539 799 799 1539 749 749 1540 799 799 1540 750 750 1540 750 750 1541 799 799 1541 770 770 1541 750 750 1542 770 770 1542 752 752 1542 752 752 1543 770 770 1543 771 771 1543 752 752 1544 771 771 1544 772 772 1544 772 772 1545 771 771 1545 773 773 1545 772 772 1546 773 773 1546 774 774 1546 774 774 1547 773 773 1547 775 775 1547 774 774 1548 775 775 1548 776 776 1548 776 776 1549 775 775 1549 802 802 1549 776 776 1550 802 802 1550 777 777 1550 777 777 1551 802 802 1551 778 778 1551 777 777 1552 778 778 1552 753 753 1552 753 753 1553 778 778 1553 779 779 1553 753 753 1554 779 779 1554 755 755 1554 755 755 1555 779 779 1555 805 805 1555 755 755 1556 805 805 1556 780 780 1556 780 780 1557 805 805 1557 781 781 1557 780 780 1558 781 781 1558 782 782 1558 782 782 1559 781 781 1559 806 806 1559 782 782 1560 806 806 1560 757 757 1560 757 757 1561 806 806 1561 783 783 1561 757 757 1562 783 783 1562 758 758 1562 758 758 1563 783 783 1563 808 808 1563 758 758 1564 808 808 1564 784 784 1564 784 784 1565 808 808 1565 786 786 1565 784 784 1566 786 786 1566 785 785 1566 785 785 1567 786 786 1567 810 810 1567 785 785 1568 810 810 1568 762 762 1568 762 762 1569 810 810 1569 391 391 1569 201 201 1570 811 811 1570 787 787 1570 787 787 1571 811 811 1571 814 814 1571 787 787 1572 814 814 1572 788 788 1572 788 788 1573 814 814 1573 815 815 1573 788 788 1574 815 815 1574 789 789 1574 789 789 1575 815 815 1575 790 790 1575 789 789 1576 790 790 1576 791 791 1576 791 791 1577 790 790 1577 792 792 1577 791 791 1578 792 792 1578 765 765 1578 765 765 1579 792 792 1579 793 793 1579 765 765 1580 793 793 1580 794 794 1580 794 794 1581 793 793 1581 795 795 1581 794 794 1582 795 795 1582 768 768 1582 768 768 1583 795 795 1583 796 796 1583 768 768 1584 796 796 1584 769 769 1584 769 769 1585 796 796 1585 797 797 1585 769 769 1586 797 797 1586 798 798 1586 798 798 1587 797 797 1587 818 818 1587 798 798 1588 818 818 1588 799 799 1588 799 799 1589 818 818 1589 800 800 1589 799 799 1590 800 800 1590 770 770 1590 770 770 1591 800 800 1591 819 819 1591 770 770 1592 819 819 1592 771 771 1592 771 771 1593 819 819 1593 822 822 1593 771 771 1594 822 822 1594 773 773 1594 773 773 1595 822 822 1595 801 801 1595 773 773 1596 801 801 1596 775 775 1596 775 775 1597 801 801 1597 823 823 1597 775 775 1598 823 823 1598 802 802 1598 802 802 1599 823 823 1599 803 803 1599 802 802 1600 803 803 1600 778 778 1600 778 778 1601 803 803 1601 825 825 1601 778 778 1602 825 825 1602 779 779 1602 779 779 1603 825 825 1603 804 804 1603 779 779 1604 804 804 1604 805 805 1604 805 805 1605 804 804 1605 829 829 1605 805 805 1606 829 829 1606 781 781 1606 781 781 1607 829 829 1607 830 830 1607 781 781 1608 830 830 1608 806 806 1608 806 806 1609 830 830 1609 831 831 1609 806 806 1610 831 831 1610 783 783 1610 783 783 1611 831 831 1611 807 807 1611 783 783 1612 807 807 1612 808 808 1612 808 808 1613 807 807 1613 832 832 1613 808 808 1614 832 832 1614 786 786 1614 786 786 1615 832 832 1615 809 809 1615 786 786 1616 809 809 1616 810 810 1616 810 810 1617 809 809 1617 391 391 1617 201 201 1618 812 812 1618 811 811 1618 811 811 1619 812 812 1619 813 813 1619 811 811 1620 813 813 1620 814 814 1620 814 814 1621 813 813 1621 835 835 1621 814 814 1622 835 835 1622 815 815 1622 815 815 1623 835 835 1623 816 816 1623 815 815 1624 816 816 1624 790 790 1624 790 790 1625 816 816 1625 837 837 1625 790 790 1626 837 837 1626 792 792 1626 792 792 1627 837 837 1627 840 840 1627 792 792 1628 840 840 1628 793 793 1628 793 793 1629 840 840 1629 817 817 1629 793 793 1630 817 817 1630 795 795 1630 795 795 1631 817 817 1631 841 841 1631 795 795 1632 841 841 1632 796 796 1632 796 796 1633 841 841 1633 842 842 1633 796 796 1634 842 842 1634 797 797 1634 797 797 1635 842 842 1635 844 844 1635 797 797 1636 844 844 1636 818 818 1636 818 818 1637 844 844 1637 845 845 1637 818 818 1638 845 845 1638 800 800 1638 800 800 1639 845 845 1639 846 846 1639 800 800 1640 846 846 1640 819 819 1640 819 819 1641 846 846 1641 820 820 1641 819 819 1642 820 820 1642 822 822 1642 822 822 1643 820 820 1643 821 821 1643 822 822 1644 821 821 1644 801 801 1644 801 801 1645 821 821 1645 824 824 1645 801 801 1646 824 824 1646 823 823 1646 823 823 1647 824 824 1647 850 850 1647 823 823 1648 850 850 1648 803 803 1648 803 803 1649 850 850 1649 826 826 1649 803 803 1650 826 826 1650 825 825 1650 825 825 1651 826 826 1651 827 827 1651 825 825 1652 827 827 1652 804 804 1652 804 804 1653 827 827 1653 828 828 1653 804 804 1654 828 828 1654 829 829 1654 829 829 1655 828 828 1655 852 852 1655 829 829 1656 852 852 1656 830 830 1656 830 830 1657 852 852 1657 853 853 1657 830 830 1658 853 853 1658 831 831 1658 831 831 1659 853 853 1659 854 854 1659 831 831 1660 854 854 1660 807 807 1660 807 807 1661 854 854 1661 855 855 1661 807 807 1662 855 855 1662 832 832 1662 832 832 1663 855 855 1663 856 856 1663 832 832 1664 856 856 1664 809 809 1664 809 809 1665 856 856 1665 391 391 1665 201 201 1666 833 833 1666 812 812 1666 812 812 1667 833 833 1667 857 857 1667 812 812 1668 857 857 1668 813 813 1668 813 813 1669 857 857 1669 834 834 1669 813 813 1670 834 834 1670 835 835 1670 835 835 1671 834 834 1671 836 836 1671 835 835 1672 836 836 1672 816 816 1672 816 816 1673 836 836 1673 838 838 1673 816 816 1674 838 838 1674 837 837 1674 837 837 1675 838 838 1675 839 839 1675 837 837 1676 839 839 1676 840 840 1676 840 840 1677 839 839 1677 861 861 1677 840 840 1678 861 861 1678 817 817 1678 817 817 1679 861 861 1679 862 862 1679 817 817 1680 862 862 1680 841 841 1680 841 841 1681 862 862 1681 863 863 1681 841 841 1682 863 863 1682 842 842 1682 842 842 1683 863 863 1683 843 843 1683 842 842 1684 843 843 1684 844 844 1684 844 844 1685 843 843 1685 865 865 1685 844 844 1686 865 865 1686 845 845 1686 845 845 1687 865 865 1687 866 866 1687 845 845 1688 866 866 1688 846 846 1688 846 846 1689 866 866 1689 847 847 1689 846 846 1690 847 847 1690 820 820 1690 820 820 1691 847 847 1691 867 867 1691 820 820 1692 867 867 1692 821 821 1692 821 821 1693 867 867 1693 848 848 1693 821 821 1694 848 848 1694 824 824 1694 824 824 1695 848 848 1695 849 849 1695 824 824 1696 849 849 1696 850 850 1696 850 850 1697 849 849 1697 871 871 1697 850 850 1698 871 871 1698 826 826 1698 826 826 1699 871 871 1699 851 851 1699 826 826 1700 851 851 1700 827 827 1700 827 827 1701 851 851 1701 872 872 1701 827 827 1702 872 872 1702 828 828 1702 828 828 1703 872 872 1703 875 875 1703 828 828 1704 875 875 1704 852 852 1704 852 852 1705 875 875 1705 876 876 1705 852 852 1706 876 876 1706 853 853 1706 853 853 1707 876 876 1707 877 877 1707 853 853 1708 877 877 1708 854 854 1708 854 854 1709 877 877 1709 879 879 1709 854 854 1710 879 879 1710 855 855 1710 855 855 1711 879 879 1711 880 880 1711 855 855 1712 880 880 1712 856 856 1712 856 856 1713 880 880 1713 391 391 1713 201 201 1714 882 882 1714 833 833 1714 833 833 1715 882 882 1715 883 883 1715 833 833 1716 883 883 1716 857 857 1716 857 857 1717 883 883 1717 884 884 1717 857 857 1718 884 884 1718 834 834 1718 834 834 1719 884 884 1719 885 885 1719 834 834 1720 885 885 1720 836 836 1720 836 836 1721 885 885 1721 858 858 1721 836 836 1722 858 858 1722 838 838 1722 838 838 1723 858 858 1723 859 859 1723 838 838 1724 859 859 1724 839 839 1724 839 839 1725 859 859 1725 860 860 1725 839 839 1726 860 860 1726 861 861 1726 861 861 1727 860 860 1727 888 888 1727 861 861 1728 888 888 1728 862 862 1728 862 862 1729 888 888 1729 864 864 1729 862 862 1730 864 864 1730 863 863 1730 863 863 1731 864 864 1731 889 889 1731 863 863 1732 889 889 1732 843 843 1732 843 843 1733 889 889 1733 891 891 1733 843 843 1734 891 891 1734 865 865 1734 865 865 1735 891 891 1735 893 893 1735 865 865 1736 893 893 1736 866 866 1736 866 866 1737 893 893 1737 894 894 1737 866 866 1738 894 894 1738 847 847 1738 847 847 1739 894 894 1739 895 895 1739 847 847 1740 895 895 1740 867 867 1740 867 867 1741 895 895 1741 868 868 1741 867 867 1742 868 868 1742 848 848 1742 848 848 1743 868 868 1743 869 869 1743 848 848 1744 869 869 1744 849 849 1744 849 849 1745 869 869 1745 870 870 1745 849 849 1746 870 870 1746 871 871 1746 871 871 1747 870 870 1747 896 896 1747 871 871 1748 896 896 1748 851 851 1748 851 851 1749 896 896 1749 873 873 1749 851 851 1750 873 873 1750 872 872 1750 872 872 1751 873 873 1751 874 874 1751 872 872 1752 874 874 1752 875 875 1752 875 875 1753 874 874 1753 898 898 1753 875 875 1754 898 898 1754 876 876 1754 876 876 1755 898 898 1755 900 900 1755 876 876 1756 900 900 1756 877 877 1756 877 877 1757 900 900 1757 878 878 1757 877 877 1758 878 878 1758 879 879 1758 879 879 1759 878 878 1759 881 881 1759 879 879 1760 881 881 1760 880 880 1760 880 880 1761 881 881 1761 391 391 1761 201 201 1762 903 903 1762 882 882 1762 882 882 1763 903 903 1763 904 904 1763 882 882 1764 904 904 1764 883 883 1764 883 883 1765 904 904 1765 906 906 1765 883 883 1766 906 906 1766 884 884 1766 884 884 1767 906 906 1767 907 907 1767 884 884 1768 907 907 1768 885 885 1768 885 885 1769 907 907 1769 886 886 1769 885 885 1770 886 886 1770 858 858 1770 858 858 1771 886 886 1771 887 887 1771 858 858 1772 887 887 1772 859 859 1772 859 859 1773 887 887 1773 909 909 1773 859 859 1774 909 909 1774 860 860 1774 860 860 1775 909 909 1775 910 910 1775 860 860 1776 910 910 1776 888 888 1776 888 888 1777 910 910 1777 911 911 1777 888 888 1778 911 911 1778 864 864 1778 864 864 1779 911 911 1779 914 914 1779 864 864 1780 914 914 1780 889 889 1780 889 889 1781 914 914 1781 890 890 1781 889 889 1782 890 890 1782 891 891 1782 891 891 1783 890 890 1783 892 892 1783 891 891 1784 892 892 1784 893 893 1784 893 893 1785 892 892 1785 918 918 1785 893 893 1786 918 918 1786 894 894 1786 894 894 1787 918 918 1787 919 919 1787 894 894 1788 919 919 1788 895 895 1788 895 895 1789 919 919 1789 921 921 1789 895 895 1790 921 921 1790 868 868 1790 868 868 1791 921 921 1791 922 922 1791 868 868 1792 922 922 1792 869 869 1792 869 869 1793 922 922 1793 924 924 1793 869 869 1794 924 924 1794 870 870 1794 870 870 1795 924 924 1795 926 926 1795 870 870 1796 926 926 1796 896 896 1796 896 896 1797 926 926 1797 897 897 1797 896 896 1798 897 897 1798 873 873 1798 873 873 1799 897 897 1799 928 928 1799 873 873 1800 928 928 1800 874 874 1800 874 874 1801 928 928 1801 930 930 1801 874 874 1802 930 930 1802 898 898 1802 898 898 1803 930 930 1803 899 899 1803 898 898 1804 899 899 1804 900 900 1804 900 900 1805 899 899 1805 901 901 1805 900 900 1806 901 901 1806 878 878 1806 878 878 1807 901 901 1807 902 902 1807 878 878 1808 902 902 1808 881 881 1808 881 881 1809 902 902 1809 391 391 1809 201 201 1810 934 934 1810 903 903 1810 903 903 1811 934 934 1811 936 936 1811 903 903 1812 936 936 1812 904 904 1812 904 904 1813 936 936 1813 905 905 1813 904 904 1814 905 905 1814 906 906 1814 906 906 1815 905 905 1815 938 938 1815 906 906 1816 938 938 1816 907 907 1816 907 907 1817 938 938 1817 908 908 1817 907 907 1818 908 908 1818 886 886 1818 886 886 1819 908 908 1819 940 940 1819 886 886 1820 940 940 1820 887 887 1820 887 887 1821 940 940 1821 942 942 1821 887 887 1822 942 942 1822 909 909 1822 909 909 1823 942 942 1823 943 943 1823 909 909 1824 943 943 1824 910 910 1824 910 910 1825 943 943 1825 912 912 1825 910 910 1826 912 912 1826 911 911 1826 911 911 1827 912 912 1827 913 913 1827 911 911 1828 913 913 1828 914 914 1828 914 914 1829 913 913 1829 915 915 1829 914 914 1830 915 915 1830 890 890 1830 890 890 1831 915 915 1831 916 916 1831 890 890 1832 916 916 1832 892 892 1832 892 892 1833 916 916 1833 917 917 1833 892 892 1834 917 917 1834 918 918 1834 918 918 1835 917 917 1835 947 947 1835 918 918 1836 947 947 1836 919 919 1836 919 919 1837 947 947 1837 920 920 1837 919 919 1838 920 920 1838 921 921 1838 921 921 1839 920 920 1839 949 949 1839 921 921 1840 949 949 1840 922 922 1840 922 922 1841 949 949 1841 923 923 1841 922 922 1842 923 923 1842 924 924 1842 924 924 1843 923 923 1843 925 925 1843 924 924 1844 925 925 1844 926 926 1844 926 926 1845 925 925 1845 951 951 1845 926 926 1846 951 951 1846 897 897 1846 897 897 1847 951 951 1847 927 927 1847 897 897 1848 927 927 1848 928 928 1848 928 928 1849 927 927 1849 929 929 1849 928 928 1850 929 929 1850 930 930 1850 930 930 1851 929 929 1851 931 931 1851 930 930 1852 931 931 1852 899 899 1852 899 899 1853 931 931 1853 932 932 1853 899 899 1854 932 932 1854 901 901 1854 901 901 1855 932 932 1855 933 933 1855 901 901 1856 933 933 1856 902 902 1856 902 902 1857 933 933 1857 391 391 1857 201 201 1858 956 956 1858 934 934 1858 934 934 1859 956 956 1859 935 935 1859 934 934 1860 935 935 1860 936 936 1860 936 936 1861 935 935 1861 937 937 1861 936 936 1862 937 937 1862 905 905 1862 905 905 1863 937 937 1863 957 957 1863 905 905 1864 957 957 1864 938 938 1864 938 938 1865 957 957 1865 939 939 1865 938 938 1866 939 939 1866 908 908 1866 908 908 1867 939 939 1867 961 961 1867 908 908 1868 961 961 1868 940 940 1868 940 940 1869 961 961 1869 941 941 1869 940 940 1870 941 941 1870 942 942 1870 942 942 1871 941 941 1871 962 962 1871 942 942 1872 962 962 1872 943 943 1872 943 943 1873 962 962 1873 944 944 1873 943 943 1874 944 944 1874 912 912 1874 912 912 1875 944 944 1875 945 945 1875 912 912 1876 945 945 1876 913 913 1876 913 913 1877 945 945 1877 965 965 1877 913 913 1878 965 965 1878 915 915 1878 915 915 1879 965 965 1879 968 968 1879 915 915 1880 968 968 1880 916 916 1880 916 916 1881 968 968 1881 969 969 1881 916 916 1882 969 969 1882 917 917 1882 917 917 1883 969 969 1883 946 946 1883 917 917 1884 946 946 1884 947 947 1884 947 947 1885 946 946 1885 948 948 1885 947 947 1886 948 948 1886 920 920 1886 920 920 1887 948 948 1887 950 950 1887 920 920 1888 950 950 1888 949 949 1888 949 949 1889 950 950 1889 971 971 1889 949 949 1890 971 971 1890 923 923 1890 923 923 1891 971 971 1891 973 973 1891 923 923 1892 973 973 1892 925 925 1892 925 925 1893 973 973 1893 974 974 1893 925 925 1894 974 974 1894 951 951 1894 951 951 1895 974 974 1895 975 975 1895 951 951 1896 975 975 1896 927 927 1896 927 927 1897 975 975 1897 952 952 1897 927 927 1898 952 952 1898 929 929 1898 929 929 1899 952 952 1899 953 953 1899 929 929 1900 953 953 1900 931 931 1900 931 931 1901 953 953 1901 954 954 1901 931 931 1902 954 954 1902 932 932 1902 932 932 1903 954 954 1903 955 955 1903 932 932 1904 955 955 1904 933 933 1904 933 933 1905 955 955 1905 391 391 1905 201 201 1906 1177 1177 1906 956 956 1906 956 956 1907 1177 1177 1907 1175 1175 1907 956 956 1908 1175 1175 1908 935 935 1908 935 935 1909 1175 1175 1909 1173 1173 1909 935 935 1910 1173 1173 1910 937 937 1910 937 937 1911 1173 1173 1911 958 958 1911 937 937 1912 958 958 1912 957 957 1912 957 957 1913 958 958 1913 959 959 1913 957 957 1914 959 959 1914 939 939 1914 939 939 1915 959 959 1915 960 960 1915 939 939 1916 960 960 1916 961 961 1916 961 961 1917 960 960 1917 1170 1170 1917 961 961 1918 1170 1170 1918 941 941 1918 941 941 1919 1170 1170 1919 1168 1168 1919 941 941 1920 1168 1168 1920 962 962 1920 962 962 1921 1168 1168 1921 963 963 1921 962 962 1922 963 963 1922 944 944 1922 944 944 1923 963 963 1923 964 964 1923 944 944 1924 964 964 1924 945 945 1924 945 945 1925 964 964 1925 1166 1166 1925 945 945 1926 1166 1166 1926 965 965 1926 965 965 1927 1166 1166 1927 966 966 1927 965 965 1928 966 966 1928 968 968 1928 968 968 1929 966 966 1929 967 967 1929 968 968 1930 967 967 1930 969 969 1930 969 969 1931 967 967 1931 1164 1164 1931 969 969 1932 1164 1164 1932 946 946 1932 946 946 1933 1164 1164 1933 1163 1163 1933 946 946 1934 1163 1163 1934 948 948 1934 948 948 1935 1163 1163 1935 970 970 1935 948 948 1936 970 970 1936 950 950 1936 950 950 1937 970 970 1937 1160 1160 1937 950 950 1938 1160 1160 1938 971 971 1938 971 971 1939 1160 1160 1939 972 972 1939 971 971 1940 972 972 1940 973 973 1940 973 973 1941 972 972 1941 1159 1159 1941 973 973 1942 1159 1159 1942 974 974 1942 974 974 1943 1159 1159 1943 979 979 1943 974 974 1944 979 979 1944 975 975 1944 975 975 1945 979 979 1945 976 976 1945 975 975 1946 976 976 1946 952 952 1946 952 952 1947 976 976 1947 981 981 1947 952 952 1948 981 981 1948 953 953 1948 953 953 1949 981 981 1949 977 977 1949 953 953 1950 977 977 1950 954 954 1950 954 954 1951 977 977 1951 978 978 1951 954 954 1952 978 978 1952 955 955 1952 955 955 1953 978 978 1953 391 391 1953 979 979 1954 996 996 1954 976 976 1954 976 976 1955 996 996 1955 980 980 1955 976 976 1956 980 980 1956 981 981 1956 981 981 1957 980 980 1957 999 999 1957 981 981 1958 999 999 1958 977 977 1958 977 977 1959 999 999 1959 1000 1000 1959 977 977 1960 1000 1000 1960 978 978 1960 978 978 1961 1000 1000 1961 391 391 1961 1176 1176 1962 982 982 1962 1174 1174 1962 1174 1174 1963 982 982 1963 1001 1001 1963 1174 1174 1964 1001 1001 1964 983 983 1964 983 983 1965 1001 1001 1965 1002 1002 1965 983 983 1966 1002 1002 1966 1172 1172 1966 1172 1172 1967 1002 1002 1967 1003 1003 1967 1172 1172 1968 1003 1003 1968 984 984 1968 984 984 1969 1003 1003 1969 1006 1006 1969 984 984 1970 1006 1006 1970 1171 1171 1970 1171 1171 1971 1006 1006 1971 1007 1007 1971 1171 1171 1972 1007 1007 1972 1169 1169 1972 1169 1169 1973 1007 1007 1973 1008 1008 1973 1169 1169 1974 1008 1008 1974 985 985 1974 985 985 1975 1008 1008 1975 1009 1009 1975 985 985 1976 1009 1009 1976 986 986 1976 986 986 1977 1009 1009 1977 1010 1010 1977 986 986 1978 1010 1010 1978 1167 1167 1978 1167 1167 1979 1010 1010 1979 1012 1012 1979 1167 1167 1980 1012 1012 1980 987 987 1980 987 987 1981 1012 1012 1981 988 988 1981 987 987 1982 988 988 1982 1165 1165 1982 1165 1165 1983 988 988 1983 1013 1013 1983 1165 1165 1984 1013 1013 1984 990 990 1984 990 990 1985 1013 1013 1985 989 989 1985 990 990 1986 989 989 1986 1162 1162 1986 1162 1162 1987 989 989 1987 1015 1015 1987 1162 1162 1988 1015 1015 1988 991 991 1988 991 991 1989 1015 1015 1989 1017 1017 1989 991 991 1990 1017 1017 1990 1161 1161 1990 1161 1161 1991 1017 1017 1991 992 992 1991 1161 1161 1992 992 992 1992 993 993 1992 993 993 1993 992 992 1993 994 994 1993 993 993 1994 994 994 1994 1158 1158 1994 1158 1158 1995 994 994 1995 995 995 1995 1158 1158 1996 995 995 1996 1157 1157 1996 1157 1157 1997 995 995 1997 1020 1020 1997 1157 1157 1998 1020 1020 1998 996 996 1998 996 996 1999 1020 1020 1999 997 997 1999 996 996 2000 997 997 2000 980 980 2000 980 980 2001 997 997 2001 1021 1021 2001 980 980 2002 1021 1021 2002 999 999 2002 999 999 2003 1021 1021 2003 998 998 2003 999 999 2004 998 998 2004 1000 1000 2004 1000 1000 2005 998 998 2005 391 391 2005 982 982 2006 1135 1135 2006 1001 1001 2006 1001 1001 2007 1135 1135 2007 1023 1023 2007 1001 1001 2008 1023 1023 2008 1002 1002 2008 1002 1002 2009 1023 1023 2009 1004 1004 2009 1002 1002 2010 1004 1004 2010 1003 1003 2010 1003 1003 2011 1004 1004 2011 1005 1005 2011 1003 1003 2012 1005 1005 2012 1006 1006 2012 1006 1006 2013 1005 1005 2013 1026 1026 2013 1006 1006 2014 1026 1026 2014 1007 1007 2014 1007 1007 2015 1026 1026 2015 1027 1027 2015 1007 1007 2016 1027 1027 2016 1008 1008 2016 1008 1008 2017 1027 1027 2017 1028 1028 2017 1008 1008 2018 1028 1028 2018 1009 1009 2018 1009 1009 2019 1028 1028 2019 1029 1029 2019 1009 1009 2020 1029 1029 2020 1010 1010 2020 1010 1010 2021 1029 1029 2021 1011 1011 2021 1010 1010 2022 1011 1011 2022 1012 1012 2022 1012 1012 2023 1011 1011 2023 1033 1033 2023 1012 1012 2024 1033 1033 2024 988 988 2024 988 988 2025 1033 1033 2025 1035 1035 2025 988 988 2026 1035 1035 2026 1013 1013 2026 1013 1013 2027 1035 1035 2027 1014 1014 2027 1013 1013 2028 1014 1014 2028 989 989 2028 989 989 2029 1014 1014 2029 1016 1016 2029 989 989 2030 1016 1016 2030 1015 1015 2030 1015 1015 2031 1016 1016 2031 1037 1037 2031 1015 1015 2032 1037 1037 2032 1017 1017 2032 1017 1017 2033 1037 1037 2033 1038 1038 2033 1017 1017 2034 1038 1038 2034 992 992 2034 992 992 2035 1038 1038 2035 1018 1018 2035 992 992 2036 1018 1018 2036 994 994 2036 994 994 2037 1018 1018 2037 1042 1042 2037 994 994 2038 1042 1042 2038 995 995 2038 995 995 2039 1042 1042 2039 1019 1019 2039 995 995 2040 1019 1019 2040 1020 1020 2040 1020 1020 2041 1019 1019 2041 1045 1045 2041 1020 1020 2042 1045 1045 2042 997 997 2042 997 997 2043 1045 1045 2043 1046 1046 2043 997 997 2044 1046 1046 2044 1021 1021 2044 1021 1021 2045 1046 1046 2045 1022 1022 2045 1021 1021 2046 1022 1022 2046 998 998 2046 998 998 2047 1022 1022 2047 391 391 2047 1135 1135 2048 1138 1138 2048 1023 1023 2048 1023 1023 2049 1138 1138 2049 1024 1024 2049 1023 1023 2050 1024 1024 2050 1004 1004 2050 1004 1004 2051 1024 1024 2051 1025 1025 2051 1004 1004 2052 1025 1025 2052 1005 1005 2052 1005 1005 2053 1025 1025 2053 265 265 2053 1005 1005 2054 265 265 2054 1026 1026 2054 1026 1026 2055 265 265 2055 268 268 2055 1026 1026 2056 268 268 2056 1027 1027 2056 1027 1027 2057 268 268 2057 269 269 2057 1027 1027 2058 269 269 2058 1028 1028 2058 1028 1028 2059 269 269 2059 1030 1030 2059 1028 1028 2060 1030 1030 2060 1029 1029 2060 1029 1029 2061 1030 1030 2061 1031 1031 2061 1029 1029 2062 1031 1031 2062 1011 1011 2062 1011 1011 2063 1031 1031 2063 1032 1032 2063 1011 1011 2064 1032 1032 2064 1033 1033 2064 1033 1033 2065 1032 1032 2065 1034 1034 2065 1033 1033 2066 1034 1034 2066 1035 1035 2066 1035 1035 2067 1034 1034 2067 1036 1036 2067 1035 1035 2068 1036 1036 2068 1014 1014 2068 1014 1014 2069 1036 1036 2069 273 273 2069 1014 1014 2070 273 273 2070 1016 1016 2070 1016 1016 2071 273 273 2071 275 275 2071 1016 1016 2072 275 275 2072 1037 1037 2072 1037 1037 2073 275 275 2073 1039 1039 2073 1037 1037 2074 1039 1039 2074 1038 1038 2074 1038 1038 2075 1039 1039 2075 1040 1040 2075 1038 1038 2076 1040 1040 2076 1018 1018 2076 1018 1018 2077 1040 1040 2077 1041 1041 2077 1018 1018 2078 1041 1041 2078 1042 1042 2078 1042 1042 2079 1041 1041 2079 1043 1043 2079 1042 1042 2080 1043 1043 2080 1019 1019 2080 1019 1019 2081 1043 1043 2081 1044 1044 2081 1019 1019 2082 1044 1044 2082 1045 1045 2082 1045 1045 2083 1044 1044 2083 279 279 2083 1045 1045 2084 279 279 2084 1046 1046 2084 1046 1046 2085 279 279 2085 1047 1047 2085 1046 1046 2086 1047 1047 2086 1022 1022 2086 1022 1022 2087 1047 1047 2087 391 391 2087 391 391 2088 449 449 2088 1048 1048 2088 1048 1048 2089 449 449 2089 1049 1049 2089 1048 1048 2090 1049 1049 2090 1050 1050 2090 1050 1050 2091 1049 1049 2091 451 451 2091 1050 1050 2092 451 451 2092 476 476 2092 476 476 2093 451 451 2093 452 452 2093 476 476 2094 452 452 2094 478 478 2094 478 478 2095 452 452 2095 1051 1051 2095 478 478 2096 1051 1051 2096 479 479 2096 479 479 2097 1051 1051 2097 453 453 2097 479 479 2098 453 453 2098 1052 1052 2098 1052 1052 2099 453 453 2099 1054 1054 2099 1052 1052 2100 1054 1054 2100 1053 1053 2100 1053 1053 2101 1054 1054 2101 1055 1055 2101 1053 1053 2102 1055 1055 2102 1056 1056 2102 1056 1056 2103 1055 1055 2103 457 457 2103 1056 1056 2104 457 457 2104 1057 1057 2104 1057 1057 2105 457 457 2105 1058 1058 2105 1057 1057 2106 1058 1058 2106 1059 1059 2106 1059 1059 2107 1058 1058 2107 459 459 2107 1059 1059 2108 459 459 2108 480 480 2108 480 480 2109 459 459 2109 1061 1061 2109 480 480 2110 1061 1061 2110 1060 1060 2110 1060 1060 2111 1061 1061 2111 1062 1062 2111 1060 1060 2112 1062 1062 2112 1063 1063 2112 1063 1063 2113 1062 1062 2113 461 461 2113 1063 1063 2114 461 461 2114 483 483 2114 483 483 2115 461 461 2115 463 463 2115 483 483 2116 463 463 2116 1064 1064 2116 1064 1064 2117 463 463 2117 1065 1065 2117 1064 1064 2118 1065 1065 2118 1066 1066 2118 1066 1066 2119 1065 1065 2119 1067 1067 2119 1066 1066 2120 1067 1067 2120 1068 1068 2120 1068 1068 2121 1067 1067 2121 466 466 2121 1068 1068 2122 466 466 2122 484 484 2122 484 484 2123 466 466 2123 468 468 2123 484 484 2124 468 468 2124 1069 1069 2124 1069 1069 2125 468 468 2125 469 469 2125 1069 1069 2126 469 469 2126 485 485 2126 485 485 2127 469 469 2127 471 471 2127 485 485 2128 471 471 2128 486 486 2128 486 486 2129 471 471 2129 472 472 2129 486 486 2130 472 472 2130 487 487 2130 487 487 2131 472 472 2131 473 473 2131 487 487 2132 473 473 2132 488 488 2132 488 488 2133 473 473 2133 475 475 2133 488 488 2134 475 475 2134 489 489 2134 489 489 2135 475 475 2135 201 201 2135 1116 1116 2136 1114 1114 2136 1070 1070 2136 1070 1070 2137 1114 1114 2137 1071 1071 2137 1070 1070 2138 1071 1071 2138 450 450 2138 450 450 2139 1071 1071 2139 1072 1072 2139 450 450 2140 1072 1072 2140 1073 1073 2140 1073 1073 2141 1072 1072 2141 1074 1074 2141 1073 1073 2142 1074 1074 2142 1075 1075 2142 1075 1075 2143 1074 1074 2143 176 176 2143 1075 1075 2144 176 176 2144 1076 1076 2144 1076 1076 2145 176 176 2145 1077 1077 2145 1076 1076 2146 1077 1077 2146 454 454 2146 454 454 2147 1077 1077 2147 160 160 2147 454 454 2148 160 160 2148 455 455 2148 455 455 2149 160 160 2149 136 136 2149 455 455 2150 136 136 2150 456 456 2150 456 456 2151 136 136 2151 1078 1078 2151 456 456 2152 1078 1078 2152 1079 1079 2152 1079 1079 2153 1078 1078 2153 1080 1080 2153 1079 1079 2154 1080 1080 2154 1081 1081 2154 1081 1081 2155 1080 1080 2155 97 97 2155 1081 1081 2156 97 97 2156 458 458 2156 458 458 2157 97 97 2157 68 68 2157 458 458 2158 68 68 2158 460 460 2158 460 460 2159 68 68 2159 55 55 2159 460 460 2160 55 55 2160 1082 1082 2160 1082 1082 2161 55 55 2161 1083 1083 2161 1082 1082 2162 1083 1083 2162 462 462 2162 462 462 2163 1083 1083 2163 1084 1084 2163 462 462 2164 1084 1084 2164 1085 1085 2164 1085 1085 2165 1084 1084 2165 1086 1086 2165 1085 1085 2166 1086 1086 2166 464 464 2166 464 464 2167 1086 1086 2167 23 23 2167 464 464 2168 23 23 2168 465 465 2168 465 465 2169 23 23 2169 1087 1087 2169 465 465 2170 1087 1087 2170 467 467 2170 467 467 2171 1087 1087 2171 1088 1088 2171 467 467 2172 1088 1088 2172 1089 1089 2172 1089 1089 2173 1088 1088 2173 12 12 2173 1089 1089 2174 12 12 2174 1090 1090 2174 1090 1090 2175 12 12 2175 7 7 2175 1090 1090 2176 7 7 2176 470 470 2176 470 470 2177 7 7 2177 1092 1092 2177 470 470 2178 1092 1092 2178 1091 1091 2178 1091 1091 2179 1092 1092 2179 1 1 2179 1091 1091 2180 1 1 2180 474 474 2180 474 474 2181 1 1 2181 201 201 2181 424 424 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 426 426 2184 426 426 2185 1095 1095 2185 1096 1096 2185 426 426 2186 1096 1096 2186 427 427 2186 427 427 2187 1096 1096 2187 248 248 2187 427 427 2188 248 248 2188 428 428 2188 428 428 2189 248 248 2189 1097 1097 2189 428 428 2190 1097 1097 2190 429 429 2190 429 429 2191 1097 1097 2191 1098 1098 2191 429 429 2192 1098 1098 2192 431 431 2192 431 431 2193 1098 1098 2193 251 251 2193 431 431 2194 251 251 2194 1099 1099 2194 1099 1099 2195 251 251 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 433 433 2196 433 433 2197 1100 1100 2197 253 253 2197 433 433 2198 253 253 2198 1101 1101 2198 1101 1101 2199 253 253 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 255 255 2201 1102 1102 2202 255 255 2202 436 436 2202 436 436 2203 255 255 2203 256 256 2203 436 436 2204 256 256 2204 1104 1104 2204 1104 1104 2205 256 256 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 438 438 2206 438 438 2207 1105 1105 2207 257 257 2207 438 438 2208 257 257 2208 439 439 2208 439 439 2209 257 257 2209 258 258 2209 439 439 2210 258 258 2210 1106 1106 2210 1106 1106 2211 258 258 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 441 441 2212 441 441 2213 1107 1107 2213 1108 1108 2213 441 441 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 259 259 2215 1109 1109 2216 259 259 2216 1110 1110 2216 1110 1110 2217 259 259 2217 260 260 2217 1110 1110 2218 260 260 2218 1111 1111 2218 1111 1111 2219 260 260 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 445 445 2220 445 445 2221 1112 1112 2221 261 261 2221 445 445 2222 261 261 2222 447 447 2222 447 447 2223 261 261 2223 262 262 2223 447 447 2224 262 262 2224 1113 1113 2224 1113 1113 2225 262 262 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 391 391 2228 1117 1117 2229 391 391 2229 1047 1047 2229 264 264 2230 1118 1118 2230 1119 1119 2230 1119 1119 2231 1118 1118 2231 39 39 2231 1119 1119 2232 39 39 2232 1120 1120 2232 1120 1120 2233 39 39 2233 392 392 2233 1120 1120 2234 392 392 2234 266 266 2234 266 266 2235 392 392 2235 1121 1121 2235 266 266 2236 1121 1121 2236 267 267 2236 267 267 2237 1121 1121 2237 1122 1122 2237 267 267 2238 1122 1122 2238 1123 1123 2238 1123 1123 2239 1122 1122 2239 71 71 2239 1123 1123 2240 71 71 2240 270 270 2240 270 270 2241 71 71 2241 85 85 2241 270 270 2242 85 85 2242 271 271 2242 271 271 2243 85 85 2243 1124 1124 2243 271 271 2244 1124 1124 2244 272 272 2244 272 272 2245 1124 1124 2245 1126 1126 2245 272 272 2246 1126 1126 2246 1125 1125 2246 1125 1125 2247 1126 1126 2247 1127 1127 2247 1125 1125 2248 1127 1127 2248 1128 1128 2248 1128 1128 2249 1127 1127 2249 161 161 2249 1128 1128 2250 161 161 2250 1129 1129 2250 1129 1129 2251 161 161 2251 162 162 2251 1129 1129 2252 162 162 2252 274 274 2252 274 274 2253 162 162 2253 289 289 2253 274 274 2254 289 289 2254 1130 1130 2254 1130 1130 2255 289 289 2255 1131 1131 2255 1130 1130 2256 1131 1131 2256 276 276 2256 276 276 2257 1131 1131 2257 219 219 2257 276 276 2258 219 219 2258 277 277 2258 277 277 2259 219 219 2259 1132 1132 2259 277 277 2260 1132 1132 2260 278 278 2260 278 278 2261 1132 1132 2261 280 280 2261 278 278 2262 280 280 2262 1133 1133 2262 1133 1133 2263 280 280 2263 1134 1134 2263 1133 1133 2264 1134 1134 2264 1117 1117 2264 1117 1117 2265 1134 1134 2265 391 391 2265 3 3 2266 201 201 2266 424 424 2266 1176 1176 2267 425 425 2267 982 982 2267 982 982 2268 425 425 2268 1136 1136 2268 982 982 2269 1136 1136 2269 1135 1135 2269 1135 1135 2270 1136 1136 2270 1137 1137 2270 1135 1135 2271 1137 1137 2271 1138 1138 2271 1138 1138 2272 1137 1137 2272 1139 1139 2272 1138 1138 2273 1139 1139 2273 264 264 2273 264 264 2274 1139 1139 2274 1140 1140 2274 264 264 2275 1140 1140 2275 1118 1118 2275 1118 1118 2276 1140 1140 2276 430 430 2276 1118 1118 2277 430 430 2277 407 407 2277 407 407 2278 430 430 2278 1142 1142 2278 407 407 2279 1142 1142 2279 1141 1141 2279 1141 1141 2280 1142 1142 2280 432 432 2280 1141 1141 2281 432 432 2281 410 410 2281 410 410 2282 432 432 2282 434 434 2282 410 410 2283 434 434 2283 1144 1144 2283 1144 1144 2284 434 434 2284 1143 1143 2284 1144 1144 2285 1143 1143 2285 1145 1145 2285 1145 1145 2286 1143 1143 2286 435 435 2286 1145 1145 2287 435 435 2287 1146 1146 2287 1146 1146 2288 435 435 2288 1147 1147 2288 1146 1146 2289 1147 1147 2289 1148 1148 2289 1148 1148 2290 1147 1147 2290 437 437 2290 1148 1148 2291 437 437 2291 1149 1149 2291 1149 1149 2292 437 437 2292 1150 1150 2292 1149 1149 2293 1150 1150 2293 413 413 2293 413 413 2294 1150 1150 2294 440 440 2294 413 413 2295 440 440 2295 1151 1151 2295 1151 1151 2296 440 440 2296 1152 1152 2296 1151 1151 2297 1152 1152 2297 416 416 2297 416 416 2298 1152 1152 2298 1153 1153 2298 416 416 2299 1153 1153 2299 418 418 2299 418 418 2300 1153 1153 2300 442 442 2300 418 418 2301 442 442 2301 419 419 2301 419 419 2302 442 442 2302 443 443 2302 419 419 2303 443 443 2303 421 421 2303 421 421 2304 443 443 2304 444 444 2304 421 421 2305 444 444 2305 1154 1154 2305 1154 1154 2306 444 444 2306 446 446 2306 1154 1154 2307 446 446 2307 423 423 2307 423 423 2308 446 446 2308 448 448 2308 423 423 2309 448 448 2309 1155 1155 2309 1155 1155 2310 448 448 2310 1156 1156 2310 1155 1155 2311 1156 1156 2311 391 391 2311 996 996 2312 979 979 2312 1157 1157 2312 1157 1157 2313 979 979 2313 1159 1159 2313 1157 1157 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 972 972 2315 1158 1158 2316 972 972 2316 993 993 2316 993 993 2317 972 972 2317 1160 1160 2317 993 993 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 970 970 2319 1161 1161 2320 970 970 2320 991 991 2320 991 991 2321 970 970 2321 1163 1163 2321 991 991 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 990 990 2324 990 990 2325 1164 1164 2325 967 967 2325 990 990 2326 967 967 2326 1165 1165 2326 1165 1165 2327 967 967 2327 966 966 2327 1165 1165 2328 966 966 2328 987 987 2328 987 987 2329 966 966 2329 1166 1166 2329 987 987 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 964 964 2331 1167 1167 2332 964 964 2332 986 986 2332 986 986 2333 964 964 2333 963 963 2333 986 986 2334 963 963 2334 985 985 2334 985 985 2335 963 963 2335 1168 1168 2335 985 985 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 960 960 2339 1171 1171 2340 960 960 2340 984 984 2340 984 984 2341 960 960 2341 959 959 2341 984 984 2342 959 959 2342 1172 1172 2342 1172 1172 2343 959 959 2343 958 958 2343 1172 1172 2344 958 958 2344 983 983 2344 983 983 2345 958 958 2345 1173 1173 2345 983 983 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 3 3 2350 3 3 2351 1177 1177 2351 201 201 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/parking_1.dae b/stack_master/config/NUC2/slam/f110_description/meshes/parking_1.dae new file mode 100755 index 0000000..b58c2e3 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/parking_1.dae @@ -0,0 +1,310 @@ + + + + + Blender User + Blender 2.78.0 + + 2017-04-24T15:08:21 + 2017-04-24T15:08:21 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0.64 0.03905561 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 0 0 1 0 7 1 2 1 3 1 5 2 6 2 7 2 1 3 4 3 5 3 2 4 4 4 0 4 7 5 1 5 5 5 3 0 2 0 0 0 7 1 6 1 2 1 5 2 4 2 6 2 1 3 0 3 4 3 2 4 6 4 4 4 7 5 3 5 1 5

+
+
+
+ + + + -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 1 -1 -1 1 -1 1 1 1 -1 1 1 1 + + + + + + + + + + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

1 0 2 0 0 0 3 1 6 1 2 1 7 2 4 2 6 2 5 3 0 3 4 3 6 4 0 4 2 4 3 5 5 5 7 5 1 0 3 0 2 0 3 1 7 1 6 1 7 2 5 2 4 2 5 3 1 3 0 3 6 4 4 4 0 4 3 5 1 5 5 5

+
+
+
+
+ + + + + 0.1354637 0 0 -3.735135 0 0.3 0 3.623344 0 0 0.15 0.1530263 0 0 0 1 + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.173696 0 0 -4.197643 0 5.482737 0 4.50726 0 0 1 1.015023 0 0 0 1 + + + + 0.1354637 0 0 -3.735135 0 0.3 0 5.201571 0 0 0.15 0.1727542 0 0 0 1 + + + + 0.225 0 0 -3.795233 0 0.38 0 4.425851 0 0 0.005 0.01 0 0 0 1 + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.STL b/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.STL new file mode 100755 index 0000000..1f628d7 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.dae b/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.dae new file mode 100755 index 0000000..2e35588 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/right_front_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:00 2016 GMT + Tue Jan 19 20:36:00 2016 GMT + Y_UP + + + + + + -0.0499122 5.7649e-17 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 -1.66397e-16 0.035 0.05 -1.65094e-16 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.59801e-16 0.045 6.93746e-18 -5.78552e-17 0.045 0.0397192 -0.00473093 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.0399297 0.00236963 0.045 -0.0399297 -0.00236963 0.045 -0.0393692 0.00707561 0.045 -0.0128108 0.0378931 0.045 0.0105435 0.0385854 0.045 0.0193117 0.0350294 0.045 0.0331762 0.0223459 0.045 0.0397192 0.00473093 0.045 0.0374968 0.0139281 0.045 0.04 -1.4766e-16 -6.16663e-18 0.0355863 0.0182652 -4.53474e-18 0.0374968 0.0139281 -5.0552e-18 0.0388809 0.00939544 -5.50469e-18 0.0397192 0.00473093 -5.87691e-18 0.0269993 0.0295133 -2.625e-18 0.0303004 0.0261129 -3.31105e-18 0.0331762 0.0223459 -3.95062e-18 0.0193117 0.0350294 -1.15249e-18 0.0233192 0.0324995 -1.9021e-18 0.00118533 0.0399824 1.89998e-18 0.00590586 0.0395616 1.15031e-18 0.0105435 0.0385854 3.84502e-19 0.0150331 0.0370676 -3.86709e-19 -0.00823914 0.0391423 3.30915e-18 -0.00355184 0.039842 2.62297e-18 -0.0252035 0.031061 5.50351e-18 -0.0213529 0.0338238 5.0538e-18 -0.0172026 0.0361119 4.53315e-18 -0.0128108 0.0378931 3.94887e-18 -0.0317942 0.024272 6.16592e-18 -0.0287003 0.027862 5.87596e-18 -0.0393692 0.00707561 6.43796e-18 -0.038256 0.0116823 6.50631e-18 -0.0366058 0.0161249 6.48333e-18 -0.0344417 0.0203412 6.36933e-18 -0.0393692 -0.00707561 5.70081e-18 -0.0399297 -0.00236963 6.03237e-18 -0.0399297 0.00236963 6.27924e-18 -0.0344417 -0.0203412 4.25015e-18 -0.0366058 -0.0161249 4.8034e-18 -0.038256 -0.0116823 5.28923e-18 -0.0287003 -0.027862 2.97325e-18 -0.0317942 -0.024272 3.63723e-18 -0.0128108 -0.0378931 1.1058e-21 -0.0172026 -0.0361119 7.70954e-19 -0.0213529 -0.0338238 1.52998e-18 -0.0252035 -0.031061 2.26753e-18 -0.00355184 -0.039842 -1.52783e-18 -0.00823914 -0.0391423 -7.68758e-19 0.0105435 -0.0385854 -3.63539e-18 0.00590586 -0.0395616 -2.97128e-18 0.00118533 -0.0399824 -2.26546e-18 0.0233192 -0.0324995 -5.28794e-18 0.0193117 -0.0350294 -4.80191e-18 0.0150331 -0.0370676 -4.24847e-18 0.0331762 -0.0223459 -6.27865e-18 0 -5.55112e-17 0 0.0303004 -0.0261129 -6.03154e-18 0.0269993 -0.0295133 -5.69975e-18 0.0397192 -0.00473093 -6.36979e-18 0.0388809 -0.00939544 -6.48352e-18 0.0374968 -0.0139281 -6.50625e-18 0.0355863 -0.0182652 -6.43764e-18 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 5.89513e-17 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -1.71218e-16 0.01 0.0496593 -1.70298e-16 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -1.67871e-16 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -1.64102e-16 0.00292893 0.045 -1.59248e-16 0.00133975 0.0446841 0.00532229 0.00133975 0.039923 0.0148293 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0366703 0.0216574 0.000340742 -0.038747 0.0228839 0.00133975 -0.0389744 0.0171683 0.000340742 -0.0407314 0.0124382 0.000340742 -0.0411816 0.0181406 0.00133975 -0.043038 0.0131426 0.00133975 -0.0442904 0.00796006 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0425134 0.00252295 0.000340742 -0.0425134 -0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0442904 -0.00796006 0.00133975 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0357684 -0.027306 0.00133975 -0.0268343 -0.0330707 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0227346 -0.0360124 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.00877226 -0.0416749 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00378166 -0.04242 0.000340742 -0.00399582 -0.0448222 0.00133975 0.0118614 -0.0434086 0.00133975 0.0169122 -0.041701 0.00133975 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.0353229 -0.0237918 0.000340742 0.0421839 -0.0156691 0.00133975 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0425882 -1.5364e-16 0.000340742 0.0397192 0.00473093 -4.14219e-18 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 -3.76997e-18 0.0413967 0.0100034 0.000340742 0.0374968 0.0139281 -3.32047e-18 0.0355863 0.0182652 -2.80002e-18 0.0378889 0.019447 0.000340742 0.0331762 0.0223459 -2.2159e-18 0.0353229 0.0237918 0.000340742 0.0303004 0.0261129 -1.57633e-18 0.0269993 0.0295133 -8.90275e-19 0.0287463 0.031423 0.000340742 0.0233192 0.0324995 -1.67372e-19 0.0193117 0.0350294 5.82232e-19 0.0150331 0.0370676 1.34801e-18 0.0105435 0.0385854 2.11922e-18 0.00590586 0.0395616 2.88504e-18 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 3.6347e-18 -0.00355184 0.039842 4.3577e-18 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 5.04387e-18 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 5.68359e-18 -0.0172026 0.0361119 6.26788e-18 -0.0213529 0.0338238 6.78853e-18 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 7.23823e-18 -0.0287003 0.027862 7.61068e-18 -0.0317942 0.024272 7.90065e-18 -0.0338514 0.0258425 0.000340742 -0.0344417 0.0203412 8.10405e-18 -0.0366058 0.0161249 8.21805e-18 -0.038256 0.0116823 8.24104e-18 -0.0393692 0.00707561 8.17269e-18 -0.0399297 0.00236963 8.01396e-18 -0.0399297 -0.00236963 7.76709e-18 -0.0393692 -0.00707561 7.43554e-18 -0.0419166 -0.00753344 0.000340742 -0.038256 -0.0116823 7.02396e-18 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 6.53813e-18 -0.0389744 -0.0171683 0.000340742 -0.0366703 -0.0216574 0.000340742 -0.0344417 -0.0203412 5.98487e-18 -0.0338514 -0.0258425 0.000340742 -0.0317942 -0.024272 5.37195e-18 -0.0305573 -0.0296648 0.000340742 -0.0287003 -0.027862 4.70797e-18 -0.0252035 -0.031061 4.00225e-18 -0.0213529 -0.0338238 3.2647e-18 -0.0183157 -0.0384485 0.000340742 -0.0172026 -0.0361119 2.50568e-18 -0.0128108 -0.0378931 1.73583e-18 -0.0136397 -0.0403449 0.000340742 -0.00823914 -0.0391423 9.65965e-19 -0.00355184 -0.039842 2.06893e-19 0.00118533 -0.0399824 -5.30732e-19 0.00590586 -0.0395616 -1.23656e-18 0.00126203 -0.0425695 0.000340742 0.006288 -0.0421214 0.000340742 0.0105435 -0.0385854 -1.90067e-18 0.0112257 -0.0410821 0.000340742 0.0150331 -0.0370676 -2.51375e-18 0.0160058 -0.039466 0.000340742 0.0193117 -0.0350294 -3.06719e-18 0.0205612 -0.037296 0.000340742 0.024828 -0.0346023 0.000340742 0.0233192 -0.0324995 -3.55322e-18 0.0269993 -0.0295133 -3.96502e-18 0.0303004 -0.0261129 -4.29681e-18 0.032261 -0.0278025 0.000340742 0.0331762 -0.0223459 -4.54393e-18 0.0355863 -0.0182652 -4.70291e-18 0.0378889 -0.019447 0.000340742 0.039923 -0.0148293 0.000340742 0.0374968 -0.0139281 -4.77152e-18 0.0388809 -0.00939544 -4.7488e-18 0.0413967 -0.0100034 0.000340742 0.0397192 -0.00473093 -4.63506e-18 0.0422893 -0.00503704 0.000340742 0.04 -1.4766e-16 -4.43191e-18 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.038256 0.0116823 0.045 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0252035 0.031061 0.045 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0425882 -1.55948e-16 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -1.7187e-16 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.0355863 -0.0182652 0.045 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0366058 -0.0161249 0.045 -0.038256 -0.0116823 0.045 -0.0407314 -0.0124382 0.0446593 -0.0393692 -0.00707561 0.045 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0213529 0.0338238 0.045 -0.0172026 0.0361119 0.045 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.00590586 0.0395616 0.045 0.0112257 0.0410821 0.0446593 0.0150331 0.0370676 0.045 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.0233192 0.0324995 0.045 0.0269993 0.0295133 0.045 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.0303004 0.0261129 0.045 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0355863 0.0182652 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0388809 0.00939544 0.045 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.50004e-16 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.61453e-16 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.66141e-16 0.0420711 0.0486603 -1.69694e-16 0.04 0.05 -1.7252e-16 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 -3.0859e-18 0.998244 0.0592405 3.0859e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 -1.54166e-16 5.20908e-17 -1 -1.54166e-16 5.20909e-17 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 210 210 0 0 0 0 0 0 1 210 210 1 209 209 1 0 0 2 209 209 2 1 1 2 1 1 3 209 209 3 207 207 3 1 1 4 207 207 4 2 2 4 2 2 5 207 207 5 206 206 5 2 2 6 206 206 6 3 3 6 3 3 7 206 206 7 204 204 7 3 3 8 204 204 8 4 4 8 4 4 9 204 204 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 202 202 15 9 9 16 202 202 16 719 719 16 719 719 17 202 202 17 11 11 17 719 719 18 11 11 18 718 718 18 718 718 19 11 11 19 200 200 19 718 718 20 200 200 20 12 12 20 12 12 21 200 200 21 198 198 21 12 12 22 198 198 22 13 13 22 13 13 23 198 198 23 197 197 23 13 13 24 197 197 24 702 702 24 702 702 25 197 197 25 14 14 25 702 702 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 195 195 29 16 16 30 195 195 30 695 695 30 695 695 31 195 195 31 194 194 31 695 695 32 194 194 32 693 693 32 693 693 33 194 194 33 193 193 33 693 693 34 193 193 34 680 680 34 680 680 35 193 193 35 192 192 35 680 680 36 192 192 36 678 678 36 678 678 37 192 192 37 191 191 37 678 678 38 191 191 38 18 18 38 18 18 39 191 191 39 190 190 39 18 18 40 190 190 40 679 679 40 679 679 41 190 190 41 188 188 41 679 679 42 188 188 42 20 20 42 20 20 43 188 188 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 657 657 50 657 657 51 26 26 51 27 27 51 657 657 52 27 27 52 28 28 52 28 28 53 27 27 53 185 185 53 28 28 54 185 185 54 542 542 54 542 542 55 185 185 55 29 29 55 542 542 56 29 29 56 656 656 56 656 656 57 29 29 57 30 30 57 656 656 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 180 180 67 39 39 68 180 180 68 40 40 68 40 40 69 180 180 69 41 41 69 40 40 70 41 41 70 543 543 70 543 543 71 41 41 71 42 42 71 543 543 72 42 42 72 43 43 72 43 43 73 42 42 73 177 177 73 43 43 74 177 177 74 44 44 74 44 44 75 177 177 75 176 176 75 44 44 76 176 176 76 619 619 76 619 619 77 176 176 77 175 175 77 619 619 78 175 175 78 45 45 78 45 45 79 175 175 79 46 46 79 45 45 80 46 46 80 607 607 80 607 607 81 46 46 81 174 174 81 607 607 82 174 174 82 547 547 82 547 547 83 174 174 83 248 248 83 547 547 84 248 248 84 606 606 84 606 606 85 248 248 85 247 247 85 606 606 86 247 247 86 47 47 86 47 47 87 247 247 87 246 246 87 47 47 88 246 246 88 48 48 88 48 48 89 246 246 89 244 244 89 48 48 90 244 244 90 49 49 90 49 49 91 244 244 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 536 536 94 536 536 95 51 51 95 52 52 95 536 536 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 853 853 98 853 853 99 54 54 99 240 240 99 853 853 100 240 240 100 56 56 100 56 56 101 240 240 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 840 840 108 840 840 109 62 62 109 239 239 109 840 840 110 239 239 110 63 63 110 63 63 111 239 239 111 64 64 111 63 63 112 64 64 112 834 834 112 834 834 113 64 64 113 65 65 113 834 834 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 833 833 116 833 833 117 67 67 117 237 237 117 833 833 118 237 237 118 819 819 118 819 819 119 237 237 119 236 236 119 819 819 120 236 236 120 68 68 120 68 68 121 236 236 121 235 235 121 68 68 122 235 235 122 69 69 122 69 69 123 235 235 123 232 232 123 69 69 124 232 232 124 70 70 124 70 70 125 232 232 125 231 231 125 70 70 126 231 231 126 71 71 126 71 71 127 231 231 127 230 230 127 71 71 128 230 230 128 538 538 128 538 538 129 230 230 129 72 72 129 538 538 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 802 802 134 802 802 135 76 76 135 77 77 135 802 802 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 226 226 139 80 80 140 226 226 140 81 81 140 81 81 141 226 226 141 82 82 141 81 81 142 82 82 142 539 539 142 539 539 143 82 82 143 83 83 143 539 539 144 83 83 144 781 781 144 781 781 145 83 83 145 224 224 145 781 781 146 224 224 146 84 84 146 84 84 147 224 224 147 85 85 147 84 84 148 85 85 148 780 780 148 780 780 149 85 85 149 86 86 149 780 780 150 86 86 150 87 87 150 87 87 151 86 86 151 221 221 151 87 87 152 221 221 152 88 88 152 88 88 153 221 221 153 220 220 153 88 88 154 220 220 154 89 89 154 89 89 155 220 220 155 219 219 155 89 89 156 219 219 156 768 768 156 768 768 157 219 219 157 90 90 157 768 768 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 216 216 161 93 93 162 216 216 162 94 94 162 94 94 163 216 216 163 215 215 163 94 94 164 215 215 164 750 750 164 750 750 165 215 215 165 95 95 165 750 750 166 95 95 166 96 96 166 96 96 167 95 95 167 213 213 167 96 96 168 213 213 168 540 540 168 540 540 169 213 213 169 212 212 169 540 540 170 212 212 170 749 749 170 749 749 171 212 212 171 97 97 171 749 749 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 739 739 176 739 739 177 101 101 177 102 102 177 739 739 178 102 102 178 103 103 178 103 103 179 102 102 179 210 210 179 104 104 180 118 118 180 105 105 180 104 104 181 105 105 181 106 106 181 615 615 182 613 613 182 105 105 182 105 105 183 613 613 183 549 549 183 105 105 184 549 549 184 106 106 184 638 638 185 631 631 185 105 105 185 105 105 186 631 631 186 624 624 186 105 105 187 624 624 187 615 615 187 650 650 188 107 107 188 105 105 188 105 105 189 107 107 189 554 554 189 105 105 190 554 554 190 638 638 190 109 109 191 108 108 191 105 105 191 105 105 192 108 108 192 651 651 192 105 105 193 651 651 193 650 650 193 559 559 194 558 558 194 105 105 194 105 105 195 558 558 195 673 673 195 105 105 196 673 673 196 109 109 196 110 110 197 686 686 197 105 105 197 105 105 198 686 686 198 685 685 198 105 105 199 685 685 199 559 559 199 714 714 200 711 711 200 105 105 200 105 105 201 711 711 201 713 713 201 105 105 202 713 713 202 110 110 202 728 728 203 726 726 203 105 105 203 105 105 204 726 726 204 725 725 204 105 105 205 725 725 205 714 714 205 113 113 206 111 111 206 105 105 206 105 105 207 111 111 207 112 112 207 105 105 208 112 112 208 728 728 208 754 754 209 577 577 209 105 105 209 105 105 210 577 577 210 576 576 210 105 105 211 576 576 211 113 113 211 583 583 212 766 766 212 105 105 212 105 105 213 766 766 213 767 767 213 105 105 214 767 767 214 754 754 214 114 114 215 775 775 215 105 105 215 105 105 216 775 775 216 774 774 216 105 105 217 774 774 217 583 583 217 594 594 218 791 791 218 105 105 218 105 105 219 791 791 219 790 790 219 105 105 220 790 790 220 114 114 220 810 810 221 115 115 221 105 105 221 105 105 222 115 115 222 808 808 222 105 105 223 808 808 223 594 594 223 825 825 224 824 824 224 105 105 224 105 105 225 824 824 225 116 116 225 105 105 226 116 116 226 810 810 226 848 848 227 117 117 227 105 105 227 105 105 228 117 117 228 839 839 228 105 105 229 839 839 229 825 825 229 118 118 230 859 859 230 105 105 230 105 105 231 859 859 231 119 119 231 105 105 232 119 119 232 848 848 232 120 120 233 170 170 233 167 167 233 120 120 234 167 167 234 124 124 234 121 121 235 122 122 235 167 167 235 167 167 236 122 122 236 123 123 236 167 167 237 123 123 237 124 124 237 125 125 238 126 126 238 167 167 238 167 167 239 126 126 239 127 127 239 167 167 240 127 127 240 121 121 240 133 133 241 128 128 241 167 167 241 167 167 242 128 128 242 129 129 242 167 167 243 129 129 243 125 125 243 130 130 244 131 131 244 167 167 244 167 167 245 131 131 245 132 132 245 167 167 246 132 132 246 133 133 246 139 139 247 134 134 247 167 167 247 167 167 248 134 134 248 135 135 248 167 167 249 135 135 249 130 130 249 136 136 250 137 137 250 167 167 250 167 167 251 137 137 251 138 138 251 167 167 252 138 138 252 139 139 252 145 145 253 140 140 253 167 167 253 167 167 254 140 140 254 141 141 254 167 167 255 141 141 255 136 136 255 142 142 256 143 143 256 167 167 256 167 167 257 143 143 257 144 144 257 167 167 258 144 144 258 145 145 258 146 146 259 147 147 259 167 167 259 167 167 260 147 147 260 148 148 260 167 167 261 148 148 261 142 142 261 149 149 262 150 150 262 167 167 262 167 167 263 150 150 263 151 151 263 167 167 264 151 151 264 146 146 264 157 157 265 152 152 265 167 167 265 167 167 266 152 152 266 153 153 266 167 167 267 153 153 267 149 149 267 154 154 268 155 155 268 167 167 268 167 167 269 155 155 269 156 156 269 167 167 270 156 156 270 157 157 270 162 162 271 158 158 271 167 167 271 167 167 272 158 158 272 159 159 272 167 167 273 159 159 273 154 154 273 165 165 274 160 160 274 167 167 274 167 167 275 160 160 275 161 161 275 167 167 276 161 161 276 162 162 276 169 169 277 163 163 277 167 167 277 167 167 278 163 163 278 164 164 278 167 167 279 164 164 279 165 165 279 173 173 280 166 166 280 167 167 280 167 167 281 166 166 281 168 168 281 167 167 282 168 168 282 169 169 282 170 170 283 171 171 283 167 167 283 167 167 284 171 171 284 172 172 284 167 167 285 172 172 285 173 173 285 248 248 286 297 297 286 299 299 286 248 248 287 174 174 287 297 297 287 297 297 288 174 174 288 46 46 288 297 297 289 46 46 289 295 295 289 295 295 290 46 46 290 175 175 290 295 295 291 175 175 291 293 293 291 293 293 292 175 175 292 176 176 292 293 293 293 176 176 293 178 178 293 178 178 294 176 176 294 177 177 294 177 177 295 42 42 295 178 178 295 178 178 296 42 42 296 41 41 296 178 178 297 41 41 297 179 179 297 41 41 298 180 180 298 179 179 298 179 179 299 180 180 299 38 38 299 179 179 300 38 38 300 181 181 300 181 181 301 38 38 301 37 37 301 181 181 302 37 37 302 182 182 302 37 37 303 33 33 303 182 182 303 182 182 304 33 33 304 32 32 304 182 182 305 32 32 305 289 289 305 32 32 306 30 30 306 289 289 306 289 289 307 30 30 307 29 29 307 289 289 308 29 29 308 183 183 308 183 183 309 29 29 309 185 185 309 183 183 310 185 185 310 184 184 310 184 184 311 185 185 311 27 27 311 184 184 312 27 27 312 186 186 312 186 186 313 27 27 313 26 26 313 26 26 314 24 24 314 186 186 314 186 186 315 24 24 315 22 22 315 186 186 316 22 22 316 187 187 316 22 22 317 19 19 317 187 187 317 187 187 318 19 19 318 188 188 318 187 187 319 188 188 319 189 189 319 189 189 320 188 188 320 190 190 320 189 189 321 190 190 321 283 283 321 283 283 322 190 190 322 191 191 322 283 283 323 191 191 323 282 282 323 282 282 324 191 191 324 192 192 324 192 192 325 193 193 325 282 282 325 282 282 326 193 193 326 194 194 326 282 282 327 194 194 327 281 281 327 281 281 328 194 194 328 195 195 328 281 281 329 195 195 329 196 196 329 196 196 330 195 195 330 17 17 330 196 196 331 17 17 331 279 279 331 279 279 332 17 17 332 14 14 332 14 14 333 197 197 333 279 279 333 279 279 334 197 197 334 198 198 334 279 279 335 198 198 335 199 199 335 198 198 336 200 200 336 199 199 336 199 199 337 200 200 337 11 11 337 199 199 338 11 11 338 201 201 338 201 201 339 11 11 339 202 202 339 201 201 340 202 202 340 276 276 340 276 276 341 202 202 341 10 10 341 276 276 342 10 10 342 203 203 342 203 203 343 10 10 343 7 7 343 7 7 344 5 5 344 203 203 344 203 203 345 5 5 345 204 204 345 203 203 346 204 204 346 205 205 346 205 205 347 204 204 347 206 206 347 205 205 348 206 206 348 208 208 348 206 206 349 207 207 349 208 208 349 208 208 350 207 207 350 209 209 350 208 208 351 209 209 351 211 211 351 209 209 352 210 210 352 211 211 352 211 211 353 210 210 353 102 102 353 211 211 354 102 102 354 271 271 354 102 102 355 101 101 355 271 271 355 271 271 356 101 101 356 100 100 356 271 271 357 100 100 357 269 269 357 269 269 358 100 100 358 97 97 358 269 269 359 97 97 359 268 268 359 268 268 360 97 97 360 212 212 360 268 268 361 212 212 361 214 214 361 214 214 362 212 212 362 213 213 362 213 213 363 95 95 363 214 214 363 214 214 364 95 95 364 215 215 364 214 214 365 215 215 365 266 266 365 266 266 366 215 215 366 216 216 366 266 266 367 216 216 367 217 217 367 216 216 368 92 92 368 217 217 368 217 217 369 92 92 369 90 90 369 217 217 370 90 90 370 218 218 370 90 90 371 219 219 371 218 218 371 218 218 372 219 219 372 220 220 372 218 218 373 220 220 373 264 264 373 220 220 374 221 221 374 264 264 374 264 264 375 221 221 375 86 86 375 264 264 376 86 86 376 222 222 376 222 222 377 86 86 377 85 85 377 222 222 378 85 85 378 223 223 378 223 223 379 85 85 379 224 224 379 223 223 380 224 224 380 225 225 380 225 225 381 224 224 381 83 83 381 83 83 382 82 82 382 225 225 382 225 225 383 82 82 383 226 226 383 225 225 384 226 226 384 227 227 384 227 227 385 226 226 385 79 79 385 227 227 386 79 79 386 228 228 386 79 79 387 77 77 387 228 228 387 228 228 388 77 77 388 76 76 388 228 228 389 76 76 389 229 229 389 76 76 390 74 74 390 229 229 390 229 229 391 74 74 391 72 72 391 229 229 392 72 72 392 259 259 392 72 72 393 230 230 393 259 259 393 259 259 394 230 230 394 231 231 394 259 259 395 231 231 395 258 258 395 258 258 396 231 231 396 232 232 396 258 258 397 232 232 397 233 233 397 233 233 398 232 232 398 235 235 398 233 233 399 235 235 399 234 234 399 234 234 400 235 235 400 236 236 400 236 236 401 237 237 401 234 234 401 234 234 402 237 237 402 67 67 402 234 234 403 67 67 403 255 255 403 255 255 404 67 67 404 65 65 404 255 255 405 65 65 405 238 238 405 65 65 406 64 64 406 238 238 406 238 238 407 64 64 407 239 239 407 238 238 408 239 239 408 252 252 408 239 239 409 62 62 409 252 252 409 252 252 410 62 62 410 60 60 410 252 252 411 60 60 411 251 251 411 60 60 412 59 59 412 251 251 412 251 251 413 59 59 413 55 55 413 251 251 414 55 55 414 250 250 414 250 250 415 55 55 415 240 240 415 250 250 416 240 240 416 241 241 416 241 241 417 240 240 417 54 54 417 241 241 418 54 54 418 249 249 418 249 249 419 54 54 419 52 52 419 52 52 420 51 51 420 249 249 420 249 249 421 51 51 421 242 242 421 249 249 422 242 242 422 243 243 422 243 243 423 242 242 423 244 244 423 243 243 424 244 244 424 245 245 424 245 245 425 244 244 425 246 246 425 245 245 426 246 246 426 299 299 426 299 299 427 246 246 427 247 247 427 299 299 428 247 247 428 248 248 428 243 243 429 301 301 429 249 249 429 249 249 430 301 301 430 304 304 430 249 249 431 304 304 431 241 241 431 241 241 432 304 304 432 306 306 432 241 241 433 306 306 433 250 250 433 250 250 434 306 306 434 307 307 434 250 250 435 307 307 435 251 251 435 251 251 436 307 307 436 253 253 436 251 251 437 253 253 437 252 252 437 252 252 438 253 253 438 310 310 438 252 252 439 310 310 439 238 238 439 238 238 440 310 310 440 254 254 440 238 238 441 254 254 441 255 255 441 255 255 442 254 254 442 312 312 442 255 255 443 312 312 443 234 234 443 234 234 444 312 312 444 256 256 444 234 234 445 256 256 445 233 233 445 233 233 446 256 256 446 257 257 446 233 233 447 257 257 447 258 258 447 258 258 448 257 257 448 260 260 448 258 258 449 260 260 449 259 259 449 259 259 450 260 260 450 317 317 450 259 259 451 317 317 451 229 229 451 229 229 452 317 317 452 261 261 452 229 229 453 261 261 453 228 228 453 228 228 454 261 261 454 262 262 454 228 228 455 262 262 455 227 227 455 227 227 456 262 262 456 263 263 456 227 227 457 263 263 457 225 225 457 225 225 458 263 263 458 321 321 458 225 225 459 321 321 459 223 223 459 223 223 460 321 321 460 322 322 460 223 223 461 322 322 461 222 222 461 222 222 462 322 322 462 323 323 462 222 222 463 323 323 463 264 264 463 264 264 464 323 323 464 265 265 464 264 264 465 265 265 465 218 218 465 218 218 466 265 265 466 326 326 466 218 218 467 326 326 467 217 217 467 217 217 468 326 326 468 327 327 468 217 217 469 327 327 469 266 266 469 266 266 470 327 327 470 267 267 470 266 266 471 267 267 471 214 214 471 214 214 472 267 267 472 328 328 472 214 214 473 328 328 473 268 268 473 268 268 474 328 328 474 270 270 474 268 268 475 270 270 475 269 269 475 269 269 476 270 270 476 330 330 476 269 269 477 330 330 477 271 271 477 271 271 478 330 330 478 272 272 478 271 271 479 272 272 479 211 211 479 211 211 480 272 272 480 332 332 480 211 211 481 332 332 481 208 208 481 208 208 482 332 332 482 273 273 482 208 208 483 273 273 483 205 205 483 205 205 484 273 273 484 274 274 484 205 205 485 274 274 485 203 203 485 203 203 486 274 274 486 275 275 486 203 203 487 275 275 487 276 276 487 276 276 488 275 275 488 277 277 488 276 276 489 277 277 489 201 201 489 201 201 490 277 277 490 278 278 490 201 201 491 278 278 491 199 199 491 199 199 492 278 278 492 337 337 492 199 199 493 337 337 493 279 279 493 279 279 494 337 337 494 338 338 494 279 279 495 338 338 495 196 196 495 196 196 496 338 338 496 280 280 496 196 196 497 280 280 497 281 281 497 281 281 498 280 280 498 339 339 498 281 281 499 339 339 499 282 282 499 282 282 500 339 339 500 284 284 500 282 282 501 284 284 501 283 283 501 283 283 502 284 284 502 285 285 502 283 283 503 285 285 503 189 189 503 189 189 504 285 285 504 286 286 504 189 189 505 286 286 505 187 187 505 187 187 506 286 286 506 287 287 506 187 187 507 287 287 507 186 186 507 186 186 508 287 287 508 288 288 508 186 186 509 288 288 509 184 184 509 184 184 510 288 288 510 345 345 510 184 184 511 345 345 511 183 183 511 183 183 512 345 345 512 290 290 512 183 183 513 290 290 513 289 289 513 289 289 514 290 290 514 348 348 514 289 289 515 348 348 515 182 182 515 182 182 516 348 348 516 291 291 516 182 182 517 291 291 517 181 181 517 181 181 518 291 291 518 350 350 518 181 181 519 350 350 519 179 179 519 179 179 520 350 350 520 292 292 520 179 179 521 292 292 521 178 178 521 178 178 522 292 292 522 351 351 522 178 178 523 351 351 523 293 293 523 293 293 524 351 351 524 294 294 524 293 293 525 294 294 525 295 295 525 295 295 526 294 294 526 296 296 526 295 295 527 296 296 527 297 297 527 297 297 528 296 296 528 298 298 528 297 297 529 298 298 529 299 299 529 299 299 530 298 298 530 354 354 530 299 299 531 354 354 531 245 245 531 245 245 532 354 354 532 300 300 532 245 245 533 300 300 533 243 243 533 243 243 534 300 300 534 301 301 534 300 300 535 302 302 535 301 301 535 301 301 536 302 302 536 303 303 536 301 301 537 303 303 537 304 304 537 304 304 538 303 303 538 358 358 538 304 304 539 358 358 539 306 306 539 306 306 540 358 358 540 305 305 540 306 306 541 305 305 541 307 307 541 307 307 542 305 305 542 308 308 542 307 307 543 308 308 543 253 253 543 253 253 544 308 308 544 309 309 544 253 253 545 309 309 545 310 310 545 310 310 546 309 309 546 361 361 546 310 310 547 361 361 547 254 254 547 254 254 548 361 361 548 311 311 548 254 254 549 311 311 549 312 312 549 312 312 550 311 311 550 313 313 550 312 312 551 313 313 551 256 256 551 256 256 552 313 313 552 314 314 552 256 256 553 314 314 553 257 257 553 257 257 554 314 314 554 315 315 554 257 257 555 315 315 555 260 260 555 260 260 556 315 315 556 316 316 556 260 260 557 316 316 557 317 317 557 317 317 558 316 316 558 318 318 558 317 317 559 318 318 559 261 261 559 261 261 560 318 318 560 319 319 560 261 261 561 319 319 561 262 262 561 262 262 562 319 319 562 320 320 562 262 262 563 320 320 563 263 263 563 263 263 564 320 320 564 365 365 564 263 263 565 365 365 565 321 321 565 321 321 566 365 365 566 366 366 566 321 321 567 366 366 567 322 322 567 322 322 568 366 366 568 367 367 568 322 322 569 367 367 569 323 323 569 323 323 570 367 367 570 324 324 570 323 323 571 324 324 571 265 265 571 265 265 572 324 324 572 325 325 572 265 265 573 325 325 573 326 326 573 326 326 574 325 325 574 372 372 574 326 326 575 372 372 575 327 327 575 327 327 576 372 372 576 373 373 576 327 327 577 373 373 577 267 267 577 267 267 578 373 373 578 374 374 578 267 267 579 374 374 579 328 328 579 328 328 580 374 374 580 329 329 580 328 328 581 329 329 581 270 270 581 270 270 582 329 329 582 375 375 582 270 270 583 375 375 583 330 330 583 330 330 584 375 375 584 331 331 584 330 330 585 331 331 585 272 272 585 272 272 586 331 331 586 377 377 586 272 272 587 377 377 587 332 332 587 332 332 588 377 377 588 333 333 588 332 332 589 333 333 589 273 273 589 273 273 590 333 333 590 334 334 590 273 273 591 334 334 591 274 274 591 274 274 592 334 334 592 379 379 592 274 274 593 379 379 593 275 275 593 275 275 594 379 379 594 335 335 594 275 275 595 335 335 595 277 277 595 277 277 596 335 335 596 380 380 596 277 277 597 380 380 597 278 278 597 278 278 598 380 380 598 336 336 598 278 278 599 336 336 599 337 337 599 337 337 600 336 336 600 383 383 600 337 337 601 383 383 601 338 338 601 338 338 602 383 383 602 384 384 602 338 338 603 384 384 603 280 280 603 280 280 604 384 384 604 385 385 604 280 280 605 385 385 605 339 339 605 339 339 606 385 385 606 386 386 606 339 339 607 386 386 607 284 284 607 284 284 608 386 386 608 340 340 608 284 284 609 340 340 609 285 285 609 285 285 610 340 340 610 341 341 610 285 285 611 341 341 611 286 286 611 286 286 612 341 341 612 342 342 612 286 286 613 342 342 613 287 287 613 287 287 614 342 342 614 343 343 614 287 287 615 343 343 615 288 288 615 288 288 616 343 343 616 344 344 616 288 288 617 344 344 617 345 345 617 345 345 618 344 344 618 346 346 618 345 345 619 346 346 619 290 290 619 290 290 620 346 346 620 347 347 620 290 290 621 347 347 621 348 348 621 348 348 622 347 347 622 389 389 622 348 348 623 389 389 623 291 291 623 291 291 624 389 389 624 349 349 624 291 291 625 349 349 625 350 350 625 350 350 626 349 349 626 391 391 626 350 350 627 391 391 627 292 292 627 292 292 628 391 391 628 394 394 628 292 292 629 394 394 629 351 351 629 351 351 630 394 394 630 352 352 630 351 351 631 352 352 631 294 294 631 294 294 632 352 352 632 353 353 632 294 294 633 353 353 633 296 296 633 296 296 634 353 353 634 396 396 634 296 296 635 396 396 635 298 298 635 298 298 636 396 396 636 397 397 636 298 298 637 397 397 637 354 354 637 354 354 638 397 397 638 398 398 638 354 354 639 398 398 639 300 300 639 300 300 640 398 398 640 302 302 640 398 398 641 400 400 641 302 302 641 302 302 642 400 400 642 355 355 642 302 302 643 355 355 643 303 303 643 303 303 644 355 355 644 356 356 644 303 303 645 356 356 645 358 358 645 358 358 646 356 356 646 357 357 646 358 358 647 357 357 647 305 305 647 305 305 648 357 357 648 359 359 648 305 305 649 359 359 649 308 308 649 308 308 650 359 359 650 360 360 650 308 308 651 360 360 651 309 309 651 309 309 652 360 360 652 403 403 652 309 309 653 403 403 653 361 361 653 361 361 654 403 403 654 405 405 654 361 361 655 405 405 655 311 311 655 311 311 656 405 405 656 407 407 656 311 311 657 407 407 657 313 313 657 313 313 658 407 407 658 362 362 658 313 313 659 362 362 659 314 314 659 314 314 660 362 362 660 409 409 660 314 314 661 409 409 661 315 315 661 315 315 662 409 409 662 411 411 662 315 315 663 411 411 663 316 316 663 316 316 664 411 411 664 363 363 664 316 316 665 363 363 665 318 318 665 318 318 666 363 363 666 413 413 666 318 318 667 413 413 667 319 319 667 319 319 668 413 413 668 364 364 668 319 319 669 364 364 669 320 320 669 320 320 670 364 364 670 414 414 670 320 320 671 414 414 671 365 365 671 365 365 672 414 414 672 417 417 672 365 365 673 417 417 673 366 366 673 366 366 674 417 417 674 368 368 674 366 366 675 368 368 675 367 367 675 367 367 676 368 368 676 369 369 676 367 367 677 369 369 677 324 324 677 324 324 678 369 369 678 370 370 678 324 324 679 370 370 679 325 325 679 325 325 680 370 370 680 371 371 680 325 325 681 371 371 681 372 372 681 372 372 682 371 371 682 421 421 682 372 372 683 421 421 683 373 373 683 373 373 684 421 421 684 424 424 684 373 373 685 424 424 685 374 374 685 374 374 686 424 424 686 425 425 686 374 374 687 425 425 687 329 329 687 329 329 688 425 425 688 426 426 688 329 329 689 426 426 689 375 375 689 375 375 690 426 426 690 376 376 690 375 375 691 376 376 691 331 331 691 331 331 692 376 376 692 430 430 692 331 331 693 430 430 693 377 377 693 377 377 694 430 430 694 431 431 694 377 377 695 431 431 695 333 333 695 333 333 696 431 431 696 378 378 696 333 333 697 378 378 697 334 334 697 334 334 698 378 378 698 432 432 698 334 334 699 432 432 699 379 379 699 379 379 700 432 432 700 433 433 700 379 379 701 433 433 701 335 335 701 335 335 702 433 433 702 434 434 702 335 335 703 434 434 703 380 380 703 380 380 704 434 434 704 381 381 704 380 380 705 381 381 705 336 336 705 336 336 706 381 381 706 436 436 706 336 336 707 436 436 707 383 383 707 383 383 708 436 436 708 382 382 708 383 383 709 382 382 709 384 384 709 384 384 710 382 382 710 438 438 710 384 384 711 438 438 711 385 385 711 385 385 712 438 438 712 440 440 712 385 385 713 440 440 713 386 386 713 386 386 714 440 440 714 441 441 714 386 386 715 441 441 715 340 340 715 340 340 716 441 441 716 443 443 716 340 340 717 443 443 717 341 341 717 341 341 718 443 443 718 387 387 718 341 341 719 387 387 719 342 342 719 342 342 720 387 387 720 388 388 720 342 342 721 388 388 721 343 343 721 343 343 722 388 388 722 444 444 722 343 343 723 444 444 723 344 344 723 344 344 724 444 444 724 445 445 724 344 344 725 445 445 725 346 346 725 346 346 726 445 445 726 446 446 726 346 346 727 446 446 727 347 347 727 347 347 728 446 446 728 447 447 728 347 347 729 447 447 729 389 389 729 389 389 730 447 447 730 390 390 730 389 389 731 390 390 731 349 349 731 349 349 732 390 390 732 392 392 732 349 349 733 392 392 733 391 391 733 391 391 734 392 392 734 393 393 734 391 391 735 393 393 735 394 394 735 394 394 736 393 393 736 395 395 736 394 394 737 395 395 737 352 352 737 352 352 738 395 395 738 450 450 738 352 352 739 450 450 739 353 353 739 353 353 740 450 450 740 451 451 740 353 353 741 451 451 741 396 396 741 396 396 742 451 451 742 452 452 742 396 396 743 452 452 743 397 397 743 397 397 744 452 452 744 399 399 744 397 397 745 399 399 745 398 398 745 398 398 746 399 399 746 400 400 746 399 399 747 455 455 747 400 400 747 400 400 748 455 455 748 457 457 748 400 400 749 457 457 749 355 355 749 355 355 750 457 457 750 401 401 750 355 355 751 401 401 751 356 356 751 356 356 752 401 401 752 460 460 752 356 356 753 460 460 753 357 357 753 357 357 754 460 460 754 462 462 754 357 357 755 462 462 755 359 359 755 359 359 756 462 462 756 402 402 756 359 359 757 402 402 757 360 360 757 360 360 758 402 402 758 465 465 758 360 360 759 465 465 759 403 403 759 403 403 760 465 465 760 404 404 760 403 403 761 404 404 761 405 405 761 405 405 762 404 404 762 406 406 762 405 405 763 406 406 763 407 407 763 407 407 764 406 406 764 408 408 764 407 407 765 408 408 765 362 362 765 362 362 766 408 408 766 471 471 766 362 362 767 471 471 767 409 409 767 409 409 768 471 471 768 410 410 768 409 409 769 410 410 769 411 411 769 411 411 770 410 410 770 412 412 770 411 411 771 412 412 771 363 363 771 363 363 772 412 412 772 474 474 772 363 363 773 474 474 773 413 413 773 413 413 774 474 474 774 476 476 774 413 413 775 476 476 775 364 364 775 364 364 776 476 476 776 415 415 776 364 364 777 415 415 777 414 414 777 414 414 778 415 415 778 416 416 778 414 414 779 416 416 779 417 417 779 417 417 780 416 416 780 480 480 780 417 417 781 480 480 781 368 368 781 368 368 782 480 480 782 418 418 782 368 368 783 418 418 783 369 369 783 369 369 784 418 418 784 419 419 784 369 369 785 419 419 785 370 370 785 370 370 786 419 419 786 484 484 786 370 370 787 484 484 787 371 371 787 371 371 788 484 484 788 420 420 788 371 371 789 420 420 789 421 421 789 421 421 790 420 420 790 422 422 790 421 421 791 422 422 791 424 424 791 424 424 792 422 422 792 423 423 792 424 424 793 423 423 793 425 425 793 425 425 794 423 423 794 427 427 794 425 425 795 427 427 795 426 426 795 426 426 796 427 427 796 428 428 796 426 426 797 428 428 797 376 376 797 376 376 798 428 428 798 429 429 798 376 376 799 429 429 799 430 430 799 430 430 800 429 429 800 492 492 800 430 430 801 492 492 801 431 431 801 431 431 802 492 492 802 494 494 802 431 431 803 494 494 803 378 378 803 378 378 804 494 494 804 496 496 804 378 378 805 496 496 805 432 432 805 432 432 806 496 496 806 497 497 806 432 432 807 497 497 807 433 433 807 433 433 808 497 497 808 499 499 808 433 433 809 499 499 809 434 434 809 434 434 810 499 499 810 501 501 810 434 434 811 501 501 811 381 381 811 381 381 812 501 501 812 435 435 812 381 381 813 435 435 813 436 436 813 436 436 814 435 435 814 437 437 814 436 436 815 437 437 815 382 382 815 382 382 816 437 437 816 505 505 816 382 382 817 505 505 817 438 438 817 438 438 818 505 505 818 508 508 818 438 438 819 508 508 819 440 440 819 440 440 820 508 508 820 439 439 820 440 440 821 439 439 821 441 441 821 441 441 822 439 439 822 442 442 822 441 441 823 442 442 823 443 443 823 443 443 824 442 442 824 513 513 824 443 443 825 513 513 825 387 387 825 387 387 826 513 513 826 514 514 826 387 387 827 514 514 827 388 388 827 388 388 828 514 514 828 516 516 828 388 388 829 516 516 829 444 444 829 444 444 830 516 516 830 518 518 830 444 444 831 518 518 831 445 445 831 445 445 832 518 518 832 520 520 832 445 445 833 520 520 833 446 446 833 446 446 834 520 520 834 521 521 834 446 446 835 521 521 835 447 447 835 447 447 836 521 521 836 448 448 836 447 447 837 448 448 837 390 390 837 390 390 838 448 448 838 525 525 838 390 390 839 525 525 839 392 392 839 392 392 840 525 525 840 449 449 840 392 392 841 449 449 841 393 393 841 393 393 842 449 449 842 528 528 842 393 393 843 528 528 843 395 395 843 395 395 844 528 528 844 529 529 844 395 395 845 529 529 845 450 450 845 450 450 846 529 529 846 532 532 846 450 450 847 532 532 847 451 451 847 451 451 848 532 532 848 534 534 848 451 451 849 534 534 849 452 452 849 452 452 850 534 534 850 453 453 850 452 452 851 453 453 851 399 399 851 399 399 852 453 453 852 455 455 852 453 453 853 454 454 853 455 455 853 455 455 854 454 454 854 456 456 854 455 455 855 456 456 855 457 457 855 457 457 856 456 456 856 458 458 856 457 457 857 458 458 857 401 401 857 401 401 858 458 458 858 459 459 858 401 401 859 459 459 859 460 460 859 460 460 860 459 459 860 461 461 860 460 460 861 461 461 861 462 462 861 462 462 862 461 461 862 463 463 862 462 462 863 463 463 863 402 402 863 402 402 864 463 463 864 464 464 864 402 402 865 464 464 865 465 465 865 465 465 866 464 464 866 466 466 866 465 465 867 466 466 867 404 404 867 404 404 868 466 466 868 467 467 868 404 404 869 467 467 869 406 406 869 406 406 870 467 467 870 468 468 870 406 406 871 468 468 871 408 408 871 408 408 872 468 468 872 469 469 872 408 408 873 469 469 873 471 471 873 471 471 874 469 469 874 470 470 874 471 471 875 470 470 875 410 410 875 410 410 876 470 470 876 472 472 876 410 410 877 472 472 877 412 412 877 412 412 878 472 472 878 473 473 878 412 412 879 473 473 879 474 474 879 474 474 880 473 473 880 475 475 880 474 474 881 475 475 881 476 476 881 476 476 882 475 475 882 477 477 882 476 476 883 477 477 883 415 415 883 415 415 884 477 477 884 478 478 884 415 415 885 478 478 885 416 416 885 416 416 886 478 478 886 479 479 886 416 416 887 479 479 887 480 480 887 480 480 888 479 479 888 481 481 888 480 480 889 481 481 889 418 418 889 418 418 890 481 481 890 482 482 890 418 418 891 482 482 891 419 419 891 419 419 892 482 482 892 483 483 892 419 419 893 483 483 893 484 484 893 484 484 894 483 483 894 485 485 894 484 484 895 485 485 895 420 420 895 420 420 896 485 485 896 486 486 896 420 420 897 486 486 897 422 422 897 422 422 898 486 486 898 487 487 898 422 422 899 487 487 899 423 423 899 423 423 900 487 487 900 488 488 900 423 423 901 488 488 901 427 427 901 427 427 902 488 488 902 489 489 902 427 427 903 489 489 903 428 428 903 428 428 904 489 489 904 490 490 904 428 428 905 490 490 905 429 429 905 429 429 906 490 490 906 491 491 906 429 429 907 491 491 907 492 492 907 492 492 908 491 491 908 493 493 908 492 492 909 493 493 909 494 494 909 494 494 910 493 493 910 495 495 910 494 494 911 495 495 911 496 496 911 496 496 912 495 495 912 498 498 912 496 496 913 498 498 913 497 497 913 497 497 914 498 498 914 500 500 914 497 497 915 500 500 915 499 499 915 499 499 916 500 500 916 502 502 916 499 499 917 502 502 917 501 501 917 501 501 918 502 502 918 503 503 918 501 501 919 503 503 919 435 435 919 435 435 920 503 503 920 504 504 920 435 435 921 504 504 921 437 437 921 437 437 922 504 504 922 506 506 922 437 437 923 506 506 923 505 505 923 505 505 924 506 506 924 507 507 924 505 505 925 507 507 925 508 508 925 508 508 926 507 507 926 509 509 926 508 508 927 509 509 927 439 439 927 439 439 928 509 509 928 510 510 928 439 439 929 510 510 929 442 442 929 442 442 930 510 510 930 511 511 930 442 442 931 511 511 931 513 513 931 513 513 932 511 511 932 512 512 932 513 513 933 512 512 933 514 514 933 514 514 934 512 512 934 515 515 934 514 514 935 515 515 935 516 516 935 516 516 936 515 515 936 517 517 936 516 516 937 517 517 937 518 518 937 518 518 938 517 517 938 519 519 938 518 518 939 519 519 939 520 520 939 520 520 940 519 519 940 522 522 940 520 520 941 522 522 941 521 521 941 521 521 942 522 522 942 523 523 942 521 521 943 523 523 943 448 448 943 448 448 944 523 523 944 524 524 944 448 448 945 524 524 945 525 525 945 525 525 946 524 524 946 526 526 946 525 525 947 526 526 947 449 449 947 449 449 948 526 526 948 527 527 948 449 449 949 527 527 949 528 528 949 528 528 950 527 527 950 530 530 950 528 528 951 530 530 951 529 529 951 529 529 952 530 530 952 531 531 952 529 529 953 531 531 953 532 532 953 532 532 954 531 531 954 533 533 954 532 532 955 533 533 955 534 534 955 534 534 956 533 533 956 535 535 956 534 534 957 535 535 957 453 453 957 453 453 958 535 535 958 454 454 958 536 536 959 53 53 959 862 862 959 853 853 960 56 56 960 852 852 960 58 58 961 61 61 961 842 842 961 834 834 962 66 66 962 537 537 962 819 819 963 68 68 963 821 821 963 69 69 964 70 70 964 815 815 964 538 538 965 73 73 965 804 804 965 78 78 966 80 80 966 795 795 966 539 539 967 781 781 967 784 784 967 88 88 968 89 89 968 589 589 968 93 93 969 94 94 969 763 763 969 96 96 970 540 540 970 748 748 970 739 739 971 103 103 971 541 541 971 2 2 972 3 3 972 731 731 972 6 6 973 8 8 973 571 571 973 12 12 974 13 13 974 708 708 974 702 702 975 15 15 975 696 696 975 16 16 976 695 695 976 694 694 976 680 680 977 678 678 977 564 564 977 21 21 978 23 23 978 662 662 978 25 25 979 657 657 979 663 663 979 28 28 980 542 542 980 655 655 980 31 31 981 34 34 981 557 557 981 40 40 982 543 543 982 544 544 982 43 43 983 44 44 983 545 545 983 619 619 984 45 45 984 546 546 984 547 547 985 606 606 985 608 608 985 106 106 986 549 549 986 548 548 986 548 548 987 549 549 987 614 614 987 548 548 988 614 614 988 603 603 988 603 603 989 614 614 989 550 550 989 603 603 990 550 550 990 551 551 990 551 551 991 550 550 991 610 610 991 551 551 992 610 610 992 552 552 992 552 552 993 610 610 993 553 553 993 552 552 994 553 553 994 605 605 994 605 605 995 553 553 995 608 608 995 554 554 996 107 107 996 639 639 996 639 639 997 107 107 997 649 649 997 639 639 998 649 649 998 640 640 998 640 640 999 649 649 999 647 647 999 640 640 1000 647 647 1000 641 641 1000 641 641 1001 647 647 1001 555 555 1001 641 641 1002 555 555 1002 556 556 1002 556 556 1003 555 555 1003 644 644 1003 556 556 1004 644 644 1004 642 642 1004 642 642 1005 644 644 1005 557 557 1005 558 558 1006 559 559 1006 561 561 1006 561 561 1007 559 559 1007 560 560 1007 561 561 1008 560 560 1008 562 562 1008 562 562 1009 560 560 1009 684 684 1009 562 562 1010 684 684 1010 675 675 1010 675 675 1011 684 684 1011 682 682 1011 675 675 1012 682 682 1012 676 676 1012 676 676 1013 682 682 1013 681 681 1013 676 676 1014 681 681 1014 563 563 1014 563 563 1015 681 681 1015 564 564 1015 714 714 1016 725 725 1016 565 565 1016 565 565 1017 725 725 1017 567 567 1017 565 565 1018 567 567 1018 566 566 1018 566 566 1019 567 567 1019 724 724 1019 566 566 1020 724 724 1020 569 569 1020 569 569 1021 724 724 1021 568 568 1021 569 569 1022 568 568 1022 570 570 1022 570 570 1023 568 568 1023 721 721 1023 570 570 1024 721 721 1024 717 717 1024 717 717 1025 721 721 1025 571 571 1025 112 112 1026 111 111 1026 738 738 1026 738 738 1027 111 111 1027 572 572 1027 738 738 1028 572 572 1028 573 573 1028 573 573 1029 572 572 1029 574 574 1029 573 573 1030 574 574 1030 735 735 1030 735 735 1031 574 574 1031 742 742 1031 735 735 1032 742 742 1032 733 733 1032 733 733 1033 742 742 1033 575 575 1033 733 733 1034 575 575 1034 732 732 1034 732 732 1035 575 575 1035 541 541 1035 576 576 1036 577 577 1036 744 744 1036 744 744 1037 577 577 1037 579 579 1037 744 744 1038 579 579 1038 578 578 1038 578 578 1039 579 579 1039 752 752 1039 578 578 1040 752 752 1040 580 580 1040 580 580 1041 752 752 1041 751 751 1041 580 580 1042 751 751 1042 581 581 1042 581 581 1043 751 751 1043 582 582 1043 581 581 1044 582 582 1044 747 747 1044 747 747 1045 582 582 1045 748 748 1045 766 766 1046 583 583 1046 584 584 1046 584 584 1047 583 583 1047 773 773 1047 584 584 1048 773 773 1048 586 586 1048 586 586 1049 773 773 1049 585 585 1049 586 586 1050 585 585 1050 587 587 1050 587 587 1051 585 585 1051 771 771 1051 587 587 1052 771 771 1052 764 764 1052 764 764 1053 771 771 1053 588 588 1053 764 764 1054 588 588 1054 762 762 1054 762 762 1055 588 588 1055 589 589 1055 775 775 1056 114 114 1056 777 777 1056 777 777 1057 114 114 1057 590 590 1057 777 777 1058 590 590 1058 591 591 1058 591 591 1059 590 590 1059 788 788 1059 591 591 1060 788 788 1060 592 592 1060 592 592 1061 788 788 1061 593 593 1061 592 592 1062 593 593 1062 778 778 1062 778 778 1063 593 593 1063 785 785 1063 778 778 1064 785 785 1064 782 782 1064 782 782 1065 785 785 1065 784 784 1065 594 594 1066 808 808 1066 595 595 1066 595 595 1067 808 808 1067 596 596 1067 595 595 1068 596 596 1068 800 800 1068 800 800 1069 596 596 1069 807 807 1069 800 800 1070 807 807 1070 799 799 1070 799 799 1071 807 807 1071 597 597 1071 799 799 1072 597 597 1072 797 797 1072 797 797 1073 597 597 1073 598 598 1073 797 797 1074 598 598 1074 796 796 1074 796 796 1075 598 598 1075 804 804 1075 839 839 1076 117 117 1076 600 600 1076 600 600 1077 117 117 1077 599 599 1077 600 600 1078 599 599 1078 601 601 1078 601 601 1079 599 599 1079 846 846 1079 601 601 1080 846 846 1080 838 838 1080 838 838 1081 846 846 1081 845 845 1081 838 838 1082 845 845 1082 836 836 1082 836 836 1083 845 845 1083 844 844 1083 836 836 1084 844 844 1084 835 835 1084 835 835 1085 844 844 1085 842 842 1085 866 866 1086 106 106 1086 602 602 1086 602 602 1087 106 106 1087 548 548 1087 602 602 1088 548 548 1088 869 869 1088 869 869 1089 548 548 1089 603 603 1089 869 869 1090 603 603 1090 871 871 1090 871 871 1091 603 603 1091 551 551 1091 871 871 1092 551 551 1092 872 872 1092 872 872 1093 551 551 1093 552 552 1093 872 872 1094 552 552 1094 604 604 1094 604 604 1095 552 552 1095 605 605 1095 604 604 1096 605 605 1096 873 873 1096 873 873 1097 605 605 1097 48 48 1097 608 608 1098 606 606 1098 605 605 1098 605 605 1099 606 606 1099 47 47 1099 605 605 1100 47 47 1100 48 48 1100 607 607 1101 547 547 1101 618 618 1101 618 618 1102 547 547 1102 608 608 1102 618 618 1103 608 608 1103 609 609 1103 609 609 1104 608 608 1104 553 553 1104 609 609 1105 553 553 1105 611 611 1105 611 611 1106 553 553 1106 610 610 1106 611 611 1107 610 610 1107 612 612 1107 612 612 1108 610 610 1108 550 550 1108 612 612 1109 550 550 1109 616 616 1109 616 616 1110 550 550 1110 614 614 1110 616 616 1111 614 614 1111 613 613 1111 613 613 1112 614 614 1112 549 549 1112 613 613 1113 615 615 1113 616 616 1113 616 616 1114 615 615 1114 617 617 1114 616 616 1115 617 617 1115 612 612 1115 612 612 1116 617 617 1116 622 622 1116 612 612 1117 622 622 1117 611 611 1117 611 611 1118 622 622 1118 621 621 1118 611 611 1119 621 621 1119 609 609 1119 609 609 1120 621 621 1120 620 620 1120 609 609 1121 620 620 1121 618 618 1121 618 618 1122 620 620 1122 546 546 1122 618 618 1123 546 546 1123 607 607 1123 607 607 1124 546 546 1124 45 45 1124 44 44 1125 619 619 1125 545 545 1125 545 545 1126 619 619 1126 546 546 1126 545 545 1127 546 546 1127 627 627 1127 627 627 1128 546 546 1128 620 620 1128 627 627 1129 620 620 1129 628 628 1129 628 628 1130 620 620 1130 621 621 1130 628 628 1131 621 621 1131 623 623 1131 623 623 1132 621 621 1132 622 622 1132 623 623 1133 622 622 1133 630 630 1133 630 630 1134 622 622 1134 617 617 1134 630 630 1135 617 617 1135 624 624 1135 624 624 1136 617 617 1136 615 615 1136 543 543 1137 43 43 1137 544 544 1137 544 544 1138 43 43 1138 545 545 1138 544 544 1139 545 545 1139 625 625 1139 625 625 1140 545 545 1140 627 627 1140 625 625 1141 627 627 1141 626 626 1141 626 626 1142 627 627 1142 628 628 1142 626 626 1143 628 628 1143 629 629 1143 629 629 1144 628 628 1144 623 623 1144 629 629 1145 623 623 1145 637 637 1145 637 637 1146 623 623 1146 630 630 1146 637 637 1147 630 630 1147 631 631 1147 631 631 1148 630 630 1148 624 624 1148 39 39 1149 40 40 1149 632 632 1149 632 632 1150 40 40 1150 544 544 1150 632 632 1151 544 544 1151 633 633 1151 633 633 1152 544 544 1152 625 625 1152 633 633 1153 625 625 1153 634 634 1153 634 634 1154 625 625 1154 626 626 1154 634 634 1155 626 626 1155 635 635 1155 635 635 1156 626 626 1156 629 629 1156 635 635 1157 629 629 1157 636 636 1157 636 636 1158 629 629 1158 637 637 1158 636 636 1159 637 637 1159 638 638 1159 638 638 1160 637 637 1160 631 631 1160 638 638 1161 554 554 1161 636 636 1161 636 636 1162 554 554 1162 639 639 1162 636 636 1163 639 639 1163 635 635 1163 635 635 1164 639 639 1164 640 640 1164 635 635 1165 640 640 1165 634 634 1165 634 634 1166 640 640 1166 641 641 1166 634 634 1167 641 641 1167 633 633 1167 633 633 1168 641 641 1168 556 556 1168 633 633 1169 556 556 1169 632 632 1169 632 632 1170 556 556 1170 642 642 1170 632 632 1171 642 642 1171 39 39 1171 39 39 1172 642 642 1172 36 36 1172 557 557 1173 34 34 1173 642 642 1173 642 642 1174 34 34 1174 35 35 1174 642 642 1175 35 35 1175 36 36 1175 656 656 1176 31 31 1176 654 654 1176 654 654 1177 31 31 1177 557 557 1177 654 654 1178 557 557 1178 643 643 1178 643 643 1179 557 557 1179 644 644 1179 643 643 1180 644 644 1180 645 645 1180 645 645 1181 644 644 1181 555 555 1181 645 645 1182 555 555 1182 646 646 1182 646 646 1183 555 555 1183 647 647 1183 646 646 1184 647 647 1184 648 648 1184 648 648 1185 647 647 1185 649 649 1185 648 648 1186 649 649 1186 650 650 1186 650 650 1187 649 649 1187 107 107 1187 650 650 1188 651 651 1188 648 648 1188 648 648 1189 651 651 1189 661 661 1189 648 648 1190 661 661 1190 646 646 1190 646 646 1191 661 661 1191 652 652 1191 646 646 1192 652 652 1192 645 645 1192 645 645 1193 652 652 1193 653 653 1193 645 645 1194 653 653 1194 643 643 1194 643 643 1195 653 653 1195 659 659 1195 643 643 1196 659 659 1196 654 654 1196 654 654 1197 659 659 1197 655 655 1197 654 654 1198 655 655 1198 656 656 1198 656 656 1199 655 655 1199 542 542 1199 657 657 1200 28 28 1200 663 663 1200 663 663 1201 28 28 1201 655 655 1201 663 663 1202 655 655 1202 658 658 1202 658 658 1203 655 655 1203 659 659 1203 658 658 1204 659 659 1204 666 666 1204 666 666 1205 659 659 1205 653 653 1205 666 666 1206 653 653 1206 660 660 1206 660 660 1207 653 653 1207 652 652 1207 660 660 1208 652 652 1208 668 668 1208 668 668 1209 652 652 1209 661 661 1209 668 668 1210 661 661 1210 108 108 1210 108 108 1211 661 661 1211 651 651 1211 23 23 1212 25 25 1212 662 662 1212 662 662 1213 25 25 1213 663 663 1213 662 662 1214 663 663 1214 664 664 1214 664 664 1215 663 663 1215 658 658 1215 664 664 1216 658 658 1216 665 665 1216 665 665 1217 658 658 1217 666 666 1217 665 665 1218 666 666 1218 672 672 1218 672 672 1219 666 666 1219 660 660 1219 672 672 1220 660 660 1220 667 667 1220 667 667 1221 660 660 1221 668 668 1221 667 667 1222 668 668 1222 109 109 1222 109 109 1223 668 668 1223 108 108 1223 20 20 1224 21 21 1224 669 669 1224 669 669 1225 21 21 1225 662 662 1225 669 669 1226 662 662 1226 677 677 1226 677 677 1227 662 662 1227 664 664 1227 677 677 1228 664 664 1228 670 670 1228 670 670 1229 664 664 1229 665 665 1229 670 670 1230 665 665 1230 671 671 1230 671 671 1231 665 665 1231 672 672 1231 671 671 1232 672 672 1232 674 674 1232 674 674 1233 672 672 1233 667 667 1233 674 674 1234 667 667 1234 673 673 1234 673 673 1235 667 667 1235 109 109 1235 673 673 1236 558 558 1236 674 674 1236 674 674 1237 558 558 1237 561 561 1237 674 674 1238 561 561 1238 671 671 1238 671 671 1239 561 561 1239 562 562 1239 671 671 1240 562 562 1240 670 670 1240 670 670 1241 562 562 1241 675 675 1241 670 670 1242 675 675 1242 677 677 1242 677 677 1243 675 675 1243 676 676 1243 677 677 1244 676 676 1244 669 669 1244 669 669 1245 676 676 1245 563 563 1245 669 669 1246 563 563 1246 20 20 1246 20 20 1247 563 563 1247 679 679 1247 564 564 1248 678 678 1248 563 563 1248 563 563 1249 678 678 1249 18 18 1249 563 563 1250 18 18 1250 679 679 1250 693 693 1251 680 680 1251 692 692 1251 692 692 1252 680 680 1252 564 564 1252 692 692 1253 564 564 1253 691 691 1253 691 691 1254 564 564 1254 681 681 1254 691 691 1255 681 681 1255 688 688 1255 688 688 1256 681 681 1256 682 682 1256 688 688 1257 682 682 1257 687 687 1257 687 687 1258 682 682 1258 684 684 1258 687 687 1259 684 684 1259 683 683 1259 683 683 1260 684 684 1260 560 560 1260 683 683 1261 560 560 1261 685 685 1261 685 685 1262 560 560 1262 559 559 1262 685 685 1263 686 686 1263 683 683 1263 683 683 1264 686 686 1264 701 701 1264 683 683 1265 701 701 1265 687 687 1265 687 687 1266 701 701 1266 700 700 1266 687 687 1267 700 700 1267 688 688 1267 688 688 1268 700 700 1268 689 689 1268 688 688 1269 689 689 1269 691 691 1269 691 691 1270 689 689 1270 690 690 1270 691 691 1271 690 690 1271 692 692 1271 692 692 1272 690 690 1272 694 694 1272 692 692 1273 694 694 1273 693 693 1273 693 693 1274 694 694 1274 695 695 1274 15 15 1275 16 16 1275 696 696 1275 696 696 1276 16 16 1276 694 694 1276 696 696 1277 694 694 1277 697 697 1277 697 697 1278 694 694 1278 690 690 1278 697 697 1279 690 690 1279 698 698 1279 698 698 1280 690 690 1280 689 689 1280 698 698 1281 689 689 1281 699 699 1281 699 699 1282 689 689 1282 700 700 1282 699 699 1283 700 700 1283 706 706 1283 706 706 1284 700 700 1284 701 701 1284 706 706 1285 701 701 1285 110 110 1285 110 110 1286 701 701 1286 686 686 1286 13 13 1287 702 702 1287 708 708 1287 708 708 1288 702 702 1288 696 696 1288 708 708 1289 696 696 1289 703 703 1289 703 703 1290 696 696 1290 697 697 1290 703 703 1291 697 697 1291 704 704 1291 704 704 1292 697 697 1292 698 698 1292 704 704 1293 698 698 1293 705 705 1293 705 705 1294 698 698 1294 699 699 1294 705 705 1295 699 699 1295 712 712 1295 712 712 1296 699 699 1296 706 706 1296 712 712 1297 706 706 1297 713 713 1297 713 713 1298 706 706 1298 110 110 1298 718 718 1299 12 12 1299 716 716 1299 716 716 1300 12 12 1300 708 708 1300 716 716 1301 708 708 1301 707 707 1301 707 707 1302 708 708 1302 703 703 1302 707 707 1303 703 703 1303 709 709 1303 709 709 1304 703 703 1304 704 704 1304 709 709 1305 704 704 1305 710 710 1305 710 710 1306 704 704 1306 705 705 1306 710 710 1307 705 705 1307 715 715 1307 715 715 1308 705 705 1308 712 712 1308 715 715 1309 712 712 1309 711 711 1309 711 711 1310 712 712 1310 713 713 1310 711 711 1311 714 714 1311 715 715 1311 715 715 1312 714 714 1312 565 565 1312 715 715 1313 565 565 1313 710 710 1313 710 710 1314 565 565 1314 566 566 1314 710 710 1315 566 566 1315 709 709 1315 709 709 1316 566 566 1316 569 569 1316 709 709 1317 569 569 1317 707 707 1317 707 707 1318 569 569 1318 570 570 1318 707 707 1319 570 570 1319 716 716 1319 716 716 1320 570 570 1320 717 717 1320 716 716 1321 717 717 1321 718 718 1321 718 718 1322 717 717 1322 719 719 1322 571 571 1323 8 8 1323 717 717 1323 717 717 1324 8 8 1324 9 9 1324 717 717 1325 9 9 1325 719 719 1325 4 4 1326 6 6 1326 720 720 1326 720 720 1327 6 6 1327 571 571 1327 720 720 1328 571 571 1328 730 730 1328 730 730 1329 571 571 1329 721 721 1329 730 730 1330 721 721 1330 722 722 1330 722 722 1331 721 721 1331 568 568 1331 722 722 1332 568 568 1332 723 723 1332 723 723 1333 568 568 1333 724 724 1333 723 723 1334 724 724 1334 727 727 1334 727 727 1335 724 724 1335 567 567 1335 727 727 1336 567 567 1336 726 726 1336 726 726 1337 567 567 1337 725 725 1337 726 726 1338 728 728 1338 727 727 1338 727 727 1339 728 728 1339 737 737 1339 727 727 1340 737 737 1340 723 723 1340 723 723 1341 737 737 1341 729 729 1341 723 723 1342 729 729 1342 722 722 1342 722 722 1343 729 729 1343 736 736 1343 722 722 1344 736 736 1344 730 730 1344 730 730 1345 736 736 1345 734 734 1345 730 730 1346 734 734 1346 720 720 1346 720 720 1347 734 734 1347 731 731 1347 720 720 1348 731 731 1348 4 4 1348 4 4 1349 731 731 1349 3 3 1349 1 1 1350 2 2 1350 732 732 1350 732 732 1351 2 2 1351 731 731 1351 732 732 1352 731 731 1352 733 733 1352 733 733 1353 731 731 1353 734 734 1353 733 733 1354 734 734 1354 735 735 1354 735 735 1355 734 734 1355 736 736 1355 735 735 1356 736 736 1356 573 573 1356 573 573 1357 736 736 1357 729 729 1357 573 573 1358 729 729 1358 738 738 1358 738 738 1359 729 729 1359 737 737 1359 738 738 1360 737 737 1360 112 112 1360 112 112 1361 737 737 1361 728 728 1361 541 541 1362 103 103 1362 732 732 1362 732 732 1363 103 103 1363 0 0 1363 732 732 1364 0 0 1364 1 1 1364 99 99 1365 739 739 1365 746 746 1365 746 746 1366 739 739 1366 541 541 1366 746 746 1367 541 541 1367 740 740 1367 740 740 1368 541 541 1368 575 575 1368 740 740 1369 575 575 1369 741 741 1369 741 741 1370 575 575 1370 742 742 1370 741 741 1371 742 742 1371 745 745 1371 745 745 1372 742 742 1372 574 574 1372 745 745 1373 574 574 1373 743 743 1373 743 743 1374 574 574 1374 572 572 1374 743 743 1375 572 572 1375 113 113 1375 113 113 1376 572 572 1376 111 111 1376 113 113 1377 576 576 1377 743 743 1377 743 743 1378 576 576 1378 744 744 1378 743 743 1379 744 744 1379 745 745 1379 745 745 1380 744 744 1380 578 578 1380 745 745 1381 578 578 1381 741 741 1381 741 741 1382 578 578 1382 580 580 1382 741 741 1383 580 580 1383 740 740 1383 740 740 1384 580 580 1384 581 581 1384 740 740 1385 581 581 1385 746 746 1385 746 746 1386 581 581 1386 747 747 1386 746 746 1387 747 747 1387 99 99 1387 99 99 1388 747 747 1388 98 98 1388 748 748 1389 540 540 1389 747 747 1389 747 747 1390 540 540 1390 749 749 1390 747 747 1391 749 749 1391 98 98 1391 750 750 1392 96 96 1392 761 761 1392 761 761 1393 96 96 1393 748 748 1393 761 761 1394 748 748 1394 760 760 1394 760 760 1395 748 748 1395 582 582 1395 760 760 1396 582 582 1396 758 758 1396 758 758 1397 582 582 1397 751 751 1397 758 758 1398 751 751 1398 755 755 1398 755 755 1399 751 751 1399 752 752 1399 755 755 1400 752 752 1400 753 753 1400 753 753 1401 752 752 1401 579 579 1401 753 753 1402 579 579 1402 754 754 1402 754 754 1403 579 579 1403 577 577 1403 754 754 1404 767 767 1404 753 753 1404 753 753 1405 767 767 1405 756 756 1405 753 753 1406 756 756 1406 755 755 1406 755 755 1407 756 756 1407 757 757 1407 755 755 1408 757 757 1408 758 758 1408 758 758 1409 757 757 1409 759 759 1409 758 758 1410 759 759 1410 760 760 1410 760 760 1411 759 759 1411 765 765 1411 760 760 1412 765 765 1412 761 761 1412 761 761 1413 765 765 1413 763 763 1413 761 761 1414 763 763 1414 750 750 1414 750 750 1415 763 763 1415 94 94 1415 91 91 1416 93 93 1416 762 762 1416 762 762 1417 93 93 1417 763 763 1417 762 762 1418 763 763 1418 764 764 1418 764 764 1419 763 763 1419 765 765 1419 764 764 1420 765 765 1420 587 587 1420 587 587 1421 765 765 1421 759 759 1421 587 587 1422 759 759 1422 586 586 1422 586 586 1423 759 759 1423 757 757 1423 586 586 1424 757 757 1424 584 584 1424 584 584 1425 757 757 1425 756 756 1425 584 584 1426 756 756 1426 766 766 1426 766 766 1427 756 756 1427 767 767 1427 589 589 1428 89 89 1428 762 762 1428 762 762 1429 89 89 1429 768 768 1429 762 762 1430 768 768 1430 91 91 1430 87 87 1431 88 88 1431 779 779 1431 779 779 1432 88 88 1432 589 589 1432 779 779 1433 589 589 1433 769 769 1433 769 769 1434 589 589 1434 588 588 1434 769 769 1435 588 588 1435 770 770 1435 770 770 1436 588 588 1436 771 771 1436 770 770 1437 771 771 1437 772 772 1437 772 772 1438 771 771 1438 585 585 1438 772 772 1439 585 585 1439 776 776 1439 776 776 1440 585 585 1440 773 773 1440 776 776 1441 773 773 1441 774 774 1441 774 774 1442 773 773 1442 583 583 1442 774 774 1443 775 775 1443 776 776 1443 776 776 1444 775 775 1444 777 777 1444 776 776 1445 777 777 1445 772 772 1445 772 772 1446 777 777 1446 591 591 1446 772 772 1447 591 591 1447 770 770 1447 770 770 1448 591 591 1448 592 592 1448 770 770 1449 592 592 1449 769 769 1449 769 769 1450 592 592 1450 778 778 1450 769 769 1451 778 778 1451 779 779 1451 779 779 1452 778 778 1452 782 782 1452 779 779 1453 782 782 1453 87 87 1453 87 87 1454 782 782 1454 780 780 1454 784 784 1455 781 781 1455 782 782 1455 782 782 1456 781 781 1456 84 84 1456 782 782 1457 84 84 1457 780 780 1457 81 81 1458 539 539 1458 794 794 1458 794 794 1459 539 539 1459 784 784 1459 794 794 1460 784 784 1460 783 783 1460 783 783 1461 784 784 1461 785 785 1461 783 783 1462 785 785 1462 786 786 1462 786 786 1463 785 785 1463 593 593 1463 786 786 1464 593 593 1464 787 787 1464 787 787 1465 593 593 1465 788 788 1465 787 787 1466 788 788 1466 789 789 1466 789 789 1467 788 788 1467 590 590 1467 789 789 1468 590 590 1468 790 790 1468 790 790 1469 590 590 1469 114 114 1469 790 790 1470 791 791 1470 789 789 1470 789 789 1471 791 791 1471 801 801 1471 789 789 1472 801 801 1472 787 787 1472 787 787 1473 801 801 1473 792 792 1473 787 787 1474 792 792 1474 786 786 1474 786 786 1475 792 792 1475 793 793 1475 786 786 1476 793 793 1476 783 783 1476 783 783 1477 793 793 1477 798 798 1477 783 783 1478 798 798 1478 794 794 1478 794 794 1479 798 798 1479 795 795 1479 794 794 1480 795 795 1480 81 81 1480 81 81 1481 795 795 1481 80 80 1481 802 802 1482 78 78 1482 796 796 1482 796 796 1483 78 78 1483 795 795 1483 796 796 1484 795 795 1484 797 797 1484 797 797 1485 795 795 1485 798 798 1485 797 797 1486 798 798 1486 799 799 1486 799 799 1487 798 798 1487 793 793 1487 799 799 1488 793 793 1488 800 800 1488 800 800 1489 793 793 1489 792 792 1489 800 800 1490 792 792 1490 595 595 1490 595 595 1491 792 792 1491 801 801 1491 595 595 1492 801 801 1492 594 594 1492 594 594 1493 801 801 1493 791 791 1493 804 804 1494 73 73 1494 796 796 1494 796 796 1495 73 73 1495 75 75 1495 796 796 1496 75 75 1496 802 802 1496 71 71 1497 538 538 1497 803 803 1497 803 803 1498 538 538 1498 804 804 1498 803 803 1499 804 804 1499 813 813 1499 813 813 1500 804 804 1500 598 598 1500 813 813 1501 598 598 1501 805 805 1501 805 805 1502 598 598 1502 597 597 1502 805 805 1503 597 597 1503 806 806 1503 806 806 1504 597 597 1504 807 807 1504 806 806 1505 807 807 1505 809 809 1505 809 809 1506 807 807 1506 596 596 1506 809 809 1507 596 596 1507 115 115 1507 115 115 1508 596 596 1508 808 808 1508 115 115 1509 810 810 1509 809 809 1509 809 809 1510 810 810 1510 818 818 1510 809 809 1511 818 818 1511 806 806 1511 806 806 1512 818 818 1512 811 811 1512 806 806 1513 811 811 1513 805 805 1513 805 805 1514 811 811 1514 812 812 1514 805 805 1515 812 812 1515 813 813 1515 813 813 1516 812 812 1516 814 814 1516 813 813 1517 814 814 1517 803 803 1517 803 803 1518 814 814 1518 815 815 1518 803 803 1519 815 815 1519 71 71 1519 71 71 1520 815 815 1520 70 70 1520 68 68 1521 69 69 1521 821 821 1521 821 821 1522 69 69 1522 815 815 1522 821 821 1523 815 815 1523 822 822 1523 822 822 1524 815 815 1524 814 814 1524 822 822 1525 814 814 1525 816 816 1525 816 816 1526 814 814 1526 812 812 1526 816 816 1527 812 812 1527 817 817 1527 817 817 1528 812 812 1528 811 811 1528 817 817 1529 811 811 1529 823 823 1529 823 823 1530 811 811 1530 818 818 1530 823 823 1531 818 818 1531 116 116 1531 116 116 1532 818 818 1532 810 810 1532 833 833 1533 819 819 1533 820 820 1533 820 820 1534 819 819 1534 821 821 1534 820 820 1535 821 821 1535 832 832 1535 832 832 1536 821 821 1536 822 822 1536 832 832 1537 822 822 1537 830 830 1537 830 830 1538 822 822 1538 816 816 1538 830 830 1539 816 816 1539 827 827 1539 827 827 1540 816 816 1540 817 817 1540 827 827 1541 817 817 1541 826 826 1541 826 826 1542 817 817 1542 823 823 1542 826 826 1543 823 823 1543 824 824 1543 824 824 1544 823 823 1544 116 116 1544 824 824 1545 825 825 1545 826 826 1545 826 826 1546 825 825 1546 828 828 1546 826 826 1547 828 828 1547 827 827 1547 827 827 1548 828 828 1548 829 829 1548 827 827 1549 829 829 1549 830 830 1549 830 830 1550 829 829 1550 831 831 1550 830 830 1551 831 831 1551 832 832 1551 832 832 1552 831 831 1552 837 837 1552 832 832 1553 837 837 1553 820 820 1553 820 820 1554 837 837 1554 537 537 1554 820 820 1555 537 537 1555 833 833 1555 833 833 1556 537 537 1556 66 66 1556 63 63 1557 834 834 1557 835 835 1557 835 835 1558 834 834 1558 537 537 1558 835 835 1559 537 537 1559 836 836 1559 836 836 1560 537 537 1560 837 837 1560 836 836 1561 837 837 1561 838 838 1561 838 838 1562 837 837 1562 831 831 1562 838 838 1563 831 831 1563 601 601 1563 601 601 1564 831 831 1564 829 829 1564 601 601 1565 829 829 1565 600 600 1565 600 600 1566 829 829 1566 828 828 1566 600 600 1567 828 828 1567 839 839 1567 839 839 1568 828 828 1568 825 825 1568 842 842 1569 61 61 1569 835 835 1569 835 835 1570 61 61 1570 840 840 1570 835 835 1571 840 840 1571 63 63 1571 57 57 1572 58 58 1572 841 841 1572 841 841 1573 58 58 1573 842 842 1573 841 841 1574 842 842 1574 843 843 1574 843 843 1575 842 842 1575 844 844 1575 843 843 1576 844 844 1576 851 851 1576 851 851 1577 844 844 1577 845 845 1577 851 851 1578 845 845 1578 850 850 1578 850 850 1579 845 845 1579 846 846 1579 850 850 1580 846 846 1580 847 847 1580 847 847 1581 846 846 1581 599 599 1581 847 847 1582 599 599 1582 848 848 1582 848 848 1583 599 599 1583 117 117 1583 848 848 1584 119 119 1584 847 847 1584 847 847 1585 119 119 1585 849 849 1585 847 847 1586 849 849 1586 850 850 1586 850 850 1587 849 849 1587 857 857 1587 850 850 1588 857 857 1588 851 851 1588 851 851 1589 857 857 1589 856 856 1589 851 851 1590 856 856 1590 843 843 1590 843 843 1591 856 856 1591 855 855 1591 843 843 1592 855 855 1592 841 841 1592 841 841 1593 855 855 1593 852 852 1593 841 841 1594 852 852 1594 57 57 1594 57 57 1595 852 852 1595 56 56 1595 53 53 1596 853 853 1596 862 862 1596 862 862 1597 853 853 1597 852 852 1597 862 862 1598 852 852 1598 854 854 1598 854 854 1599 852 852 1599 855 855 1599 854 854 1600 855 855 1600 864 864 1600 864 864 1601 855 855 1601 856 856 1601 864 864 1602 856 856 1602 865 865 1602 865 865 1603 856 856 1603 857 857 1603 865 865 1604 857 857 1604 858 858 1604 858 858 1605 857 857 1605 849 849 1605 858 858 1606 849 849 1606 859 859 1606 859 859 1607 849 849 1607 119 119 1607 860 860 1608 536 536 1608 861 861 1608 861 861 1609 536 536 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 854 854 1611 870 870 1612 854 854 1612 863 863 1612 863 863 1613 854 854 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 858 858 1617 867 867 1618 858 858 1618 118 118 1618 118 118 1619 858 858 1619 859 859 1619 118 118 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 602 602 1621 867 867 1622 602 602 1622 868 868 1622 868 868 1623 602 602 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 604 604 1629 861 861 1630 604 604 1630 860 860 1630 860 860 1631 604 604 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.STL b/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.STL new file mode 100755 index 0000000..79e16a1 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.dae b/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.dae new file mode 100755 index 0000000..04b7d31 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/right_rear_wheel.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:36:36 2016 GMT + Tue Jan 19 20:36:36 2016 GMT + Y_UP + + + + + + -0.0499122 -2.69381e-18 0.035 -0.0499122 -0.00296203 0.035 -0.0492852 -0.00822582 0.035 -0.0492115 -0.00884451 0.035 -0.0478201 -0.0146028 0.035 -0.0478201 -0.0146028 0.01 -0.0472231 -0.0162098 0.035 -0.0472231 -0.0162098 0.01 -0.0457573 -0.0201562 0.035 -0.0439062 -0.0237627 0.035 -0.0457573 -0.0201562 0.01 -0.0430522 -0.0254266 0.01 -0.0394377 -0.030694 0.035 -0.0358754 -0.0348276 0.035 -0.033805 -0.0367216 0.01 -0.0315044 -0.0388262 0.035 -0.027324 -0.0418257 0.035 -0.0315044 -0.0388262 0.01 -0.0122534 -0.0483938 0.035 -0.00443979 -0.0498025 0.01 -0.00443979 -0.0498025 0.035 -0.00412845 -0.0498117 0.035 -0.00412845 -0.0498117 0.01 0.00148167 -0.049978 0.035 0.00148167 -0.049978 0.01 0.00412126 -0.0497427 0.035 0.00412126 -0.0497427 0.01 0.00738233 -0.049452 0.01 0.0122647 -0.0484243 0.035 0.0131794 -0.0482318 0.01 0.0187914 -0.0463345 0.01 0.0200575 -0.0457314 0.035 0.0200575 -0.0457314 0.01 0.0241396 -0.0437867 0.01 0.0241396 -0.0437867 0.035 0.0273038 -0.0417892 0.035 0.029149 -0.0406243 0.035 0.0273038 -0.0417892 0.01 0.029149 -0.0406243 0.01 0.0337491 -0.0368917 0.035 0.0338576 -0.0367799 0.035 0.0338576 -0.0367799 0.01 0.0378756 -0.0326411 0.01 0.039389 -0.0306587 0.035 0.0414703 -0.0279323 0.035 0.0444829 -0.0228315 0.035 0.0444829 -0.0228315 0.01 0.0492355 -0.00821488 0.035 0.0496491 -0.00591366 0.035 0.05 3.42942e-18 0.035 0.05 3.67803e-19 0.01 0.0496491 0.00591366 0.01 0.0492355 0.00821488 0.01 0.0486011 0.0117443 0.035 0.0486011 0.0117443 0.01 0.046871 0.0174101 0.01 0.046871 0.0174101 0.035 0.0444829 0.0228315 0.035 0.0439282 0.0237705 0.035 0.0444829 0.0228315 0.01 0.0439282 0.0237705 0.01 0.0414703 0.0279323 0.035 0.0414703 0.0279323 0.01 0.0378756 0.0326411 0.035 0.0378756 0.0326411 0.01 0.0338576 0.0367799 0.01 0.0337491 0.0368917 0.035 0.0337491 0.0368917 0.01 0.0241396 0.0437867 0.035 0.0200575 0.0457314 0.035 0.0187914 0.0463345 0.035 0.0131794 0.0482318 0.035 0.0122647 0.0484243 0.01 0.00738233 0.049452 0.035 0.00738233 0.049452 0.01 0.00412126 0.0497427 0.035 0.00412126 0.0497427 0.01 0.00148167 0.049978 0.01 -0.00412845 0.0498117 0.035 -0.00412845 0.0498117 0.01 -0.00443979 0.0498025 0.035 -0.0102989 0.0489278 0.035 -0.0102989 0.0489278 0.01 -0.0122534 0.0483938 0.01 -0.0200592 0.0457256 0.035 -0.0200592 0.0457256 0.01 -0.0215033 0.0451399 0.01 -0.0266912 0.0422798 0.035 -0.027324 0.0418257 0.035 -0.0315044 0.0388262 0.035 -0.033805 0.0367216 0.01 -0.0358754 0.0348276 0.035 -0.0358754 0.0348276 0.01 -0.0394377 0.030694 0.035 -0.0397427 0.03034 0.035 -0.0430522 0.0254266 0.01 -0.0439062 0.0237627 0.035 -0.0472231 0.0162098 0.01 -0.0478201 0.0146028 0.035 -0.0492115 0.00884451 0.035 -0.0478201 0.0146028 0.01 -0.0492115 0.00884451 0.01 -0.0492852 0.00822582 0.01 -0.0499122 0.00296203 0.035 0.04 -1.12663e-17 0.045 0.0355863 -0.0182652 0.045 0.0193117 -0.0350294 0.045 0.00590586 -0.0395616 0.045 0.00118533 -0.0399824 0.045 -0.0252035 -0.031061 0.045 -0.038256 -0.0116823 0.045 -0.038256 0.0116823 0.045 -0.0252035 0.031061 0.045 -0.0287003 0.027862 0.045 -0.0317942 0.024272 0.045 -0.0128108 0.0378931 0.045 -0.0172026 0.0361119 0.045 0 -1.46917e-18 0.045 -0.0213529 0.0338238 0.045 0.0269993 0.0295133 0.045 0.0233192 0.0324995 0.045 0.0355863 0.0182652 0.045 0.0303004 0.0261129 0.045 0.0397192 0.00473093 0.045 0.0388809 0.00939544 0.045 0.04 -6.98008e-18 1.38778e-17 0.0355863 0.0182652 1.16409e-17 0.0374968 0.0139281 1.21721e-17 0.0388809 0.00939544 1.27272e-17 0.0397192 0.00473093 1.32984e-17 0.0303004 0.0261129 1.06799e-17 0.0331762 0.0223459 1.11412e-17 0.0193117 0.0350294 9.58792e-18 0.0233192 0.0324995 9.89775e-18 0.0269993 0.0295133 1.02634e-17 0.00590586 0.0395616 9.03289e-18 0.0105435 0.0385854 9.15244e-18 0.0150331 0.0370676 9.33832e-18 -0.0128108 0.0378931 9.23723e-18 -0.00823914 0.0391423 9.08424e-18 -0.00355184 0.039842 8.99855e-18 0.00118533 0.0399824 8.98135e-18 -0.0213529 0.0338238 9.73556e-18 -0.0172026 0.0361119 9.45535e-18 -0.0317942 0.024272 1.09053e-17 -0.0287003 0.027862 1.04657e-17 -0.0252035 0.031061 1.00739e-17 -0.0393692 0.00707561 1.30113e-17 -0.038256 0.0116823 1.24471e-17 -0.0366058 0.0161249 1.19031e-17 -0.0344417 0.0203412 1.13867e-17 -0.0399297 -0.00236963 1.4168e-17 -0.0399297 0.00236963 1.35876e-17 -0.0344417 -0.0203412 1.63689e-17 -0.0366058 -0.0161249 1.58525e-17 -0.038256 -0.0116823 1.53085e-17 -0.0393692 -0.00707561 1.47443e-17 -0.0252035 -0.031061 1.76817e-17 -0.0287003 -0.027862 1.72899e-17 0 -6.98008e-18 1.38778e-17 -0.0317942 -0.024272 1.68503e-17 -0.0172026 -0.0361119 1.83002e-17 -0.0213529 -0.0338238 1.802e-17 0.00118533 -0.0399824 1.87742e-17 -0.00355184 -0.039842 1.8757e-17 -0.00823914 -0.0391423 1.86713e-17 -0.0128108 -0.0378931 1.85183e-17 0.0105435 -0.0385854 1.86031e-17 0.00590586 -0.0395616 1.87227e-17 0.0269993 -0.0295133 1.74921e-17 0.0233192 -0.0324995 1.78578e-17 0.0193117 -0.0350294 1.81677e-17 0.0150331 -0.0370676 1.84173e-17 0.0331762 -0.0223459 1.66144e-17 0.0303004 -0.0261129 1.70757e-17 0.0397192 -0.00473093 1.44572e-17 0.0388809 -0.00939544 1.50284e-17 0.0374968 -0.0139281 1.55835e-17 0.0355863 -0.0182652 1.61146e-17 0.046871 -0.0174101 0.01 0.0439282 -0.0237705 0.01 0.0414703 -0.0279323 0.01 0.039389 -0.0306587 0.01 0.0376174 -0.0324187 0.00741181 0.0335192 -0.0366403 0.00741181 0.0337491 -0.0368917 0.01 0.0289503 -0.0403475 0.00741181 0.0239751 -0.0434883 0.00741181 0.0130895 -0.0479031 0.00741181 0.00733202 -0.049115 0.00741181 0.0122647 -0.0484243 0.01 0.00147157 -0.0496374 0.00741181 -0.00440954 -0.0494631 0.00741181 -0.0102989 -0.0489278 0.01 -0.0102287 -0.0485944 0.00741181 -0.0122534 -0.0483938 0.01 -0.0160135 -0.0473663 0.01 -0.0200592 -0.0457256 0.01 -0.0215033 -0.0451399 0.01 -0.0266912 -0.0422798 0.01 -0.027324 -0.0418257 0.01 -0.0312897 -0.0385616 0.00741181 -0.0358754 -0.0348276 0.01 -0.0394377 -0.030694 0.01 -0.0394719 -0.0301332 0.00741181 -0.0397427 -0.03034 0.01 -0.0427588 -0.0252533 0.00741181 -0.0439062 -0.0237627 0.01 -0.0474942 -0.0145033 0.00741181 -0.0492115 -0.00884451 0.01 -0.0488762 -0.00878424 0.00741181 -0.0492852 -0.00822582 0.01 -0.0499122 -0.00296203 0.01 -0.049572 -0.00294185 0.00741181 -0.0499122 -5.75543e-18 0.01 -0.0499122 0.00296203 0.01 -0.049572 0.00294185 0.00741181 -0.0457573 0.0201562 0.01 -0.0439062 0.0237627 0.01 -0.0427588 0.0252533 0.00741181 -0.0397427 0.03034 0.01 -0.0394377 0.030694 0.01 -0.0356309 0.0345902 0.00741181 -0.0312897 0.0385616 0.00741181 -0.0315044 0.0388262 0.01 -0.027324 0.0418257 0.01 -0.0266912 0.0422798 0.01 -0.0213567 0.0448323 0.00741181 -0.0159044 0.0470435 0.00741181 -0.0160135 0.0473663 0.01 -0.0102287 0.0485944 0.00741181 -0.00443979 0.0498025 0.01 -0.00440954 0.0494631 0.00741181 0.00147157 0.0496374 0.00741181 0.00733202 0.049115 0.00741181 0.0131794 0.0482318 0.01 0.0187914 0.0463345 0.01 0.0200575 0.0457314 0.01 0.0239751 0.0434883 0.00741181 0.0289503 0.0403475 0.00741181 0.0241396 0.0437867 0.01 0.0273038 0.0417892 0.01 0.029149 0.0406243 0.01 0.0376174 0.0324187 0.00741181 0.039389 0.0306587 0.01 0.047235 0.0162179 0.01 0.0482699 0.0116643 0.00741181 0.05 -5.75543e-18 0.01 0.0496593 -6.07239e-18 0.00741181 0.0496491 -0.00591366 0.01 0.0493107 -0.00587336 0.00741181 0.0492355 -0.00821488 0.01 0.0486011 -0.0117443 0.01 0.047235 -0.0162179 0.01 0.0493107 0.00587336 0.00741181 0.0465516 0.0172914 0.00741181 0.0441797 0.0226759 0.00741181 0.0411877 0.027742 0.00741181 0.0403591 0.0271839 0.005 0.0328448 0.0359032 0.005 0.0335192 0.0366403 0.00741181 0.0234928 0.0426135 0.005 0.0182879 0.045093 0.005 0.0186633 0.0460187 0.00741181 0.0130895 0.0479031 0.00741181 0.0128262 0.0469394 0.005 0.00144197 0.0486389 0.005 -0.00432083 0.048468 0.005 -0.010023 0.0476168 0.005 -0.0265093 0.0419917 0.00741181 -0.0306602 0.0377858 0.005 -0.0394719 0.0301332 0.00741181 -0.0418986 0.0247453 0.005 -0.0454455 0.0200188 0.00741181 -0.0474942 0.0145033 0.00741181 -0.0465387 0.0142116 0.005 -0.0488762 0.00878424 0.00741181 -0.0485748 0.00288266 0.005 -0.0478929 -0.00860753 0.005 -0.0465387 -0.0142116 0.005 -0.0445312 -0.0196161 0.005 -0.0454455 -0.0200188 0.00741181 -0.0418986 -0.0247453 0.005 -0.0386778 -0.029527 0.005 -0.0356309 -0.0345902 0.00741181 -0.025976 -0.0411469 0.005 -0.0265093 -0.0419917 0.00741181 -0.0213567 -0.0448323 0.00741181 -0.0159044 -0.0470435 0.00741181 -0.0155844 -0.0460971 0.005 -0.010023 -0.0476168 0.005 -0.00432083 -0.048468 0.005 0.00144197 -0.0486389 0.005 0.00718452 -0.0481269 0.005 0.0186633 -0.0460187 0.00741181 0.0182879 -0.045093 0.005 0.0283679 -0.0395358 0.005 0.0368607 -0.0317665 0.005 0.0411877 -0.027742 0.00741181 0.0432909 -0.0222197 0.005 0.0441797 -0.0226759 0.00741181 0.0456151 -0.0169436 0.005 0.0465516 -0.0172914 0.00741181 0.0472989 -0.0114296 0.005 0.0482699 -0.0116643 0.00741181 0.0486603 -6.36775e-18 0.005 0.0483187 0.0057552 0.005 0.0467407 0.00556724 0.00292893 0.0457542 0.0110563 0.00292893 0.0472989 0.0114296 0.005 0.0418771 0.021494 0.00292893 0.0456151 0.0169436 0.005 0.0432909 0.0222197 0.005 0.039041 0.0262961 0.00292893 0.0356569 0.030729 0.00292893 0.0368607 0.0317665 0.005 0.0274415 0.0382446 0.00292893 0.0283679 0.0395358 0.005 0.0227255 0.0412218 0.00292893 0.0176906 0.0436203 0.00292893 0.0124073 0.0454064 0.00292893 0.00694988 0.0465552 0.00292893 0.00718452 0.0481269 0.005 0.00139487 0.0470504 0.00292893 -0.00417972 0.0468851 0.00292893 -0.00969563 0.0460617 0.00292893 -0.0155844 0.0460971 0.005 -0.0209271 0.0439304 0.005 -0.025976 0.0411469 0.005 -0.0296589 0.0365518 0.00292893 -0.0337738 0.0327874 0.00292893 -0.0349141 0.0338943 0.005 -0.0386778 0.029527 0.005 -0.0445312 0.0196161 0.005 -0.0450188 0.0137474 0.00292893 -0.0478929 0.00860753 0.005 -0.0469884 0.00278852 0.00292893 -0.0485748 -0.00288266 0.005 -0.0463288 -0.00832641 0.00292893 -0.0450188 -0.0137474 0.00292893 -0.0405302 -0.0239371 0.00292893 -0.0337738 -0.0327874 0.00292893 -0.0349141 -0.0338943 0.005 -0.0306602 -0.0377858 0.005 -0.0209271 -0.0439304 0.005 -0.00969563 -0.0460617 0.00292893 -0.00417972 -0.0468851 0.00292893 0.00139487 -0.0470504 0.00292893 0.00694988 -0.0465552 0.00292893 0.0124073 -0.0454064 0.00292893 0.0128262 -0.0469394 0.005 0.0176906 -0.0436203 0.00292893 0.0227255 -0.0412218 0.00292893 0.0234928 -0.0426135 0.005 0.0317722 -0.0347306 0.00292893 0.0328448 -0.0359032 0.005 0.0403591 -0.0271839 0.005 0.0418771 -0.021494 0.00292893 0.0441253 -0.0163902 0.00292893 0.0483187 -0.0057552 0.005 0.043741 0.0105699 0.00133975 0.0421839 0.0156691 0.00133975 0.0400346 0.0205483 0.00133975 0.0441253 0.0163902 0.00292893 0.0373233 0.0251391 0.00133975 0.034088 0.029377 0.00133975 0.0317722 0.0347306 0.00292893 0.0169122 0.041701 0.00133975 0.0013335 0.0449802 0.00133975 -0.00926904 0.044035 0.00133975 -0.0150754 0.0445917 0.00292893 -0.0202436 0.0424957 0.00292893 -0.0251276 0.0398031 0.00292893 -0.0240221 0.0380518 0.00133975 -0.028354 0.0349436 0.00133975 -0.0322878 0.0313448 0.00133975 -0.0357684 0.027306 0.00133975 -0.0374146 0.0285627 0.00292893 -0.0405302 0.0239371 0.00292893 -0.0430769 0.0189754 0.00292893 -0.0463288 0.00832641 0.00292893 -0.044921 0.00266583 0.00133975 -0.0469884 -0.00278852 0.00292893 -0.043038 -0.0131426 0.00133975 -0.0430769 -0.0189754 0.00292893 -0.0374146 -0.0285627 0.00292893 -0.0322878 -0.0313448 0.00133975 -0.0240221 -0.0380518 0.00133975 -0.0296589 -0.0365518 0.00292893 -0.0251276 -0.0398031 0.00292893 -0.0202436 -0.0424957 0.00292893 -0.0150754 -0.0445917 0.00292893 0.0013335 -0.0449802 0.00133975 0.0066441 -0.0445068 0.00133975 0.0274415 -0.0382446 0.00292893 0.0303742 -0.0332025 0.00133975 0.0356569 -0.030729 0.00292893 0.034088 -0.029377 0.00133975 0.0373233 -0.0251391 0.00133975 0.039041 -0.0262961 0.00292893 0.0400346 -0.0205483 0.00133975 0.0457542 -0.0110563 0.00292893 0.0467407 -0.00556724 0.00292893 0.0470711 -6.62139e-18 0.00292893 0.045 -6.81601e-18 0.00133975 0.0446841 0.00532229 0.00133975 0.0413967 0.0100034 0.000340742 0.0353229 0.0237918 0.000340742 0.032261 0.0278025 0.000340742 0.0303742 0.0332025 0.00133975 0.024828 0.0346023 0.000340742 0.0262341 0.0365619 0.00133975 0.0205612 0.037296 0.000340742 0.0217256 0.0394081 0.00133975 0.0160058 0.039466 0.000340742 0.0118614 0.0434086 0.00133975 0.006288 0.0421214 0.000340742 0.0066441 0.0445068 0.00133975 0.00126203 0.0425695 0.000340742 -0.00399582 0.0448222 0.00133975 -0.0144121 0.0426297 0.00133975 -0.0136397 0.0403449 0.000340742 -0.0183157 0.0384485 0.000340742 -0.0193529 0.0406259 0.00133975 -0.0268343 0.0330707 0.000340742 -0.0305573 0.0296648 0.000340742 -0.0338514 0.0258425 0.000340742 -0.038747 0.0228839 0.00133975 -0.0366703 0.0216574 0.000340742 -0.0411816 0.0181406 0.00133975 -0.0407314 0.0124382 0.000340742 -0.043038 0.0131426 0.00133975 -0.0419166 0.00753344 0.000340742 -0.0442904 0.00796006 0.00133975 -0.0425134 0.00252295 0.000340742 -0.044921 -0.00266583 0.00133975 -0.0419166 -0.00753344 0.000340742 -0.0442904 -0.00796006 0.00133975 -0.0389744 -0.0171683 0.000340742 -0.0411816 -0.0181406 0.00133975 -0.038747 -0.0228839 0.00133975 -0.0366703 -0.0216574 0.000340742 -0.0357684 -0.027306 0.00133975 -0.0305573 -0.0296648 0.000340742 -0.028354 -0.0349436 0.00133975 -0.0183157 -0.0384485 0.000340742 -0.0193529 -0.0406259 0.00133975 -0.0136397 -0.0403449 0.000340742 -0.0144121 -0.0426297 0.00133975 -0.00926904 -0.044035 0.00133975 -0.00399582 -0.0448222 0.00133975 0.006288 -0.0421214 0.000340742 0.0118614 -0.0434086 0.00133975 0.0112257 -0.0410821 0.000340742 0.0169122 -0.041701 0.00133975 0.024828 -0.0346023 0.000340742 0.0217256 -0.0394081 0.00133975 0.0262341 -0.0365619 0.00133975 0.0287463 -0.031423 0.000340742 0.032261 -0.0278025 0.000340742 0.0353229 -0.0237918 0.000340742 0.039923 -0.0148293 0.000340742 0.0421839 -0.0156691 0.00133975 0.0413967 -0.0100034 0.000340742 0.043741 -0.0105699 0.00133975 0.0446841 -0.00532229 0.00133975 0.0397192 0.00473093 1.50331e-17 0.0422893 0.00503704 0.000340742 0.0388809 0.00939544 1.44619e-17 0.0374968 0.0139281 1.39068e-17 0.0355863 0.0182652 1.33757e-17 0.039923 0.0148293 0.000340742 0.0331762 0.0223459 1.28759e-17 0.0378889 0.019447 0.000340742 0.0303004 0.0261129 1.24146e-17 0.0269993 0.0295133 1.19982e-17 0.0233192 0.0324995 1.16325e-17 0.0287463 0.031423 0.000340742 0.0193117 0.0350294 1.13226e-17 0.0150331 0.0370676 1.1073e-17 0.0105435 0.0385854 1.08872e-17 0.00590586 0.0395616 1.07676e-17 0.0112257 0.0410821 0.000340742 0.00118533 0.0399824 1.07161e-17 -0.00355184 0.039842 1.07333e-17 -0.00378166 0.04242 0.000340742 -0.00823914 0.0391423 1.0819e-17 -0.00877226 0.0416749 0.000340742 -0.0128108 0.0378931 1.0972e-17 -0.0172026 0.0361119 1.11901e-17 -0.0213529 0.0338238 1.14703e-17 -0.0227346 0.0360124 0.000340742 -0.0252035 0.031061 1.18086e-17 -0.0287003 0.027862 1.22004e-17 -0.0317942 0.024272 1.264e-17 -0.0344417 0.0203412 1.31214e-17 -0.0366058 0.0161249 1.36378e-17 -0.0389744 0.0171683 0.000340742 -0.038256 0.0116823 1.41818e-17 -0.0393692 0.00707561 1.4746e-17 -0.0399297 0.00236963 1.53223e-17 -0.0399297 -0.00236963 1.59027e-17 -0.0393692 -0.00707561 1.6479e-17 -0.0425134 -0.00252295 0.000340742 -0.038256 -0.0116823 1.70432e-17 -0.0407314 -0.0124382 0.000340742 -0.0366058 -0.0161249 1.75872e-17 -0.0344417 -0.0203412 1.81036e-17 -0.0317942 -0.024272 1.8585e-17 -0.0338514 -0.0258425 0.000340742 -0.0287003 -0.027862 1.90246e-17 -0.0252035 -0.031061 1.94164e-17 -0.0268343 -0.0330707 0.000340742 -0.0227346 -0.0360124 0.000340742 -0.0213529 -0.0338238 1.97547e-17 -0.0172026 -0.0361119 2.00349e-17 -0.0128108 -0.0378931 2.02531e-17 -0.00823914 -0.0391423 2.04061e-17 -0.00877226 -0.0416749 0.000340742 -0.00355184 -0.039842 2.04917e-17 -0.00378166 -0.04242 0.000340742 0.00126203 -0.0425695 0.000340742 0.00118533 -0.0399824 2.05089e-17 0.00590586 -0.0395616 2.04574e-17 0.0105435 -0.0385854 2.03379e-17 0.0160058 -0.039466 0.000340742 0.0150331 -0.0370676 2.0152e-17 0.0193117 -0.0350294 1.99024e-17 0.0205612 -0.037296 0.000340742 0.0233192 -0.0324995 1.95925e-17 0.0269993 -0.0295133 1.92269e-17 0.0303004 -0.0261129 1.88104e-17 0.0331762 -0.0223459 1.83491e-17 0.0355863 -0.0182652 1.78493e-17 0.0374968 -0.0139281 1.73182e-17 0.0378889 -0.019447 0.000340742 0.0388809 -0.00939544 1.67631e-17 0.0397192 -0.00473093 1.61919e-17 0.0422893 -0.00503704 0.000340742 0.0425882 -6.93835e-18 0.000340742 0.04 -6.98008e-18 1.56125e-17 0.0492355 0.00821488 0.035 0.0335192 0.0366403 0.0375882 0.0122647 0.0484243 0.035 -0.0122534 0.0483938 0.035 -0.0457573 0.0201562 0.035 -0.049572 0.00294185 0.0375882 0.0131794 -0.0482318 0.035 0.0378756 -0.0326411 0.035 0.0376174 -0.0324187 0.0375882 0.0411877 -0.027742 0.0375882 0.0441797 -0.0226759 0.0375882 0.047235 -0.0162179 0.035 0.0422893 -0.00503704 0.0446593 0.0388809 -0.00939544 0.045 0.043741 -0.0105699 0.0436603 0.0467407 -0.00556724 0.0420711 0.0483187 -0.0057552 0.04 0.0472989 -0.0114296 0.04 0.0233192 -0.0324995 0.045 0.0227255 -0.0412218 0.0420711 0.0283679 -0.0395358 0.04 0.0239751 -0.0434883 0.0375882 -0.00823914 -0.0391423 0.045 -0.0128108 -0.0378931 0.045 -0.0136397 -0.0403449 0.0446593 -0.00877226 -0.0416749 0.0446593 -0.00926904 -0.044035 0.0436603 -0.0102287 -0.0485944 0.0375882 -0.0159044 -0.0470435 0.0375882 -0.0366058 -0.0161249 0.045 -0.0366703 -0.0216574 0.0446593 -0.038747 -0.0228839 0.0436603 -0.0389744 -0.0171683 0.0446593 -0.0430769 -0.0189754 0.0420711 -0.0405302 -0.0239371 0.0420711 -0.0418986 -0.0247453 0.04 -0.0454455 -0.0200188 0.0375882 -0.0399297 0.00236963 0.045 -0.0425134 0.00252295 0.0446593 -0.044921 -0.00266583 0.0436603 -0.044921 0.00266583 0.0436603 -0.0485748 0.00288266 0.04 -0.0366058 0.0161249 0.045 -0.043038 0.0131426 0.0436603 -0.0389744 0.0171683 0.0446593 -0.0450188 0.0137474 0.0420711 -0.0465387 0.0142116 0.04 -0.0445312 0.0196161 0.04 -0.0305573 0.0296648 0.0446593 -0.028354 0.0349436 0.0436603 -0.0322878 0.0313448 0.0436603 -0.0337738 0.0327874 0.0420711 -0.0306602 0.0377858 0.04 -0.0312897 0.0385616 0.0375882 -0.0136397 0.0403449 0.0446593 -0.0193529 0.0406259 0.0436603 -0.0202436 0.0424957 0.0420711 -0.0150754 0.0445917 0.0420711 0.00118533 0.0399824 0.045 0.00126203 0.0425695 0.0446593 0.00590586 0.0395616 0.045 0.006288 0.0421214 0.0446593 0.00694988 0.0465552 0.0420711 0.00718452 0.0481269 0.04 0.0331762 0.0223459 0.045 0.0353229 0.0237918 0.0446593 0.032261 0.0278025 0.0446593 0.034088 0.029377 0.0436603 0.0397192 -0.00473093 0.045 0.0425882 -1.5109e-18 0.0446593 0.0446841 -0.00532229 0.0436603 0.0496593 -2.37685e-18 0.0375882 0.0493107 -0.00587336 0.0375882 0.0486011 -0.0117443 0.035 0.046871 -0.0174101 0.035 0.0482699 -0.0116643 0.0375882 0.0456151 -0.0169436 0.04 0.0457542 -0.0110563 0.0420711 0.0441253 -0.0163902 0.0420711 0.0421839 -0.0156691 0.0436603 0.0374968 -0.0139281 0.045 0.0413967 -0.0100034 0.0446593 0.039923 -0.0148293 0.0446593 0.0378889 -0.019447 0.0446593 0.0465516 -0.0172914 0.0375882 0.0439282 -0.0237705 0.035 0.0432909 -0.0222197 0.04 0.0418771 -0.021494 0.0420711 0.0400346 -0.0205483 0.0436603 0.0373233 -0.0251391 0.0436603 0.0331762 -0.0223459 0.045 0.0368607 -0.0317665 0.04 0.0356569 -0.030729 0.0420711 0.0403591 -0.0271839 0.04 0.039041 -0.0262961 0.0420711 0.034088 -0.029377 0.0436603 0.0353229 -0.0237918 0.0446593 0.0303004 -0.0261129 0.045 0.0335192 -0.0366403 0.0375882 0.0328448 -0.0359032 0.04 0.0317722 -0.0347306 0.0420711 0.0303742 -0.0332025 0.0436603 0.0287463 -0.031423 0.0446593 0.032261 -0.0278025 0.0446593 0.0269993 -0.0295133 0.045 0.024828 -0.0346023 0.0446593 0.0262341 -0.0365619 0.0436603 0.0274415 -0.0382446 0.0420711 0.0289503 -0.0403475 0.0375882 0.0182879 -0.045093 0.04 0.0234928 -0.0426135 0.04 0.0176906 -0.0436203 0.0420711 0.0169122 -0.041701 0.0436603 0.0217256 -0.0394081 0.0436603 0.0160058 -0.039466 0.0446593 0.0205612 -0.037296 0.0446593 0.0150331 -0.0370676 0.045 0.0105435 -0.0385854 0.045 0.0118614 -0.0434086 0.0436603 0.0124073 -0.0454064 0.0420711 0.0186633 -0.0460187 0.0375882 0.0130895 -0.0479031 0.0375882 0.0187914 -0.0463345 0.035 0.00738233 -0.049452 0.035 0.00718452 -0.0481269 0.04 0.0128262 -0.0469394 0.04 0.0066441 -0.0445068 0.0436603 0.0112257 -0.0410821 0.0446593 0.00147157 -0.0496374 0.0375882 0.00733202 -0.049115 0.0375882 0.00144197 -0.0486389 0.04 0.00139487 -0.0470504 0.0420711 0.00694988 -0.0465552 0.0420711 0.00126203 -0.0425695 0.0446593 0.006288 -0.0421214 0.0446593 -0.00440954 -0.0494631 0.0375882 -0.00417972 -0.0468851 0.0420711 -0.00399582 -0.0448222 0.0436603 0.0013335 -0.0449802 0.0436603 -0.00355184 -0.039842 0.045 -0.00378166 -0.04242 0.0446593 -0.00969563 -0.0460617 0.0420711 -0.010023 -0.0476168 0.04 -0.00432083 -0.048468 0.04 -0.0160135 -0.0473663 0.035 -0.0102989 -0.0489278 0.035 -0.0200592 -0.0457256 0.035 -0.0155844 -0.0460971 0.04 -0.0150754 -0.0445917 0.0420711 -0.0183157 -0.0384485 0.0446593 -0.0144121 -0.0426297 0.0436603 -0.0172026 -0.0361119 0.045 -0.0213529 -0.0338238 0.045 -0.0193529 -0.0406259 0.0436603 -0.0202436 -0.0424957 0.0420711 -0.0251276 -0.0398031 0.0420711 -0.025976 -0.0411469 0.04 -0.0209271 -0.0439304 0.04 -0.0213567 -0.0448323 0.0375882 -0.0215033 -0.0451399 0.035 -0.0265093 -0.0419917 0.0375882 -0.0266912 -0.0422798 0.035 -0.0312897 -0.0385616 0.0375882 -0.0306602 -0.0377858 0.04 -0.0296589 -0.0365518 0.0420711 -0.028354 -0.0349436 0.0436603 -0.0240221 -0.0380518 0.0436603 -0.0227346 -0.0360124 0.0446593 -0.033805 -0.0367216 0.035 -0.0349141 -0.0338943 0.04 -0.0337738 -0.0327874 0.0420711 -0.0322878 -0.0313448 0.0436603 -0.0268343 -0.0330707 0.0446593 -0.0386778 -0.029527 0.04 -0.0356309 -0.0345902 0.0375882 -0.0374146 -0.0285627 0.0420711 -0.0357684 -0.027306 0.0436603 -0.0317942 -0.024272 0.045 -0.0305573 -0.0296648 0.0446593 -0.0287003 -0.027862 0.045 -0.0344417 -0.0203412 0.045 -0.0338514 -0.0258425 0.0446593 -0.0394719 -0.0301332 0.0375882 -0.0427588 -0.0252533 0.0375882 -0.0397427 -0.03034 0.035 -0.0430522 -0.0254266 0.035 -0.0474942 -0.0145033 0.0375882 -0.0445312 -0.0196161 0.04 -0.0450188 -0.0137474 0.0420711 -0.043038 -0.0131426 0.0436603 -0.0411816 -0.0181406 0.0436603 -0.0407314 -0.0124382 0.0446593 -0.0442904 -0.00796006 0.0436603 -0.0465387 -0.0142116 0.04 -0.0488762 -0.00878424 0.0375882 -0.049572 -0.00294185 0.0375882 -0.0485748 -0.00288266 0.04 -0.0478929 -0.00860753 0.04 -0.0469884 -0.00278852 0.0420711 -0.0463288 -0.00832641 0.0420711 -0.0419166 -0.00753344 0.0446593 -0.0425134 -0.00252295 0.0446593 -0.0399297 -0.00236963 0.045 -0.0393692 -0.00707561 0.045 -0.0492852 0.00822582 0.035 -0.0478929 0.00860753 0.04 -0.0463288 0.00832641 0.0420711 -0.0469884 0.00278852 0.0420711 -0.0419166 0.00753344 0.0446593 -0.0393692 0.00707561 0.045 -0.0407314 0.0124382 0.0446593 -0.0442904 0.00796006 0.0436603 -0.0488762 0.00878424 0.0375882 -0.0474942 0.0145033 0.0375882 -0.0454455 0.0200188 0.0375882 -0.0472231 0.0162098 0.035 -0.0430522 0.0254266 0.035 -0.0430769 0.0189754 0.0420711 -0.0411816 0.0181406 0.0436603 -0.0366703 0.0216574 0.0446593 -0.0344417 0.0203412 0.045 -0.038747 0.0228839 0.0436603 -0.0338514 0.0258425 0.0446593 -0.0357684 0.027306 0.0436603 -0.0405302 0.0239371 0.0420711 -0.0374146 0.0285627 0.0420711 -0.0418986 0.0247453 0.04 -0.0427588 0.0252533 0.0375882 -0.0356309 0.0345902 0.0375882 -0.0394719 0.0301332 0.0375882 -0.0349141 0.0338943 0.04 -0.0386778 0.029527 0.04 -0.033805 0.0367216 0.035 -0.025976 0.0411469 0.04 -0.0251276 0.0398031 0.0420711 -0.0296589 0.0365518 0.0420711 -0.0240221 0.0380518 0.0436603 -0.0268343 0.0330707 0.0446593 -0.0227346 0.0360124 0.0446593 -0.0183157 0.0384485 0.0446593 -0.0209271 0.0439304 0.04 -0.0265093 0.0419917 0.0375882 -0.0215033 0.0451399 0.035 -0.0160135 0.0473663 0.035 -0.0213567 0.0448323 0.0375882 -0.010023 0.0476168 0.04 -0.0159044 0.0470435 0.0375882 -0.0155844 0.0460971 0.04 -0.00969563 0.0460617 0.0420711 -0.00926904 0.044035 0.0436603 -0.0144121 0.0426297 0.0436603 -0.00877226 0.0416749 0.0446593 -0.00823914 0.0391423 0.045 -0.00355184 0.039842 0.045 -0.00399582 0.0448222 0.0436603 -0.00417972 0.0468851 0.0420711 -0.0102287 0.0485944 0.0375882 -0.00440954 0.0494631 0.0375882 0.00147157 0.0496374 0.0375882 0.00144197 0.0486389 0.04 -0.00432083 0.048468 0.04 0.00139487 0.0470504 0.0420711 0.0013335 0.0449802 0.0436603 -0.00378166 0.04242 0.0446593 0.00148167 0.049978 0.035 0.0130895 0.0479031 0.0375882 0.00733202 0.049115 0.0375882 0.0124073 0.0454064 0.0420711 0.0118614 0.0434086 0.0436603 0.0066441 0.0445068 0.0436603 0.0105435 0.0385854 0.045 0.0150331 0.0370676 0.045 0.0112257 0.0410821 0.0446593 0.0169122 0.041701 0.0436603 0.0176906 0.0436203 0.0420711 0.0128262 0.0469394 0.04 0.0182879 0.045093 0.04 0.0186633 0.0460187 0.0375882 0.0227255 0.0412218 0.0420711 0.0217256 0.0394081 0.0436603 0.0160058 0.039466 0.0446593 0.0193117 0.0350294 0.045 0.0273038 0.0417892 0.035 0.0289503 0.0403475 0.0375882 0.0239751 0.0434883 0.0375882 0.0234928 0.0426135 0.04 0.0205612 0.037296 0.0446593 0.024828 0.0346023 0.0446593 0.0262341 0.0365619 0.0436603 0.0287463 0.031423 0.0446593 0.0303742 0.0332025 0.0436603 0.0274415 0.0382446 0.0420711 0.0317722 0.0347306 0.0420711 0.0283679 0.0395358 0.04 0.029149 0.0406243 0.035 0.0338576 0.0367799 0.035 0.0376174 0.0324187 0.0375882 0.0368607 0.0317665 0.04 0.0328448 0.0359032 0.04 0.0356569 0.030729 0.0420711 0.039389 0.0306587 0.035 0.0441797 0.0226759 0.0375882 0.0411877 0.027742 0.0375882 0.0432909 0.0222197 0.04 0.0403591 0.0271839 0.04 0.039041 0.0262961 0.0420711 0.0373233 0.0251391 0.0436603 0.0378889 0.019447 0.0446593 0.0374968 0.0139281 0.045 0.039923 0.0148293 0.0446593 0.0400346 0.0205483 0.0436603 0.0418771 0.021494 0.0420711 0.0465516 0.0172914 0.0375882 0.047235 0.0162179 0.035 0.0472989 0.0114296 0.04 0.0456151 0.0169436 0.04 0.0441253 0.0163902 0.0420711 0.0421839 0.0156691 0.0436603 0.0413967 0.0100034 0.0446593 0.0496491 0.00591366 0.035 0.0493107 0.00587336 0.0375882 0.0482699 0.0116643 0.0375882 0.0467407 0.00556724 0.0420711 0.0457542 0.0110563 0.0420711 0.043741 0.0105699 0.0436603 0.04 -1.46917e-18 0.045 0.0422893 0.00503704 0.0446593 0.0446841 0.00532229 0.0436603 0.045 -1.63324e-18 0.0436603 0.0483187 0.0057552 0.04 0.0470711 -1.82786e-18 0.0420711 0.0486603 -2.08149e-18 0.04 0.05 -2.69381e-18 0.035 + + + + + + + + + + -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.992981 -0.118273 0 -0.992981 -0.118273 0 -0.992981 -0.118275 0 -0.992981 -0.118275 0 -0.972023 -0.234886 0 -0.972023 -0.234886 0 -0.937419 -0.348203 0 -0.937419 -0.348203 0 -0.93742 -0.348201 0 -0.93742 -0.348201 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.889657 -0.456629 0 -0.829406 -0.558647 0 -0.829406 -0.558647 0 -0.75751 -0.652823 0 -0.75751 -0.652823 0 -0.757511 -0.652822 0 -0.757511 -0.652822 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.674983 -0.737833 0 -0.582979 -0.812487 0 -0.582979 -0.812487 0 -0.582977 -0.812488 0 -0.582977 -0.812488 0 -0.482792 -0.875735 0 -0.482792 -0.875735 0 -0.375829 -0.926689 0 -0.375829 -0.926689 0 -0.375827 -0.92669 0 -0.375827 -0.92669 0 -0.263588 -0.964635 0 -0.263588 -0.964635 0 -0.263587 -0.964636 0 -0.263587 -0.964636 0 -0.147647 -0.98904 0 -0.147647 -0.98904 0 -0.0296245 -0.999561 0 -0.0296245 -0.999561 0 -0.0296333 -0.999561 0 -0.0296333 -0.999561 0 0.0887949 -0.99605 0 0.0887949 -0.99605 0 0.0887958 -0.99605 0 0.0887958 -0.99605 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.205979 -0.978557 0 0.32027 -0.947326 0 0.32027 -0.947326 0 0.430064 -0.902798 0 0.430064 -0.902798 0 0.430066 -0.902798 0 0.430066 -0.902798 0 0.533824 -0.845596 0 0.533824 -0.845596 0 0.533823 -0.845596 0 0.533823 -0.845596 0 0.630088 -0.776524 0 0.630088 -0.776524 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.717507 -0.696551 0 0.794855 -0.6068 0 0.794855 -0.6068 0 0.794854 -0.606801 0 0.794854 -0.606801 0 0.861044 -0.508531 0 0.861044 -0.508531 0 0.861044 -0.50853 0 0.861044 -0.50853 0 0.915146 -0.403124 0 0.915146 -0.403124 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.956401 -0.292057 0 0.984231 -0.17689 0 0.984231 -0.17689 0 0.98423 -0.176891 0 0.98423 -0.176891 0 0.998244 -0.0592405 0 0.998244 -0.0592405 7.25487e-18 0.998244 0.0592405 -7.25487e-18 0.998244 0.0592405 0 0.98423 0.176891 0 0.98423 0.176891 0 0.984231 0.17689 0 0.984231 0.17689 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.956401 0.292057 0 0.915146 0.403124 0 0.915146 0.403124 0 0.861044 0.50853 0 0.861044 0.50853 0 0.861044 0.508531 0 0.861044 0.508531 0 0.794854 0.606801 0 0.794854 0.606801 0 0.794855 0.6068 0 0.794855 0.6068 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.717507 0.696551 0 0.630088 0.776524 0 0.630088 0.776524 0 0.533823 0.845596 0 0.533823 0.845596 0 0.533824 0.845596 0 0.533824 0.845596 0 0.430066 0.902798 0 0.430066 0.902798 0 0.430064 0.902798 0 0.430064 0.902798 0 0.32027 0.947326 0 0.32027 0.947326 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.205979 0.978557 0 0.0887958 0.99605 0 0.0887958 0.99605 0 0.0887949 0.99605 0 0.0887949 0.99605 0 -0.0296333 0.999561 0 -0.0296333 0.999561 0 -0.0296245 0.999561 0 -0.0296245 0.999561 0 -0.147647 0.98904 0 -0.147647 0.98904 0 -0.263587 0.964636 0 -0.263587 0.964636 0 -0.263588 0.964635 0 -0.263588 0.964635 0 -0.375827 0.92669 0 -0.375827 0.92669 0 -0.375829 0.926689 0 -0.375829 0.926689 0 -0.482792 0.875735 0 -0.482792 0.875735 0 -0.582977 0.812488 0 -0.582977 0.812488 0 -0.582979 0.812487 0 -0.582979 0.812487 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.674983 0.737833 0 -0.757511 0.652822 0 -0.757511 0.652822 0 -0.75751 0.652823 0 -0.75751 0.652823 0 -0.829406 0.558647 0 -0.829406 0.558647 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.889657 0.456629 0 -0.93742 0.348201 0 -0.93742 0.348201 0 -0.937419 0.348203 0 -0.937419 0.348203 0 -0.972023 0.234886 0 -0.972023 0.234886 0 -0.992981 0.118275 0 -0.992981 0.118275 0 -0.992981 0.118273 0 -0.992981 0.118273 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -2.13434e-23 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 6.40303e-24 -1.22465e-16 -1 5.12242e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 1.23792e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.10986e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 0 -1.22465e-16 -1 -8.53737e-24 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.56121e-23 -1.22465e-16 -1 0 -1.22465e-16 -1 3.41495e-23 -1.22465e-16 -1 2.77465e-23 -1.22465e-16 -1 1.04049e-23 -1.22465e-16 -1 1.28061e-23 -1.22465e-16 -1 5.54929e-23 -1.22465e-16 -1 1.70747e-23 -1.22465e-16 -1 -5.54929e-23 -1.22464e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 1.66479e-22 -1.22465e-16 -1 -1.36598e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 -3.52167e-23 -1.22465e-16 -1 -6.8299e-23 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -1.23792e-22 -1.22465e-16 -1 1.36598e-22 -1.22465e-16 -1 0 -1.22465e-16 -1 6.8299e-23 -1.22465e-16 -1 -2.04897e-22 -1.22465e-16 -1 2.04897e-22 -1.22465e-16 -1 7.25677e-23 -1.22465e-16 -1 -1.02448e-22 -1.22465e-16 -1 1.02448e-22 -1.22465e-16 -1 3.52167e-23 -1.22465e-16 -1 8.53737e-24 -1.22465e-16 -1 -3.41495e-23 -1.22465e-16 -1 0.948247 -0.289567 -0.130301 0.948247 -0.289567 -0.130301 0.907343 -0.399687 -0.130301 0.907344 -0.399687 -0.1303 0.853704 -0.504194 -0.1303 0.853703 -0.504196 -0.130301 0.853703 -0.504196 -0.130302 0.788078 -0.601627 -0.130302 0.788078 -0.601627 -0.130301 0.788078 -0.601626 -0.130302 0.71139 -0.690613 -0.130302 0.71139 -0.690612 -0.130301 0.71139 -0.690613 -0.130301 0.624716 -0.769904 -0.130301 0.624716 -0.769904 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.529272 -0.838387 -0.130301 0.426399 -0.895101 -0.130301 0.426399 -0.895101 -0.130301 0.426398 -0.895102 -0.1303 0.31754 -0.93925 -0.1303 0.317539 -0.93925 -0.130302 0.204223 -0.970214 -0.130302 0.204223 -0.970214 -0.130302 0.204222 -0.970214 -0.130301 0.0880386 -0.987558 -0.130301 0.0880388 -0.987558 -0.130302 0.0880379 -0.987558 -0.130301 -0.0293807 -0.991039 -0.130301 -0.0293803 -0.991039 -0.1303 -0.0293719 -0.991039 -0.130301 -0.146388 -0.980608 -0.130301 -0.146388 -0.980608 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.130301 -0.26134 -0.956412 -0.1303 -0.372624 -0.918789 -0.1303 -0.372623 -0.918789 -0.130301 -0.372625 -0.918789 -0.130301 -0.478676 -0.868269 -0.130301 -0.478676 -0.868269 -0.1303 -0.578007 -0.805562 -0.1303 -0.578009 -0.80556 -0.130301 -0.578009 -0.80556 -0.130301 -0.669228 -0.731543 -0.130301 -0.669228 -0.731543 -0.130302 -0.669229 -0.731543 -0.130301 -0.751053 -0.647256 -0.130301 -0.751053 -0.647257 -0.1303 -0.751052 -0.647258 -0.130301 -0.822335 -0.553884 -0.130301 -0.822335 -0.553884 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.882072 -0.452736 -0.130301 -0.929428 -0.345233 -0.130301 -0.929428 -0.345232 -0.1303 -0.929427 -0.345234 -0.130302 -0.963736 -0.232883 -0.130302 -0.963736 -0.232884 -0.130301 -0.984515 -0.117267 -0.130301 -0.984515 -0.117265 -0.130302 -0.984515 -0.117265 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.991474 0 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117265 -0.130302 -0.984515 0.117267 -0.130301 -0.963736 0.232883 -0.130301 -0.963736 0.232884 -0.130302 -0.929427 0.345234 -0.130302 -0.929428 0.345233 -0.130301 -0.929428 0.345232 -0.130301 -0.882072 0.452736 -0.130301 -0.882072 0.452736 -0.1303 -0.882072 0.452736 -0.130301 -0.822335 0.553884 -0.130301 -0.822335 0.553884 -0.130301 -0.751052 0.647258 -0.130301 -0.751053 0.647257 -0.1303 -0.751053 0.647256 -0.130301 -0.669229 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.669228 0.731543 -0.130301 -0.578009 0.80556 -0.130301 -0.578009 0.80556 -0.130301 -0.578007 0.805562 -0.1303 -0.478676 0.868269 -0.1303 -0.478676 0.868269 -0.130301 -0.372625 0.918789 -0.130301 -0.372624 0.918789 -0.130301 -0.372623 0.918789 -0.1303 -0.26134 0.956412 -0.1303 -0.26134 0.956411 -0.130302 -0.26134 0.956412 -0.130301 -0.146388 0.980608 -0.130301 -0.146388 0.980608 -0.130301 -0.029372 0.991039 -0.130301 -0.0293803 0.991039 -0.1303 -0.0293807 0.991039 -0.130301 0.0880379 0.987558 -0.130301 0.0880386 0.987558 -0.130302 0.0880388 0.987558 -0.130301 0.204222 0.970214 -0.130301 0.204223 0.970214 -0.130302 0.204223 0.970214 -0.130302 0.31754 0.93925 -0.130302 0.317539 0.93925 -0.1303 0.426398 0.895102 -0.1303 0.426399 0.895101 -0.130301 0.426399 0.895101 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.529272 0.838387 -0.130301 0.624716 0.769904 -0.130301 0.624716 0.769904 -0.130301 0.71139 0.690613 -0.130301 0.71139 0.690612 -0.130301 0.71139 0.690613 -0.130302 0.788078 0.601626 -0.130302 0.788078 0.601627 -0.130301 0.788077 0.601627 -0.130302 0.853703 0.504196 -0.130302 0.853703 0.504196 -0.130301 0.853704 0.504194 -0.1303 0.907344 0.399687 -0.1303 0.907344 0.399687 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.948247 0.289567 -0.130301 0.97584 0.175382 -0.130301 0.97584 0.175382 -0.130299 0.975839 0.175383 -0.130301 0.989733 0.0587355 -0.130301 0.989733 0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.989733 -0.0587355 -0.130301 0.975839 -0.175383 -0.130301 0.97584 -0.175382 -0.1303 0.97584 -0.175382 -0.130301 0.948247 -0.289567 -0.130301 0.922494 0.0547452 -0.38211 0.909544 0.163468 -0.38211 0.909544 0.163467 -0.38211 0.883826 0.269895 -0.38211 0.883826 0.269895 -0.382111 0.845701 0.372533 -0.38211 0.845702 0.372533 -0.38211 0.795705 0.469942 -0.38211 0.795705 0.469943 -0.382109 0.734539 0.560755 -0.382109 0.734539 0.560755 -0.382109 0.663061 0.643695 -0.382109 0.663061 0.643695 -0.382109 0.582275 0.717599 -0.382109 0.582275 0.717599 -0.382109 0.493315 0.78143 -0.382109 0.493315 0.78143 -0.382109 0.397431 0.834291 -0.382109 0.397431 0.834291 -0.38211 0.295967 0.87544 -0.38211 0.295967 0.875441 -0.382109 0.190348 0.904301 -0.382109 0.190348 0.904301 -0.382109 0.0820577 0.920467 -0.382109 0.0820575 0.920467 -0.382109 -0.0273846 0.923711 -0.382109 -0.0273843 0.923711 -0.38211 -0.136443 0.913989 -0.38211 -0.136443 0.913989 -0.38211 -0.243585 0.891436 -0.38211 -0.243585 0.891436 -0.38211 -0.347309 0.85637 -0.38211 -0.347309 0.85637 -0.38211 -0.446156 0.809282 -0.38211 -0.446157 0.809282 -0.38211 -0.538741 0.750833 -0.38211 -0.538741 0.750833 -0.38211 -0.623763 0.681844 -0.38211 -0.623763 0.681844 -0.38211 -0.700029 0.603284 -0.38211 -0.700029 0.603284 -0.38211 -0.766468 0.516255 -0.38211 -0.766468 0.516255 -0.38211 -0.822147 0.421979 -0.38211 -0.822147 0.421979 -0.38211 -0.866285 0.321779 -0.38211 -0.866286 0.321779 -0.382109 -0.898263 0.217062 -0.382109 -0.898263 0.217062 -0.382109 -0.917631 0.109298 -0.382109 -0.917631 0.109298 -0.382109 -0.924117 0 -0.382109 -0.924117 0 -0.382109 -0.917631 -0.109298 -0.382109 -0.917631 -0.109298 -0.382109 -0.898263 -0.217062 -0.382109 -0.898263 -0.217062 -0.382109 -0.866286 -0.321779 -0.382109 -0.866286 -0.321779 -0.38211 -0.822147 -0.421979 -0.38211 -0.822147 -0.421979 -0.38211 -0.766468 -0.516255 -0.38211 -0.766468 -0.516255 -0.38211 -0.700029 -0.603284 -0.38211 -0.700029 -0.603284 -0.38211 -0.623763 -0.681844 -0.38211 -0.623763 -0.681844 -0.38211 -0.538741 -0.750833 -0.38211 -0.538741 -0.750833 -0.38211 -0.446156 -0.809282 -0.38211 -0.446157 -0.809282 -0.38211 -0.347309 -0.85637 -0.38211 -0.347309 -0.856369 -0.38211 -0.243585 -0.891436 -0.38211 -0.243585 -0.891436 -0.38211 -0.136443 -0.913989 -0.38211 -0.136443 -0.913989 -0.38211 -0.0273846 -0.923711 -0.38211 -0.0273843 -0.923711 -0.382109 0.0820577 -0.920467 -0.382109 0.0820575 -0.920467 -0.382109 0.190348 -0.904301 -0.382109 0.190349 -0.904301 -0.382109 0.295967 -0.875441 -0.382109 0.295967 -0.87544 -0.38211 0.397431 -0.834291 -0.38211 0.397431 -0.834291 -0.382109 0.493315 -0.78143 -0.382109 0.493315 -0.78143 -0.382109 0.582275 -0.717599 -0.382109 0.582275 -0.717599 -0.382109 0.663061 -0.643695 -0.382109 0.663061 -0.643695 -0.382109 0.734539 -0.560755 -0.382109 0.734539 -0.560755 -0.382109 0.795705 -0.469942 -0.382109 0.795705 -0.469942 -0.38211 0.845702 -0.372533 -0.38211 0.845701 -0.372533 -0.38211 0.883826 -0.269895 -0.382111 0.883826 -0.269895 -0.38211 0.909544 -0.163467 -0.38211 0.909544 -0.163467 -0.38211 0.922494 -0.0547448 -0.38211 0.922494 -0.0547452 -0.382111 0.922494 0.0547447 -0.382111 0.792475 0.0470289 -0.608088 0.781351 0.140428 -0.608088 0.781351 0.140428 -0.608088 0.759258 0.231855 -0.608088 0.759258 0.231855 -0.608087 0.726507 0.320028 -0.608087 0.726507 0.320027 -0.608088 0.683557 0.403707 -0.608088 0.683557 0.403708 -0.608088 0.631011 0.481721 -0.608088 0.631011 0.48172 -0.608088 0.569607 0.552971 -0.608088 0.569607 0.552971 -0.608088 0.500207 0.616459 -0.608088 0.500207 0.616459 -0.608088 0.423786 0.671293 -0.608088 0.423786 0.671293 -0.608088 0.341416 0.716704 -0.608088 0.341416 0.716704 -0.608088 0.254253 0.752054 -0.608088 0.254253 0.752053 -0.608088 0.16352 0.776846 -0.608088 0.16352 0.776846 -0.608088 0.0704923 0.790734 -0.608088 0.0704923 0.790734 -0.608088 -0.0235248 0.793521 -0.608088 -0.023525 0.793521 -0.608088 -0.117212 0.785169 -0.608088 -0.117212 0.785169 -0.608088 -0.209254 0.765795 -0.608088 -0.209254 0.765795 -0.608088 -0.298358 0.735671 -0.608088 -0.298358 0.735671 -0.608088 -0.383274 0.695219 -0.608088 -0.383274 0.69522 -0.608088 -0.46281 0.645009 -0.608088 -0.46281 0.645009 -0.608088 -0.535849 0.585744 -0.608088 -0.535849 0.585744 -0.608087 -0.601366 0.518256 -0.608087 -0.601365 0.518256 -0.608088 -0.65844 0.443493 -0.608088 -0.65844 0.443493 -0.608088 -0.706272 0.362504 -0.608088 -0.706272 0.362504 -0.608088 -0.744189 0.276427 -0.608088 -0.744189 0.276427 -0.608088 -0.771659 0.186469 -0.608088 -0.771659 0.186469 -0.608088 -0.788297 0.0938936 -0.608088 -0.788297 0.0938936 -0.608088 -0.79387 0 -0.608088 -0.79387 0 -0.608088 -0.788297 -0.0938936 -0.608088 -0.788297 -0.0938936 -0.608088 -0.771659 -0.186469 -0.608088 -0.771659 -0.186469 -0.608088 -0.744189 -0.276427 -0.608088 -0.744189 -0.276427 -0.608088 -0.706272 -0.362504 -0.608088 -0.706272 -0.362504 -0.608088 -0.65844 -0.443493 -0.608088 -0.65844 -0.443493 -0.608088 -0.601365 -0.518256 -0.608088 -0.601365 -0.518256 -0.608087 -0.535849 -0.585744 -0.608087 -0.535849 -0.585744 -0.608088 -0.46281 -0.645009 -0.608088 -0.46281 -0.645009 -0.608088 -0.383274 -0.69522 -0.608088 -0.383274 -0.695219 -0.608088 -0.298358 -0.735671 -0.608088 -0.298358 -0.735671 -0.608088 -0.209254 -0.765795 -0.608088 -0.209254 -0.765795 -0.608088 -0.117212 -0.785169 -0.608088 -0.117212 -0.785169 -0.608088 -0.0235248 -0.793521 -0.608088 -0.0235249 -0.793521 -0.608088 0.0704923 -0.790734 -0.608088 0.0704923 -0.790734 -0.608088 0.16352 -0.776846 -0.608088 0.16352 -0.776846 -0.608088 0.254252 -0.752054 -0.608088 0.254253 -0.752054 -0.608088 0.341416 -0.716704 -0.608088 0.341416 -0.716704 -0.608088 0.423786 -0.671293 -0.608088 0.423786 -0.671293 -0.608088 0.500207 -0.616459 -0.608088 0.500207 -0.616459 -0.608088 0.569607 -0.552971 -0.608088 0.569608 -0.552971 -0.608088 0.631011 -0.48172 -0.608088 0.631011 -0.48172 -0.608088 0.683557 -0.403707 -0.608088 0.683557 -0.403707 -0.608088 0.726507 -0.320028 -0.608088 0.726507 -0.320028 -0.608087 0.759258 -0.231855 -0.608087 0.759258 -0.231855 -0.608088 0.781351 -0.140428 -0.608088 0.781351 -0.140428 -0.608088 0.792475 -0.0470295 -0.608088 0.792476 -0.0470289 -0.608087 0.792476 0.0470296 -0.608087 0.608365 0.0361034 -0.792836 0.599824 0.107803 -0.792836 0.599825 0.107803 -0.792836 0.582864 0.17799 -0.792836 0.582864 0.17799 -0.792836 0.557722 0.245677 -0.792836 0.557722 0.245678 -0.792836 0.52475 0.309917 -0.792836 0.52475 0.309916 -0.792836 0.484412 0.369805 -0.792836 0.484412 0.369805 -0.792836 0.437274 0.424502 -0.792836 0.437274 0.424502 -0.792836 0.383997 0.473241 -0.792836 0.383998 0.473241 -0.792836 0.325331 0.515336 -0.792836 0.325331 0.515336 -0.792836 0.262097 0.550197 -0.792836 0.262097 0.550197 -0.792836 0.195184 0.577334 -0.792836 0.195184 0.577334 -0.792836 0.12553 0.596367 -0.792836 0.12553 0.596366 -0.792836 0.0541157 0.607027 -0.792836 0.0541153 0.607028 -0.792836 -0.0180598 0.609168 -0.792836 -0.0180595 0.609167 -0.792836 -0.0899807 0.602756 -0.792836 -0.089981 0.602756 -0.792836 -0.16064 0.587883 -0.792836 -0.160639 0.587883 -0.792836 -0.229042 0.564757 -0.792836 -0.229043 0.564757 -0.792836 -0.294231 0.533704 -0.792836 -0.294231 0.533704 -0.792836 -0.355288 0.495158 -0.792836 -0.355288 0.495158 -0.792836 -0.411358 0.449661 -0.792836 -0.411358 0.449661 -0.792836 -0.461654 0.397853 -0.792836 -0.461654 0.397853 -0.792836 -0.505469 0.340459 -0.792836 -0.505469 0.340459 -0.792836 -0.542188 0.278286 -0.792836 -0.542188 0.278286 -0.792836 -0.571297 0.212206 -0.792836 -0.571296 0.212206 -0.792836 -0.592385 0.143148 -0.792836 -0.592385 0.143148 -0.792836 -0.605157 0.0720801 -0.792836 -0.605158 0.0720799 -0.792836 -0.609435 0 -0.792836 -0.609435 0 -0.792836 -0.605158 -0.0720802 -0.792836 -0.605157 -0.0720799 -0.792836 -0.592385 -0.143148 -0.792836 -0.592385 -0.143148 -0.792836 -0.571296 -0.212206 -0.792836 -0.571297 -0.212206 -0.792836 -0.542188 -0.278286 -0.792836 -0.542188 -0.278286 -0.792836 -0.505469 -0.340459 -0.792836 -0.505469 -0.340459 -0.792836 -0.461654 -0.397853 -0.792836 -0.461654 -0.397853 -0.792836 -0.411358 -0.449661 -0.792836 -0.411358 -0.449661 -0.792836 -0.355288 -0.495158 -0.792836 -0.355288 -0.495158 -0.792836 -0.294231 -0.533704 -0.792836 -0.294231 -0.533704 -0.792836 -0.229042 -0.564757 -0.792836 -0.229042 -0.564757 -0.792836 -0.160639 -0.587883 -0.792836 -0.160639 -0.587883 -0.792836 -0.0899808 -0.602756 -0.792836 -0.089981 -0.602756 -0.792836 -0.0180598 -0.609167 -0.792836 -0.0180595 -0.609168 -0.792836 0.0541157 -0.607028 -0.792836 0.0541153 -0.607028 -0.792836 0.12553 -0.596367 -0.792836 0.12553 -0.596367 -0.792836 0.195184 -0.577334 -0.792836 0.195184 -0.577334 -0.792836 0.262097 -0.550197 -0.792836 0.262097 -0.550197 -0.792836 0.325331 -0.515336 -0.792836 0.325331 -0.515336 -0.792836 0.383998 -0.473241 -0.792836 0.383997 -0.473241 -0.792836 0.437274 -0.424502 -0.792836 0.437274 -0.424502 -0.792836 0.484412 -0.369805 -0.792836 0.484412 -0.369805 -0.792836 0.52475 -0.309917 -0.792836 0.52475 -0.309917 -0.792836 0.557722 -0.245677 -0.792836 0.557721 -0.245677 -0.792836 0.582864 -0.17799 -0.792836 0.582864 -0.17799 -0.792836 0.599825 -0.107803 -0.792836 0.599824 -0.107803 -0.792836 0.608364 -0.0361035 -0.792836 0.608365 -0.0361034 -0.792836 0.608365 0.0361035 -0.792836 0.382585 0.0227046 -0.923641 0.377214 0.0677947 -0.923641 0.377214 0.0677944 -0.923642 0.366548 0.111933 -0.923642 0.366548 0.111933 -0.923641 0.350737 0.154501 -0.923641 0.350737 0.1545 -0.923642 0.330002 0.194899 -0.923642 0.330002 0.194899 -0.923641 0.304634 0.232561 -0.923641 0.304634 0.232561 -0.923641 0.27499 0.266959 -0.923641 0.27499 0.266959 -0.923641 0.241486 0.297609 -0.923641 0.241486 0.297609 -0.923641 0.204592 0.324081 -0.923641 0.204592 0.324081 -0.923641 0.164826 0.346004 -0.923641 0.164826 0.346004 -0.923641 0.122746 0.36307 -0.923641 0.122746 0.36307 -0.923641 0.0789429 0.375039 -0.923641 0.0789428 0.37504 -0.923641 0.0340318 0.381744 -0.923641 0.0340319 0.381744 -0.923641 -0.0113574 0.38309 -0.923641 -0.0113574 0.383089 -0.923641 -0.0565867 0.379057 -0.923641 -0.0565865 0.379057 -0.923642 -0.101022 0.369704 -0.923642 -0.101022 0.369704 -0.923641 -0.144039 0.355161 -0.923641 -0.144039 0.355161 -0.923641 -0.185034 0.335632 -0.923641 -0.185034 0.335632 -0.923641 -0.223431 0.311392 -0.923641 -0.223432 0.311392 -0.923641 -0.258693 0.28278 -0.923641 -0.258693 0.28278 -0.923641 -0.290322 0.250199 -0.923641 -0.290322 0.250199 -0.923641 -0.317876 0.214106 -0.923641 -0.317876 0.214106 -0.923641 -0.340968 0.175007 -0.923641 -0.340968 0.175007 -0.923641 -0.359273 0.133451 -0.923641 -0.359274 0.133451 -0.923641 -0.372536 0.0900217 -0.923641 -0.372535 0.0900218 -0.923641 -0.380568 0.0453291 -0.923641 -0.380567 0.0453293 -0.923642 -0.383257 0 -0.923642 -0.383257 0 -0.923642 -0.380567 -0.0453291 -0.923642 -0.380568 -0.0453293 -0.923641 -0.372535 -0.0900217 -0.923641 -0.372536 -0.0900219 -0.923641 -0.359274 -0.133451 -0.923641 -0.359274 -0.133451 -0.923641 -0.340968 -0.175007 -0.923641 -0.340968 -0.175007 -0.923641 -0.317876 -0.214106 -0.923641 -0.317876 -0.214106 -0.923641 -0.290322 -0.250199 -0.923641 -0.290322 -0.250199 -0.923641 -0.258693 -0.28278 -0.923641 -0.258693 -0.28278 -0.923641 -0.223432 -0.311392 -0.923641 -0.223431 -0.311392 -0.923641 -0.185034 -0.335632 -0.923641 -0.185034 -0.335632 -0.923641 -0.144039 -0.355161 -0.923641 -0.144039 -0.355161 -0.923641 -0.101022 -0.369705 -0.923641 -0.101022 -0.369704 -0.923642 -0.0565866 -0.379057 -0.923642 -0.0565865 -0.379057 -0.923641 -0.0113574 -0.383089 -0.923641 -0.0113574 -0.38309 -0.923641 0.0340317 -0.381744 -0.923641 0.034032 -0.381744 -0.923641 0.078943 -0.37504 -0.923641 0.0789427 -0.375039 -0.923641 0.122746 -0.36307 -0.923641 0.122746 -0.36307 -0.923641 0.164826 -0.346004 -0.923641 0.164826 -0.346004 -0.923641 0.204592 -0.324081 -0.923641 0.204592 -0.324081 -0.923641 0.241486 -0.297609 -0.923641 0.241486 -0.297609 -0.923641 0.27499 -0.266959 -0.923641 0.27499 -0.266959 -0.923641 0.304634 -0.232561 -0.923641 0.304634 -0.232561 -0.923641 0.330002 -0.194899 -0.923641 0.330002 -0.194899 -0.923641 0.350737 -0.1545 -0.923641 0.350737 -0.1545 -0.923641 0.366549 -0.111933 -0.923641 0.366548 -0.111933 -0.923642 0.377214 -0.0677946 -0.923642 0.377214 -0.0677945 -0.923641 0.382585 -0.0227043 -0.923641 0.382584 -0.0227045 -0.923642 0.382584 0.0227043 -0.923642 0.130522 0.00774578 -0.991415 0.12869 0.0231286 -0.991415 0.12869 0.0231288 -0.991415 0.125051 0.0381871 -0.991415 0.125051 0.0381869 -0.991415 0.119657 0.0527092 -0.991415 0.119657 0.0527092 -0.991415 0.112583 0.0664914 -0.991415 0.112583 0.0664915 -0.991415 0.103929 0.0793404 -0.991415 0.103929 0.0793403 -0.991415 0.0938155 0.0910754 -0.991415 0.0938155 0.0910754 -0.991415 0.0823852 0.101532 -0.991415 0.0823851 0.101532 -0.991415 0.0697984 0.110563 -0.991415 0.0697984 0.110563 -0.991415 0.0562318 0.118042 -0.991415 0.0562318 0.118043 -0.991415 0.0418759 0.123865 -0.991415 0.0418759 0.123865 -0.991415 0.0269321 0.127948 -0.991415 0.0269321 0.127948 -0.991415 0.0116103 0.130235 -0.991415 0.0116102 0.130235 -0.991415 -0.00387461 0.130694 -0.991415 -0.00387468 0.130695 -0.991415 -0.0193052 0.129319 -0.991415 -0.0193051 0.129319 -0.991415 -0.0344645 0.126128 -0.991415 -0.0344644 0.126128 -0.991415 -0.0491401 0.121166 -0.991415 -0.0491401 0.121166 -0.991415 -0.063126 0.114504 -0.991415 -0.0631261 0.114504 -0.991415 -0.0762257 0.106234 -0.991415 -0.0762256 0.106234 -0.991415 -0.0882553 0.0964731 -0.991415 -0.0882553 0.0964731 -0.991415 -0.099046 0.0853577 -0.991415 -0.0990462 0.0853578 -0.991415 -0.108447 0.0730442 -0.991415 -0.108446 0.0730441 -0.991415 -0.116324 0.0597051 -0.991415 -0.116324 0.0597051 -0.991415 -0.122569 0.045528 -0.991415 -0.122569 0.045528 -0.991415 -0.127094 0.0307118 -0.991415 -0.127094 0.0307117 -0.991415 -0.129834 0.0154644 -0.991415 -0.129834 0.0154645 -0.991415 -0.130752 0 -0.991415 -0.130752 0 -0.991415 -0.129834 -0.0154644 -0.991415 -0.129834 -0.0154645 -0.991415 -0.127094 -0.0307118 -0.991415 -0.127094 -0.0307117 -0.991415 -0.122569 -0.045528 -0.991415 -0.122569 -0.045528 -0.991415 -0.116324 -0.0597051 -0.991415 -0.116324 -0.0597051 -0.991415 -0.108446 -0.073044 -0.991415 -0.108446 -0.0730442 -0.991415 -0.0990461 -0.0853579 -0.991415 -0.099046 -0.0853577 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0882553 -0.0964731 -0.991415 -0.0762257 -0.106234 -0.991415 -0.0762257 -0.106234 -0.991415 -0.063126 -0.114504 -0.991415 -0.063126 -0.114504 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0491401 -0.121166 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0344645 -0.126128 -0.991415 -0.0193051 -0.129319 -0.991415 -0.0193051 -0.129319 -0.991415 -0.00387461 -0.130695 -0.991415 -0.00387468 -0.130694 -0.991415 0.0116103 -0.130235 -0.991415 0.0116102 -0.130235 -0.991415 0.026932 -0.127948 -0.991415 0.0269321 -0.127948 -0.991415 0.0418759 -0.123865 -0.991415 0.0418759 -0.123865 -0.991415 0.0562319 -0.118043 -0.991415 0.0562318 -0.118042 -0.991415 0.0697984 -0.110563 -0.991415 0.0697983 -0.110563 -0.991415 0.0823851 -0.101532 -0.991415 0.0823852 -0.101532 -0.991415 0.0938155 -0.0910754 -0.991415 0.0938155 -0.0910754 -0.991415 0.103929 -0.0793403 -0.991415 0.103929 -0.0793403 -0.991415 0.112583 -0.0664914 -0.991415 0.112583 -0.0664914 -0.991415 0.119657 -0.0527092 -0.991415 0.119657 -0.0527092 -0.991415 0.125051 -0.038187 -0.991415 0.125051 -0.038187 -0.991415 0.12869 -0.0231287 -0.991415 0.12869 -0.0231288 -0.991415 0.130522 -0.00774583 -0.991415 0.130522 -0.00774579 -0.991415 0.130522 0.00774583 -0.991415 0.97584 0.175381 0.130301 0.948247 0.289567 0.130301 0.853703 0.504196 0.130302 0.71139 0.690613 0.130301 0.529272 0.838387 0.130301 0.426398 0.895102 0.1303 0.204222 0.970214 0.130301 -0.0293719 0.991039 0.130301 -0.26134 0.956412 0.1303 -0.578009 0.80556 0.130301 -0.751052 0.647258 0.130301 -0.882072 0.452736 0.130301 -0.984515 0.117265 0.130302 -0.984515 -0.117267 0.130301 -0.929428 -0.345232 0.130301 -0.751053 -0.647256 0.130301 -0.669228 -0.731543 0.130301 -0.578007 -0.805562 0.1303 -0.372623 -0.918789 0.1303 -0.0293807 -0.991039 0.130301 0.0880388 -0.987558 0.130301 0.204223 -0.970214 0.130302 0.426399 -0.895101 0.130301 0.71139 -0.690613 0.130302 0.788077 -0.601627 0.130302 0.853704 -0.504194 0.1303 0.948247 -0.289567 0.130301 0.128691 -0.0231289 0.991415 0.128691 -0.023129 0.991415 0.377214 -0.0677946 0.923641 0.377214 -0.0677944 0.923642 0.599824 -0.107803 0.792836 0.599825 -0.107803 0.792836 0.781351 -0.140428 0.608088 0.781351 -0.140428 0.608088 0.909544 -0.163468 0.38211 0.909544 -0.163467 0.38211 0.069799 -0.110564 0.991415 0.069799 -0.110564 0.991415 0.204592 -0.324081 0.923641 0.204592 -0.324081 0.923641 0.325331 -0.515336 0.792836 0.325331 -0.515336 0.792836 0.423786 -0.671293 0.608088 0.423786 -0.671293 0.608088 0.493315 -0.78143 0.38211 0.493315 -0.78143 0.382109 -0.0344648 -0.126129 0.991415 -0.0344648 -0.126129 0.991415 -0.101022 -0.369704 0.923642 -0.101022 -0.369704 0.923641 -0.16064 -0.587883 0.792836 -0.160639 -0.587883 0.792836 -0.209254 -0.765795 0.608088 -0.209254 -0.765795 0.608088 -0.243585 -0.891436 0.38211 -0.243585 -0.891436 0.38211 -0.116325 -0.0597057 0.991415 -0.116325 -0.0597057 0.991415 -0.340968 -0.175007 0.923642 -0.340968 -0.175007 0.923641 -0.542188 -0.278286 0.792836 -0.542188 -0.278286 0.792836 -0.706272 -0.362504 0.608088 -0.706272 -0.362504 0.608088 -0.822147 -0.421979 0.38211 -0.822147 -0.421979 0.38211 -0.130753 0 0.991415 -0.130753 0 0.991415 -0.383257 0 0.923642 -0.383257 0 0.923642 -0.609435 0 0.792836 -0.609435 0 0.792836 -0.79387 0 0.608088 -0.79387 0 0.608088 -0.924117 0 0.382109 -0.924117 0 0.382109 -0.12257 0.0455284 0.991415 -0.12257 0.0455284 0.991415 -0.359274 0.133451 0.923641 -0.359273 0.133451 0.923641 -0.571297 0.212206 0.792836 -0.571297 0.212206 0.792836 -0.744189 0.276427 0.608088 -0.744189 0.276427 0.608088 -0.866286 0.321779 0.382109 -0.866286 0.321779 0.38211 -0.0882561 0.0964739 0.991415 -0.0882561 0.0964739 0.991415 -0.258693 0.28278 0.923641 -0.258693 0.28278 0.923641 -0.411358 0.449661 0.792836 -0.411358 0.449661 0.792836 -0.535849 0.585744 0.608087 -0.535849 0.585744 0.608088 -0.623763 0.681844 0.38211 -0.623763 0.681844 0.38211 -0.0491406 0.121167 0.991415 -0.0491406 0.121167 0.991415 -0.144039 0.355161 0.923641 -0.144039 0.355161 0.923641 -0.229042 0.564758 0.792836 -0.229043 0.564757 0.792836 -0.298358 0.735671 0.608088 -0.298358 0.735671 0.608088 -0.347309 0.856369 0.38211 -0.347309 0.856369 0.38211 0.0116104 0.130237 0.991415 0.0116103 0.130237 0.991415 0.0340317 0.381744 0.923642 0.034032 0.381744 0.923641 0.0541157 0.607028 0.792836 0.0541153 0.607028 0.792836 0.0704923 0.790734 0.608088 0.0704923 0.790734 0.608088 0.0820577 0.920467 0.382109 0.0820575 0.920467 0.38211 0.10393 0.079341 0.991415 0.10393 0.079341 0.991415 0.304634 0.232561 0.923641 0.304634 0.232561 0.923642 0.484412 0.369805 0.792836 0.484412 0.369805 0.792836 0.631011 0.48172 0.608088 0.631011 0.48172 0.608088 0.734539 0.560754 0.382109 0.734539 0.560755 0.382109 0.130523 -0.00774591 0.991415 0.130523 -0.00774585 0.991415 0.382584 -0.0227043 0.923642 0.382585 -0.0227046 0.923642 0.608365 -0.0361035 0.792836 0.608365 -0.0361034 0.792836 0.792476 -0.0470296 0.608087 0.792475 -0.0470289 0.608088 0.922494 -0.0547447 0.382111 0.922494 -0.0547452 0.38211 0.989733 -0.0587355 0.130301 0.989733 -0.0587355 0.130301 0.97584 -0.175382 0.130301 0.97584 -0.175382 0.130299 0.975839 -0.175383 0.130301 0.948247 -0.289567 0.130301 0.948247 -0.289567 0.130301 0.883826 -0.269895 0.382111 0.883826 -0.269895 0.38211 0.759258 -0.231855 0.608087 0.759258 -0.231855 0.608088 0.582864 -0.17799 0.792836 0.582864 -0.17799 0.792836 0.366548 -0.111933 0.923641 0.366548 -0.111933 0.923642 0.125052 -0.0381872 0.991415 0.125052 -0.0381874 0.991415 0.119658 -0.0527096 0.991415 0.119658 -0.0527097 0.991415 0.350737 -0.1545 0.923641 0.350736 -0.1545 0.923642 0.557722 -0.245677 0.792836 0.557722 -0.245678 0.792836 0.726507 -0.320028 0.608087 0.726507 -0.320027 0.608088 0.845701 -0.372533 0.382111 0.845702 -0.372533 0.38211 0.907344 -0.399687 0.130301 0.907344 -0.399687 0.1303 0.853703 -0.504196 0.130302 0.853703 -0.504196 0.130301 0.795705 -0.469943 0.382109 0.795705 -0.469942 0.38211 0.683557 -0.403708 0.608088 0.683557 -0.403707 0.608088 0.52475 -0.309916 0.792836 0.52475 -0.309917 0.792836 0.330001 -0.194898 0.923642 0.330001 -0.194898 0.923642 0.112584 -0.0664921 0.991415 0.112584 -0.066492 0.991415 0.788078 -0.601626 0.130302 0.788078 -0.601627 0.130301 0.734539 -0.560755 0.382109 0.734539 -0.560754 0.382109 0.631011 -0.48172 0.608088 0.631011 -0.481721 0.608088 0.484412 -0.369805 0.792836 0.484412 -0.369805 0.792836 0.304634 -0.232561 0.923641 0.304634 -0.232561 0.923642 0.10393 -0.079341 0.991415 0.10393 -0.0793411 0.991415 0.71139 -0.690613 0.130301 0.71139 -0.690612 0.130301 0.663061 -0.643695 0.382109 0.663061 -0.643695 0.382109 0.569607 -0.552971 0.608088 0.569607 -0.552971 0.608088 0.437274 -0.424502 0.792836 0.437274 -0.424502 0.792836 0.27499 -0.266958 0.923642 0.27499 -0.266959 0.923641 0.0938163 -0.0910762 0.991415 0.0938163 -0.0910762 0.991415 0.0823859 -0.101533 0.991415 0.0823859 -0.101533 0.991415 0.241486 -0.297609 0.923642 0.241486 -0.297609 0.923641 0.383998 -0.473241 0.792836 0.383998 -0.473241 0.792836 0.500207 -0.616459 0.608088 0.500207 -0.616459 0.608088 0.582275 -0.717599 0.382109 0.582275 -0.717599 0.38211 0.624716 -0.769904 0.130301 0.624716 -0.769904 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.529272 -0.838387 0.130301 0.426398 -0.895102 0.1303 0.426399 -0.895101 0.130301 0.397431 -0.834291 0.38211 0.397431 -0.834291 0.382109 0.341416 -0.716704 0.608088 0.341416 -0.716704 0.608088 0.262097 -0.550197 0.792836 0.262097 -0.550197 0.792836 0.164826 -0.346004 0.923641 0.164826 -0.346004 0.923641 0.0562323 -0.118044 0.991415 0.0562324 -0.118044 0.991415 0.0418763 -0.123866 0.991415 0.0418763 -0.123866 0.991415 0.122746 -0.36307 0.923641 0.122746 -0.36307 0.923642 0.195184 -0.577334 0.792836 0.195184 -0.577334 0.792836 0.254253 -0.752054 0.608088 0.254253 -0.752053 0.608088 0.295967 -0.87544 0.38211 0.295967 -0.875441 0.382109 0.317539 -0.93925 0.1303 0.31754 -0.93925 0.130302 0.204222 -0.970214 0.130301 0.204223 -0.970214 0.130302 0.190348 -0.904301 0.38211 0.190348 -0.904301 0.382109 0.16352 -0.776846 0.608088 0.16352 -0.776846 0.608088 0.12553 -0.596367 0.792836 0.12553 -0.596367 0.792836 0.0789428 -0.37504 0.923641 0.0789429 -0.375039 0.923642 0.0269323 -0.127949 0.991415 0.0269323 -0.127949 0.991415 0.0880379 -0.987558 0.130301 0.0880386 -0.987558 0.130302 0.0820576 -0.920467 0.382109 0.0820577 -0.920467 0.38211 0.0704923 -0.790734 0.608088 0.0704923 -0.790734 0.608088 0.0541153 -0.607028 0.792836 0.0541157 -0.607028 0.792836 0.0340319 -0.381744 0.923642 0.0340318 -0.381744 0.923641 0.0116103 -0.130237 0.991415 0.0116104 -0.130237 0.991415 -0.0293719 -0.991039 0.130301 -0.0293803 -0.991039 0.1303 -0.0273843 -0.923711 0.38211 -0.0273846 -0.923711 0.382109 -0.023525 -0.793521 0.608088 -0.0235248 -0.793521 0.608088 -0.0180595 -0.609167 0.792836 -0.0180599 -0.609168 0.792836 -0.0113574 -0.383089 0.923642 -0.0113574 -0.383089 0.923642 -0.00387472 -0.130696 0.991415 -0.00387465 -0.130696 0.991415 -0.0193053 -0.12932 0.991415 -0.0193052 -0.12932 0.991415 -0.0565866 -0.379057 0.923642 -0.0565865 -0.379057 0.923642 -0.0899807 -0.602756 0.792836 -0.089981 -0.602756 0.792836 -0.117212 -0.785169 0.608088 -0.117212 -0.785169 0.608088 -0.136443 -0.913989 0.38211 -0.136443 -0.913989 0.38211 -0.146388 -0.980608 0.130301 -0.146388 -0.980608 0.130301 -0.26134 -0.956412 0.1303 -0.26134 -0.956411 0.130302 -0.26134 -0.956412 0.130301 -0.372625 -0.918789 0.1303 -0.372624 -0.918789 0.130301 -0.347309 -0.856369 0.38211 -0.347309 -0.856369 0.38211 -0.298358 -0.735671 0.608088 -0.298358 -0.735671 0.608088 -0.229043 -0.564757 0.792836 -0.229042 -0.564757 0.792836 -0.144039 -0.355161 0.923641 -0.144039 -0.355161 0.923641 -0.0491406 -0.121167 0.991415 -0.0491405 -0.121167 0.991415 -0.0631265 -0.114505 0.991415 -0.0631266 -0.114505 0.991415 -0.185034 -0.335632 0.923641 -0.185034 -0.335632 0.923642 -0.294231 -0.533704 0.792836 -0.294231 -0.533704 0.792836 -0.383274 -0.695219 0.608088 -0.383274 -0.69522 0.608088 -0.446156 -0.809281 0.38211 -0.446156 -0.809282 0.38211 -0.478676 -0.868269 0.130301 -0.478676 -0.868269 0.1303 -0.578009 -0.80556 0.130301 -0.578009 -0.80556 0.130301 -0.538741 -0.750833 0.38211 -0.538741 -0.750833 0.38211 -0.46281 -0.645009 0.608088 -0.46281 -0.645009 0.608088 -0.355288 -0.495158 0.792836 -0.355288 -0.495158 0.792836 -0.223432 -0.311392 0.923641 -0.223431 -0.311392 0.923642 -0.0762263 -0.106235 0.991415 -0.0762264 -0.106235 0.991415 -0.669229 -0.731543 0.130301 -0.669228 -0.731543 0.130301 -0.623763 -0.681844 0.38211 -0.623763 -0.681844 0.38211 -0.535849 -0.585744 0.608087 -0.535849 -0.585744 0.608087 -0.411358 -0.449661 0.792836 -0.411358 -0.449661 0.792836 -0.258693 -0.28278 0.923641 -0.258693 -0.28278 0.923641 -0.0882561 -0.0964739 0.991415 -0.0882561 -0.0964739 0.991415 -0.751052 -0.647258 0.130301 -0.751053 -0.647257 0.1303 -0.700029 -0.603284 0.38211 -0.700029 -0.603284 0.38211 -0.601365 -0.518256 0.608088 -0.601366 -0.518256 0.608087 -0.461654 -0.397853 0.792836 -0.461654 -0.397853 0.792836 -0.290322 -0.250199 0.923642 -0.290322 -0.250199 0.923641 -0.0990471 -0.0853586 0.991415 -0.0990469 -0.0853585 0.991415 -0.108447 -0.0730448 0.991415 -0.108447 -0.0730448 0.991415 -0.317876 -0.214106 0.923642 -0.317876 -0.214106 0.923642 -0.505469 -0.340459 0.792836 -0.505469 -0.340459 0.792836 -0.65844 -0.443493 0.608088 -0.65844 -0.443493 0.608088 -0.766468 -0.516255 0.38211 -0.766468 -0.516255 0.38211 -0.822335 -0.553884 0.130301 -0.822335 -0.553884 0.130301 -0.882072 -0.452736 0.130301 -0.882072 -0.452736 0.1303 -0.882072 -0.452736 0.130301 -0.929427 -0.345234 0.130302 -0.929428 -0.345233 0.130301 -0.866286 -0.321779 0.382109 -0.866285 -0.321779 0.38211 -0.744189 -0.276427 0.608088 -0.744189 -0.276427 0.608088 -0.571297 -0.212206 0.792836 -0.571297 -0.212206 0.792836 -0.359274 -0.133451 0.923641 -0.359273 -0.133451 0.923641 -0.12257 -0.0455284 0.991415 -0.12257 -0.0455284 0.991415 -0.127095 -0.030712 0.991415 -0.127095 -0.030712 0.991415 -0.372536 -0.0900217 0.923641 -0.372535 -0.0900218 0.923642 -0.592385 -0.143148 0.792836 -0.592385 -0.143148 0.792836 -0.771659 -0.186469 0.608088 -0.771659 -0.186469 0.608088 -0.898263 -0.217062 0.382109 -0.898263 -0.217062 0.382109 -0.963736 -0.232884 0.130302 -0.963736 -0.232883 0.130301 -0.984515 -0.117265 0.130302 -0.984515 -0.117265 0.130302 -0.917631 -0.109298 0.382109 -0.917631 -0.109298 0.382109 -0.788297 -0.0938936 0.608088 -0.788297 -0.0938936 0.608088 -0.605158 -0.0720799 0.792836 -0.605157 -0.0720801 0.792836 -0.380567 -0.0453293 0.923642 -0.380568 -0.0453291 0.923642 -0.129835 -0.0154646 0.991415 -0.129835 -0.0154646 0.991415 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.991474 0 0.130302 -0.984515 0.117267 0.130301 -0.984515 0.117265 0.130302 -0.917631 0.109298 0.382109 -0.917631 0.109298 0.382109 -0.788297 0.0938936 0.608088 -0.788297 0.0938936 0.608088 -0.605157 0.0720799 0.792836 -0.605158 0.0720802 0.792836 -0.380568 0.0453293 0.923642 -0.380567 0.0453291 0.923642 -0.129835 0.0154646 0.991415 -0.129835 0.0154646 0.991415 -0.127095 0.0307121 0.991415 -0.127095 0.030712 0.991415 -0.372535 0.0900216 0.923642 -0.372536 0.0900219 0.923641 -0.592385 0.143148 0.792836 -0.592385 0.143148 0.792836 -0.771659 0.186469 0.608088 -0.771659 0.186469 0.608088 -0.898263 0.217062 0.382109 -0.898263 0.217062 0.382109 -0.963736 0.232884 0.130301 -0.963736 0.232883 0.130302 -0.929428 0.345233 0.130301 -0.929428 0.345232 0.1303 -0.929427 0.345234 0.130302 -0.882072 0.452736 0.130301 -0.882072 0.452736 0.130301 -0.822147 0.421979 0.38211 -0.822147 0.421979 0.38211 -0.706272 0.362504 0.608088 -0.706272 0.362504 0.608088 -0.542188 0.278286 0.792836 -0.542188 0.278286 0.792836 -0.340968 0.175007 0.923642 -0.340968 0.175007 0.923641 -0.116325 0.0597056 0.991415 -0.116325 0.0597057 0.991415 -0.108447 0.0730447 0.991415 -0.108447 0.0730449 0.991415 -0.317876 0.214106 0.923641 -0.317876 0.214106 0.923642 -0.505469 0.340459 0.792836 -0.505469 0.340459 0.792836 -0.65844 0.443493 0.608088 -0.65844 0.443493 0.608088 -0.766468 0.516255 0.38211 -0.766468 0.516255 0.38211 -0.822335 0.553884 0.130301 -0.822335 0.553884 0.130301 -0.751053 0.647256 0.130301 -0.751053 0.647257 0.1303 -0.700029 0.603284 0.38211 -0.700029 0.603284 0.38211 -0.601365 0.518256 0.608087 -0.601365 0.518256 0.608088 -0.461654 0.397853 0.792836 -0.461654 0.397853 0.792836 -0.290322 0.250199 0.923641 -0.290322 0.250199 0.923642 -0.0990469 0.0853584 0.991415 -0.099047 0.0853586 0.991415 -0.669228 0.731543 0.130301 -0.669228 0.731543 0.130302 -0.669229 0.731543 0.130301 -0.578007 0.805562 0.1303 -0.578009 0.80556 0.130301 -0.538741 0.750833 0.38211 -0.538741 0.750833 0.38211 -0.46281 0.645009 0.608088 -0.46281 0.645009 0.608088 -0.355288 0.495158 0.792836 -0.355288 0.495158 0.792836 -0.223431 0.311392 0.923642 -0.223431 0.311392 0.923641 -0.0762264 0.106235 0.991415 -0.0762263 0.106235 0.991415 -0.0631266 0.114505 0.991415 -0.0631266 0.114505 0.991415 -0.185034 0.335632 0.923642 -0.185034 0.335632 0.923641 -0.294231 0.533704 0.792836 -0.294231 0.533704 0.792836 -0.383274 0.69522 0.608088 -0.383274 0.695219 0.608088 -0.446156 0.809282 0.38211 -0.446156 0.809282 0.38211 -0.478676 0.868269 0.1303 -0.478676 0.868269 0.130301 -0.372624 0.918789 0.1303 -0.372623 0.918789 0.130301 -0.372625 0.918789 0.130301 -0.26134 0.956412 0.130301 -0.26134 0.956412 0.130301 -0.243585 0.891436 0.38211 -0.243585 0.891436 0.38211 -0.209254 0.765795 0.608088 -0.209254 0.765795 0.608088 -0.160639 0.587883 0.792836 -0.160639 0.587883 0.792836 -0.101022 0.369704 0.923642 -0.101022 0.369704 0.923641 -0.0344648 0.126129 0.991415 -0.0344648 0.126129 0.991415 -0.0193053 0.12932 0.991415 -0.0193053 0.12932 0.991415 -0.0565866 0.379057 0.923642 -0.0565865 0.379057 0.923642 -0.0899808 0.602756 0.792836 -0.089981 0.602756 0.792836 -0.117212 0.785169 0.608088 -0.117212 0.785169 0.608088 -0.136443 0.913989 0.38211 -0.136443 0.913989 0.38211 -0.146388 0.980608 0.130301 -0.146388 0.980608 0.130301 -0.0293807 0.991039 0.130301 -0.0293803 0.991039 0.1303 -0.0273843 0.923711 0.382109 -0.0273846 0.923711 0.38211 -0.0235249 0.793521 0.608088 -0.0235248 0.793521 0.608088 -0.0180595 0.609168 0.792836 -0.0180598 0.609167 0.792836 -0.0113574 0.383089 0.923642 -0.0113574 0.383089 0.923642 -0.00387471 0.130696 0.991415 -0.00387465 0.130696 0.991415 0.0880386 0.987558 0.130301 0.0880388 0.987558 0.130302 0.0880379 0.987558 0.130301 0.204223 0.970214 0.130302 0.204223 0.970214 0.130302 0.190348 0.904301 0.382109 0.190348 0.904301 0.38211 0.16352 0.776846 0.608088 0.16352 0.776846 0.608088 0.12553 0.596367 0.792836 0.12553 0.596367 0.792836 0.0789427 0.375039 0.923642 0.078943 0.37504 0.923641 0.0269324 0.127949 0.991415 0.0269323 0.127949 0.991415 0.0418763 0.123866 0.991415 0.0418763 0.123866 0.991415 0.122746 0.36307 0.923642 0.122746 0.36307 0.923642 0.195184 0.577334 0.792836 0.195184 0.577334 0.792836 0.254252 0.752054 0.608088 0.254253 0.752054 0.608088 0.295967 0.875441 0.382109 0.295967 0.87544 0.38211 0.317539 0.93925 0.130302 0.31754 0.93925 0.1303 0.426399 0.895101 0.130301 0.426399 0.895101 0.130301 0.397431 0.834291 0.382109 0.397431 0.834291 0.38211 0.341416 0.716704 0.608088 0.341416 0.716704 0.608088 0.262097 0.550197 0.792836 0.262097 0.550197 0.792836 0.164826 0.346004 0.923641 0.164826 0.346004 0.923642 0.0562323 0.118044 0.991415 0.0562324 0.118044 0.991415 0.529272 0.838387 0.130301 0.529272 0.838387 0.130301 0.493315 0.78143 0.38211 0.493315 0.78143 0.382109 0.423786 0.671293 0.608088 0.423786 0.671293 0.608088 0.325331 0.515336 0.792836 0.325331 0.515336 0.792836 0.204592 0.324081 0.923641 0.204592 0.324081 0.923641 0.069799 0.110564 0.991415 0.069799 0.110564 0.991415 0.0823858 0.101533 0.991415 0.082386 0.101533 0.991415 0.241486 0.297609 0.923641 0.241486 0.297609 0.923642 0.383998 0.473241 0.792836 0.383997 0.473241 0.792836 0.500207 0.616459 0.608088 0.500207 0.616459 0.608088 0.582275 0.717599 0.38211 0.582275 0.717599 0.382109 0.624716 0.769904 0.130301 0.624716 0.769904 0.130301 0.71139 0.690613 0.130302 0.71139 0.690612 0.130301 0.663061 0.643695 0.382109 0.663061 0.643695 0.382109 0.569608 0.552971 0.608088 0.569607 0.552971 0.608088 0.437274 0.424502 0.792836 0.437274 0.424502 0.792836 0.27499 0.266959 0.923641 0.27499 0.266958 0.923642 0.0938163 0.0910762 0.991415 0.0938163 0.0910762 0.991415 0.788078 0.601627 0.130302 0.788078 0.601627 0.130301 0.788078 0.601626 0.130302 0.853704 0.504194 0.1303 0.853703 0.504196 0.130301 0.795705 0.469942 0.38211 0.795705 0.469942 0.382109 0.683557 0.403707 0.608088 0.683557 0.403707 0.608088 0.52475 0.309917 0.792836 0.52475 0.309917 0.792836 0.330001 0.194898 0.923642 0.330001 0.194898 0.923642 0.112584 0.066492 0.991415 0.112584 0.066492 0.991415 0.119658 0.0527097 0.991415 0.119658 0.0527097 0.991415 0.350736 0.1545 0.923642 0.350737 0.1545 0.923641 0.557722 0.245677 0.792836 0.557721 0.245677 0.792836 0.726507 0.320028 0.608088 0.726507 0.320028 0.608087 0.845702 0.372533 0.38211 0.845701 0.372533 0.382111 0.907344 0.399687 0.1303 0.907343 0.399687 0.130301 0.948247 0.289567 0.130301 0.948247 0.289567 0.130301 0.883826 0.269895 0.38211 0.883826 0.269895 0.382111 0.759258 0.231855 0.608088 0.759258 0.231855 0.608087 0.582864 0.17799 0.792836 0.582864 0.17799 0.792836 0.366548 0.111933 0.923642 0.366548 0.111933 0.923641 0.125053 0.0381873 0.991415 0.125052 0.0381873 0.991415 0.975839 0.175383 0.130301 0.97584 0.175382 0.1303 0.909544 0.163467 0.38211 0.909544 0.163467 0.38211 0.781351 0.140428 0.608088 0.781351 0.140428 0.608088 0.599824 0.107803 0.792836 0.599825 0.107803 0.792836 0.377214 0.0677945 0.923641 0.377214 0.0677946 0.923642 0.128691 0.023129 0.991415 0.128691 0.0231289 0.991415 0.130523 0.0077459 0.991415 0.130523 0.00774586 0.991415 0.382585 0.0227043 0.923641 0.382584 0.0227045 0.923642 0.608365 0.0361035 0.792836 0.608365 0.0361034 0.792836 0.792475 0.0470295 0.608088 0.792476 0.0470289 0.608087 0.922494 0.0547447 0.38211 0.922494 0.0547452 0.382111 0.989733 0.0587355 0.130301 0.989733 0.0587355 0.130301 + + + + + + + + + + 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 0.27451 0.27451 0.27451 1 + + + + + + + + + + + + + + + + +

103 103 0 215 215 0 0 0 0 0 0 1 215 215 1 214 214 1 0 0 2 214 214 2 1 1 2 1 1 3 214 214 3 212 212 3 1 1 4 212 212 4 2 2 4 2 2 5 212 212 5 211 211 5 2 2 6 211 211 6 3 3 6 3 3 7 211 211 7 209 209 7 3 3 8 209 209 8 4 4 8 4 4 9 209 209 9 5 5 9 4 4 10 5 5 10 6 6 10 6 6 11 5 5 11 7 7 11 6 6 12 7 7 12 8 8 12 8 8 13 7 7 13 10 10 13 8 8 14 10 10 14 9 9 14 9 9 15 10 10 15 207 207 15 9 9 16 207 207 16 726 726 16 726 726 17 207 207 17 11 11 17 726 726 18 11 11 18 725 725 18 725 725 19 11 11 19 205 205 19 725 725 20 205 205 20 12 12 20 12 12 21 205 205 21 203 203 21 12 12 22 203 203 22 13 13 22 13 13 23 203 203 23 202 202 23 13 13 24 202 202 24 709 709 24 709 709 25 202 202 25 14 14 25 709 709 26 14 14 26 15 15 26 15 15 27 14 14 27 17 17 27 15 15 28 17 17 28 16 16 28 16 16 29 17 17 29 200 200 29 16 16 30 200 200 30 702 702 30 702 702 31 200 200 31 199 199 31 702 702 32 199 199 32 700 700 32 700 700 33 199 199 33 198 198 33 700 700 34 198 198 34 687 687 34 687 687 35 198 198 35 197 197 35 687 687 36 197 197 36 685 685 36 685 685 37 197 197 37 196 196 37 685 685 38 196 196 38 18 18 38 18 18 39 196 196 39 195 195 39 18 18 40 195 195 40 686 686 40 686 686 41 195 195 41 193 193 41 686 686 42 193 193 42 20 20 42 20 20 43 193 193 43 19 19 43 20 20 44 19 19 44 21 21 44 21 21 45 19 19 45 22 22 45 21 21 46 22 22 46 23 23 46 23 23 47 22 22 47 24 24 47 23 23 48 24 24 48 25 25 48 25 25 49 24 24 49 26 26 49 25 25 50 26 26 50 664 664 50 664 664 51 26 26 51 27 27 51 664 664 52 27 27 52 28 28 52 28 28 53 27 27 53 190 190 53 28 28 54 190 190 54 547 547 54 547 547 55 190 190 55 29 29 55 547 547 56 29 29 56 663 663 56 663 663 57 29 29 57 30 30 57 663 663 58 30 30 58 31 31 58 31 31 59 30 30 59 32 32 59 31 31 60 32 32 60 34 34 60 34 34 61 32 32 61 33 33 61 34 34 62 33 33 62 35 35 62 35 35 63 33 33 63 37 37 63 35 35 64 37 37 64 36 36 64 36 36 65 37 37 65 38 38 65 36 36 66 38 38 66 39 39 66 39 39 67 38 38 67 185 185 67 39 39 68 185 185 68 40 40 68 40 40 69 185 185 69 41 41 69 40 40 70 41 41 70 548 548 70 548 548 71 41 41 71 42 42 71 548 548 72 42 42 72 43 43 72 43 43 73 42 42 73 182 182 73 43 43 74 182 182 74 44 44 74 44 44 75 182 182 75 181 181 75 44 44 76 181 181 76 626 626 76 626 626 77 181 181 77 180 180 77 626 626 78 180 180 78 45 45 78 45 45 79 180 180 79 46 46 79 45 45 80 46 46 80 615 615 80 615 615 81 46 46 81 179 179 81 615 615 82 179 179 82 552 552 82 552 552 83 179 179 83 253 253 83 552 552 84 253 253 84 614 614 84 614 614 85 253 253 85 252 252 85 614 614 86 252 252 86 47 47 86 47 47 87 252 252 87 251 251 87 47 47 88 251 251 88 48 48 88 48 48 89 251 251 89 249 249 89 48 48 90 249 249 90 49 49 90 49 49 91 249 249 91 50 50 91 49 49 92 50 50 92 860 860 92 860 860 93 50 50 93 51 51 93 860 860 94 51 51 94 541 541 94 541 541 95 51 51 95 52 52 95 541 541 96 52 52 96 53 53 96 53 53 97 52 52 97 54 54 97 53 53 98 54 54 98 854 854 98 854 854 99 54 54 99 245 245 99 854 854 100 245 245 100 56 56 100 56 56 101 245 245 101 55 55 101 56 56 102 55 55 102 57 57 102 57 57 103 55 55 103 59 59 103 57 57 104 59 59 104 58 58 104 58 58 105 59 59 105 60 60 105 58 58 106 60 60 106 61 61 106 61 61 107 60 60 107 62 62 107 61 61 108 62 62 108 841 841 108 841 841 109 62 62 109 244 244 109 841 841 110 244 244 110 63 63 110 63 63 111 244 244 111 64 64 111 63 63 112 64 64 112 836 836 112 836 836 113 64 64 113 65 65 113 836 836 114 65 65 114 66 66 114 66 66 115 65 65 115 67 67 115 66 66 116 67 67 116 835 835 116 835 835 117 67 67 117 242 242 117 835 835 118 242 242 118 823 823 118 823 823 119 242 242 119 241 241 119 823 823 120 241 241 120 68 68 120 68 68 121 241 241 121 240 240 121 68 68 122 240 240 122 69 69 122 69 69 123 240 240 123 237 237 123 69 69 124 237 237 124 70 70 124 70 70 125 237 237 125 236 236 125 70 70 126 236 236 126 71 71 126 71 71 127 236 236 127 235 235 127 71 71 128 235 235 128 543 543 128 543 543 129 235 235 129 72 72 129 543 543 130 72 72 130 73 73 130 73 73 131 72 72 131 74 74 131 73 73 132 74 74 132 75 75 132 75 75 133 74 74 133 76 76 133 75 75 134 76 76 134 805 805 134 805 805 135 76 76 135 77 77 135 805 805 136 77 77 136 78 78 136 78 78 137 77 77 137 79 79 137 78 78 138 79 79 138 80 80 138 80 80 139 79 79 139 231 231 139 80 80 140 231 231 140 81 81 140 81 81 141 231 231 141 82 82 141 81 81 142 82 82 142 544 544 142 544 544 143 82 82 143 83 83 143 544 544 144 83 83 144 784 784 144 784 784 145 83 83 145 229 229 145 784 784 146 229 229 146 84 84 146 84 84 147 229 229 147 85 85 147 84 84 148 85 85 148 783 783 148 783 783 149 85 85 149 86 86 149 783 783 150 86 86 150 87 87 150 87 87 151 86 86 151 226 226 151 87 87 152 226 226 152 88 88 152 88 88 153 226 226 153 225 225 153 88 88 154 225 225 154 89 89 154 89 89 155 225 225 155 224 224 155 89 89 156 224 224 156 773 773 156 773 773 157 224 224 157 90 90 157 773 773 158 90 90 158 91 91 158 91 91 159 90 90 159 92 92 159 91 91 160 92 92 160 93 93 160 93 93 161 92 92 161 221 221 161 93 93 162 221 221 162 94 94 162 94 94 163 221 221 163 220 220 163 94 94 164 220 220 164 757 757 164 757 757 165 220 220 165 95 95 165 757 757 166 95 95 166 96 96 166 96 96 167 95 95 167 218 218 167 96 96 168 218 218 168 545 545 168 545 545 169 218 218 169 217 217 169 545 545 170 217 217 170 756 756 170 756 756 171 217 217 171 97 97 171 756 756 172 97 97 172 98 98 172 98 98 173 97 97 173 100 100 173 98 98 174 100 100 174 99 99 174 99 99 175 100 100 175 101 101 175 99 99 176 101 101 176 745 745 176 745 745 177 101 101 177 102 102 177 745 745 178 102 102 178 103 103 178 103 103 179 102 102 179 215 215 179 104 104 180 123 123 180 117 117 180 104 104 181 117 117 181 609 609 181 105 105 182 621 621 182 117 117 182 117 117 183 621 621 183 554 554 183 117 117 184 554 554 184 609 609 184 645 645 185 638 638 185 117 117 185 117 117 186 638 638 186 631 631 186 117 117 187 631 631 187 105 105 187 657 657 188 106 106 188 117 117 188 117 117 189 106 106 189 559 559 189 117 117 190 559 559 190 645 645 190 108 108 191 107 107 191 117 117 191 117 117 192 107 107 192 658 658 192 117 117 193 658 658 193 657 657 193 564 564 194 563 563 194 117 117 194 117 117 195 563 563 195 680 680 195 117 117 196 680 680 196 108 108 196 109 109 197 693 693 197 117 117 197 117 117 198 693 693 198 692 692 198 117 117 199 692 692 199 564 564 199 721 721 200 718 718 200 117 117 200 117 117 201 718 718 201 720 720 201 117 117 202 720 720 202 109 109 202 744 744 203 110 110 203 117 117 203 117 117 204 110 110 204 570 570 204 117 117 205 570 570 205 721 721 205 750 750 206 578 578 206 117 117 206 117 117 207 578 578 207 743 743 207 117 117 208 743 743 208 744 744 208 761 761 209 583 583 209 117 117 209 117 117 210 583 583 210 111 111 210 117 117 211 111 111 211 750 750 211 112 112 212 113 113 212 117 117 212 117 117 213 113 113 213 114 114 213 117 117 214 114 114 214 761 761 214 115 115 215 116 116 215 117 117 215 117 117 216 116 116 216 118 118 216 117 117 217 118 118 217 112 112 217 599 599 218 794 794 218 117 117 218 117 117 219 794 794 219 793 793 219 117 117 220 793 793 220 115 115 220 812 812 221 811 811 221 117 117 221 117 117 222 811 811 222 601 601 222 117 117 223 601 601 223 599 599 223 119 119 224 120 120 224 117 117 224 117 117 225 120 120 225 822 822 225 117 117 226 822 822 226 812 812 226 121 121 227 605 605 227 117 117 227 117 117 228 605 605 228 122 122 228 117 117 229 122 122 229 119 119 229 123 123 230 124 124 230 117 117 230 117 117 231 124 124 231 849 849 231 117 117 232 849 849 232 121 121 232 125 125 233 175 175 233 159 159 233 125 125 234 159 159 234 129 129 234 126 126 235 127 127 235 159 159 235 159 159 236 127 127 236 128 128 236 159 159 237 128 128 237 129 129 237 134 134 238 130 130 238 159 159 238 159 159 239 130 130 239 131 131 239 159 159 240 131 131 240 126 126 240 137 137 241 132 132 241 159 159 241 159 159 242 132 132 242 133 133 242 159 159 243 133 133 243 134 134 243 141 141 244 135 135 244 159 159 244 159 159 245 135 135 245 136 136 245 159 159 246 136 136 246 137 137 246 138 138 247 139 139 247 159 159 247 159 159 248 139 139 248 140 140 248 159 159 249 140 140 249 141 141 249 146 146 250 142 142 250 159 159 250 159 159 251 142 142 251 143 143 251 159 159 252 143 143 252 138 138 252 150 150 253 144 144 253 159 159 253 159 159 254 144 144 254 145 145 254 159 159 255 145 145 255 146 146 255 147 147 256 148 148 256 159 159 256 159 159 257 148 148 257 149 149 257 159 159 258 149 149 258 150 150 258 156 156 259 151 151 259 159 159 259 159 159 260 151 151 260 152 152 260 159 159 261 152 152 261 147 147 261 153 153 262 154 154 262 159 159 262 159 159 263 154 154 263 155 155 263 159 159 264 155 155 264 156 156 264 157 157 265 158 158 265 159 159 265 159 159 266 158 158 266 160 160 266 159 159 267 160 160 267 153 153 267 166 166 268 161 161 268 159 159 268 159 159 269 161 161 269 162 162 269 159 159 270 162 162 270 157 157 270 163 163 271 164 164 271 159 159 271 159 159 272 164 164 272 165 165 272 159 159 273 165 165 273 166 166 273 172 172 274 167 167 274 159 159 274 159 159 275 167 167 275 168 168 275 159 159 276 168 168 276 163 163 276 169 169 277 170 170 277 159 159 277 159 159 278 170 170 278 171 171 278 159 159 279 171 171 279 172 172 279 178 178 280 173 173 280 159 159 280 159 159 281 173 173 281 174 174 281 159 159 282 174 174 282 169 169 282 175 175 283 176 176 283 159 159 283 159 159 284 176 176 284 177 177 284 159 159 285 177 177 285 178 178 285 253 253 286 302 302 286 304 304 286 253 253 287 179 179 287 302 302 287 302 302 288 179 179 288 46 46 288 302 302 289 46 46 289 300 300 289 300 300 290 46 46 290 180 180 290 300 300 291 180 180 291 298 298 291 298 298 292 180 180 292 181 181 292 298 298 293 181 181 293 183 183 293 183 183 294 181 181 294 182 182 294 182 182 295 42 42 295 183 183 295 183 183 296 42 42 296 41 41 296 183 183 297 41 41 297 184 184 297 41 41 298 185 185 298 184 184 298 184 184 299 185 185 299 38 38 299 184 184 300 38 38 300 186 186 300 186 186 301 38 38 301 37 37 301 186 186 302 37 37 302 187 187 302 37 37 303 33 33 303 187 187 303 187 187 304 33 33 304 32 32 304 187 187 305 32 32 305 294 294 305 32 32 306 30 30 306 294 294 306 294 294 307 30 30 307 29 29 307 294 294 308 29 29 308 188 188 308 188 188 309 29 29 309 190 190 309 188 188 310 190 190 310 189 189 310 189 189 311 190 190 311 27 27 311 189 189 312 27 27 312 191 191 312 191 191 313 27 27 313 26 26 313 26 26 314 24 24 314 191 191 314 191 191 315 24 24 315 22 22 315 191 191 316 22 22 316 192 192 316 22 22 317 19 19 317 192 192 317 192 192 318 19 19 318 193 193 318 192 192 319 193 193 319 194 194 319 194 194 320 193 193 320 195 195 320 194 194 321 195 195 321 288 288 321 288 288 322 195 195 322 196 196 322 288 288 323 196 196 323 287 287 323 287 287 324 196 196 324 197 197 324 197 197 325 198 198 325 287 287 325 287 287 326 198 198 326 199 199 326 287 287 327 199 199 327 286 286 327 286 286 328 199 199 328 200 200 328 286 286 329 200 200 329 201 201 329 201 201 330 200 200 330 17 17 330 201 201 331 17 17 331 284 284 331 284 284 332 17 17 332 14 14 332 14 14 333 202 202 333 284 284 333 284 284 334 202 202 334 203 203 334 284 284 335 203 203 335 204 204 335 203 203 336 205 205 336 204 204 336 204 204 337 205 205 337 11 11 337 204 204 338 11 11 338 206 206 338 206 206 339 11 11 339 207 207 339 206 206 340 207 207 340 281 281 340 281 281 341 207 207 341 10 10 341 281 281 342 10 10 342 208 208 342 208 208 343 10 10 343 7 7 343 7 7 344 5 5 344 208 208 344 208 208 345 5 5 345 209 209 345 208 208 346 209 209 346 210 210 346 210 210 347 209 209 347 211 211 347 210 210 348 211 211 348 213 213 348 211 211 349 212 212 349 213 213 349 213 213 350 212 212 350 214 214 350 213 213 351 214 214 351 216 216 351 214 214 352 215 215 352 216 216 352 216 216 353 215 215 353 102 102 353 216 216 354 102 102 354 276 276 354 102 102 355 101 101 355 276 276 355 276 276 356 101 101 356 100 100 356 276 276 357 100 100 357 274 274 357 274 274 358 100 100 358 97 97 358 274 274 359 97 97 359 273 273 359 273 273 360 97 97 360 217 217 360 273 273 361 217 217 361 219 219 361 219 219 362 217 217 362 218 218 362 218 218 363 95 95 363 219 219 363 219 219 364 95 95 364 220 220 364 219 219 365 220 220 365 271 271 365 271 271 366 220 220 366 221 221 366 271 271 367 221 221 367 222 222 367 221 221 368 92 92 368 222 222 368 222 222 369 92 92 369 90 90 369 222 222 370 90 90 370 223 223 370 90 90 371 224 224 371 223 223 371 223 223 372 224 224 372 225 225 372 223 223 373 225 225 373 269 269 373 225 225 374 226 226 374 269 269 374 269 269 375 226 226 375 86 86 375 269 269 376 86 86 376 227 227 376 227 227 377 86 86 377 85 85 377 227 227 378 85 85 378 228 228 378 228 228 379 85 85 379 229 229 379 228 228 380 229 229 380 230 230 380 230 230 381 229 229 381 83 83 381 83 83 382 82 82 382 230 230 382 230 230 383 82 82 383 231 231 383 230 230 384 231 231 384 232 232 384 232 232 385 231 231 385 79 79 385 232 232 386 79 79 386 233 233 386 79 79 387 77 77 387 233 233 387 233 233 388 77 77 388 76 76 388 233 233 389 76 76 389 234 234 389 76 76 390 74 74 390 234 234 390 234 234 391 74 74 391 72 72 391 234 234 392 72 72 392 264 264 392 72 72 393 235 235 393 264 264 393 264 264 394 235 235 394 236 236 394 264 264 395 236 236 395 263 263 395 263 263 396 236 236 396 237 237 396 263 263 397 237 237 397 238 238 397 238 238 398 237 237 398 240 240 398 238 238 399 240 240 399 239 239 399 239 239 400 240 240 400 241 241 400 241 241 401 242 242 401 239 239 401 239 239 402 242 242 402 67 67 402 239 239 403 67 67 403 260 260 403 260 260 404 67 67 404 65 65 404 260 260 405 65 65 405 243 243 405 65 65 406 64 64 406 243 243 406 243 243 407 64 64 407 244 244 407 243 243 408 244 244 408 257 257 408 244 244 409 62 62 409 257 257 409 257 257 410 62 62 410 60 60 410 257 257 411 60 60 411 256 256 411 60 60 412 59 59 412 256 256 412 256 256 413 59 59 413 55 55 413 256 256 414 55 55 414 255 255 414 255 255 415 55 55 415 245 245 415 255 255 416 245 245 416 246 246 416 246 246 417 245 245 417 54 54 417 246 246 418 54 54 418 254 254 418 254 254 419 54 54 419 52 52 419 52 52 420 51 51 420 254 254 420 254 254 421 51 51 421 247 247 421 254 254 422 247 247 422 248 248 422 248 248 423 247 247 423 249 249 423 248 248 424 249 249 424 250 250 424 250 250 425 249 249 425 251 251 425 250 250 426 251 251 426 304 304 426 304 304 427 251 251 427 252 252 427 304 304 428 252 252 428 253 253 428 248 248 429 306 306 429 254 254 429 254 254 430 306 306 430 309 309 430 254 254 431 309 309 431 246 246 431 246 246 432 309 309 432 311 311 432 246 246 433 311 311 433 255 255 433 255 255 434 311 311 434 312 312 434 255 255 435 312 312 435 256 256 435 256 256 436 312 312 436 258 258 436 256 256 437 258 258 437 257 257 437 257 257 438 258 258 438 315 315 438 257 257 439 315 315 439 243 243 439 243 243 440 315 315 440 259 259 440 243 243 441 259 259 441 260 260 441 260 260 442 259 259 442 317 317 442 260 260 443 317 317 443 239 239 443 239 239 444 317 317 444 261 261 444 239 239 445 261 261 445 238 238 445 238 238 446 261 261 446 262 262 446 238 238 447 262 262 447 263 263 447 263 263 448 262 262 448 265 265 448 263 263 449 265 265 449 264 264 449 264 264 450 265 265 450 322 322 450 264 264 451 322 322 451 234 234 451 234 234 452 322 322 452 266 266 452 234 234 453 266 266 453 233 233 453 233 233 454 266 266 454 267 267 454 233 233 455 267 267 455 232 232 455 232 232 456 267 267 456 268 268 456 232 232 457 268 268 457 230 230 457 230 230 458 268 268 458 326 326 458 230 230 459 326 326 459 228 228 459 228 228 460 326 326 460 327 327 460 228 228 461 327 327 461 227 227 461 227 227 462 327 327 462 328 328 462 227 227 463 328 328 463 269 269 463 269 269 464 328 328 464 270 270 464 269 269 465 270 270 465 223 223 465 223 223 466 270 270 466 331 331 466 223 223 467 331 331 467 222 222 467 222 222 468 331 331 468 332 332 468 222 222 469 332 332 469 271 271 469 271 271 470 332 332 470 272 272 470 271 271 471 272 272 471 219 219 471 219 219 472 272 272 472 333 333 472 219 219 473 333 333 473 273 273 473 273 273 474 333 333 474 275 275 474 273 273 475 275 275 475 274 274 475 274 274 476 275 275 476 335 335 476 274 274 477 335 335 477 276 276 477 276 276 478 335 335 478 277 277 478 276 276 479 277 277 479 216 216 479 216 216 480 277 277 480 337 337 480 216 216 481 337 337 481 213 213 481 213 213 482 337 337 482 278 278 482 213 213 483 278 278 483 210 210 483 210 210 484 278 278 484 279 279 484 210 210 485 279 279 485 208 208 485 208 208 486 279 279 486 280 280 486 208 208 487 280 280 487 281 281 487 281 281 488 280 280 488 282 282 488 281 281 489 282 282 489 206 206 489 206 206 490 282 282 490 283 283 490 206 206 491 283 283 491 204 204 491 204 204 492 283 283 492 342 342 492 204 204 493 342 342 493 284 284 493 284 284 494 342 342 494 343 343 494 284 284 495 343 343 495 201 201 495 201 201 496 343 343 496 285 285 496 201 201 497 285 285 497 286 286 497 286 286 498 285 285 498 344 344 498 286 286 499 344 344 499 287 287 499 287 287 500 344 344 500 289 289 500 287 287 501 289 289 501 288 288 501 288 288 502 289 289 502 290 290 502 288 288 503 290 290 503 194 194 503 194 194 504 290 290 504 291 291 504 194 194 505 291 291 505 192 192 505 192 192 506 291 291 506 292 292 506 192 192 507 292 292 507 191 191 507 191 191 508 292 292 508 293 293 508 191 191 509 293 293 509 189 189 509 189 189 510 293 293 510 350 350 510 189 189 511 350 350 511 188 188 511 188 188 512 350 350 512 295 295 512 188 188 513 295 295 513 294 294 513 294 294 514 295 295 514 353 353 514 294 294 515 353 353 515 187 187 515 187 187 516 353 353 516 296 296 516 187 187 517 296 296 517 186 186 517 186 186 518 296 296 518 355 355 518 186 186 519 355 355 519 184 184 519 184 184 520 355 355 520 297 297 520 184 184 521 297 297 521 183 183 521 183 183 522 297 297 522 356 356 522 183 183 523 356 356 523 298 298 523 298 298 524 356 356 524 299 299 524 298 298 525 299 299 525 300 300 525 300 300 526 299 299 526 301 301 526 300 300 527 301 301 527 302 302 527 302 302 528 301 301 528 303 303 528 302 302 529 303 303 529 304 304 529 304 304 530 303 303 530 359 359 530 304 304 531 359 359 531 250 250 531 250 250 532 359 359 532 305 305 532 250 250 533 305 305 533 248 248 533 248 248 534 305 305 534 306 306 534 305 305 535 307 307 535 306 306 535 306 306 536 307 307 536 308 308 536 306 306 537 308 308 537 309 309 537 309 309 538 308 308 538 363 363 538 309 309 539 363 363 539 311 311 539 311 311 540 363 363 540 310 310 540 311 311 541 310 310 541 312 312 541 312 312 542 310 310 542 313 313 542 312 312 543 313 313 543 258 258 543 258 258 544 313 313 544 314 314 544 258 258 545 314 314 545 315 315 545 315 315 546 314 314 546 366 366 546 315 315 547 366 366 547 259 259 547 259 259 548 366 366 548 316 316 548 259 259 549 316 316 549 317 317 549 317 317 550 316 316 550 318 318 550 317 317 551 318 318 551 261 261 551 261 261 552 318 318 552 319 319 552 261 261 553 319 319 553 262 262 553 262 262 554 319 319 554 320 320 554 262 262 555 320 320 555 265 265 555 265 265 556 320 320 556 321 321 556 265 265 557 321 321 557 322 322 557 322 322 558 321 321 558 323 323 558 322 322 559 323 323 559 266 266 559 266 266 560 323 323 560 324 324 560 266 266 561 324 324 561 267 267 561 267 267 562 324 324 562 325 325 562 267 267 563 325 325 563 268 268 563 268 268 564 325 325 564 370 370 564 268 268 565 370 370 565 326 326 565 326 326 566 370 370 566 371 371 566 326 326 567 371 371 567 327 327 567 327 327 568 371 371 568 372 372 568 327 327 569 372 372 569 328 328 569 328 328 570 372 372 570 329 329 570 328 328 571 329 329 571 270 270 571 270 270 572 329 329 572 330 330 572 270 270 573 330 330 573 331 331 573 331 331 574 330 330 574 377 377 574 331 331 575 377 377 575 332 332 575 332 332 576 377 377 576 378 378 576 332 332 577 378 378 577 272 272 577 272 272 578 378 378 578 379 379 578 272 272 579 379 379 579 333 333 579 333 333 580 379 379 580 334 334 580 333 333 581 334 334 581 275 275 581 275 275 582 334 334 582 380 380 582 275 275 583 380 380 583 335 335 583 335 335 584 380 380 584 336 336 584 335 335 585 336 336 585 277 277 585 277 277 586 336 336 586 382 382 586 277 277 587 382 382 587 337 337 587 337 337 588 382 382 588 338 338 588 337 337 589 338 338 589 278 278 589 278 278 590 338 338 590 339 339 590 278 278 591 339 339 591 279 279 591 279 279 592 339 339 592 384 384 592 279 279 593 384 384 593 280 280 593 280 280 594 384 384 594 340 340 594 280 280 595 340 340 595 282 282 595 282 282 596 340 340 596 385 385 596 282 282 597 385 385 597 283 283 597 283 283 598 385 385 598 341 341 598 283 283 599 341 341 599 342 342 599 342 342 600 341 341 600 388 388 600 342 342 601 388 388 601 343 343 601 343 343 602 388 388 602 389 389 602 343 343 603 389 389 603 285 285 603 285 285 604 389 389 604 390 390 604 285 285 605 390 390 605 344 344 605 344 344 606 390 390 606 391 391 606 344 344 607 391 391 607 289 289 607 289 289 608 391 391 608 345 345 608 289 289 609 345 345 609 290 290 609 290 290 610 345 345 610 346 346 610 290 290 611 346 346 611 291 291 611 291 291 612 346 346 612 347 347 612 291 291 613 347 347 613 292 292 613 292 292 614 347 347 614 348 348 614 292 292 615 348 348 615 293 293 615 293 293 616 348 348 616 349 349 616 293 293 617 349 349 617 350 350 617 350 350 618 349 349 618 351 351 618 350 350 619 351 351 619 295 295 619 295 295 620 351 351 620 352 352 620 295 295 621 352 352 621 353 353 621 353 353 622 352 352 622 394 394 622 353 353 623 394 394 623 296 296 623 296 296 624 394 394 624 354 354 624 296 296 625 354 354 625 355 355 625 355 355 626 354 354 626 396 396 626 355 355 627 396 396 627 297 297 627 297 297 628 396 396 628 399 399 628 297 297 629 399 399 629 356 356 629 356 356 630 399 399 630 357 357 630 356 356 631 357 357 631 299 299 631 299 299 632 357 357 632 358 358 632 299 299 633 358 358 633 301 301 633 301 301 634 358 358 634 401 401 634 301 301 635 401 401 635 303 303 635 303 303 636 401 401 636 402 402 636 303 303 637 402 402 637 359 359 637 359 359 638 402 402 638 403 403 638 359 359 639 403 403 639 305 305 639 305 305 640 403 403 640 307 307 640 403 403 641 405 405 641 307 307 641 307 307 642 405 405 642 360 360 642 307 307 643 360 360 643 308 308 643 308 308 644 360 360 644 361 361 644 308 308 645 361 361 645 363 363 645 363 363 646 361 361 646 362 362 646 363 363 647 362 362 647 310 310 647 310 310 648 362 362 648 364 364 648 310 310 649 364 364 649 313 313 649 313 313 650 364 364 650 365 365 650 313 313 651 365 365 651 314 314 651 314 314 652 365 365 652 409 409 652 314 314 653 409 409 653 366 366 653 366 366 654 409 409 654 411 411 654 366 366 655 411 411 655 316 316 655 316 316 656 411 411 656 413 413 656 316 316 657 413 413 657 318 318 657 318 318 658 413 413 658 367 367 658 318 318 659 367 367 659 319 319 659 319 319 660 367 367 660 415 415 660 319 319 661 415 415 661 320 320 661 320 320 662 415 415 662 417 417 662 320 320 663 417 417 663 321 321 663 321 321 664 417 417 664 368 368 664 321 321 665 368 368 665 323 323 665 323 323 666 368 368 666 419 419 666 323 323 667 419 419 667 324 324 667 324 324 668 419 419 668 369 369 668 324 324 669 369 369 669 325 325 669 325 325 670 369 369 670 420 420 670 325 325 671 420 420 671 370 370 671 370 370 672 420 420 672 423 423 672 370 370 673 423 423 673 371 371 673 371 371 674 423 423 674 373 373 674 371 371 675 373 373 675 372 372 675 372 372 676 373 373 676 374 374 676 372 372 677 374 374 677 329 329 677 329 329 678 374 374 678 375 375 678 329 329 679 375 375 679 330 330 679 330 330 680 375 375 680 376 376 680 330 330 681 376 376 681 377 377 681 377 377 682 376 376 682 427 427 682 377 377 683 427 427 683 378 378 683 378 378 684 427 427 684 429 429 684 378 378 685 429 429 685 379 379 685 379 379 686 429 429 686 431 431 686 379 379 687 431 431 687 334 334 687 334 334 688 431 431 688 433 433 688 334 334 689 433 433 689 380 380 689 380 380 690 433 433 690 381 381 690 380 380 691 381 381 691 336 336 691 336 336 692 381 381 692 435 435 692 336 336 693 435 435 693 382 382 693 382 382 694 435 435 694 437 437 694 382 382 695 437 437 695 338 338 695 338 338 696 437 437 696 383 383 696 338 338 697 383 383 697 339 339 697 339 339 698 383 383 698 439 439 698 339 339 699 439 439 699 384 384 699 384 384 700 439 439 700 440 440 700 384 384 701 440 440 701 340 340 701 340 340 702 440 440 702 442 442 702 340 340 703 442 442 703 385 385 703 385 385 704 442 442 704 386 386 704 385 385 705 386 386 705 341 341 705 341 341 706 386 386 706 444 444 706 341 341 707 444 444 707 388 388 707 388 388 708 444 444 708 387 387 708 388 388 709 387 387 709 389 389 709 389 389 710 387 387 710 446 446 710 389 389 711 446 446 711 390 390 711 390 390 712 446 446 712 448 448 712 390 390 713 448 448 713 391 391 713 391 391 714 448 448 714 449 449 714 391 391 715 449 449 715 345 345 715 345 345 716 449 449 716 450 450 716 345 345 717 450 450 717 346 346 717 346 346 718 450 450 718 392 392 718 346 346 719 392 392 719 347 347 719 347 347 720 392 392 720 393 393 720 347 347 721 393 393 721 348 348 721 348 348 722 393 393 722 452 452 722 348 348 723 452 452 723 349 349 723 349 349 724 452 452 724 454 454 724 349 349 725 454 454 725 351 351 725 351 351 726 454 454 726 456 456 726 351 351 727 456 456 727 352 352 727 352 352 728 456 456 728 457 457 728 352 352 729 457 457 729 394 394 729 394 394 730 457 457 730 395 395 730 394 394 731 395 395 731 354 354 731 354 354 732 395 395 732 397 397 732 354 354 733 397 397 733 396 396 733 396 396 734 397 397 734 398 398 734 396 396 735 398 398 735 399 399 735 399 399 736 398 398 736 400 400 736 399 399 737 400 400 737 357 357 737 357 357 738 400 400 738 462 462 738 357 357 739 462 462 739 358 358 739 358 358 740 462 462 740 464 464 740 358 358 741 464 464 741 401 401 741 401 401 742 464 464 742 465 465 742 401 401 743 465 465 743 402 402 743 402 402 744 465 465 744 404 404 744 402 402 745 404 404 745 403 403 745 403 403 746 404 404 746 405 405 746 404 404 747 467 467 747 405 405 747 405 405 748 467 467 748 406 406 748 405 405 749 406 406 749 360 360 749 360 360 750 406 406 750 471 471 750 360 360 751 471 471 751 361 361 751 361 361 752 471 471 752 473 473 752 361 361 753 473 473 753 362 362 753 362 362 754 473 473 754 407 407 754 362 362 755 407 407 755 364 364 755 364 364 756 407 407 756 408 408 756 364 364 757 408 408 757 365 365 757 365 365 758 408 408 758 477 477 758 365 365 759 477 477 759 409 409 759 409 409 760 477 477 760 410 410 760 409 409 761 410 410 761 411 411 761 411 411 762 410 410 762 412 412 762 411 411 763 412 412 763 413 413 763 413 413 764 412 412 764 414 414 764 413 413 765 414 414 765 367 367 765 367 367 766 414 414 766 482 482 766 367 367 767 482 482 767 415 415 767 415 415 768 482 482 768 416 416 768 415 415 769 416 416 769 417 417 769 417 417 770 416 416 770 418 418 770 417 417 771 418 418 771 368 368 771 368 368 772 418 418 772 485 485 772 368 368 773 485 485 773 419 419 773 419 419 774 485 485 774 487 487 774 419 419 775 487 487 775 369 369 775 369 369 776 487 487 776 421 421 776 369 369 777 421 421 777 420 420 777 420 420 778 421 421 778 422 422 778 420 420 779 422 422 779 423 423 779 423 423 780 422 422 780 491 491 780 423 423 781 491 491 781 373 373 781 373 373 782 491 491 782 424 424 782 373 373 783 424 424 783 374 374 783 374 374 784 424 424 784 425 425 784 374 374 785 425 425 785 375 375 785 375 375 786 425 425 786 426 426 786 375 375 787 426 426 787 376 376 787 376 376 788 426 426 788 428 428 788 376 376 789 428 428 789 427 427 789 427 427 790 428 428 790 497 497 790 427 427 791 497 497 791 429 429 791 429 429 792 497 497 792 430 430 792 429 429 793 430 430 793 431 431 793 431 431 794 430 430 794 432 432 794 431 431 795 432 432 795 433 433 795 433 433 796 432 432 796 434 434 796 433 433 797 434 434 797 381 381 797 381 381 798 434 434 798 503 503 798 381 381 799 503 503 799 435 435 799 435 435 800 503 503 800 436 436 800 435 435 801 436 436 801 437 437 801 437 437 802 436 436 802 505 505 802 437 437 803 505 505 803 383 383 803 383 383 804 505 505 804 438 438 804 383 383 805 438 438 805 439 439 805 439 439 806 438 438 806 441 441 806 439 439 807 441 441 807 440 440 807 440 440 808 441 441 808 509 509 808 440 440 809 509 509 809 442 442 809 442 442 810 509 509 810 443 443 810 442 442 811 443 443 811 386 386 811 386 386 812 443 443 812 512 512 812 386 386 813 512 512 813 444 444 813 444 444 814 512 512 814 513 513 814 444 444 815 513 513 815 387 387 815 387 387 816 513 513 816 445 445 816 387 387 817 445 445 817 446 446 817 446 446 818 445 445 818 447 447 818 446 446 819 447 447 819 448 448 819 448 448 820 447 447 820 518 518 820 448 448 821 518 518 821 449 449 821 449 449 822 518 518 822 520 520 822 449 449 823 520 520 823 450 450 823 450 450 824 520 520 824 521 521 824 450 450 825 521 521 825 392 392 825 392 392 826 521 521 826 451 451 826 392 392 827 451 451 827 393 393 827 393 393 828 451 451 828 453 453 828 393 393 829 453 453 829 452 452 829 452 452 830 453 453 830 525 525 830 452 452 831 525 525 831 454 454 831 454 454 832 525 525 832 528 528 832 454 454 833 528 528 833 456 456 833 456 456 834 528 528 834 455 455 834 456 456 835 455 455 835 457 457 835 457 457 836 455 455 836 458 458 836 457 457 837 458 458 837 395 395 837 395 395 838 458 458 838 459 459 838 395 395 839 459 459 839 397 397 839 397 397 840 459 459 840 460 460 840 397 397 841 460 460 841 398 398 841 398 398 842 460 460 842 535 535 842 398 398 843 535 535 843 400 400 843 400 400 844 535 535 844 461 461 844 400 400 845 461 461 845 462 462 845 462 462 846 461 461 846 463 463 846 462 462 847 463 463 847 464 464 847 464 464 848 463 463 848 538 538 848 464 464 849 538 538 849 465 465 849 465 465 850 538 538 850 539 539 850 465 465 851 539 539 851 404 404 851 404 404 852 539 539 852 467 467 852 539 539 853 466 466 853 467 467 853 467 467 854 466 466 854 468 468 854 467 467 855 468 468 855 406 406 855 406 406 856 468 468 856 469 469 856 406 406 857 469 469 857 471 471 857 471 471 858 469 469 858 470 470 858 471 471 859 470 470 859 473 473 859 473 473 860 470 470 860 472 472 860 473 473 861 472 472 861 407 407 861 407 407 862 472 472 862 474 474 862 407 407 863 474 474 863 408 408 863 408 408 864 474 474 864 475 475 864 408 408 865 475 475 865 477 477 865 477 477 866 475 475 866 476 476 866 477 477 867 476 476 867 410 410 867 410 410 868 476 476 868 478 478 868 410 410 869 478 478 869 412 412 869 412 412 870 478 478 870 479 479 870 412 412 871 479 479 871 414 414 871 414 414 872 479 479 872 480 480 872 414 414 873 480 480 873 482 482 873 482 482 874 480 480 874 481 481 874 482 482 875 481 481 875 416 416 875 416 416 876 481 481 876 483 483 876 416 416 877 483 483 877 418 418 877 418 418 878 483 483 878 484 484 878 418 418 879 484 484 879 485 485 879 485 485 880 484 484 880 486 486 880 485 485 881 486 486 881 487 487 881 487 487 882 486 486 882 488 488 882 487 487 883 488 488 883 421 421 883 421 421 884 488 488 884 489 489 884 421 421 885 489 489 885 422 422 885 422 422 886 489 489 886 490 490 886 422 422 887 490 490 887 491 491 887 491 491 888 490 490 888 492 492 888 491 491 889 492 492 889 424 424 889 424 424 890 492 492 890 493 493 890 424 424 891 493 493 891 425 425 891 425 425 892 493 493 892 494 494 892 425 425 893 494 494 893 426 426 893 426 426 894 494 494 894 495 495 894 426 426 895 495 495 895 428 428 895 428 428 896 495 495 896 496 496 896 428 428 897 496 496 897 497 497 897 497 497 898 496 496 898 498 498 898 497 497 899 498 498 899 430 430 899 430 430 900 498 498 900 499 499 900 430 430 901 499 499 901 432 432 901 432 432 902 499 499 902 500 500 902 432 432 903 500 500 903 434 434 903 434 434 904 500 500 904 501 501 904 434 434 905 501 501 905 503 503 905 503 503 906 501 501 906 502 502 906 503 503 907 502 502 907 436 436 907 436 436 908 502 502 908 504 504 908 436 436 909 504 504 909 505 505 909 505 505 910 504 504 910 506 506 910 505 505 911 506 506 911 438 438 911 438 438 912 506 506 912 507 507 912 438 438 913 507 507 913 441 441 913 441 441 914 507 507 914 508 508 914 441 441 915 508 508 915 509 509 915 509 509 916 508 508 916 510 510 916 509 509 917 510 510 917 443 443 917 443 443 918 510 510 918 511 511 918 443 443 919 511 511 919 512 512 919 512 512 920 511 511 920 514 514 920 512 512 921 514 514 921 513 513 921 513 513 922 514 514 922 515 515 922 513 513 923 515 515 923 445 445 923 445 445 924 515 515 924 516 516 924 445 445 925 516 516 925 447 447 925 447 447 926 516 516 926 517 517 926 447 447 927 517 517 927 518 518 927 518 518 928 517 517 928 519 519 928 518 518 929 519 519 929 520 520 929 520 520 930 519 519 930 522 522 930 520 520 931 522 522 931 521 521 931 521 521 932 522 522 932 523 523 932 521 521 933 523 523 933 451 451 933 451 451 934 523 523 934 524 524 934 451 451 935 524 524 935 453 453 935 453 453 936 524 524 936 526 526 936 453 453 937 526 526 937 525 525 937 525 525 938 526 526 938 527 527 938 525 525 939 527 527 939 528 528 939 528 528 940 527 527 940 529 529 940 528 528 941 529 529 941 455 455 941 455 455 942 529 529 942 530 530 942 455 455 943 530 530 943 458 458 943 458 458 944 530 530 944 531 531 944 458 458 945 531 531 945 459 459 945 459 459 946 531 531 946 532 532 946 459 459 947 532 532 947 460 460 947 460 460 948 532 532 948 533 533 948 460 460 949 533 533 949 535 535 949 535 535 950 533 533 950 534 534 950 535 535 951 534 534 951 461 461 951 461 461 952 534 534 952 536 536 952 461 461 953 536 536 953 463 463 953 463 463 954 536 536 954 537 537 954 463 463 955 537 537 955 538 538 955 538 538 956 537 537 956 540 540 956 538 538 957 540 540 957 539 539 957 539 539 958 540 540 958 466 466 958 541 541 959 53 53 959 862 862 959 854 854 960 56 56 960 853 853 960 58 58 961 61 61 961 843 843 961 836 836 962 66 66 962 542 542 962 823 823 963 68 68 963 825 825 963 69 69 964 70 70 964 818 818 964 543 543 965 73 73 965 807 807 965 78 78 966 80 80 966 798 798 966 544 544 967 784 784 967 787 787 967 88 88 968 89 89 968 594 594 968 93 93 969 94 94 969 770 770 969 96 96 970 545 545 970 755 755 970 745 745 971 103 103 971 546 546 971 2 2 972 3 3 972 735 735 972 6 6 973 8 8 973 577 577 973 12 12 974 13 13 974 715 715 974 709 709 975 15 15 975 703 703 975 16 16 976 702 702 976 701 701 976 687 687 977 685 685 977 569 569 977 21 21 978 23 23 978 669 669 978 25 25 979 664 664 979 670 670 979 28 28 980 547 547 980 662 662 980 31 31 981 34 34 981 562 562 981 40 40 982 548 548 982 549 549 982 43 43 983 44 44 983 550 550 983 626 626 984 45 45 984 551 551 984 552 552 985 614 614 985 616 616 985 609 609 986 554 554 986 553 553 986 553 553 987 554 554 987 622 622 987 553 553 988 622 622 988 611 611 988 611 611 989 622 622 989 555 555 989 611 611 990 555 555 990 556 556 990 556 556 991 555 555 991 618 618 991 556 556 992 618 618 992 557 557 992 557 557 993 618 618 993 558 558 993 557 557 994 558 558 994 613 613 994 613 613 995 558 558 995 616 616 995 559 559 996 106 106 996 646 646 996 646 646 997 106 106 997 656 656 997 646 646 998 656 656 998 647 647 998 647 647 999 656 656 999 654 654 999 647 647 1000 654 654 1000 648 648 1000 648 648 1001 654 654 1001 560 560 1001 648 648 1002 560 560 1002 561 561 1002 561 561 1003 560 560 1003 651 651 1003 561 561 1004 651 651 1004 649 649 1004 649 649 1005 651 651 1005 562 562 1005 563 563 1006 564 564 1006 566 566 1006 566 566 1007 564 564 1007 565 565 1007 566 566 1008 565 565 1008 567 567 1008 567 567 1009 565 565 1009 691 691 1009 567 567 1010 691 691 1010 682 682 1010 682 682 1011 691 691 1011 689 689 1011 682 682 1012 689 689 1012 683 683 1012 683 683 1013 689 689 1013 688 688 1013 683 683 1014 688 688 1014 568 568 1014 568 568 1015 688 688 1015 569 569 1015 721 721 1016 570 570 1016 571 571 1016 571 571 1017 570 570 1017 573 573 1017 571 571 1018 573 573 1018 572 572 1018 572 572 1019 573 573 1019 731 731 1019 572 572 1020 731 731 1020 575 575 1020 575 575 1021 731 731 1021 574 574 1021 575 575 1022 574 574 1022 576 576 1022 576 576 1023 574 574 1023 728 728 1023 576 576 1024 728 728 1024 724 724 1024 724 724 1025 728 728 1025 577 577 1025 743 743 1026 578 578 1026 742 742 1026 742 742 1027 578 578 1027 579 579 1027 742 742 1028 579 579 1028 580 580 1028 580 580 1029 579 579 1029 581 581 1029 580 580 1030 581 581 1030 739 739 1030 739 739 1031 581 581 1031 748 748 1031 739 739 1032 748 748 1032 737 737 1032 737 737 1033 748 748 1033 582 582 1033 737 737 1034 582 582 1034 736 736 1034 736 736 1035 582 582 1035 546 546 1035 111 111 1036 583 583 1036 751 751 1036 751 751 1037 583 583 1037 585 585 1037 751 751 1038 585 585 1038 584 584 1038 584 584 1039 585 585 1039 759 759 1039 584 584 1040 759 759 1040 586 586 1040 586 586 1041 759 759 1041 758 758 1041 586 586 1042 758 758 1042 587 587 1042 587 587 1043 758 758 1043 588 588 1043 587 587 1044 588 588 1044 754 754 1044 754 754 1045 588 588 1045 755 755 1045 113 113 1046 112 112 1046 589 589 1046 589 589 1047 112 112 1047 778 778 1047 589 589 1048 778 778 1048 591 591 1048 591 591 1049 778 778 1049 590 590 1049 591 591 1050 590 590 1050 592 592 1050 592 592 1051 590 590 1051 776 776 1051 592 592 1052 776 776 1052 771 771 1052 771 771 1053 776 776 1053 593 593 1053 771 771 1054 593 593 1054 769 769 1054 769 769 1055 593 593 1055 594 594 1055 116 116 1056 115 115 1056 780 780 1056 780 780 1057 115 115 1057 595 595 1057 780 780 1058 595 595 1058 596 596 1058 596 596 1059 595 595 1059 791 791 1059 596 596 1060 791 791 1060 597 597 1060 597 597 1061 791 791 1061 598 598 1061 597 597 1062 598 598 1062 781 781 1062 781 781 1063 598 598 1063 788 788 1063 781 781 1064 788 788 1064 785 785 1064 785 785 1065 788 788 1065 787 787 1065 599 599 1066 601 601 1066 600 600 1066 600 600 1067 601 601 1067 602 602 1067 600 600 1068 602 602 1068 803 803 1068 803 803 1069 602 602 1069 810 810 1069 803 803 1070 810 810 1070 802 802 1070 802 802 1071 810 810 1071 603 603 1071 802 802 1072 603 603 1072 800 800 1072 800 800 1073 603 603 1073 604 604 1073 800 800 1074 604 604 1074 799 799 1074 799 799 1075 604 604 1075 807 807 1075 122 122 1076 605 605 1076 607 607 1076 607 607 1077 605 605 1077 606 606 1077 607 607 1078 606 606 1078 608 608 1078 608 608 1079 606 606 1079 847 847 1079 608 608 1080 847 847 1080 840 840 1080 840 840 1081 847 847 1081 846 846 1081 840 840 1082 846 846 1082 838 838 1082 838 838 1083 846 846 1083 845 845 1083 838 838 1084 845 845 1084 837 837 1084 837 837 1085 845 845 1085 843 843 1085 866 866 1086 609 609 1086 610 610 1086 610 610 1087 609 609 1087 553 553 1087 610 610 1088 553 553 1088 869 869 1088 869 869 1089 553 553 1089 611 611 1089 869 869 1090 611 611 1090 871 871 1090 871 871 1091 611 611 1091 556 556 1091 871 871 1092 556 556 1092 872 872 1092 872 872 1093 556 556 1093 557 557 1093 872 872 1094 557 557 1094 612 612 1094 612 612 1095 557 557 1095 613 613 1095 612 612 1096 613 613 1096 873 873 1096 873 873 1097 613 613 1097 48 48 1097 616 616 1098 614 614 1098 613 613 1098 613 613 1099 614 614 1099 47 47 1099 613 613 1100 47 47 1100 48 48 1100 615 615 1101 552 552 1101 625 625 1101 625 625 1102 552 552 1102 616 616 1102 625 625 1103 616 616 1103 617 617 1103 617 617 1104 616 616 1104 558 558 1104 617 617 1105 558 558 1105 619 619 1105 619 619 1106 558 558 1106 618 618 1106 619 619 1107 618 618 1107 620 620 1107 620 620 1108 618 618 1108 555 555 1108 620 620 1109 555 555 1109 623 623 1109 623 623 1110 555 555 1110 622 622 1110 623 623 1111 622 622 1111 621 621 1111 621 621 1112 622 622 1112 554 554 1112 621 621 1113 105 105 1113 623 623 1113 623 623 1114 105 105 1114 624 624 1114 623 623 1115 624 624 1115 620 620 1115 620 620 1116 624 624 1116 629 629 1116 620 620 1117 629 629 1117 619 619 1117 619 619 1118 629 629 1118 628 628 1118 619 619 1119 628 628 1119 617 617 1119 617 617 1120 628 628 1120 627 627 1120 617 617 1121 627 627 1121 625 625 1121 625 625 1122 627 627 1122 551 551 1122 625 625 1123 551 551 1123 615 615 1123 615 615 1124 551 551 1124 45 45 1124 44 44 1125 626 626 1125 550 550 1125 550 550 1126 626 626 1126 551 551 1126 550 550 1127 551 551 1127 634 634 1127 634 634 1128 551 551 1128 627 627 1128 634 634 1129 627 627 1129 635 635 1129 635 635 1130 627 627 1130 628 628 1130 635 635 1131 628 628 1131 630 630 1131 630 630 1132 628 628 1132 629 629 1132 630 630 1133 629 629 1133 637 637 1133 637 637 1134 629 629 1134 624 624 1134 637 637 1135 624 624 1135 631 631 1135 631 631 1136 624 624 1136 105 105 1136 548 548 1137 43 43 1137 549 549 1137 549 549 1138 43 43 1138 550 550 1138 549 549 1139 550 550 1139 632 632 1139 632 632 1140 550 550 1140 634 634 1140 632 632 1141 634 634 1141 633 633 1141 633 633 1142 634 634 1142 635 635 1142 633 633 1143 635 635 1143 636 636 1143 636 636 1144 635 635 1144 630 630 1144 636 636 1145 630 630 1145 644 644 1145 644 644 1146 630 630 1146 637 637 1146 644 644 1147 637 637 1147 638 638 1147 638 638 1148 637 637 1148 631 631 1148 39 39 1149 40 40 1149 639 639 1149 639 639 1150 40 40 1150 549 549 1150 639 639 1151 549 549 1151 640 640 1151 640 640 1152 549 549 1152 632 632 1152 640 640 1153 632 632 1153 641 641 1153 641 641 1154 632 632 1154 633 633 1154 641 641 1155 633 633 1155 642 642 1155 642 642 1156 633 633 1156 636 636 1156 642 642 1157 636 636 1157 643 643 1157 643 643 1158 636 636 1158 644 644 1158 643 643 1159 644 644 1159 645 645 1159 645 645 1160 644 644 1160 638 638 1160 645 645 1161 559 559 1161 643 643 1161 643 643 1162 559 559 1162 646 646 1162 643 643 1163 646 646 1163 642 642 1163 642 642 1164 646 646 1164 647 647 1164 642 642 1165 647 647 1165 641 641 1165 641 641 1166 647 647 1166 648 648 1166 641 641 1167 648 648 1167 640 640 1167 640 640 1168 648 648 1168 561 561 1168 640 640 1169 561 561 1169 639 639 1169 639 639 1170 561 561 1170 649 649 1170 639 639 1171 649 649 1171 39 39 1171 39 39 1172 649 649 1172 36 36 1172 562 562 1173 34 34 1173 649 649 1173 649 649 1174 34 34 1174 35 35 1174 649 649 1175 35 35 1175 36 36 1175 663 663 1176 31 31 1176 661 661 1176 661 661 1177 31 31 1177 562 562 1177 661 661 1178 562 562 1178 650 650 1178 650 650 1179 562 562 1179 651 651 1179 650 650 1180 651 651 1180 652 652 1180 652 652 1181 651 651 1181 560 560 1181 652 652 1182 560 560 1182 653 653 1182 653 653 1183 560 560 1183 654 654 1183 653 653 1184 654 654 1184 655 655 1184 655 655 1185 654 654 1185 656 656 1185 655 655 1186 656 656 1186 657 657 1186 657 657 1187 656 656 1187 106 106 1187 657 657 1188 658 658 1188 655 655 1188 655 655 1189 658 658 1189 668 668 1189 655 655 1190 668 668 1190 653 653 1190 653 653 1191 668 668 1191 659 659 1191 653 653 1192 659 659 1192 652 652 1192 652 652 1193 659 659 1193 660 660 1193 652 652 1194 660 660 1194 650 650 1194 650 650 1195 660 660 1195 666 666 1195 650 650 1196 666 666 1196 661 661 1196 661 661 1197 666 666 1197 662 662 1197 661 661 1198 662 662 1198 663 663 1198 663 663 1199 662 662 1199 547 547 1199 664 664 1200 28 28 1200 670 670 1200 670 670 1201 28 28 1201 662 662 1201 670 670 1202 662 662 1202 665 665 1202 665 665 1203 662 662 1203 666 666 1203 665 665 1204 666 666 1204 673 673 1204 673 673 1205 666 666 1205 660 660 1205 673 673 1206 660 660 1206 667 667 1206 667 667 1207 660 660 1207 659 659 1207 667 667 1208 659 659 1208 675 675 1208 675 675 1209 659 659 1209 668 668 1209 675 675 1210 668 668 1210 107 107 1210 107 107 1211 668 668 1211 658 658 1211 23 23 1212 25 25 1212 669 669 1212 669 669 1213 25 25 1213 670 670 1213 669 669 1214 670 670 1214 671 671 1214 671 671 1215 670 670 1215 665 665 1215 671 671 1216 665 665 1216 672 672 1216 672 672 1217 665 665 1217 673 673 1217 672 672 1218 673 673 1218 679 679 1218 679 679 1219 673 673 1219 667 667 1219 679 679 1220 667 667 1220 674 674 1220 674 674 1221 667 667 1221 675 675 1221 674 674 1222 675 675 1222 108 108 1222 108 108 1223 675 675 1223 107 107 1223 20 20 1224 21 21 1224 676 676 1224 676 676 1225 21 21 1225 669 669 1225 676 676 1226 669 669 1226 684 684 1226 684 684 1227 669 669 1227 671 671 1227 684 684 1228 671 671 1228 677 677 1228 677 677 1229 671 671 1229 672 672 1229 677 677 1230 672 672 1230 678 678 1230 678 678 1231 672 672 1231 679 679 1231 678 678 1232 679 679 1232 681 681 1232 681 681 1233 679 679 1233 674 674 1233 681 681 1234 674 674 1234 680 680 1234 680 680 1235 674 674 1235 108 108 1235 680 680 1236 563 563 1236 681 681 1236 681 681 1237 563 563 1237 566 566 1237 681 681 1238 566 566 1238 678 678 1238 678 678 1239 566 566 1239 567 567 1239 678 678 1240 567 567 1240 677 677 1240 677 677 1241 567 567 1241 682 682 1241 677 677 1242 682 682 1242 684 684 1242 684 684 1243 682 682 1243 683 683 1243 684 684 1244 683 683 1244 676 676 1244 676 676 1245 683 683 1245 568 568 1245 676 676 1246 568 568 1246 20 20 1246 20 20 1247 568 568 1247 686 686 1247 569 569 1248 685 685 1248 568 568 1248 568 568 1249 685 685 1249 18 18 1249 568 568 1250 18 18 1250 686 686 1250 700 700 1251 687 687 1251 699 699 1251 699 699 1252 687 687 1252 569 569 1252 699 699 1253 569 569 1253 698 698 1253 698 698 1254 569 569 1254 688 688 1254 698 698 1255 688 688 1255 695 695 1255 695 695 1256 688 688 1256 689 689 1256 695 695 1257 689 689 1257 694 694 1257 694 694 1258 689 689 1258 691 691 1258 694 694 1259 691 691 1259 690 690 1259 690 690 1260 691 691 1260 565 565 1260 690 690 1261 565 565 1261 692 692 1261 692 692 1262 565 565 1262 564 564 1262 692 692 1263 693 693 1263 690 690 1263 690 690 1264 693 693 1264 708 708 1264 690 690 1265 708 708 1265 694 694 1265 694 694 1266 708 708 1266 707 707 1266 694 694 1267 707 707 1267 695 695 1267 695 695 1268 707 707 1268 696 696 1268 695 695 1269 696 696 1269 698 698 1269 698 698 1270 696 696 1270 697 697 1270 698 698 1271 697 697 1271 699 699 1271 699 699 1272 697 697 1272 701 701 1272 699 699 1273 701 701 1273 700 700 1273 700 700 1274 701 701 1274 702 702 1274 15 15 1275 16 16 1275 703 703 1275 703 703 1276 16 16 1276 701 701 1276 703 703 1277 701 701 1277 704 704 1277 704 704 1278 701 701 1278 697 697 1278 704 704 1279 697 697 1279 705 705 1279 705 705 1280 697 697 1280 696 696 1280 705 705 1281 696 696 1281 706 706 1281 706 706 1282 696 696 1282 707 707 1282 706 706 1283 707 707 1283 713 713 1283 713 713 1284 707 707 1284 708 708 1284 713 713 1285 708 708 1285 109 109 1285 109 109 1286 708 708 1286 693 693 1286 13 13 1287 709 709 1287 715 715 1287 715 715 1288 709 709 1288 703 703 1288 715 715 1289 703 703 1289 710 710 1289 710 710 1290 703 703 1290 704 704 1290 710 710 1291 704 704 1291 711 711 1291 711 711 1292 704 704 1292 705 705 1292 711 711 1293 705 705 1293 712 712 1293 712 712 1294 705 705 1294 706 706 1294 712 712 1295 706 706 1295 719 719 1295 719 719 1296 706 706 1296 713 713 1296 719 719 1297 713 713 1297 720 720 1297 720 720 1298 713 713 1298 109 109 1298 725 725 1299 12 12 1299 723 723 1299 723 723 1300 12 12 1300 715 715 1300 723 723 1301 715 715 1301 714 714 1301 714 714 1302 715 715 1302 710 710 1302 714 714 1303 710 710 1303 716 716 1303 716 716 1304 710 710 1304 711 711 1304 716 716 1305 711 711 1305 717 717 1305 717 717 1306 711 711 1306 712 712 1306 717 717 1307 712 712 1307 722 722 1307 722 722 1308 712 712 1308 719 719 1308 722 722 1309 719 719 1309 718 718 1309 718 718 1310 719 719 1310 720 720 1310 718 718 1311 721 721 1311 722 722 1311 722 722 1312 721 721 1312 571 571 1312 722 722 1313 571 571 1313 717 717 1313 717 717 1314 571 571 1314 572 572 1314 717 717 1315 572 572 1315 716 716 1315 716 716 1316 572 572 1316 575 575 1316 716 716 1317 575 575 1317 714 714 1317 714 714 1318 575 575 1318 576 576 1318 714 714 1319 576 576 1319 723 723 1319 723 723 1320 576 576 1320 724 724 1320 723 723 1321 724 724 1321 725 725 1321 725 725 1322 724 724 1322 726 726 1322 577 577 1323 8 8 1323 724 724 1323 724 724 1324 8 8 1324 9 9 1324 724 724 1325 9 9 1325 726 726 1325 4 4 1326 6 6 1326 727 727 1326 727 727 1327 6 6 1327 577 577 1327 727 727 1328 577 577 1328 734 734 1328 734 734 1329 577 577 1329 728 728 1329 734 734 1330 728 728 1330 729 729 1330 729 729 1331 728 728 1331 574 574 1331 729 729 1332 574 574 1332 730 730 1332 730 730 1333 574 574 1333 731 731 1333 730 730 1334 731 731 1334 732 732 1334 732 732 1335 731 731 1335 573 573 1335 732 732 1336 573 573 1336 110 110 1336 110 110 1337 573 573 1337 570 570 1337 110 110 1338 744 744 1338 732 732 1338 732 732 1339 744 744 1339 741 741 1339 732 732 1340 741 741 1340 730 730 1340 730 730 1341 741 741 1341 733 733 1341 730 730 1342 733 733 1342 729 729 1342 729 729 1343 733 733 1343 740 740 1343 729 729 1344 740 740 1344 734 734 1344 734 734 1345 740 740 1345 738 738 1345 734 734 1346 738 738 1346 727 727 1346 727 727 1347 738 738 1347 735 735 1347 727 727 1348 735 735 1348 4 4 1348 4 4 1349 735 735 1349 3 3 1349 1 1 1350 2 2 1350 736 736 1350 736 736 1351 2 2 1351 735 735 1351 736 736 1352 735 735 1352 737 737 1352 737 737 1353 735 735 1353 738 738 1353 737 737 1354 738 738 1354 739 739 1354 739 739 1355 738 738 1355 740 740 1355 739 739 1356 740 740 1356 580 580 1356 580 580 1357 740 740 1357 733 733 1357 580 580 1358 733 733 1358 742 742 1358 742 742 1359 733 733 1359 741 741 1359 742 742 1360 741 741 1360 743 743 1360 743 743 1361 741 741 1361 744 744 1361 546 546 1362 103 103 1362 736 736 1362 736 736 1363 103 103 1363 0 0 1363 736 736 1364 0 0 1364 1 1 1364 99 99 1365 745 745 1365 753 753 1365 753 753 1366 745 745 1366 546 546 1366 753 753 1367 546 546 1367 746 746 1367 746 746 1368 546 546 1368 582 582 1368 746 746 1369 582 582 1369 747 747 1369 747 747 1370 582 582 1370 748 748 1370 747 747 1371 748 748 1371 752 752 1371 752 752 1372 748 748 1372 581 581 1372 752 752 1373 581 581 1373 749 749 1373 749 749 1374 581 581 1374 579 579 1374 749 749 1375 579 579 1375 750 750 1375 750 750 1376 579 579 1376 578 578 1376 750 750 1377 111 111 1377 749 749 1377 749 749 1378 111 111 1378 751 751 1378 749 749 1379 751 751 1379 752 752 1379 752 752 1380 751 751 1380 584 584 1380 752 752 1381 584 584 1381 747 747 1381 747 747 1382 584 584 1382 586 586 1382 747 747 1383 586 586 1383 746 746 1383 746 746 1384 586 586 1384 587 587 1384 746 746 1385 587 587 1385 753 753 1385 753 753 1386 587 587 1386 754 754 1386 753 753 1387 754 754 1387 99 99 1387 99 99 1388 754 754 1388 98 98 1388 755 755 1389 545 545 1389 754 754 1389 754 754 1390 545 545 1390 756 756 1390 754 754 1391 756 756 1391 98 98 1391 757 757 1392 96 96 1392 768 768 1392 768 768 1393 96 96 1393 755 755 1393 768 768 1394 755 755 1394 767 767 1394 767 767 1395 755 755 1395 588 588 1395 767 767 1396 588 588 1396 765 765 1396 765 765 1397 588 588 1397 758 758 1397 765 765 1398 758 758 1398 762 762 1398 762 762 1399 758 758 1399 759 759 1399 762 762 1400 759 759 1400 760 760 1400 760 760 1401 759 759 1401 585 585 1401 760 760 1402 585 585 1402 761 761 1402 761 761 1403 585 585 1403 583 583 1403 761 761 1404 114 114 1404 760 760 1404 760 760 1405 114 114 1405 763 763 1405 760 760 1406 763 763 1406 762 762 1406 762 762 1407 763 763 1407 764 764 1407 762 762 1408 764 764 1408 765 765 1408 765 765 1409 764 764 1409 766 766 1409 765 765 1410 766 766 1410 767 767 1410 767 767 1411 766 766 1411 772 772 1411 767 767 1412 772 772 1412 768 768 1412 768 768 1413 772 772 1413 770 770 1413 768 768 1414 770 770 1414 757 757 1414 757 757 1415 770 770 1415 94 94 1415 91 91 1416 93 93 1416 769 769 1416 769 769 1417 93 93 1417 770 770 1417 769 769 1418 770 770 1418 771 771 1418 771 771 1419 770 770 1419 772 772 1419 771 771 1420 772 772 1420 592 592 1420 592 592 1421 772 772 1421 766 766 1421 592 592 1422 766 766 1422 591 591 1422 591 591 1423 766 766 1423 764 764 1423 591 591 1424 764 764 1424 589 589 1424 589 589 1425 764 764 1425 763 763 1425 589 589 1426 763 763 1426 113 113 1426 113 113 1427 763 763 1427 114 114 1427 594 594 1428 89 89 1428 769 769 1428 769 769 1429 89 89 1429 773 773 1429 769 769 1430 773 773 1430 91 91 1430 87 87 1431 88 88 1431 782 782 1431 782 782 1432 88 88 1432 594 594 1432 782 782 1433 594 594 1433 774 774 1433 774 774 1434 594 594 1434 593 593 1434 774 774 1435 593 593 1435 775 775 1435 775 775 1436 593 593 1436 776 776 1436 775 775 1437 776 776 1437 777 777 1437 777 777 1438 776 776 1438 590 590 1438 777 777 1439 590 590 1439 779 779 1439 779 779 1440 590 590 1440 778 778 1440 779 779 1441 778 778 1441 118 118 1441 118 118 1442 778 778 1442 112 112 1442 118 118 1443 116 116 1443 779 779 1443 779 779 1444 116 116 1444 780 780 1444 779 779 1445 780 780 1445 777 777 1445 777 777 1446 780 780 1446 596 596 1446 777 777 1447 596 596 1447 775 775 1447 775 775 1448 596 596 1448 597 597 1448 775 775 1449 597 597 1449 774 774 1449 774 774 1450 597 597 1450 781 781 1450 774 774 1451 781 781 1451 782 782 1451 782 782 1452 781 781 1452 785 785 1452 782 782 1453 785 785 1453 87 87 1453 87 87 1454 785 785 1454 783 783 1454 787 787 1455 784 784 1455 785 785 1455 785 785 1456 784 784 1456 84 84 1456 785 785 1457 84 84 1457 783 783 1457 81 81 1458 544 544 1458 797 797 1458 797 797 1459 544 544 1459 787 787 1459 797 797 1460 787 787 1460 786 786 1460 786 786 1461 787 787 1461 788 788 1461 786 786 1462 788 788 1462 789 789 1462 789 789 1463 788 788 1463 598 598 1463 789 789 1464 598 598 1464 790 790 1464 790 790 1465 598 598 1465 791 791 1465 790 790 1466 791 791 1466 792 792 1466 792 792 1467 791 791 1467 595 595 1467 792 792 1468 595 595 1468 793 793 1468 793 793 1469 595 595 1469 115 115 1469 793 793 1470 794 794 1470 792 792 1470 792 792 1471 794 794 1471 804 804 1471 792 792 1472 804 804 1472 790 790 1472 790 790 1473 804 804 1473 795 795 1473 790 790 1474 795 795 1474 789 789 1474 789 789 1475 795 795 1475 796 796 1475 789 789 1476 796 796 1476 786 786 1476 786 786 1477 796 796 1477 801 801 1477 786 786 1478 801 801 1478 797 797 1478 797 797 1479 801 801 1479 798 798 1479 797 797 1480 798 798 1480 81 81 1480 81 81 1481 798 798 1481 80 80 1481 805 805 1482 78 78 1482 799 799 1482 799 799 1483 78 78 1483 798 798 1483 799 799 1484 798 798 1484 800 800 1484 800 800 1485 798 798 1485 801 801 1485 800 800 1486 801 801 1486 802 802 1486 802 802 1487 801 801 1487 796 796 1487 802 802 1488 796 796 1488 803 803 1488 803 803 1489 796 796 1489 795 795 1489 803 803 1490 795 795 1490 600 600 1490 600 600 1491 795 795 1491 804 804 1491 600 600 1492 804 804 1492 599 599 1492 599 599 1493 804 804 1493 794 794 1493 807 807 1494 73 73 1494 799 799 1494 799 799 1495 73 73 1495 75 75 1495 799 799 1496 75 75 1496 805 805 1496 71 71 1497 543 543 1497 806 806 1497 806 806 1498 543 543 1498 807 807 1498 806 806 1499 807 807 1499 816 816 1499 816 816 1500 807 807 1500 604 604 1500 816 816 1501 604 604 1501 808 808 1501 808 808 1502 604 604 1502 603 603 1502 808 808 1503 603 603 1503 809 809 1503 809 809 1504 603 603 1504 810 810 1504 809 809 1505 810 810 1505 813 813 1505 813 813 1506 810 810 1506 602 602 1506 813 813 1507 602 602 1507 811 811 1507 811 811 1508 602 602 1508 601 601 1508 811 811 1509 812 812 1509 813 813 1509 813 813 1510 812 812 1510 821 821 1510 813 813 1511 821 821 1511 809 809 1511 809 809 1512 821 821 1512 814 814 1512 809 809 1513 814 814 1513 808 808 1513 808 808 1514 814 814 1514 815 815 1514 808 808 1515 815 815 1515 816 816 1515 816 816 1516 815 815 1516 817 817 1516 816 816 1517 817 817 1517 806 806 1517 806 806 1518 817 817 1518 818 818 1518 806 806 1519 818 818 1519 71 71 1519 71 71 1520 818 818 1520 70 70 1520 68 68 1521 69 69 1521 825 825 1521 825 825 1522 69 69 1522 818 818 1522 825 825 1523 818 818 1523 826 826 1523 826 826 1524 818 818 1524 817 817 1524 826 826 1525 817 817 1525 819 819 1525 819 819 1526 817 817 1526 815 815 1526 819 819 1527 815 815 1527 820 820 1527 820 820 1528 815 815 1528 814 814 1528 820 820 1529 814 814 1529 827 827 1529 827 827 1530 814 814 1530 821 821 1530 827 827 1531 821 821 1531 822 822 1531 822 822 1532 821 821 1532 812 812 1532 835 835 1533 823 823 1533 824 824 1533 824 824 1534 823 823 1534 825 825 1534 824 824 1535 825 825 1535 834 834 1535 834 834 1536 825 825 1536 826 826 1536 834 834 1537 826 826 1537 832 832 1537 832 832 1538 826 826 1538 819 819 1538 832 832 1539 819 819 1539 829 829 1539 829 829 1540 819 819 1540 820 820 1540 829 829 1541 820 820 1541 828 828 1541 828 828 1542 820 820 1542 827 827 1542 828 828 1543 827 827 1543 120 120 1543 120 120 1544 827 827 1544 822 822 1544 120 120 1545 119 119 1545 828 828 1545 828 828 1546 119 119 1546 830 830 1546 828 828 1547 830 830 1547 829 829 1547 829 829 1548 830 830 1548 831 831 1548 829 829 1549 831 831 1549 832 832 1549 832 832 1550 831 831 1550 833 833 1550 832 832 1551 833 833 1551 834 834 1551 834 834 1552 833 833 1552 839 839 1552 834 834 1553 839 839 1553 824 824 1553 824 824 1554 839 839 1554 542 542 1554 824 824 1555 542 542 1555 835 835 1555 835 835 1556 542 542 1556 66 66 1556 63 63 1557 836 836 1557 837 837 1557 837 837 1558 836 836 1558 542 542 1558 837 837 1559 542 542 1559 838 838 1559 838 838 1560 542 542 1560 839 839 1560 838 838 1561 839 839 1561 840 840 1561 840 840 1562 839 839 1562 833 833 1562 840 840 1563 833 833 1563 608 608 1563 608 608 1564 833 833 1564 831 831 1564 608 608 1565 831 831 1565 607 607 1565 607 607 1566 831 831 1566 830 830 1566 607 607 1567 830 830 1567 122 122 1567 122 122 1568 830 830 1568 119 119 1568 843 843 1569 61 61 1569 837 837 1569 837 837 1570 61 61 1570 841 841 1570 837 837 1571 841 841 1571 63 63 1571 57 57 1572 58 58 1572 842 842 1572 842 842 1573 58 58 1573 843 843 1573 842 842 1574 843 843 1574 844 844 1574 844 844 1575 843 843 1575 845 845 1575 844 844 1576 845 845 1576 852 852 1576 852 852 1577 845 845 1577 846 846 1577 852 852 1578 846 846 1578 851 851 1578 851 851 1579 846 846 1579 847 847 1579 851 851 1580 847 847 1580 848 848 1580 848 848 1581 847 847 1581 606 606 1581 848 848 1582 606 606 1582 121 121 1582 121 121 1583 606 606 1583 605 605 1583 121 121 1584 849 849 1584 848 848 1584 848 848 1585 849 849 1585 850 850 1585 848 848 1586 850 850 1586 851 851 1586 851 851 1587 850 850 1587 858 858 1587 851 851 1588 858 858 1588 852 852 1588 852 852 1589 858 858 1589 857 857 1589 852 852 1590 857 857 1590 844 844 1590 844 844 1591 857 857 1591 856 856 1591 844 844 1592 856 856 1592 842 842 1592 842 842 1593 856 856 1593 853 853 1593 842 842 1594 853 853 1594 57 57 1594 57 57 1595 853 853 1595 56 56 1595 53 53 1596 854 854 1596 862 862 1596 862 862 1597 854 854 1597 853 853 1597 862 862 1598 853 853 1598 855 855 1598 855 855 1599 853 853 1599 856 856 1599 855 855 1600 856 856 1600 864 864 1600 864 864 1601 856 856 1601 857 857 1601 864 864 1602 857 857 1602 865 865 1602 865 865 1603 857 857 1603 858 858 1603 865 865 1604 858 858 1604 859 859 1604 859 859 1605 858 858 1605 850 850 1605 859 859 1606 850 850 1606 124 124 1606 124 124 1607 850 850 1607 849 849 1607 860 860 1608 541 541 1608 861 861 1608 861 861 1609 541 541 1609 862 862 1609 861 861 1610 862 862 1610 870 870 1610 870 870 1611 862 862 1611 855 855 1611 870 870 1612 855 855 1612 863 863 1612 863 863 1613 855 855 1613 864 864 1613 863 863 1614 864 864 1614 868 868 1614 868 868 1615 864 864 1615 865 865 1615 868 868 1616 865 865 1616 867 867 1616 867 867 1617 865 865 1617 859 859 1617 867 867 1618 859 859 1618 123 123 1618 123 123 1619 859 859 1619 124 124 1619 123 123 1620 866 866 1620 867 867 1620 867 867 1621 866 866 1621 610 610 1621 867 867 1622 610 610 1622 868 868 1622 868 868 1623 610 610 1623 869 869 1623 868 868 1624 869 869 1624 863 863 1624 863 863 1625 869 869 1625 871 871 1625 863 863 1626 871 871 1626 870 870 1626 870 870 1627 871 871 1627 872 872 1627 870 870 1628 872 872 1628 861 861 1628 861 861 1629 872 872 1629 612 612 1629 861 861 1630 612 612 1630 860 860 1630 860 860 1631 612 612 1631 873 873 1631

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.STL b/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.STL new file mode 100755 index 0000000..9da4621 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.STL differ diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.dae b/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.dae new file mode 100755 index 0000000..dc21009 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/right_steering_hinge.dae @@ -0,0 +1,68 @@ + + + + + VCGLab + VCGLib | MeshLab + + Tue Jan 19 20:37:18 2016 GMT + Tue Jan 19 20:37:18 2016 GMT + Y_UP + + + + + + 0.00116173 -0.00992115 0.000470334 0.00178646 0.00968583 -0.00173009 0.00100444 0.00992115 -0.000749631 0.00078144 0.00992115 -0.000979895 0.00090033 0.00992115 -0.000871921 -0.0010504 0.00992115 0.000683737 0.000649718 0.00992115 -0.00107178 0.00155056 0.00968583 -0.00194434 0.00190833 0.00929776 -0.00314799 0.00229522 0.00929776 -0.00287811 0.000507328 0.00992115 -0.00114606 0.00128919 0.00968583 -0.00212665 0.00149011 0.00929776 -0.00336618 0.00249738 0.00876307 -0.00411968 0.00100666 0.00968583 -0.00227405 0.00195006 0.00876307 -0.00440522 0.00167241 0.00809017 -0.00563491 0.000356608 0.00992115 -0.00120153 0.000707591 0.00968583 -0.00238411 0.00104742 0.00929776 -0.00352909 0.000768878 0.00876307 -0.00475578 0.000938105 0.00809017 -0.00580251 0.00137072 0.00876307 -0.00461842 0.00122974 0.00637424 -0.00760637 0.000200032 0.00992115 -0.00123727 7.9709e-05 0.00968583 -0.00248562 0.000396909 0.00968583 -0.00245502 0.000587526 0.00929776 -0.00363406 0.00015441 0.00876307 -0.00481506 0.000188394 0.00809017 -0.00587483 0.00109254 0.00728969 -0.00675772 4.01713e-05 0.00992115 -0.00125269 0.00011799 0.00929776 -0.00367935 -0.000564409 0.00809017 -0.00585069 -0.000657323 0.00728969 -0.00681384 0.000219408 0.00728969 -0.00684195 -0.000810749 0.00535827 -0.00840426 0.000246962 0.00637424 -0.00770117 -0.000120349 0.00992115 -0.00124754 -0.00567642 0.00535827 0.00625037 -0.000553387 0.00968583 -0.00242455 -0.0002388 0.00968583 -0.00247541 -0.000353484 0.00929776 -0.00366423 -0.000819154 0.00929776 -0.00358895 -0.000462594 0.00876307 -0.00479528 -0.00130795 0.00809017 -0.00573048 -0.00152326 0.00728969 -0.00667384 -0.00171455 0.00637424 -0.00751195 -0.00187881 0.00535827 -0.00823159 -0.00073987 0.00637424 -0.00766953 -0.00201343 0.00425779 -0.00882141 -0.000432857 0.00992115 -0.00117621 -0.000278893 0.00992115 -0.00122191 -0.001072 0.00876307 -0.00469675 -0.00236419 0.00728969 -0.00642426 -0.00291601 0.00535827 -0.00792375 -0.00339248 0.00187381 -0.00921846 -5.1238e-19 0.01 -2.22804e-18 -0.000579714 0.00992115 -0.0011112 -0.00115029 0.00968583 -0.00220488 -0.00170272 0.00929776 -0.00326379 -0.000858888 0.00968583 -0.00233388 -0.00127137 0.00929776 -0.00345473 -0.00166381 0.00876307 -0.00452111 -0.0022283 0.00876307 -0.00427122 -0.00203 0.00809017 -0.00551618 -0.00356392 0.00637424 -0.00683137 -0.00266108 0.00637424 -0.00723102 -0.00312496 0.00425779 -0.00849152 -0.004399 0.00309017 -0.00843206 -0.00328462 0.00309017 -0.00892537 -0.00454345 0.00187381 -0.00870895 -0.00461626 0.000627905 -0.0088485 -0.000717052 0.00992115 -0.00102795 -0.00344684 0.000627905 0.00936617 -0.00222082 0.000627905 0.00973004 -0.00275619 0.00876307 -0.00395121 -0.00336282 0.00809017 -0.00482085 -0.00271873 0.00809017 -0.0052113 -0.00316629 0.00728969 -0.00606919 -0.00440823 0.00637424 -0.00631954 -0.00390534 0.00535827 -0.00748581 -0.00517667 0.00425779 -0.00742114 -0.00418517 0.00425779 -0.00802219 -0.00544115 0.00309017 -0.0078003 -0.00561983 0.00187381 -0.00805645 -0.00570988 0.000627905 -0.00818554 -0.000958335 -0.000627905 0.00993415 -0.00167194 0.00968583 -0.001841 -0.0014228 0.00968583 -0.00203969 -0.0024749 0.00929776 -0.00272515 -0.0021061 0.00929776 -0.00301926 -0.00460222 0.00728969 -0.00506755 -0.00391641 0.00728969 -0.00561447 -0.00518017 0.00637424 -0.00570394 -0.00483054 0.00535827 -0.00692494 -0.00639396 0.00309017 -0.00704046 -0.00660393 0.00187381 -0.00727166 -0.00670974 0.000627905 -0.00738817 -0.00670974 -0.000627905 -0.00738817 -0.00570988 -0.000627905 -0.00818554 -0.000842616 0.00992115 -0.000927814 -0.00189364 0.00968583 -0.00161208 -0.00280307 0.00929776 -0.00238629 -0.00323883 0.00876307 -0.00356632 -0.00395169 0.00809017 -0.00435124 -0.00521246 0.00728969 -0.00443743 -0.00567642 0.00535827 -0.00625037 -0.00688977 0.00425779 -0.00586535 -0.00608316 0.00425779 -0.00669824 -0.00747959 0.00187381 -0.00636747 -0.00759943 0.000627905 -0.00646949 -0.00747959 -0.00187381 -0.00636747 -0.0010504 0.00992115 -0.000683737 -0.000954345 0.00992115 -0.000812446 -0.00208424 0.00968583 -0.00135669 -0.00403752 0.00876307 -0.00262813 -0.00366829 0.00876307 -0.00312286 -0.00492616 0.00809017 -0.00320657 -0.00573711 0.00728969 -0.00373444 -0.00447567 0.00809017 -0.00381019 -0.00586704 0.00637424 -0.00499469 -0.00645758 0.00637424 -0.00420342 -0.0064291 0.00535827 -0.00547317 -0.00707621 0.00535827 -0.0046061 -0.00797069 0.00309017 -0.00518835 -0.00823243 0.00187381 -0.00535872 -0.00724178 0.00309017 -0.00616502 -0.00836434 -0.000627905 -0.00544458 -0.00759943 -0.000627905 -0.00646949 -0.00224062 0.00968583 -0.00107902 -0.00331669 0.00929776 -0.00159723 -0.00434045 0.00876307 -0.00209025 -0.00308521 0.00929776 -0.00200825 -0.00815221 0.00425779 -0.0039259 -0.00856872 0.00309017 -0.00412648 -0.00758325 0.00425779 -0.00493615 -0.00836434 0.000627905 -0.00544458 -0.00823243 -0.00187381 -0.00535872 -0.00856872 -0.00309017 -0.00412648 -0.00797069 -0.00309017 -0.00518835 -0.00758325 -0.00425779 -0.00493615 -0.00112921 0.00992115 -0.000543801 -0.00349371 0.00929776 -0.00115999 -0.00557841 0.00809017 -0.00185216 -0.00529576 0.00809017 -0.0025503 -0.00649673 0.00728969 -0.00215706 -0.00616756 0.00728969 -0.00297014 -0.00694208 0.00637424 -0.00334313 -0.00760713 0.00535827 -0.0036634 -0.00902606 0.00309017 -0.00299686 -0.00932245 0.00187381 -0.00309527 -0.0088501 0.00187381 -0.00426198 -0.00947183 0.000627905 -0.00314486 -0.00899191 0.000627905 -0.00433028 -0.00899191 -0.000627905 -0.00433028 -0.0088501 -0.00187381 -0.00426198 -0.00858731 -0.00425779 -0.00285118 -0.00815221 -0.00425779 -0.0039259 -0.00760713 -0.00535827 -0.0036634 -0.0073126 -0.00637424 -0.00242795 -0.00118948 0.00992115 -0.000394935 0.0034177 -0.00535827 0.00772064 0.00399428 -0.00637424 0.00658899 -0.00244104 0.00968583 -0.000475392 -0.00236021 0.00968583 -0.000783642 -0.0047287 0.00876307 -0.000920914 -0.00457211 0.00876307 -0.00151805 -0.00671923 0.00728969 -0.00130857 -0.00756304 0.00637424 -0.0014729 -0.00828758 0.00535827 -0.00161401 -0.0073126 0.00637424 -0.00242795 -0.00801314 0.00535827 -0.00266055 -0.00858731 0.00425779 -0.00285118 -0.00979622 -0.000627905 -0.00190781 -0.00947183 -0.000627905 -0.00314486 -0.00964173 -0.00187381 -0.00187773 -0.00932245 -0.00187381 -0.00309527 -0.00933518 -0.00309017 -0.00181803 -0.00902606 -0.00309017 -0.00299686 -0.00801314 -0.00535827 -0.00266055 -0.00756304 -0.00637424 -0.0014729 -0.00125076 0.00992115 -8.03013e-05 -0.00123022 0.00992115 -0.000239585 -0.00248179 0.00968583 -0.000159336 -0.00367368 0.00929776 -0.000235858 -0.00361336 0.00929776 -0.000703702 -0.00576946 0.00809017 -0.0011236 -0.0076893 0.00637424 -0.00049367 -0.00842593 0.00535827 -0.000540963 -0.00949102 0.00309017 -0.000609344 -0.00888141 0.00425779 -0.00172965 -0.00933518 0.00309017 -0.00181803 -0.00964173 0.00187381 -0.00187773 -0.00979622 0.000627905 -0.00190781 -0.00980269 -0.00187381 -0.000629354 -0.00888141 -0.00425779 -0.00172965 -0.00828758 -0.00535827 -0.00161401 -0.0076893 -0.00637424 -0.00049367 -0.00683141 -0.00728969 -0.000438591 -0.00125076 0.00992115 8.03013e-05 -0.00367368 0.00929776 0.000235858 -0.00480764 0.00876307 0.000308661 -0.00480764 0.00876307 -0.000308661 -0.00586578 0.00809017 -0.000376595 -0.00683141 0.00728969 -0.000438591 -0.00842593 0.00535827 0.000540963 -0.00902968 0.00425779 0.000579725 -0.00902968 0.00425779 -0.000579725 -0.00980269 0.00187381 -0.000629354 -0.00995976 0.000627905 -0.000639438 -0.00980269 -0.00187381 0.000629354 -0.00995976 -0.000627905 -0.000639438 -0.00949102 -0.00309017 -0.000609344 -0.00902968 -0.00425779 -0.000579725 -0.00842593 -0.00535827 -0.000540963 -0.0076893 -0.00637424 0.00049367 -0.00586578 -0.00809017 0.000376595 -0.00480764 -0.00876307 0.000308661 0.00346067 -0.00876307 0.00335148 0.00386084 -0.00876307 0.00288142 -0.00248179 0.00968583 0.000159336 -0.00361336 0.00929776 0.000703702 -0.0047287 0.00876307 0.000920914 -0.00586578 0.00809017 0.000376595 -0.00683141 0.00728969 0.000438591 -0.0076893 0.00637424 0.00049367 -0.00756304 0.00637424 0.0014729 -0.00949102 0.00309017 0.000609344 -0.00933518 0.00309017 0.00181803 -0.00964173 0.00187381 0.00187773 -0.00980269 0.00187381 0.000629354 -0.00979622 0.000627905 0.00190781 -0.00979622 -0.000627905 0.00190781 -0.00995976 0.000627905 0.000639438 -0.00964173 -0.00187381 0.00187773 -0.00995976 -0.000627905 0.000639438 -0.00933518 -0.00309017 0.00181803 -0.00888141 -0.00425779 0.00172965 -0.00949102 -0.00309017 0.000609344 -0.00902968 -0.00425779 0.000579725 -0.00842593 -0.00535827 0.000540963 -0.00828758 -0.00535827 0.00161401 -0.00756304 -0.00637424 0.0014729 -0.00671923 -0.00728969 0.00130857 -0.00683141 -0.00728969 0.000438591 -0.00576946 -0.00809017 0.0011236 -0.0047287 -0.00876307 0.000920914 -0.00123022 0.00992115 0.000239585 -0.00244104 0.00968583 0.000475392 -0.00457211 0.00876307 0.00151805 -0.00576946 0.00809017 0.0011236 -0.00671923 0.00728969 0.00130857 -0.0073126 0.00637424 0.00242795 -0.00828758 0.00535827 0.00161401 -0.00858731 0.00425779 0.00285118 -0.00888141 0.00425779 0.00172965 -0.00932245 0.00187381 0.00309527 -0.00947183 0.000627905 0.00314486 -0.00932245 -0.00187381 0.00309527 -0.00902606 -0.00309017 0.00299686 -0.0073126 -0.00637424 0.00242795 -0.00649673 -0.00728969 0.00215706 -0.00457211 -0.00876307 0.00151805 -0.00349371 -0.00929776 0.00115999 0.00216688 -0.00968583 0.00122036 -0.00521246 0.00728969 0.00443743 -0.00390534 0.00535827 0.00748581 -0.00418517 0.00425779 0.00802219 -0.00328462 0.00309017 0.00892537 -0.00312496 0.00425779 0.00849152 -0.0021163 0.00309017 0.00927212 -0.000958335 0.000627905 0.00993415 0.000319883 -0.000627905 0.00997514 0.00156773 -0.00187381 0.00969696 0.00469056 -0.00425779 0.00773756 0.00480407 -0.00637424 0.00602412 0.0052643 -0.00535827 0.00660122 0.00471059 -0.00809017 0.00351561 0.00419761 -0.00876307 0.00236405 0.00341221 -0.00929776 0.00138145 0.00246648 -0.00968583 0.000318018 0.00124304 -0.00992115 0.000160273 0.00230515 -0.00968583 0.000933251 0.00109205 -0.00992115 0.000615032 0.00199303 -0.00968583 0.00148744 0.0029502 -0.00929776 0.00220179 0.00264442 -0.00929776 0.00256098 0.00178646 -0.00968583 0.00173009 0.00100444 -0.00992115 0.000749631 0.00090033 -0.00992115 0.000871921 0.00155056 -0.00968583 0.00194434 1.73703e-18 -0.01 2.22804e-18 0.00426808 -0.00728969 0.005352 0.00354864 -0.00728969 0.00585386 0.00366478 -0.00809017 0.00459549 0.00304704 -0.00809017 0.0050264 0.00300369 -0.00876307 0.0037665 0.00249738 -0.00876307 0.00411968 0.00229522 -0.00929776 0.00287811 0.00190833 -0.00929776 0.00314799 0.00078144 -0.00992115 0.000979895 0.00149011 -0.00929776 0.00336618 0.00128919 -0.00968583 0.00212665 0.00100666 -0.00968583 0.00227405 0.000649718 -0.00992115 0.00107178 0.00311891 -0.00637424 0.00704567 0.00277093 -0.00728969 0.00625959 0.00237926 -0.00809017 0.00537478 0.00195006 -0.00876307 0.00440522 0.000507328 -0.00992115 0.00114606 0.000356608 -0.00992115 0.00120153 0.00240235 -0.00535827 0.0080943 0.0014441 -0.00425779 0.00893229 0.00219232 -0.00637424 0.00738666 0.00122974 -0.00637424 0.00760637 0.00109254 -0.00728969 0.00675772 0.00194773 -0.00728969 0.00656253 0.00167241 -0.00809017 0.00563491 0.000938105 -0.00809017 0.00580251 0.00137072 -0.00876307 0.00461842 0.00104742 -0.00929776 0.00352909 0.000587526 -0.00929776 0.00363406 0.000707591 -0.00968583 0.00238411 0.000290011 -0.00425779 0.00904362 0.00134755 -0.00535827 0.00833505 0.000219408 -0.00728969 0.00684195 0.000188394 -0.00809017 0.00587483 0.000768878 -0.00876307 0.00475578 0.00015441 -0.00876307 0.00481506 0.000396909 -0.00968583 0.00245502 0.000200032 -0.00992115 0.00123727 4.01713e-05 -0.00992115 0.00125269 0.000304829 -0.00309017 0.00950568 -0.000913233 -0.00309017 0.00946662 -0.000810749 -0.00535827 0.00840426 0.00027062 -0.00535827 0.00843894 0.000246962 -0.00637424 0.00770117 0.00011799 -0.00929776 0.00367935 -0.000353484 -0.00929776 0.00366423 7.9709e-05 -0.00968583 0.00248562 -0.000943222 -0.00187381 0.00977748 -0.00222082 -0.000627905 0.00973004 -0.000868842 -0.00425779 0.00900646 -0.00073987 -0.00637424 0.00766953 -0.00187881 -0.00535827 0.00823159 -0.00171455 -0.00637424 0.00751195 -0.00152326 -0.00728969 0.00667384 -0.000657323 -0.00728969 0.00681384 -0.00130795 -0.00809017 0.00573048 -0.000564409 -0.00809017 0.00585069 -0.000462594 -0.00876307 0.00479528 -0.001072 -0.00876307 0.00469675 -0.000819154 -0.00929776 0.00358895 -0.0002388 -0.00968583 0.00247541 -0.000278893 -0.00992115 0.00122191 -0.000120349 -0.00992115 0.00124754 -0.00218579 -0.00187381 0.00957659 -0.00344684 -0.000627905 0.00936617 -0.0021163 -0.00309017 0.00927212 -0.00201343 -0.00425779 0.00882141 -0.00312496 -0.00425779 0.00849152 -0.00236419 -0.00728969 0.00642426 -0.00166381 -0.00876307 0.00452111 -0.00127137 -0.00929776 0.00345473 -0.000553387 -0.00968583 0.00242455 -0.000432857 -0.00992115 0.00117621 -0.00461626 0.000627905 0.0088485 -0.00339248 -0.00187381 0.00921846 -0.00328462 -0.00309017 0.00892537 -0.004399 -0.00309017 0.00843206 -0.00291601 -0.00535827 0.00792375 -0.00266108 -0.00637424 0.00723102 -0.00203 -0.00809017 0.00551618 -0.00271873 -0.00809017 0.0052113 -0.0022283 -0.00876307 0.00427122 -0.00170272 -0.00929776 0.00326379 -0.000858888 -0.00968583 0.00233388 -0.00115029 -0.00968583 0.00220488 -0.00544115 0.00309017 0.0078003 -0.00454345 0.00187381 0.00870895 -0.00561983 0.00187381 0.00805645 -0.00570988 0.000627905 0.00818554 -0.00570988 -0.000627905 0.00818554 -0.00461626 -0.000627905 0.0088485 -0.00454345 -0.00187381 0.00870895 -0.00561983 -0.00187381 0.00805645 -0.00418517 -0.00425779 0.00802219 -0.00517667 -0.00425779 0.00742114 -0.00390534 -0.00535827 0.00748581 -0.00356392 -0.00637424 0.00683137 -0.00316629 -0.00728969 0.00606919 -0.0021061 -0.00929776 0.00301926 -0.000717052 -0.00992115 0.00102795 -0.000579714 -0.00992115 0.0011112 -0.00517667 0.00425779 0.00742114 -0.00639396 0.00309017 0.00704046 -0.00670974 -0.000627905 0.00738817 -0.00660393 -0.00187381 0.00727166 -0.00544115 -0.00309017 0.0078003 -0.00483054 -0.00535827 0.00692494 -0.00567642 -0.00535827 0.00625037 -0.00440823 -0.00637424 0.00631954 -0.00391641 -0.00728969 0.00561447 -0.00336282 -0.00809017 0.00482085 -0.00275619 -0.00876307 0.00395121 -0.00395169 -0.00809017 0.00435124 -0.0024749 -0.00929776 0.00272515 -0.00167194 -0.00968583 0.001841 -0.0014228 -0.00968583 0.00203969 -0.0064291 0.00535827 0.00547317 -0.00608316 0.00425779 0.00669824 -0.00660393 0.00187381 0.00727166 -0.00724178 0.00309017 0.00616502 -0.00670974 0.000627905 0.00738817 -0.00639396 -0.00309017 0.00704046 -0.00688977 -0.00425779 0.00586535 -0.00608316 -0.00425779 0.00669824 -0.00518017 -0.00637424 0.00570394 -0.00586704 -0.00637424 0.00499469 -0.00460222 -0.00728969 0.00506755 -0.00521246 -0.00728969 0.00443743 -0.00447567 -0.00809017 0.00381019 -0.00323883 -0.00876307 0.00356632 -0.00366829 -0.00876307 0.00312286 -0.000842616 -0.00992115 0.000927814 -0.00189364 -0.00968583 0.00161208 -0.00112921 0.00992115 0.000543801 -0.00208424 0.00968583 0.00135669 -0.00331669 0.00929776 0.00159723 -0.00434045 0.00876307 0.00209025 -0.00529576 0.00809017 0.0025503 -0.00616756 0.00728969 0.00297014 -0.00645758 0.00637424 0.00420342 -0.00694208 0.00637424 0.00334313 -0.00758325 0.00425779 0.00493615 -0.00815221 0.00425779 0.0039259 -0.00797069 0.00309017 0.00518835 -0.00836434 0.000627905 0.00544458 -0.00899191 0.000627905 0.00433028 -0.00823243 -0.00187381 0.00535872 -0.0088501 -0.00187381 0.00426198 -0.00856872 -0.00309017 0.00412648 -0.00758325 -0.00425779 0.00493615 -0.00760713 -0.00535827 0.0036634 -0.00573711 -0.00728969 0.00373444 -0.00492616 -0.00809017 0.00320657 -0.00403752 -0.00876307 0.00262813 -0.00434045 -0.00876307 0.00209025 -0.00308521 -0.00929776 0.00200825 -0.00331669 -0.00929776 0.00159723 -0.00208424 -0.00968583 0.00135669 -0.0047287 -0.00876307 -0.000920914 -0.00576946 -0.00809017 -0.0011236 -0.00649673 -0.00728969 -0.00215706 -0.00616756 -0.00728969 -0.00297014 -0.00694208 -0.00637424 -0.00334313 -0.00707621 -0.00535827 -0.0046061 -0.00688977 -0.00425779 -0.00586535 -0.00608316 -0.00425779 -0.00669824 -0.00461626 -0.000627905 -0.0088485 -0.00454345 -0.00187381 -0.00870895 -0.00344684 0.000627905 -0.00936617 -0.000943222 0.00187381 -0.00977748 -0.000913233 0.00309017 -0.00946662 0.000304829 0.00309017 -0.00950568 0.00134755 0.00535827 -0.00833505 0.00219232 0.00637424 -0.00738666 0.00311891 0.00637424 -0.00704567 0.00277093 0.00728969 -0.00625959 0.00354864 0.00728969 -0.00585386 0.00366478 0.00809017 -0.00459549 0.00346067 0.00876307 -0.00335148 0.00216688 0.00968583 -0.00122036 -0.00125076 -0.00992115 8.03013e-05 -0.00248179 -0.00968583 -0.000159336 -0.00361336 -0.00929776 -0.000703702 -0.00339248 -0.00187381 -0.00921846 -0.00328462 -0.00309017 -0.00892537 0.00156773 0.00187381 -0.00969696 0.000314839 0.00187381 -0.00981783 0.00399428 0.00637424 -0.00658899 0.00422235 0.00809017 -0.00408912 0.00386084 0.00876307 -0.00288142 0.00419761 0.00876307 -0.00236405 0.00320754 0.00929776 -0.00180645 0.00341221 0.00929776 -0.00138145 0.00230515 0.00968583 -0.000933251 0.00240556 0.00968583 -0.000630813 0.00121234 0.00992115 -0.000317913 0.00124304 0.00992115 -0.000160273 0.00125333 0.00992115 -2.00175e-18 0.00246648 0.00968583 -0.000318018 0.00446546 0.00876307 -0.00180786 0.00512148 0.00809017 -0.00288437 0.00471059 0.00809017 -0.00351561 0.00548605 0.00728969 -0.00409435 0.00491744 0.00728969 -0.00476227 0.00480407 0.00637424 -0.00602412 0.00437693 0.00535827 -0.00722021 0.00366259 0.00425779 -0.00827385 0.00270602 0.00309017 -0.00911747 0.000319883 0.000627905 -0.00997514 0.000319883 -0.000627905 -0.00997514 -0.000958335 -0.000627905 -0.00993415 -0.000943222 -0.00187381 -0.00977748 -0.0021163 -0.00309017 -0.00927212 -0.00218579 -0.00187381 -0.00957659 -0.00418517 -0.00425779 -0.00802219 -0.00390534 -0.00535827 -0.00748581 -0.00483054 -0.00535827 -0.00692494 -0.00460222 -0.00728969 -0.00506755 -0.00518017 -0.00637424 -0.00570394 -0.00521246 -0.00728969 -0.00443743 -0.00492616 -0.00809017 -0.00320657 -0.00434045 -0.00876307 -0.00209025 -0.00403752 -0.00876307 -0.00262813 -0.00349371 -0.00929776 -0.00115999 -0.00236021 -0.00968583 -0.000783642 -0.00244104 -0.00968583 -0.000475392 -0.00125076 -0.00992115 -8.03013e-05 0.00356085 0.00929776 -0.000933765 0.00365102 0.00929776 -0.000470747 0.006175 0.00637424 -0.00460852 0.00553498 0.00637424 -0.00536033 0.00606522 0.00535827 -0.00587384 0.0052643 0.00535827 -0.00660122 0.00469056 0.00425779 -0.00773756 0.0056415 0.00425779 -0.00707422 0.00397614 0.00187381 -0.00898216 0.00384972 0.00309017 -0.00869658 0.00279488 0.00187381 -0.00941687 0.00283966 0.000627905 -0.00956776 0.00159285 0.000627905 -0.00985234 0.00159285 -0.000627905 -0.00985234 0.000314839 -0.00187381 -0.00981783 -0.000913233 -0.00309017 -0.00946662 -0.00312496 -0.00425779 -0.00849152 -0.00201343 -0.00425779 -0.00882141 -0.00291601 -0.00535827 -0.00792375 -0.00356392 -0.00637424 -0.00683137 -0.00440823 -0.00637424 -0.00631954 -0.00391641 -0.00728969 -0.00561447 -0.00395169 -0.00809017 -0.00435124 -0.00447567 -0.00809017 -0.00381019 -0.00331669 -0.00929776 -0.00159723 -0.00123022 -0.00992115 -0.000239585 0.00121234 0.00992115 0.000317913 0.00124304 0.00992115 0.000160273 0.0024869 0.00968583 -1.74389e-18 0.00477798 0.00876307 -0.000616053 0.00568562 0.00809017 -0.00149094 0.00465998 0.00876307 -0.00122199 0.00544828 0.00809017 -0.00220576 0.00596459 0.00728969 -0.00335919 0.00676656 0.00535827 -0.00505001 0.0050921 0.00187381 -0.00839996 0.00493021 0.00309017 -0.00813289 0.00283966 -0.000627905 -0.00956776 0.00156773 -0.00187381 -0.00969696 -0.00187881 -0.00535827 -0.00823159 -0.00266108 -0.00637424 -0.00723102 -0.00336282 -0.00809017 -0.00482085 -0.00366829 -0.00876307 -0.00312286 -0.00308521 -0.00929776 -0.00200825 -0.00224062 -0.00968583 -0.00107902 -0.00112921 -0.00992115 -0.000543801 -0.00118948 -0.00992115 -0.000394935 0.00246648 0.00968583 0.000318018 0.00365102 0.00929776 0.000470747 0.00368125 0.00929776 -1.45853e-18 0.0058296 0.00809017 -0.000751643 0.00634518 0.00728969 -0.00256888 0.00671363 0.00637424 -0.00378104 0.00735679 0.00535827 -0.00414327 0.00649982 0.00425779 -0.00629472 0.00683191 0.00309017 -0.00661633 0.00592974 0.00309017 -0.00743566 0.00403985 0.000627905 -0.00912608 0.00279488 -0.00187381 -0.00941687 0.00151789 -0.00309017 -0.00938866 0.000290011 -0.00425779 -0.00904362 0.000304829 -0.00309017 -0.00950568 -0.000868842 -0.00425779 -0.00900646 -0.000810749 -0.00535827 -0.00840426 -0.00316629 -0.00728969 -0.00606919 -0.00323883 -0.00876307 -0.00356632 -0.00275619 -0.00876307 -0.00395121 -0.00280307 -0.00929776 -0.00238629 -0.00208424 -0.00968583 -0.00135669 -0.00189364 -0.00968583 -0.00161208 -0.0010504 -0.00992115 -0.000683737 0.00109205 0.00992115 0.000615032 0.00116173 0.00992115 0.000470334 0.00240556 0.00968583 0.000630813 0.00481754 0.00876307 -1.15016e-18 0.00587785 0.00809017 -8.23663e-19 0.00678927 0.00728969 -0.000875379 0.00662159 0.00728969 -0.00173639 0.00714202 0.00637424 -0.00289148 0.00782622 0.00535827 -0.00316848 0.00725141 0.00425779 -0.00541187 0.00788393 0.00425779 -0.00444015 0.00612446 0.00187381 -0.00767983 0.0051737 0.000627905 -0.00853455 0.00403985 -0.000627905 -0.00912608 0.00397614 -0.00187381 -0.00898216 0.00270602 -0.00309017 -0.00911747 0.0014441 -0.00425779 -0.00893229 -0.00171455 -0.00637424 -0.00751195 -0.00073987 -0.00637424 -0.00766953 -0.00236419 -0.00728969 -0.00642426 -0.00271873 -0.00809017 -0.0052113 -0.0024749 -0.00929776 -0.00272515 -0.00167194 -0.00968583 -0.001841 -0.000954345 -0.00992115 -0.000812446 0.00230515 0.00968583 0.000933251 0.00356085 0.00929776 0.000933765 0.00465998 0.00876307 0.00122199 0.0058296 0.00809017 0.000751643 0.00477798 0.00876307 0.000616053 0.00684547 0.00728969 -4.84171e-19 0.00745314 0.00637424 -0.00195444 0.00816714 0.00535827 -0.00214168 0.00838699 0.00425779 -0.00339552 0.00828673 0.00309017 -0.004667 0.0076219 0.00309017 -0.00568837 0.00705625 0.00187381 -0.0068336 0.00716932 0.000627905 -0.0069431 0.00622259 0.000627905 -0.00780289 0.0051737 -0.000627905 -0.00853455 0.00384972 -0.00309017 -0.00869658 0.00134755 -0.00535827 -0.00833505 0.00027062 -0.00535827 -0.00843894 -0.000657323 -0.00728969 -0.00681384 -0.00152326 -0.00728969 -0.00667384 -0.00130795 -0.00809017 -0.00573048 -0.00203 -0.00809017 -0.00551618 -0.00166381 -0.00876307 -0.00452111 -0.0022283 -0.00876307 -0.00427122 -0.00170272 -0.00929776 -0.00326379 -0.0021061 -0.00929776 -0.00301926 -0.000842616 -0.00992115 -0.000927814 0.00100444 0.00992115 0.000749631 0.00090033 0.00992115 0.000871921 0.00199303 0.00968583 0.00148744 0.00216688 0.00968583 0.00122036 0.00320754 0.00929776 0.00180645 0.00341221 0.00929776 0.00138145 0.00678927 0.00728969 0.000875379 0.00770513 0.00637424 -1.37043e-19 0.00764187 0.00637424 -0.00098531 0.0088155 0.00309017 -0.003569 0.00855885 0.00187381 -0.00482026 0.00787218 0.00187381 -0.00587516 0.00799832 0.000627905 -0.0059693 0.00716932 -0.000627905 -0.0069431 0.00622259 -0.000627905 -0.00780289 0.00612446 -0.00187381 -0.00767983 0.0050921 -0.00187381 -0.00839996 0.00257448 -0.00425779 -0.00867429 0.00366259 -0.00425779 -0.00827385 0.00240235 -0.00535827 -0.0080943 0.000246962 -0.00637424 -0.00770117 -0.001072 -0.00876307 -0.00469675 -0.00115029 -0.00968583 -0.00220488 -0.000717052 -0.00992115 -0.00102795 -0.0014228 -0.00968583 -0.00203969 0.00178646 0.00968583 0.00173009 0.00446546 0.00876307 0.00180786 0.00568562 0.00809017 0.00149094 0.00662159 0.00728969 0.00173639 0.00837396 0.00535827 -0.0010797 0.00897398 0.00425779 -0.00115707 0.00875235 0.00425779 -0.00229514 0.00869599 0.000627905 -0.00489749 0.00705625 -0.00187381 -0.0068336 0.00493021 -0.00309017 -0.00813289 0.00469056 -0.00425779 -0.00773756 0.0034177 -0.00535827 -0.00772064 0.00122974 -0.00637424 -0.00760637 0.00109254 -0.00728969 -0.00675772 0.000219408 -0.00728969 -0.00684195 -0.000564409 -0.00809017 -0.00585069 -0.00127137 -0.00929776 -0.00345473 -0.000819154 -0.00929776 -0.00358895 -0.000579714 -0.00992115 -0.0011112 0.000649718 0.00992115 0.00107178 0.00078144 0.00992115 0.000979895 0.00155056 0.00968583 0.00194434 0.00264442 0.00929776 0.00256098 0.0029502 0.00929776 0.00220179 0.00419761 0.00876307 0.00236405 0.00512148 0.00809017 0.00288437 0.00544828 0.00809017 0.00220576 0.00634518 0.00728969 0.00256888 0.00745314 0.00637424 0.00195444 0.00764187 0.00637424 0.00098531 0.00837396 0.00535827 0.0010797 0.00844328 0.00535827 2.12245e-19 0.00904827 0.00425779 5.58187e-19 0.00919952 0.00309017 -0.0024124 0.00910498 0.00187381 -0.0036862 0.00799832 -0.000627905 -0.0059693 0.00683191 -0.00309017 -0.00661633 0.0056415 -0.00425779 -0.00707422 0.00592974 -0.00309017 -0.00743566 0.00437693 -0.00535827 -0.00722021 0.00311891 -0.00637424 -0.00704567 0.00219232 -0.00637424 -0.00738666 0.000188394 -0.00809017 -0.00587483 0.00015441 -0.00876307 -0.00481506 -0.000462594 -0.00876307 -0.00479528 -0.000553387 -0.00968583 -0.00242455 -0.000858888 -0.00968583 -0.00233388 0.00386084 0.00876307 0.00288142 0.00471059 0.00809017 0.00351561 0.00596459 0.00728969 0.00335919 0.00897398 0.00425779 0.00115707 0.00951057 0.00309017 8.95325e-19 0.00943248 0.00309017 -0.00121618 0.00950161 0.00187381 -0.00249162 0.00965386 0.000627905 -0.00253154 0.00925088 0.000627905 -0.00374527 0.00869599 -0.000627905 -0.00489749 0.00925088 -0.000627905 -0.00374527 0.00855885 -0.00187381 -0.00482026 0.0076219 -0.00309017 -0.00568837 0.00787218 -0.00187381 -0.00587516 0.00649982 -0.00425779 -0.00629472 0.00399428 -0.00637424 -0.00658899 0.00194773 -0.00728969 -0.00656253 0.00167241 -0.00809017 -0.00563491 0.000938105 -0.00809017 -0.00580251 -0.000353484 -0.00929776 -0.00366423 -0.000432857 -0.00992115 -0.00117621 0.000507328 0.00992115 0.00114606 0.00190833 0.00929776 0.00314799 0.00128919 0.00968583 0.00212665 0.00229522 0.00929776 0.00287811 0.00346067 0.00876307 0.00335148 0.00422235 0.00809017 0.00408912 0.00671363 0.00637424 0.00378104 0.00714202 0.00637424 0.00289148 0.00816714 0.00535827 0.00214168 0.00782622 0.00535827 0.00316848 0.00875235 0.00425779 0.00229514 0.00943248 0.00309017 0.00121618 0.00974223 0.00187381 -0.00125612 0.00989833 0.000627905 -0.00127625 0.00725141 -0.00425779 -0.00541187 0.0052643 -0.00535827 -0.00660122 0.00606522 -0.00535827 -0.00587384 0.00277093 -0.00728969 -0.00625959 0.00237926 -0.00809017 -0.00537478 0.00137072 -0.00876307 -0.00461842 0.000768878 -0.00876307 -0.00475578 0.00011799 -0.00929776 -0.00367935 -0.0002388 -0.00968583 -0.00247541 7.9709e-05 -0.00968583 -0.00248562 -0.000120349 -0.00992115 -0.00124754 -0.000278893 -0.00992115 -0.00122191 0.000356608 0.00992115 0.00120153 0.00100666 0.00968583 0.00227405 0.00366478 0.00809017 0.00459549 0.00300369 0.00876307 0.0037665 0.00548605 0.00728969 0.00409435 0.006175 0.00637424 0.00460852 0.00735679 0.00535827 0.00414327 0.00974223 0.00187381 0.00125612 0.00982287 0.00187381 1.21834e-18 0.00998027 0.000627905 1.52215e-18 0.00965386 -0.000627905 -0.00253154 0.00950161 -0.00187381 -0.00249162 0.00910498 -0.00187381 -0.0036862 0.00828673 -0.00309017 -0.004667 0.00788393 -0.00425779 -0.00444015 0.00676656 -0.00535827 -0.00505001 0.00480407 -0.00637424 -0.00602412 0.00426808 -0.00728969 -0.005352 0.00354864 -0.00728969 -0.00585386 0.00195006 -0.00876307 -0.00440522 0.000587526 -0.00929776 -0.00363406 0.000396909 -0.00968583 -0.00245502 4.01713e-05 -0.00992115 -0.00125269 0.000200032 0.00992115 0.00123727 0.000707591 0.00968583 0.00238411 0.00149011 0.00929776 0.00336618 0.00195006 0.00876307 0.00440522 0.00249738 0.00876307 0.00411968 0.00304704 0.00809017 0.0050264 0.00426808 0.00728969 0.005352 0.00491744 0.00728969 0.00476227 0.00553498 0.00637424 0.00536033 0.00676656 0.00535827 0.00505001 0.00788393 0.00425779 0.00444015 0.00838699 0.00425779 0.00339552 0.00919952 0.00309017 0.0024124 0.00950161 0.00187381 0.00249162 0.00989833 -0.000627905 -0.00127625 0.00974223 -0.00187381 -0.00125612 0.0088155 -0.00309017 -0.003569 0.00838699 -0.00425779 -0.00339552 0.006175 -0.00637424 -0.00460852 0.00553498 -0.00637424 -0.00536033 0.00304704 -0.00809017 -0.0050264 0.00149011 -0.00929776 -0.00336618 0.00104742 -0.00929776 -0.00352909 0.000707591 -0.00968583 -0.00238411 0.000200032 -0.00992115 -0.00123727 4.01713e-05 0.00992115 0.00125269 -0.000120349 0.00992115 0.00124754 7.9709e-05 0.00968583 0.00248562 0.000396909 0.00968583 0.00245502 0.00104742 0.00929776 0.00352909 0.00137072 0.00876307 0.00461842 0.00480407 0.00637424 0.00602412 0.0088155 0.00309017 0.003569 0.00989833 0.000627905 0.00127625 0.00989833 -0.000627905 0.00127625 0.00998027 -0.000627905 1.80195e-18 0.00982287 -0.00187381 2.05333e-18 0.00919952 -0.00309017 -0.0024124 0.00735679 -0.00535827 -0.00414327 0.00782622 -0.00535827 -0.00316848 0.00671363 -0.00637424 -0.00378104 0.00548605 -0.00728969 -0.00409435 0.00491744 -0.00728969 -0.00476227 0.00366478 -0.00809017 -0.00459549 0.00249738 -0.00876307 -0.00411968 0.00100666 -0.00968583 -0.00227405 0.000356608 -0.00992115 -0.00120153 -0.000278893 0.00992115 0.00122191 0.00011799 0.00929776 0.00367935 0.000587526 0.00929776 0.00363406 0.000768878 0.00876307 0.00475578 0.00237926 0.00809017 0.00537478 0.00167241 0.00809017 0.00563491 0.00277093 0.00728969 0.00625959 0.00354864 0.00728969 0.00585386 0.00606522 0.00535827 0.00587384 0.00725141 0.00425779 0.00541187 0.0076219 0.00309017 0.00568837 0.00828673 0.00309017 0.004667 0.00910498 0.00187381 0.0036862 0.00965386 0.000627905 0.00253154 0.00965386 -0.000627905 0.00253154 0.00943248 -0.00309017 -0.00121618 0.00951057 -0.00309017 2.27233e-18 0.00875235 -0.00425779 -0.00229514 0.00897398 -0.00425779 -0.00115707 0.00816714 -0.00535827 -0.00214168 0.00714202 -0.00637424 -0.00289148 0.00422235 -0.00809017 -0.00408912 0.00300369 -0.00876307 -0.0037665 0.00190833 -0.00929776 -0.00314799 -0.0002388 0.00968583 0.00247541 0.000938105 0.00809017 0.00580251 0.00194773 0.00728969 0.00656253 0.00311891 0.00637424 0.00704567 0.00399428 0.00637424 0.00658899 0.0052643 0.00535827 0.00660122 0.00649982 0.00425779 0.00629472 0.0056415 0.00425779 0.00707422 0.00855885 0.00187381 0.00482026 0.00925088 0.000627905 0.00374527 0.00974223 -0.00187381 0.00125612 0.00943248 -0.00309017 0.00121618 0.00745314 -0.00637424 -0.00195444 0.00596459 -0.00728969 -0.00335919 0.00634518 -0.00728969 -0.00256888 0.00512148 -0.00809017 -0.00288437 0.00471059 -0.00809017 -0.00351561 0.00346067 -0.00876307 -0.00335148 0.00264442 -0.00929776 -0.00256098 0.00229522 -0.00929776 -0.00287811 0.00155056 -0.00968583 -0.00194434 0.00128919 -0.00968583 -0.00212665 0.000507328 -0.00992115 -0.00114606 -0.000432857 0.00992115 0.00117621 -0.000553387 0.00968583 0.00242455 -0.000353484 0.00929776 0.00366423 0.00015441 0.00876307 0.00481506 0.000188394 0.00809017 0.00587483 0.00109254 0.00728969 0.00675772 0.00437693 0.00535827 0.00722021 0.00683191 0.00309017 0.00661633 0.00705625 0.00187381 0.0068336 0.00787218 0.00187381 0.00587516 0.00799832 0.000627905 0.0059693 0.00869599 0.000627905 0.00489749 0.00925088 -0.000627905 0.00374527 0.00950161 -0.00187381 0.00249162 0.00904827 -0.00425779 2.45549e-18 0.00837396 -0.00535827 -0.0010797 0.00662159 -0.00728969 -0.00173639 0.00544828 -0.00809017 -0.00220576 0.00386084 -0.00876307 -0.00288142 0.00419761 -0.00876307 -0.00236405 0.0029502 -0.00929776 -0.00220179 0.000649718 -0.00992115 -0.00107178 0.00078144 -0.00992115 -0.000979895 -0.000579714 0.00992115 0.0011112 -0.000858888 0.00968583 0.00233388 -0.00127137 0.00929776 0.00345473 -0.000819154 0.00929776 0.00358895 -0.000462594 0.00876307 0.00479528 -0.000564409 0.00809017 0.00585069 0.00219232 0.00637424 0.00738666 0.0034177 0.00535827 0.00772064 0.00469056 0.00425779 0.00773756 0.00366259 0.00425779 0.00827385 0.00493021 0.00309017 0.00813289 0.00592974 0.00309017 0.00743566 0.00612446 0.00187381 0.00767983 0.00716932 0.000627905 0.0069431 0.00799832 -0.000627905 0.0059693 0.00869599 -0.000627905 0.00489749 0.00910498 -0.00187381 0.0036862 0.0088155 -0.00309017 0.003569 0.00919952 -0.00309017 0.0024124 0.00897398 -0.00425779 0.00115707 0.00837396 -0.00535827 0.0010797 0.00844328 -0.00535827 2.59993e-18 0.00764187 -0.00637424 -0.00098531 0.00568562 -0.00809017 -0.00149094 0.00446546 -0.00876307 -0.00180786 0.00090033 -0.00992115 -0.000871921 0.00178646 -0.00968583 -0.00173009 -0.000717052 0.00992115 0.00102795 -0.0014228 0.00968583 0.00203969 -0.00115029 0.00968583 0.00220488 -0.00170272 0.00929776 0.00326379 -0.001072 0.00876307 0.00469675 -0.00130795 0.00809017 0.00573048 0.000219408 0.00728969 0.00684195 0.000246962 0.00637424 0.00770117 0.00122974 0.00637424 0.00760637 0.00240235 0.00535827 0.0080943 0.00257448 0.00425779 0.00867429 0.00384972 0.00309017 0.00869658 0.00787218 -0.00187381 0.00587516 0.00855885 -0.00187381 0.00482026 0.00828673 -0.00309017 0.004667 0.00875235 -0.00425779 0.00229514 0.00838699 -0.00425779 0.00339552 0.00684547 -0.00728969 2.76417e-18 0.00770513 -0.00637424 2.70337e-18 0.00678927 -0.00728969 -0.000875379 0.0058296 -0.00809017 -0.000751643 0.00320754 -0.00929776 -0.00180645 0.00199303 -0.00968583 -0.00148744 -0.000842616 0.00992115 0.000927814 -0.00166381 0.00876307 0.00452111 -0.0022283 0.00876307 0.00427122 -0.00203 0.00809017 0.00551618 -0.00152326 0.00728969 0.00667384 -0.000657323 0.00728969 0.00681384 0.00134755 0.00535827 0.00833505 0.0014441 0.00425779 0.00893229 0.00270602 0.00309017 0.00911747 0.0050921 0.00187381 0.00839996 0.0051737 0.000627905 0.00853455 0.00622259 -0.000627905 0.00780289 0.00622259 0.000627905 0.00780289 0.00716932 -0.000627905 0.0069431 0.00788393 -0.00425779 0.00444015 0.00816714 -0.00535827 0.00214168 0.00745314 -0.00637424 0.00195444 0.00764187 -0.00637424 0.00098531 0.00465998 -0.00876307 -0.00122199 0.00341221 -0.00929776 -0.00138145 0.00230515 -0.00968583 -0.000933251 0.00216688 -0.00968583 -0.00122036 0.00100444 -0.00992115 -0.000749631 0.00477798 -0.00876307 -0.000616053 0.00481754 -0.00876307 2.75473e-18 0.00365102 -0.00929776 -0.000470747 0.00356085 -0.00929776 -0.000933765 0.00109205 -0.00992115 -0.000615032 -0.00280307 0.00929776 0.00238629 -0.00275619 0.00876307 0.00395121 -0.00236419 0.00728969 0.00642426 0.000290011 0.00425779 0.00904362 0.00151789 0.00309017 0.00938866 0.00403985 0.000627905 0.00912608 0.00403985 -0.000627905 0.00912608 0.00592974 -0.00309017 0.00743566 0.00612446 -0.00187381 0.00767983 0.00725141 -0.00425779 0.00541187 0.00671363 -0.00637424 0.00378104 0.00714202 -0.00637424 0.00289148 0.00634518 -0.00728969 0.00256888 0.00568562 -0.00809017 0.00149094 0.00246648 -0.00968583 -0.000318018 0.00240556 -0.00968583 -0.000630813 0.00121234 -0.00992115 -0.000317913 0.00116173 -0.00992115 -0.000470334 -0.00323883 0.00876307 0.00356632 -0.00336282 0.00809017 0.00482085 -0.00316629 0.00728969 0.00606919 -0.00391641 0.00728969 0.00561447 -0.00356392 0.00637424 0.00683137 -0.00266108 0.00637424 0.00723102 -0.00187881 0.00535827 0.00823159 -0.000868842 0.00425779 0.00900646 0.000304829 0.00309017 0.00950568 0.00156773 0.00187381 0.00969696 0.00159285 0.000627905 0.00985234 0.00283966 0.000627905 0.00956776 0.0050921 -0.00187381 0.00839996 0.00493021 -0.00309017 0.00813289 0.00649982 -0.00425779 0.00629472 0.0056415 -0.00425779 0.00707422 0.00676656 -0.00535827 0.00505001 0.00596459 -0.00728969 0.00335919 0.00465998 -0.00876307 0.00122199 0.00477798 -0.00876307 0.000616053 0.00368125 -0.00929776 2.68463e-18 0.00124304 -0.00992115 -0.000160273 -0.00395169 0.00809017 0.00435124 -0.00460222 0.00728969 0.00506755 -0.00440823 0.00637424 0.00631954 -0.00291601 0.00535827 0.00792375 -0.00201343 0.00425779 0.00882141 -0.000913233 0.00309017 0.00946662 0.000314839 0.00187381 0.00981783 -0.000943222 0.00187381 0.00977748 0.000319883 0.000627905 0.00997514 0.00159285 -0.000627905 0.00985234 0.00283966 -0.000627905 0.00956776 0.00279488 -0.00187381 0.00941687 0.00397614 -0.00187381 0.00898216 0.00384972 -0.00309017 0.00869658 0.00606522 -0.00535827 0.00587384 0.006175 -0.00637424 0.00460852 0.00553498 -0.00637424 0.00536033 0.00548605 -0.00728969 0.00409435 0.00512148 -0.00809017 0.00288437 0.00544828 -0.00809017 0.00220576 0.00446546 -0.00876307 0.00180786 0.00356085 -0.00929776 0.000933765 0.00365102 -0.00929776 0.000470747 0.0024869 -0.00968583 2.57219e-18 0.00125333 -0.00992115 2.41919e-18 -0.00123022 -0.00992115 0.000239585 -0.00248179 -0.00968583 0.000159336 -0.00367368 -0.00929776 -0.000235858 -0.00457211 -0.00876307 -0.00151805 -0.00557841 -0.00809017 -0.00185216 -0.00529576 -0.00809017 -0.0025503 -0.00573711 -0.00728969 -0.00373444 -0.00586704 -0.00637424 -0.00499469 -0.00645758 -0.00637424 -0.00420342 -0.0064291 -0.00535827 -0.00547317 -0.00567642 -0.00535827 -0.00625037 -0.00517667 -0.00425779 -0.00742114 -0.00544115 -0.00309017 -0.0078003 -0.004399 -0.00309017 -0.00843206 -0.00222082 -0.000627905 -0.00973004 -0.00344684 -0.000627905 -0.00936617 -0.00222082 0.000627905 -0.00973004 -0.000958335 0.000627905 -0.00993415 0.00151789 0.00309017 -0.00938866 0.0014441 0.00425779 -0.00893229 0.00257448 0.00425779 -0.00867429 0.00240235 0.00535827 -0.0080943 0.0034177 0.00535827 -0.00772064 0.00426808 0.00728969 -0.005352 0.0029502 0.00929776 -0.00220179 0.00116173 0.00992115 -0.000470334 -0.00244104 -0.00968583 0.000475392 -0.00361336 -0.00929776 0.000703702 -0.00367368 -0.00929776 0.000235858 -0.00586578 -0.00809017 -0.000376595 -0.00480764 -0.00876307 -0.000308661 -0.00671923 -0.00728969 -0.00130857 -0.00724178 -0.00309017 -0.00616502 -0.00639396 -0.00309017 -0.00704046 -0.00660393 -0.00187381 -0.00727166 -0.00561983 -0.00187381 -0.00805645 -0.00218579 0.00187381 -0.00957659 -0.0021163 0.00309017 -0.00927212 -0.000868842 0.00425779 -0.00900646 0.000290011 0.00425779 -0.00904362 0.00027062 0.00535827 -0.00843894 0.00194773 0.00728969 -0.00656253 0.00237926 0.00809017 -0.00537478 0.00304704 0.00809017 -0.0050264 0.00300369 0.00876307 -0.0037665 0.00264442 0.00929776 -0.00256098 0.00199303 0.00968583 -0.00148744 0.00109205 0.00992115 -0.000615032 -0.00118948 0.00992115 0.000394935 -0.00224062 0.00968583 0.00107902 -0.00236021 0.00968583 0.000783642 -0.00349371 0.00929776 0.00115999 -0.00557841 0.00809017 0.00185216 -0.00649673 0.00728969 0.00215706 -0.00760713 0.00535827 0.0036634 -0.00801314 0.00535827 0.00266055 -0.00856872 0.00309017 0.00412648 -0.0088501 0.00187381 0.00426198 -0.00902606 0.00309017 0.00299686 -0.00899191 -0.000627905 0.00433028 -0.00947183 -0.000627905 0.00314486 -0.00815221 -0.00425779 0.0039259 -0.00858731 -0.00425779 0.00285118 -0.00801314 -0.00535827 0.00266055 -0.00694208 -0.00637424 0.00334313 -0.00616756 -0.00728969 0.00297014 -0.00529576 -0.00809017 0.0025503 -0.00557841 -0.00809017 0.00185216 -0.00224062 -0.00968583 0.00107902 -0.00236021 -0.00968583 0.000783642 -0.00112921 -0.00992115 0.000543801 -0.00118948 -0.00992115 0.000394935 -0.00586704 0.00637424 0.00499469 -0.00518017 0.00637424 0.00570394 -0.00483054 0.00535827 0.00692494 -0.004399 0.00309017 0.00843206 -0.00339248 0.00187381 0.00921846 -0.00218579 0.00187381 0.00957659 0.000314839 -0.00187381 0.00981783 0.00270602 -0.00309017 0.00911747 0.00151789 -0.00309017 0.00938866 0.00257448 -0.00425779 0.00867429 0.00366259 -0.00425779 0.00827385 0.00437693 -0.00535827 0.00722021 0.00491744 -0.00728969 0.00476227 0.00422235 -0.00809017 0.00408912 0.00320754 -0.00929776 0.00180645 0.00240556 -0.00968583 0.000630813 0.00121234 -0.00992115 0.000317913 -0.00366829 0.00876307 0.00312286 -0.00308521 0.00929776 0.00200825 -0.00403752 0.00876307 0.00262813 -0.00447567 0.00809017 0.00381019 -0.00492616 0.00809017 0.00320657 -0.00573711 0.00728969 0.00373444 -0.00688977 0.00425779 0.00586535 -0.00707621 0.00535827 0.0046061 -0.00823243 0.00187381 0.00535872 -0.00747959 0.00187381 0.00636747 -0.00759943 0.000627905 0.00646949 -0.00759943 -0.000627905 0.00646949 -0.00836434 -0.000627905 0.00544458 -0.00747959 -0.00187381 0.00636747 -0.00724178 -0.00309017 0.00616502 -0.00797069 -0.00309017 0.00518835 -0.0064291 -0.00535827 0.00547317 -0.00707621 -0.00535827 0.0046061 -0.00645758 -0.00637424 0.00420342 -0.00280307 -0.00929776 0.00238629 -0.000954345 -0.00992115 0.000812446 -0.0010504 -0.00992115 0.000683737 0.0058296 -0.00809017 0.000751643 0.00587785 -0.00809017 2.78138e-18 0.00662159 -0.00728969 0.00173639 0.00678927 -0.00728969 0.000875379 0.00782622 -0.00535827 0.00316848 0.00735679 -0.00535827 0.00414327 0.00683191 -0.00309017 0.00661633 0.0076219 -0.00309017 0.00568837 0.00705625 -0.00187381 0.0068336 0.0051737 -0.000627905 0.00853455 0.00397614 0.00187381 0.00898216 0.00279488 0.00187381 0.00941687 0.00027062 0.00535827 0.00843894 -0.000810749 0.00535827 0.00840426 -0.00073987 0.00637424 0.00766953 -0.00171455 0.00637424 0.00751195 -0.00271873 0.00809017 0.0052113 -0.0021061 0.00929776 0.00301926 -0.0024749 0.00929776 0.00272515 -0.00167194 0.00968583 0.001841 -0.00189364 0.00968583 0.00161208 -0.000954345 0.00992115 0.000812446 + + + + + + + + + + 0.0597141 -0.998019 0.0198265 0.142964 0.982216 -0.121707 0.0479098 0.998019 -0.0407862 0.0423008 0.998019 -0.0465779 -0.150468 0.982216 0.112297 0.126226 0.982216 -0.138989 0.126226 0.982216 -0.138989 0.208139 0.950869 -0.229185 0.0359973 0.998019 -0.0516048 0.107417 0.982216 -0.15399 0.107417 0.982216 -0.15399 0.177123 0.950869 -0.253919 0.177123 0.950869 -0.253919 0.244006 0.904489 -0.349801 0.0291026 0.998019 -0.0557844 0.0868428 0.982216 -0.166462 0.0868428 0.982216 -0.166462 0.143198 0.950869 -0.274485 0.143199 0.950869 -0.274485 0.197271 0.904489 -0.378132 0.197271 0.904489 -0.378132 0.248204 0.843829 -0.47576 0.0217302 0.998019 -0.0590479 0.0648433 0.982216 -0.1762 0.0648432 0.982216 -0.1762 0.106922 0.950869 -0.290543 0.106922 0.950869 -0.290543 0.147297 0.904489 -0.400254 0.147297 0.904489 -0.400254 0.185327 0.843829 -0.503594 0.185327 0.843829 -0.503594 0.220413 0.769869 -0.598933 0.0140009 0.998019 -0.0613419 0.0417789 0.982216 -0.183045 0.041779 0.982216 -0.183045 0.0688909 0.950869 -0.30183 0.0688908 0.950869 -0.30183 0.0949045 0.904489 -0.415804 0.0949044 0.904489 -0.415804 0.119407 0.843829 -0.523158 0.119408 0.843829 -0.523158 0.142013 0.769869 -0.622201 0.142013 0.769869 -0.622201 0.162367 0.683799 -0.711376 0.00604172 0.998019 -0.0626287 0.0180286 0.982216 -0.186885 0.0180287 0.982216 -0.186885 0.0297281 0.950869 -0.308162 0.029728 0.950869 -0.308162 0.0409535 0.904489 -0.424526 0.0409537 0.904489 -0.424526 0.0515273 0.843829 -0.534133 0.0515272 0.843829 -0.534133 0.0612822 0.769869 -0.635253 0.0612822 0.769869 -0.635253 0.0700653 0.683799 -0.726299 0.0700652 0.683799 -0.726299 0.0777394 0.586994 -0.80585 -0.00201666 0.998019 -0.0628871 -0.58157 0.586994 0.563219 -0.00601774 0.982216 -0.187656 -0.00601783 0.982216 -0.187656 -0.00992303 0.950869 -0.309434 -0.00992298 0.950869 -0.309434 -0.01367 0.904489 -0.426278 -0.0136698 0.904489 -0.426278 -0.0171991 0.843829 -0.536337 -0.0171992 0.843829 -0.536337 -0.0204553 0.769869 -0.637874 -0.0204552 0.769869 -0.637874 -0.0233869 0.683799 -0.729296 -0.0233868 0.683799 -0.729296 -0.0259484 0.586994 -0.809175 -0.0259483 0.586994 -0.809175 -0.0281 0.480993 -0.876274 -0.0100419 0.998019 -0.062113 -0.546629 0.480993 0.685451 -0.0299653 0.982216 -0.185346 -0.0299653 0.982216 -0.185346 -0.0494109 0.950869 -0.305624 -0.0494109 0.950869 -0.305624 -0.0680688 0.904489 -0.42103 -0.068069 0.904489 -0.42103 -0.0856434 0.843829 -0.529734 -0.0856435 0.843829 -0.529734 -0.101857 0.769869 -0.630021 -0.101857 0.769869 -0.630022 -0.116456 0.683799 -0.720318 -0.116455 0.683799 -0.720318 -0.129211 0.586994 -0.799214 -0.129211 0.586994 -0.799214 -0.139925 0.480993 -0.865486 -0.139925 0.480993 -0.865487 -0.148434 0.367471 -0.918114 -0.0179024 0.998019 -0.0603189 -0.482123 0.36747 0.795313 -0.0534209 0.982216 -0.179993 -0.0534209 0.982216 -0.179993 -0.0880878 0.950869 -0.296796 -0.0880877 0.950869 -0.296797 -0.12135 0.904489 -0.408869 -0.12135 0.904489 -0.408869 -0.152681 0.843829 -0.514433 -0.152681 0.843829 -0.514433 -0.181586 0.769869 -0.611824 -0.181586 0.769869 -0.611824 -0.207611 0.683799 -0.699512 -0.207611 0.683799 -0.699512 -0.230351 0.586994 -0.776129 -0.230351 0.586994 -0.776129 -0.249452 0.480993 -0.840488 -0.249452 0.480993 -0.840488 -0.26462 0.367471 -0.891595 -0.26462 0.367471 -0.891595 -0.275623 0.24821 -0.928668 -0.0254687 0.998019 -0.0575344 -0.392116 0.24821 0.885797 -0.0759992 0.982216 -0.171684 -0.0759991 0.982216 -0.171684 -0.125318 0.950869 -0.283096 -0.125318 0.950869 -0.283095 -0.172639 0.904489 -0.389994 -0.172639 0.904489 -0.389994 -0.217212 0.843829 -0.490685 -0.217212 0.843829 -0.490685 -0.258334 0.769869 -0.58358 -0.258334 0.769869 -0.58358 -0.295359 0.683799 -0.66722 -0.295359 0.683799 -0.66722 -0.327709 0.586994 -0.740301 -0.327709 0.586994 -0.7403 -0.354884 0.480993 -0.801688 -0.354884 0.480993 -0.801688 -0.376463 0.367471 -0.850436 -0.376463 0.367471 -0.850436 -0.392116 0.24821 -0.885797 -0.392116 0.24821 -0.885797 -0.401604 0.125079 -0.907232 -0.032617 0.998019 -0.0538051 -0.282293 0.12508 0.951139 -0.0973296 0.982216 -0.160556 -0.0973297 0.982216 -0.160555 -0.160491 0.950869 -0.264746 -0.160491 0.950869 -0.264746 -0.221093 0.904489 -0.364716 -0.221093 0.904489 -0.364716 -0.278176 0.843829 -0.45888 -0.278176 0.843829 -0.45888 -0.330839 0.769869 -0.545754 -0.330839 0.769869 -0.545754 -0.378256 0.683799 -0.623973 -0.378256 0.683799 -0.623973 -0.419686 0.586994 -0.692316 -0.419686 0.586994 -0.692316 -0.454487 0.480993 -0.749725 -0.454487 0.480993 -0.749725 -0.482123 0.36747 -0.795313 -0.482123 0.367471 -0.795313 -0.50217 0.248211 -0.828382 -0.50217 0.24821 -0.828382 -0.514321 0.12508 -0.848427 -0.514321 0.125079 -0.848427 -0.518392 0 -0.855143 -0.0392297 0.998019 -0.0491924 -0.1596 0 0.987182 -0.117062 0.982216 -0.146791 -0.117062 0.982216 -0.146791 -0.193028 0.950869 -0.242049 -0.193028 0.950869 -0.242049 -0.265916 0.904489 -0.333449 -0.265916 0.904489 -0.333449 -0.334572 0.843829 -0.41954 -0.334572 0.843829 -0.41954 -0.397913 0.769869 -0.498967 -0.397913 0.769869 -0.498967 -0.454942 0.683799 -0.570479 -0.454942 0.683799 -0.57048 -0.504772 0.586994 -0.632964 -0.504772 0.586994 -0.632964 -0.546629 0.480993 -0.685451 -0.546629 0.480993 -0.685451 -0.579868 0.367471 -0.727131 -0.579867 0.36747 -0.727131 -0.603978 0.24821 -0.757365 -0.603979 0.248211 -0.757365 -0.618594 0.12508 -0.775691 -0.618594 0.12508 -0.775691 -0.62349 0 -0.781831 -0.62349 0 -0.781831 -0.618594 -0.12508 -0.775691 -0.0451982 0.998019 -0.043772 -0.0318002 -0.12508 0.991637 -0.134872 0.982216 -0.130616 -0.134872 0.982216 -0.130616 -0.222396 0.950869 -0.215378 -0.222396 0.950869 -0.215378 -0.306374 0.904489 -0.296706 -0.306374 0.904489 -0.296706 -0.385475 0.843829 -0.373312 -0.385475 0.843829 -0.373312 -0.458452 0.769869 -0.443986 -0.458452 0.769869 -0.443986 -0.524158 0.683799 -0.50762 -0.524158 0.683799 -0.507619 -0.581569 0.586994 -0.563219 -0.581569 0.586994 -0.563218 -0.629795 0.480993 -0.609922 -0.629794 0.480993 -0.609922 -0.66809 0.36747 -0.647009 -0.66809 0.367471 -0.647009 -0.69587 0.248211 -0.673912 -0.695869 0.24821 -0.673912 -0.712708 0.12508 -0.690219 -0.712708 0.12508 -0.690219 -0.718349 0 -0.695683 -0.718349 0 -0.695683 -0.712708 -0.12508 -0.690219 -0.712708 -0.12508 -0.690219 -0.695869 -0.248211 -0.673912 -0.0504245 0.998019 -0.0376328 0.0930184 -0.24821 0.96423 -0.150468 0.982216 -0.112297 -0.150468 0.982216 -0.112297 -0.248112 0.950869 -0.185171 -0.248112 0.950869 -0.185171 -0.3418 0.904489 -0.255092 -0.3418 0.904489 -0.255092 -0.430048 0.843829 -0.320954 -0.430048 0.843829 -0.320953 -0.511464 0.769869 -0.381715 -0.511464 0.769869 -0.381715 -0.584768 0.683799 -0.436423 -0.584768 0.683799 -0.436424 -0.648818 0.586994 -0.484225 -0.648818 0.586994 -0.484225 -0.702619 0.480993 -0.524378 -0.702619 0.480993 -0.524378 -0.745343 0.36747 -0.556264 -0.745343 0.36747 -0.556264 -0.776334 0.24821 -0.579394 -0.776334 0.248211 -0.579393 -0.79512 0.12508 -0.593413 -0.79512 0.12508 -0.593413 -0.801414 0 -0.59811 -0.801414 0 -0.59811 -0.79512 -0.12508 -0.593413 -0.79512 -0.12508 -0.593413 -0.776335 -0.24821 -0.579393 -0.776334 -0.248211 -0.579394 -0.745343 -0.36747 -0.556264 -0.0548229 0.998019 -0.0308757 0.206952 -0.36747 0.906717 -0.163593 0.982216 -0.0921336 -0.163593 0.982216 -0.0921336 -0.269754 0.950869 -0.151923 -0.269754 0.950869 -0.151923 -0.371615 0.904489 -0.209289 -0.371615 0.904489 -0.209289 -0.46756 0.843829 -0.263325 -0.46756 0.843829 -0.263325 -0.556078 0.769869 -0.313177 -0.556078 0.769869 -0.313177 -0.635776 0.683799 -0.358062 -0.635776 0.683799 -0.358062 -0.705412 0.586994 -0.397281 -0.705412 0.586994 -0.397281 -0.763906 0.480993 -0.430224 -0.763906 0.480993 -0.430224 -0.810357 0.36747 -0.456385 -0.810357 0.36747 -0.456384 -0.844052 0.248211 -0.475361 -0.844052 0.24821 -0.475361 -0.864476 0.12508 -0.486864 -0.864476 0.12508 -0.486864 -0.871319 0 -0.490718 -0.871319 0 -0.490718 -0.864476 -0.12508 -0.486864 -0.864476 -0.12508 -0.486864 -0.844052 -0.248211 -0.475361 -0.844052 -0.24821 -0.475361 -0.810357 -0.36747 -0.456384 -0.810357 -0.36747 -0.456385 -0.763906 -0.480993 -0.430224 -0.0583211 0.998019 -0.0236116 0.30279 -0.480993 0.822778 -0.174031 0.982216 -0.0704575 -0.174031 0.982216 -0.0704574 -0.286967 0.950869 -0.11618 -0.286967 0.950869 -0.11618 -0.395327 0.904489 -0.16005 -0.395327 0.904489 -0.16005 -0.497395 0.843829 -0.201373 -0.497395 0.843829 -0.201373 -0.59156 0.769869 -0.239496 -0.59156 0.769869 -0.239496 -0.676344 0.683799 -0.273821 -0.676344 0.683799 -0.273821 -0.750424 0.586994 -0.303813 -0.750424 0.586994 -0.303813 -0.812651 0.480993 -0.329005 -0.812651 0.480993 -0.329005 -0.862065 0.36747 -0.349011 -0.862065 0.36747 -0.349012 -0.89791 0.24821 -0.363524 -0.89791 0.248211 -0.363523 -0.919637 0.12508 -0.37232 -0.919637 0.12508 -0.37232 -0.926917 0 -0.375267 -0.926917 0 -0.375267 -0.919637 -0.12508 -0.37232 -0.919637 -0.12508 -0.37232 -0.89791 -0.24821 -0.363523 -0.89791 -0.248211 -0.363523 -0.862065 -0.36747 -0.349012 -0.862065 -0.36747 -0.349011 -0.812651 -0.480993 -0.329005 -0.812651 -0.480993 -0.329005 -0.750424 -0.586994 -0.303813 -0.0608617 0.998019 -0.0159598 0.374467 -0.586994 0.717783 -0.181612 0.982216 -0.0476243 -0.181612 0.982216 -0.0476244 -0.299467 0.950869 -0.0785296 -0.299467 0.950869 -0.0785296 -0.412548 0.904489 -0.108183 -0.412548 0.904489 -0.108183 -0.519062 0.843829 -0.136114 -0.519062 0.843829 -0.136114 -0.61733 0.769869 -0.161883 -0.61733 0.769869 -0.161883 -0.705807 0.683799 -0.185084 -0.705807 0.683799 -0.185085 -0.783114 0.586994 -0.205357 -0.783114 0.586994 -0.205357 -0.848051 0.480993 -0.222385 -0.848051 0.480993 -0.222385 -0.899618 0.367471 -0.235908 -0.899618 0.36747 -0.235908 -0.937024 0.24821 -0.245717 -0.937024 0.24821 -0.245717 -0.959698 0.12508 -0.251663 -0.959698 0.12508 -0.251663 -0.967295 0 -0.253655 -0.967295 0 -0.253655 -0.959698 -0.12508 -0.251663 -0.959698 -0.12508 -0.251663 -0.937025 -0.24821 -0.245717 -0.937024 -0.24821 -0.245717 -0.899618 -0.367471 -0.235908 -0.899618 -0.36747 -0.235908 -0.848051 -0.480993 -0.222385 -0.848051 -0.480993 -0.222385 -0.783114 -0.586994 -0.205357 -0.783113 -0.586994 -0.205357 -0.705807 -0.683799 -0.185085 -0.0624029 0.998019 -0.00804597 0.417457 -0.683799 0.598456 -0.186211 0.982216 -0.0240093 -0.186211 0.982216 -0.0240093 -0.307051 0.950869 -0.0395899 -0.307051 0.950869 -0.0395898 -0.422995 0.904489 -0.0545392 -0.422995 0.904489 -0.0545392 -0.532207 0.843829 -0.0686204 -0.532207 0.843829 -0.0686205 -0.632963 0.769869 -0.0816116 -0.632963 0.769869 -0.0816113 -0.72368 0.683799 -0.093308 -0.72368 0.683799 -0.0933081 -0.802945 0.586994 -0.103528 -0.802945 0.586994 -0.103528 -0.869526 0.480993 -0.112113 -0.869527 0.480993 -0.112113 -0.9224 0.36747 -0.118931 -0.9224 0.367471 -0.11893 -0.960753 0.248211 -0.123875 -0.960753 0.24821 -0.123876 -0.984001 0.12508 -0.126873 -0.984001 0.12508 -0.126873 -0.99179 0 -0.127877 -0.99179 0 -0.127877 -0.984001 -0.12508 -0.126873 -0.984001 -0.12508 -0.126873 -0.960753 -0.248211 -0.123876 -0.960753 -0.24821 -0.123875 -0.9224 -0.36747 -0.11893 -0.922399 -0.367471 -0.118931 -0.869526 -0.480993 -0.112113 -0.869527 -0.480993 -0.112113 -0.802945 -0.586994 -0.103528 -0.802945 -0.586994 -0.103528 -0.72368 -0.683799 -0.0933081 -0.72368 -0.683799 -0.093308 -0.632963 -0.769869 -0.0816114 -0.0629195 0.998019 0 0.429064 -0.769869 0.472447 -0.187753 0.982216 0 -0.187753 0.982216 0 -0.309593 0.950869 0 -0.309593 0.950869 0 -0.426497 0.904489 0 -0.426497 0.904489 0 -0.536612 0.843829 0 -0.536612 0.843829 0 -0.638202 0.769869 0 -0.638202 0.769869 0 -0.729671 0.683799 0 -0.729671 0.683799 0 -0.809591 0.586994 0 -0.809591 0.586994 0 -0.876724 0.480993 0 -0.876724 0.480993 0 -0.930035 0.36747 0 -0.930035 0.36747 0 -0.968706 0.248211 0 -0.968706 0.248211 0 -0.992147 0.12508 0 -0.992147 0.12508 0 -1 0 0 -1 0 0 -0.992147 -0.12508 0 -0.992147 -0.12508 0 -0.968706 -0.248211 0 -0.968706 -0.248211 0 -0.930035 -0.36747 0 -0.930035 -0.36747 0 -0.876724 -0.480993 0 -0.876724 -0.480993 0 -0.809591 -0.586994 0 -0.809591 -0.586994 0 -0.729671 -0.683799 0 -0.729671 -0.683799 0 -0.638202 -0.769869 0 -0.638202 -0.769869 0 -0.536612 -0.843829 0 -0.0624029 0.998019 0.00804597 0.408601 -0.843829 0.347847 -0.186211 0.982216 0.0240093 -0.186211 0.982216 0.0240093 -0.307051 0.950869 0.0395899 -0.307051 0.950869 0.0395898 -0.422995 0.904489 0.0545392 -0.422995 0.904489 0.0545392 -0.532207 0.843829 0.0686204 -0.532207 0.843829 0.0686205 -0.632963 0.769869 0.0816116 -0.632963 0.769869 0.0816113 -0.72368 0.683799 0.093308 -0.72368 0.683799 0.0933081 -0.802945 0.586994 0.103528 -0.802945 0.586994 0.103528 -0.869527 0.480993 0.112113 -0.869526 0.480993 0.112113 -0.922399 0.367471 0.118931 -0.9224 0.36747 0.11893 -0.960753 0.24821 0.123875 -0.960753 0.248211 0.123876 -0.984001 0.12508 0.126873 -0.984001 0.12508 0.126873 -0.99179 0 0.127877 -0.99179 0 0.127877 -0.984001 -0.12508 0.126873 -0.984001 -0.12508 0.126873 -0.960753 -0.24821 0.123876 -0.960753 -0.248211 0.123875 -0.9224 -0.367471 0.11893 -0.9224 -0.36747 0.118931 -0.869527 -0.480993 0.112113 -0.869526 -0.480993 0.112113 -0.802945 -0.586994 0.103528 -0.802945 -0.586994 0.103528 -0.72368 -0.683799 0.0933081 -0.72368 -0.683799 0.093308 -0.632963 -0.769869 0.0816113 -0.632963 -0.769869 0.0816116 -0.532207 -0.843829 0.0686205 -0.532207 -0.843829 0.0686204 -0.422995 -0.904489 0.0545392 -0.0608617 0.998019 0.0159598 0.357442 -0.904489 0.232669 -0.181612 0.982216 0.0476243 -0.181612 0.982216 0.0476244 -0.299467 0.950869 0.0785296 -0.299467 0.950869 0.0785296 -0.412548 0.904489 0.108183 -0.412548 0.904489 0.108183 -0.519062 0.843829 0.136114 -0.519062 0.843829 0.136114 -0.61733 0.769869 0.161883 -0.61733 0.769869 0.161883 -0.705807 0.683799 0.185084 -0.705807 0.683799 0.185085 -0.783113 0.586994 0.205357 -0.783114 0.586994 0.205357 -0.848051 0.480993 0.222385 -0.848051 0.480993 0.222385 -0.899618 0.36747 0.235908 -0.899618 0.367471 0.235908 -0.937024 0.24821 0.245717 -0.937025 0.24821 0.245717 -0.959698 0.12508 0.251663 -0.959698 0.12508 0.251663 -0.967295 0 0.253655 -0.967295 0 0.253655 -0.959698 -0.12508 0.251663 -0.959698 -0.12508 0.251663 -0.937024 -0.24821 0.245717 -0.937024 -0.24821 0.245717 -0.899618 -0.36747 0.235908 -0.899618 -0.367471 0.235908 -0.848051 -0.480993 0.222385 -0.848051 -0.480993 0.222385 -0.783114 -0.586994 0.205357 -0.783114 -0.586994 0.205357 -0.705807 -0.683799 0.185085 -0.705807 -0.683799 0.185084 -0.61733 -0.769869 0.161883 -0.61733 -0.769869 0.161883 -0.519062 -0.843829 0.136114 -0.519062 -0.843829 0.136114 -0.412548 -0.904489 0.108183 -0.412548 -0.904489 0.108183 -0.299467 -0.950869 0.0785296 -0.0583211 0.998019 0.0236116 0.278933 -0.950869 0.134327 -0.458452 0.769869 0.443986 -0.524158 0.683799 0.507619 -0.454942 0.683799 0.57048 -0.504772 0.586994 0.632964 -0.419686 0.586994 0.692316 -0.454487 0.480993 0.749725 -0.354884 0.480993 0.801688 -0.376463 0.367471 0.850436 -0.26462 0.367471 0.891595 -0.275623 0.248211 0.928667 -0.154605 0.248211 0.956289 -0.158346 0.12508 0.979429 -0.0318001 0.12508 0.991637 -0.0320518 0 0.999486 0.0960236 0 0.995379 0.0952695 -0.12508 0.987562 0.220773 -0.12508 0.967272 0.215557 -0.24821 0.944419 0.334557 -0.24821 0.9091 0.321201 -0.36747 0.872809 0.430177 -0.36747 0.824569 0.405519 -0.480993 0.777303 0.501589 -0.480993 0.719065 0.463181 -0.586994 0.664004 0.544289 -0.586994 0.599323 0.490558 -0.683799 0.540159 0.555605 -0.683799 0.472993 0.485956 -0.769869 0.413701 0.53487 -0.769869 0.348162 0.449728 -0.843829 0.292741 0.483471 -0.843829 0.232827 0.38426 -0.904489 0.18505 0.404769 -0.904489 0.134393 0.293821 -0.950869 0.0975553 0.303883 -0.950869 0.0591812 0.184291 -0.982216 0.0358905 0.187367 -0.982216 0.0120293 0.178188 -0.982216 0.0591625 0.169159 -0.982216 0.0814629 0.169159 -0.982216 0.0814629 0.0566885 -0.998019 0.0272997 0.259466 -0.950869 0.168894 0.259466 -0.950869 0.168894 0.157353 -0.982216 0.102426 0.157353 -0.982216 0.102426 0.0527321 -0.998019 0.0343248 0.324754 -0.904489 0.276467 0.324754 -0.904489 0.276467 0.235738 -0.950869 0.200687 0.235738 -0.950869 0.200687 0.142964 -0.982216 0.121707 0.142964 -0.982216 0.121707 0.0479098 -0.998019 0.0407862 0.360765 -0.843829 0.397242 0.360765 -0.843829 0.397242 0.286734 -0.904489 0.315726 0.286734 -0.904489 0.315726 0.208139 -0.950869 0.229185 0.208139 -0.950869 0.229185 0.126226 -0.982216 0.138989 0.126226 -0.982216 0.138989 0.0423008 -0.998019 0.0465779 0.365126 -0.769869 0.523436 0.365126 -0.769869 0.523436 0.307005 -0.843829 0.440115 0.307005 -0.843829 0.440115 0.244006 -0.904489 0.349801 0.244006 -0.904489 0.349801 0.177123 -0.950869 0.253919 0.177123 -0.950869 0.253919 0.107417 -0.982216 0.15399 0.107417 -0.982216 0.15399 0.0359973 -0.998019 0.0516048 0.337501 -0.683799 0.646926 0.337501 -0.683799 0.646926 0.295193 -0.769869 0.56583 0.295193 -0.769869 0.56583 0.248204 -0.843829 0.47576 0.248204 -0.843829 0.47576 0.197271 -0.904489 0.378132 0.197271 -0.904489 0.378132 0.143199 -0.950869 0.274485 0.143198 -0.950869 0.274485 0.0868428 -0.982216 0.166462 0.0868428 -0.982216 0.166462 0.0291026 -0.998019 0.0557844 0.279604 -0.586994 0.759776 0.279604 -0.586994 0.759776 0.252003 -0.683799 0.684773 0.252003 -0.683799 0.684773 0.220413 -0.769869 0.598933 0.220413 -0.769869 0.598933 0.185327 -0.843829 0.503594 0.185327 -0.843829 0.503594 0.147297 -0.904489 0.400254 0.147297 -0.904489 0.400254 0.106922 -0.950869 0.290543 0.106922 -0.950869 0.290543 0.0648432 -0.982216 0.1762 0.0648433 -0.982216 0.1762 0.0217302 -0.998019 0.0590479 0.195089 -0.480993 0.854743 0.195089 -0.480993 0.854743 0.180151 -0.586994 0.789293 0.180151 -0.586994 0.789293 0.162367 -0.683799 0.711376 0.162367 -0.683799 0.711376 0.142013 -0.769869 0.622201 0.142013 -0.769869 0.622201 0.119408 -0.843829 0.523158 0.119407 -0.843829 0.523158 0.0949044 -0.904489 0.415804 0.0949045 -0.904489 0.415804 0.0688909 -0.950869 0.30183 0.0688909 -0.950869 0.30183 0.041779 -0.982216 0.183045 0.0417789 -0.982216 0.183045 0.0140009 -0.998019 0.0613419 0.0893051 -0.36747 0.925738 0.0893049 -0.36747 0.925738 0.0841859 -0.480993 0.872673 0.0841859 -0.480993 0.872673 0.0777396 -0.586994 0.80585 0.0777394 -0.586994 0.80585 0.0700652 -0.683799 0.726299 0.0700653 -0.683799 0.726299 0.0612822 -0.769869 0.635253 0.0612822 -0.769869 0.635253 0.0515272 -0.843829 0.534133 0.0515273 -0.843829 0.534133 0.0409537 -0.904489 0.424526 0.0409535 -0.904489 0.424526 0.029728 -0.950869 0.308162 0.0297281 -0.950869 0.308162 0.0180287 -0.982216 0.186885 0.0180286 -0.982216 0.186885 0.00604172 -0.998019 0.0626287 -0.0310489 -0.24821 0.968208 -0.0310484 -0.24821 0.968209 -0.0298089 -0.36747 0.929557 -0.0298094 -0.367471 0.929557 -0.0281007 -0.480993 0.876274 -0.0281 -0.480993 0.876274 -0.0259483 -0.586994 0.809175 -0.0259484 -0.586994 0.809175 -0.0233868 -0.683799 0.729296 -0.0233869 -0.683799 0.729296 -0.0204552 -0.769869 0.637874 -0.0204553 -0.769869 0.637874 -0.0171992 -0.843829 0.536337 -0.0171991 -0.843829 0.536337 -0.0136698 -0.904489 0.426278 -0.01367 -0.904489 0.426278 -0.00992298 -0.950869 0.309434 -0.00992303 -0.950869 0.309434 -0.00601783 -0.982216 0.187656 -0.00601774 -0.982216 0.187656 -0.00201666 -0.998019 0.0628871 -0.158347 -0.12508 0.979429 -0.158346 -0.12508 0.979429 -0.154605 -0.24821 0.956289 -0.154606 -0.248211 0.956289 -0.148434 -0.367471 0.918114 -0.148434 -0.367471 0.918114 -0.139925 -0.480993 0.865487 -0.139925 -0.480993 0.865486 -0.129211 -0.586994 0.799214 -0.129211 -0.586994 0.799214 -0.116455 -0.683799 0.720318 -0.116456 -0.683799 0.720318 -0.101857 -0.769869 0.630022 -0.101857 -0.769869 0.630021 -0.0856435 -0.843829 0.529734 -0.0856434 -0.843829 0.529734 -0.068069 -0.904489 0.42103 -0.0680688 -0.904489 0.42103 -0.0494109 -0.950869 0.305624 -0.0494109 -0.950869 0.305624 -0.0299653 -0.982216 0.185346 -0.0299653 -0.982216 0.185346 -0.0100419 -0.998019 0.062113 -0.284527 0 0.958668 -0.284527 0 0.958668 -0.282293 -0.12508 0.951139 -0.282293 -0.12508 0.951139 -0.275624 -0.24821 0.928667 -0.275623 -0.24821 0.928668 -0.26462 -0.367471 0.891595 -0.26462 -0.367471 0.891595 -0.249452 -0.480993 0.840488 -0.249452 -0.480993 0.840488 -0.230351 -0.586994 0.776129 -0.230351 -0.586994 0.776129 -0.207611 -0.683799 0.699512 -0.207611 -0.683799 0.699512 -0.181586 -0.769869 0.611824 -0.181586 -0.769869 0.611824 -0.152681 -0.843829 0.514433 -0.152681 -0.843829 0.514433 -0.12135 -0.904489 0.408869 -0.12135 -0.904489 0.408869 -0.0880877 -0.950869 0.296797 -0.0880878 -0.950869 0.296796 -0.0534209 -0.982216 0.179993 -0.0534209 -0.982216 0.179993 -0.0179023 -0.998019 0.0603189 -0.401604 0.12508 0.907232 -0.401605 0.125079 0.907231 -0.404784 0 0.914412 -0.404784 0 0.914412 -0.401605 -0.12508 0.907231 -0.401604 -0.125079 0.907232 -0.392116 -0.24821 0.885797 -0.392116 -0.24821 0.885797 -0.376463 -0.367471 0.850436 -0.376463 -0.367471 0.850436 -0.354884 -0.480993 0.801688 -0.354884 -0.480993 0.801688 -0.327709 -0.586994 0.7403 -0.327709 -0.586994 0.740301 -0.295359 -0.683799 0.66722 -0.295359 -0.683799 0.66722 -0.258334 -0.769869 0.58358 -0.258334 -0.769869 0.58358 -0.217212 -0.843829 0.490685 -0.217212 -0.843829 0.490685 -0.172639 -0.904489 0.389994 -0.172639 -0.904489 0.389994 -0.125318 -0.950869 0.283095 -0.125318 -0.950869 0.283096 -0.0759991 -0.982216 0.171684 -0.0759992 -0.982216 0.171684 -0.0254687 -0.998019 0.0575344 -0.50217 0.24821 0.828382 -0.50217 0.248211 0.828382 -0.514321 0.125079 0.848427 -0.514321 0.12508 0.848427 -0.518392 0 0.855143 -0.518392 0 0.855143 -0.514321 -0.125079 0.848427 -0.514321 -0.12508 0.848427 -0.50217 -0.24821 0.828382 -0.50217 -0.248211 0.828382 -0.482123 -0.367471 0.795313 -0.482123 -0.36747 0.795313 -0.454487 -0.480993 0.749725 -0.454487 -0.480993 0.749725 -0.419686 -0.586994 0.692316 -0.419686 -0.586994 0.692316 -0.378256 -0.683799 0.623973 -0.378256 -0.683799 0.623973 -0.330839 -0.769869 0.545754 -0.330839 -0.769869 0.545754 -0.278176 -0.843829 0.45888 -0.278176 -0.843829 0.45888 -0.221093 -0.904489 0.364716 -0.221093 -0.904489 0.364716 -0.160491 -0.950869 0.264746 -0.160491 -0.950869 0.264746 -0.0973297 -0.982216 0.160555 -0.0973296 -0.982216 0.160556 -0.032617 -0.998019 0.0538051 -0.579868 0.36747 0.727131 -0.579867 0.367471 0.727131 -0.603978 0.248211 0.757365 -0.603979 0.24821 0.757365 -0.618594 0.12508 0.775691 -0.618594 0.12508 0.775691 -0.62349 0 0.781831 -0.62349 0 0.781831 -0.618594 -0.12508 0.775691 -0.618594 -0.12508 0.775691 -0.603979 -0.248211 0.757365 -0.603978 -0.24821 0.757365 -0.579867 -0.36747 0.727131 -0.579868 -0.367471 0.727131 -0.546629 -0.480993 0.685451 -0.546629 -0.480993 0.685451 -0.504772 -0.586994 0.632964 -0.504772 -0.586994 0.632964 -0.454942 -0.683799 0.57048 -0.454942 -0.683799 0.570479 -0.397913 -0.769869 0.498967 -0.397913 -0.769869 0.498967 -0.334572 -0.843829 0.41954 -0.334572 -0.843829 0.41954 -0.265916 -0.904489 0.333449 -0.265916 -0.904489 0.333449 -0.193028 -0.950869 0.242049 -0.193028 -0.950869 0.242049 -0.117062 -0.982216 0.146791 -0.117062 -0.982216 0.146791 -0.0392297 -0.998019 0.0491924 -0.629795 0.480993 0.609922 -0.629794 0.480993 0.609922 -0.66809 0.367471 0.647009 -0.66809 0.36747 0.647009 -0.69587 0.24821 0.673912 -0.695869 0.248211 0.673912 -0.712708 0.12508 0.690219 -0.712708 0.12508 0.690219 -0.718349 0 0.695683 -0.718349 0 0.695683 -0.712708 -0.12508 0.690219 -0.712708 -0.12508 0.690219 -0.695869 -0.24821 0.673912 -0.69587 -0.248211 0.673912 -0.66809 -0.367471 0.647009 -0.66809 -0.367471 0.647009 -0.629794 -0.480993 0.609922 -0.629795 -0.480993 0.609922 -0.581569 -0.586994 0.563218 -0.581569 -0.586994 0.563219 -0.524158 -0.683799 0.507619 -0.524158 -0.683799 0.50762 -0.458452 -0.769869 0.443986 -0.458452 -0.769869 0.443986 -0.385475 -0.843829 0.373312 -0.385475 -0.843829 0.373312 -0.306374 -0.904489 0.296706 -0.306374 -0.904489 0.296706 -0.222396 -0.950869 0.215378 -0.222396 -0.950869 0.215378 -0.134872 -0.982216 0.130616 -0.134872 -0.982216 0.130616 -0.0451982 -0.998019 0.043772 -0.163593 0.982216 0.0921336 -0.163593 0.982216 0.0921336 -0.269754 0.950869 0.151923 -0.269754 0.950869 0.151923 -0.371615 0.904489 0.209289 -0.371615 0.904489 0.209289 -0.46756 0.843829 0.263325 -0.46756 0.843829 0.263325 -0.556077 0.769869 0.313177 -0.556078 0.769869 0.313177 -0.635776 0.683799 0.358062 -0.635776 0.683799 0.358062 -0.705412 0.586994 0.397281 -0.705412 0.586994 0.397281 -0.763906 0.480993 0.430224 -0.763906 0.480993 0.430224 -0.810357 0.367471 0.456385 -0.810357 0.36747 0.456384 -0.844052 0.24821 0.475361 -0.844052 0.248211 0.475361 -0.864476 0.12508 0.486864 -0.864476 0.12508 0.486864 -0.871319 0 0.490718 -0.871319 0 0.490718 -0.864476 -0.12508 0.486864 -0.864476 -0.12508 0.486864 -0.844052 -0.24821 0.475361 -0.844052 -0.248211 0.475361 -0.810357 -0.36747 0.456384 -0.810357 -0.36747 0.456385 -0.763906 -0.480993 0.430224 -0.763906 -0.480993 0.430224 -0.705412 -0.586994 0.397281 -0.705412 -0.586994 0.397281 -0.635776 -0.683799 0.358062 -0.635776 -0.683799 0.358062 -0.556078 -0.769869 0.313177 -0.556078 -0.769869 0.313177 -0.46756 -0.843829 0.263325 -0.46756 -0.843829 0.263325 -0.371615 -0.904489 0.209289 -0.371615 -0.904489 0.209289 -0.269754 -0.950869 0.151923 -0.269754 -0.950869 0.151923 -0.163593 -0.982216 0.0921336 -0.163593 -0.982216 0.0921336 -0.0548229 -0.998019 0.0308757 -0.0608617 -0.998019 0.0159598 -0.181612 -0.982216 0.0476243 -0.186211 -0.982216 0.0240093 -0.307051 -0.950869 0.0395899 -0.309593 -0.950869 0 -0.426497 -0.904489 0 -0.422995 -0.904489 -0.0545392 -0.532207 -0.843829 -0.0686204 -0.519062 -0.843829 -0.136114 -0.61733 -0.769869 -0.161883 -0.59156 -0.769869 -0.239496 -0.676344 -0.683799 -0.273821 -0.635776 -0.683799 -0.358062 -0.705412 -0.586994 -0.397281 -0.648818 -0.586994 -0.484225 -0.702619 -0.480993 -0.524378 -0.629794 -0.480993 -0.609922 -0.66809 -0.367471 -0.647009 -0.579867 -0.367471 -0.727131 -0.603978 -0.248211 -0.757365 -0.50217 -0.248211 -0.828382 -0.514321 -0.125079 -0.848427 -0.401605 -0.125079 -0.907231 -0.404784 0 -0.914412 -0.284527 0 -0.958668 -0.282293 0.12508 -0.951139 -0.158346 0.12508 -0.979429 -0.154605 0.24821 -0.956289 -0.0310484 0.24821 -0.968209 -0.0298089 0.36747 -0.929557 0.0893049 0.36747 -0.925738 0.0841859 0.480993 -0.872673 0.195089 0.480993 -0.854743 0.180151 0.586994 -0.789293 0.279604 0.586994 -0.759776 0.252003 0.683799 -0.684773 0.337501 0.683799 -0.646926 0.295193 0.769869 -0.56583 0.365126 0.769869 -0.523436 0.307005 0.843829 -0.440115 0.360765 0.843829 -0.397242 0.286734 0.904489 -0.315726 0.324754 0.904489 -0.276467 0.235738 0.950869 -0.200687 0.259466 0.950869 -0.168894 0.157353 0.982216 -0.102426 0.169159 0.982216 -0.0814629 0.0566885 0.998019 -0.0272997 -0.0629195 -0.998019 0 -0.187753 -0.982216 0 -0.186211 -0.982216 -0.0240093 -0.307051 -0.950869 -0.0395899 -0.299467 -0.950869 -0.0785296 -0.412548 -0.904489 -0.108183 -0.395327 -0.904489 -0.16005 -0.497395 -0.843829 -0.201373 -0.46756 -0.843829 -0.263325 -0.556077 -0.769869 -0.313177 -0.511464 -0.769869 -0.381715 -0.584768 -0.683799 -0.436424 -0.524158 -0.683799 -0.507619 -0.581569 -0.586994 -0.563219 -0.504772 -0.586994 -0.632964 -0.546629 -0.480993 -0.685451 -0.454487 -0.480993 -0.749725 -0.482123 -0.367471 -0.795313 -0.376463 -0.367471 -0.850436 -0.392116 -0.24821 -0.885797 -0.275624 -0.24821 -0.928667 -0.282293 -0.12508 -0.951139 -0.158347 -0.12508 -0.979429 -0.1596 0 -0.987182 -0.0320518 0 -0.999486 -0.0318001 0.12508 -0.991637 0.0952692 0.12508 -0.987562 0.0930183 0.24821 -0.96423 0.215557 0.24821 -0.944419 0.206952 0.36747 -0.906717 0.321202 0.36747 -0.872809 0.30279 0.480993 -0.822778 0.405519 0.480993 -0.777303 0.374467 0.586994 -0.717783 0.46318 0.586994 -0.664004 0.417457 0.683799 -0.598456 0.490558 0.683799 -0.540159 0.429064 0.769869 -0.472447 0.485957 0.769869 -0.413701 0.408601 0.843829 -0.347847 0.449728 0.843829 -0.292741 0.357442 0.904489 -0.232669 0.38426 0.904489 -0.18505 0.278933 0.950869 -0.134327 0.293821 0.950869 -0.0975553 0.178188 0.982216 -0.0591625 0.18429 0.982216 -0.0358906 0.0617592 0.998019 -0.0120276 0.0627902 0.998019 -0.00403124 0.187367 0.982216 -0.0120294 0.184291 0.982216 -0.0358905 0.303883 0.950869 -0.0591812 0.293821 0.950869 -0.0975553 0.404769 0.904489 -0.134393 0.38426 0.904489 -0.18505 0.483471 0.843829 -0.232827 0.449728 0.843829 -0.292741 0.53487 0.769869 -0.348162 0.485956 0.769869 -0.413701 0.555605 0.683799 -0.472993 0.490558 0.683799 -0.540159 0.544289 0.586994 -0.599323 0.463181 0.586994 -0.664004 0.501589 0.480993 -0.719065 0.405519 0.480993 -0.777303 0.430177 0.36747 -0.824569 0.321201 0.36747 -0.872809 0.334557 0.24821 -0.9091 0.215557 0.24821 -0.944419 0.220773 0.12508 -0.967272 0.0952695 0.12508 -0.987562 0.0960236 0 -0.995379 -0.0320518 0 -0.999486 -0.0318001 -0.12508 -0.991637 -0.158346 -0.12508 -0.979429 -0.154605 -0.248211 -0.956289 -0.275623 -0.248211 -0.928667 -0.26462 -0.367471 -0.891595 -0.376463 -0.367471 -0.850436 -0.354884 -0.480993 -0.801688 -0.454487 -0.480993 -0.749725 -0.419686 -0.586994 -0.692316 -0.504772 -0.586994 -0.632964 -0.454942 -0.683799 -0.570479 -0.524158 -0.683799 -0.507619 -0.458452 -0.769869 -0.443986 -0.511464 -0.769869 -0.381715 -0.430049 -0.843829 -0.320953 -0.46756 -0.843829 -0.263325 -0.371615 -0.904489 -0.209289 -0.395327 -0.904489 -0.16005 -0.286967 -0.950869 -0.11618 -0.299467 -0.950869 -0.0785296 -0.181612 -0.982216 -0.0476244 -0.186211 -0.982216 -0.0240094 -0.0624029 -0.998019 -0.00804597 0.0627902 0.998019 0.00403124 0.187367 0.982216 0.0120294 0.187367 0.982216 -0.0120293 0.308957 0.950869 -0.0198357 0.303884 0.950869 -0.0591812 0.418632 0.904489 -0.0815284 0.404769 0.904489 -0.134393 0.509275 0.843829 -0.169091 0.483471 0.843829 -0.232827 0.575 0.769869 -0.276905 0.53487 0.769869 -0.348162 0.611529 0.683799 -0.398061 0.555605 0.683799 -0.472993 0.61646 0.586994 -0.5248 0.544289 0.586994 -0.599323 0.589422 0.480993 -0.64902 0.501589 0.480993 -0.719065 0.532089 0.36747 -0.762789 0.430177 0.36747 -0.824569 0.448064 0.24821 -0.858854 0.334557 0.24821 -0.9091 0.342653 0.12508 -0.931098 0.220773 0.12508 -0.967272 0.22252 0 -0.974928 0.0960236 0 -0.995379 0.0952695 -0.12508 -0.987562 -0.0318002 -0.12508 -0.991637 -0.0310489 -0.24821 -0.968209 -0.154606 -0.24821 -0.956289 -0.148434 -0.367471 -0.918114 -0.26462 -0.367471 -0.891595 -0.249452 -0.480993 -0.840488 -0.354884 -0.480993 -0.801688 -0.327709 -0.586994 -0.7403 -0.419686 -0.586994 -0.692316 -0.378256 -0.683799 -0.623973 -0.454942 -0.683799 -0.570479 -0.397913 -0.769869 -0.498967 -0.458452 -0.769869 -0.443986 -0.385475 -0.843829 -0.373312 -0.430048 -0.843829 -0.320954 -0.3418 -0.904489 -0.255092 -0.371615 -0.904489 -0.209289 -0.269754 -0.950869 -0.151923 -0.286967 -0.950869 -0.11618 -0.174031 -0.982216 -0.0704574 -0.181612 -0.982216 -0.0476243 -0.0608617 -0.998019 -0.0159598 0.0617592 0.998019 0.0120276 0.184291 0.982216 0.0358906 0.187367 0.982216 0.0120294 0.308957 0.950869 0.0198357 0.308957 0.950869 -0.0198357 0.42562 0.904489 -0.0273258 0.418632 0.904489 -0.0815284 0.526717 0.843829 -0.102578 0.509275 0.843829 -0.169091 0.605689 0.769869 -0.201103 0.575 0.769869 -0.276906 0.657411 0.683799 -0.316592 0.611528 0.683799 -0.398061 0.678509 0.586994 -0.44166 0.61646 0.586994 -0.5248 0.667578 0.480993 -0.568318 0.589422 0.480993 -0.64902 0.625263 0.367471 -0.688485 0.532088 0.367471 -0.762789 0.554213 0.248211 -0.794506 0.448063 0.248211 -0.858854 0.458905 0.12508 -0.879637 0.342653 0.12508 -0.931098 0.345366 0 -0.938468 0.22252 0 -0.974928 0.220773 -0.12508 -0.967272 0.0952692 -0.12508 -0.987562 0.0930183 -0.24821 -0.96423 -0.0310483 -0.24821 -0.968208 -0.0298089 -0.367471 -0.929557 -0.148434 -0.367471 -0.918114 -0.139925 -0.480993 -0.865487 -0.249452 -0.480993 -0.840488 -0.230351 -0.586994 -0.776129 -0.327709 -0.586994 -0.7403 -0.295359 -0.683799 -0.66722 -0.378256 -0.683799 -0.623973 -0.330839 -0.769869 -0.545754 -0.397913 -0.769869 -0.498967 -0.334572 -0.843829 -0.41954 -0.385475 -0.843829 -0.373312 -0.306374 -0.904489 -0.296706 -0.3418 -0.904489 -0.255092 -0.248112 -0.950869 -0.185171 -0.269754 -0.950869 -0.151923 -0.163593 -0.982216 -0.0921336 -0.174031 -0.982216 -0.0704575 -0.0583211 -0.998019 -0.0236116 0.0597141 0.998019 0.0198265 0.178188 0.982216 0.0591625 0.18429 0.982216 0.0358905 0.303883 0.950869 0.0591812 0.308957 0.950869 0.0198357 0.425621 0.904489 0.0273258 0.425621 0.904489 -0.0273257 0.53551 0.843829 -0.0343808 0.526717 0.843829 -0.102578 0.626433 0.769869 -0.121998 0.60569 0.769869 -0.201103 0.692498 0.683799 -0.229925 0.657411 0.683799 -0.316592 0.729417 0.586994 -0.351268 0.678509 0.586994 -0.44166 0.734772 0.480993 -0.478284 0.667578 0.480993 -0.568318 0.708172 0.36747 -0.602875 0.625264 0.36747 -0.688485 0.651262 0.24821 -0.717112 0.554213 0.24821 -0.794506 0.567624 0.12508 -0.813731 0.458906 0.12508 -0.879637 0.462538 0 -0.886599 0.345366 0 -0.938468 0.342653 -0.12508 -0.931098 0.220773 -0.12508 -0.967271 0.215557 -0.24821 -0.944419 0.0930184 -0.24821 -0.96423 0.0893051 -0.36747 -0.925738 -0.0298094 -0.36747 -0.929557 -0.0281007 -0.480993 -0.876274 -0.139925 -0.480993 -0.865487 -0.129211 -0.586994 -0.799214 -0.230351 -0.586994 -0.776129 -0.207611 -0.683799 -0.699512 -0.295359 -0.683799 -0.66722 -0.258334 -0.769869 -0.58358 -0.330839 -0.769869 -0.545754 -0.278176 -0.843829 -0.45888 -0.334572 -0.843829 -0.41954 -0.265916 -0.904489 -0.333449 -0.306374 -0.904489 -0.296706 -0.222396 -0.950869 -0.215378 -0.248112 -0.950869 -0.185171 -0.150468 -0.982216 -0.112297 -0.163593 -0.982216 -0.0921337 -0.0548229 -0.998019 -0.0308757 0.0566885 0.998019 0.0272998 0.169159 0.982216 0.0814629 0.178188 0.982216 0.0591625 0.293821 0.950869 0.0975553 0.303884 0.950869 0.0591812 0.418632 0.904489 0.0815284 0.425621 0.904489 0.0273257 0.53551 0.843829 0.0343808 0.53551 0.843829 -0.0343808 0.636891 0.769869 -0.0408896 0.626433 0.769869 -0.121998 0.716215 0.683799 -0.139483 0.692498 0.683799 -0.229925 0.768347 0.586994 -0.255109 0.729416 0.586994 -0.351269 0.789901 0.480993 -0.380397 0.734772 0.480993 -0.478284 0.779451 0.36747 -0.507367 0.708172 0.36747 -0.602875 0.737617 0.24821 -0.627943 0.651262 0.24821 -0.717112 0.667021 0.12508 -0.734464 0.567623 0.12508 -0.813731 0.572117 0 -0.820172 0.462538 0 -0.886599 0.458906 -0.12508 -0.879637 0.342653 -0.12508 -0.931098 0.334557 -0.24821 -0.9091 0.215557 -0.24821 -0.944419 0.206952 -0.36747 -0.906717 0.0893049 -0.36747 -0.925738 0.0841859 -0.480993 -0.872673 -0.0281 -0.480993 -0.876274 -0.0259483 -0.586994 -0.809175 -0.129211 -0.586994 -0.799214 -0.116455 -0.683799 -0.720318 -0.207611 -0.683799 -0.699512 -0.181586 -0.769869 -0.611824 -0.258334 -0.769869 -0.58358 -0.217212 -0.843829 -0.490685 -0.278176 -0.843829 -0.45888 -0.221093 -0.904489 -0.364716 -0.265916 -0.904489 -0.333449 -0.193028 -0.950869 -0.242049 -0.222396 -0.950869 -0.215378 -0.134872 -0.982216 -0.130616 -0.150468 -0.982216 -0.112297 -0.0504245 -0.998019 -0.0376328 0.0527321 0.998019 0.0343248 0.157353 0.982216 0.102426 0.169159 0.982216 0.0814628 0.278933 0.950869 0.134327 0.293821 0.950869 0.0975553 0.404769 0.904489 0.134393 0.418632 0.904489 0.0815283 0.526717 0.843829 0.102578 0.53551 0.843829 0.0343808 0.636891 0.769869 0.0408896 0.636891 0.769869 -0.0408897 0.728172 0.683799 -0.0467501 0.716215 0.683799 -0.139483 0.794662 0.586994 -0.15476 0.768348 0.586994 -0.255108 0.832061 0.480993 -0.276262 0.789902 0.480993 -0.380396 0.837933 0.36747 -0.403527 0.779452 0.36747 -0.507367 0.811861 0.24821 -0.528463 0.737617 0.24821 -0.627943 0.755466 0.12508 -0.643138 0.667021 0.12508 -0.734464 0.672301 0 -0.740278 0.572117 0 -0.820172 0.567623 -0.12508 -0.813731 0.458905 -0.12508 -0.879637 0.448063 -0.24821 -0.858855 0.334557 -0.24821 -0.9091 0.321201 -0.36747 -0.872809 0.206952 -0.36747 -0.906717 0.195089 -0.480993 -0.854743 0.0841859 -0.480993 -0.872673 0.0777396 -0.586994 -0.80585 -0.0259484 -0.586994 -0.809175 -0.0233868 -0.683799 -0.729296 -0.116456 -0.683799 -0.720318 -0.101857 -0.769869 -0.630022 -0.181586 -0.769869 -0.611824 -0.152681 -0.843829 -0.514433 -0.217212 -0.843829 -0.490685 -0.172639 -0.904489 -0.389994 -0.221093 -0.904489 -0.364716 -0.160491 -0.950869 -0.264746 -0.193028 -0.950869 -0.242049 -0.117062 -0.982216 -0.146791 -0.134872 -0.982216 -0.130616 -0.0451982 -0.998019 -0.043772 0.0479098 0.998019 0.0407862 0.142964 0.982216 0.121707 0.157353 0.982216 0.102426 0.259466 0.950869 0.168893 0.278933 0.950869 0.134327 0.38426 0.904489 0.18505 0.404769 0.904489 0.134393 0.509275 0.843829 0.169091 0.526717 0.843829 0.102578 0.626433 0.769869 0.121998 0.636891 0.769869 0.0408897 0.728172 0.683799 0.0467501 0.728172 0.683799 -0.0467503 0.807928 0.586994 -0.0518708 0.794662 0.586994 -0.154761 0.860557 0.480994 -0.167594 0.83206 0.480994 -0.276263 0.882655 0.36747 -0.293062 0.837933 0.36747 -0.403527 0.872774 0.248211 -0.420306 0.811861 0.248211 -0.528463 0.831506 0.12508 -0.541251 0.755466 0.12508 -0.643138 0.761446 0 -0.648228 0.672301 0 -0.740278 0.667021 -0.12508 -0.734464 0.567624 -0.12508 -0.813731 0.554213 -0.248211 -0.794506 0.448064 -0.248211 -0.858854 0.430177 -0.36747 -0.824568 0.321202 -0.367471 -0.872809 0.30279 -0.480993 -0.822778 0.195089 -0.480993 -0.854743 0.180151 -0.586994 -0.789293 0.0777393 -0.586994 -0.80585 0.0700652 -0.683799 -0.726299 -0.0233869 -0.683799 -0.729296 -0.0204552 -0.769869 -0.637874 -0.101857 -0.769869 -0.630022 -0.0856435 -0.843829 -0.529734 -0.152681 -0.843829 -0.514433 -0.12135 -0.904489 -0.408869 -0.172639 -0.904489 -0.389994 -0.125318 -0.950869 -0.283095 -0.160491 -0.950869 -0.264746 -0.0973297 -0.982216 -0.160555 -0.117062 -0.982216 -0.146791 -0.0392297 -0.998019 -0.0491924 0.0423008 0.998019 0.0465779 0.126226 0.982216 0.138989 0.142964 0.982216 0.121707 0.235738 0.950869 0.200687 0.259466 0.950869 0.168894 0.357442 0.904489 0.232669 0.38426 0.904489 0.18505 0.483471 0.843829 0.232827 0.509275 0.843829 0.169091 0.60569 0.769869 0.201103 0.626433 0.769869 0.121998 0.716215 0.683799 0.139483 0.728172 0.683799 0.0467503 0.807928 0.586994 0.0518708 0.807928 0.586994 -0.0518708 0.874923 0.480993 -0.056172 0.860557 0.480993 -0.167593 0.912885 0.36747 -0.177784 0.882655 0.36747 -0.293062 0.919356 0.24821 -0.305247 0.872774 0.24821 -0.420306 0.893893 0.12508 -0.430476 0.831506 0.12508 -0.541251 0.838088 0 -0.545535 0.761446 0 -0.648228 0.755466 -0.12508 -0.643138 0.667021 -0.12508 -0.734464 0.651262 -0.24821 -0.717112 0.554213 -0.24821 -0.794506 0.532088 -0.36747 -0.762789 0.430177 -0.36747 -0.824569 0.405519 -0.480993 -0.777303 0.30279 -0.480993 -0.822778 0.279604 -0.586994 -0.759776 0.180151 -0.586994 -0.789293 0.162367 -0.683799 -0.711376 0.0700653 -0.683799 -0.726299 0.0612822 -0.769869 -0.635253 -0.0204553 -0.769869 -0.637874 -0.0171992 -0.843829 -0.536337 -0.0856434 -0.843829 -0.529734 -0.068069 -0.904489 -0.42103 -0.12135 -0.904489 -0.408869 -0.0880877 -0.950869 -0.296796 -0.125318 -0.950869 -0.283095 -0.0759991 -0.982216 -0.171684 -0.0973296 -0.982216 -0.160556 -0.032617 -0.998019 -0.0538051 0.0359973 0.998019 0.0516048 0.107417 0.982216 0.15399 0.126226 0.982216 0.138989 0.208139 0.950869 0.229185 0.235738 0.950869 0.200687 0.324754 0.904489 0.276467 0.357442 0.904489 0.232669 0.449728 0.843829 0.292741 0.483471 0.843829 0.232827 0.575 0.769869 0.276905 0.60569 0.769869 0.201103 0.692498 0.683799 0.229925 0.716215 0.683799 0.139483 0.794662 0.586994 0.15476 0.807928 0.586994 0.0518707 0.874923 0.480993 0.056172 0.874923 0.480993 -0.0561718 0.928124 0.367471 -0.0595874 0.912885 0.367471 -0.177784 0.950842 0.24821 -0.185177 0.919356 0.24821 -0.305247 0.941602 0.12508 -0.312633 0.893893 0.12508 -0.430476 0.900969 0 -0.433884 0.838088 0 -0.545535 0.831506 -0.12508 -0.541251 0.755466 -0.12508 -0.643138 0.737617 -0.24821 -0.627943 0.651262 -0.24821 -0.717112 0.625264 -0.367471 -0.688484 0.532089 -0.367471 -0.762789 0.501589 -0.480993 -0.719065 0.405519 -0.480993 -0.777303 0.374467 -0.586994 -0.717783 0.279604 -0.586994 -0.759776 0.252003 -0.683799 -0.684773 0.162367 -0.683799 -0.711376 0.142013 -0.769869 -0.622201 0.0612822 -0.769869 -0.635253 0.0515272 -0.843829 -0.534133 -0.0171992 -0.843829 -0.536337 -0.0136698 -0.904489 -0.426278 -0.0680687 -0.904489 -0.42103 -0.0494109 -0.950869 -0.305624 -0.0880878 -0.950869 -0.296797 -0.0534209 -0.982216 -0.179993 -0.0759991 -0.982216 -0.171684 -0.0254687 -0.998019 -0.0575344 0.0291026 0.998019 0.0557844 0.0868428 0.982216 0.166462 0.107417 0.982216 0.15399 0.177123 0.950869 0.253919 0.208139 0.950869 0.229185 0.286734 0.904489 0.315726 0.324754 0.904489 0.276467 0.408601 0.843829 0.347847 0.449728 0.843829 0.292741 0.53487 0.769869 0.348162 0.575 0.769869 0.276906 0.657411 0.683799 0.316592 0.692498 0.683799 0.229925 0.768347 0.586994 0.255109 0.794662 0.586994 0.154761 0.860557 0.480993 0.167594 0.874923 0.480993 0.0561718 0.928124 0.367471 0.0595874 0.928124 0.367471 -0.0595879 0.966716 0.24821 -0.0620656 0.950842 0.24821 -0.185177 0.973851 0.12508 -0.189657 0.941602 0.12508 -0.312633 0.949056 0 -0.315108 0.900969 0 -0.433884 0.893893 -0.12508 -0.430477 0.831506 -0.12508 -0.541251 0.811861 -0.24821 -0.528463 0.737617 -0.24821 -0.627943 0.708172 -0.36747 -0.602875 0.625263 -0.36747 -0.688485 0.589422 -0.480993 -0.64902 0.501589 -0.480993 -0.719065 0.463181 -0.586994 -0.664004 0.374467 -0.586994 -0.717783 0.337501 -0.683799 -0.646926 0.252003 -0.683799 -0.684773 0.220413 -0.769869 -0.598933 0.142013 -0.769869 -0.622201 0.119408 -0.843829 -0.523158 0.0515273 -0.843829 -0.534133 0.0409537 -0.904489 -0.424526 -0.0136699 -0.904489 -0.426278 -0.00992298 -0.950869 -0.309434 -0.0494109 -0.950869 -0.305624 -0.0299653 -0.982216 -0.185346 -0.0534209 -0.982216 -0.179993 -0.0179024 -0.998019 -0.0603189 0.0217302 0.998019 0.0590479 0.0648433 0.982216 0.1762 0.0868429 0.982216 0.166462 0.143198 0.950869 0.274485 0.177123 0.950869 0.253919 0.244006 0.904489 0.349801 0.286734 0.904489 0.315726 0.360765 0.843829 0.397242 0.408601 0.843829 0.347847 0.485956 0.769869 0.413701 0.53487 0.769869 0.348161 0.611528 0.683799 0.398061 0.657411 0.683799 0.316592 0.729416 0.586994 0.351268 0.768347 0.586994 0.255108 0.83206 0.480994 0.276262 0.860557 0.480994 0.167593 0.912885 0.367471 0.177784 0.928124 0.367471 0.0595879 0.966716 0.24821 0.0620656 0.966716 0.24821 -0.0620655 0.990108 0.12508 -0.0635673 0.973851 0.12508 -0.189657 0.981559 0 -0.191158 0.949056 0 -0.315108 0.941602 -0.12508 -0.312634 0.893893 -0.12508 -0.430476 0.872774 -0.248211 -0.420306 0.811861 -0.248211 -0.528463 0.779452 -0.36747 -0.507367 0.708172 -0.36747 -0.602875 0.667578 -0.480993 -0.568318 0.589422 -0.480993 -0.64902 0.544289 -0.586994 -0.599323 0.46318 -0.586994 -0.664005 0.417457 -0.683799 -0.598456 0.337501 -0.683799 -0.646926 0.295193 -0.769869 -0.56583 0.220412 -0.769869 -0.598933 0.185327 -0.843829 -0.503594 0.119407 -0.843829 -0.523158 0.0949044 -0.904489 -0.415804 0.0409534 -0.904489 -0.424526 0.029728 -0.950869 -0.308162 -0.00992306 -0.950869 -0.309434 -0.00601783 -0.982216 -0.187656 -0.0299652 -0.982216 -0.185346 -0.0100419 -0.998019 -0.062113 0.0140009 0.998019 0.0613419 0.0417789 0.982216 0.183045 0.0648432 0.982216 0.1762 0.106922 0.950869 0.290543 0.143199 0.950869 0.274485 0.197271 0.904489 0.378132 0.244006 0.904489 0.349801 0.307005 0.843829 0.440114 0.360765 0.843829 0.397242 0.429064 0.769869 0.472447 0.485956 0.769869 0.413701 0.555605 0.683799 0.472993 0.611528 0.683799 0.398061 0.678509 0.586994 0.44166 0.729416 0.586994 0.351269 0.789901 0.480993 0.380397 0.83206 0.480993 0.276263 0.882655 0.36747 0.293062 0.912885 0.36747 0.177784 0.950842 0.24821 0.185177 0.966716 0.24821 0.0620655 0.990108 0.125079 0.0635673 0.990108 0.125079 -0.063567 0.997945 0 -0.0640702 0.981559 0 -0.191158 0.973851 -0.12508 -0.189657 0.941602 -0.12508 -0.312633 0.919356 -0.24821 -0.305247 0.872774 -0.24821 -0.420306 0.837933 -0.36747 -0.403527 0.779451 -0.36747 -0.507367 0.734772 -0.480993 -0.478284 0.667578 -0.480993 -0.568318 0.61646 -0.586994 -0.5248 0.544289 -0.586994 -0.599322 0.490558 -0.683799 -0.540159 0.417457 -0.683799 -0.598456 0.365126 -0.769869 -0.523436 0.295193 -0.769869 -0.565829 0.248204 -0.843829 -0.47576 0.185327 -0.843829 -0.503594 0.147297 -0.904489 -0.400254 0.0949045 -0.904489 -0.415804 0.0688909 -0.950869 -0.30183 0.0297281 -0.950869 -0.308162 0.0180287 -0.982216 -0.186885 -0.00601781 -0.982216 -0.187656 -0.00201666 -0.998019 -0.0628871 0.00604171 0.998019 0.0626287 0.0180286 0.982216 0.186885 0.041779 0.982216 0.183045 0.0688909 0.950869 0.30183 0.106922 0.950869 0.290543 0.147297 0.904489 0.400254 0.197271 0.904489 0.378132 0.248204 0.843829 0.47576 0.307005 0.843829 0.440115 0.365126 0.769869 0.523436 0.429064 0.769869 0.472447 0.490558 0.683799 0.540159 0.555605 0.683799 0.472993 0.61646 0.586994 0.5248 0.678509 0.586994 0.44166 0.734772 0.480993 0.478284 0.789901 0.480993 0.380396 0.837933 0.36747 0.403527 0.882655 0.36747 0.293062 0.919356 0.24821 0.305247 0.950842 0.24821 0.185177 0.973851 0.12508 0.189657 0.990108 0.12508 0.063567 0.997945 1.42751e-17 0.0640702 0.997945 -1.42751e-17 -0.0640702 0.990108 -0.12508 -0.063567 0.973851 -0.12508 -0.189657 0.950842 -0.24821 -0.185177 0.919356 -0.24821 -0.305247 0.882655 -0.36747 -0.293062 0.837933 -0.36747 -0.403527 0.789901 -0.480993 -0.380396 0.734772 -0.480993 -0.478284 0.678509 -0.586994 -0.44166 0.61646 -0.586994 -0.5248 0.555605 -0.683799 -0.472993 0.490558 -0.683799 -0.540159 0.429064 -0.769869 -0.472447 0.365126 -0.769869 -0.523436 0.307005 -0.843829 -0.440115 0.248204 -0.843829 -0.47576 0.197271 -0.904489 -0.378132 0.147297 -0.904489 -0.400254 0.106922 -0.950869 -0.290543 0.0688909 -0.950869 -0.30183 0.041779 -0.982216 -0.183045 0.0180286 -0.982216 -0.186885 0.00604172 -0.998019 -0.0626287 -0.00201665 0.998019 0.0628871 -0.00601774 0.982216 0.187656 0.0180286 0.982216 0.186885 0.0297281 0.950869 0.308162 0.0688908 0.950869 0.30183 0.0949045 0.904489 0.415804 0.147297 0.904489 0.400254 0.185327 0.843829 0.503594 0.248204 0.843829 0.47576 0.295193 0.769869 0.565829 0.365126 0.769869 0.523436 0.417457 0.683799 0.598456 0.490558 0.683799 0.540159 0.544289 0.586994 0.599322 0.61646 0.586994 0.5248 0.667578 0.480993 0.568318 0.734772 0.480993 0.478284 0.779451 0.36747 0.507367 0.837933 0.36747 0.403527 0.872774 0.24821 0.420306 0.919356 0.24821 0.305247 0.941602 0.12508 0.312633 0.973851 0.12508 0.189657 0.981559 0 0.191158 0.997945 0 0.0640702 0.990108 -0.125079 0.063567 0.990108 -0.125079 -0.0635673 0.966716 -0.24821 -0.0620655 0.950842 -0.24821 -0.185177 0.912885 -0.36747 -0.177784 0.882655 -0.36747 -0.293062 0.83206 -0.480993 -0.276263 0.789901 -0.480993 -0.380397 0.729416 -0.586994 -0.351269 0.678509 -0.586994 -0.44166 0.611528 -0.683799 -0.398061 0.555605 -0.683799 -0.472993 0.485956 -0.769869 -0.413701 0.429064 -0.769869 -0.472447 0.360765 -0.843829 -0.397242 0.307005 -0.843829 -0.440114 0.244006 -0.904489 -0.349801 0.197271 -0.904489 -0.378132 0.143198 -0.950869 -0.274485 0.106922 -0.950869 -0.290543 0.0648432 -0.982216 -0.1762 0.0417789 -0.982216 -0.183045 0.0140009 -0.998019 -0.0613419 -0.0100419 0.998019 0.062113 -0.0299653 0.982216 0.185346 -0.00601782 0.982216 0.187656 -0.00992303 0.950869 0.309434 0.029728 0.950869 0.308162 0.0409535 0.904489 0.424526 0.0949044 0.904489 0.415804 0.119407 0.843829 0.523158 0.185327 0.843829 0.503594 0.220413 0.769869 0.598933 0.295193 0.769869 0.56583 0.337501 0.683799 0.646926 0.417457 0.683799 0.598456 0.46318 0.586994 0.664005 0.544289 0.586994 0.599323 0.589422 0.480993 0.64902 0.667578 0.480993 0.568318 0.708172 0.36747 0.602875 0.779452 0.36747 0.507367 0.811861 0.248211 0.528463 0.872774 0.248211 0.420306 0.893893 0.12508 0.430476 0.941602 0.12508 0.312633 0.949056 0 0.315108 0.981559 0 0.191158 0.973851 -0.12508 0.189657 0.990108 -0.12508 0.0635673 0.966716 -0.24821 0.0620655 0.966716 -0.24821 -0.0620656 0.928124 -0.367471 -0.0595879 0.912885 -0.367471 -0.177784 0.860557 -0.480994 -0.167593 0.83206 -0.480994 -0.276262 0.768347 -0.586994 -0.255108 0.729416 -0.586994 -0.351268 0.657411 -0.683799 -0.316592 0.611528 -0.683799 -0.398061 0.53487 -0.769869 -0.348161 0.485956 -0.769869 -0.413701 0.408601 -0.843829 -0.347847 0.360765 -0.843829 -0.397242 0.286734 -0.904489 -0.315726 0.244006 -0.904489 -0.349801 0.177123 -0.950869 -0.253919 0.143198 -0.950869 -0.274485 0.0868428 -0.982216 -0.166462 0.0648434 -0.982216 -0.1762 0.0217302 -0.998019 -0.0590479 -0.0179023 0.998019 0.0603189 -0.0534209 0.982216 0.179993 -0.0299653 0.982216 0.185346 -0.0494109 0.950869 0.305624 -0.00992299 0.950869 0.309434 -0.01367 0.904489 0.426278 0.0409536 0.904489 0.424526 0.0515273 0.843829 0.534133 0.119408 0.843829 0.523158 0.142013 0.769869 0.622201 0.220413 0.769869 0.598933 0.252003 0.683799 0.684773 0.337501 0.683799 0.646926 0.374467 0.586994 0.717783 0.463181 0.586994 0.664004 0.501589 0.480993 0.719065 0.589422 0.480993 0.64902 0.625263 0.36747 0.688485 0.708172 0.36747 0.602875 0.737617 0.24821 0.627943 0.811861 0.24821 0.528463 0.831506 0.12508 0.541251 0.893893 0.12508 0.430477 0.900969 0 0.433884 0.949056 0 0.315108 0.941602 -0.12508 0.312634 0.973851 -0.12508 0.189657 0.950842 -0.24821 0.185177 0.966716 -0.24821 0.0620656 0.928124 -0.367471 0.0595879 0.928124 -0.367471 -0.0595875 0.874923 -0.480993 -0.0561718 0.860557 -0.480993 -0.167594 0.794662 -0.586994 -0.154761 0.768347 -0.586994 -0.255109 0.692498 -0.683799 -0.229926 0.657411 -0.683799 -0.316592 0.575 -0.769869 -0.276906 0.53487 -0.769869 -0.348162 0.449728 -0.843829 -0.292741 0.408601 -0.843829 -0.347847 0.324754 -0.904489 -0.276467 0.286734 -0.904489 -0.315726 0.208139 -0.950869 -0.229185 0.177123 -0.950869 -0.253919 0.107417 -0.982216 -0.15399 0.0868427 -0.982216 -0.166462 0.0291026 -0.998019 -0.0557844 -0.0254688 0.998019 0.0575343 -0.0759992 0.982216 0.171684 -0.0534209 0.982216 0.179993 -0.0880878 0.950869 0.296797 -0.049411 0.950869 0.305624 -0.0680687 0.904489 0.42103 -0.0136697 0.904489 0.426278 -0.0171991 0.843829 0.536337 0.0515271 0.843829 0.534133 0.0612822 0.769869 0.635253 0.142013 0.769869 0.622201 0.162367 0.683799 0.711376 0.252003 0.683799 0.684773 0.279604 0.586994 0.759776 0.374467 0.586994 0.717783 0.405519 0.480993 0.777303 0.501589 0.480993 0.719065 0.532089 0.367471 0.762789 0.625264 0.367471 0.688484 0.651262 0.24821 0.717112 0.737617 0.24821 0.627943 0.755466 0.12508 0.643138 0.831506 0.12508 0.541251 0.838088 0 0.545535 0.900969 0 0.433884 0.893893 -0.12508 0.430477 0.941602 -0.12508 0.312633 0.919356 -0.24821 0.305247 0.950842 -0.24821 0.185177 0.912885 -0.367471 0.177784 0.928124 -0.367471 0.0595874 0.874923 -0.480993 0.0561718 0.874923 -0.480993 -0.056172 0.807928 -0.586994 -0.0518707 0.794662 -0.586994 -0.15476 0.716215 -0.683799 -0.139483 0.692498 -0.683799 -0.229925 0.60569 -0.769869 -0.201103 0.575001 -0.769869 -0.276905 0.483471 -0.843829 -0.232827 0.449728 -0.843829 -0.292741 0.357442 -0.904489 -0.232669 0.324754 -0.904489 -0.276467 0.235738 -0.950869 -0.200687 0.208139 -0.950869 -0.229185 0.126226 -0.982216 -0.138989 0.107417 -0.982216 -0.15399 0.0359973 -0.998019 -0.0516048 -0.032617 0.998019 0.0538051 -0.0973296 0.982216 0.160555 -0.0759991 0.982216 0.171684 -0.125318 0.950869 0.283095 -0.0880876 0.950869 0.296796 -0.12135 0.904489 0.408869 -0.068069 0.904489 0.42103 -0.0856434 0.843829 0.529734 -0.0171992 0.843829 0.536337 -0.0204553 0.769869 0.637874 0.0612822 0.769869 0.635253 0.0700653 0.683799 0.726299 0.162367 0.683799 0.711376 0.180151 0.586994 0.789293 0.279604 0.586994 0.759776 0.30279 0.480993 0.822778 0.405519 0.480993 0.777303 0.430177 0.36747 0.824569 0.532088 0.36747 0.762789 0.554213 0.24821 0.794506 0.651262 0.24821 0.717112 0.667021 0.12508 0.734464 0.755466 0.12508 0.643138 0.761446 0 0.648228 0.838088 0 0.545535 0.831506 -0.12508 0.541251 0.893893 -0.12508 0.430476 0.872774 -0.24821 0.420306 0.919356 -0.24821 0.305247 0.882655 -0.36747 0.293062 0.912885 -0.36747 0.177784 0.860557 -0.480993 0.167593 0.874923 -0.480993 0.056172 0.807928 -0.586994 0.0518707 0.807928 -0.586994 -0.0518708 0.728172 -0.683799 -0.0467503 0.716215 -0.683799 -0.139483 0.626433 -0.769869 -0.121998 0.60569 -0.769869 -0.201103 0.509275 -0.843829 -0.169091 0.483471 -0.843829 -0.232827 0.38426 -0.904489 -0.18505 0.357442 -0.904489 -0.232669 0.259466 -0.950869 -0.168894 0.235738 -0.950869 -0.200687 0.142964 -0.982216 -0.121707 0.126226 -0.982216 -0.138989 0.0423008 -0.998019 -0.0465779 -0.0392297 0.998019 0.0491924 -0.117062 0.982216 0.146791 -0.0973297 0.982216 0.160555 -0.160491 0.950869 0.264746 -0.125318 0.950869 0.283095 -0.172639 0.904489 0.389994 -0.12135 0.904489 0.408869 -0.152681 0.843829 0.514433 -0.0856435 0.843829 0.529734 -0.101857 0.769869 0.630022 -0.0204552 0.769869 0.637874 -0.0233869 0.683799 0.729296 0.0700652 0.683799 0.726299 0.0777394 0.586994 0.80585 0.180151 0.586994 0.789293 0.195089 0.480993 0.854743 0.30279 0.480993 0.822778 0.321202 0.367471 0.872809 0.430177 0.36747 0.824568 0.448064 0.248211 0.858854 0.554213 0.248211 0.794506 0.567624 0.12508 0.813731 0.667021 0.12508 0.734464 0.672301 0 0.740278 0.761446 0 0.648228 0.755466 -0.12508 0.643138 0.831506 -0.12508 0.541251 0.811861 -0.248211 0.528463 0.872774 -0.248211 0.420306 0.837933 -0.36747 0.403527 0.882655 -0.36747 0.293062 0.83206 -0.480994 0.276263 0.860557 -0.480994 0.167594 0.794662 -0.586994 0.154761 0.807928 -0.586994 0.0518708 0.728172 -0.683799 0.0467503 0.728172 -0.683799 -0.0467501 0.636891 -0.769869 -0.0408897 0.626433 -0.769869 -0.121998 0.526717 -0.843829 -0.102578 0.509275 -0.843829 -0.169091 0.404769 -0.904489 -0.134393 0.38426 -0.904489 -0.18505 0.278933 -0.950869 -0.134327 0.259466 -0.950869 -0.168893 0.157353 -0.982216 -0.102426 0.142964 -0.982216 -0.121707 0.0479098 -0.998019 -0.0407862 -0.0451981 0.998019 0.043772 -0.134872 0.982216 0.130616 -0.117062 0.982216 0.146791 -0.193028 0.950869 0.242049 -0.160491 0.950869 0.264746 -0.221093 0.904489 0.364716 -0.172639 0.904489 0.389994 -0.217212 0.843829 0.490685 -0.152681 0.843829 0.514433 -0.181586 0.769869 0.611824 -0.101857 0.769869 0.630022 -0.116456 0.683799 0.720318 -0.0233868 0.683799 0.729296 -0.0259484 0.586994 0.809175 0.0777395 0.586994 0.80585 0.0841859 0.480993 0.872673 0.195089 0.480993 0.854743 0.206952 0.36747 0.906717 0.321201 0.36747 0.872809 0.334557 0.24821 0.9091 0.448063 0.24821 0.858855 0.458905 0.12508 0.879637 0.567623 0.12508 0.813731 0.572117 0 0.820172 0.672301 0 0.740278 0.667021 -0.12508 0.734464 0.755466 -0.12508 0.643138 0.737617 -0.24821 0.627943 0.811861 -0.24821 0.528463 0.779452 -0.36747 0.507367 0.837933 -0.36747 0.403527 0.789902 -0.480993 0.380396 0.832061 -0.480993 0.276262 0.768348 -0.586994 0.255108 0.794662 -0.586994 0.15476 0.716215 -0.683799 0.139483 0.728172 -0.683799 0.0467501 0.636891 -0.769869 0.0408897 0.636891 -0.769869 -0.0408896 0.53551 -0.843829 -0.0343808 0.526717 -0.843829 -0.102578 0.418632 -0.904489 -0.0815284 0.404769 -0.904489 -0.134393 0.293821 -0.950869 -0.0975553 0.278933 -0.950869 -0.134327 0.169159 -0.982216 -0.0814629 0.157353 -0.982216 -0.102426 0.0527321 -0.998019 -0.0343248 0.53551 -0.843829 -0.0343808 0.425621 -0.904489 -0.0273257 0.418632 -0.904489 -0.0815284 0.303883 -0.950869 -0.0591812 0.293821 -0.950869 -0.0975553 0.178188 -0.982216 -0.0591625 0.169159 -0.982216 -0.0814628 0.0566885 -0.998019 -0.0272997 -0.222396 0.950869 0.215378 -0.306374 0.904489 0.296706 -0.265916 0.904489 0.333449 -0.334572 0.843829 0.41954 -0.278176 0.843829 0.45888 -0.330839 0.769869 0.545754 -0.258334 0.769869 0.58358 -0.295359 0.683799 0.66722 -0.207611 0.683799 0.699512 -0.230351 0.586994 0.776129 -0.129211 0.586994 0.799214 -0.139925 0.480993 0.865487 -0.0281007 0.480993 0.876274 -0.0298094 0.36747 0.929557 0.0893051 0.36747 0.925738 0.0930184 0.24821 0.96423 0.215557 0.24821 0.944419 0.220773 0.12508 0.967271 0.342653 0.12508 0.931098 0.345366 0 0.938468 0.462538 0 0.886599 0.458906 -0.12508 0.879637 0.567624 -0.12508 0.813731 0.554213 -0.24821 0.794506 0.651262 -0.24821 0.717112 0.625264 -0.36747 0.688485 0.708172 -0.36747 0.602875 0.667578 -0.480993 0.568318 0.734772 -0.480993 0.478284 0.678509 -0.586994 0.44166 0.729417 -0.586994 0.351268 0.657411 -0.683799 0.316592 0.692498 -0.683799 0.229925 0.60569 -0.769869 0.201103 0.626433 -0.769869 0.121998 0.526717 -0.843829 0.102578 0.53551 -0.843829 0.0343808 0.425621 -0.904489 0.0273257 0.425621 -0.904489 -0.0273258 0.308957 -0.950869 -0.0198357 0.303883 -0.950869 -0.0591813 0.184291 -0.982216 -0.0358905 0.178188 -0.982216 -0.0591625 0.0597141 -0.998019 -0.0198265 -0.306374 0.904489 0.296706 -0.385475 0.843829 0.373312 -0.334572 0.843829 0.41954 -0.397913 0.769869 0.498967 -0.330839 0.769869 0.545754 -0.378256 0.683799 0.623973 -0.295359 0.683799 0.66722 -0.327709 0.586994 0.7403 -0.230351 0.586994 0.776129 -0.249452 0.480993 0.840488 -0.139925 0.480993 0.865487 -0.148434 0.367471 0.918114 -0.0298089 0.367471 0.929557 -0.0310483 0.24821 0.968208 0.0930184 0.24821 0.96423 0.0952692 0.12508 0.987562 0.220773 0.12508 0.967272 0.22252 0 0.974928 0.345366 0 0.938468 0.342653 -0.12508 0.931098 0.458905 -0.12508 0.879637 0.448063 -0.248211 0.858854 0.554213 -0.248211 0.794506 0.532088 -0.367471 0.762789 0.625263 -0.367471 0.688485 0.589422 -0.480993 0.64902 0.667578 -0.480993 0.568318 0.61646 -0.586994 0.5248 0.678509 -0.586994 0.44166 0.611528 -0.683799 0.398061 0.657411 -0.683799 0.316592 0.575 -0.769869 0.276906 0.605689 -0.769869 0.201103 0.509275 -0.843829 0.169091 0.526717 -0.843829 0.102578 0.418632 -0.904489 0.0815284 0.42562 -0.904489 0.0273258 0.308957 -0.950869 0.0198357 0.308957 -0.950869 -0.0198357 0.187367 -0.982216 -0.0120294 0.184291 -0.982216 -0.0358907 0.0617592 -0.998019 -0.0120276 -0.385475 0.843829 0.373312 -0.458452 0.769869 0.443986 -0.397913 0.769869 0.498967 -0.454942 0.683799 0.570479 -0.378256 0.683799 0.623973 -0.419686 0.586994 0.692316 -0.327709 0.586994 0.7403 -0.354884 0.480993 0.801688 -0.249452 0.480993 0.840488 -0.26462 0.367471 0.891595 -0.148434 0.367471 0.918114 -0.154606 0.24821 0.956289 -0.0310489 0.24821 0.968209 -0.0318002 0.12508 0.991637 0.0952695 0.12508 0.987562 0.0960236 0 0.995379 0.22252 0 0.974928 0.220773 -0.12508 0.967272 0.342653 -0.12508 0.931098 0.334557 -0.24821 0.9091 0.448064 -0.24821 0.858854 0.430177 -0.36747 0.824569 0.532089 -0.36747 0.762789 0.501589 -0.480993 0.719065 0.589422 -0.480993 0.64902 0.544289 -0.586994 0.599323 0.61646 -0.586994 0.5248 0.555605 -0.683799 0.472993 0.611529 -0.683798 0.398061 0.53487 -0.769869 0.348162 0.575 -0.769869 0.276905 0.483471 -0.843829 0.232827 0.509275 -0.843829 0.169091 0.404769 -0.904489 0.134393 0.418632 -0.904489 0.0815284 0.303884 -0.950869 0.0591812 0.308957 -0.950869 0.0198357 0.187367 -0.982216 0.0120294 0.187367 -0.982216 -0.0120294 0.0627902 -0.998019 -0.00403126 -0.0624029 -0.998019 0.00804597 -0.186211 -0.982216 0.0240093 -0.187753 -0.982216 0 -0.309593 -0.950869 0 -0.307051 -0.950869 -0.0395899 -0.422995 -0.904489 -0.0545392 -0.412548 -0.904489 -0.108183 -0.519062 -0.843829 -0.136114 -0.497395 -0.843829 -0.201373 -0.59156 -0.769869 -0.239496 -0.556078 -0.769869 -0.313177 -0.635776 -0.683799 -0.358062 -0.584768 -0.683799 -0.436424 -0.648818 -0.586994 -0.484225 -0.58157 -0.586994 -0.563219 -0.629795 -0.480993 -0.609922 -0.546629 -0.480993 -0.685451 -0.579868 -0.36747 -0.727131 -0.482123 -0.36747 -0.795313 -0.50217 -0.24821 -0.828382 -0.392116 -0.24821 -0.885797 -0.401604 -0.12508 -0.907232 -0.282293 -0.12508 -0.951139 -0.284527 0 -0.958668 -0.1596 0 -0.987182 -0.158347 0.12508 -0.979429 -0.0318002 0.12508 -0.991637 -0.0310489 0.24821 -0.968208 0.0930184 0.24821 -0.96423 0.0893051 0.36747 -0.925738 0.206952 0.36747 -0.906717 0.195089 0.480993 -0.854743 0.30279 0.480993 -0.822778 0.279604 0.586994 -0.759776 0.374467 0.586994 -0.717783 0.337501 0.683799 -0.646926 0.417457 0.683799 -0.598456 0.365126 0.769869 -0.523436 0.429064 0.769869 -0.472447 0.360765 0.843829 -0.397242 0.408601 0.843829 -0.347847 0.324754 0.904489 -0.276467 0.357442 0.904489 -0.232669 0.259466 0.950869 -0.168894 0.278933 0.950869 -0.134327 0.169159 0.982216 -0.0814629 0.178188 0.982216 -0.0591626 0.0597141 0.998019 -0.0198265 -0.181612 -0.982216 0.0476244 -0.299467 -0.950869 0.0785296 -0.307051 -0.950869 0.0395898 -0.422995 -0.904489 0.0545392 -0.426497 -0.904489 0 -0.536612 -0.843829 0 -0.532207 -0.843829 -0.0686205 -0.632963 -0.769869 -0.0816116 -0.61733 -0.769869 -0.161883 -0.705807 -0.683799 -0.185084 -0.676344 -0.683799 -0.273821 -0.750424 -0.586994 -0.303813 -0.705412 -0.586994 -0.397281 -0.763906 -0.480993 -0.430224 -0.702619 -0.480993 -0.524378 -0.745343 -0.367471 -0.556264 -0.66809 -0.36747 -0.647009 -0.69587 -0.24821 -0.673912 -0.603979 -0.24821 -0.757365 -0.618594 -0.12508 -0.775691 -0.514321 -0.12508 -0.848427 -0.518392 0 -0.855143 -0.404784 0 -0.914412 -0.401605 0.12508 -0.907231 -0.282293 0.12508 -0.951139 -0.275624 0.24821 -0.928667 -0.154606 0.248211 -0.956289 -0.148434 0.367471 -0.918114 -0.0298094 0.367471 -0.929557 -0.0281007 0.480993 -0.876274 0.0841859 0.480993 -0.872673 0.0777396 0.586994 -0.80585 0.180151 0.586994 -0.789293 0.162367 0.683799 -0.711376 0.252003 0.683799 -0.684773 0.220413 0.769869 -0.598933 0.295193 0.769869 -0.56583 0.248204 0.843829 -0.47576 0.307005 0.843829 -0.440115 0.244006 0.904489 -0.349801 0.286734 0.904489 -0.315726 0.208139 0.950869 -0.229185 0.235738 0.950869 -0.200687 0.142964 0.982216 -0.121707 0.157353 0.982216 -0.102426 0.0527321 0.998019 -0.0343248 -0.174031 0.982216 0.0704575 -0.174031 0.982216 0.0704574 -0.286967 0.950869 0.11618 -0.286967 0.950869 0.11618 -0.395327 0.904489 0.16005 -0.395327 0.904489 0.16005 -0.497395 0.843829 0.201373 -0.497395 0.843829 0.201373 -0.59156 0.769869 0.239496 -0.59156 0.769869 0.239496 -0.676344 0.683799 0.273821 -0.676344 0.683799 0.273821 -0.750424 0.586994 0.303813 -0.750424 0.586994 0.303813 -0.812651 0.480993 0.329005 -0.812651 0.480993 0.329005 -0.862066 0.36747 0.349011 -0.862065 0.36747 0.349012 -0.89791 0.248211 0.363523 -0.89791 0.24821 0.363523 -0.919637 0.12508 0.37232 -0.919637 0.12508 0.37232 -0.926917 0 0.375267 -0.926917 0 0.375267 -0.919637 -0.12508 0.37232 -0.919637 -0.12508 0.37232 -0.89791 -0.248211 0.363523 -0.89791 -0.24821 0.363524 -0.862065 -0.36747 0.349012 -0.862065 -0.36747 0.349011 -0.812651 -0.480993 0.329005 -0.812651 -0.480993 0.329005 -0.750424 -0.586994 0.303813 -0.750424 -0.586994 0.303813 -0.676344 -0.683799 0.273821 -0.676344 -0.683799 0.273821 -0.59156 -0.769869 0.239496 -0.59156 -0.769869 0.239496 -0.497395 -0.843829 0.201373 -0.497395 -0.843829 0.201373 -0.395327 -0.904489 0.16005 -0.395327 -0.904489 0.16005 -0.286967 -0.950869 0.11618 -0.286967 -0.950869 0.11618 -0.174031 -0.982216 0.0704574 -0.174031 -0.982216 0.0704575 -0.0583211 -0.998019 0.0236116 0.0627902 -0.998019 0.00403126 -0.524158 0.683799 0.507619 -0.581569 0.586994 0.563219 -0.504772 0.586994 0.632964 -0.546629 0.480993 0.685451 -0.454487 0.480993 0.749725 -0.482123 0.367471 0.795313 -0.376463 0.367471 0.850436 -0.392116 0.24821 0.885797 -0.275624 0.24821 0.928667 -0.282293 0.12508 0.951139 -0.158347 0.12508 0.979429 -0.1596 0 0.987182 -0.0320518 0 0.999486 -0.0318001 -0.12508 0.991637 0.0952692 -0.12508 0.987562 0.0930183 -0.24821 0.96423 0.215557 -0.24821 0.944419 0.206952 -0.36747 0.906717 0.321202 -0.36747 0.872809 0.30279 -0.480993 0.822778 0.405519 -0.480993 0.777303 0.374467 -0.586994 0.717783 0.46318 -0.586994 0.664004 0.417457 -0.683799 0.598456 0.490558 -0.683799 0.540159 0.429064 -0.769869 0.472447 0.485957 -0.769869 0.413701 0.408601 -0.843829 0.347847 0.449728 -0.843829 0.292741 0.357442 -0.904489 0.232669 0.38426 -0.904489 0.18505 0.278933 -0.950869 0.134327 0.293821 -0.950869 0.0975553 0.178188 -0.982216 0.0591625 0.18429 -0.982216 0.0358906 0.0617592 -0.998019 0.0120276 -0.0548229 0.998019 0.0308757 -0.248112 0.950869 0.185171 -0.248112 0.950869 0.185171 -0.3418 0.904489 0.255092 -0.3418 0.904489 0.255092 -0.430048 0.843829 0.320954 -0.430049 0.843829 0.320953 -0.511464 0.769869 0.381715 -0.511464 0.769869 0.381715 -0.584768 0.683799 0.436424 -0.584768 0.683799 0.436424 -0.648818 0.586994 0.484225 -0.648818 0.586994 0.484225 -0.702619 0.480993 0.524378 -0.702619 0.480993 0.524378 -0.745343 0.367471 0.556264 -0.745343 0.36747 0.556264 -0.776334 0.248211 0.579394 -0.776335 0.24821 0.579393 -0.79512 0.12508 0.593413 -0.79512 0.12508 0.593413 -0.801414 0 0.59811 -0.801414 0 0.59811 -0.79512 -0.12508 0.593413 -0.79512 -0.12508 0.593413 -0.776334 -0.248211 0.579393 -0.776334 -0.24821 0.579394 -0.745343 -0.367471 0.556264 -0.745343 -0.36747 0.556264 -0.702619 -0.480993 0.524378 -0.702619 -0.480993 0.524378 -0.648818 -0.586994 0.484225 -0.648818 -0.586994 0.484225 -0.584768 -0.683799 0.436424 -0.584768 -0.683799 0.436423 -0.511464 -0.769869 0.381715 -0.511464 -0.769869 0.381715 -0.430048 -0.843829 0.320953 -0.430048 -0.843829 0.320954 -0.3418 -0.904489 0.255092 -0.3418 -0.904489 0.255092 -0.248112 -0.950869 0.185171 -0.248112 -0.950869 0.185171 -0.150468 -0.982216 0.112297 -0.150468 -0.982216 0.112297 -0.0504245 -0.998019 0.0376328 0.53551 -0.843829 0.0343808 0.636891 -0.769869 0.0408896 0.626433 -0.769869 0.121998 0.716215 -0.683799 0.139483 0.692498 -0.683799 0.229925 0.768347 -0.586994 0.255109 0.729416 -0.586994 0.351269 0.789901 -0.480993 0.380397 0.734772 -0.480993 0.478284 0.779451 -0.36747 0.507367 0.708172 -0.36747 0.602875 0.737617 -0.24821 0.627943 0.651262 -0.24821 0.717112 0.667021 -0.12508 0.734464 0.567623 -0.12508 0.813731 0.572117 0 0.820172 0.462538 0 0.886599 0.458906 0.12508 0.879637 0.342653 0.12508 0.931098 0.334557 0.24821 0.9091 0.215557 0.24821 0.944419 0.206952 0.36747 0.906717 0.0893049 0.36747 0.925738 0.0841859 0.480993 0.872673 -0.0281 0.480993 0.876274 -0.0259483 0.586994 0.809175 -0.129211 0.586994 0.799214 -0.116455 0.683799 0.720318 -0.207611 0.683799 0.699512 -0.181586 0.769869 0.611824 -0.258334 0.769869 0.58358 -0.217212 0.843829 0.490685 -0.278176 0.843829 0.45888 -0.221093 0.904489 0.364716 -0.265916 0.904489 0.333449 -0.193028 0.950869 0.242049 -0.222396 0.950869 0.215378 -0.134872 0.982216 0.130616 -0.150468 0.982216 0.112297 -0.0504245 0.998019 0.0376328 + + + + + + + + + + 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 0.686275 0.686275 0.686275 1 + + + + + + + + + + + + + + + + +

1133 1133 0 0 0 0 292 292 0 1 1 1 4 4 1 2 2 1 2 2 2 4 4 2 57 57 2 3 3 3 57 57 3 4 4 3 5 5 4 428 428 4 1176 1176 4 3 3 5 4 4 5 7 7 5 7 7 6 4 4 6 1 1 6 7 7 7 1 1 7 9 9 7 6 6 8 57 57 8 3 3 8 6 6 9 3 3 9 11 11 9 11 11 10 3 3 10 7 7 10 11 11 11 7 7 11 8 8 11 8 8 12 7 7 12 9 9 12 8 8 13 9 9 13 13 13 13 10 10 14 57 57 14 6 6 14 10 10 15 6 6 15 14 14 15 14 14 16 6 6 16 11 11 16 14 14 17 11 11 17 12 12 17 12 12 18 11 11 18 8 8 18 12 12 19 8 8 19 15 15 19 15 15 20 8 8 20 13 13 20 15 15 21 13 13 21 1087 1087 21 17 17 22 57 57 22 10 10 22 17 17 23 10 10 23 18 18 23 18 18 24 10 10 24 14 14 24 18 18 25 14 14 25 19 19 25 19 19 26 14 14 26 12 12 26 19 19 27 12 12 27 22 22 27 22 22 28 12 12 28 15 15 28 22 22 29 15 15 29 16 16 29 16 16 30 15 15 30 1087 1087 30 16 16 31 1087 1087 31 1086 1086 31 24 24 32 57 57 32 17 17 32 24 24 33 17 17 33 26 26 33 26 26 34 17 17 34 18 18 34 26 26 35 18 18 35 27 27 35 27 27 36 18 18 36 19 19 36 27 27 37 19 19 37 20 20 37 20 20 38 19 19 38 22 22 38 20 20 39 22 22 39 21 21 39 21 21 40 22 22 40 16 16 40 21 21 41 16 16 41 30 30 41 30 30 42 16 16 42 1086 1086 42 30 30 43 1086 1086 43 23 23 43 31 31 44 57 57 44 24 24 44 31 31 45 24 24 45 25 25 45 25 25 46 24 24 46 26 26 46 25 25 47 26 26 47 32 32 47 32 32 48 26 26 48 27 27 48 32 32 49 27 27 49 28 28 49 28 28 50 27 27 50 20 20 50 28 28 51 20 20 51 29 29 51 29 29 52 20 20 52 21 21 52 29 29 53 21 21 53 35 35 53 35 35 54 21 21 54 30 30 54 35 35 55 30 30 55 37 37 55 37 37 56 30 30 56 23 23 56 37 37 57 23 23 57 1085 1085 57 38 38 58 57 57 58 31 31 58 1117 1117 59 410 410 59 39 39 59 38 38 60 31 31 60 41 41 60 41 41 61 31 31 61 25 25 61 41 41 62 25 25 62 42 42 62 42 42 63 25 25 63 32 32 63 42 42 64 32 32 64 44 44 64 44 44 65 32 32 65 28 28 65 44 44 66 28 28 66 33 33 66 33 33 67 28 28 67 29 29 67 33 33 68 29 29 68 34 34 68 34 34 69 29 29 69 35 35 69 34 34 70 35 35 70 49 49 70 49 49 71 35 35 71 37 37 71 49 49 72 37 37 72 36 36 72 36 36 73 37 37 73 1085 1085 73 36 36 74 1085 1085 74 1083 1083 74 52 52 75 57 57 75 38 38 75 39 39 76 411 411 76 395 395 76 52 52 77 38 38 77 40 40 77 40 40 78 38 38 78 41 41 78 40 40 79 41 41 79 43 43 79 43 43 80 41 41 80 42 42 80 43 43 81 42 42 81 53 53 81 53 53 82 42 42 82 44 44 82 53 53 83 44 44 83 45 45 83 45 45 84 44 44 84 33 33 84 45 45 85 33 33 85 46 46 85 46 46 86 33 33 86 34 34 86 46 46 87 34 34 87 47 47 87 47 47 88 34 34 88 49 49 88 47 47 89 49 49 89 48 48 89 48 48 90 49 49 90 36 36 90 48 48 91 36 36 91 50 50 91 50 50 92 36 36 92 1083 1083 92 50 50 93 1083 1083 93 1082 1082 93 51 51 94 57 57 94 52 52 94 395 395 95 379 379 95 1120 1120 95 51 51 96 52 52 96 61 61 96 61 61 97 52 52 97 40 40 97 61 61 98 40 40 98 62 62 98 62 62 99 40 40 99 43 43 99 62 62 100 43 43 100 63 63 100 63 63 101 43 43 101 53 53 101 63 63 102 53 53 102 65 65 102 65 65 103 53 53 103 45 45 103 65 65 104 45 45 104 54 54 104 54 54 105 45 45 105 46 46 105 54 54 106 46 46 106 67 67 106 67 67 107 46 46 107 47 47 107 67 67 108 47 47 108 55 55 108 55 55 109 47 47 109 48 48 109 55 55 110 48 48 110 68 68 110 68 68 111 48 48 111 50 50 111 68 68 112 50 50 112 70 70 112 70 70 113 50 50 113 1082 1082 113 70 70 114 1082 1082 114 56 56 114 58 58 115 57 57 115 51 51 115 1120 1120 116 380 380 116 1121 1121 116 58 58 117 51 51 117 59 59 117 59 59 118 51 51 118 61 61 118 59 59 119 61 61 119 60 60 119 60 60 120 61 61 120 62 62 120 60 60 121 62 62 121 64 64 121 64 64 122 62 62 122 63 63 122 64 64 123 63 63 123 78 78 123 78 78 124 63 63 124 65 65 124 78 78 125 65 65 125 79 79 125 79 79 126 65 65 126 54 54 126 79 79 127 54 54 127 66 66 127 66 66 128 54 54 128 67 67 128 66 66 129 67 67 129 81 81 129 81 81 130 67 67 130 55 55 130 81 81 131 55 55 131 83 83 131 83 83 132 55 55 132 68 68 132 83 83 133 68 68 133 69 69 133 69 69 134 68 68 134 70 70 134 69 69 135 70 70 135 71 71 135 71 71 136 70 70 136 56 56 136 71 71 137 56 56 137 72 72 137 73 73 138 57 57 138 58 58 138 1121 1121 139 74 74 139 75 75 139 73 73 140 58 58 140 89 89 140 89 89 141 58 58 141 59 59 141 89 89 142 59 59 142 91 91 142 91 91 143 59 59 143 60 60 143 91 91 144 60 60 144 76 76 144 76 76 145 60 60 145 64 64 145 76 76 146 64 64 146 77 77 146 77 77 147 64 64 147 78 78 147 77 77 148 78 78 148 93 93 148 93 93 149 78 78 149 79 79 149 93 93 150 79 79 150 80 80 150 80 80 151 79 79 151 66 66 151 80 80 152 66 66 152 95 95 152 95 95 153 66 66 153 81 81 153 95 95 154 81 81 154 82 82 154 82 82 155 81 81 155 83 83 155 82 82 156 83 83 156 84 84 156 84 84 157 83 83 157 69 69 157 84 84 158 69 69 158 85 85 158 85 85 159 69 69 159 71 71 159 85 85 160 71 71 160 86 86 160 86 86 161 71 71 161 72 72 161 86 86 162 72 72 162 100 100 162 101 101 163 57 57 163 73 73 163 75 75 164 342 342 164 87 87 164 101 101 165 73 73 165 88 88 165 88 88 166 73 73 166 89 89 166 88 88 167 89 89 167 90 90 167 90 90 168 89 89 168 91 91 168 90 90 169 91 91 169 104 104 169 104 104 170 91 91 170 76 76 170 104 104 171 76 76 171 105 105 171 105 105 172 76 76 172 77 77 172 105 105 173 77 77 173 92 92 173 92 92 174 77 77 174 93 93 174 92 92 175 93 93 175 94 94 175 94 94 176 93 93 176 80 80 176 94 94 177 80 80 177 107 107 177 107 107 178 80 80 178 95 95 178 107 107 179 95 95 179 109 109 179 109 109 180 95 95 180 82 82 180 109 109 181 82 82 181 96 96 181 96 96 182 82 82 182 84 84 182 96 96 183 84 84 183 97 97 183 97 97 184 84 84 184 85 85 184 97 97 185 85 85 185 98 98 185 98 98 186 85 85 186 86 86 186 98 98 187 86 86 187 99 99 187 99 99 188 86 86 188 100 100 188 99 99 189 100 100 189 1079 1079 189 114 114 190 57 57 190 101 101 190 87 87 191 341 341 191 1123 1123 191 114 114 192 101 101 192 102 102 192 102 102 193 101 101 193 88 88 193 102 102 194 88 88 194 103 103 194 103 103 195 88 88 195 90 90 195 103 103 196 90 90 196 117 117 196 117 117 197 90 90 197 104 104 197 117 117 198 104 104 198 120 120 198 120 120 199 104 104 199 105 105 199 120 120 200 105 105 200 106 106 200 106 106 201 105 105 201 92 92 201 106 106 202 92 92 202 121 121 202 121 121 203 92 92 203 94 94 203 121 121 204 94 94 204 123 123 204 123 123 205 94 94 205 107 107 205 123 123 206 107 107 206 108 108 206 108 108 207 107 107 207 109 109 207 108 108 208 109 109 208 127 127 208 127 127 209 109 109 209 96 96 209 127 127 210 96 96 210 110 110 210 110 110 211 96 96 211 97 97 211 110 110 212 97 97 212 111 111 212 111 111 213 97 97 213 98 98 213 111 111 214 98 98 214 129 129 214 129 129 215 98 98 215 99 99 215 129 129 216 99 99 216 112 112 216 112 112 217 99 99 217 1079 1079 217 112 112 218 1079 1079 218 1077 1077 218 113 113 219 57 57 219 114 114 219 1123 1123 220 333 333 220 1125 1125 220 113 113 221 114 114 221 115 115 221 115 115 222 114 114 222 102 102 222 115 115 223 102 102 223 133 133 223 133 133 224 102 102 224 103 103 224 133 133 225 103 103 225 116 116 225 116 116 226 103 103 226 117 117 226 116 116 227 117 117 227 118 118 227 118 118 228 117 117 228 120 120 228 118 118 229 120 120 229 119 119 229 119 119 230 120 120 230 106 106 230 119 119 231 106 106 231 122 122 231 122 122 232 106 106 232 121 121 232 122 122 233 121 121 233 124 124 233 124 124 234 121 121 234 123 123 234 124 124 235 123 123 235 136 136 235 136 136 236 123 123 236 108 108 236 136 136 237 108 108 237 125 125 237 125 125 238 108 108 238 127 127 238 125 125 239 127 127 239 126 126 239 126 126 240 127 127 240 110 110 240 126 126 241 110 110 241 137 137 241 137 137 242 110 110 242 111 111 242 137 137 243 111 111 243 128 128 243 128 128 244 111 111 244 129 129 244 128 128 245 129 129 245 138 138 245 138 138 246 129 129 246 112 112 246 138 138 247 112 112 247 140 140 247 140 140 248 112 112 248 1077 1077 248 140 140 249 1077 1077 249 141 141 249 142 142 250 57 57 250 113 113 250 1125 1125 251 313 313 251 1126 1126 251 142 142 252 113 113 252 130 130 252 130 130 253 113 113 253 115 115 253 130 130 254 115 115 254 131 131 254 131 131 255 115 115 255 133 133 255 131 131 256 133 133 256 132 132 256 132 132 257 133 133 257 116 116 257 132 132 258 116 116 258 145 145 258 145 145 259 116 116 259 118 118 259 145 145 260 118 118 260 147 147 260 147 147 261 118 118 261 119 119 261 147 147 262 119 119 262 148 148 262 148 148 263 119 119 263 122 122 263 148 148 264 122 122 264 149 149 264 149 149 265 122 122 265 124 124 265 149 149 266 124 124 266 134 134 266 134 134 267 124 124 267 136 136 267 134 134 268 136 136 268 135 135 268 135 135 269 136 136 269 125 125 269 135 135 270 125 125 270 152 152 270 152 152 271 125 125 271 126 126 271 152 152 272 126 126 272 154 154 272 154 154 273 126 126 273 137 137 273 154 154 274 137 137 274 155 155 274 155 155 275 137 137 275 128 128 275 155 155 276 128 128 276 156 156 276 156 156 277 128 128 277 138 138 277 156 156 278 138 138 278 139 139 278 139 139 279 138 138 279 140 140 279 139 139 280 140 140 280 158 158 280 158 158 281 140 140 281 141 141 281 158 158 282 141 141 282 159 159 282 161 161 283 57 57 283 142 142 283 1126 1126 284 312 312 284 162 162 284 161 161 285 142 142 285 165 165 285 165 165 286 142 142 286 130 130 286 165 165 287 130 130 287 143 143 287 143 143 288 130 130 288 131 131 288 143 143 289 131 131 289 167 167 289 167 167 290 131 131 290 132 132 290 167 167 291 132 132 291 144 144 291 144 144 292 132 132 292 145 145 292 144 144 293 145 145 293 146 146 293 146 146 294 145 145 294 147 147 294 146 146 295 147 147 295 171 171 295 171 171 296 147 147 296 148 148 296 171 171 297 148 148 297 172 172 297 172 172 298 148 148 298 149 149 298 172 172 299 149 149 299 173 173 299 173 173 300 149 149 300 134 134 300 173 173 301 134 134 301 150 150 301 150 150 302 134 134 302 135 135 302 150 150 303 135 135 303 151 151 303 151 151 304 135 135 304 152 152 304 151 151 305 152 152 305 153 153 305 153 153 306 152 152 306 154 154 306 153 153 307 154 154 307 175 175 307 175 175 308 154 154 308 155 155 308 175 175 309 155 155 309 177 177 309 177 177 310 155 155 310 156 156 310 177 177 311 156 156 311 179 179 311 179 179 312 156 156 312 139 139 312 179 179 313 139 139 313 157 157 313 157 157 314 139 139 314 158 158 314 157 157 315 158 158 315 180 180 315 180 180 316 158 158 316 159 159 316 180 180 317 159 159 317 160 160 317 183 183 318 57 57 318 161 161 318 162 162 319 306 306 319 163 163 319 183 183 320 161 161 320 164 164 320 164 164 321 161 161 321 165 165 321 164 164 322 165 165 322 186 186 322 186 186 323 165 165 323 143 143 323 186 186 324 143 143 324 166 166 324 166 166 325 143 143 325 167 167 325 166 166 326 167 167 326 187 187 326 187 187 327 167 167 327 144 144 327 187 187 328 144 144 328 168 168 328 168 168 329 144 144 329 146 146 329 168 168 330 146 146 330 169 169 330 169 169 331 146 146 331 171 171 331 169 169 332 171 171 332 170 170 332 170 170 333 171 171 333 172 172 333 170 170 334 172 172 334 191 191 334 191 191 335 172 172 335 173 173 335 191 191 336 173 173 336 192 192 336 192 192 337 173 173 337 150 150 337 192 192 338 150 150 338 193 193 338 193 193 339 150 150 339 151 151 339 193 193 340 151 151 340 194 194 340 194 194 341 151 151 341 153 153 341 194 194 342 153 153 342 174 174 342 174 174 343 153 153 343 175 175 343 174 174 344 175 175 344 176 176 344 176 176 345 175 175 345 177 177 345 176 176 346 177 177 346 178 178 346 178 178 347 177 177 347 179 179 347 178 178 348 179 179 348 196 196 348 196 196 349 179 179 349 157 157 349 196 196 350 157 157 350 197 197 350 197 197 351 157 157 351 180 180 351 197 197 352 180 180 352 181 181 352 181 181 353 180 180 353 160 160 353 181 181 354 160 160 354 1076 1076 354 182 182 355 57 57 355 183 183 355 163 163 356 294 294 356 293 293 356 182 182 357 183 183 357 184 184 357 184 184 358 183 183 358 164 164 358 184 184 359 164 164 359 185 185 359 185 185 360 164 164 360 186 186 360 185 185 361 186 186 361 203 203 361 203 203 362 186 186 362 166 166 362 203 203 363 166 166 363 204 204 363 204 204 364 166 166 364 187 187 364 204 204 365 187 187 365 205 205 365 205 205 366 187 187 366 168 168 366 205 205 367 168 168 367 188 188 367 188 188 368 168 168 368 169 169 368 188 188 369 169 169 369 189 189 369 189 189 370 169 169 370 170 170 370 189 189 371 170 170 371 208 208 371 208 208 372 170 170 372 191 191 372 208 208 373 191 191 373 190 190 373 190 190 374 191 191 374 192 192 374 190 190 375 192 192 375 209 209 375 209 209 376 192 192 376 193 193 376 209 209 377 193 193 377 210 210 377 210 210 378 193 193 378 194 194 378 210 210 379 194 194 379 212 212 379 212 212 380 194 194 380 174 174 380 212 212 381 174 174 381 195 195 381 195 195 382 174 174 382 176 176 382 195 195 383 176 176 383 213 213 383 213 213 384 176 176 384 178 178 384 213 213 385 178 178 385 214 214 385 214 214 386 178 178 386 196 196 386 214 214 387 196 196 387 215 215 387 215 215 388 196 196 388 197 197 388 215 215 389 197 197 389 198 198 389 198 198 390 197 197 390 181 181 390 198 198 391 181 181 391 199 199 391 199 199 392 181 181 392 1076 1076 392 199 199 393 1076 1076 393 1074 1074 393 200 200 394 57 57 394 182 182 394 293 293 395 295 295 395 1130 1130 395 200 200 396 182 182 396 221 221 396 221 221 397 182 182 397 184 184 397 221 221 398 184 184 398 201 201 398 201 201 399 184 184 399 185 185 399 201 201 400 185 185 400 202 202 400 202 202 401 185 185 401 203 203 401 202 202 402 203 203 402 224 224 402 224 224 403 203 203 403 204 204 403 224 224 404 204 204 404 225 225 404 225 225 405 204 204 405 205 205 405 225 225 406 205 205 406 226 226 406 226 226 407 205 205 407 188 188 407 226 226 408 188 188 408 206 206 408 206 206 409 188 188 409 189 189 409 206 206 410 189 189 410 207 207 410 207 207 411 189 189 411 208 208 411 207 207 412 208 208 412 228 228 412 228 228 413 208 208 413 190 190 413 228 228 414 190 190 414 231 231 414 231 231 415 190 190 415 209 209 415 231 231 416 209 209 416 234 234 416 234 234 417 209 209 417 210 210 417 234 234 418 210 210 418 236 236 418 236 236 419 210 210 419 212 212 419 236 236 420 212 212 420 211 211 420 211 211 421 212 212 421 195 195 421 211 211 422 195 195 422 239 239 422 239 239 423 195 195 423 213 213 423 239 239 424 213 213 424 240 240 424 240 240 425 213 213 425 214 214 425 240 240 426 214 214 426 241 241 426 241 241 427 214 214 427 215 215 427 241 241 428 215 215 428 216 216 428 216 216 429 215 215 429 198 198 429 216 216 430 198 198 430 245 245 430 245 245 431 198 198 431 199 199 431 245 245 432 199 199 432 217 217 432 217 217 433 199 199 433 1074 1074 433 217 217 434 1074 1074 434 218 218 434 248 248 435 57 57 435 200 200 435 1130 1130 436 219 219 436 220 220 436 248 248 437 200 200 437 249 249 437 249 249 438 200 200 438 221 221 438 249 249 439 221 221 439 222 222 439 222 222 440 221 221 440 201 201 440 222 222 441 201 201 441 223 223 441 223 223 442 201 201 442 202 202 442 223 223 443 202 202 443 251 251 443 251 251 444 202 202 444 224 224 444 251 251 445 224 224 445 252 252 445 252 252 446 224 224 446 225 225 446 252 252 447 225 225 447 227 227 447 227 227 448 225 225 448 226 226 448 227 227 449 226 226 449 254 254 449 254 254 450 226 226 450 206 206 450 254 254 451 206 206 451 256 256 451 256 256 452 206 206 452 207 207 452 256 256 453 207 207 453 229 229 453 229 229 454 207 207 454 228 228 454 229 229 455 228 228 455 230 230 455 230 230 456 228 228 456 231 231 456 230 230 457 231 231 457 232 232 457 232 232 458 231 231 458 234 234 458 232 232 459 234 234 459 233 233 459 233 233 460 234 234 460 236 236 460 233 233 461 236 236 461 235 235 461 235 235 462 236 236 462 211 211 462 235 235 463 211 211 463 237 237 463 237 237 464 211 211 464 239 239 464 237 237 465 239 239 465 238 238 465 238 238 466 239 239 466 240 240 466 238 238 467 240 240 467 242 242 467 242 242 468 240 240 468 241 241 468 242 242 469 241 241 469 243 243 469 243 243 470 241 241 470 216 216 470 243 243 471 216 216 471 244 244 471 244 244 472 216 216 472 245 245 472 244 244 473 245 245 473 246 246 473 246 246 474 245 245 474 217 217 474 246 246 475 217 217 475 247 247 475 247 247 476 217 217 476 218 218 476 247 247 477 218 218 477 1072 1072 477 1093 1093 478 57 57 478 248 248 478 220 220 479 286 286 479 1131 1131 479 1093 1093 480 248 248 480 1095 1095 480 1095 1095 481 248 248 481 249 249 481 1095 1095 482 249 249 482 1096 1096 482 1096 1096 483 249 249 483 222 222 483 1096 1096 484 222 222 484 250 250 484 250 250 485 222 222 485 223 223 485 250 250 486 223 223 486 1097 1097 486 1097 1097 487 223 223 487 251 251 487 1097 1097 488 251 251 488 1098 1098 488 1098 1098 489 251 251 489 252 252 489 1098 1098 490 252 252 490 253 253 490 253 253 491 252 252 491 227 227 491 253 253 492 227 227 492 1100 1100 492 1100 1100 493 227 227 493 254 254 493 1100 1100 494 254 254 494 255 255 494 255 255 495 254 254 495 256 256 495 255 255 496 256 256 496 1103 1103 496 1103 1103 497 256 256 497 229 229 497 1103 1103 498 229 229 498 257 257 498 257 257 499 229 229 499 230 230 499 257 257 500 230 230 500 258 258 500 258 258 501 230 230 501 232 232 501 258 258 502 232 232 502 1105 1105 502 1105 1105 503 232 232 503 233 233 503 1105 1105 504 233 233 504 259 259 504 259 259 505 233 233 505 235 235 505 259 259 506 235 235 506 260 260 506 260 260 507 235 235 507 237 237 507 260 260 508 237 237 508 1107 1107 508 1107 1107 509 237 237 509 238 238 509 1107 1107 510 238 238 510 1108 1108 510 1108 1108 511 238 238 511 242 242 511 1108 1108 512 242 242 512 261 261 512 261 261 513 242 242 513 243 243 513 261 261 514 243 243 514 262 262 514 262 262 515 243 243 515 244 244 515 262 262 516 244 244 516 1112 1112 516 1112 1112 517 244 244 517 246 246 517 1112 1112 518 246 246 518 263 263 518 263 263 519 246 246 519 247 247 519 263 263 520 247 247 520 264 264 520 264 264 521 247 247 521 1072 1072 521 264 264 522 1072 1072 522 1114 1114 522 427 427 523 57 57 523 1093 1093 523 1131 1131 524 265 265 524 283 283 524 1137 1137 525 266 266 525 1021 1021 525 1021 1021 526 266 266 526 1118 1118 526 1021 1021 527 1118 1118 527 1022 1022 527 1022 1022 528 1118 1118 528 1119 1119 528 1022 1022 529 1119 1119 529 267 267 529 267 267 530 1119 1119 530 268 268 530 267 267 531 268 268 531 270 270 531 270 270 532 268 268 532 269 269 532 270 270 533 269 269 533 271 271 533 271 271 534 269 269 534 1122 1122 534 271 271 535 1122 1122 535 1027 1027 535 1027 1027 536 1122 1122 536 272 272 536 1027 1027 537 272 272 537 1028 1028 537 1028 1028 538 272 272 538 273 273 538 1028 1028 539 273 273 539 1029 1029 539 1029 1029 540 273 273 540 274 274 540 1029 1029 541 274 274 541 1031 1031 541 1031 1031 542 274 274 542 1124 1124 542 1031 1031 543 1124 1124 543 1033 1033 543 1033 1033 544 1124 1124 544 1127 1127 544 1033 1033 545 1127 1127 545 275 275 545 275 275 546 1127 1127 546 1128 1128 546 275 275 547 1128 1128 547 277 277 547 277 277 548 1128 1128 548 276 276 548 277 277 549 276 276 549 1036 1036 549 1036 1036 550 276 276 550 1129 1129 550 1036 1036 551 1129 1129 551 1037 1037 551 1037 1037 552 1129 1129 552 278 278 552 1037 1037 553 278 278 553 1038 1038 553 1038 1038 554 278 278 554 279 279 554 1038 1038 555 279 279 555 1040 1040 555 1040 1040 556 279 279 556 280 280 556 1040 1040 557 280 280 557 1041 1041 557 1041 1041 558 280 280 558 1132 1132 558 1041 1041 559 1132 1132 559 281 281 559 281 281 560 1132 1132 560 282 282 560 281 281 561 282 282 561 1044 1044 561 0 0 562 1133 1133 562 283 283 562 283 283 563 265 265 563 0 0 563 0 0 564 265 265 564 284 284 564 0 0 565 284 284 565 292 292 565 1131 1131 566 286 286 566 265 265 566 265 265 567 286 286 567 285 285 567 265 265 568 285 285 568 284 284 568 284 284 569 285 285 569 289 289 569 284 284 570 289 289 570 292 292 570 220 220 571 219 219 571 286 286 571 286 286 572 219 219 572 287 287 572 286 286 573 287 287 573 285 285 573 285 285 574 287 287 574 288 288 574 285 285 575 288 288 575 289 289 575 289 289 576 288 288 576 290 290 576 289 289 577 290 290 577 292 292 577 1130 1130 578 295 295 578 219 219 578 219 219 579 295 295 579 297 297 579 219 219 580 297 297 580 287 287 580 287 287 581 297 297 581 299 299 581 287 287 582 299 299 582 288 288 582 288 288 583 299 299 583 291 291 583 288 288 584 291 291 584 290 290 584 290 290 585 291 291 585 301 301 585 290 290 586 301 301 586 292 292 586 293 293 587 294 294 587 295 295 587 295 295 588 294 294 588 296 296 588 295 295 589 296 296 589 297 297 589 297 297 590 296 296 590 298 298 590 297 297 591 298 298 591 299 299 591 299 299 592 298 298 592 300 300 592 299 299 593 300 300 593 291 291 593 291 291 594 300 300 594 303 303 594 291 291 595 303 303 595 301 301 595 301 301 596 303 303 596 305 305 596 301 301 597 305 305 597 292 292 597 163 163 598 306 306 598 294 294 598 294 294 599 306 306 599 307 307 599 294 294 600 307 307 600 296 296 600 296 296 601 307 307 601 308 308 601 296 296 602 308 308 602 298 298 602 298 298 603 308 308 603 309 309 603 298 298 604 309 309 604 300 300 604 300 300 605 309 309 605 302 302 605 300 300 606 302 302 606 303 303 606 303 303 607 302 302 607 304 304 607 303 303 608 304 304 608 305 305 608 305 305 609 304 304 609 310 310 609 305 305 610 310 310 610 292 292 610 162 162 611 312 312 611 306 306 611 306 306 612 312 312 612 314 314 612 306 306 613 314 314 613 307 307 613 307 307 614 314 314 614 317 317 614 307 307 615 317 317 615 308 308 615 308 308 616 317 317 616 318 318 616 308 308 617 318 318 617 309 309 617 309 309 618 318 318 618 320 320 618 309 309 619 320 320 619 302 302 619 302 302 620 320 320 620 321 321 620 302 302 621 321 321 621 304 304 621 304 304 622 321 321 622 323 323 622 304 304 623 323 323 623 310 310 623 310 310 624 323 323 624 311 311 624 310 310 625 311 311 625 292 292 625 1126 1126 626 313 313 626 312 312 626 312 312 627 313 313 627 325 325 627 312 312 628 325 325 628 314 314 628 314 314 629 325 325 629 315 315 629 314 314 630 315 315 630 317 317 630 317 317 631 315 315 631 316 316 631 317 317 632 316 316 632 318 318 632 318 318 633 316 316 633 319 319 633 318 318 634 319 319 634 320 320 634 320 320 635 319 319 635 328 328 635 320 320 636 328 328 636 321 321 636 321 321 637 328 328 637 322 322 637 321 321 638 322 322 638 323 323 638 323 323 639 322 322 639 330 330 639 323 323 640 330 330 640 311 311 640 311 311 641 330 330 641 331 331 641 311 311 642 331 331 642 292 292 642 1125 1125 643 333 333 643 313 313 643 313 313 644 333 333 644 324 324 644 313 313 645 324 324 645 325 325 645 325 325 646 324 324 646 336 336 646 325 325 647 336 336 647 315 315 647 315 315 648 336 336 648 337 337 648 315 315 649 337 337 649 316 316 649 316 316 650 337 337 650 326 326 650 316 316 651 326 326 651 319 319 651 319 319 652 326 326 652 327 327 652 319 319 653 327 327 653 328 328 653 328 328 654 327 327 654 329 329 654 328 328 655 329 329 655 322 322 655 322 322 656 329 329 656 338 338 656 322 322 657 338 338 657 330 330 657 330 330 658 338 338 658 340 340 658 330 330 659 340 340 659 331 331 659 331 331 660 340 340 660 332 332 660 331 331 661 332 332 661 292 292 661 1123 1123 662 341 341 662 333 333 662 333 333 663 341 341 663 334 334 663 333 333 664 334 334 664 324 324 664 324 324 665 334 334 665 343 343 665 324 324 666 343 343 666 336 336 666 336 336 667 343 343 667 335 335 667 336 336 668 335 335 668 337 337 668 337 337 669 335 335 669 344 344 669 337 337 670 344 344 670 326 326 670 326 326 671 344 344 671 348 348 671 326 326 672 348 348 672 327 327 672 327 327 673 348 348 673 350 350 673 327 327 674 350 350 674 329 329 674 329 329 675 350 350 675 351 351 675 329 329 676 351 351 676 338 338 676 338 338 677 351 351 677 339 339 677 338 338 678 339 339 678 340 340 678 340 340 679 339 339 679 354 354 679 340 340 680 354 354 680 332 332 680 332 332 681 354 354 681 356 356 681 332 332 682 356 356 682 292 292 682 87 87 683 342 342 683 341 341 683 341 341 684 342 342 684 357 357 684 341 341 685 357 357 685 334 334 685 334 334 686 357 357 686 359 359 686 334 334 687 359 359 687 343 343 687 343 343 688 359 359 688 360 360 688 343 343 689 360 360 689 335 335 689 335 335 690 360 360 690 345 345 690 335 335 691 345 345 691 344 344 691 344 344 692 345 345 692 346 346 692 344 344 693 346 346 693 348 348 693 348 348 694 346 346 694 347 347 694 348 348 695 347 347 695 350 350 695 350 350 696 347 347 696 349 349 696 350 350 697 349 349 697 351 351 697 351 351 698 349 349 698 352 352 698 351 351 699 352 352 699 339 339 699 339 339 700 352 352 700 353 353 700 339 339 701 353 353 701 354 354 701 354 354 702 353 353 702 365 365 702 354 354 703 365 365 703 356 356 703 356 356 704 365 365 704 355 355 704 356 356 705 355 355 705 292 292 705 75 75 706 74 74 706 342 342 706 342 342 707 74 74 707 358 358 707 342 342 708 358 358 708 357 357 708 357 357 709 358 358 709 368 368 709 357 357 710 368 368 710 359 359 710 359 359 711 368 368 711 369 369 711 359 359 712 369 369 712 360 360 712 360 360 713 369 369 713 361 361 713 360 360 714 361 361 714 345 345 714 345 345 715 361 361 715 371 371 715 345 345 716 371 371 716 346 346 716 346 346 717 371 371 717 372 372 717 346 346 718 372 372 718 347 347 718 347 347 719 372 372 719 362 362 719 347 347 720 362 362 720 349 349 720 349 349 721 362 362 721 373 373 721 349 349 722 373 373 722 352 352 722 352 352 723 373 373 723 363 363 723 352 352 724 363 363 724 353 353 724 353 353 725 363 363 725 364 364 725 353 353 726 364 364 726 365 365 726 365 365 727 364 364 727 377 377 727 365 365 728 377 377 728 355 355 728 355 355 729 377 377 729 366 366 729 355 355 730 366 366 730 292 292 730 1121 1121 731 380 380 731 74 74 731 74 74 732 380 380 732 367 367 732 74 74 733 367 367 733 358 358 733 358 358 734 367 367 734 384 384 734 358 358 735 384 384 735 368 368 735 368 368 736 384 384 736 385 385 736 368 368 737 385 385 737 369 369 737 369 369 738 385 385 738 370 370 738 369 369 739 370 370 739 361 361 739 361 361 740 370 370 740 387 387 740 361 361 741 387 387 741 371 371 741 371 371 742 387 387 742 389 389 742 371 371 743 389 389 743 372 372 743 372 372 744 389 389 744 390 390 744 372 372 745 390 390 745 362 362 745 362 362 746 390 390 746 391 391 746 362 362 747 391 391 747 373 373 747 373 373 748 391 391 748 374 374 748 373 373 749 374 374 749 363 363 749 363 363 750 374 374 750 375 375 750 363 363 751 375 375 751 364 364 751 364 364 752 375 375 752 376 376 752 364 364 753 376 376 753 377 377 753 377 377 754 376 376 754 378 378 754 377 377 755 378 378 755 366 366 755 366 366 756 378 378 756 394 394 756 366 366 757 394 394 757 292 292 757 1120 1120 758 379 379 758 380 380 758 380 380 759 379 379 759 381 381 759 380 380 760 381 381 760 367 367 760 367 367 761 381 381 761 382 382 761 367 367 762 382 382 762 384 384 762 384 384 763 382 382 763 383 383 763 384 384 764 383 383 764 385 385 764 385 385 765 383 383 765 386 386 765 385 385 766 386 386 766 370 370 766 370 370 767 386 386 767 399 399 767 370 370 768 399 399 768 387 387 768 387 387 769 399 399 769 388 388 769 387 387 770 388 388 770 389 389 770 389 389 771 388 388 771 400 400 771 389 389 772 400 400 772 390 390 772 390 390 773 400 400 773 402 402 773 390 390 774 402 402 774 391 391 774 391 391 775 402 402 775 403 403 775 391 391 776 403 403 776 374 374 776 374 374 777 403 403 777 404 404 777 374 374 778 404 404 778 375 375 778 375 375 779 404 404 779 405 405 779 375 375 780 405 405 780 376 376 780 376 376 781 405 405 781 392 392 781 376 376 782 392 392 782 378 378 782 378 378 783 392 392 783 409 409 783 378 378 784 409 409 784 394 394 784 394 394 785 409 409 785 393 393 785 394 394 786 393 393 786 292 292 786 395 395 787 411 411 787 379 379 787 379 379 788 411 411 788 396 396 788 379 379 789 396 396 789 381 381 789 381 381 790 396 396 790 412 412 790 381 381 791 412 412 791 382 382 791 382 382 792 412 412 792 414 414 792 382 382 793 414 414 793 383 383 793 383 383 794 414 414 794 397 397 794 383 383 795 397 397 795 386 386 795 386 386 796 397 397 796 398 398 796 386 386 797 398 398 797 399 399 797 399 399 798 398 398 798 415 415 798 399 399 799 415 415 799 388 388 799 388 388 800 415 415 800 417 417 800 388 388 801 417 417 801 400 400 801 400 400 802 417 417 802 401 401 802 400 400 803 401 401 803 402 402 803 402 402 804 401 401 804 418 418 804 402 402 805 418 418 805 403 403 805 403 403 806 418 418 806 420 420 806 403 403 807 420 420 807 404 404 807 404 404 808 420 420 808 406 406 808 404 404 809 406 406 809 405 405 809 405 405 810 406 406 810 423 423 810 405 405 811 423 423 811 392 392 811 392 392 812 423 423 812 407 407 812 392 392 813 407 407 813 409 409 813 409 409 814 407 407 814 408 408 814 409 409 815 408 408 815 393 393 815 393 393 816 408 408 816 425 425 816 393 393 817 425 425 817 292 292 817 39 39 818 410 410 818 411 411 818 411 411 819 410 410 819 1140 1140 819 411 411 820 1140 1140 820 396 396 820 396 396 821 1140 1140 821 413 413 821 396 396 822 413 413 822 412 412 822 412 412 823 413 413 823 1143 1143 823 412 412 824 1143 1143 824 414 414 824 414 414 825 1143 1143 825 1144 1144 825 414 414 826 1144 1144 826 397 397 826 397 397 827 1144 1144 827 1145 1145 827 397 397 828 1145 1145 828 398 398 828 398 398 829 1145 1145 829 1147 1147 829 398 398 830 1147 1147 830 415 415 830 415 415 831 1147 1147 831 1148 1148 831 415 415 832 1148 1148 832 417 417 832 417 417 833 1148 1148 833 416 416 833 417 417 834 416 416 834 401 401 834 401 401 835 416 416 835 1150 1150 835 401 401 836 1150 1150 836 418 418 836 418 418 837 1150 1150 837 419 419 837 418 418 838 419 419 838 420 420 838 420 420 839 419 419 839 421 421 839 420 420 840 421 421 840 406 406 840 406 406 841 421 421 841 422 422 841 406 406 842 422 422 842 423 423 842 423 423 843 422 422 843 424 424 843 423 423 844 424 424 844 407 407 844 407 407 845 424 424 845 1153 1153 845 407 407 846 1153 1153 846 408 408 846 408 408 847 1153 1153 847 426 426 847 408 408 848 426 426 848 425 425 848 425 425 849 426 426 849 1154 1154 849 425 425 850 1154 1154 850 292 292 850 5 5 851 427 427 851 428 428 851 428 428 852 427 427 852 1094 1094 852 428 428 853 1094 1094 853 1135 1135 853 1135 1135 854 1094 1094 854 429 429 854 1135 1135 855 429 429 855 1136 1136 855 1136 1136 856 429 429 856 430 430 856 1136 1136 857 430 430 857 1138 1138 857 1138 1138 858 430 430 858 431 431 858 1138 1138 859 431 431 859 1139 1139 859 1139 1139 860 431 431 860 432 432 860 1139 1139 861 432 432 861 433 433 861 433 433 862 432 432 862 434 434 862 433 433 863 434 434 863 1141 1141 863 1141 1141 864 434 434 864 1099 1099 864 1141 1141 865 1099 1099 865 435 435 865 435 435 866 1099 1099 866 436 436 866 435 435 867 436 436 867 437 437 867 437 437 868 436 436 868 1101 1101 868 437 437 869 1101 1101 869 1142 1142 869 1142 1142 870 1101 1101 870 1102 1102 870 1142 1142 871 1102 1102 871 438 438 871 438 438 872 1102 1102 872 439 439 872 438 438 873 439 439 873 1146 1146 873 1146 1146 874 439 439 874 1104 1104 874 1146 1146 875 1104 1104 875 440 440 875 440 440 876 1104 1104 876 441 441 876 440 440 877 441 441 877 1149 1149 877 1149 1149 878 441 441 878 442 442 878 1149 1149 879 442 442 879 443 443 879 443 443 880 442 442 880 1106 1106 880 443 443 881 1106 1106 881 1151 1151 881 1151 1151 882 1106 1106 882 444 444 882 1151 1151 883 444 444 883 1152 1152 883 1152 1152 884 444 444 884 1109 1109 884 1152 1152 885 1109 1109 885 445 445 885 445 445 886 1109 1109 886 1110 1110 886 445 445 887 1110 1110 887 446 446 887 446 446 888 1110 1110 888 1111 1111 888 446 446 889 1111 1111 889 447 447 889 447 447 890 1111 1111 890 448 448 890 447 447 891 448 448 891 449 449 891 449 449 892 448 448 892 450 450 892 449 449 893 450 450 893 451 451 893 451 451 894 450 450 894 1113 1113 894 451 451 895 1113 1113 895 1155 1155 895 1155 1155 896 1113 1113 896 1115 1115 896 1155 1155 897 1115 1115 897 292 292 897 292 292 898 1116 1116 898 1045 1045 898 1045 1045 899 1116 1116 899 1071 1071 899 1045 1045 900 1071 1071 900 1046 1046 900 1046 1046 901 1071 1071 901 1073 1073 901 1046 1046 902 1073 1073 902 1047 1047 902 1047 1047 903 1073 1073 903 1075 1075 903 1047 1047 904 1075 1075 904 452 452 904 452 452 905 1075 1075 905 453 453 905 452 452 906 453 453 906 1049 1049 906 1049 1049 907 453 453 907 454 454 907 1049 1049 908 454 454 908 455 455 908 455 455 909 454 454 909 456 456 909 455 455 910 456 456 910 1053 1053 910 1053 1053 911 456 456 911 457 457 911 1053 1053 912 457 457 912 1054 1054 912 1054 1054 913 457 457 913 458 458 913 1054 1054 914 458 458 914 459 459 914 459 459 915 458 458 915 1078 1078 915 459 459 916 1078 1078 916 1057 1057 916 1057 1057 917 1078 1078 917 1080 1080 917 1057 1057 918 1080 1080 918 461 461 918 461 461 919 1080 1080 919 460 460 919 461 461 920 460 460 920 1060 1060 920 1060 1060 921 460 460 921 462 462 921 1060 1060 922 462 462 922 1061 1061 922 1061 1061 923 462 462 923 1081 1081 923 1061 1061 924 1081 1081 924 463 463 924 463 463 925 1081 1081 925 464 464 925 463 463 926 464 464 926 465 465 926 465 465 927 464 464 927 1084 1084 927 465 465 928 1084 1084 928 1064 1064 928 1064 1064 929 1084 1084 929 466 466 929 1064 1064 930 466 466 930 1066 1066 930 1066 1066 931 466 466 931 467 467 931 1066 1066 932 467 467 932 468 468 932 468 468 933 467 467 933 469 469 933 468 468 934 469 469 934 470 470 934 470 470 935 469 469 935 1088 1088 935 470 470 936 1088 1088 936 471 471 936 471 471 937 1088 1088 937 1089 1089 937 471 471 938 1089 1089 938 472 472 938 472 472 939 1089 1089 939 1090 1090 939 472 472 940 1090 1090 940 1069 1069 940 1069 1069 941 1090 1090 941 1091 1091 941 1069 1069 942 1091 1091 942 473 473 942 473 473 943 1091 1091 943 1092 1092 943 473 473 944 1092 1092 944 1070 1070 944 1070 1070 945 1092 1092 945 57 57 945 292 292 946 474 474 946 520 520 946 520 520 947 474 474 947 475 475 947 520 520 948 475 475 948 519 519 948 519 519 949 475 475 949 476 476 949 519 519 950 476 476 950 517 517 950 517 517 951 476 476 951 1048 1048 951 517 517 952 1048 1048 952 515 515 952 515 515 953 1048 1048 953 1050 1050 953 515 515 954 1050 1050 954 514 514 954 514 514 955 1050 1050 955 1051 1051 955 514 514 956 1051 1051 956 513 513 956 513 513 957 1051 1051 957 1052 1052 957 513 513 958 1052 1052 958 512 512 958 512 512 959 1052 1052 959 1055 1055 959 512 512 960 1055 1055 960 510 510 960 510 510 961 1055 1055 961 1056 1056 961 510 510 962 1056 1056 962 508 508 962 508 508 963 1056 1056 963 1058 1058 963 508 508 964 1058 1058 964 478 478 964 478 478 965 1058 1058 965 477 477 965 478 478 966 477 477 966 507 507 966 507 507 967 477 477 967 1059 1059 967 507 507 968 1059 1059 968 504 504 968 504 504 969 1059 1059 969 1062 1062 969 504 504 970 1062 1062 970 502 502 970 502 502 971 1062 1062 971 480 480 971 502 502 972 480 480 972 479 479 972 479 479 973 480 480 973 1063 1063 973 479 479 974 1063 1063 974 501 501 974 501 501 975 1063 1063 975 1065 1065 975 501 501 976 1065 1065 976 500 500 976 500 500 977 1065 1065 977 1067 1067 977 500 500 978 1067 1067 978 499 499 978 499 499 979 1067 1067 979 481 481 979 499 499 980 481 481 980 498 498 980 498 498 981 481 481 981 1068 1068 981 498 498 982 1068 1068 982 497 497 982 497 497 983 1068 1068 983 482 482 983 497 497 984 482 482 984 495 495 984 495 495 985 482 482 985 483 483 985 495 495 986 483 483 986 484 484 986 484 484 987 483 483 987 485 485 987 484 484 988 485 485 988 486 486 988 486 486 989 485 485 989 487 487 989 486 486 990 487 487 990 488 488 990 488 488 991 487 487 991 489 489 991 488 488 992 489 489 992 490 490 992 490 490 993 489 489 993 57 57 993 57 57 994 491 491 994 490 490 994 490 490 995 491 491 995 492 492 995 490 490 996 492 492 996 488 488 996 488 488 997 492 492 997 521 521 997 488 488 998 521 521 998 486 486 998 486 486 999 521 521 999 493 493 999 486 486 1000 493 493 1000 484 484 1000 484 484 1001 493 493 1001 494 494 1001 484 484 1002 494 494 1002 495 495 1002 495 495 1003 494 494 1003 496 496 1003 495 495 1004 496 496 1004 497 497 1004 497 497 1005 496 496 1005 524 524 1005 497 497 1006 524 524 1006 498 498 1006 498 498 1007 524 524 1007 526 526 1007 498 498 1008 526 526 1008 499 499 1008 499 499 1009 526 526 1009 527 527 1009 499 499 1010 527 527 1010 500 500 1010 500 500 1011 527 527 1011 530 530 1011 500 500 1012 530 530 1012 501 501 1012 501 501 1013 530 530 1013 531 531 1013 501 501 1014 531 531 1014 479 479 1014 479 479 1015 531 531 1015 533 533 1015 479 479 1016 533 533 1016 502 502 1016 502 502 1017 533 533 1017 503 503 1017 502 502 1018 503 503 1018 504 504 1018 504 504 1019 503 503 1019 505 505 1019 504 504 1020 505 505 1020 507 507 1020 507 507 1021 505 505 1021 506 506 1021 507 507 1022 506 506 1022 478 478 1022 478 478 1023 506 506 1023 537 537 1023 478 478 1024 537 537 1024 508 508 1024 508 508 1025 537 537 1025 509 509 1025 508 508 1026 509 509 1026 510 510 1026 510 510 1027 509 509 1027 541 541 1027 510 510 1028 541 541 1028 512 512 1028 512 512 1029 541 541 1029 511 511 1029 512 512 1030 511 511 1030 513 513 1030 513 513 1031 511 511 1031 544 544 1031 513 513 1032 544 544 1032 514 514 1032 514 514 1033 544 544 1033 516 516 1033 514 514 1034 516 516 1034 515 515 1034 515 515 1035 516 516 1035 545 545 1035 515 515 1036 545 545 1036 517 517 1036 517 517 1037 545 545 1037 518 518 1037 517 517 1038 518 518 1038 519 519 1038 519 519 1039 518 518 1039 546 546 1039 519 519 1040 546 546 1040 520 520 1040 520 520 1041 546 546 1041 292 292 1041 57 57 1042 548 548 1042 491 491 1042 491 491 1043 548 548 1043 549 549 1043 491 491 1044 549 549 1044 492 492 1044 492 492 1045 549 549 1045 522 522 1045 492 492 1046 522 522 1046 521 521 1046 521 521 1047 522 522 1047 552 552 1047 521 521 1048 552 552 1048 493 493 1048 493 493 1049 552 552 1049 553 553 1049 493 493 1050 553 553 1050 494 494 1050 494 494 1051 553 553 1051 554 554 1051 494 494 1052 554 554 1052 496 496 1052 496 496 1053 554 554 1053 523 523 1053 496 496 1054 523 523 1054 524 524 1054 524 524 1055 523 523 1055 525 525 1055 524 524 1056 525 525 1056 526 526 1056 526 526 1057 525 525 1057 528 528 1057 526 526 1058 528 528 1058 527 527 1058 527 527 1059 528 528 1059 557 557 1059 527 527 1060 557 557 1060 530 530 1060 530 530 1061 557 557 1061 529 529 1061 530 530 1062 529 529 1062 531 531 1062 531 531 1063 529 529 1063 532 532 1063 531 531 1064 532 532 1064 533 533 1064 533 533 1065 532 532 1065 534 534 1065 533 533 1066 534 534 1066 503 503 1066 503 503 1067 534 534 1067 535 535 1067 503 503 1068 535 535 1068 505 505 1068 505 505 1069 535 535 1069 536 536 1069 505 505 1070 536 536 1070 506 506 1070 506 506 1071 536 536 1071 538 538 1071 506 506 1072 538 538 1072 537 537 1072 537 537 1073 538 538 1073 539 539 1073 537 537 1074 539 539 1074 509 509 1074 509 509 1075 539 539 1075 540 540 1075 509 509 1076 540 540 1076 541 541 1076 541 541 1077 540 540 1077 542 542 1077 541 541 1078 542 542 1078 511 511 1078 511 511 1079 542 542 1079 543 543 1079 511 511 1080 543 543 1080 544 544 1080 544 544 1081 543 543 1081 563 563 1081 544 544 1082 563 563 1082 516 516 1082 516 516 1083 563 563 1083 564 564 1083 516 516 1084 564 564 1084 545 545 1084 545 545 1085 564 564 1085 565 565 1085 545 545 1086 565 565 1086 518 518 1086 518 518 1087 565 565 1087 567 567 1087 518 518 1088 567 567 1088 546 546 1088 546 546 1089 567 567 1089 292 292 1089 57 57 1090 547 547 1090 548 548 1090 548 548 1091 547 547 1091 568 568 1091 548 548 1092 568 568 1092 549 549 1092 549 549 1093 568 568 1093 570 570 1093 549 549 1094 570 570 1094 522 522 1094 522 522 1095 570 570 1095 550 550 1095 522 522 1096 550 550 1096 552 552 1096 552 552 1097 550 550 1097 551 551 1097 552 552 1098 551 551 1098 553 553 1098 553 553 1099 551 551 1099 572 572 1099 553 553 1100 572 572 1100 554 554 1100 554 554 1101 572 572 1101 573 573 1101 554 554 1102 573 573 1102 523 523 1102 523 523 1103 573 573 1103 555 555 1103 523 523 1104 555 555 1104 525 525 1104 525 525 1105 555 555 1105 575 575 1105 525 525 1106 575 575 1106 528 528 1106 528 528 1107 575 575 1107 577 577 1107 528 528 1108 577 577 1108 557 557 1108 557 557 1109 577 577 1109 556 556 1109 557 557 1110 556 556 1110 529 529 1110 529 529 1111 556 556 1111 578 578 1111 529 529 1112 578 578 1112 532 532 1112 532 532 1113 578 578 1113 558 558 1113 532 532 1114 558 558 1114 534 534 1114 534 534 1115 558 558 1115 559 559 1115 534 534 1116 559 559 1116 535 535 1116 535 535 1117 559 559 1117 582 582 1117 535 535 1118 582 582 1118 536 536 1118 536 536 1119 582 582 1119 583 583 1119 536 536 1120 583 583 1120 538 538 1120 538 538 1121 583 583 1121 560 560 1121 538 538 1122 560 560 1122 539 539 1122 539 539 1123 560 560 1123 561 561 1123 539 539 1124 561 561 1124 540 540 1124 540 540 1125 561 561 1125 585 585 1125 540 540 1126 585 585 1126 542 542 1126 542 542 1127 585 585 1127 562 562 1127 542 542 1128 562 562 1128 543 543 1128 543 543 1129 562 562 1129 586 586 1129 543 543 1130 586 586 1130 563 563 1130 563 563 1131 586 586 1131 588 588 1131 563 563 1132 588 588 1132 564 564 1132 564 564 1133 588 588 1133 589 589 1133 564 564 1134 589 589 1134 565 565 1134 565 565 1135 589 589 1135 566 566 1135 565 565 1136 566 566 1136 567 567 1136 567 567 1137 566 566 1137 292 292 1137 57 57 1138 593 593 1138 547 547 1138 547 547 1139 593 593 1139 594 594 1139 547 547 1140 594 594 1140 568 568 1140 568 568 1141 594 594 1141 569 569 1141 568 568 1142 569 569 1142 570 570 1142 570 570 1143 569 569 1143 595 595 1143 570 570 1144 595 595 1144 550 550 1144 550 550 1145 595 595 1145 571 571 1145 550 550 1146 571 571 1146 551 551 1146 551 551 1147 571 571 1147 598 598 1147 551 551 1148 598 598 1148 572 572 1148 572 572 1149 598 598 1149 599 599 1149 572 572 1150 599 599 1150 573 573 1150 573 573 1151 599 599 1151 574 574 1151 573 573 1152 574 574 1152 555 555 1152 555 555 1153 574 574 1153 601 601 1153 555 555 1154 601 601 1154 575 575 1154 575 575 1155 601 601 1155 576 576 1155 575 575 1156 576 576 1156 577 577 1156 577 577 1157 576 576 1157 603 603 1157 577 577 1158 603 603 1158 556 556 1158 556 556 1159 603 603 1159 604 604 1159 556 556 1160 604 604 1160 578 578 1160 578 578 1161 604 604 1161 605 605 1161 578 578 1162 605 605 1162 558 558 1162 558 558 1163 605 605 1163 579 579 1163 558 558 1164 579 579 1164 559 559 1164 559 559 1165 579 579 1165 580 580 1165 559 559 1166 580 580 1166 582 582 1166 582 582 1167 580 580 1167 581 581 1167 582 582 1168 581 581 1168 583 583 1168 583 583 1169 581 581 1169 584 584 1169 583 583 1170 584 584 1170 560 560 1170 560 560 1171 584 584 1171 609 609 1171 560 560 1172 609 609 1172 561 561 1172 561 561 1173 609 609 1173 611 611 1173 561 561 1174 611 611 1174 585 585 1174 585 585 1175 611 611 1175 612 612 1175 585 585 1176 612 612 1176 562 562 1176 562 562 1177 612 612 1177 587 587 1177 562 562 1178 587 587 1178 586 586 1178 586 586 1179 587 587 1179 613 613 1179 586 586 1180 613 613 1180 588 588 1180 588 588 1181 613 613 1181 590 590 1181 588 588 1182 590 590 1182 589 589 1182 589 589 1183 590 590 1183 591 591 1183 589 589 1184 591 591 1184 566 566 1184 566 566 1185 591 591 1185 292 292 1185 57 57 1186 592 592 1186 593 593 1186 593 593 1187 592 592 1187 616 616 1187 593 593 1188 616 616 1188 594 594 1188 594 594 1189 616 616 1189 617 617 1189 594 594 1190 617 617 1190 569 569 1190 569 569 1191 617 617 1191 620 620 1191 569 569 1192 620 620 1192 595 595 1192 595 595 1193 620 620 1193 596 596 1193 595 595 1194 596 596 1194 571 571 1194 571 571 1195 596 596 1195 597 597 1195 571 571 1196 597 597 1196 598 598 1196 598 598 1197 597 597 1197 622 622 1197 598 598 1198 622 622 1198 599 599 1198 599 599 1199 622 622 1199 600 600 1199 599 599 1200 600 600 1200 574 574 1200 574 574 1201 600 600 1201 602 602 1201 574 574 1202 602 602 1202 601 601 1202 601 601 1203 602 602 1203 626 626 1203 601 601 1204 626 626 1204 576 576 1204 576 576 1205 626 626 1205 627 627 1205 576 576 1206 627 627 1206 603 603 1206 603 603 1207 627 627 1207 629 629 1207 603 603 1208 629 629 1208 604 604 1208 604 604 1209 629 629 1209 630 630 1209 604 604 1210 630 630 1210 605 605 1210 605 605 1211 630 630 1211 606 606 1211 605 605 1212 606 606 1212 579 579 1212 579 579 1213 606 606 1213 607 607 1213 579 579 1214 607 607 1214 580 580 1214 580 580 1215 607 607 1215 608 608 1215 580 580 1216 608 608 1216 581 581 1216 581 581 1217 608 608 1217 633 633 1217 581 581 1218 633 633 1218 584 584 1218 584 584 1219 633 633 1219 610 610 1219 584 584 1220 610 610 1220 609 609 1220 609 609 1221 610 610 1221 635 635 1221 609 609 1222 635 635 1222 611 611 1222 611 611 1223 635 635 1223 637 637 1223 611 611 1224 637 637 1224 612 612 1224 612 612 1225 637 637 1225 639 639 1225 612 612 1226 639 639 1226 587 587 1226 587 587 1227 639 639 1227 641 641 1227 587 587 1228 641 641 1228 613 613 1228 613 613 1229 641 641 1229 614 614 1229 613 613 1230 614 614 1230 590 590 1230 590 590 1231 614 614 1231 615 615 1231 590 590 1232 615 615 1232 591 591 1232 591 591 1233 615 615 1233 292 292 1233 57 57 1234 643 643 1234 592 592 1234 592 592 1235 643 643 1235 646 646 1235 592 592 1236 646 646 1236 616 616 1236 616 616 1237 646 646 1237 648 648 1237 616 616 1238 648 648 1238 617 617 1238 617 617 1239 648 648 1239 618 618 1239 617 617 1240 618 618 1240 620 620 1240 620 620 1241 618 618 1241 619 619 1241 620 620 1242 619 619 1242 596 596 1242 596 596 1243 619 619 1243 621 621 1243 596 596 1244 621 621 1244 597 597 1244 597 597 1245 621 621 1245 651 651 1245 597 597 1246 651 651 1246 622 622 1246 622 622 1247 651 651 1247 623 623 1247 622 622 1248 623 623 1248 600 600 1248 600 600 1249 623 623 1249 624 624 1249 600 600 1250 624 624 1250 602 602 1250 602 602 1251 624 624 1251 625 625 1251 602 602 1252 625 625 1252 626 626 1252 626 626 1253 625 625 1253 654 654 1253 626 626 1254 654 654 1254 627 627 1254 627 627 1255 654 654 1255 628 628 1255 627 627 1256 628 628 1256 629 629 1256 629 629 1257 628 628 1257 657 657 1257 629 629 1258 657 657 1258 630 630 1258 630 630 1259 657 657 1259 659 659 1259 630 630 1260 659 659 1260 606 606 1260 606 606 1261 659 659 1261 631 631 1261 606 606 1262 631 631 1262 607 607 1262 607 607 1263 631 631 1263 660 660 1263 607 607 1264 660 660 1264 608 608 1264 608 608 1265 660 660 1265 632 632 1265 608 608 1266 632 632 1266 633 633 1266 633 633 1267 632 632 1267 663 663 1267 633 633 1268 663 663 1268 610 610 1268 610 610 1269 663 663 1269 634 634 1269 610 610 1270 634 634 1270 635 635 1270 635 635 1271 634 634 1271 636 636 1271 635 635 1272 636 636 1272 637 637 1272 637 637 1273 636 636 1273 638 638 1273 637 637 1274 638 638 1274 639 639 1274 639 639 1275 638 638 1275 640 640 1275 639 639 1276 640 640 1276 641 641 1276 641 641 1277 640 640 1277 667 667 1277 641 641 1278 667 667 1278 614 614 1278 614 614 1279 667 667 1279 642 642 1279 614 614 1280 642 642 1280 615 615 1280 615 615 1281 642 642 1281 292 292 1281 57 57 1282 644 644 1282 643 643 1282 643 643 1283 644 644 1283 645 645 1283 643 643 1284 645 645 1284 646 646 1284 646 646 1285 645 645 1285 647 647 1285 646 646 1286 647 647 1286 648 648 1286 648 648 1287 647 647 1287 669 669 1287 648 648 1288 669 669 1288 618 618 1288 618 618 1289 669 669 1289 670 670 1289 618 618 1290 670 670 1290 619 619 1290 619 619 1291 670 670 1291 649 649 1291 619 619 1292 649 649 1292 621 621 1292 621 621 1293 649 649 1293 650 650 1293 621 621 1294 650 650 1294 651 651 1294 651 651 1295 650 650 1295 672 672 1295 651 651 1296 672 672 1296 623 623 1296 623 623 1297 672 672 1297 674 674 1297 623 623 1298 674 674 1298 624 624 1298 624 624 1299 674 674 1299 652 652 1299 624 624 1300 652 652 1300 625 625 1300 625 625 1301 652 652 1301 653 653 1301 625 625 1302 653 653 1302 654 654 1302 654 654 1303 653 653 1303 655 655 1303 654 654 1304 655 655 1304 628 628 1304 628 628 1305 655 655 1305 656 656 1305 628 628 1306 656 656 1306 657 657 1306 657 657 1307 656 656 1307 658 658 1307 657 657 1308 658 658 1308 659 659 1308 659 659 1309 658 658 1309 677 677 1309 659 659 1310 677 677 1310 631 631 1310 631 631 1311 677 677 1311 661 661 1311 631 631 1312 661 661 1312 660 660 1312 660 660 1313 661 661 1313 662 662 1313 660 660 1314 662 662 1314 632 632 1314 632 632 1315 662 662 1315 680 680 1315 632 632 1316 680 680 1316 663 663 1316 663 663 1317 680 680 1317 682 682 1317 663 663 1318 682 682 1318 634 634 1318 634 634 1319 682 682 1319 683 683 1319 634 634 1320 683 683 1320 636 636 1320 636 636 1321 683 683 1321 664 664 1321 636 636 1322 664 664 1322 638 638 1322 638 638 1323 664 664 1323 684 684 1323 638 638 1324 684 684 1324 640 640 1324 640 640 1325 684 684 1325 665 665 1325 640 640 1326 665 665 1326 667 667 1326 667 667 1327 665 665 1327 666 666 1327 667 667 1328 666 666 1328 642 642 1328 642 642 1329 666 666 1329 292 292 1329 57 57 1330 688 688 1330 644 644 1330 644 644 1331 688 688 1331 668 668 1331 644 644 1332 668 668 1332 645 645 1332 645 645 1333 668 668 1333 691 691 1333 645 645 1334 691 691 1334 647 647 1334 647 647 1335 691 691 1335 692 692 1335 647 647 1336 692 692 1336 669 669 1336 669 669 1337 692 692 1337 694 694 1337 669 669 1338 694 694 1338 670 670 1338 670 670 1339 694 694 1339 671 671 1339 670 670 1340 671 671 1340 649 649 1340 649 649 1341 671 671 1341 697 697 1341 649 649 1342 697 697 1342 650 650 1342 650 650 1343 697 697 1343 699 699 1343 650 650 1344 699 699 1344 672 672 1344 672 672 1345 699 699 1345 673 673 1345 672 672 1346 673 673 1346 674 674 1346 674 674 1347 673 673 1347 701 701 1347 674 674 1348 701 701 1348 652 652 1348 652 652 1349 701 701 1349 702 702 1349 652 652 1350 702 702 1350 653 653 1350 653 653 1351 702 702 1351 675 675 1351 653 653 1352 675 675 1352 655 655 1352 655 655 1353 675 675 1353 703 703 1353 655 655 1354 703 703 1354 656 656 1354 656 656 1355 703 703 1355 676 676 1355 656 656 1356 676 676 1356 658 658 1356 658 658 1357 676 676 1357 706 706 1357 658 658 1358 706 706 1358 677 677 1358 677 677 1359 706 706 1359 678 678 1359 677 677 1360 678 678 1360 661 661 1360 661 661 1361 678 678 1361 679 679 1361 661 661 1362 679 679 1362 662 662 1362 662 662 1363 679 679 1363 709 709 1363 662 662 1364 709 709 1364 680 680 1364 680 680 1365 709 709 1365 681 681 1365 680 680 1366 681 681 1366 682 682 1366 682 682 1367 681 681 1367 710 710 1367 682 682 1368 710 710 1368 683 683 1368 683 683 1369 710 710 1369 712 712 1369 683 683 1370 712 712 1370 664 664 1370 664 664 1371 712 712 1371 685 685 1371 664 664 1372 685 685 1372 684 684 1372 684 684 1373 685 685 1373 714 714 1373 684 684 1374 714 714 1374 665 665 1374 665 665 1375 714 714 1375 686 686 1375 665 665 1376 686 686 1376 666 666 1376 666 666 1377 686 686 1377 292 292 1377 57 57 1378 687 687 1378 688 688 1378 688 688 1379 687 687 1379 689 689 1379 688 688 1380 689 689 1380 668 668 1380 668 668 1381 689 689 1381 690 690 1381 668 668 1382 690 690 1382 691 691 1382 691 691 1383 690 690 1383 715 715 1383 691 691 1384 715 715 1384 692 692 1384 692 692 1385 715 715 1385 693 693 1385 692 692 1386 693 693 1386 694 694 1386 694 694 1387 693 693 1387 695 695 1387 694 694 1388 695 695 1388 671 671 1388 671 671 1389 695 695 1389 696 696 1389 671 671 1390 696 696 1390 697 697 1390 697 697 1391 696 696 1391 698 698 1391 697 697 1392 698 698 1392 699 699 1392 699 699 1393 698 698 1393 700 700 1393 699 699 1394 700 700 1394 673 673 1394 673 673 1395 700 700 1395 720 720 1395 673 673 1396 720 720 1396 701 701 1396 701 701 1397 720 720 1397 721 721 1397 701 701 1398 721 721 1398 702 702 1398 702 702 1399 721 721 1399 723 723 1399 702 702 1400 723 723 1400 675 675 1400 675 675 1401 723 723 1401 724 724 1401 675 675 1402 724 724 1402 703 703 1402 703 703 1403 724 724 1403 728 728 1403 703 703 1404 728 728 1404 676 676 1404 676 676 1405 728 728 1405 704 704 1405 676 676 1406 704 704 1406 706 706 1406 706 706 1407 704 704 1407 705 705 1407 706 706 1408 705 705 1408 678 678 1408 678 678 1409 705 705 1409 707 707 1409 678 678 1410 707 707 1410 679 679 1410 679 679 1411 707 707 1411 708 708 1411 679 679 1412 708 708 1412 709 709 1412 709 709 1413 708 708 1413 731 731 1413 709 709 1414 731 731 1414 681 681 1414 681 681 1415 731 731 1415 733 733 1415 681 681 1416 733 733 1416 710 710 1416 710 710 1417 733 733 1417 711 711 1417 710 710 1418 711 711 1418 712 712 1418 712 712 1419 711 711 1419 734 734 1419 712 712 1420 734 734 1420 685 685 1420 685 685 1421 734 734 1421 713 713 1421 685 685 1422 713 713 1422 714 714 1422 714 714 1423 713 713 1423 735 735 1423 714 714 1424 735 735 1424 686 686 1424 686 686 1425 735 735 1425 292 292 1425 57 57 1426 736 736 1426 687 687 1426 687 687 1427 736 736 1427 738 738 1427 687 687 1428 738 738 1428 689 689 1428 689 689 1429 738 738 1429 739 739 1429 689 689 1430 739 739 1430 690 690 1430 690 690 1431 739 739 1431 740 740 1431 690 690 1432 740 740 1432 715 715 1432 715 715 1433 740 740 1433 716 716 1433 715 715 1434 716 716 1434 693 693 1434 693 693 1435 716 716 1435 717 717 1435 693 693 1436 717 717 1436 695 695 1436 695 695 1437 717 717 1437 743 743 1437 695 695 1438 743 743 1438 696 696 1438 696 696 1439 743 743 1439 744 744 1439 696 696 1440 744 744 1440 698 698 1440 698 698 1441 744 744 1441 718 718 1441 698 698 1442 718 718 1442 700 700 1442 700 700 1443 718 718 1443 719 719 1443 700 700 1444 719 719 1444 720 720 1444 720 720 1445 719 719 1445 748 748 1445 720 720 1446 748 748 1446 721 721 1446 721 721 1447 748 748 1447 722 722 1447 721 721 1448 722 722 1448 723 723 1448 723 723 1449 722 722 1449 725 725 1449 723 723 1450 725 725 1450 724 724 1450 724 724 1451 725 725 1451 726 726 1451 724 724 1452 726 726 1452 728 728 1452 728 728 1453 726 726 1453 727 727 1453 728 728 1454 727 727 1454 704 704 1454 704 704 1455 727 727 1455 729 729 1455 704 704 1456 729 729 1456 705 705 1456 705 705 1457 729 729 1457 751 751 1457 705 705 1458 751 751 1458 707 707 1458 707 707 1459 751 751 1459 730 730 1459 707 707 1460 730 730 1460 708 708 1460 708 708 1461 730 730 1461 753 753 1461 708 708 1462 753 753 1462 731 731 1462 731 731 1463 753 753 1463 732 732 1463 731 731 1464 732 732 1464 733 733 1464 733 733 1465 732 732 1465 756 756 1465 733 733 1466 756 756 1466 711 711 1466 711 711 1467 756 756 1467 757 757 1467 711 711 1468 757 757 1468 734 734 1468 734 734 1469 757 757 1469 758 758 1469 734 734 1470 758 758 1470 713 713 1470 713 713 1471 758 758 1471 761 761 1471 713 713 1472 761 761 1472 735 735 1472 735 735 1473 761 761 1473 292 292 1473 57 57 1474 762 762 1474 736 736 1474 736 736 1475 762 762 1475 763 763 1475 736 736 1476 763 763 1476 738 738 1476 738 738 1477 763 763 1477 737 737 1477 738 738 1478 737 737 1478 739 739 1478 739 739 1479 737 737 1479 765 765 1479 739 739 1480 765 765 1480 740 740 1480 740 740 1481 765 765 1481 741 741 1481 740 740 1482 741 741 1482 716 716 1482 716 716 1483 741 741 1483 766 766 1483 716 716 1484 766 766 1484 717 717 1484 717 717 1485 766 766 1485 742 742 1485 717 717 1486 742 742 1486 743 743 1486 743 743 1487 742 742 1487 745 745 1487 743 743 1488 745 745 1488 744 744 1488 744 744 1489 745 745 1489 746 746 1489 744 744 1490 746 746 1490 718 718 1490 718 718 1491 746 746 1491 747 747 1491 718 718 1492 747 747 1492 719 719 1492 719 719 1493 747 747 1493 770 770 1493 719 719 1494 770 770 1494 748 748 1494 748 748 1495 770 770 1495 749 749 1495 748 748 1496 749 749 1496 722 722 1496 722 722 1497 749 749 1497 772 772 1497 722 722 1498 772 772 1498 725 725 1498 725 725 1499 772 772 1499 774 774 1499 725 725 1500 774 774 1500 726 726 1500 726 726 1501 774 774 1501 775 775 1501 726 726 1502 775 775 1502 727 727 1502 727 727 1503 775 775 1503 750 750 1503 727 727 1504 750 750 1504 729 729 1504 729 729 1505 750 750 1505 752 752 1505 729 729 1506 752 752 1506 751 751 1506 751 751 1507 752 752 1507 778 778 1507 751 751 1508 778 778 1508 730 730 1508 730 730 1509 778 778 1509 780 780 1509 730 730 1510 780 780 1510 753 753 1510 753 753 1511 780 780 1511 754 754 1511 753 753 1512 754 754 1512 732 732 1512 732 732 1513 754 754 1513 755 755 1513 732 732 1514 755 755 1514 756 756 1514 756 756 1515 755 755 1515 782 782 1515 756 756 1516 782 782 1516 757 757 1516 757 757 1517 782 782 1517 759 759 1517 757 757 1518 759 759 1518 758 758 1518 758 758 1519 759 759 1519 760 760 1519 758 758 1520 760 760 1520 761 761 1520 761 761 1521 760 760 1521 292 292 1521 57 57 1522 785 785 1522 762 762 1522 762 762 1523 785 785 1523 786 786 1523 762 762 1524 786 786 1524 763 763 1524 763 763 1525 786 786 1525 787 787 1525 763 763 1526 787 787 1526 737 737 1526 737 737 1527 787 787 1527 789 789 1527 737 737 1528 789 789 1528 765 765 1528 765 765 1529 789 789 1529 764 764 1529 765 765 1530 764 764 1530 741 741 1530 741 741 1531 764 764 1531 792 792 1531 741 741 1532 792 792 1532 766 766 1532 766 766 1533 792 792 1533 767 767 1533 766 766 1534 767 767 1534 742 742 1534 742 742 1535 767 767 1535 768 768 1535 742 742 1536 768 768 1536 745 745 1536 745 745 1537 768 768 1537 796 796 1537 745 745 1538 796 796 1538 746 746 1538 746 746 1539 796 796 1539 797 797 1539 746 746 1540 797 797 1540 747 747 1540 747 747 1541 797 797 1541 769 769 1541 747 747 1542 769 769 1542 770 770 1542 770 770 1543 769 769 1543 771 771 1543 770 770 1544 771 771 1544 749 749 1544 749 749 1545 771 771 1545 799 799 1545 749 749 1546 799 799 1546 772 772 1546 772 772 1547 799 799 1547 773 773 1547 772 772 1548 773 773 1548 774 774 1548 774 774 1549 773 773 1549 801 801 1549 774 774 1550 801 801 1550 775 775 1550 775 775 1551 801 801 1551 776 776 1551 775 775 1552 776 776 1552 750 750 1552 750 750 1553 776 776 1553 777 777 1553 750 750 1554 777 777 1554 752 752 1554 752 752 1555 777 777 1555 804 804 1555 752 752 1556 804 804 1556 778 778 1556 778 778 1557 804 804 1557 779 779 1557 778 778 1558 779 779 1558 780 780 1558 780 780 1559 779 779 1559 805 805 1559 780 780 1560 805 805 1560 754 754 1560 754 754 1561 805 805 1561 781 781 1561 754 754 1562 781 781 1562 755 755 1562 755 755 1563 781 781 1563 807 807 1563 755 755 1564 807 807 1564 782 782 1564 782 782 1565 807 807 1565 783 783 1565 782 782 1566 783 783 1566 759 759 1566 759 759 1567 783 783 1567 784 784 1567 759 759 1568 784 784 1568 760 760 1568 760 760 1569 784 784 1569 292 292 1569 57 57 1570 810 810 1570 785 785 1570 785 785 1571 810 810 1571 813 813 1571 785 785 1572 813 813 1572 786 786 1572 786 786 1573 813 813 1573 814 814 1573 786 786 1574 814 814 1574 787 787 1574 787 787 1575 814 814 1575 788 788 1575 787 787 1576 788 788 1576 789 789 1576 789 789 1577 788 788 1577 790 790 1577 789 789 1578 790 790 1578 764 764 1578 764 764 1579 790 790 1579 791 791 1579 764 764 1580 791 791 1580 792 792 1580 792 792 1581 791 791 1581 793 793 1581 792 792 1582 793 793 1582 767 767 1582 767 767 1583 793 793 1583 794 794 1583 767 767 1584 794 794 1584 768 768 1584 768 768 1585 794 794 1585 795 795 1585 768 768 1586 795 795 1586 796 796 1586 796 796 1587 795 795 1587 817 817 1587 796 796 1588 817 817 1588 797 797 1588 797 797 1589 817 817 1589 798 798 1589 797 797 1590 798 798 1590 769 769 1590 769 769 1591 798 798 1591 818 818 1591 769 769 1592 818 818 1592 771 771 1592 771 771 1593 818 818 1593 820 820 1593 771 771 1594 820 820 1594 799 799 1594 799 799 1595 820 820 1595 800 800 1595 799 799 1596 800 800 1596 773 773 1596 773 773 1597 800 800 1597 822 822 1597 773 773 1598 822 822 1598 801 801 1598 801 801 1599 822 822 1599 802 802 1599 801 801 1600 802 802 1600 776 776 1600 776 776 1601 802 802 1601 823 823 1601 776 776 1602 823 823 1602 777 777 1602 777 777 1603 823 823 1603 803 803 1603 777 777 1604 803 803 1604 804 804 1604 804 804 1605 803 803 1605 827 827 1605 804 804 1606 827 827 1606 779 779 1606 779 779 1607 827 827 1607 828 828 1607 779 779 1608 828 828 1608 805 805 1608 805 805 1609 828 828 1609 829 829 1609 805 805 1610 829 829 1610 781 781 1610 781 781 1611 829 829 1611 806 806 1611 781 781 1612 806 806 1612 807 807 1612 807 807 1613 806 806 1613 808 808 1613 807 807 1614 808 808 1614 783 783 1614 783 783 1615 808 808 1615 809 809 1615 783 783 1616 809 809 1616 784 784 1616 784 784 1617 809 809 1617 292 292 1617 57 57 1618 811 811 1618 810 810 1618 810 810 1619 811 811 1619 812 812 1619 810 810 1620 812 812 1620 813 813 1620 813 813 1621 812 812 1621 834 834 1621 813 813 1622 834 834 1622 814 814 1622 814 814 1623 834 834 1623 815 815 1623 814 814 1624 815 815 1624 788 788 1624 788 788 1625 815 815 1625 836 836 1625 788 788 1626 836 836 1626 790 790 1626 790 790 1627 836 836 1627 839 839 1627 790 790 1628 839 839 1628 791 791 1628 791 791 1629 839 839 1629 816 816 1629 791 791 1630 816 816 1630 793 793 1630 793 793 1631 816 816 1631 840 840 1631 793 793 1632 840 840 1632 794 794 1632 794 794 1633 840 840 1633 841 841 1633 794 794 1634 841 841 1634 795 795 1634 795 795 1635 841 841 1635 843 843 1635 795 795 1636 843 843 1636 817 817 1636 817 817 1637 843 843 1637 844 844 1637 817 817 1638 844 844 1638 798 798 1638 798 798 1639 844 844 1639 845 845 1639 798 798 1640 845 845 1640 818 818 1640 818 818 1641 845 845 1641 819 819 1641 818 818 1642 819 819 1642 820 820 1642 820 820 1643 819 819 1643 821 821 1643 820 820 1644 821 821 1644 800 800 1644 800 800 1645 821 821 1645 847 847 1645 800 800 1646 847 847 1646 822 822 1646 822 822 1647 847 847 1647 849 849 1647 822 822 1648 849 849 1648 802 802 1648 802 802 1649 849 849 1649 824 824 1649 802 802 1650 824 824 1650 823 823 1650 823 823 1651 824 824 1651 825 825 1651 823 823 1652 825 825 1652 803 803 1652 803 803 1653 825 825 1653 826 826 1653 803 803 1654 826 826 1654 827 827 1654 827 827 1655 826 826 1655 853 853 1655 827 827 1656 853 853 1656 828 828 1656 828 828 1657 853 853 1657 854 854 1657 828 828 1658 854 854 1658 829 829 1658 829 829 1659 854 854 1659 855 855 1659 829 829 1660 855 855 1660 806 806 1660 806 806 1661 855 855 1661 830 830 1661 806 806 1662 830 830 1662 808 808 1662 808 808 1663 830 830 1663 831 831 1663 808 808 1664 831 831 1664 809 809 1664 809 809 1665 831 831 1665 292 292 1665 57 57 1666 832 832 1666 811 811 1666 811 811 1667 832 832 1667 856 856 1667 811 811 1668 856 856 1668 812 812 1668 812 812 1669 856 856 1669 833 833 1669 812 812 1670 833 833 1670 834 834 1670 834 834 1671 833 833 1671 835 835 1671 834 834 1672 835 835 1672 815 815 1672 815 815 1673 835 835 1673 837 837 1673 815 815 1674 837 837 1674 836 836 1674 836 836 1675 837 837 1675 838 838 1675 836 836 1676 838 838 1676 839 839 1676 839 839 1677 838 838 1677 860 860 1677 839 839 1678 860 860 1678 816 816 1678 816 816 1679 860 860 1679 861 861 1679 816 816 1680 861 861 1680 840 840 1680 840 840 1681 861 861 1681 862 862 1681 840 840 1682 862 862 1682 841 841 1682 841 841 1683 862 862 1683 842 842 1683 841 841 1684 842 842 1684 843 843 1684 843 843 1685 842 842 1685 864 864 1685 843 843 1686 864 864 1686 844 844 1686 844 844 1687 864 864 1687 865 865 1687 844 844 1688 865 865 1688 845 845 1688 845 845 1689 865 865 1689 846 846 1689 845 845 1690 846 846 1690 819 819 1690 819 819 1691 846 846 1691 866 866 1691 819 819 1692 866 866 1692 821 821 1692 821 821 1693 866 866 1693 848 848 1693 821 821 1694 848 848 1694 847 847 1694 847 847 1695 848 848 1695 850 850 1695 847 847 1696 850 850 1696 849 849 1696 849 849 1697 850 850 1697 851 851 1697 849 849 1698 851 851 1698 824 824 1698 824 824 1699 851 851 1699 852 852 1699 824 824 1700 852 852 1700 825 825 1700 825 825 1701 852 852 1701 869 869 1701 825 825 1702 869 869 1702 826 826 1702 826 826 1703 869 869 1703 872 872 1703 826 826 1704 872 872 1704 853 853 1704 853 853 1705 872 872 1705 873 873 1705 853 853 1706 873 873 1706 854 854 1706 854 854 1707 873 873 1707 875 875 1707 854 854 1708 875 875 1708 855 855 1708 855 855 1709 875 875 1709 877 877 1709 855 855 1710 877 877 1710 830 830 1710 830 830 1711 877 877 1711 878 878 1711 830 830 1712 878 878 1712 831 831 1712 831 831 1713 878 878 1713 292 292 1713 57 57 1714 879 879 1714 832 832 1714 832 832 1715 879 879 1715 880 880 1715 832 832 1716 880 880 1716 856 856 1716 856 856 1717 880 880 1717 881 881 1717 856 856 1718 881 881 1718 833 833 1718 833 833 1719 881 881 1719 882 882 1719 833 833 1720 882 882 1720 835 835 1720 835 835 1721 882 882 1721 857 857 1721 835 835 1722 857 857 1722 837 837 1722 837 837 1723 857 857 1723 858 858 1723 837 837 1724 858 858 1724 838 838 1724 838 838 1725 858 858 1725 859 859 1725 838 838 1726 859 859 1726 860 860 1726 860 860 1727 859 859 1727 885 885 1727 860 860 1728 885 885 1728 861 861 1728 861 861 1729 885 885 1729 863 863 1729 861 861 1730 863 863 1730 862 862 1730 862 862 1731 863 863 1731 886 886 1731 862 862 1732 886 886 1732 842 842 1732 842 842 1733 886 886 1733 888 888 1733 842 842 1734 888 888 1734 864 864 1734 864 864 1735 888 888 1735 890 890 1735 864 864 1736 890 890 1736 865 865 1736 865 865 1737 890 890 1737 891 891 1737 865 865 1738 891 891 1738 846 846 1738 846 846 1739 891 891 1739 892 892 1739 846 846 1740 892 892 1740 866 866 1740 866 866 1741 892 892 1741 867 867 1741 866 866 1742 867 867 1742 848 848 1742 848 848 1743 867 867 1743 893 893 1743 848 848 1744 893 893 1744 850 850 1744 850 850 1745 893 893 1745 894 894 1745 850 850 1746 894 894 1746 851 851 1746 851 851 1747 894 894 1747 868 868 1747 851 851 1748 868 868 1748 852 852 1748 852 852 1749 868 868 1749 870 870 1749 852 852 1750 870 870 1750 869 869 1750 869 869 1751 870 870 1751 871 871 1751 869 869 1752 871 871 1752 872 872 1752 872 872 1753 871 871 1753 897 897 1753 872 872 1754 897 897 1754 873 873 1754 873 873 1755 897 897 1755 874 874 1755 873 873 1756 874 874 1756 875 875 1756 875 875 1757 874 874 1757 876 876 1757 875 875 1758 876 876 1758 877 877 1758 877 877 1759 876 876 1759 900 900 1759 877 877 1760 900 900 1760 878 878 1760 878 878 1761 900 900 1761 292 292 1761 57 57 1762 902 902 1762 879 879 1762 879 879 1763 902 902 1763 903 903 1763 879 879 1764 903 903 1764 880 880 1764 880 880 1765 903 903 1765 905 905 1765 880 880 1766 905 905 1766 881 881 1766 881 881 1767 905 905 1767 906 906 1767 881 881 1768 906 906 1768 882 882 1768 882 882 1769 906 906 1769 883 883 1769 882 882 1770 883 883 1770 857 857 1770 857 857 1771 883 883 1771 884 884 1771 857 857 1772 884 884 1772 858 858 1772 858 858 1773 884 884 1773 908 908 1773 858 858 1774 908 908 1774 859 859 1774 859 859 1775 908 908 1775 909 909 1775 859 859 1776 909 909 1776 885 885 1776 885 885 1777 909 909 1777 910 910 1777 885 885 1778 910 910 1778 863 863 1778 863 863 1779 910 910 1779 913 913 1779 863 863 1780 913 913 1780 886 886 1780 886 886 1781 913 913 1781 887 887 1781 886 886 1782 887 887 1782 888 888 1782 888 888 1783 887 887 1783 889 889 1783 888 888 1784 889 889 1784 890 890 1784 890 890 1785 889 889 1785 917 917 1785 890 890 1786 917 917 1786 891 891 1786 891 891 1787 917 917 1787 918 918 1787 891 891 1788 918 918 1788 892 892 1788 892 892 1789 918 918 1789 920 920 1789 892 892 1790 920 920 1790 867 867 1790 867 867 1791 920 920 1791 921 921 1791 867 867 1792 921 921 1792 893 893 1792 893 893 1793 921 921 1793 923 923 1793 893 893 1794 923 923 1794 894 894 1794 894 894 1795 923 923 1795 924 924 1795 894 894 1796 924 924 1796 868 868 1796 868 868 1797 924 924 1797 895 895 1797 868 868 1798 895 895 1798 870 870 1798 870 870 1799 895 895 1799 896 896 1799 870 870 1800 896 896 1800 871 871 1800 871 871 1801 896 896 1801 898 898 1801 871 871 1802 898 898 1802 897 897 1802 897 897 1803 898 898 1803 899 899 1803 897 897 1804 899 899 1804 874 874 1804 874 874 1805 899 899 1805 928 928 1805 874 874 1806 928 928 1806 876 876 1806 876 876 1807 928 928 1807 901 901 1807 876 876 1808 901 901 1808 900 900 1808 900 900 1809 901 901 1809 292 292 1809 57 57 1810 929 929 1810 902 902 1810 902 902 1811 929 929 1811 931 931 1811 902 902 1812 931 931 1812 903 903 1812 903 903 1813 931 931 1813 904 904 1813 903 903 1814 904 904 1814 905 905 1814 905 905 1815 904 904 1815 933 933 1815 905 905 1816 933 933 1816 906 906 1816 906 906 1817 933 933 1817 907 907 1817 906 906 1818 907 907 1818 883 883 1818 883 883 1819 907 907 1819 935 935 1819 883 883 1820 935 935 1820 884 884 1820 884 884 1821 935 935 1821 937 937 1821 884 884 1822 937 937 1822 908 908 1822 908 908 1823 937 937 1823 938 938 1823 908 908 1824 938 938 1824 909 909 1824 909 909 1825 938 938 1825 911 911 1825 909 909 1826 911 911 1826 910 910 1826 910 910 1827 911 911 1827 912 912 1827 910 910 1828 912 912 1828 913 913 1828 913 913 1829 912 912 1829 914 914 1829 913 913 1830 914 914 1830 887 887 1830 887 887 1831 914 914 1831 915 915 1831 887 887 1832 915 915 1832 889 889 1832 889 889 1833 915 915 1833 916 916 1833 889 889 1834 916 916 1834 917 917 1834 917 917 1835 916 916 1835 942 942 1835 917 917 1836 942 942 1836 918 918 1836 918 918 1837 942 942 1837 919 919 1837 918 918 1838 919 919 1838 920 920 1838 920 920 1839 919 919 1839 944 944 1839 920 920 1840 944 944 1840 921 921 1840 921 921 1841 944 944 1841 922 922 1841 921 921 1842 922 922 1842 923 923 1842 923 923 1843 922 922 1843 947 947 1843 923 923 1844 947 947 1844 924 924 1844 924 924 1845 947 947 1845 948 948 1845 924 924 1846 948 948 1846 895 895 1846 895 895 1847 948 948 1847 925 925 1847 895 895 1848 925 925 1848 896 896 1848 896 896 1849 925 925 1849 926 926 1849 896 896 1850 926 926 1850 898 898 1850 898 898 1851 926 926 1851 950 950 1851 898 898 1852 950 950 1852 899 899 1852 899 899 1853 950 950 1853 951 951 1853 899 899 1854 951 951 1854 928 928 1854 928 928 1855 951 951 1855 927 927 1855 928 928 1856 927 927 1856 901 901 1856 901 901 1857 927 927 1857 292 292 1857 57 57 1858 952 952 1858 929 929 1858 929 929 1859 952 952 1859 930 930 1859 929 929 1860 930 930 1860 931 931 1860 931 931 1861 930 930 1861 932 932 1861 931 931 1862 932 932 1862 904 904 1862 904 904 1863 932 932 1863 953 953 1863 904 904 1864 953 953 1864 933 933 1864 933 933 1865 953 953 1865 934 934 1865 933 933 1866 934 934 1866 907 907 1866 907 907 1867 934 934 1867 957 957 1867 907 907 1868 957 957 1868 935 935 1868 935 935 1869 957 957 1869 936 936 1869 935 935 1870 936 936 1870 937 937 1870 937 937 1871 936 936 1871 958 958 1871 937 937 1872 958 958 1872 938 938 1872 938 938 1873 958 958 1873 939 939 1873 938 938 1874 939 939 1874 911 911 1874 911 911 1875 939 939 1875 940 940 1875 911 911 1876 940 940 1876 912 912 1876 912 912 1877 940 940 1877 961 961 1877 912 912 1878 961 961 1878 914 914 1878 914 914 1879 961 961 1879 964 964 1879 914 914 1880 964 964 1880 915 915 1880 915 915 1881 964 964 1881 965 965 1881 915 915 1882 965 965 1882 916 916 1882 916 916 1883 965 965 1883 941 941 1883 916 916 1884 941 941 1884 942 942 1884 942 942 1885 941 941 1885 943 943 1885 942 942 1886 943 943 1886 919 919 1886 919 919 1887 943 943 1887 945 945 1887 919 919 1888 945 945 1888 944 944 1888 944 944 1889 945 945 1889 967 967 1889 944 944 1890 967 967 1890 922 922 1890 922 922 1891 967 967 1891 969 969 1891 922 922 1892 969 969 1892 947 947 1892 947 947 1893 969 969 1893 946 946 1893 947 947 1894 946 946 1894 948 948 1894 948 948 1895 946 946 1895 949 949 1895 948 948 1896 949 949 1896 925 925 1896 925 925 1897 949 949 1897 970 970 1897 925 925 1898 970 970 1898 926 926 1898 926 926 1899 970 970 1899 971 971 1899 926 926 1900 971 971 1900 950 950 1900 950 950 1901 971 971 1901 973 973 1901 950 950 1902 973 973 1902 951 951 1902 951 951 1903 973 973 1903 974 974 1903 951 951 1904 974 974 1904 927 927 1904 927 927 1905 974 974 1905 292 292 1905 57 57 1906 1177 1177 1906 952 952 1906 952 952 1907 1177 1177 1907 1175 1175 1907 952 952 1908 1175 1175 1908 930 930 1908 930 930 1909 1175 1175 1909 1173 1173 1909 930 930 1910 1173 1173 1910 932 932 1910 932 932 1911 1173 1173 1911 954 954 1911 932 932 1912 954 954 1912 953 953 1912 953 953 1913 954 954 1913 955 955 1913 953 953 1914 955 955 1914 934 934 1914 934 934 1915 955 955 1915 956 956 1915 934 934 1916 956 956 1916 957 957 1916 957 957 1917 956 956 1917 1170 1170 1917 957 957 1918 1170 1170 1918 936 936 1918 936 936 1919 1170 1170 1919 1168 1168 1919 936 936 1920 1168 1168 1920 958 958 1920 958 958 1921 1168 1168 1921 959 959 1921 958 958 1922 959 959 1922 939 939 1922 939 939 1923 959 959 1923 960 960 1923 939 939 1924 960 960 1924 940 940 1924 940 940 1925 960 960 1925 1166 1166 1925 940 940 1926 1166 1166 1926 961 961 1926 961 961 1927 1166 1166 1927 962 962 1927 961 961 1928 962 962 1928 964 964 1928 964 964 1929 962 962 1929 963 963 1929 964 964 1930 963 963 1930 965 965 1930 965 965 1931 963 963 1931 1164 1164 1931 965 965 1932 1164 1164 1932 941 941 1932 941 941 1933 1164 1164 1933 1163 1163 1933 941 941 1934 1163 1163 1934 943 943 1934 943 943 1935 1163 1163 1935 966 966 1935 943 943 1936 966 966 1936 945 945 1936 945 945 1937 966 966 1937 1160 1160 1937 945 945 1938 1160 1160 1938 967 967 1938 967 967 1939 1160 1160 1939 968 968 1939 967 967 1940 968 968 1940 969 969 1940 969 969 1941 968 968 1941 1159 1159 1941 969 969 1942 1159 1159 1942 946 946 1942 946 946 1943 1159 1159 1943 1157 1157 1943 946 946 1944 1157 1157 1944 949 949 1944 949 949 1945 1157 1157 1945 975 975 1945 949 949 1946 975 975 1946 970 970 1946 970 970 1947 975 975 1947 978 978 1947 970 970 1948 978 978 1948 971 971 1948 971 971 1949 978 978 1949 972 972 1949 971 971 1950 972 972 1950 973 973 1950 973 973 1951 972 972 1951 979 979 1951 973 973 1952 979 979 1952 974 974 1952 974 974 1953 979 979 1953 292 292 1953 1157 1157 1954 976 976 1954 975 975 1954 975 975 1955 976 976 1955 977 977 1955 975 975 1956 977 977 1956 978 978 1956 978 978 1957 977 977 1957 995 995 1957 978 978 1958 995 995 1958 972 972 1958 972 972 1959 995 995 1959 997 997 1959 972 972 1960 997 997 1960 979 979 1960 979 979 1961 997 997 1961 292 292 1961 1176 1176 1962 980 980 1962 1174 1174 1962 1174 1174 1963 980 980 1963 998 998 1963 1174 1174 1964 998 998 1964 981 981 1964 981 981 1965 998 998 1965 999 999 1965 981 981 1966 999 999 1966 1172 1172 1966 1172 1172 1967 999 999 1967 1000 1000 1967 1172 1172 1968 1000 1000 1968 982 982 1968 982 982 1969 1000 1000 1969 1003 1003 1969 982 982 1970 1003 1003 1970 1171 1171 1970 1171 1171 1971 1003 1003 1971 1004 1004 1971 1171 1171 1972 1004 1004 1972 1169 1169 1972 1169 1169 1973 1004 1004 1973 1005 1005 1973 1169 1169 1974 1005 1005 1974 983 983 1974 983 983 1975 1005 1005 1975 1006 1006 1975 983 983 1976 1006 1006 1976 984 984 1976 984 984 1977 1006 1006 1977 1007 1007 1977 984 984 1978 1007 1007 1978 1167 1167 1978 1167 1167 1979 1007 1007 1979 1009 1009 1979 1167 1167 1980 1009 1009 1980 985 985 1980 985 985 1981 1009 1009 1981 986 986 1981 985 985 1982 986 986 1982 1165 1165 1982 1165 1165 1983 986 986 1983 1010 1010 1983 1165 1165 1984 1010 1010 1984 988 988 1984 988 988 1985 1010 1010 1985 987 987 1985 988 988 1986 987 987 1986 1162 1162 1986 1162 1162 1987 987 987 1987 1012 1012 1987 1162 1162 1988 1012 1012 1988 989 989 1988 989 989 1989 1012 1012 1989 1014 1014 1989 989 989 1990 1014 1014 1990 1161 1161 1990 1161 1161 1991 1014 1014 1991 990 990 1991 1161 1161 1992 990 990 1992 991 991 1992 991 991 1993 990 990 1993 992 992 1993 991 991 1994 992 992 1994 1158 1158 1994 1158 1158 1995 992 992 1995 993 993 1995 1158 1158 1996 993 993 1996 1156 1156 1996 1156 1156 1997 993 993 1997 1017 1017 1997 1156 1156 1998 1017 1017 1998 976 976 1998 976 976 1999 1017 1017 1999 1018 1018 1999 976 976 2000 1018 1018 2000 977 977 2000 977 977 2001 1018 1018 2001 994 994 2001 977 977 2002 994 994 2002 995 995 2002 995 995 2003 994 994 2003 996 996 2003 995 995 2004 996 996 2004 997 997 2004 997 997 2005 996 996 2005 292 292 2005 980 980 2006 1134 1134 2006 998 998 2006 998 998 2007 1134 1134 2007 1020 1020 2007 998 998 2008 1020 1020 2008 999 999 2008 999 999 2009 1020 1020 2009 1001 1001 2009 999 999 2010 1001 1001 2010 1000 1000 2010 1000 1000 2011 1001 1001 2011 1002 1002 2011 1000 1000 2012 1002 1002 2012 1003 1003 2012 1003 1003 2013 1002 1002 2013 1023 1023 2013 1003 1003 2014 1023 1023 2014 1004 1004 2014 1004 1004 2015 1023 1023 2015 1024 1024 2015 1004 1004 2016 1024 1024 2016 1005 1005 2016 1005 1005 2017 1024 1024 2017 1025 1025 2017 1005 1005 2018 1025 1025 2018 1006 1006 2018 1006 1006 2019 1025 1025 2019 1026 1026 2019 1006 1006 2020 1026 1026 2020 1007 1007 2020 1007 1007 2021 1026 1026 2021 1008 1008 2021 1007 1007 2022 1008 1008 2022 1009 1009 2022 1009 1009 2023 1008 1008 2023 1030 1030 2023 1009 1009 2024 1030 1030 2024 986 986 2024 986 986 2025 1030 1030 2025 1032 1032 2025 986 986 2026 1032 1032 2026 1010 1010 2026 1010 1010 2027 1032 1032 2027 1011 1011 2027 1010 1010 2028 1011 1011 2028 987 987 2028 987 987 2029 1011 1011 2029 1013 1013 2029 987 987 2030 1013 1013 2030 1012 1012 2030 1012 1012 2031 1013 1013 2031 1034 1034 2031 1012 1012 2032 1034 1034 2032 1014 1014 2032 1014 1014 2033 1034 1034 2033 1035 1035 2033 1014 1014 2034 1035 1035 2034 990 990 2034 990 990 2035 1035 1035 2035 1015 1015 2035 990 990 2036 1015 1015 2036 992 992 2036 992 992 2037 1015 1015 2037 1039 1039 2037 992 992 2038 1039 1039 2038 993 993 2038 993 993 2039 1039 1039 2039 1016 1016 2039 993 993 2040 1016 1016 2040 1017 1017 2040 1017 1017 2041 1016 1016 2041 1042 1042 2041 1017 1017 2042 1042 1042 2042 1018 1018 2042 1018 1018 2043 1042 1042 2043 1043 1043 2043 1018 1018 2044 1043 1043 2044 994 994 2044 994 994 2045 1043 1043 2045 1019 1019 2045 994 994 2046 1019 1019 2046 996 996 2046 996 996 2047 1019 1019 2047 292 292 2047 1134 1134 2048 1137 1137 2048 1020 1020 2048 1020 1020 2049 1137 1137 2049 1021 1021 2049 1020 1020 2050 1021 1021 2050 1001 1001 2050 1001 1001 2051 1021 1021 2051 1022 1022 2051 1001 1001 2052 1022 1022 2052 1002 1002 2052 1002 1002 2053 1022 1022 2053 267 267 2053 1002 1002 2054 267 267 2054 1023 1023 2054 1023 1023 2055 267 267 2055 270 270 2055 1023 1023 2056 270 270 2056 1024 1024 2056 1024 1024 2057 270 270 2057 271 271 2057 1024 1024 2058 271 271 2058 1025 1025 2058 1025 1025 2059 271 271 2059 1027 1027 2059 1025 1025 2060 1027 1027 2060 1026 1026 2060 1026 1026 2061 1027 1027 2061 1028 1028 2061 1026 1026 2062 1028 1028 2062 1008 1008 2062 1008 1008 2063 1028 1028 2063 1029 1029 2063 1008 1008 2064 1029 1029 2064 1030 1030 2064 1030 1030 2065 1029 1029 2065 1031 1031 2065 1030 1030 2066 1031 1031 2066 1032 1032 2066 1032 1032 2067 1031 1031 2067 1033 1033 2067 1032 1032 2068 1033 1033 2068 1011 1011 2068 1011 1011 2069 1033 1033 2069 275 275 2069 1011 1011 2070 275 275 2070 1013 1013 2070 1013 1013 2071 275 275 2071 277 277 2071 1013 1013 2072 277 277 2072 1034 1034 2072 1034 1034 2073 277 277 2073 1036 1036 2073 1034 1034 2074 1036 1036 2074 1035 1035 2074 1035 1035 2075 1036 1036 2075 1037 1037 2075 1035 1035 2076 1037 1037 2076 1015 1015 2076 1015 1015 2077 1037 1037 2077 1038 1038 2077 1015 1015 2078 1038 1038 2078 1039 1039 2078 1039 1039 2079 1038 1038 2079 1040 1040 2079 1039 1039 2080 1040 1040 2080 1016 1016 2080 1016 1016 2081 1040 1040 2081 1041 1041 2081 1016 1016 2082 1041 1041 2082 1042 1042 2082 1042 1042 2083 1041 1041 2083 281 281 2083 1042 1042 2084 281 281 2084 1043 1043 2084 1043 1043 2085 281 281 2085 1044 1044 2085 1043 1043 2086 1044 1044 2086 1019 1019 2086 1019 1019 2087 1044 1044 2087 292 292 2087 292 292 2088 1045 1045 2088 474 474 2088 474 474 2089 1045 1045 2089 1046 1046 2089 474 474 2090 1046 1046 2090 475 475 2090 475 475 2091 1046 1046 2091 1047 1047 2091 475 475 2092 1047 1047 2092 476 476 2092 476 476 2093 1047 1047 2093 452 452 2093 476 476 2094 452 452 2094 1048 1048 2094 1048 1048 2095 452 452 2095 1049 1049 2095 1048 1048 2096 1049 1049 2096 1050 1050 2096 1050 1050 2097 1049 1049 2097 455 455 2097 1050 1050 2098 455 455 2098 1051 1051 2098 1051 1051 2099 455 455 2099 1053 1053 2099 1051 1051 2100 1053 1053 2100 1052 1052 2100 1052 1052 2101 1053 1053 2101 1054 1054 2101 1052 1052 2102 1054 1054 2102 1055 1055 2102 1055 1055 2103 1054 1054 2103 459 459 2103 1055 1055 2104 459 459 2104 1056 1056 2104 1056 1056 2105 459 459 2105 1057 1057 2105 1056 1056 2106 1057 1057 2106 1058 1058 2106 1058 1058 2107 1057 1057 2107 461 461 2107 1058 1058 2108 461 461 2108 477 477 2108 477 477 2109 461 461 2109 1060 1060 2109 477 477 2110 1060 1060 2110 1059 1059 2110 1059 1059 2111 1060 1060 2111 1061 1061 2111 1059 1059 2112 1061 1061 2112 1062 1062 2112 1062 1062 2113 1061 1061 2113 463 463 2113 1062 1062 2114 463 463 2114 480 480 2114 480 480 2115 463 463 2115 465 465 2115 480 480 2116 465 465 2116 1063 1063 2116 1063 1063 2117 465 465 2117 1064 1064 2117 1063 1063 2118 1064 1064 2118 1065 1065 2118 1065 1065 2119 1064 1064 2119 1066 1066 2119 1065 1065 2120 1066 1066 2120 1067 1067 2120 1067 1067 2121 1066 1066 2121 468 468 2121 1067 1067 2122 468 468 2122 481 481 2122 481 481 2123 468 468 2123 470 470 2123 481 481 2124 470 470 2124 1068 1068 2124 1068 1068 2125 470 470 2125 471 471 2125 1068 1068 2126 471 471 2126 482 482 2126 482 482 2127 471 471 2127 472 472 2127 482 482 2128 472 472 2128 483 483 2128 483 483 2129 472 472 2129 1069 1069 2129 483 483 2130 1069 1069 2130 485 485 2130 485 485 2131 1069 1069 2131 473 473 2131 485 485 2132 473 473 2132 487 487 2132 487 487 2133 473 473 2133 1070 1070 2133 487 487 2134 1070 1070 2134 489 489 2134 489 489 2135 1070 1070 2135 57 57 2135 1116 1116 2136 1114 1114 2136 1071 1071 2136 1071 1071 2137 1114 1114 2137 1072 1072 2137 1071 1071 2138 1072 1072 2138 1073 1073 2138 1073 1073 2139 1072 1072 2139 218 218 2139 1073 1073 2140 218 218 2140 1075 1075 2140 1075 1075 2141 218 218 2141 1074 1074 2141 1075 1075 2142 1074 1074 2142 453 453 2142 453 453 2143 1074 1074 2143 1076 1076 2143 453 453 2144 1076 1076 2144 454 454 2144 454 454 2145 1076 1076 2145 160 160 2145 454 454 2146 160 160 2146 456 456 2146 456 456 2147 160 160 2147 159 159 2147 456 456 2148 159 159 2148 457 457 2148 457 457 2149 159 159 2149 141 141 2149 457 457 2150 141 141 2150 458 458 2150 458 458 2151 141 141 2151 1077 1077 2151 458 458 2152 1077 1077 2152 1078 1078 2152 1078 1078 2153 1077 1077 2153 1079 1079 2153 1078 1078 2154 1079 1079 2154 1080 1080 2154 1080 1080 2155 1079 1079 2155 100 100 2155 1080 1080 2156 100 100 2156 460 460 2156 460 460 2157 100 100 2157 72 72 2157 460 460 2158 72 72 2158 462 462 2158 462 462 2159 72 72 2159 56 56 2159 462 462 2160 56 56 2160 1081 1081 2160 1081 1081 2161 56 56 2161 1082 1082 2161 1081 1081 2162 1082 1082 2162 464 464 2162 464 464 2163 1082 1082 2163 1083 1083 2163 464 464 2164 1083 1083 2164 1084 1084 2164 1084 1084 2165 1083 1083 2165 1085 1085 2165 1084 1084 2166 1085 1085 2166 466 466 2166 466 466 2167 1085 1085 2167 23 23 2167 466 466 2168 23 23 2168 467 467 2168 467 467 2169 23 23 2169 1086 1086 2169 467 467 2170 1086 1086 2170 469 469 2170 469 469 2171 1086 1086 2171 1087 1087 2171 469 469 2172 1087 1087 2172 1088 1088 2172 1088 1088 2173 1087 1087 2173 13 13 2173 1088 1088 2174 13 13 2174 1089 1089 2174 1089 1089 2175 13 13 2175 9 9 2175 1089 1089 2176 9 9 2176 1090 1090 2176 1090 1090 2177 9 9 2177 1 1 2177 1090 1090 2178 1 1 2178 1091 1091 2178 1091 1091 2179 1 1 2179 2 2 2179 1091 1091 2180 2 2 2180 1092 1092 2180 1092 1092 2181 2 2 2181 57 57 2181 427 427 2182 1093 1093 2182 1094 1094 2182 1094 1094 2183 1093 1093 2183 1095 1095 2183 1094 1094 2184 1095 1095 2184 429 429 2184 429 429 2185 1095 1095 2185 1096 1096 2185 429 429 2186 1096 1096 2186 430 430 2186 430 430 2187 1096 1096 2187 250 250 2187 430 430 2188 250 250 2188 431 431 2188 431 431 2189 250 250 2189 1097 1097 2189 431 431 2190 1097 1097 2190 432 432 2190 432 432 2191 1097 1097 2191 1098 1098 2191 432 432 2192 1098 1098 2192 434 434 2192 434 434 2193 1098 1098 2193 253 253 2193 434 434 2194 253 253 2194 1099 1099 2194 1099 1099 2195 253 253 2195 1100 1100 2195 1099 1099 2196 1100 1100 2196 436 436 2196 436 436 2197 1100 1100 2197 255 255 2197 436 436 2198 255 255 2198 1101 1101 2198 1101 1101 2199 255 255 2199 1103 1103 2199 1101 1101 2200 1103 1103 2200 1102 1102 2200 1102 1102 2201 1103 1103 2201 257 257 2201 1102 1102 2202 257 257 2202 439 439 2202 439 439 2203 257 257 2203 258 258 2203 439 439 2204 258 258 2204 1104 1104 2204 1104 1104 2205 258 258 2205 1105 1105 2205 1104 1104 2206 1105 1105 2206 441 441 2206 441 441 2207 1105 1105 2207 259 259 2207 441 441 2208 259 259 2208 442 442 2208 442 442 2209 259 259 2209 260 260 2209 442 442 2210 260 260 2210 1106 1106 2210 1106 1106 2211 260 260 2211 1107 1107 2211 1106 1106 2212 1107 1107 2212 444 444 2212 444 444 2213 1107 1107 2213 1108 1108 2213 444 444 2214 1108 1108 2214 1109 1109 2214 1109 1109 2215 1108 1108 2215 261 261 2215 1109 1109 2216 261 261 2216 1110 1110 2216 1110 1110 2217 261 261 2217 262 262 2217 1110 1110 2218 262 262 2218 1111 1111 2218 1111 1111 2219 262 262 2219 1112 1112 2219 1111 1111 2220 1112 1112 2220 448 448 2220 448 448 2221 1112 1112 2221 263 263 2221 448 448 2222 263 263 2222 450 450 2222 450 450 2223 263 263 2223 264 264 2223 450 450 2224 264 264 2224 1113 1113 2224 1113 1113 2225 264 264 2225 1114 1114 2225 1113 1113 2226 1114 1114 2226 1115 1115 2226 1115 1115 2227 1114 1114 2227 1116 1116 2227 1115 1115 2228 1116 1116 2228 292 292 2228 282 282 2229 292 292 2229 1044 1044 2229 266 266 2230 1117 1117 2230 1118 1118 2230 1118 1118 2231 1117 1117 2231 39 39 2231 1118 1118 2232 39 39 2232 1119 1119 2232 1119 1119 2233 39 39 2233 395 395 2233 1119 1119 2234 395 395 2234 268 268 2234 268 268 2235 395 395 2235 1120 1120 2235 268 268 2236 1120 1120 2236 269 269 2236 269 269 2237 1120 1120 2237 1121 1121 2237 269 269 2238 1121 1121 2238 1122 1122 2238 1122 1122 2239 1121 1121 2239 75 75 2239 1122 1122 2240 75 75 2240 272 272 2240 272 272 2241 75 75 2241 87 87 2241 272 272 2242 87 87 2242 273 273 2242 273 273 2243 87 87 2243 1123 1123 2243 273 273 2244 1123 1123 2244 274 274 2244 274 274 2245 1123 1123 2245 1125 1125 2245 274 274 2246 1125 1125 2246 1124 1124 2246 1124 1124 2247 1125 1125 2247 1126 1126 2247 1124 1124 2248 1126 1126 2248 1127 1127 2248 1127 1127 2249 1126 1126 2249 162 162 2249 1127 1127 2250 162 162 2250 1128 1128 2250 1128 1128 2251 162 162 2251 163 163 2251 1128 1128 2252 163 163 2252 276 276 2252 276 276 2253 163 163 2253 293 293 2253 276 276 2254 293 293 2254 1129 1129 2254 1129 1129 2255 293 293 2255 1130 1130 2255 1129 1129 2256 1130 1130 2256 278 278 2256 278 278 2257 1130 1130 2257 220 220 2257 278 278 2258 220 220 2258 279 279 2258 279 279 2259 220 220 2259 1131 1131 2259 279 279 2260 1131 1131 2260 280 280 2260 280 280 2261 1131 1131 2261 283 283 2261 280 280 2262 283 283 2262 1132 1132 2262 1132 1132 2263 283 283 2263 1133 1133 2263 1132 1132 2264 1133 1133 2264 282 282 2264 282 282 2265 1133 1133 2265 292 292 2265 5 5 2266 57 57 2266 427 427 2266 1176 1176 2267 428 428 2267 980 980 2267 980 980 2268 428 428 2268 1135 1135 2268 980 980 2269 1135 1135 2269 1134 1134 2269 1134 1134 2270 1135 1135 2270 1136 1136 2270 1134 1134 2271 1136 1136 2271 1137 1137 2271 1137 1137 2272 1136 1136 2272 1138 1138 2272 1137 1137 2273 1138 1138 2273 266 266 2273 266 266 2274 1138 1138 2274 1139 1139 2274 266 266 2275 1139 1139 2275 1117 1117 2275 1117 1117 2276 1139 1139 2276 433 433 2276 1117 1117 2277 433 433 2277 410 410 2277 410 410 2278 433 433 2278 1141 1141 2278 410 410 2279 1141 1141 2279 1140 1140 2279 1140 1140 2280 1141 1141 2280 435 435 2280 1140 1140 2281 435 435 2281 413 413 2281 413 413 2282 435 435 2282 437 437 2282 413 413 2283 437 437 2283 1143 1143 2283 1143 1143 2284 437 437 2284 1142 1142 2284 1143 1143 2285 1142 1142 2285 1144 1144 2285 1144 1144 2286 1142 1142 2286 438 438 2286 1144 1144 2287 438 438 2287 1145 1145 2287 1145 1145 2288 438 438 2288 1146 1146 2288 1145 1145 2289 1146 1146 2289 1147 1147 2289 1147 1147 2290 1146 1146 2290 440 440 2290 1147 1147 2291 440 440 2291 1148 1148 2291 1148 1148 2292 440 440 2292 1149 1149 2292 1148 1148 2293 1149 1149 2293 416 416 2293 416 416 2294 1149 1149 2294 443 443 2294 416 416 2295 443 443 2295 1150 1150 2295 1150 1150 2296 443 443 2296 1151 1151 2296 1150 1150 2297 1151 1151 2297 419 419 2297 419 419 2298 1151 1151 2298 1152 1152 2298 419 419 2299 1152 1152 2299 421 421 2299 421 421 2300 1152 1152 2300 445 445 2300 421 421 2301 445 445 2301 422 422 2301 422 422 2302 445 445 2302 446 446 2302 422 422 2303 446 446 2303 424 424 2303 424 424 2304 446 446 2304 447 447 2304 424 424 2305 447 447 2305 1153 1153 2305 1153 1153 2306 447 447 2306 449 449 2306 1153 1153 2307 449 449 2307 426 426 2307 426 426 2308 449 449 2308 451 451 2308 426 426 2309 451 451 2309 1154 1154 2309 1154 1154 2310 451 451 2310 1155 1155 2310 1154 1154 2311 1155 1155 2311 292 292 2311 976 976 2312 1157 1157 2312 1156 1156 2312 1156 1156 2313 1157 1157 2313 1159 1159 2313 1156 1156 2314 1159 1159 2314 1158 1158 2314 1158 1158 2315 1159 1159 2315 968 968 2315 1158 1158 2316 968 968 2316 991 991 2316 991 991 2317 968 968 2317 1160 1160 2317 991 991 2318 1160 1160 2318 1161 1161 2318 1161 1161 2319 1160 1160 2319 966 966 2319 1161 1161 2320 966 966 2320 989 989 2320 989 989 2321 966 966 2321 1163 1163 2321 989 989 2322 1163 1163 2322 1162 1162 2322 1162 1162 2323 1163 1163 2323 1164 1164 2323 1162 1162 2324 1164 1164 2324 988 988 2324 988 988 2325 1164 1164 2325 963 963 2325 988 988 2326 963 963 2326 1165 1165 2326 1165 1165 2327 963 963 2327 962 962 2327 1165 1165 2328 962 962 2328 985 985 2328 985 985 2329 962 962 2329 1166 1166 2329 985 985 2330 1166 1166 2330 1167 1167 2330 1167 1167 2331 1166 1166 2331 960 960 2331 1167 1167 2332 960 960 2332 984 984 2332 984 984 2333 960 960 2333 959 959 2333 984 984 2334 959 959 2334 983 983 2334 983 983 2335 959 959 2335 1168 1168 2335 983 983 2336 1168 1168 2336 1169 1169 2336 1169 1169 2337 1168 1168 2337 1170 1170 2337 1169 1169 2338 1170 1170 2338 1171 1171 2338 1171 1171 2339 1170 1170 2339 956 956 2339 1171 1171 2340 956 956 2340 982 982 2340 982 982 2341 956 956 2341 955 955 2341 982 982 2342 955 955 2342 1172 1172 2342 1172 1172 2343 955 955 2343 954 954 2343 1172 1172 2344 954 954 2344 981 981 2344 981 981 2345 954 954 2345 1173 1173 2345 981 981 2346 1173 1173 2346 1174 1174 2346 1174 1174 2347 1173 1173 2347 1175 1175 2347 1174 1174 2348 1175 1175 2348 1176 1176 2348 1176 1176 2349 1175 1175 2349 1177 1177 2349 1176 1176 2350 1177 1177 2350 5 5 2350 5 5 2351 1177 1177 2351 57 57 2351

+
+
+
+
+ + + + + + + + + + +
diff --git a/stack_master/config/NUC2/slam/f110_description/meshes/walker_racecourse.dae b/stack_master/config/NUC2/slam/f110_description/meshes/walker_racecourse.dae new file mode 100755 index 0000000..84269f2 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/meshes/walker_racecourse.dae @@ -0,0 +1,506 @@ + + + + + Blender User + Blender 2.77.0 commit date:2016-04-05, commit time:18:12, hash:abf6f08 + + 2016-07-27T16:34:38 + 2016-07-27T16:34:38 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.273904 0.1081182 0.02791987 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.01523832 0.01630333 0.01550063 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.64 0.64 0.64 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0.8 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0.8 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.8 0 0.8 1 + + + 0.8 0.8 0.8 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 609.6001 304.8 609.6001 0 304.8 0 609.6001 304.8 30175.2 0 304.8 30784.8 25603.2 304.8 30175.2 26212.8 304.8 30784.8 25603.2 304.8 609.6001 26212.8 304.8 0 5342.319 304.8 13012.63 5377.231 304.8 13081.88 6588.161 304.8 14169.09 5406.497 304.8 13310.42 5390.16 304.8 13386.23 5361.246 304.8 13458.18 5399.938 304.8 13156.03 5409.788 304.8 13232.94 3624.467 304.8 9360.415 3570.321 304.8 9272.057 2369.898 304.8 9883.703 24117.28 304.8 14785.5 23742.11 304.8 14414.03 22260.17 304.8 15680.97 23289.62 304.8 19994.42 23820.05 304.8 19470.24 22268.94 304.8 18354.05 1894.678 304.8 17151.7 1744.71 304.8 17539.68 3139.134 304.8 17820.35 12794.19 304.8 20730.74 17396.63 304.8 20175.11 11431.7 304.8 19012.63 12766.32 304.8 18513.77 3691.769 304.8 9439.215 5296.208 304.8 12950.29 22181.37 304.8 15613.67 23308.47 304.8 14112.88 22093.02 304.8 15559.53 22829.37 304.8 13891.07 21997.28 304.8 15519.87 22319.17 304.8 13755.27 21896.51 304.8 15495.68 24251.72 304.8 18862.15 24571.61 304.8 18188.51 22445.86 304.8 17996.85 24770.05 304.8 17469.67 22453.6 304.8 16147.95 22453.6 304.8 17896.01 22327.48 304.8 15759.77 22381.62 304.8 15848.13 24422.72 304.8 15216.13 22421.28 304.8 15943.87 24649.26 304.8 15693.01 22445.47 304.8 16044.64 24790.11 304.8 16201.83 24841.05 304.8 16727.33 22422.81 304.8 18095.32 22384.99 304.8 18189.12 22333.3 304.8 18276.04 8191.751 304.8 22382.09 8191.751 304.8 20175.11 3589.312 304.8 20730.74 3572.155 304.8 18517.61 3234.311 304.8 20585.15 3135.704 304.8 17930.87 1661.168 304.8 17947.17 3150.766 304.8 18040.42 1646.365 304.8 18362.87 3183.897 304.8 18145.92 1700.713 304.8 18775.26 3234.166 304.8 18244.42 1822.704 304.8 19172.93 3300.166 304.8 18333.15 2008.961 304.8 19544.86 3380.044 304.8 18409.62 2254.323 304.8 19880.75 3471.563 304.8 18471.68 2551.995 304.8 20171.29 2893.732 304.8 20408.43 2249.338 304.8 9592.644 3530.665 304.8 9176.317 2175.794 304.8 9286.31 3506.473 304.8 9075.55 2151.075 304.8 8972.242 3498.342 304.8 8972.242 2175.794 304.8 8658.173 3506.473 304.8 8868.932 2249.338 304.8 8351.838 3530.665 304.8 8768.167 2369.898 304.8 8060.78 3570.321 304.8 8672.426 2534.506 304.8 7792.165 3624.467 304.8 8584.068 2739.107 304.8 7552.606 3691.769 304.8 8505.269 5773.322 304.8 4518.393 5990.675 304.8 6206.362 6069.474 304.8 6139.06 22193.43 304.8 18421.32 22108.52 304.8 18476.27 22676.46 304.8 20418.86 22016.23 304.8 18517.61 21999.07 304.8 20730.74 17396.63 304.8 22382.09 2534.506 304.8 10152.32 2739.107 304.8 10391.88 5276.29 304.8 12929.06 3160.955 304.8 17711.94 3200.562 304.8 17608.69 2106.917 304.8 16793.96 3256.839 304.8 17513.5 2375.549 304.8 16476.38 3328.211 304.8 17429.04 5276.29 304.8 13575.64 5320.588 304.8 13524.21 6157.833 304.8 6084.914 6253.573 304.8 6045.258 5888.799 304.8 4419.766 6354.339 304.8 6021.066 6018.284 304.8 4340.417 6158.586 304.8 4282.302 6457.648 304.8 6012.935 6306.253 304.8 4246.85 21793.2 304.8 15487.55 21793.2 304.8 13709.55 15697.2 304.8 15487.55 15697.2 304.8 13709.55 15323.7 304.8 15458.15 15601.84 304.8 13702.04 14959.39 304.8 15370.69 15508.82 304.8 13679.71 14613.25 304.8 15227.31 15420.45 304.8 13643.1 14293.8 304.8 15031.56 15338.89 304.8 13593.12 14008.91 304.8 14788.23 15266.15 304.8 13531 13765.59 304.8 14503.34 15204.02 304.8 13458.26 13569.83 304.8 14183.9 15154.04 304.8 13376.7 13426.46 304.8 13837.76 15117.44 304.8 13288.32 13339 304.8 13473.45 15095.11 304.8 13195.31 13309.6 304.8 13099.95 15087.6 304.8 13099.95 13309.6 304.8 6673.335 15087.6 304.8 6673.335 13301.47 304.8 6570.026 15057.58 304.8 6291.885 13277.28 304.8 6469.26 14968.26 304.8 5919.828 13237.62 304.8 6373.52 14821.83 304.8 5566.325 13183.48 304.8 6285.162 14621.91 304.8 5240.08 13116.17 304.8 6206.362 14373.41 304.8 4949.126 13037.37 304.8 6139.06 14082.46 304.8 4700.628 12949.02 304.8 6084.914 13756.21 304.8 4500.705 12853.28 304.8 6045.258 13402.71 304.8 4354.278 12752.51 304.8 6021.066 13030.65 304.8 4264.956 12649.2 304.8 6012.935 12649.2 304.8 4234.935 6457.648 304.8 4234.935 914.4001 304.8 28126.14 914.4001 304.8 29870.4 3044.261 304.8 29870.4 3387.684 304.8 6832.188 3044.261 304.8 6832.188 3044.261 304.8 7175.611 23322.15 304.8 20033.44 23304.43 304.8 20045.71 23304.43 304.8 22299.51 17396.63 304.8 22436.06 17016.07 304.8 22299.51 13106.4 304.8 22299.51 13106.4 304.8 20896.73 3441.079 304.8 15339 3044.261 304.8 15339 3044.261 304.8 15735.82 2703.186 304.8 7516.686 2125.619 304.8 8650.227 2201.024 304.8 8336.14 914.4001 304.8 6832.188 2324.635 304.8 8037.717 2493.407 304.8 7762.305 3044.261 304.8 10768.87 2703.186 304.8 10427.8 914.4001 304.8 15339 2493.407 304.8 10182.18 2324.635 304.8 9906.765 2201.024 304.8 9608.342 2125.619 304.8 9294.256 2100.275 304.8 8972.242 4585.413 304.8 13524.21 4544.755 304.8 13458.18 4800.689 304.8 12821.26 4875.733 304.8 12801.72 4953 304.8 12795.15 5030.268 304.8 12801.72 5092.262 304.8 12816.87 5092.262 304.8 13687.82 5068.205 304.8 13694.79 4991.773 304.8 13707.9 4914.228 304.8 13707.9 4837.796 304.8 13694.79 4764.679 304.8 13668.96 4696.979 304.8 13631.14 4636.646 304.8 13582.43 4506.062 304.8 13156.03 4528.77 304.8 13081.88 4563.682 304.8 13012.63 4609.792 304.8 12950.29 4665.778 304.8 12896.63 4730.026 304.8 12853.2 4515.841 304.8 13386.23 4499.503 304.8 13310.42 4496.212 304.8 13232.94 2339.628 304.8 16440.46 1695.967 304.8 17525.38 1848.983 304.8 17129.51 2065.537 304.8 16764.5 1775.546 304.8 19191.82 914.4001 304.8 22299.51 1965.589 304.8 19571.31 2215.938 304.8 19914.02 1651.075 304.8 18786.07 1595.623 304.8 18365.29 1610.726 304.8 17941.14 3044.261 304.8 20543.71 2868.344 304.8 20452.43 2519.661 304.8 20210.47 7811.189 304.8 22285.11 5287.396 304.8 21393.98 5296.208 304.8 21403.71 4665.778 304.8 21350.05 4730.026 304.8 21306.63 3572.155 304.8 20778.56 5342.319 304.8 21466.06 5377.231 304.8 21535.3 5399.938 304.8 21609.45 5409.788 304.8 21686.37 5406.497 304.8 21763.84 5390.16 304.8 21839.65 4800.689 304.8 21274.69 4875.733 304.8 21255.15 4893.101 304.8 21252.51 5361.246 304.8 21911.6 5320.588 304.8 21977.64 5269.355 304.8 22035.85 4991.773 304.8 22161.32 4914.228 304.8 22161.32 3044.261 304.8 22299.51 5209.02 304.8 22084.57 5141.322 304.8 22122.38 5068.205 304.8 22148.22 4696.979 304.8 22084.57 4636.646 304.8 22035.85 4585.413 304.8 21977.64 4544.755 304.8 21911.6 4515.841 304.8 21839.65 4499.503 304.8 21763.84 4496.212 304.8 21686.37 4506.062 304.8 21609.45 4528.77 304.8 21535.3 4837.796 304.8 22148.22 4764.679 304.8 22122.38 3212.954 304.8 20631.24 4563.682 304.8 21466.06 4609.792 304.8 21403.71 8572.314 304.8 22299.51 8191.751 304.8 22436.06 13106.4 304.8 23951.77 17777.2 304.8 22299.51 23304.43 304.8 23951.77 12794.19 304.8 20784.71 22701.69 304.8 20462.95 21036.83 304.8 21306.63 21107.49 304.8 21274.69 21182.53 304.8 21255.15 21259.8 304.8 21248.57 21337.07 304.8 21255.15 21713.3 304.8 21763.84 21696.96 304.8 21839.65 21144.6 304.8 22148.22 21071.48 304.8 22122.38 21003.78 304.8 22084.57 20943.45 304.8 22035.85 20892.21 304.8 21977.64 20851.56 304.8 21911.6 20822.64 304.8 21839.65 20806.3 304.8 21763.84 20803.01 304.8 21686.37 20812.86 304.8 21609.45 21412.11 304.8 21274.69 21482.78 304.8 21306.63 21547.02 304.8 21350.05 20835.57 304.8 21535.3 20870.48 304.8 21466.06 20916.59 304.8 21403.71 20972.58 304.8 21350.05 22016.23 304.8 20778.56 21576.16 304.8 22035.85 21515.82 304.8 22084.57 21448.12 304.8 22122.38 21375 304.8 22148.22 21298.57 304.8 22161.32 21259.8 304.8 22162.97 21221.03 304.8 22161.32 21668.05 304.8 21911.6 21627.39 304.8 21977.64 21603.01 304.8 21403.71 21649.12 304.8 21466.06 21684.03 304.8 21535.3 21706.74 304.8 21609.45 21716.59 304.8 21686.37 25298.4 304.8 15339 24537.13 304.8 15339 24696.99 304.8 15675.61 24820.08 304.8 17478.49 25298.4 304.8 22299.51 24891.85 304.8 16727.28 24840.14 304.8 16192.97 24619.34 304.8 18205.93 24295.68 304.8 18887.62 23858.89 304.8 19502.99 23304.43 304.8 14055.25 23333.86 304.8 14068.88 25298.4 304.8 6832.188 23774.75 304.8 14375.1 24156.18 304.8 14752.83 24466.69 304.8 15190.71 23304.43 304.8 6832.188 22327.99 304.8 13705.24 22846.73 304.8 13843.33 21050.35 304.8 13658.75 21003.78 304.8 13631.14 15697.2 304.8 13658.75 20943.45 304.8 13582.43 20892.21 304.8 13524.21 20851.56 304.8 13458.18 20822.64 304.8 13386.23 20806.3 304.8 13310.42 20803.01 304.8 13232.94 20812.86 304.8 13156.03 15138.4 304.8 13099.95 20835.57 304.8 13081.88 15138.4 304.8 6832.188 20870.48 304.8 13012.63 20916.59 304.8 12950.29 20812.86 304.8 8875.918 20803.01 304.8 8952.837 20806.3 304.8 9030.314 15443.51 304.8 13597.84 15524.52 304.8 13631.4 15165.75 304.8 13272.63 15199.31 304.8 13353.64 15368.75 304.8 13552.03 15245.12 304.8 13428.4 15302.07 304.8 13495.08 15609.79 304.8 13651.87 20972.58 304.8 12896.63 21036.83 304.8 12853.2 21107.49 304.8 12821.26 20822.64 304.8 9106.12 15145.28 304.8 13187.36 20943.45 304.8 9302.32 21003.78 304.8 9351.037 21071.48 304.8 9388.856 20835.57 304.8 8801.772 20870.48 304.8 8732.528 20916.59 304.8 8670.181 21337.07 304.8 8521.619 21412.11 304.8 8541.159 21713.3 304.8 13310.42 21716.59 304.8 13232.94 21706.74 304.8 13156.03 21469.25 304.8 13658.75 21793.2 304.8 13658.75 21515.82 304.8 13631.14 21576.16 304.8 13582.43 21144.6 304.8 9414.689 21182.53 304.8 12801.72 21221.03 304.8 9427.794 20892.21 304.8 9244.108 20851.56 304.8 9178.075 21482.78 304.8 8573.1 21547.02 304.8 8616.524 21603.01 304.8 8670.181 21649.12 304.8 8732.528 21684.03 304.8 8801.772 21706.74 304.8 8875.918 21716.59 304.8 8952.837 21713.3 304.8 9030.314 21696.96 304.8 9106.12 21668.05 304.8 9178.075 21696.96 304.8 13386.23 21668.05 304.8 13458.18 21627.39 304.8 13524.21 20972.58 304.8 8616.524 21036.83 304.8 8573.1 21107.49 304.8 8541.159 21547.02 304.8 12896.63 21482.78 304.8 12853.2 21627.39 304.8 9244.108 21576.16 304.8 9302.32 21603.01 304.8 12950.29 21649.12 304.8 13012.63 21684.03 304.8 13081.88 21515.82 304.8 9351.037 21448.12 304.8 9388.856 21375 304.8 9414.689 21182.53 304.8 8521.619 21259.8 304.8 8515.041 21259.8 304.8 9429.442 21259.8 304.8 12795.15 21298.57 304.8 9427.794 21337.07 304.8 12801.72 21412.11 304.8 12821.26 20812.86 304.8 4595.813 13106.4 304.8 4231.059 13418.41 304.8 4305.965 20972.58 304.8 4336.417 13106.4 304.8 914.4001 20916.59 304.8 4390.075 20870.48 304.8 4452.422 21713.3 304.8 4750.208 21696.96 304.8 4826.014 21221.03 304.8 5147.688 21144.6 304.8 5134.583 21071.48 304.8 5108.749 21003.78 304.8 5070.93 20943.45 304.8 5022.213 20822.64 304.8 4826.014 20806.3 304.8 4750.208 15016.57 304.8 5904.13 20803.01 304.8 4672.731 13779.27 304.8 4455.441 14112.32 304.8 4659.53 20835.57 304.8 4521.665 21259.8 304.8 4234.935 21337.07 304.8 4241.511 23304.43 304.8 914.4001 21412.11 304.8 4261.051 21603.01 304.8 4390.075 21649.12 304.8 4452.422 21668.05 304.8 4897.968 21627.39 304.8 4964.001 21576.16 304.8 5022.213 20892.21 304.8 4964.001 20851.56 304.8 4897.968 15138.4 304.8 6673.335 15107.75 304.8 6283.938 14409.33 304.8 4913.205 14663.01 304.8 5210.22 14867.09 304.8 5543.262 21036.83 304.8 4292.993 21107.49 304.8 4261.051 21182.53 304.8 4241.511 21482.78 304.8 4292.993 21547.02 304.8 4336.417 21684.03 304.8 4521.665 21706.74 304.8 4595.813 21716.59 304.8 4672.731 21375 304.8 5134.583 21298.57 304.8 5147.688 21259.8 304.8 5149.335 21515.82 304.8 5070.93 21448.12 304.8 5108.749 5409.788 304.8 4672.731 5406.497 304.8 4750.208 5737.401 304.8 4482.472 5390.16 304.8 4826.014 5388.475 304.8 4831.397 4544.755 304.8 4897.968 4515.841 304.8 4826.014 5092.262 304.8 5127.609 5068.205 304.8 5134.583 4991.773 304.8 5147.688 4914.228 304.8 5147.688 4837.796 304.8 5134.583 4585.413 304.8 4964.001 3044.261 304.8 914.4001 5030.268 304.8 4241.511 5105.312 304.8 4261.051 5175.975 304.8 4292.993 5240.223 304.8 4336.417 4764.679 304.8 5108.749 4696.979 304.8 5070.93 4636.646 304.8 5022.213 4499.503 304.8 4750.208 4496.212 304.8 4672.731 4506.062 304.8 4595.813 4528.77 304.8 4521.665 4563.682 304.8 4452.422 4609.792 304.8 4390.075 4665.778 304.8 4336.417 4730.026 304.8 4292.993 4800.689 304.8 4261.051 4875.733 304.8 4241.511 4953 304.8 4234.935 5858.939 304.8 4378.667 5377.231 304.8 4521.665 5399.938 304.8 4595.813 6142.888 304.8 4233.988 6298.307 304.8 4196.675 6457.648 304.8 4184.135 5296.208 304.8 4390.075 5342.319 304.8 4452.422 5995.221 304.8 4295.154 12649.2 304.8 4184.135 13038.6 304.8 4214.781 914.4001 304.8 914.4001 3044.261 304.8 28126.14 914.4001 304.8 23951.77 3044.261 304.8 23951.77 4665.778 304.8 25568.96 4730.026 304.8 25525.53 4800.689 304.8 25493.59 4991.773 304.8 26380.23 5068.205 304.8 26367.12 13106.4 304.8 28126.14 4506.062 304.8 25828.35 4528.77 304.8 25754.2 4563.682 304.8 25684.96 4609.792 304.8 25622.61 4914.228 304.8 26380.23 4837.796 304.8 26367.12 4764.679 304.8 26341.29 4585.413 304.8 26196.54 4544.755 304.8 26130.5 4875.733 304.8 25474.05 4953 304.8 25467.47 5030.268 304.8 25474.05 5105.312 304.8 25493.59 5175.975 304.8 25525.53 5240.223 304.8 25568.96 5296.208 304.8 25622.61 5342.319 304.8 25684.96 5377.231 304.8 25754.2 4696.979 304.8 26303.47 4636.646 304.8 26254.75 4515.841 304.8 26058.55 4499.503 304.8 25982.75 4496.212 304.8 25905.27 5390.16 304.8 26058.55 5361.246 304.8 26130.5 5320.588 304.8 26196.54 5269.355 304.8 26254.75 5399.938 304.8 25828.35 5409.788 304.8 25905.27 5406.497 304.8 25982.75 5209.02 304.8 26303.47 5141.322 304.8 26341.29 21259.8 304.8 25467.47 21337.07 304.8 25474.05 23304.43 304.8 28126.14 21221.03 304.8 26380.23 20972.58 304.8 25568.96 21036.83 304.8 25525.53 21107.49 304.8 25493.59 21182.53 304.8 25474.05 21375 304.8 26367.12 21298.57 304.8 26380.23 21259.8 304.8 26381.87 21144.6 304.8 26367.12 21071.48 304.8 26341.29 21003.78 304.8 26303.47 20812.86 304.8 25828.35 20835.57 304.8 25754.2 21412.11 304.8 25493.59 21482.78 304.8 25525.53 21547.02 304.8 25568.96 20943.45 304.8 26254.75 20892.21 304.8 26196.54 20851.56 304.8 26130.5 20822.64 304.8 26058.55 20806.3 304.8 25982.75 20803.01 304.8 25905.27 20870.48 304.8 25684.96 20916.59 304.8 25622.61 21576.16 304.8 26254.75 21515.82 304.8 26303.47 21448.12 304.8 26341.29 21603.01 304.8 25622.61 21649.12 304.8 25684.96 21684.03 304.8 25754.2 21706.74 304.8 25828.35 21716.59 304.8 25905.27 21713.3 304.8 25982.75 21696.96 304.8 26058.55 21668.05 304.8 26130.5 21627.39 304.8 26196.54 13106.4 304.8 29870.4 23304.43 304.8 29870.4 25298.4 304.8 914.4001 25298.4 304.8 29870.4 25298.4 304.8 28126.14 25298.4 304.8 23951.77 21448.12 609.6 13668.96 21469.25 609.6 13658.75 21515.82 914.4 13631.14 21448.12 914.4 13668.96 21375 914.4 13694.79 21375 609.6 13694.79 21298.57 914.4 13707.9 21298.57 609.6 13707.9 21259.8 609.6 13709.55 21259.8 914.4 13709.55 21221.03 609.6 13707.9 21221.03 914.4 13707.9 21144.6 914.4 13694.79 21144.6 609.6 13694.79 21071.48 914.4 13668.96 21071.48 609.6 13668.96 21050.35 609.6 13658.75 21003.78 914.4 13631.14 20943.45 914.4 13582.43 20892.21 914.4 13524.21 20851.56 914.4 13458.18 20822.64 914.4 13386.23 20806.3 914.4 13310.42 20803.01 914.4 13232.94 20812.86 914.4 13156.03 20835.57 914.4 13081.88 20870.48 914.4 13012.63 20916.59 914.4 12950.29 20972.58 914.4 12896.63 21036.83 914.4 12853.2 21107.49 914.4 12821.26 21182.53 914.4 12801.72 21259.8 914.4 12795.15 21337.07 914.4 12801.72 21412.11 914.4 12821.26 21482.78 914.4 12853.2 21547.02 914.4 12896.63 21603.01 914.4 12950.29 21649.12 914.4 13012.63 21684.03 914.4 13081.88 21706.74 914.4 13156.03 21716.59 914.4 13232.94 21713.3 914.4 13310.42 21696.96 914.4 13386.23 21668.05 914.4 13458.18 21627.39 914.4 13524.21 21576.16 914.4 13582.43 5269.355 609.6 13582.43 5276.29 609.6 13575.64 5320.588 914.4 13524.21 5269.355 914.4 13582.43 5209.02 914.4 13631.14 5209.02 609.6 13631.14 5141.322 914.4 13668.96 5141.322 609.6 13668.96 5092.262 609.6 13687.82 5105.312 609.6 12821.26 5092.262 609.6 12816.87 5030.268 914.4 12801.72 5105.312 914.4 12821.26 5175.975 914.4 12853.2 5175.975 609.6 12853.2 5240.223 914.4 12896.63 5240.223 609.6 12896.63 5276.29 609.6 12929.06 5068.205 914.4 13694.79 4991.773 914.4 13707.9 4953 914.4 13709.55 5296.208 914.4 12950.29 5342.319 914.4 13012.63 5377.231 914.4 13081.88 5399.938 914.4 13156.03 5409.788 914.4 13232.94 5406.497 914.4 13310.42 5390.16 914.4 13386.23 5361.246 914.4 13458.18 4914.228 914.4 13707.9 4837.796 914.4 13694.79 4764.679 914.4 13668.96 4696.979 914.4 13631.14 4636.646 914.4 13582.43 4585.413 914.4 13524.21 4544.755 914.4 13458.18 4515.841 914.4 13386.23 4499.503 914.4 13310.42 4496.212 914.4 13232.94 4506.062 914.4 13156.03 4528.77 914.4 13081.88 4563.682 914.4 13012.63 4609.792 914.4 12950.29 4665.778 914.4 12896.63 4730.026 914.4 12853.2 4800.689 914.4 12821.26 4875.733 914.4 12801.72 4953 914.4 12795.15 609.6001 914.4 609.6001 25603.2 914.4 609.6001 609.6001 914.4 30175.2 25603.2 914.4 30175.2 25298.4 914.4 29870.4 25298.4 914.4 914.4001 914.4001 914.4 29870.4 914.4001 914.4 914.4001 21298.57 914.4 26380.23 21259.8 914.4 26381.87 21221.03 914.4 26380.23 21144.6 914.4 26367.12 21071.48 914.4 26341.29 21003.78 914.4 26303.47 20943.45 914.4 26254.75 20892.21 914.4 26196.54 20851.56 914.4 26130.5 20822.64 914.4 26058.55 20806.3 914.4 25982.75 20803.01 914.4 25905.27 20812.86 914.4 25828.35 20835.57 914.4 25754.2 20870.48 914.4 25684.96 20916.59 914.4 25622.61 20972.58 914.4 25568.96 21036.83 914.4 25525.53 21107.49 914.4 25493.59 21182.53 914.4 25474.05 21259.8 914.4 25467.47 21337.07 914.4 25474.05 21412.11 914.4 25493.59 21482.78 914.4 25525.53 21547.02 914.4 25568.96 21603.01 914.4 25622.61 21649.12 914.4 25684.96 21684.03 914.4 25754.2 21706.74 914.4 25828.35 21716.59 914.4 25905.27 21713.3 914.4 25982.75 21696.96 914.4 26058.55 21668.05 914.4 26130.5 21627.39 914.4 26196.54 21576.16 914.4 26254.75 21515.82 914.4 26303.47 21448.12 914.4 26341.29 21375 914.4 26367.12 21259.8 914.4 25924.67 21298.57 914.4 22161.32 21259.8 914.4 22162.97 21221.03 914.4 22161.32 21144.6 914.4 22148.22 21071.48 914.4 22122.38 21003.78 914.4 22084.57 20943.45 914.4 22035.85 20892.21 914.4 21977.64 20851.56 914.4 21911.6 20822.64 914.4 21839.65 20806.3 914.4 21763.84 20803.01 914.4 21686.37 20812.86 914.4 21609.45 20835.57 914.4 21535.3 20870.48 914.4 21466.06 20916.59 914.4 21403.71 20972.58 914.4 21350.05 21036.83 914.4 21306.63 21107.49 914.4 21274.69 21182.53 914.4 21255.15 21259.8 914.4 21248.57 21337.07 914.4 21255.15 21412.11 914.4 21274.69 21482.78 914.4 21306.63 21547.02 914.4 21350.05 21603.01 914.4 21403.71 21649.12 914.4 21466.06 21684.03 914.4 21535.3 21706.74 914.4 21609.45 21716.59 914.4 21686.37 21713.3 914.4 21763.84 21696.96 914.4 21839.65 21668.05 914.4 21911.6 21627.39 914.4 21977.64 21576.16 914.4 22035.85 21515.82 914.4 22084.57 21448.12 914.4 22122.38 21375 914.4 22148.22 21259.8 914.4 21705.77 21259.8 914.4 13252.35 21298.57 914.4 9427.794 21259.8 914.4 9429.442 21221.03 914.4 9427.794 21144.6 914.4 9414.689 21071.48 914.4 9388.856 21003.78 914.4 9351.037 20943.45 914.4 9302.32 20892.21 914.4 9244.108 20851.56 914.4 9178.075 20822.64 914.4 9106.12 20806.3 914.4 9030.314 20803.01 914.4 8952.837 20812.86 914.4 8875.918 20835.57 914.4 8801.772 20870.48 914.4 8732.528 20916.59 914.4 8670.181 20972.58 914.4 8616.524 21036.83 914.4 8573.1 21107.49 914.4 8541.159 21182.53 914.4 8521.619 21259.8 914.4 8515.041 21337.07 914.4 8521.619 21412.11 914.4 8541.159 21482.78 914.4 8573.1 21547.02 914.4 8616.524 21603.01 914.4 8670.181 21649.12 914.4 8732.528 21684.03 914.4 8801.772 21706.74 914.4 8875.918 21716.59 914.4 8952.837 21713.3 914.4 9030.314 21696.96 914.4 9106.12 21668.05 914.4 9178.075 21627.39 914.4 9244.108 21576.16 914.4 9302.32 21515.82 914.4 9351.037 21448.12 914.4 9388.856 21375 914.4 9414.689 21259.8 914.4 8972.242 21298.57 914.4 5147.688 21259.8 914.4 5149.335 21221.03 914.4 5147.688 21144.6 914.4 5134.583 21071.48 914.4 5108.749 21003.78 914.4 5070.93 20943.45 914.4 5022.213 20892.21 914.4 4964.001 20851.56 914.4 4897.968 20822.64 914.4 4826.014 20806.3 914.4 4750.208 20803.01 914.4 4672.731 20812.86 914.4 4595.813 20835.57 914.4 4521.665 20870.48 914.4 4452.422 20916.59 914.4 4390.075 20972.58 914.4 4336.417 21036.83 914.4 4292.993 21107.49 914.4 4261.051 21182.53 914.4 4241.511 21259.8 914.4 4234.935 21337.07 914.4 4241.511 21412.11 914.4 4261.051 21482.78 914.4 4292.993 21547.02 914.4 4336.417 21603.01 914.4 4390.075 21649.12 914.4 4452.422 21684.03 914.4 4521.665 21706.74 914.4 4595.813 21716.59 914.4 4672.731 21713.3 914.4 4750.208 21696.96 914.4 4826.014 21668.05 914.4 4897.968 21627.39 914.4 4964.001 21576.16 914.4 5022.213 21515.82 914.4 5070.93 21448.12 914.4 5108.749 21375 914.4 5134.583 21259.8 914.4 4692.135 4953 914.4 26381.87 4914.228 914.4 26380.23 4837.796 914.4 26367.12 4764.679 914.4 26341.29 4696.979 914.4 26303.47 4636.646 914.4 26254.75 4585.413 914.4 26196.54 4544.755 914.4 26130.5 4515.841 914.4 26058.55 4499.503 914.4 25982.75 4496.212 914.4 25905.27 4506.062 914.4 25828.35 4528.77 914.4 25754.2 4563.682 914.4 25684.96 4609.792 914.4 25622.61 4665.778 914.4 25568.96 4730.026 914.4 25525.53 4800.689 914.4 25493.59 4875.733 914.4 25474.05 4953 914.4 25467.47 5030.268 914.4 25474.05 5105.312 914.4 25493.59 5175.975 914.4 25525.53 5240.223 914.4 25568.96 5296.208 914.4 25622.61 5342.319 914.4 25684.96 5377.231 914.4 25754.2 5399.938 914.4 25828.35 5409.788 914.4 25905.27 5406.497 914.4 25982.75 5390.16 914.4 26058.55 5361.246 914.4 26130.5 5320.588 914.4 26196.54 5269.355 914.4 26254.75 5209.02 914.4 26303.47 5141.322 914.4 26341.29 5068.205 914.4 26367.12 4991.773 914.4 26380.23 4953 914.4 25924.67 4953 609.6 21248.57 4893.101 609.6 21252.51 4875.733 914.4 21255.15 4953 914.4 21248.57 5030.268 914.4 21255.15 5030.268 609.6 21255.15 5105.312 914.4 21274.69 5105.312 609.6 21274.69 5107.405 609.6 21275.43 5175.975 914.4 21306.63 5175.975 609.6 21306.63 5240.223 914.4 21350.05 5240.223 609.6 21350.05 5287.396 609.6 21393.98 4837.796 914.4 22148.22 4764.679 914.4 22122.38 4696.979 914.4 22084.57 4636.646 914.4 22035.85 4585.413 914.4 21977.64 4544.755 914.4 21911.6 4515.841 914.4 21839.65 4499.503 914.4 21763.84 4496.212 914.4 21686.37 4506.062 914.4 21609.45 4528.77 914.4 21535.3 4563.682 914.4 21466.06 4609.792 914.4 21403.71 4665.778 914.4 21350.05 4730.026 914.4 21306.63 4800.689 914.4 21274.69 5296.208 914.4 21403.71 5342.319 914.4 21466.06 5377.231 914.4 21535.3 5399.938 914.4 21609.45 5409.788 914.4 21686.37 5406.497 914.4 21763.84 5390.16 914.4 21839.65 5361.246 914.4 21911.6 5320.588 914.4 21977.64 5269.355 914.4 22035.85 5209.02 914.4 22084.57 5141.322 914.4 22122.38 5068.205 914.4 22148.22 4991.773 914.4 22161.32 4953 914.4 22162.97 4914.228 914.4 22161.32 4953 914.4 21705.77 4953 914.4 13252.35 5361.246 609.6 4897.968 5388.475 609.6 4831.397 5390.16 914.4 4826.014 5361.246 914.4 4897.968 5320.588 914.4 4964.001 5320.588 609.6 4964.001 5276.29 609.6 5015.424 5269.355 914.4 5022.213 5269.355 609.6 5022.213 5209.02 914.4 5070.93 5209.02 609.6 5070.93 5141.322 914.4 5108.749 5141.322 609.6 5108.749 5092.262 609.6 5127.609 5068.205 914.4 5134.583 4991.773 914.4 5147.688 4953 914.4 5149.335 4914.228 914.4 5147.688 4837.796 914.4 5134.583 4764.679 914.4 5108.749 4696.979 914.4 5070.93 4636.646 914.4 5022.213 4585.413 914.4 4964.001 4544.755 914.4 4897.968 4515.841 914.4 4826.014 4499.503 914.4 4750.208 4496.212 914.4 4672.731 4506.062 914.4 4595.813 4528.77 914.4 4521.665 4563.682 914.4 4452.422 4609.792 914.4 4390.075 4665.778 914.4 4336.417 4730.026 914.4 4292.993 4800.689 914.4 4261.051 4875.733 914.4 4241.511 4953 914.4 4234.935 5030.268 914.4 4241.511 5105.312 914.4 4261.051 5175.975 914.4 4292.993 5240.223 914.4 4336.417 5296.208 914.4 4390.075 5342.319 914.4 4452.422 5377.231 914.4 4521.665 5399.938 914.4 4595.813 5409.788 914.4 4672.731 5406.497 914.4 4750.208 4953 914.4 4692.135 15697.2 609.6 13658.75 15697.2 609.6 13709.55 21793.2 609.6 13709.55 3572.155 609.6 20778.56 8191.751 609.6 22436.06 8191.751 609.6 22382.09 3589.312 609.6 20730.74 2703.186 609.6 10427.8 2339.628 609.6 16440.46 5737.401 609.6 4482.472 2703.186 609.6 7516.686 5773.322 609.6 4518.393 5858.939 609.6 4378.667 5888.799 609.6 4419.766 5995.221 609.6 4295.154 6018.284 609.6 4340.417 6142.888 609.6 4233.988 6158.586 609.6 4282.302 6298.307 609.6 4196.675 6306.253 609.6 4246.85 6457.648 609.6 4184.135 6457.648 609.6 4234.935 12649.2 609.6 4184.135 12649.2 609.6 4234.935 13038.6 609.6 4214.781 13030.65 609.6 4264.956 13418.41 609.6 4305.965 13402.71 609.6 4354.278 13779.27 609.6 4455.441 13756.21 609.6 4500.705 14112.32 609.6 4659.53 14082.46 609.6 4700.628 14409.33 609.6 4913.205 14373.41 609.6 4949.126 14663.01 609.6 5210.22 14621.91 609.6 5240.08 14867.09 609.6 5543.262 14821.83 609.6 5566.325 15016.57 609.6 5904.13 14968.26 609.6 5919.828 15107.75 609.6 6283.938 15057.58 609.6 6291.885 15138.4 609.6 6673.335 15087.6 609.6 6673.335 15138.4 609.6 13099.95 15087.6 609.6 13099.95 15145.28 609.6 13187.36 15095.11 609.6 13195.31 15165.75 609.6 13272.63 15117.44 609.6 13288.32 15199.31 609.6 13353.64 15154.04 609.6 13376.7 15245.12 609.6 13428.4 15204.02 609.6 13458.26 15302.07 609.6 13495.08 15266.15 609.6 13531 15368.75 609.6 13552.03 15338.89 609.6 13593.12 15443.51 609.6 13597.84 15420.45 609.6 13643.1 15524.52 609.6 13631.4 15508.82 609.6 13679.71 15609.79 609.6 13651.87 15601.84 609.6 13702.04 22327.99 609.6 13705.24 21793.2 609.6 13658.75 12794.19 609.6 20730.74 12794.19 609.6 20784.71 17396.63 609.6 22382.09 17396.63 609.6 22436.06 21999.07 609.6 20730.74 22016.23 609.6 20778.56 22676.46 609.6 20418.86 22701.69 609.6 20462.95 23289.62 609.6 19994.42 23322.15 609.6 20033.44 23820.05 609.6 19470.24 23858.89 609.6 19502.99 24251.72 609.6 18862.15 24295.68 609.6 18887.62 24571.61 609.6 18188.51 24619.34 609.6 18205.93 24770.05 609.6 17469.67 24820.08 609.6 17478.49 24841.05 609.6 16727.33 24891.85 609.6 16727.28 24790.11 609.6 16201.83 24840.14 609.6 16192.97 24649.26 609.6 15693.01 24696.99 609.6 15675.61 24422.72 609.6 15216.13 24466.69 609.6 15190.71 24117.28 609.6 14785.5 24156.18 609.6 14752.83 23742.11 609.6 14414.03 23774.75 609.6 14375.1 23308.47 609.6 14112.88 23333.86 609.6 14068.88 22829.37 609.6 13891.07 22846.73 609.6 13843.33 22319.17 609.6 13755.27 2375.549 609.6 16476.38 2106.917 609.6 16793.96 2065.537 609.6 16764.5 1894.678 609.6 17151.7 1848.983 609.6 17129.51 1744.71 609.6 17539.68 1695.967 609.6 17525.38 1661.168 609.6 17947.17 1610.726 609.6 17941.14 1646.365 609.6 18362.87 1595.623 609.6 18365.29 1700.713 609.6 18775.26 1651.075 609.6 18786.07 1822.704 609.6 19172.93 1775.546 609.6 19191.82 2008.961 609.6 19544.86 1965.589 609.6 19571.31 2254.323 609.6 19880.75 2215.938 609.6 19914.02 2551.995 609.6 20171.29 2519.661 609.6 20210.47 2893.732 609.6 20408.43 2868.344 609.6 20452.43 3234.311 609.6 20585.15 3212.954 609.6 20631.24 2739.107 609.6 7552.606 2493.407 609.6 7762.305 2324.635 609.6 8037.717 2201.024 609.6 8336.14 2125.619 609.6 8650.227 2100.275 609.6 8972.242 2125.619 609.6 9294.256 2201.024 609.6 9608.342 2324.635 609.6 9906.765 2493.407 609.6 10182.18 2739.107 609.6 10391.88 2534.506 609.6 7792.165 2369.898 609.6 8060.78 2249.338 609.6 8351.838 2175.794 609.6 8658.173 2151.075 609.6 8972.242 2175.794 609.6 9286.31 2249.338 609.6 9592.644 2369.898 609.6 9883.703 2534.506 609.6 10152.32 3230.919 609.6 18126.7 3183.897 609.6 18145.92 3277.322 609.6 18217.62 3234.166 609.6 18244.42 3338.244 609.6 18299.52 3300.166 609.6 18333.15 3411.979 609.6 18370.11 3380.044 609.6 18409.62 3496.457 609.6 18427.4 3471.563 609.6 18471.68 3589.312 609.6 18469.8 3572.155 609.6 18517.61 8191.751 609.6 20121.14 8191.751 609.6 20175.11 11339.11 609.6 18991.88 11431.7 609.6 19012.63 6588.161 609.6 14240.93 6588.161 609.6 14169.09 3364.132 609.6 17464.96 3328.211 609.6 17429.04 3298.25 609.6 17542.93 3256.839 609.6 17513.5 3246.302 609.6 17630.8 3200.562 609.6 17608.69 3209.742 609.6 17726.1 3160.955 609.6 17711.94 3189.598 609.6 17826.16 3139.134 609.6 17820.35 3186.434 609.6 17928.19 3135.704 609.6 17930.87 3200.337 609.6 18029.32 3150.766 609.6 18040.42 8191.751 304.8 20121.14 11339.11 304.8 18991.88 6588.161 304.8 14240.93 3364.132 304.8 17464.96 3589.312 304.8 18469.8 3496.457 304.8 18427.4 3411.979 304.8 18370.11 3338.244 304.8 18299.52 3277.322 304.8 18217.62 3230.919 304.8 18126.7 3200.337 304.8 18029.32 3186.434 304.8 17928.19 3189.598 304.8 17826.16 3209.742 304.8 17726.1 3246.302 304.8 17630.8 3298.25 304.8 17542.93 4953 914.4 17989.65 4991.773 914.4 17988.01 4953 914.4 17532.45 4914.228 914.4 17988.01 4696.979 914.4 17911.25 4764.679 914.4 17949.07 4837.796 914.4 17974.9 4544.755 914.4 17738.29 4585.413 914.4 17804.32 4636.646 914.4 17862.53 4496.212 914.4 17513.05 4499.503 914.4 17590.53 4515.841 914.4 17666.33 4563.682 914.4 17292.74 4528.77 914.4 17361.98 4506.062 914.4 17436.13 4730.026 914.4 17133.31 4665.778 914.4 17176.74 4609.792 914.4 17230.39 4953 914.4 17075.25 4875.733 914.4 17081.83 4800.689 914.4 17101.37 5175.975 914.4 17133.31 5105.312 914.4 17101.37 5030.268 914.4 17081.83 5342.319 914.4 17292.74 5296.208 914.4 17230.39 5240.223 914.4 17176.74 5409.788 914.4 17513.05 5399.938 914.4 17436.13 5377.231 914.4 17361.98 5361.246 914.4 17738.29 5390.16 914.4 17666.33 5406.497 914.4 17590.53 5209.02 914.4 17911.25 5269.355 914.4 17862.53 5320.588 914.4 17804.32 5068.205 914.4 17974.9 5141.322 914.4 17949.07 4914.228 304.8 17988.01 4837.796 304.8 17974.9 4764.679 304.8 17949.07 4696.979 304.8 17911.25 4636.646 304.8 17862.53 4585.413 304.8 17804.32 4544.755 304.8 17738.29 4515.841 304.8 17666.33 4499.503 304.8 17590.53 4496.212 304.8 17513.05 4506.062 304.8 17436.13 4528.77 304.8 17361.98 4563.682 304.8 17292.74 4609.792 304.8 17230.39 4665.778 304.8 17176.74 4730.026 304.8 17133.31 4800.689 304.8 17101.37 4875.733 304.8 17081.83 4953 304.8 17075.25 5030.268 304.8 17081.83 5105.312 304.8 17101.37 5175.975 304.8 17133.31 5240.223 304.8 17176.74 5296.208 304.8 17230.39 5342.319 304.8 17292.74 5377.231 304.8 17361.98 5399.938 304.8 17436.13 5409.788 304.8 17513.05 5406.497 304.8 17590.53 5390.16 304.8 17666.33 5361.246 304.8 17738.29 5320.588 304.8 17804.32 5269.355 304.8 17862.53 5209.02 304.8 17911.25 5141.322 304.8 17949.07 5068.205 304.8 17974.9 4991.773 304.8 17988.01 3691.769 609.6 8505.269 3624.467 609.6 8584.068 3570.321 609.6 8672.426 3530.665 609.6 8768.167 3506.473 609.6 8868.932 3498.342 609.6 8972.242 3506.473 609.6 9075.55 3530.665 609.6 9176.317 3570.321 609.6 9272.057 3624.467 609.6 9360.415 3691.769 609.6 9439.215 12766.32 609.6 18513.77 17396.63 609.6 20175.11 22016.23 609.6 18517.61 22108.52 609.6 18476.27 22193.43 609.6 18421.32 22268.94 609.6 18354.05 22333.3 609.6 18276.04 22384.99 609.6 18189.12 22422.81 609.6 18095.32 22445.86 609.6 17996.85 22453.6 609.6 17896.01 22453.6 609.6 16147.95 22445.47 609.6 16044.64 22421.28 609.6 15943.87 22381.62 609.6 15848.13 22327.48 609.6 15759.77 22260.17 609.6 15680.97 22181.37 609.6 15613.67 22093.02 609.6 15559.53 21997.28 609.6 15519.87 21896.51 609.6 15495.68 21793.2 609.6 15487.55 15697.2 609.6 15487.55 15323.7 609.6 15458.15 14959.39 609.6 15370.69 14613.25 609.6 15227.31 14293.8 609.6 15031.56 14008.91 609.6 14788.23 13765.59 609.6 14503.34 13569.83 609.6 14183.9 13426.46 609.6 13837.76 13339 609.6 13473.45 13309.6 609.6 13099.95 13309.6 609.6 6673.335 13301.47 609.6 6570.026 13277.28 609.6 6469.26 13237.62 609.6 6373.52 13183.48 609.6 6285.162 13116.17 609.6 6206.362 13037.37 609.6 6139.06 12949.02 609.6 6084.914 12853.28 609.6 6045.258 12752.51 609.6 6021.066 12649.2 609.6 6012.935 6457.648 609.6 6012.935 6354.339 609.6 6021.066 6253.573 609.6 6045.258 6157.833 609.6 6084.914 6069.474 609.6 6139.06 5990.675 609.6 6206.362 6457.648 609.6 6063.735 6362.286 609.6 6071.24 6269.271 609.6 6093.571 6180.896 609.6 6130.178 6099.334 609.6 6180.158 6026.596 609.6 6242.283 3727.69 609.6 8541.19 3665.565 609.6 8613.928 3615.584 609.6 8695.489 3578.978 609.6 8783.865 3556.647 609.6 8876.879 3549.142 609.6 8972.242 3556.647 609.6 9067.605 3578.978 609.6 9160.619 3615.584 609.6 9248.995 3665.565 609.6 9330.555 3727.69 609.6 9403.294 12794.19 609.6 18469.8 17396.63 609.6 20121.14 21999.07 609.6 18469.8 22084.27 609.6 18431.63 22162.64 609.6 18380.91 22232.35 609.6 18318.82 22291.75 609.6 18246.81 22339.47 609.6 18166.57 22374.38 609.6 18079.99 22395.65 609.6 17989.09 22402.8 609.6 17896.01 22402.8 609.6 16147.95 22395.3 609.6 16052.59 22372.97 609.6 15959.57 22336.36 609.6 15871.2 22286.38 609.6 15789.63 22224.25 609.6 15716.89 22151.51 609.6 15654.77 22069.95 609.6 15604.79 21981.58 609.6 15568.18 21888.56 609.6 15545.85 21793.2 609.6 15538.35 15697.2 609.6 15538.35 15315.75 609.6 15508.33 14943.69 609.6 15419 14590.19 609.6 15272.58 14263.94 609.6 15072.65 13972.99 609.6 14824.16 13724.49 609.6 14533.2 13524.57 609.6 14206.96 13378.14 609.6 13853.45 13288.82 609.6 13481.4 13258.8 609.6 13099.95 13258.8 609.6 6673.335 13251.29 609.6 6577.973 13228.96 609.6 6484.958 13192.36 609.6 6396.583 13142.38 609.6 6315.021 13080.25 609.6 6242.283 13007.51 609.6 6180.158 12925.95 609.6 6130.178 12837.58 609.6 6093.571 12744.56 609.6 6071.24 12649.2 609.6 6063.735 3727.69 304.8 9403.294 3665.565 304.8 9330.555 3615.584 304.8 9248.995 3578.978 304.8 9160.619 3556.647 304.8 9067.605 3549.142 304.8 8972.242 3556.647 304.8 8876.879 3578.978 304.8 8783.865 3615.584 304.8 8695.489 3665.565 304.8 8613.928 3727.69 304.8 8541.19 12794.19 304.8 18469.8 17396.63 304.8 20121.14 21999.07 304.8 18469.8 22402.8 304.8 17896.01 22395.65 304.8 17989.09 22374.38 304.8 18079.99 22339.47 304.8 18166.57 22291.75 304.8 18246.81 22232.35 304.8 18318.82 22162.64 304.8 18380.91 22084.27 304.8 18431.63 22402.8 304.8 16147.95 21793.2 304.8 15538.35 21888.56 304.8 15545.85 21981.58 304.8 15568.18 22069.95 304.8 15604.79 22151.51 304.8 15654.77 22224.25 304.8 15716.89 22286.38 304.8 15789.63 22336.36 304.8 15871.2 22372.97 304.8 15959.57 22395.3 304.8 16052.59 15697.2 304.8 15538.35 13258.8 304.8 13099.95 13288.82 304.8 13481.4 13378.14 304.8 13853.45 13524.57 304.8 14206.96 13724.49 304.8 14533.2 13972.99 304.8 14824.16 14263.94 304.8 15072.65 14590.19 304.8 15272.58 14943.69 304.8 15419 15315.75 304.8 15508.33 13258.8 304.8 6673.335 12649.2 304.8 6063.735 12744.56 304.8 6071.24 12837.58 304.8 6093.571 12925.95 304.8 6130.178 13007.51 304.8 6180.158 13080.25 304.8 6242.283 13142.38 304.8 6315.021 13192.36 304.8 6396.583 13228.96 304.8 6484.958 13251.29 304.8 6577.973 6457.648 304.8 6063.735 6026.596 304.8 6242.283 6099.334 304.8 6180.158 6180.896 304.8 6130.178 6269.271 304.8 6093.571 6362.286 304.8 6071.24 4953 914.4 9429.442 4991.773 914.4 9427.794 4953 914.4 8972.242 4914.228 914.4 9427.794 4696.979 914.4 9351.037 4764.679 914.4 9388.856 4837.796 914.4 9414.689 4544.755 914.4 9178.075 4585.413 914.4 9244.108 4636.646 914.4 9302.32 4496.212 914.4 8952.837 4499.503 914.4 9030.314 4515.841 914.4 9106.12 4563.682 914.4 8732.528 4528.77 914.4 8801.772 4506.062 914.4 8875.918 4730.026 914.4 8573.1 4665.778 914.4 8616.524 4609.792 914.4 8670.181 4953 914.4 8515.041 4875.733 914.4 8521.619 4800.689 914.4 8541.159 5175.975 914.4 8573.1 5105.312 914.4 8541.159 5030.268 914.4 8521.619 5342.319 914.4 8732.528 5296.208 914.4 8670.181 5240.223 914.4 8616.524 5409.788 914.4 8952.837 5399.938 914.4 8875.918 5377.231 914.4 8801.772 5361.246 914.4 9178.075 5390.16 914.4 9106.12 5406.497 914.4 9030.314 5209.02 914.4 9351.037 5269.355 914.4 9302.32 5320.588 914.4 9244.108 5068.205 914.4 9414.689 5141.322 914.4 9388.856 21259.8 914.4 17989.65 21298.57 914.4 17988.01 21259.8 914.4 17532.45 21221.03 914.4 17988.01 21003.78 914.4 17911.25 21071.48 914.4 17949.07 21144.6 914.4 17974.9 20851.56 914.4 17738.29 20892.21 914.4 17804.32 20943.45 914.4 17862.53 20803.01 914.4 17513.05 20806.3 914.4 17590.53 20822.64 914.4 17666.33 20870.48 914.4 17292.74 20835.57 914.4 17361.98 20812.86 914.4 17436.13 21036.83 914.4 17133.31 20972.58 914.4 17176.74 20916.59 914.4 17230.39 21259.8 914.4 17075.25 21182.53 914.4 17081.83 21107.49 914.4 17101.37 21482.78 914.4 17133.31 21412.11 914.4 17101.37 21337.07 914.4 17081.83 21649.12 914.4 17292.74 21603.01 914.4 17230.39 21547.02 914.4 17176.74 21716.59 914.4 17513.05 21706.74 914.4 17436.13 21684.03 914.4 17361.98 21668.05 914.4 17738.29 21696.96 914.4 17666.33 21713.3 914.4 17590.53 21515.82 914.4 17911.25 21576.16 914.4 17862.53 21627.39 914.4 17804.32 21375 914.4 17974.9 21448.12 914.4 17949.07 4914.228 304.8 9427.794 4837.796 304.8 9414.689 4764.679 304.8 9388.856 4696.979 304.8 9351.037 4636.646 304.8 9302.32 4585.413 304.8 9244.108 4544.755 304.8 9178.075 4515.841 304.8 9106.12 4499.503 304.8 9030.314 4496.212 304.8 8952.837 4506.062 304.8 8875.918 4528.77 304.8 8801.772 4563.682 304.8 8732.528 4609.792 304.8 8670.181 4665.778 304.8 8616.524 4730.026 304.8 8573.1 4800.689 304.8 8541.159 4875.733 304.8 8521.619 4953 304.8 8515.041 5030.268 304.8 8521.619 5105.312 304.8 8541.159 5175.975 304.8 8573.1 5240.223 304.8 8616.524 5296.208 304.8 8670.181 5342.319 304.8 8732.528 5377.231 304.8 8801.772 5399.938 304.8 8875.918 5409.788 304.8 8952.837 5406.497 304.8 9030.314 5390.16 304.8 9106.12 5361.246 304.8 9178.075 5320.588 304.8 9244.108 5269.355 304.8 9302.32 5209.02 304.8 9351.037 5141.322 304.8 9388.856 5068.205 304.8 9414.689 4991.773 304.8 9427.794 21259.8 304.8 17989.65 21221.03 304.8 17988.01 21144.6 304.8 17974.9 21071.48 304.8 17949.07 21003.78 304.8 17911.25 20943.45 304.8 17862.53 20892.21 304.8 17804.32 20851.56 304.8 17738.29 20822.64 304.8 17666.33 20806.3 304.8 17590.53 20803.01 304.8 17513.05 20812.86 304.8 17436.13 20835.57 304.8 17361.98 20870.48 304.8 17292.74 20916.59 304.8 17230.39 20972.58 304.8 17176.74 21036.83 304.8 17133.31 21107.49 304.8 17101.37 21182.53 304.8 17081.83 21259.8 304.8 17075.25 21337.07 304.8 17081.83 21412.11 304.8 17101.37 21482.78 304.8 17133.31 21547.02 304.8 17176.74 21603.01 304.8 17230.39 21649.12 304.8 17292.74 21684.03 304.8 17361.98 21706.74 304.8 17436.13 21716.59 304.8 17513.05 21713.3 304.8 17590.53 21696.96 304.8 17666.33 21668.05 304.8 17738.29 21627.39 304.8 17804.32 21576.16 304.8 17862.53 21515.82 304.8 17911.25 21448.12 304.8 17949.07 21375 304.8 17974.9 21298.57 304.8 17988.01 26212.8 0 30784.8 26212.8 0 0 0 0 30784.8 0 0 0 15087.6 304.8001 10113.62 13309.6 304.8001 10113.62 14198.48 304.8001 10113.62 15087.6 304.8001 10372.94 13309.6 304.8001 10372.94 14198.48 304.8001 10372.94 15087.6 304.8001 10243.28 13309.6 304.8001 10243.28 14198.48 304.8001 10243.28 13754.04 304.8001 10113.62 14643.04 304.8001 10113.62 13754.04 304.8001 10372.94 14643.04 304.8001 10372.94 14643.04 304.8001 10243.28 13754.04 304.8001 10243.28 15087.6 304.8001 10178.45 13309.6 304.8001 10178.45 14198.48 304.8001 10178.45 13531.82 304.8001 10113.62 14865.32 304.8001 10113.62 13531.82 304.8001 10372.94 14865.32 304.8001 10372.94 15087.6 304.8001 10308.11 13309.6 304.8001 10308.11 14198.48 304.8001 10308.11 13976.26 304.8001 10113.62 14420.76 304.8001 10113.62 13976.26 304.8001 10372.94 14420.76 304.8001 10372.94 14865.32 304.8001 10243.28 14420.76 304.8001 10243.28 14643.04 304.8001 10178.45 14643.04 304.8001 10308.11 13754.04 304.8001 10178.45 13754.04 304.8001 10308.11 13531.82 304.8001 10243.28 13976.26 304.8001 10243.28 13976.26 304.8001 10308.11 13531.82 304.8001 10308.11 13531.82 304.8001 10178.45 14420.76 304.8001 10308.11 14420.76 304.8001 10178.45 14865.32 304.8001 10178.45 14865.32 304.8001 10308.11 13976.26 304.8001 10178.45 13420.71 304.8001 10113.62 14976.46 304.8001 10113.62 13420.71 304.8001 10372.94 14976.46 304.8001 10372.94 13865.15 304.8001 10113.62 14531.9 304.8001 10113.62 13865.15 304.8001 10372.94 14531.9 304.8001 10372.94 14976.46 304.8001 10243.28 14531.9 304.8001 10243.28 13420.71 304.8001 10243.28 13865.15 304.8001 10243.28 13642.93 304.8001 10113.62 14754.18 304.8001 10113.62 13642.93 304.8001 10372.94 14754.18 304.8001 10372.94 14087.37 304.8001 10113.62 14309.62 304.8001 10113.62 14087.37 304.8001 10372.94 14309.62 304.8001 10372.94 14754.18 304.8001 10243.28 14309.62 304.8001 10243.28 13642.93 304.8001 10243.28 14087.37 304.8001 10243.28 13865.15 304.8001 10308.11 14087.37 304.8001 10308.11 13420.71 304.8001 10308.11 13642.93 304.8001 10308.11 13420.71 304.8001 10178.45 13642.93 304.8001 10178.45 14531.9 304.8001 10308.11 14309.62 304.8001 10308.11 14531.9 304.8001 10178.45 14309.62 304.8001 10178.45 14976.46 304.8001 10178.45 14754.18 304.8001 10178.45 14976.46 304.8001 10308.11 14754.18 304.8001 10308.11 13865.15 304.8001 10178.45 14087.37 304.8001 10178.45 + + + + + + + + + + 0 1 0 0 1 -1.36195e-6 0 1 2.69182e-7 0 1 9.60032e-7 0 1 -1.19947e-7 0 1 1.66854e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.13176e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86357e-7 0 1 0 0 1 2.18864e-7 0 1 0 0 1 0 0 1 -2.14779e-7 0 1 2.02566e-7 0 1 0 0 1 0 0 1 4.03013e-7 0 1 0 0 1 -3.86322e-7 0 1 0 0 1 0 0 1 3.51669e-7 0 1 0 0 1 0 0 1 0 0 1 1.47708e-7 0 1 -1.82424e-7 0 1 0 0 1 2.42063e-7 0 1 -1.47707e-7 0 1 2.0698e-7 0 1 0 0 1 -2.66618e-7 0 1 1.47707e-7 0 1 0 0 1 2.52587e-7 0 1 0 0 1 -1.4109e-7 0 1 0 0 1 0 0 1 -1.47707e-7 0 1 0 0 1 -4.49039e-7 0 1 -2.72226e-7 0 1 0 0 1 0 0 1 1.31561e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.84307e-7 0 1 0 0 1 1.61267e-7 0 1 0 0 1 1.95822e-7 0 1 -1.26713e-7 0 1 -4.95321e-7 0 1 4.26209e-7 0 1 0 0 1 -6.80518e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.40266e-7 0 1 3.40266e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.86662e-7 0 1 3.79746e-7 0 1 -5.70014e-7 0 1 -8.30863e-7 0 1 -1.23531e-7 0 1 4.06975e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -2.33059e-7 0 1 0 0 1 -4.47898e-7 0 1 1.47255e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.94378e-6 0 1 5.35069e-7 0 1 2.62896e-7 0 1 -6.99035e-7 0 1 -2.48655e-7 0 1 1.63782e-7 0 1 -8.41199e-7 0 1 5.74106e-7 0 1 -3.25127e-6 0 1 6.68142e-7 0 1 0 0 1 -2.55171e-7 0 1 -2.09289e-7 0 1 -1.44906e-7 0 1 0 0 1 0 0 1 0 0 1 -4.08287e-7 0 1 -1.47309e-7 0 1 6.80571e-7 0 1 -7.0972e-7 0 1 1.67399e-6 0 1 0 0 1 -4.80344e-7 0 1 3.44634e-7 0 1 -2.00338e-7 0 1 0 0 1 -1.52528e-7 0 1 0 0 1 -4.00417e-7 0 1 -1.60696e-7 0 1 2.32111e-7 0 1 0 0 1 0 0 1 -3.18761e-7 0 1 0 0 1 0 0 1 -2.63805e-7 0 1 2.15004e-7 0 1 1.50717e-7 0 1 1.42572e-7 0 1 -1.92404e-7 0 1 -3.15719e-6 0 1 3.54195e-6 0 1 -2.59503e-6 0 1 0 0 1 -2.05381e-7 0 1 2.61852e-7 0 1 -3.77799e-7 0 1 -1.26857e-7 0 1 0 0 1 1.51319e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.69175e-6 0 1 -5.85532e-7 0 1 5.43053e-7 0 1 -7.17334e-7 0 1 0 0 1 2.01279e-7 0 1 0 0 1 1.24325e-7 0 1 0 0 1 -5.45718e-7 0 1 -4.1768e-7 0 1 -1.76178e-7 0 1 0 0 1 4.30178e-7 0 1 -3.37058e-7 0 1 1.64426e-7 0 1 0 0 1 0 0 1 7.37446e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.27513e-7 0 1 0 0 1 0 0 1 1.63064e-7 0 1 0 0 1 0 0 1 0 0 1 -2.50256e-7 0 1 0 0 1 2.37914e-7 0 1 -3.07842e-7 0 1 4.01381e-7 0 1 0 0 1 0 0 1 5.99026e-7 0 1 -5.81391e-7 0 1 0 0 1 0 0 1 -6.0316e-7 0 1 0 0 1 0 0 1 0 0 1 -4.04567e-7 0 1 0 0 1 0 0 1 1.10553e-6 0 1 -8.95172e-7 0 1 5.72646e-7 0 1 -3.88634e-7 0 1 -5.46157e-7 0 1 1.60839e-7 0 1 -2.29594e-7 0 1 4.47285e-7 0 1 -6.41062e-7 0 1 0 0 1 -1.24665e-7 0 1 0 0 1 -1.21222e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 8.90567e-7 0 1 -2.54036e-7 0 1 0 0 1 0 0 1 -2.89199e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.45397e-7 0 1 -3.98484e-7 0 1 6.31295e-7 0 1 0 0 1 0 0 1 -5.39227e-6 0 1 -8.04815e-7 0 1 3.58849e-7 0 1 0 0 1 0 0 1 -2.54038e-7 0 1 1.60025e-7 0 1 0 0 1 0 0 1 0 0 1 -3.90913e-7 0 1 1.34628e-7 0 1 0 0 1 0 0 1 0 0 1 -1.60208e-7 0 1 0 0 1 2.24115e-7 0 1 -4.78945e-7 0 1 -1.41553e-7 0 1 2.16425e-7 0 1 9.76196e-7 0 1 0 0 1 3.6213e-7 0 1 -2.74968e-7 0 1 2.16809e-7 0 1 2.14425e-7 0 1 0 0 1 1.6284e-7 0 1 -2.84007e-7 0 1 0 0 1 -1.76013e-7 0 1 3.70969e-7 0 1 2.23278e-7 0 1 0 0 1 2.10879e-7 0 1 5.23008e-7 0 1 -3.96383e-7 0 1 3.44815e-7 0 1 0 0 1 -3.42936e-7 0 1 2.01671e-7 0 1 4.15565e-7 0 1 1.27353e-7 0 1 -3.36209e-7 0 1 0 0 1 0 0 1 0 0 1 -4.40803e-7 0 1 1.52909e-7 0 1 -8.13019e-7 0 1 4.08692e-7 0 1 1.5212e-7 0 1 2.90774e-7 0 1 -4.91629e-7 0 1 4.54566e-7 0 1 -3.51698e-7 0 1 7.08594e-7 0 1 0 0 1 1.12233e-6 0 1 -3.42933e-7 0 1 0 0 1 -1.61029e-7 0 1 -6.78246e-7 0 1 -3.85095e-7 0 1 6.07892e-7 0 1 -2.08514e-6 0 1 1.51015e-7 0 1 -1.29571e-7 0 1 4.77127e-7 0 1 3.45905e-7 0 1 0 0 1 3.04233e-7 0 1 0 0 1 1.27847e-7 0 1 -8.26306e-7 0 1 2.90771e-7 0 1 -8.35958e-7 0 1 0 0 1 -1.52408e-7 0 1 0 0 1 0 0 1 -1.81308e-7 0 1 0 0 1 0 0 1 1.45177e-7 0 1 0 0 1 0 0 1 -1.19284e-7 0 1 0 0.4350869 0.01505959 0.9002625 0.4876925 0 0.8730156 0.3331517 0 0.9428732 0.3331328 0 0.94288 0.1689983 0 0.9856163 0.1689983 0 0.9856164 0.04244089 0 0.999099 -0.0424388 0 0.9990991 -0.1689983 0 0.9856163 -0.1689983 0 0.9856164 -0.3331407 0 0.9428772 -0.3331596 0 0.9428705 -0.5099561 0 0.8602005 -0.4351604 0 0.900353 -0.4876819 0.004563927 0.8730095 -0.5099336 0 0.8602138 -0.628227 0 0.7780301 -0.6282016 0 0.7780508 -0.7506508 0 0.6606993 -0.7506508 0 0.6606992 -0.8515417 0 0.5242871 -0.8515416 0 0.524287 -0.9278891 0 0.3728566 -0.9278861 0 0.3728639 -0.9775547 0 0.2106818 -0.9775547 0 0.2106819 -0.9991002 0 0.04241389 -0.9991001 0 0.04241478 -0.9919003 0 -0.1270194 -0.9919006 0 -0.1270167 -0.9561694 0 -0.2928141 -0.8929209 0 -0.4502136 -0.8929209 0 -0.4502136 -0.804001 0 -0.5946282 -0.8040084 0 -0.594618 -0.6919487 0 -0.7219467 -0.5599701 0 -0.8285129 -0.55997 0 -0.8285129 -0.4118942 0 -0.9112318 -0.2519842 0 -0.9677314 -0.2519842 0 -0.9677314 -0.08480596 0 -0.9963975 -0.08482694 0 -0.9963957 0.08482909 0 -0.9963956 0.08480811 0 -0.9963973 0.2519842 0 -0.9677314 0.2519842 0 -0.9677314 0.4118847 0 -0.9112361 0.4118847 0 -0.9112361 0.5599701 0 -0.8285129 0.55997 0 -0.8285129 0.6919487 0 -0.7219467 0.8039963 0 -0.5946344 0.8039889 0 -0.5946444 0.8929209 0 -0.4502136 0.8929209 0 -0.4502136 0.9561694 0 -0.2928141 0.9919006 0 -0.1270167 0.9919003 0 -0.1270194 0.999098 0 0.04246503 0.9990981 0 0.04246413 0.9775599 0 0.2106578 0.9775599 0 0.2106578 0.9278774 0 0.3728855 0.9278803 0 0.3728783 0.8515417 0 0.5242871 0.8515416 0 0.524287 0.7506633 0 0.6606851 0.6282138 0 0.7780408 0.6282394 0 0.7780202 0.5099132 0 0.8602259 0.5099244 0 0.8602193 0.6995408 0.01884025 0.7143443 0.7506726 0 0.6606744 0.6281984 0 0.7780532 0.6282242 0 0.7780325 0.4876925 0 0.8730155 0.4877085 0 0.8730066 0.2784087 0 0.9604627 0.3188757 0.01775956 -0.9476302 0.2519843 0 -0.9677314 0.4118766 0 -0.9112397 0.4119117 0 -0.9112238 0.5599671 0 -0.8285149 0.5599672 0 -0.8285148 0.7292699 0 -0.6842263 0.3588242 0 0.9334052 0.333148 0.004719853 0.9428628 0.2784088 0 0.9604627 0.1689983 0 0.9856164 0.04243874 0 0.9990991 0 -0.002700865 0.9999964 0.6686147 0 -0.7436091 0.6919289 0.005069017 -0.7219479 0.7293226 0 -0.68417 0.8040053 0 -0.5946222 0.8039979 0 -0.5946322 0.9990991 0 0.04243993 0.9990991 0 0.04243898 0.977556 0 0.2106758 0.9278883 0 0.3728585 0.9278912 0 0.3728511 0.8515305 0 0.5243053 0.7576253 0 0.6526898 0.7576407 0 0.6526719 -0.04243981 0 0.999099 -0.1689993 0 0.9856163 -0.1689993 0 0.9856162 -0.3331309 0 0.9428807 -0.3331308 0 0.9428806 -0.4877192 0 0.8730006 -0.4876871 0 0.8730186 -0.6282332 0 0.7780251 -0.6282076 0 0.7780457 -0.7506695 0 0.6606779 -0.7506695 0 0.660678 -0.8515305 0 0.5243053 -0.9278912 0 0.3728511 -0.9278883 0 0.3728585 -0.9775534 0 0.2106879 -0.9775535 0 0.2106879 -0.9990991 0 0.04243904 -0.9990991 0 0.04243987 -0.9918987 0 -0.1270318 -0.991899 0 -0.1270291 -0.8040038 0 -0.5946241 -0.8040114 0 -0.5946139 -0.6919393 0 -0.7219558 -0.6919394 0 -0.7219557 -0.4118918 0 -0.9112328 -0.2519857 0 -0.967731 -0.2519857 0 -0.967731 -0.08480703 0 -0.9963974 -0.08482801 0 -0.9963957 0.08482694 0 -0.9963957 0.08480596 0 -0.9963975 0.2373676 0 -0.97142 0.2373797 0 -0.971417 0 0 -1 -1 0 0 0 0 1 -1 6.28758e-6 0 1 0 0 1 1.96487e-7 0 1 2.35675e-7 0 1 0 0 1 -1.92836e-7 0 0.04244089 0 0.999099 -0.04243874 0 0.9990991 -0.04252314 0 0.9990956 -0.1689777 0 0.9856199 -0.1690188 0 0.9856128 -0.3331031 0 0.9428904 -0.3331783 0 0.9428638 -0.4876548 0 0.8730366 -0.7506693 0 0.6606783 -0.7506323 0 0.6607202 -0.8515533 0 0.5242682 -0.9278831 0 0.3728712 -0.9775528 0 0.2106906 -0.9775566 0 0.2106732 -0.9991002 0 0.04241389 -0.991901 0 -0.1270141 -0.9561676 0 -0.2928201 -0.9561713 0 -0.2928082 -0.8039935 0 -0.5946382 -0.6919267 0 -0.7219678 -0.5599846 0 -0.8285031 -0.5599845 0 -0.8285031 -0.4119117 0 -0.9112238 -0.4118415 0 -0.9112556 -0.08478492 0 -0.9963993 0.08478707 0 -0.9963991 0.411832 0 -0.9112598 0.4119022 0 -0.9112281 0.5599846 0 -0.8285031 0.5599845 0 -0.8285031 0.6919267 0 -0.7219678 0.8039814 0 -0.5946545 0.9561713 0 -0.2928082 0.9561676 0 -0.2928201 0.991901 0 -0.1270141 0.9990981 0 0.04246413 0.9775618 0 0.2106491 0.977558 0 0.2106665 0.9278745 0 0.3728929 0.8515533 0 0.5242681 0.7506448 0 0.6607061 0.7506818 0 0.6606641 0.487644 0 0.8730426 0.4877086 0 0.8730066 0.3331704 0 0.9428667 0.3330952 0 0.9428933 0.1690188 0 0.9856128 0.1689777 0 0.98562 0.04252529 0 0.9990954 0 1 4.42303e-7 0 1 1.76919e-6 0 1 -1.54797e-6 0 1 6.63475e-7 0 1 4.97587e-7 0 1 -9.95181e-7 0 1 -2.21148e-7 0 1 -8.84618e-7 0 1 -4.42309e-7 0 1 4.42287e-7 0 1 8.84618e-7 0 1 -4.42279e-7 0 1 -8.84624e-7 0 1 2.21151e-7 0 1 -1.76921e-6 0 1 1.54806e-6 0 1 -1.43748e-6 0 1 -1.76916e-6 0 1 7.18742e-7 0 1 1.79687e-7 0 1 1.76934e-6 0 1 -1.32689e-6 0 1 1.10575e-6 0 1 4.42284e-7 0 1 -6.63428e-7 -0.0423544 0 0.9991027 -0.1690188 0 0.9856128 -0.6282014 0 0.7780508 -0.6282528 0 0.7780094 -0.7506324 0 0.6607202 -0.7506693 0 0.6606782 -0.85153 0 0.5243059 -0.9278891 0 0.3728566 -0.9991001 0 0.04241567 -0.9919017 0 -0.1270087 -0.956164 0 -0.2928319 -0.8929381 0 -0.4501796 -0.5599555 0 -0.8285228 -0.4118765 0 -0.9112397 -0.2519446 0 -0.9677417 0.2519446 0 -0.9677417 0.4119023 0 -0.9112281 0.4118671 0 -0.911244 0.5599555 0 -0.8285228 0.892938 0 -0.4501796 0.956164 0 -0.2928319 0.9919017 0 -0.1270087 0.999098 0 0.04246592 0.9278803 0 0.3728782 0.8515301 0 0.5243059 0.6282651 0 0.7779995 0.6282138 0 0.7780408 0.1690188 0 0.9856128 0.04235649 0 0.9991025 0 1 6.63473e-7 0 1 4.97597e-7 0 1 -9.95167e-7 0 1 -2.21154e-7 0 1 -9.95152e-7 0 1 -4.42302e-7 0 1 4.42292e-7 0 1 -4.42298e-7 0 1 -1.76917e-6 0 1 1.5481e-6 0 1 -1.43745e-6 0 1 -1.76914e-6 0 1 7.18757e-7 0 1 1.10576e-6 0 1 -1.54798e-6 0 1 -9.95195e-7 0 1 -8.84611e-7 0 1 4.4229e-7 0 1 4.42278e-7 0 1 8.84567e-7 0 1 -8.84586e-7 0 1 2.21164e-7 0 1 -1.76924e-6 0.04248309 0 0.9990972 -0.04248094 0 0.9990974 -0.1689983 0 0.9856164 -0.3331595 0 0.9428705 -0.3331219 0 0.9428838 -0.4877031 0 0.8730096 -0.6282272 0 0.7780301 -0.8515359 0 0.5242965 -0.9775538 0 0.2106862 -0.9775538 0 0.2106862 -0.8929253 0 -0.4502052 -0.8929253 0 -0.4502052 -0.8039935 0 -0.5946383 -0.6919377 0 -0.7219572 -0.2519644 0 -0.9677366 -0.252004 0 -0.9677262 0.252004 0 -0.9677263 0.2519644 0 -0.9677366 0.6919377 0 -0.7219572 0.8039813 0 -0.5946546 0.8929253 0 -0.4502052 0.8929253 0 -0.4502052 0.9775589 0 0.2106622 0.977559 0 0.2106621 0.8515358 0 0.5242965 0.6282395 0 0.7780202 0.4876763 0 0.8730247 0.4876924 0 0.8730155 0.333114 0 0.9428867 0.3331516 0 0.9428733 0 1 4.42312e-7 0 1 1.76924e-6 0 1 4.9759e-7 0 1 -4.42292e-7 0 1 -4.42276e-7 0 1 -1.7692e-6 0 1 7.18747e-7 0 1 4.42282e-7 -0.3331501 0 0.9428738 -0.487695 0 0.8730141 -0.4877032 0 0.8730096 -0.6282206 0 0.7780354 -0.6282143 0 0.7780404 -0.9278861 0 0.372864 -0.9919008 0 -0.1270154 -0.9561685 0 -0.2928171 -0.8040009 0 -0.5946282 -0.6919432 0 -0.721952 -0.5599774 0 -0.828508 -0.4119029 0 -0.9112278 -0.2519743 0 -0.9677339 -0.2519743 0 -0.9677339 -0.08481645 0 -0.9963967 -0.08480596 0 -0.9963975 0.08480805 0 -0.9963973 0.0848186 0 -0.9963964 0.2519743 0 -0.9677339 0.2519743 0 -0.9677339 0.4118934 0 -0.9112321 0.5599773 0 -0.828508 0.6919432 0 -0.721952 0.8039888 0 -0.5946446 0.9561685 0 -0.2928171 0.9919008 0 -0.1270154 0.9278774 0 0.3728856 0.6282266 0 0.7780305 0.628233 0 0.7780253 0.4876924 0 0.8730155 0.4876844 0 0.8730201 0.3331422 0 0.9428766 0.3331328 0 0.94288 0 1 4.4232e-7 0 1 6.63463e-7 0 1 4.97594e-7 0 1 -9.9516e-7 0 1 -2.2115e-7 0 1 -8.84599e-7 0 1 4.42273e-7 0 1 1.54807e-6 0 1 -1.43747e-6 0 1 7.18752e-7 0 1 1.79684e-7 0 1 4.42296e-7 -0.04252421 0 0.9990954 -0.1689788 0 0.9856197 -0.1690198 0 0.9856126 -0.3330933 0 0.942894 -0.3331685 0 0.9428673 -0.750688 0 0.6606569 -0.750651 0 0.660699 -0.8515421 0 0.5242864 -0.9278853 0 0.3728658 -0.9775515 0 0.2106966 -0.9775553 0 0.2106792 -0.9990991 0 0.04243898 -0.9918994 0 -0.1270265 -0.8039965 0 -0.5946342 -0.6919172 0 -0.7219769 -0.4119093 0 -0.9112249 -0.411839 0 -0.9112566 -0.08478599 0 -0.9963992 0.08478498 0 -0.9963993 0.4118415 0 -0.9112556 0.4119117 0 -0.9112238 0.5599816 0 -0.8285051 0.5599817 0 -0.828505 0.8039905 0 -0.5946424 0.9990991 0 0.04243904 0.9775579 0 0.2106671 0.9775542 0 0.2106845 0.9278853 0 0.3728657 0.8515421 0 0.5242864 0.7506541 0 0.6606954 0.7506911 0 0.6606534 0.628224 0 0.7780326 0.4876601 0 0.8730336 0.4877246 0 0.8729976 0.04252314 0 0.9990956 0 -0.002704083 0.9999964 0 1 -8.84605e-7 0 1 4.42292e-7 0 1 8.84621e-7 0 1 0 0 1 1.32693e-6 0 1 -2.21149e-7 0 1 6.6346e-7 0 1 8.8463e-7 0 1 -4.42296e-7 0 1 -8.84593e-7 0 1 -2.21149e-7 0 1 3.31729e-7 0 1 9.95175e-7 0 1 -1.32691e-6 0 1 2.2115e-7 0 1 8.84585e-7 0 1 4.42305e-7 0 1 -2.21153e-7 -0.06563907 0.004892766 -0.9978315 -0.08482801 0 -0.9963957 0.084827 0 -0.9963957 0.08478498 0 -0.9963993 0.3366506 0 -0.9416297 0.4118765 5.9629e-4 -0.9112395 0.4141265 0 -0.9102194 0.5599527 0 -0.8285247 0.7410519 0 -0.6714478 -0.6282076 0 0.7780458 -0.6282589 0 0.7780044 -0.7506511 0 0.660699 -0.750688 0 0.660657 -0.8515188 0 0.5243241 -0.9278912 0 0.3728511 -0.999099 0 0.04244083 -0.9918994 0 -0.1270264 -0.9919 0 -0.1270211 -0.4118742 0 -0.9112408 -0.2519461 0 -0.9677413 -0.1502529 0 -0.9886476 -0.1499791 0 -0.9886892 0.6815053 0 -0.7318132 0.6919236 0.003030359 -0.7219644 0.7411645 0 -0.6713235 0.999099 0 0.04244077 0.9278912 0 0.3728511 0.8515188 0 0.5243241 0.7506911 0 0.6606534 0.7506542 0 0.6606954 0.6282497 0 0.7780119 0.0423544 0 0.9991027 -0.04235547 0 0.9991026 -0.1690198 0 0.9856127 0 1 8.84608e-7 0 1 0 0 1 1.32691e-6 0 1 8.84605e-7 0 1 -4.423e-7 0 1 -8.84601e-7 0 1 -2.21154e-7 0 1 3.3172e-7 0 1 9.952e-7 0 1 8.84607e-7 0 1 1.3269e-6 0 1 6.63448e-7 0 1 -8.84607e-7 0 1 3.3173e-7 0 1 2.21152e-7 0 1 4.42299e-7 0 1 -2.21152e-7 0.9255732 0.001568317 0.3785654 0.9278883 0 0.3728583 0.8515304 0 0.5243052 0.8515276 0 0.5243099 0.7576461 0 0.6526657 0.7506706 0.00236392 0.6606726 0.6995354 0 0.714598 0.6282112 0 0.7780429 0.4877007 0 0.8730111 0.3331292 0.004721224 0.9428694 0.278439 0 0.9604539 0 -0.002701699 0.9999964 -0.3331402 0 0.9428773 -0.6282268 0 0.7780303 -0.6282204 0 0.7780354 -0.9278883 0 0.3728585 -0.9775524 0 0.2106923 -0.9775525 0 0.2106922 -0.9918992 0 -0.1270278 -0.804004 0 -0.5946241 -0.6919338 0 -0.7219611 -0.4119006 0 -0.9112289 -0.2519758 0 -0.9677336 -0.2519758 0 -0.9677336 -0.08481752 0 -0.9963965 -0.08480703 0 -0.9963974 0.08480596 0 -0.9963975 0.08481645 0 -0.9963966 0.4119029 0 -0.9112278 0.5599744 0 -0.82851 0.8039979 0 -0.5946323 0.977555 0 0.2106802 0.9543291 0 0.2987575 0.9543486 0 0.2986953 0 1 4.42296e-7 0 1 -2.21151e-7 0 1 8.84613e-7 0 1 0 0 1 1.32691e-6 0 1 -2.2115e-7 0 1 6.63447e-7 0 1 -4.42301e-7 0 1 8.8461e-7 0 1 3.31728e-7 0 1 9.95188e-7 0 1 -1.3269e-6 -0.3377181 0 0.9412473 -0.3377182 0 0.9412473 -0.3377177 0 0.9412475 -0.3325102 -0.05120038 0.9417089 -0.368694 0 0.9295508 0.3377175 0 -0.9412476 0.3377181 1.34193e-6 -0.9412473 0.3377174 0 -0.9412477 -0.7071073 0 0.7071064 -0.7071065 0 0.707107 -0.707108 0 0.7071056 -0.7071067 0 -0.7071068 -0.7071068 1.68559e-6 -0.7071068 -0.7071093 5.84625e-6 -0.7071043 -0.7071067 0 -0.7071069 -0.7071059 0 -0.7071076 -0.7071053 0 -0.7071084 -0.7071068 0 -0.7071068 -0.707107 -7.28285e-7 -0.7071067 -0.7071075 -3.37762e-6 -0.7071061 -0.7071063 0 -0.7071073 0 1 -2.8853e-6 0 1 1.42886e-7 0 1 -1.0989e-6 0 1 9.65132e-7 0 1 -9.65147e-7 0 1 1.57976e-6 0 1 -1.6127e-6 0 1 1.6127e-6 0 1 -1.61265e-6 0 1 8.06368e-7 0 1 -3.9493e-7 0 1 2.01582e-7 0 1 -1.75937e-6 0 1 8.06327e-7 0 1 -1.75923e-6 0 1 -1.75926e-6 0 1 1.75929e-6 0 1 -1.75927e-6 0 1 -2.93972e-6 0 1 1.22953e-5 0 1 -1.65572e-6 0 1 1.63707e-6 0 1 -8.27683e-7 0 1 4.13798e-7 0 1 0 0 1 2.92603e-7 0 1 -1.43676e-7 0 1 5.85162e-7 0 1 -1.17032e-6 0 1 1.14983e-6 0 1 -1.14991e-6 0 1 -2.33982e-6 0 1 2.33962e-6 0 1 8.89577e-6 0 1 -2.09286e-6 0 0.9999857 -0.005343377 0 1 -8.41298e-6 0 1 2.48724e-6 0 1 -2.67851e-6 0 1 1.2025e-6 0 1 -3.7101e-7 0 1 -1.85505e-7 0 1 -1.48399e-6 0 1 1.45445e-6 0 1 1.45444e-6 0 1 1.68718e-6 0.7071065 0 0.7071071 0.7071068 0 0.7071068 0.7071063 0 0.7071073 -0.07846242 0 -0.9969171 -0.07845729 0 -0.9969176 -0.2334424 0 -0.9723708 -0.3826914 0 -0.9238762 -0.382687 0 -0.9238781 -0.5224946 0 -0.8526427 -0.5224907 0 -0.852645 -0.649454 0 -0.760401 -0.6494538 0 -0.7604011 -0.7604047 0 -0.6494495 -0.7604046 0 -0.6494497 -0.8526414 0 -0.5224968 -0.85264 0 -0.522499 -0.9238796 0 -0.3826832 -0.9238803 0 -0.3826816 -0.9723704 0 -0.2334437 -0.9723701 0 -0.2334449 -0.9969173 0 -0.07846075 -0.9969172 0 -0.07846152 -0.9969172 0 0.07846111 -0.9723701 0 0.2334448 -0.9723701 0 0.2334449 -0.9238796 0 0.3826832 -0.9238803 0 0.3826816 -0.85264 0 0.522499 -0.8526428 0 0.5224944 -0.7604026 0 0.6494521 -0.7604067 0 0.6494472 -0.7634967 0 -0.6458117 -0.7634935 0 -0.6458156 -0.8600334 0 -0.5102379 -0.8600313 0 -0.5102413 -0.9327465 0 -0.3605332 -0.9327444 0 -0.3605384 -0.9796238 0 -0.2008416 -0.9796238 0 -0.2008417 -0.9993667 0 -0.03558629 -0.9993667 0 -0.03558576 -0.9914279 0 0.1306555 -0.9914279 0 0.1306555 -0.956027 0 0.2932789 -0.9560283 0 0.2932746 -0.8941457 0 0.4477761 -0.8941457 0 0.4477763 -0.8074998 0 0.5898678 -0.8074971 0 0.5898717 -0.6984835 0 0.7156261 -0.6984796 0 0.71563 -0.5701161 0 0.8215643 -0.5701212 0 0.8215606 -0.4605595 0 0.8876289 -0.4605696 -1.03463e-6 0.8876237 -0.460563 0 0.8876271 -0.3794497 0 0.9252124 -0.3794496 0 0.9252125 0.337718 0 0.9412474 0.3377173 0 0.9412476 0.3377186 0 0.9412472 -0.3377215 0 0.9412461 -0.3377175 5.36773e-6 0.9412475 -0.3377176 -3.15943e-6 0.9412476 -0.3377197 0 0.9412468 0.3377179 0 0.9412474 0.3377171 2.6739e-6 0.9412477 0.3377182 0 0.9412473 0.4182301 0 0.9083412 0.5691767 0 0.8222154 0.5691757 5.70628e-6 0.822216 0.5691506 0 0.8222333 0.7029302 0 0.7112588 0.7029325 0 0.7112566 0.815458 0 0.5788164 0.8154566 0 0.5788184 0.9033517 0 0.4289007 0.9033533 0 0.4288974 0.9639683 0 0.2660173 0.9639683 0 0.2660173 0.9954667 0 0.09511137 0.9954668 0 0.09511101 0.9953484 0 -0.0963419 0.9953484 0 -0.09634131 0.9637866 0 -0.2666748 0.9033047 0 -0.4289997 0.9033044 -3.05587e-6 -0.4290002 0.9033001 0 -0.4290094 0.8157168 0 -0.5784517 0.8157166 0 -0.5784518 0.703646 0 -0.7105508 0.703646 0 -0.7105509 0.5704607 0 -0.821325 0.5704566 0 -0.8213278 0.4202188 0 -0.9074229 0.4201537 -6.11177e-6 -0.907453 0.4201602 0 -0.9074501 0.2572458 0 -0.9663461 0.2572515 0 -0.9663446 0.08661603 0 -0.9962419 0.08661299 0 -0.9962421 0.07846057 0 -0.9969173 0.07846057 0 -0.9969173 0.2334185 0 -0.9723764 0.2334541 0 -0.9723679 0.38269 0 -0.9238768 0.3826901 0 -0.9238768 0.522494 0 -0.852643 0.5225077 0 -0.8526347 0.6494306 0 -0.7604209 0.6494416 0 -0.7604115 0.7604106 0 -0.6494427 0.7604107 0 -0.6494426 0.8526446 0 -0.5224914 0.8526396 0 -0.5224996 0.9238822 0 -0.3826769 0.9238795 0 -0.3826836 0.9723684 0 -0.2334519 0.9969174 0 -0.07845985 0.9969171 0 -0.07846277 0.9969175 0 -0.07845741 0.9969175 0 -0.07845741 0.9723697 0 -0.2334466 0.9723696 0 -0.2334467 0.9238791 0 -0.3826847 0.9238796 0 -0.3826833 0.8526403 0 -0.5224984 0.8526414 0 -0.5224966 0.7604051 0 -0.6494492 0.7604041 0 -0.6494503 0.6494507 0 -0.7604038 0.649448 0 -0.760406 0.5225003 0 -0.8526391 0.5224988 0 -0.85264 0.382683 0 -0.9238798 0.3826812 0 -0.9238806 0.2334451 0 -0.97237 0.2334464 -2.62483e-7 -0.9723697 0.2334407 0 -0.9723711 0.0784595 0 -0.9969174 0.0784595 0 -0.9969174 0 1 -6.6203e-7 0 1 3.7899e-7 0 1 9.55154e-7 0 1 3.67247e-7 0 1 -1.19395e-7 0 1 -4.7758e-7 0 1 -9.79332e-7 0 1 9.55161e-7 0 1 2.48233e-6 0.6494506 0 0.7604039 0.5225001 0 0.8526393 0.5225002 0 0.8526393 0.3826826 0 0.92388 0.3826827 0 0.9238799 0.2334417 0 0.9723709 0.2334468 0 0.9723697 0.07846003 0 0.9969173 0.0784654 0 0.9969169 0.7604057 0 -0.6494485 0.7604078 0 -0.649446 0.8526415 0 -0.5224965 0.85264 0 -0.522499 0.92388 0 -0.3826824 0.9723698 0 -0.233446 0.9723701 0 -0.2334449 0.9969173 0 -0.07846087 0.9969173 0 -0.07846081 0.9969173 0 0.07846087 0.9969173 0 0.07846081 0.9723698 0 0.233446 0.9723704 0 0.2334437 0.8526401 0 0.5224989 0.8526386 0 0.5225012 0.7604078 0 0.649446 0.7071066 0 -0.7071071 0.7071067 0 -0.707107 0.7071069 0 0.7071067 0.5701174 0 -0.8215633 0.5701229 0 -0.8215595 0.6984791 0 -0.7156305 0.6984871 0 -0.7156227 0.8074973 0 -0.5898714 0.8074946 0 -0.589875 0.8941465 0 -0.4477747 0.9560281 0 -0.2932754 0.9560274 0 -0.2932776 0.9914279 0 -0.1306556 0.9914278 0 -0.1306566 0.9993666 0 0.03558731 0.9993667 0 0.03558754 0.9796237 0 0.2008415 0.9796239 0 0.2008414 0.9327459 0 0.3605345 0.932746 0 0.3605345 0.8600304 0 0.5102429 0.8600325 0 0.5102393 0.7634978 0 0.6458105 0.7634947 0 0.6458141 0.3794506 0 -0.925212 0.4605692 0 -0.887624 0.4605558 0 -0.8876308 -0.337718 0 -0.9412474 -0.3377175 0 -0.9412475 0.3377175 0 -0.9412477 0.3377181 0 -0.9412473 -0.337718 0 -0.9412474 -0.3377176 0 -0.9412475 -0.9954577 0 -0.09520566 -0.9954576 0 -0.09520608 -0.9639448 0 -0.2661026 -0.9639451 0 -0.2661014 -0.9033244 0 -0.4289584 -0.9033259 0 -0.428955 -0.8154251 0 -0.5788626 -0.8154237 0 -0.5788647 -0.7029066 0 -0.7112822 -0.5691574 0 -0.8222286 -0.5691546 0 -0.8222306 -0.4182223 0 -0.9083448 -0.4182224 0 -0.9083447 -0.08660483 0 0.9962428 -0.08660793 0 0.9962425 -0.2572187 0 0.9663532 -0.2572245 0 0.9663518 -0.4201192 0 0.9074689 -0.4201193 0 0.9074689 -0.5704174 0 0.8213551 -0.5704174 0 0.821355 -0.7035926 0 0.7106036 -0.7035896 0 0.7106066 -0.8156601 0 0.5785315 -0.8156603 0 0.5785313 -0.9032591 0 0.4290956 -0.9032592 0 0.4290953 -0.9637545 0 0.2667908 -0.9637545 0 0.2667908 -0.9953349 0 0.09648013 -0.9953349 0 0.09648072 -0.9969169 0 0.07846599 -0.9969167 0 0.07846736 -0.9723721 0 0.2334367 -0.9723721 0 0.2334368 -0.9238774 0 0.3826887 -0.9238798 0 0.3826828 -0.852643 0 0.522494 -0.8526476 0 0.5224865 -0.7604009 0 0.6494541 -0.7604008 0 0.6494542 -0.6494579 0 0.7603976 -0.649438 0 0.7604146 -0.5224936 0 0.8526432 -0.3826968 0 0.9238741 -0.3826821 0 0.9238802 -0.2334473 0 0.9723695 -0.2334472 0 0.9723695 -0.07845562 0 0.9969177 -0.07845562 0 0.9969176 -1 -1.07538e-4 0 -0.07846045 0 0.9969173 -0.07845836 0 0.9969174 -0.2334464 0 0.9723697 -0.2334444 0 0.9723702 -0.382682 0 0.9238802 -0.3826858 0 0.9238786 -0.5224994 0 0.8526397 -0.5224995 0 0.8526396 -0.6494479 0 0.7604061 -0.6494493 0 0.760405 -0.7604052 0 0.6494491 -0.7604061 0 0.649448 -0.8526395 0 0.5224997 -0.8526395 0 0.5224997 -0.9238795 0 0.3826835 -0.9238799 0 0.3826826 -0.9723697 0 0.2334465 -0.9723699 0 0.2334454 -0.9969175 0 0.07845836 -0.9969175 0 0.07845854 0 1 -1.39562e-6 0 1 -2.01287e-6 0 1 -1.46494e-6 0 1 -7.55972e-7 0 1 1.39562e-6 0 1 1.88988e-7 0 1 -1.88991e-7 0 1 7.5599e-7 0 1 -3.48916e-7 0 1 -1.04673e-6 0 1 1.51196e-6 0.3377168 0 0.9412478 0.3377177 0 0.9412475 0.7071068 0 -0.7071068 0.7071069 0 -0.7071067 -0.7071068 0 -0.7071068 -0.7071073 0 -0.7071064 -0.7638131 0 -0.6454375 -0.763813 0 -0.6454378 -0.8608213 0 -0.5089076 -0.8608058 0 -0.5089337 -0.9336584 0 -0.358165 -0.9336621 0 -0.3581552 -0.9803354 0 -0.1973392 -0.9803364 0 -0.1973335 -0.9995191 0 -0.03101283 -0.9995189 0 -0.03101372 -0.99068 0 0.1362099 -0.99068 0 0.13621 -0.9540613 0 0.2996116 -0.9540666 0 0.2995947 -0.8906989 0 0.4545937 -0.8907051 0 0.4545819 -0.8023511 0 0.5968524 -0.8023617 0 0.5968382 -0.6915133 0 0.7223637 -0.6915442 0 0.7223342 -0.5612819 0 0.8276247 -0.5613023 0 0.8276109 -0.4153383 0 0.9096671 -0.4153382 0 0.909667 -0.3377174 0 0.9412477 -0.3377173 0 0.9412477 -0.3377168 0 -0.9412478 -0.7071071 0 0.7071066 -0.7071066 0 0.707107 0.7071067 0 0.7071069 0.7071071 0 0.7071065 0.4153321 0 -0.9096699 0.4153323 0 -0.9096698 0.5612918 0 -0.827618 0.561314 0 -0.8276031 0.691523 0 -0.7223545 0.6915064 0 -0.7223704 0.802355 0 -0.5968473 0.8023664 0 -0.5968319 0.8906993 0 -0.454593 0.8906994 0 -0.454593 0.9540644 0 -0.2996017 0.9540644 0 -0.2996017 0.9906804 0 -0.1362071 0.9995195 0 0.0309993 0.9995195 0 0.03100031 0.9803328 0 0.1973515 0.9803328 0 0.1973516 0.9336619 0 0.3581556 0.9336579 0 0.3581662 0.8608115 0 0.5089241 0.8608116 0 0.508924 0.7638185 0 0.6454311 0.7638321 0 0.6454151 0.3377175 0 -0.9412476 0 1 -2.21153e-7 0 1 -1.76921e-6 0 1 0 0 1 2.21154e-7 -0.1689788 0 0.9856198 -0.487687 0 0.8730186 -0.6282333 0 0.778025 -0.9775515 0 0.2106966 -0.8040113 0 -0.594614 -0.8039965 0 -0.5946342 -0.6919613 0 -0.7219346 -0.6919173 0 -0.7219768 -0.08478599 0 -0.9963992 0.08478492 0 -0.9963993 0.08482694 0 -0.9963957 0.5599526 0 -0.8285247 0.6919708 0 -0.7219256 0.8039903 0 -0.5946424 0.8040054 0 -0.5946221 0.7506726 0 0.6606743 0.4876924 0 0.8730156 0.1689777 0 0.9856199 0 1 0 0 1 0 0 1 3.47736e-7 0 1 -1.68821e-7 0 1 2.38026e-7 0 1 2.14628e-7 0 1 0 0 1 -4.88404e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.4246e-7 0 1 -4.52646e-7 0 1 -1.42243e-7 0 1 0 0 1 0 0 1 1.79861e-7 0 1 2.28656e-7 0 1 0 0 1 1.58371e-7 0 1 1.77485e-7 0 1 -9.34957e-7 0 1 5.81856e-7 0 1 0 0 1 -3.23208e-7 0 1 5.38503e-7 0 1 0 0 1 0 0 1 3.3679e-7 0 1 0 0 1 0 0 1 -6.0084e-7 0 1 5.62393e-7 0 1 1.41339e-7 0 1 -3.5243e-7 0 1 1.85211e-7 -0.7604018 0 -0.649453 -0.7604019 0 -0.6494529 -0.8526362 0 -0.5225051 -0.8526448 0 -0.5224913 -0.923885 0 -0.3826702 -0.9238804 0 -0.3826815 -0.9723681 0 -0.2334535 -0.9723698 0 -0.2334463 -0.996917 0 -0.07846415 -0.9969171 0 -0.07846295 -0.996917 0 0.07846415 -0.996917 0 0.07846421 -0.9723707 0 0.2334427 -0.9723698 0 0.2334463 -0.9238804 0 0.3826814 -0.9238804 0 0.3826815 -0.8526405 0 0.522498 -0.8526404 0 0.5224983 -0.7604018 0 0.649453 -0.7604085 0 0.6494451 -0.7071067 0 0.707107 -0.7071069 0 0.7071067 -0.3377174 0 0.9412476 0.3377171 0 0.9412477 0.3377174 0 0.9412477 0.4088019 0 0.9126232 0.5433716 0 0.8394923 0.5433486 0 0.8395072 0.6651481 0 0.7467114 0.6651663 0 0.7466953 0.7713751 0 0.6363808 0.8595024 0 0.5111318 0.8595023 0 0.5111318 0.9274571 0 0.3739298 0.9736846 0 0.2278997 0.9736812 0 0.2279141 0.9970655 0 0.07655417 0.9969171 0 -0.07846307 0.9969173 0 -0.07846063 0.9723716 0 -0.2334382 0.97237 0 -0.2334454 0.9238902 0 -0.3826577 0.9238902 0 -0.3826578 0.8526247 0 -0.522524 0.8526332 0 -0.5225101 0.7604065 0 -0.6494475 0.7604064 0 -0.6494476 0.6494533 0 -0.7604016 0.6494348 0 -0.7604174 0.522486 0 -0.852648 0.522509 0 -0.8526339 0.382699 0 -0.9238731 0.3826719 0 -0.9238843 0.2334566 0 -0.9723672 0.2334266 0 -0.9723744 0.07848435 0 -0.9969154 0.07845294 0 -0.9969179 0.07845282 0 -0.9969179 0.07846158 0 -0.9969173 0.2334417 0 -0.9723708 0.2334501 0 -0.9723688 0.382685 0 -0.923879 0.382685 0 -0.923879 0.5224969 0 -0.8526412 0.6494476 0 -0.7604064 0.6494528 0 -0.7604019 0.7604025 0 -0.6494522 0.7604064 0 -0.6494476 0.8526411 0 -0.5224973 0.9238789 0 -0.3826852 0.9238802 0 -0.382682 0.9723699 0 -0.2334457 0.9723704 0 -0.2334437 0.9969174 0 -0.07845973 0.9969173 0 -0.07846009 1 -1.64474e-4 0 0.9969171 0 -0.07846182 0.9969173 0 -0.07846122 0.9723704 0 -0.2334436 0.9723708 0 -0.2334418 0.9238778 0 -0.3826875 0.9238791 0 -0.3826847 0.8526415 0 -0.5224964 0.8526436 0 -0.5224931 0.7604052 0 -0.6494491 0.7604019 0 -0.6494529 0.6494488 0 -0.7604055 0.5224933 0 -0.8526434 0.5225048 0 -0.8526364 0.3826787 0 -0.9238815 0.2334491 0 -0.972369 0.233449 0 -0.9723691 0.07846009 0 -0.9969174 0.07846003 0 -0.9969173 -0.07846009 0 -0.9969174 -0.07846003 0 -0.9969173 -0.2334491 0 -0.972369 -0.233449 0 -0.9723691 -0.3826719 0 -0.9238843 -0.3826787 0 -0.9238815 -0.5225027 0 -0.8526377 -0.5224911 0 -0.8526449 -0.6494511 0 -0.7604035 -0.6494555 0 -0.7603996 -0.707107 0 -0.7071066 0 1 1.48864e-6 0 1 1.48863e-6 0 1 -1.51368e-6 0 1 1.5137e-6 0 1 -8.06348e-7 0 1 -1.48861e-6 0 1 4.03163e-7 0 1 4.03174e-7 0 1 -7.44313e-7 0 1 8.06337e-7 0 1 -5.58235e-7 0 1 5.58242e-7 0 1 3.72157e-7 0 1 -1.48863e-6 0 1 1.61266e-6 0 1 1.53386e-6 0 1 1.65222e-6 0 1 -1.52521e-6 0 1 8.2602e-7 0 1 -4.13054e-7 0 1 -7.62642e-7 0 1 2.06527e-7 0 1 -3.81284e-7 0 1 7.44331e-7 0 1 1.64705e-6 0 1 -1.61275e-6 0 1 1.64699e-6 0 1 1.64703e-6 0 1 -4.11748e-7 0 1 -2.05874e-7 0 1 1.61274e-6 0 1 -7.44296e-7 0 1 1.61265e-6 0 1 1.48859e-6 0 1 -1.48866e-6 0 1 -2.97725e-6 0.7604191 0 -0.6494328 0.7604046 0 -0.6494497 0.852636 0 -0.5225054 0.8526406 0 -0.5224978 0.9238756 0 -0.3826931 0.9238806 0 -0.382681 0.9723705 0 -0.2334431 0.9723705 0 -0.233443 0.9969172 0 -0.07846093 0.9969173 0 -0.07845956 0.9969171 0 0.07846224 0.9969173 0 0.07845956 0.9723714 0 0.2334392 0.9723705 0 0.233443 0.9238806 0 0.382681 0.9238756 0 0.3826932 0.852636 0 0.5225054 0.8526406 0 0.5224978 0.7604045 0 0.6494497 0.7604046 0 0.6494497 0.7071067 0 -0.707107 0.3377175 0 -0.9412475 -0.3377175 0 -0.9412477 -0.997064 0 -0.07657283 -0.9970638 0 -0.07657545 -0.9736855 0 -0.2278963 -0.9736818 0 -0.2279119 -0.9274672 0 -0.3739047 -0.9274623 0 -0.3739168 -0.8594946 0 -0.5111449 -0.8594946 0 -0.5111448 -0.7713643 0 -0.6363939 -0.7713785 0 -0.6363766 -0.6651691 0 -0.7466928 -0.6651693 0 -0.7466927 -0.5433443 0 -0.83951 -0.5433445 0 -0.8395098 -0.4087958 0 -0.912626 -0.4087959 0 -0.9126259 -0.07844018 0 0.9969189 -0.07847428 0 0.9969162 -0.2334334 0 0.9723729 -0.2334658 0 0.972365 -0.3826895 0 0.9238771 -0.5224732 0 0.8526557 -0.5224981 0 0.8526405 -0.6494578 0 0.7603977 -0.6494381 0 0.7604146 -0.7604081 0 0.6494457 -0.7604081 0 0.6494457 -0.8526429 0 0.5224942 -0.9238763 0 0.3826913 -0.9238763 0 0.3826915 -0.9969167 0 0.0784673 -0.9969174 0 0.07845872 -0.9969174 0 0.07845801 -0.9723699 0 0.2334459 -0.97237 0 0.2334451 -0.9238786 0 0.3826858 -0.8526418 0 0.5224961 -0.7604069 0 0.6494469 -0.7604033 0 0.6494512 -0.649448 0 0.760406 -0.6494528 0 0.7604019 -0.5224949 0 0.8526425 -0.5225009 0 0.8526389 -0.3826785 0 0.9238816 -0.3826857 0 0.9238786 -0.2334398 0 0.9723713 -0.2334478 0 0.9723693 -0.07845622 0 0.9969176 -0.07846474 0 0.9969169 -0.07846415 0 0.996917 -0.2334496 0 0.972369 -0.2334496 0 0.9723689 -0.5225044 0 0.8526366 -0.6494429 0 0.7604105 -0.6494429 0 0.7604104 -0.7604094 0 0.6494441 -0.760406 0 0.6494481 -0.8526384 0 0.5225016 -0.8526384 0 0.5225015 -0.9238787 0 0.3826857 -0.9723715 0 0.2334387 -0.9723715 0 0.2334387 -0.9969169 0 0.07846599 0.6494504 0 0.760404 0.6494505 0 0.7604039 0.5224975 0 0.8526409 0.5224914 0 0.8526446 0.3826821 0 0.9238802 0.3826894 0 0.9238771 0.2334472 0 0.9723695 0.2334473 0 0.9723695 0.07846456 0 0.996917 0.07845604 0 0.9969177 0.7071068 0 0.7071068 0.7071069 0 0.7071067 0 1 4.42294e-7 0 1 6.63451e-7 0 1 8.84614e-7 0 1 -2.21154e-7 0 1 3.31722e-7 0 1 4.42305e-7 0 1 4.97601e-7 0 1 -4.42284e-7 0 1 -4.42304e-7 0 1 7.18762e-7 0 1 1.79685e-7 -0.3331497 0 0.942874 -0.333112 0 0.9428873 -0.8515246 0 0.5243147 -0.6919283 0 -0.7219663 -0.2519659 0 -0.9677362 -0.2520055 0 -0.9677258 0.4118942 0 -0.9112318 0.5599672 0 -0.8285149 0.8515246 0 0.5243147 0 -0.002702474 0.9999964 0.04252529 0 0.9990954 -0.1689777 0 0.98562 -0.8515301 0 0.5243059 -0.8515533 0 0.5242681 -0.9775528 0 0.2106906 -0.6919708 0 -0.7219256 -0.08482694 0 -0.9963957 -0.08478498 0 -0.9963993 0.08478707 0 -0.9963991 0.08482909 0 -0.9963956 0.8039963 0 -0.5946343 0.977558 0 0.2106665 0.8515533 0 0.5242682 0.85153 0 0.5243059 0.4876763 0 0.8730245 0 1 0 0 1 0 0 1 2.24463e-6 0 1 1.94362e-7 0 1 -1.16318e-6 0 1 -5.88233e-7 0 1 2.08935e-7 0 1 -2.24034e-7 0 1 5.38001e-7 0 1 -1.23791e-7 0 1 0 0 1 0 0 1 -2.69884e-7 0 1 0 0 1 -2.9482e-7 0 1 -1.57388e-7 0 1 -1.67453e-7 0 1 2.97656e-7 0 1 -1.91198e-7 0 1 3.15968e-7 0 1 1.50945e-7 0 1 -1.37875e-6 0 1 4.38865e-7 0 1 0 0 1 0 0 1 -1.90748e-7 0 1 2.84629e-7 0 1 -1.99262e-7 0 1 -1.84052e-7 0 1 1.62234e-7 0 1 -2.16137e-7 0 1 5.20744e-7 0 1 0 0 1 -7.98472e-7 0 1 0 0 1 5.32256e-7 0 1 0 0 1 -1.97084e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.68275e-7 0 1 -8.64119e-7 0 1 1.27137e-7 0 1 4.81648e-7 0 1 -1.17678e-6 0 1 2.76536e-7 0 1 -3.39727e-7 0 1 1.81597e-7 0 1 0 0 1 -3.38823e-7 0 1 0 0 1 0 0 1 0 0 1 2.07481e-7 0 1 0 0 1 0 0 1 5.74164e-7 0 1 -3.24048e-7 0 1 2.94898e-7 0 1 3.16302e-7 0 1 1.6652e-7 0 1 -5.14827e-7 0 1 3.7239e-7 0 1 -3.16176e-7 0 1 0 0 1 -5.31252e-7 0 1 -6.90631e-7 0 1 0 0 1 0 0 1 0 0 1 -6.1034e-7 0 1 0 0 1 0 0 1 3.18038e-7 0 1 -3.69128e-7 0 -1 0 0 1 0 0 1 -8.67642e-7 0 1 -8.67627e-7 0 1 2.1693e-7 0 1 2.16926e-7 0.92388 0 0.3826824 0 1 0 0 1 0 0 1 0 0 1 2.06222e-7 0 1 0 0 1 0 1 -1.52585e-5 2.83861e-7 1 0 -7.16216e-7 1 3.41591e-4 1.50632e-5 0 1 1.80701e-7 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.08458e-6 0 1 1.08456e-6 + + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

476 257 1401 477 257 1402 478 257 1403 604 347 1878 605 347 1879 606 347 1880 606 348 1881 607 348 1882 604 348 1883 604 349 1884 607 349 1885 608 349 1886 604 350 1887 608 350 1888 609 350 1889 609 351 1890 608 351 1891 610 351 1892 609 352 1893 610 352 1894 611 352 1895 611 353 1896 610 353 1897 612 353 1898 612 353 1899 610 353 1900 613 353 1901 612 354 1902 613 354 1903 614 354 1904 613 354 1905 615 354 1906 614 354 1907 614 355 1908 615 355 1909 616 355 1910 614 356 1911 616 356 1912 617 356 1913 617 357 1914 616 357 1915 618 357 1916 617 358 1917 618 358 1918 619 358 1919 341 359 1920 340 359 1921 620 359 1922 619 360 1923 618 360 1924 620 360 1925 620 361 1926 618 361 1927 621 361 1928 620 362 1929 621 362 1930 341 362 1931 341 363 1932 621 363 1933 622 363 1934 341 364 1935 622 364 1936 343 364 1937 343 365 1938 622 365 1939 623 365 1940 343 366 1941 623 366 1942 344 366 1943 344 367 1944 623 367 1945 624 367 1946 344 368 1947 624 368 1948 345 368 1949 345 369 1950 624 369 1951 625 369 1952 345 370 1953 625 370 1954 346 370 1955 346 371 1956 625 371 1957 626 371 1958 346 372 1959 626 372 1960 347 372 1961 347 373 1962 626 373 1963 627 373 1964 347 374 1965 627 374 1966 348 374 1967 348 375 1968 627 375 1969 628 375 1970 348 376 1971 628 376 1972 349 376 1973 349 377 1974 628 377 1975 629 377 1976 349 377 1977 629 377 1978 351 377 1979 351 378 1980 629 378 1981 630 378 1982 351 379 1983 630 379 1984 353 379 1985 353 380 1986 630 380 1987 631 380 1988 353 381 1989 631 381 1990 354 381 1991 354 382 1992 631 382 1993 632 382 1994 354 382 1995 632 382 1996 366 382 1997 366 383 1998 632 383 1999 633 383 2000 366 384 2001 633 384 2002 367 384 2003 367 385 2004 633 385 2005 634 385 2006 367 385 2007 634 385 2008 368 385 2009 368 386 2010 634 386 2011 635 386 2012 368 387 2013 635 387 2014 387 387 2015 387 388 2016 635 388 2017 636 388 2018 387 389 2019 636 389 2020 420 389 2021 420 390 2022 636 390 2023 637 390 2024 420 391 2025 637 391 2026 422 391 2027 422 392 2028 637 392 2029 638 392 2030 422 393 2031 638 393 2032 423 393 2033 423 394 2034 638 394 2035 639 394 2036 423 395 2037 639 395 2038 408 395 2039 408 396 2040 639 396 2041 640 396 2042 408 397 2043 640 397 2044 407 397 2045 407 398 2046 640 398 2047 641 398 2048 407 398 2049 641 398 2050 411 398 2051 411 399 2052 641 399 2053 642 399 2054 411 400 2055 642 400 2056 412 400 2057 412 401 2058 642 401 2059 643 401 2060 412 402 2061 643 402 2062 413 402 2063 413 403 2064 643 403 2065 644 403 2066 413 403 2067 644 403 2068 381 403 2069 381 404 2070 644 404 2071 645 404 2072 381 405 2073 645 405 2074 380 405 2075 380 406 2076 645 406 2077 646 406 2078 380 407 2079 646 407 2080 379 407 2081 379 408 2082 646 408 2083 647 408 2084 379 409 2085 647 409 2086 401 409 2087 401 410 2088 647 410 2089 648 410 2090 401 411 2091 648 411 2092 402 411 2093 402 412 2094 648 412 2095 649 412 2096 402 413 2097 649 413 2098 403 413 2099 403 414 2100 649 414 2101 650 414 2102 403 414 2103 650 414 2104 385 414 2105 385 415 2106 650 415 2107 606 415 2108 385 416 2109 606 416 2110 384 416 2111 384 417 2112 606 417 2113 605 417 2114 384 418 2115 605 418 2116 382 418 2117 651 419 2118 652 419 2119 653 419 2120 653 420 2121 654 420 2122 651 420 2123 651 421 2124 654 421 2125 655 421 2126 651 422 2127 655 422 2128 656 422 2129 656 423 2130 655 423 2131 657 423 2132 656 424 2133 657 424 2134 658 424 2135 207 425 2136 206 425 2137 659 425 2138 660 426 2139 661 426 2140 662 426 2141 662 427 2142 663 427 2143 660 427 2144 660 428 2145 663 428 2146 664 428 2147 660 429 2148 664 429 2149 665 429 2150 665 430 2151 664 430 2152 666 430 2153 665 431 2154 666 431 2155 667 431 2156 33 432 2157 105 432 2158 668 432 2159 658 433 2160 657 433 2161 659 433 2162 659 434 2163 657 434 2164 669 434 2165 659 435 2166 669 435 2167 207 435 2168 207 352 2169 669 352 2170 670 352 2171 207 436 2172 670 436 2173 208 436 2174 208 437 2175 670 437 2176 671 437 2177 208 438 2178 671 438 2179 209 438 2180 667 439 2181 666 439 2182 668 439 2183 668 440 2184 666 440 2185 672 440 2186 668 441 2187 672 441 2188 33 441 2189 33 442 2190 672 442 2191 673 442 2192 33 443 2193 673 443 2194 8 443 2195 8 401 2196 673 401 2197 674 401 2198 8 402 2199 674 402 2200 9 402 2201 9 403 2202 674 403 2203 675 403 2204 9 403 2205 675 403 2206 14 403 2207 14 404 2208 675 404 2209 676 404 2210 14 405 2211 676 405 2212 15 405 2213 15 444 2214 676 444 2215 677 444 2216 15 445 2217 677 445 2218 11 445 2219 11 446 2220 677 446 2221 678 446 2222 11 446 2223 678 446 2224 12 446 2225 12 447 2226 678 447 2227 679 447 2228 12 448 2229 679 448 2230 13 448 2231 13 449 2232 679 449 2233 653 449 2234 13 449 2235 653 449 2236 113 449 2237 113 450 2238 653 450 2239 652 450 2240 113 451 2241 652 451 2242 112 451 2243 671 452 2244 680 452 2245 209 452 2246 209 453 2247 680 453 2248 681 453 2249 209 454 2250 681 454 2251 210 454 2252 210 455 2253 681 455 2254 682 455 2255 210 456 2256 682 456 2257 211 456 2258 211 457 2259 682 457 2260 683 457 2261 211 458 2262 683 458 2263 212 458 2264 212 459 2265 683 459 2266 684 459 2267 212 460 2268 684 460 2269 213 460 2270 213 461 2271 684 461 2272 685 461 2273 213 462 2274 685 462 2275 199 462 2276 199 463 2277 685 463 2278 686 463 2279 199 463 2280 686 463 2281 200 463 2282 200 464 2283 686 464 2284 687 464 2285 200 465 2286 687 465 2287 220 465 2288 220 466 2289 687 466 2290 688 466 2291 220 467 2292 688 467 2293 221 467 2294 221 468 2295 688 468 2296 689 468 2297 221 469 2298 689 469 2299 222 469 2300 222 470 2301 689 470 2302 690 470 2303 222 471 2304 690 471 2305 214 471 2306 214 377 2307 690 377 2308 691 377 2309 214 377 2310 691 377 2311 215 377 2312 215 378 2313 691 378 2314 692 378 2315 215 379 2316 692 379 2317 216 379 2318 216 472 2319 692 472 2320 693 472 2321 216 473 2322 693 473 2323 217 473 2324 217 474 2325 693 474 2326 694 474 2327 217 475 2328 694 475 2329 218 475 2330 218 383 2331 694 383 2332 695 383 2333 218 384 2334 695 384 2335 219 384 2336 219 476 2337 695 476 2338 696 476 2339 219 476 2340 696 476 2341 201 476 2342 201 477 2343 696 477 2344 697 477 2345 201 478 2346 697 478 2347 202 478 2348 202 479 2349 697 479 2350 698 479 2351 202 480 2352 698 480 2353 203 480 2354 203 481 2355 698 481 2356 662 481 2357 203 482 2358 662 482 2359 204 482 2360 204 483 2361 662 483 2362 661 483 2363 204 484 2364 661 484 2365 205 484 2366 699 485 2367 700 485 2368 0 485 2369 0 485 2370 700 485 2371 6 485 2372 701 486 2373 699 486 2374 2 486 2375 2 486 2376 699 486 2377 0 486 2378 702 487 2379 701 487 2380 4 487 2381 4 487 2382 701 487 2383 2 487 2384 325 486 2385 703 486 2386 321 486 2387 321 486 2388 703 486 2389 704 486 2390 321 486 2391 704 486 2392 333 486 2393 333 486 2394 704 486 2395 600 486 2396 325 486 2397 603 486 2398 703 486 2399 703 488 2400 603 488 2401 602 488 2402 703 486 2403 602 486 2404 601 486 2405 601 485 2406 599 485 2407 703 485 2408 703 485 2409 599 485 2410 598 485 2411 703 485 2412 598 485 2413 705 485 2414 705 485 2415 598 485 2416 171 485 2417 705 485 2418 171 485 2419 170 485 2420 170 489 2421 169 489 2422 705 489 2423 705 490 2424 169 490 2425 519 490 2426 519 489 2427 228 489 2428 705 489 2429 705 491 2430 228 491 2431 193 491 2432 705 492 2433 193 492 2434 706 492 2435 706 493 2436 193 493 2437 188 493 2438 706 489 2439 188 489 2440 517 489 2441 517 487 2442 487 487 2443 706 487 2444 706 487 2445 487 487 2446 428 487 2447 706 487 2448 428 487 2449 704 487 2450 704 487 2451 428 487 2452 447 487 2453 704 487 2454 447 487 2455 600 487 2456 700 489 2457 702 489 2458 6 489 2459 6 489 2460 702 489 2461 4 489 2462 704 0 2463 700 0 2464 706 0 2465 706 0 2466 700 0 2467 699 0 2468 706 0 2469 699 0 2470 705 0 2471 705 0 2472 699 0 2473 701 0 2474 705 0 2475 701 0 2476 703 0 2477 703 0 2478 701 0 2479 702 0 2480 703 0 2481 702 0 2482 704 0 2483 704 0 2484 702 0 2485 700 0 2486 707 494 2487 708 494 2488 569 494 2489 569 495 2490 708 495 2491 562 495 2492 708 496 2493 709 496 2494 562 496 2495 562 497 2496 709 497 2497 710 497 2498 562 498 2499 710 498 2500 570 498 2501 570 499 2502 710 499 2503 711 499 2504 570 500 2505 711 500 2506 571 500 2507 571 457 2508 711 457 2509 712 457 2510 571 501 2511 712 501 2512 572 501 2513 572 363 2514 712 363 2515 713 363 2516 572 364 2517 713 364 2518 578 364 2519 578 502 2520 713 502 2521 714 502 2522 578 503 2523 714 503 2524 579 503 2525 579 504 2526 714 504 2527 715 504 2528 579 368 2529 715 368 2530 580 368 2531 580 369 2532 715 369 2533 716 369 2534 580 505 2535 716 505 2536 581 505 2537 581 506 2538 716 506 2539 717 506 2540 581 507 2541 717 507 2542 582 507 2543 582 373 2544 717 373 2545 718 373 2546 582 508 2547 718 508 2548 583 508 2549 583 375 2550 718 375 2551 719 375 2552 583 509 2553 719 509 2554 573 509 2555 573 510 2556 719 510 2557 720 510 2558 573 511 2559 720 511 2560 574 511 2561 574 378 2562 720 378 2563 721 378 2564 574 379 2565 721 379 2566 584 379 2567 584 512 2568 721 512 2569 722 512 2570 584 381 2571 722 381 2572 585 381 2573 585 513 2574 722 513 2575 723 513 2576 585 382 2577 723 382 2578 563 382 2579 563 514 2580 723 514 2581 724 514 2582 563 515 2583 724 515 2584 564 515 2585 564 516 2586 724 516 2587 725 516 2588 564 517 2589 725 517 2590 565 517 2591 565 386 2592 725 386 2593 726 386 2594 565 387 2595 726 387 2596 566 387 2597 566 518 2598 726 518 2599 727 518 2600 566 389 2601 727 389 2602 559 389 2603 559 390 2604 727 390 2605 728 390 2606 559 519 2607 728 519 2608 560 519 2609 560 392 2610 728 392 2611 729 392 2612 560 393 2613 729 393 2614 575 393 2615 575 520 2616 729 520 2617 730 520 2618 575 521 2619 730 521 2620 576 521 2621 576 522 2622 730 522 2623 731 522 2624 576 523 2625 731 523 2626 577 523 2627 577 398 2628 731 398 2629 732 398 2630 577 524 2631 732 524 2632 589 524 2633 589 399 2634 732 399 2635 733 399 2636 589 525 2637 733 525 2638 590 525 2639 590 401 2640 733 401 2641 734 401 2642 590 402 2643 734 402 2644 591 402 2645 591 526 2646 734 526 2647 735 526 2648 591 527 2649 735 527 2650 592 527 2651 592 528 2652 735 528 2653 736 528 2654 592 405 2655 736 405 2656 593 405 2657 593 529 2658 736 529 2659 737 529 2660 593 407 2661 737 407 2662 594 407 2663 594 530 2664 737 530 2665 738 530 2666 594 531 2667 738 531 2668 595 531 2669 595 532 2670 738 532 2671 739 532 2672 595 411 2673 739 411 2674 596 411 2675 596 412 2676 739 412 2677 740 412 2678 596 533 2679 740 533 2680 597 533 2681 597 534 2682 740 534 2683 741 534 2684 597 535 2685 741 535 2686 586 535 2687 586 415 2688 741 415 2689 742 415 2690 586 416 2691 742 416 2692 587 416 2693 587 536 2694 742 536 2695 743 536 2696 587 537 2697 743 537 2698 588 537 2699 588 538 2700 743 538 2701 744 538 2702 588 539 2703 744 539 2704 567 539 2705 567 540 2706 744 540 2707 707 540 2708 567 541 2709 707 541 2710 568 541 2711 568 542 2712 707 542 2713 569 542 2714 708 0 2715 707 0 2716 745 0 2717 708 0 2718 745 0 2719 709 0 2720 712 0 2721 711 0 2722 745 0 2723 745 543 2724 711 543 2725 710 543 2726 745 0 2727 710 0 2728 709 0 2729 715 544 2730 714 544 2731 745 544 2732 745 545 2733 714 545 2734 713 545 2735 745 546 2736 713 546 2737 712 546 2738 718 0 2739 717 0 2740 745 0 2741 745 547 2742 717 547 2743 716 547 2744 745 548 2745 716 548 2746 715 548 2747 721 0 2748 720 0 2749 745 0 2750 745 549 2751 720 549 2752 719 549 2753 745 548 2754 719 548 2755 718 548 2756 724 0 2757 723 0 2758 745 0 2759 745 550 2760 723 550 2761 722 550 2762 745 543 2763 722 543 2764 721 543 2765 727 0 2766 726 0 2767 745 0 2768 745 551 2769 726 551 2770 725 551 2771 745 552 2772 725 552 2773 724 552 2774 730 553 2775 729 553 2776 745 553 2777 745 554 2778 729 554 2779 728 554 2780 745 0 2781 728 0 2782 727 0 2783 733 0 2784 732 0 2785 745 0 2786 745 555 2787 732 555 2788 731 555 2789 745 556 2790 731 556 2791 730 556 2792 736 557 2793 735 557 2794 745 557 2795 745 558 2796 735 558 2797 734 558 2798 745 559 2799 734 559 2800 733 559 2801 739 560 2802 738 560 2803 745 560 2804 745 561 2805 738 561 2806 737 561 2807 745 562 2808 737 562 2809 736 562 2810 742 563 2811 741 563 2812 745 563 2813 745 564 2814 741 564 2815 740 564 2816 745 565 2817 740 565 2818 739 565 2819 707 0 2820 744 0 2821 745 0 2822 745 566 2823 744 566 2824 743 566 2825 745 567 2826 743 567 2827 742 567 2828 746 494 2829 747 494 2830 312 494 2831 312 495 2832 747 495 2833 313 495 2834 747 568 2835 748 568 2836 313 568 2837 313 569 2838 748 569 2839 749 569 2840 313 498 2841 749 498 2842 289 498 2843 289 499 2844 749 499 2845 750 499 2846 289 500 2847 750 500 2848 290 500 2849 290 457 2850 750 457 2851 751 457 2852 290 501 2853 751 501 2854 291 501 2855 291 570 2856 751 570 2857 752 570 2858 291 571 2859 752 571 2860 292 571 2861 292 572 2862 752 572 2863 753 572 2864 292 573 2865 753 573 2866 293 573 2867 293 504 2868 753 504 2869 754 504 2870 293 574 2871 754 574 2872 294 574 2873 294 369 2874 754 369 2875 755 369 2876 294 575 2877 755 575 2878 295 575 2879 295 506 2880 755 506 2881 756 506 2882 295 372 2883 756 372 2884 296 372 2885 296 576 2886 756 576 2887 757 576 2888 296 508 2889 757 508 2890 297 508 2891 297 509 2892 757 509 2893 758 509 2894 297 577 2895 758 577 2896 298 577 2897 298 510 2898 758 510 2899 759 510 2900 298 578 2901 759 578 2902 302 578 2903 302 579 2904 759 579 2905 760 579 2906 302 379 2907 760 379 2908 303 379 2909 303 512 2910 760 512 2911 761 512 2912 303 381 2913 761 381 2914 304 381 2915 304 513 2916 761 513 2917 762 513 2918 304 382 2919 762 382 2920 305 382 2921 305 580 2922 762 580 2923 763 580 2924 305 515 2925 763 515 2926 282 515 2927 282 581 2928 763 581 2929 764 581 2930 282 516 2931 764 516 2932 283 516 2933 283 386 2934 764 386 2935 765 386 2936 283 582 2937 765 582 2938 284 582 2939 284 518 2940 765 518 2941 766 518 2942 284 389 2943 766 389 2944 285 389 2945 285 390 2946 766 390 2947 767 390 2948 285 519 2949 767 519 2950 286 519 2951 286 583 2952 767 583 2953 768 583 2954 286 393 2955 768 393 2956 299 393 2957 299 584 2958 768 584 2959 769 584 2960 299 585 2961 769 585 2962 300 585 2963 300 522 2964 769 522 2965 770 522 2966 300 586 2967 770 586 2968 301 586 2969 301 398 2970 770 398 2971 771 398 2972 301 524 2973 771 524 2974 316 524 2975 316 399 2976 771 399 2977 772 399 2978 316 525 2979 772 525 2980 317 525 2981 317 401 2982 772 401 2983 773 401 2984 317 587 2985 773 587 2986 318 587 2987 318 588 2988 773 588 2989 774 588 2990 318 527 2991 774 527 2992 319 527 2993 319 589 2994 774 589 2995 775 589 2996 319 528 2997 775 528 2998 320 528 2999 320 529 3000 775 529 3001 776 529 3002 320 590 3003 776 590 3004 287 590 3005 287 408 3006 776 408 3007 777 408 3008 287 531 3009 777 531 3010 288 531 3011 288 591 3012 777 591 3013 778 591 3014 288 411 3015 778 411 3016 314 411 3017 314 592 3018 778 592 3019 779 592 3020 314 533 3021 779 533 3022 315 533 3023 315 535 3024 779 535 3025 780 535 3026 315 534 3027 780 534 3028 307 534 3029 307 593 3030 780 593 3031 781 593 3032 307 594 3033 781 594 3034 308 594 3035 308 536 3036 781 536 3037 782 536 3038 308 537 3039 782 537 3040 309 537 3041 309 538 3042 782 538 3043 783 538 3044 309 539 3045 783 539 3046 310 539 3047 310 540 3048 783 540 3049 746 540 3050 310 595 3051 746 595 3052 311 595 3053 311 596 3054 746 596 3055 312 596 3056 747 0 3057 746 0 3058 784 0 3059 747 0 3060 784 0 3061 748 0 3062 751 0 3063 750 0 3064 784 0 3065 784 543 3066 750 543 3067 749 543 3068 784 0 3069 749 0 3070 748 0 3071 754 544 3072 753 544 3073 784 544 3074 784 545 3075 753 545 3076 752 545 3077 784 597 3078 752 597 3079 751 597 3080 757 0 3081 756 0 3082 784 0 3083 784 598 3084 756 598 3085 755 598 3086 784 599 3087 755 599 3088 754 599 3089 760 0 3090 759 0 3091 784 0 3092 784 600 3093 759 600 3094 758 600 3095 784 601 3096 758 601 3097 757 601 3098 763 0 3099 762 0 3100 784 0 3101 784 550 3102 762 550 3103 761 550 3104 784 543 3105 761 543 3106 760 543 3107 766 0 3108 765 0 3109 784 0 3110 784 602 3111 765 602 3112 764 602 3113 784 603 3114 764 603 3115 763 603 3116 769 553 3117 768 553 3118 784 553 3119 784 604 3120 768 604 3121 767 604 3122 784 0 3123 767 0 3124 766 0 3125 772 0 3126 771 0 3127 784 0 3128 784 555 3129 771 555 3130 770 555 3131 784 556 3132 770 556 3133 769 556 3134 775 605 3135 774 605 3136 784 605 3137 784 606 3138 774 606 3139 773 606 3140 784 607 3141 773 607 3142 772 607 3143 778 608 3144 777 608 3145 784 608 3146 784 609 3147 777 609 3148 776 609 3149 784 562 3150 776 562 3151 775 562 3152 781 563 3153 780 563 3154 784 563 3155 784 564 3156 780 564 3157 779 564 3158 784 610 3159 779 610 3160 778 610 3161 746 0 3162 783 0 3163 784 0 3164 784 566 3165 783 566 3166 782 566 3167 784 567 3168 782 567 3169 781 567 3170 613 0 3171 610 0 3172 785 0 3173 613 0 3174 785 0 3175 615 0 3176 621 0 3177 618 0 3178 785 0 3179 785 543 3180 618 543 3181 616 543 3182 785 0 3183 616 0 3184 615 0 3185 624 544 3186 623 544 3187 785 544 3188 785 611 3189 623 611 3190 622 611 3191 785 597 3192 622 597 3193 621 597 3194 627 0 3195 626 0 3196 785 0 3197 785 547 3198 626 547 3199 625 547 3200 785 599 3201 625 599 3202 624 599 3203 630 0 3204 629 0 3205 785 0 3206 785 549 3207 629 549 3208 628 549 3209 785 612 3210 628 612 3211 627 612 3212 633 0 3213 632 0 3214 785 0 3215 785 613 3216 632 613 3217 631 613 3218 785 614 3219 631 614 3220 630 614 3221 636 0 3222 635 0 3223 785 0 3224 785 551 3225 635 551 3226 634 551 3227 785 615 3228 634 615 3229 633 615 3230 639 616 3231 638 616 3232 785 616 3233 785 554 3234 638 554 3235 637 554 3236 785 0 3237 637 0 3238 636 0 3239 642 0 3240 641 0 3241 785 0 3242 785 617 3243 641 617 3244 640 617 3245 785 618 3246 640 618 3247 639 618 3248 645 619 3249 644 619 3250 785 619 3251 785 558 3252 644 558 3253 643 558 3254 785 559 3255 643 559 3256 642 559 3257 648 608 3258 647 608 3259 785 608 3260 785 561 3261 647 561 3262 646 561 3263 785 562 3264 646 562 3265 645 562 3266 606 563 3267 650 563 3268 785 563 3269 785 564 3270 650 564 3271 649 564 3272 785 610 3273 649 610 3274 648 610 3275 610 0 3276 608 0 3277 785 0 3278 785 566 3279 608 566 3280 607 566 3281 785 567 3282 607 567 3283 606 567 3284 786 620 3285 787 620 3286 419 620 3287 419 621 3288 787 621 3289 388 621 3290 787 495 3291 788 495 3292 388 495 3293 388 356 3294 788 356 3295 789 356 3296 388 622 3297 789 622 3298 386 622 3299 386 623 3300 789 623 3301 790 623 3302 386 624 3303 790 624 3304 373 624 3305 373 625 3306 790 625 3307 791 625 3308 373 458 3309 791 458 3310 372 458 3311 372 363 3312 791 363 3313 792 363 3314 372 626 3315 792 626 3316 371 626 3317 371 365 3318 792 365 3319 793 365 3320 371 366 3321 793 366 3322 389 366 3323 389 367 3324 793 367 3325 794 367 3326 389 627 3327 794 627 3328 390 627 3329 390 369 3330 794 369 3331 795 369 3332 390 575 3333 795 575 3334 369 575 3335 369 628 3336 795 628 3337 796 628 3338 369 629 3339 796 629 3340 357 629 3341 357 373 3342 796 373 3343 797 373 3344 357 508 3345 797 508 3346 356 508 3347 356 509 3348 797 509 3349 798 509 3350 356 376 3351 798 376 3352 355 376 3353 355 510 3354 798 510 3355 799 510 3356 355 510 3357 799 510 3358 374 510 3359 374 630 3360 799 630 3361 800 630 3362 374 631 3363 800 631 3364 375 631 3365 375 380 3366 800 380 3367 801 380 3368 375 632 3369 801 632 3370 376 632 3371 376 382 3372 801 382 3373 802 382 3374 376 633 3375 802 633 3376 404 633 3377 404 383 3378 802 383 3379 803 383 3380 404 384 3381 803 384 3382 405 384 3383 405 516 3384 803 516 3385 804 516 3386 405 385 3387 804 385 3388 406 385 3389 406 634 3390 804 634 3391 805 634 3392 406 635 3393 805 635 3394 417 635 3395 417 518 3396 805 518 3397 806 518 3398 417 389 3399 806 389 3400 418 389 3401 418 390 3402 806 390 3403 807 390 3404 418 519 3405 807 519 3406 377 519 3407 377 636 3408 807 636 3409 808 636 3410 377 637 3411 808 637 3412 378 637 3413 378 394 3414 808 394 3415 809 394 3416 378 521 3417 809 521 3418 391 521 3419 391 396 3420 809 396 3421 810 396 3422 391 397 3423 810 397 3424 392 397 3425 392 638 3426 810 638 3427 811 638 3428 392 398 3429 811 398 3430 393 398 3431 393 639 3432 811 639 3433 812 639 3434 393 400 3435 812 400 3436 394 400 3437 394 640 3438 812 640 3439 813 640 3440 394 641 3441 813 641 3442 395 641 3443 395 527 3444 813 527 3445 814 527 3446 395 527 3447 814 527 3448 396 527 3449 396 404 3450 814 404 3451 815 404 3452 396 528 3453 815 528 3454 397 528 3455 397 529 3456 815 529 3457 816 529 3458 397 407 3459 816 407 3460 398 407 3461 398 642 3462 816 642 3463 817 642 3464 398 643 3465 817 643 3466 399 643 3467 399 591 3468 817 591 3469 818 591 3470 399 411 3471 818 411 3472 400 411 3473 400 644 3474 818 644 3475 819 644 3476 400 413 3477 819 413 3478 409 413 3479 409 414 3480 819 414 3481 820 414 3482 409 414 3483 820 414 3484 410 414 3485 410 645 3486 820 645 3487 821 645 3488 410 416 3489 821 416 3490 414 416 3491 414 646 3492 821 646 3493 822 646 3494 414 647 3495 822 647 3496 415 647 3497 415 648 3498 822 648 3499 823 648 3500 415 649 3501 823 649 3502 416 649 3503 416 352 3504 823 352 3505 786 352 3506 416 436 3507 786 436 3508 421 436 3509 421 353 3510 786 353 3511 419 353 3512 787 0 3513 786 0 3514 824 0 3515 787 0 3516 824 0 3517 788 0 3518 791 0 3519 790 0 3520 824 0 3521 824 650 3522 790 650 3523 789 650 3524 824 0 3525 789 0 3526 788 0 3527 794 651 3528 793 651 3529 824 651 3530 824 611 3531 793 611 3532 792 611 3533 824 597 3534 792 597 3535 791 597 3536 797 0 3537 796 0 3538 824 0 3539 824 652 3540 796 652 3541 795 652 3542 824 599 3543 795 599 3544 794 599 3545 800 0 3546 799 0 3547 824 0 3548 824 600 3549 799 600 3550 798 600 3551 824 599 3552 798 599 3553 797 599 3554 803 0 3555 802 0 3556 824 0 3557 824 613 3558 802 613 3559 801 613 3560 824 543 3561 801 543 3562 800 543 3563 806 0 3564 805 0 3565 824 0 3566 824 653 3567 805 653 3568 804 653 3569 824 603 3570 804 603 3571 803 603 3572 809 553 3573 808 553 3574 824 553 3575 824 654 3576 808 654 3577 807 654 3578 824 0 3579 807 0 3580 806 0 3581 812 0 3582 811 0 3583 824 0 3584 824 550 3585 811 550 3586 810 550 3587 824 618 3588 810 618 3589 809 618 3590 815 655 3591 814 655 3592 824 655 3593 824 606 3594 814 606 3595 813 606 3596 824 607 3597 813 607 3598 812 607 3599 818 608 3600 817 608 3601 824 608 3602 824 656 3603 817 656 3604 816 656 3605 824 562 3606 816 562 3607 815 562 3608 821 563 3609 820 563 3610 824 563 3611 824 564 3612 820 564 3613 819 564 3614 824 610 3615 819 610 3616 818 610 3617 786 0 3618 823 0 3619 824 0 3620 824 657 3621 823 657 3622 822 657 3623 824 567 3624 822 567 3625 821 567 3626 825 494 3627 826 494 3628 471 494 3629 471 495 3630 826 495 3631 433 495 3632 826 495 3633 827 495 3634 433 495 3635 433 356 3636 827 356 3637 828 356 3638 433 622 3639 828 622 3640 434 622 3641 434 357 3642 828 357 3643 829 357 3644 434 658 3645 829 658 3646 435 658 3647 435 659 3648 829 659 3649 830 659 3650 435 660 3651 830 660 3652 436 660 3653 436 661 3654 830 661 3655 831 661 3656 436 662 3657 831 662 3658 437 662 3659 437 365 3660 831 365 3661 832 365 3662 437 366 3663 832 366 3664 454 366 3665 454 367 3666 832 367 3667 833 367 3668 454 368 3669 833 368 3670 455 368 3671 455 663 3672 833 663 3673 834 663 3674 455 575 3675 834 575 3676 438 575 3677 438 628 3678 834 628 3679 835 628 3680 438 629 3681 835 629 3682 439 629 3683 439 373 3684 835 373 3685 836 373 3686 439 508 3687 836 508 3688 441 508 3689 441 664 3690 836 664 3691 837 664 3692 441 376 3693 837 376 3694 424 376 3695 424 665 3696 837 665 3697 838 665 3698 424 665 3699 838 665 3700 444 665 3701 444 378 3702 838 378 3703 839 378 3704 444 631 3705 839 631 3706 430 631 3707 430 380 3708 839 380 3709 840 380 3710 430 666 3711 840 666 3712 429 666 3713 429 667 3714 840 667 3715 841 667 3716 429 382 3717 841 382 3718 427 382 3719 427 668 3720 841 668 3721 842 668 3722 427 384 3723 842 384 3724 461 384 3725 461 669 3726 842 669 3727 843 669 3728 461 516 3729 843 516 3730 462 516 3731 462 670 3732 843 670 3733 844 670 3734 462 671 3735 844 671 3736 463 671 3737 463 672 3738 844 672 3739 845 672 3740 463 673 3741 845 673 3742 445 673 3743 445 674 3744 845 674 3745 846 674 3746 445 675 3747 846 675 3748 446 675 3749 446 676 3750 846 676 3751 847 676 3752 446 677 3753 847 677 3754 448 677 3755 448 584 3756 847 584 3757 848 584 3758 448 678 3759 848 678 3760 464 678 3761 464 396 3762 848 396 3763 849 396 3764 464 679 3765 849 679 3766 465 679 3767 465 398 3768 849 398 3769 850 398 3770 465 680 3771 850 680 3772 449 680 3773 449 681 3774 850 681 3775 851 681 3776 449 400 3777 851 400 3778 450 400 3779 450 640 3780 851 640 3781 852 640 3782 450 402 3783 852 402 3784 466 402 3785 466 682 3786 852 682 3787 853 682 3788 466 682 3789 853 682 3790 467 682 3791 467 404 3792 853 404 3793 854 404 3794 467 683 3795 854 683 3796 468 683 3797 468 529 3798 854 529 3799 855 529 3800 468 407 3801 855 407 3802 431 407 3803 431 642 3804 855 642 3805 856 642 3806 431 643 3807 856 643 3808 432 643 3809 432 591 3810 856 591 3811 857 591 3812 432 684 3813 857 684 3814 451 684 3815 451 412 3816 857 412 3817 858 412 3818 451 413 3819 858 413 3820 452 413 3821 452 414 3822 858 414 3823 859 414 3824 452 414 3825 859 414 3826 453 414 3827 453 685 3828 859 685 3829 860 685 3830 453 686 3831 860 686 3832 472 686 3833 472 687 3834 860 687 3835 861 687 3836 472 688 3837 861 688 3838 473 688 3839 473 689 3840 861 689 3841 862 689 3842 473 690 3843 862 690 3844 469 690 3845 469 352 3846 862 352 3847 825 352 3848 469 436 3849 825 436 3850 470 436 3851 470 353 3852 825 353 3853 471 353 3854 826 0 3855 825 0 3856 863 0 3857 826 0 3858 863 0 3859 827 0 3860 830 0 3861 829 0 3862 863 0 3863 863 691 3864 829 691 3865 828 691 3866 863 0 3867 828 0 3868 827 0 3869 833 651 3870 832 651 3871 863 651 3872 863 611 3873 832 611 3874 831 611 3875 863 692 3876 831 692 3877 830 692 3878 836 0 3879 835 0 3880 863 0 3881 863 693 3882 835 693 3883 834 693 3884 863 694 3885 834 694 3886 833 694 3887 839 0 3888 838 0 3889 863 0 3890 863 695 3891 838 695 3892 837 695 3893 863 548 3894 837 548 3895 836 548 3896 842 0 3897 841 0 3898 863 0 3899 863 696 3900 841 696 3901 840 696 3902 863 543 3903 840 543 3904 839 543 3905 845 0 3906 844 0 3907 863 0 3908 863 653 3909 844 653 3910 843 653 3911 863 697 3912 843 697 3913 842 697 3914 848 616 3915 847 616 3916 863 616 3917 863 654 3918 847 654 3919 846 654 3920 863 0 3921 846 0 3922 845 0 3923 851 0 3924 850 0 3925 863 0 3926 863 550 3927 850 550 3928 849 550 3929 863 618 3930 849 618 3931 848 618 3932 854 557 3933 853 557 3934 863 557 3935 863 698 3936 853 698 3937 852 698 3938 863 699 3939 852 699 3940 851 699 3941 857 560 3942 856 560 3943 863 560 3944 863 700 3945 856 700 3946 855 700 3947 863 701 3948 855 701 3949 854 701 3950 860 563 3951 859 563 3952 863 563 3953 863 564 3954 859 564 3955 858 564 3956 863 610 3957 858 610 3958 857 610 3959 825 0 3960 862 0 3961 863 0 3962 863 702 3963 862 702 3964 861 702 3965 863 567 3966 861 567 3967 860 567 3968 864 703 3969 865 703 3970 531 703 3971 531 704 3972 865 704 3973 866 704 3974 531 705 3975 866 705 3976 532 705 3977 532 706 3978 866 706 3979 867 706 3980 532 707 3981 867 707 3982 533 707 3983 533 457 3984 867 457 3985 868 457 3986 533 501 3987 868 501 3988 545 501 3989 545 459 3990 868 459 3991 869 459 3992 545 460 3993 869 460 3994 546 460 3995 546 708 3996 869 708 3997 870 708 3998 546 709 3999 870 709 4000 534 709 4001 534 710 4002 870 710 4003 871 710 4004 534 463 4005 871 463 4006 535 463 4007 535 464 4008 871 464 4009 872 464 4010 535 711 4011 872 711 4012 547 711 4013 547 712 4014 872 712 4015 873 712 4016 547 713 4017 873 713 4018 548 713 4019 548 468 4020 873 468 4021 874 468 4022 548 714 4023 874 714 4024 549 714 4025 549 470 4026 874 470 4027 875 470 4028 549 715 4029 875 715 4030 527 715 4031 527 510 4032 875 510 4033 876 510 4034 527 511 4035 876 511 4036 528 511 4037 528 378 4038 876 378 4039 877 378 4040 528 379 4041 877 379 4042 529 379 4043 529 716 4044 877 716 4045 878 716 4046 529 473 4047 878 473 4048 530 473 4049 530 717 4050 878 717 4051 879 717 4052 530 475 4053 879 475 4054 521 475 4055 521 514 4056 879 514 4057 880 514 4058 521 515 4059 880 515 4060 522 515 4061 522 718 4062 880 718 4063 881 718 4064 522 719 4065 881 719 4066 523 719 4067 523 477 4068 881 477 4069 882 477 4070 523 478 4071 882 478 4072 536 478 4073 536 720 4074 882 720 4075 883 720 4076 536 480 4077 883 480 4078 537 480 4079 537 481 4080 883 481 4081 884 481 4082 537 721 4083 884 721 4084 538 721 4085 538 392 4086 884 392 4087 885 392 4088 538 393 4089 885 393 4090 539 393 4091 539 722 4092 885 722 4093 886 722 4094 539 723 4095 886 723 4096 540 723 4097 540 724 4098 886 724 4099 887 724 4100 540 725 4101 887 725 4102 541 725 4103 541 398 4104 887 398 4105 888 398 4106 541 524 4107 888 524 4108 542 524 4109 542 442 4110 888 442 4111 889 442 4112 542 726 4113 889 726 4114 543 726 4115 543 401 4116 889 401 4117 890 401 4118 543 402 4119 890 402 4120 544 402 4121 544 526 4122 890 526 4123 891 526 4124 544 527 4125 891 527 4126 554 527 4127 554 528 4128 891 528 4129 892 528 4130 554 405 4131 892 405 4132 555 405 4133 555 727 4134 892 727 4135 893 727 4136 555 445 4137 893 445 4138 556 445 4139 556 728 4140 893 728 4141 894 728 4142 556 729 4143 894 729 4144 550 729 4145 550 730 4146 894 730 4147 895 730 4148 550 448 4149 895 448 4150 551 448 4151 551 449 4152 895 449 4153 896 449 4154 551 731 4155 896 731 4156 552 731 4157 552 732 4158 896 732 4159 897 732 4160 552 733 4161 897 733 4162 553 733 4163 553 421 4164 897 421 4165 898 421 4166 553 734 4167 898 734 4168 557 734 4169 557 735 4170 898 735 4171 899 735 4172 557 736 4173 899 736 4174 558 736 4175 558 538 4176 899 538 4177 900 538 4178 558 539 4179 900 539 4180 525 539 4181 525 540 4182 900 540 4183 901 540 4184 525 541 4185 901 541 4186 524 541 4187 524 737 4188 901 737 4189 864 737 4190 524 738 4191 864 738 4192 531 738 4193 864 0 4194 901 0 4195 902 0 4196 864 0 4197 902 0 4198 865 0 4199 868 739 4200 867 739 4201 902 739 4202 902 740 4203 867 740 4204 866 740 4205 902 0 4206 866 0 4207 865 0 4208 871 605 4209 870 605 4210 902 605 4211 902 549 4212 870 549 4213 869 549 4214 902 741 4215 869 741 4216 868 741 4217 874 557 4218 873 557 4219 902 557 4220 902 742 4221 873 742 4222 872 742 4223 902 743 4224 872 743 4225 871 743 4226 877 0 4227 876 0 4228 902 0 4229 902 744 4230 876 744 4231 875 744 4232 902 0 4233 875 0 4234 874 0 4235 880 0 4236 879 0 4237 902 0 4238 902 745 4239 879 745 4240 878 745 4241 902 0 4242 878 0 4243 877 0 4244 883 0 4245 882 0 4246 902 0 4247 902 0 4248 882 0 4249 881 0 4250 902 0 4251 881 0 4252 880 0 4253 886 746 4254 885 746 4255 902 746 4256 902 747 4257 885 747 4258 884 747 4259 902 0 4260 884 0 4261 883 0 4262 889 0 4263 888 0 4264 902 0 4265 902 741 4266 888 741 4267 887 741 4268 902 748 4269 887 748 4270 886 748 4271 892 0 4272 891 0 4273 902 0 4274 902 749 4275 891 749 4276 890 749 4277 902 750 4278 890 750 4279 889 750 4280 895 0 4281 894 0 4282 902 0 4283 902 751 4284 894 751 4285 893 751 4286 902 752 4287 893 752 4288 892 752 4289 898 0 4290 897 0 4291 902 0 4292 902 753 4293 897 753 4294 896 753 4295 902 754 4296 896 754 4297 895 754 4298 901 0 4299 900 0 4300 902 0 4301 902 755 4302 900 755 4303 899 755 4304 902 756 4305 899 756 4306 898 756 4307 903 757 4308 904 757 4309 905 757 4310 905 758 4311 906 758 4312 903 758 4313 903 759 4314 906 759 4315 907 759 4316 903 760 4317 907 760 4318 908 760 4319 908 427 4320 907 427 4321 909 427 4322 908 583 4323 909 583 4324 910 583 4325 910 761 4326 909 761 4327 911 761 4328 911 762 4329 909 762 4330 912 762 4331 911 763 4332 912 763 4333 913 763 4334 913 724 4335 912 724 4336 914 724 4337 913 764 4338 914 764 4339 915 764 4340 239 765 4341 238 765 4342 916 765 4343 256 705 4344 917 705 4345 270 705 4346 270 706 4347 917 706 4348 918 706 4349 270 707 4350 918 707 4351 271 707 4352 271 457 4353 918 457 4354 919 457 4355 271 501 4356 919 501 4357 261 501 4358 261 766 4359 919 766 4360 920 766 4361 261 767 4362 920 767 4363 262 767 4364 262 768 4365 920 768 4366 921 768 4367 262 769 4368 921 769 4369 263 769 4370 263 710 4371 921 710 4372 922 710 4373 263 770 4374 922 770 4375 264 770 4376 264 464 4377 922 464 4378 923 464 4379 264 771 4380 923 771 4381 265 771 4382 265 712 4383 923 712 4384 924 712 4385 265 467 4386 924 467 4387 266 467 4388 266 772 4389 924 772 4390 925 772 4391 266 714 4392 925 714 4393 267 714 4394 267 773 4395 925 773 4396 926 773 4397 267 774 4398 926 774 4399 268 774 4400 268 510 4401 926 510 4402 927 510 4403 268 578 4404 927 578 4405 269 578 4406 269 579 4407 927 579 4408 928 579 4409 269 379 4410 928 379 4411 273 379 4412 273 716 4413 928 716 4414 929 716 4415 273 473 4416 929 473 4417 274 473 4418 274 717 4419 929 717 4420 930 717 4421 274 475 4422 930 475 4423 240 475 4424 240 580 4425 930 580 4426 931 580 4427 240 515 4428 931 515 4429 241 515 4430 241 775 4431 931 775 4432 932 775 4433 241 718 4434 932 718 4435 249 718 4436 249 477 4437 932 477 4438 905 477 4439 249 776 4440 905 776 4441 250 776 4442 250 777 4443 905 777 4444 904 777 4445 250 778 4446 904 778 4447 251 778 4448 915 779 4449 914 779 4450 916 779 4451 916 780 4452 914 780 4453 933 780 4454 916 781 4455 933 781 4456 239 781 4457 239 442 4458 933 442 4459 934 442 4460 239 726 4461 934 726 4462 243 726 4463 243 401 4464 934 401 4465 935 401 4466 243 587 4467 935 587 4468 244 587 4469 244 588 4470 935 588 4471 936 588 4472 244 527 4473 936 527 4474 245 527 4475 245 589 4476 936 589 4477 937 589 4478 245 528 4479 937 528 4480 246 528 4481 246 727 4482 937 727 4483 938 727 4484 246 782 4485 938 782 4486 247 782 4487 247 446 4488 938 446 4489 939 446 4490 247 729 4491 939 729 4492 248 729 4493 248 783 4494 939 783 4495 940 783 4496 248 448 4497 940 448 4498 252 448 4499 252 784 4500 940 784 4501 941 784 4502 252 731 4503 941 731 4504 253 731 4505 253 785 4506 941 785 4507 942 785 4508 253 786 4509 942 786 4510 254 786 4511 254 787 4512 942 787 4513 943 787 4514 254 421 4515 943 421 4516 258 421 4517 258 735 4518 943 735 4519 944 735 4520 258 736 4521 944 736 4522 259 736 4523 259 538 4524 944 538 4525 945 538 4526 259 539 4527 945 539 4528 260 539 4529 260 540 4530 945 540 4531 946 540 4532 260 595 4533 946 595 4534 255 595 4535 255 788 4536 946 788 4537 947 788 4538 255 438 4539 947 438 4540 256 438 4541 256 789 4542 947 789 4543 948 789 4544 256 790 4545 948 790 4546 917 790 4547 947 0 4548 946 0 4549 949 0 4550 947 0 4551 949 0 4552 948 0 4553 919 739 4554 918 739 4555 949 739 4556 949 740 4557 918 740 4558 917 740 4559 949 0 4560 917 0 4561 948 0 4562 922 557 4563 921 557 4564 949 557 4565 949 695 4566 921 695 4567 920 695 4568 949 791 4569 920 791 4570 919 791 4571 925 557 4572 924 557 4573 949 557 4574 949 792 4575 924 792 4576 923 792 4577 949 793 4578 923 793 4579 922 793 4580 928 0 4581 927 0 4582 949 0 4583 949 600 4584 927 600 4585 926 600 4586 949 0 4587 926 0 4588 925 0 4589 931 0 4590 930 0 4591 949 0 4592 949 745 4593 930 745 4594 929 745 4595 949 0 4596 929 0 4597 928 0 4598 906 0 4599 905 0 4600 949 0 4601 949 0 4602 905 0 4603 932 0 4604 949 0 4605 932 0 4606 931 0 4607 912 794 4608 909 794 4609 949 794 4610 949 795 4611 909 795 4612 907 795 4613 949 0 4614 907 0 4615 906 0 4616 934 0 4617 933 0 4618 949 0 4619 949 741 4620 933 741 4621 914 741 4622 949 796 4623 914 796 4624 912 796 4625 937 0 4626 936 0 4627 949 0 4628 949 797 4629 936 797 4630 935 797 4631 949 798 4632 935 798 4633 934 798 4634 940 0 4635 939 0 4636 949 0 4637 949 799 4638 939 799 4639 938 799 4640 949 752 4641 938 752 4642 937 752 4643 943 0 4644 942 0 4645 949 0 4646 949 753 4647 942 753 4648 941 753 4649 949 800 4650 941 800 4651 940 800 4652 946 0 4653 945 0 4654 949 0 4655 949 755 4656 945 755 4657 944 755 4658 949 756 4659 944 756 4660 943 756 4661 671 0 4662 670 0 4663 950 0 4664 671 0 4665 950 0 4666 680 0 4667 683 739 4668 682 739 4669 950 739 4670 950 740 4671 682 740 4672 681 740 4673 950 0 4674 681 0 4675 680 0 4676 686 557 4677 685 557 4678 950 557 4679 950 695 4680 685 695 4681 684 695 4682 950 553 4683 684 553 4684 683 553 4685 689 557 4686 688 557 4687 950 557 4688 950 742 4689 688 742 4690 687 742 4691 950 801 4692 687 801 4693 686 801 4694 692 0 4695 691 0 4696 950 0 4697 950 744 4698 691 744 4699 690 744 4700 950 0 4701 690 0 4702 689 0 4703 695 0 4704 694 0 4705 950 0 4706 950 802 4707 694 802 4708 693 802 4709 950 0 4710 693 0 4711 692 0 4712 698 0 4713 697 0 4714 950 0 4715 950 0 4716 697 0 4717 696 0 4718 950 0 4719 696 0 4720 695 0 4721 664 553 4722 663 553 4723 950 553 4724 950 747 4725 663 747 4726 662 747 4727 950 0 4728 662 0 4729 698 0 4730 673 0 4731 672 0 4732 950 0 4733 950 800 4734 672 800 4735 666 800 4736 950 803 4737 666 803 4738 664 803 4739 676 0 4740 675 0 4741 950 0 4742 950 749 4743 675 749 4744 674 749 4745 950 804 4746 674 804 4747 673 804 4748 679 0 4749 678 0 4750 950 0 4751 950 751 4752 678 751 4753 677 751 4754 950 752 4755 677 752 4756 676 752 4757 655 0 4758 654 0 4759 950 0 4760 950 805 4761 654 805 4762 653 805 4763 950 800 4764 653 800 4765 679 800 4766 670 0 4767 669 0 4768 950 0 4769 950 806 4770 669 806 4771 657 806 4772 950 807 4773 657 807 4774 655 807 4775 951 808 4776 952 808 4777 953 808 4778 953 809 4779 954 809 4780 951 809 4781 951 810 4782 954 810 4783 955 810 4784 951 811 4785 955 811 4786 956 811 4787 956 812 4788 955 812 4789 957 812 4790 957 813 4791 955 813 4792 958 813 4793 957 814 4794 958 814 4795 959 814 4796 959 815 4797 958 815 4798 960 815 4799 959 422 4800 960 422 4801 961 422 4802 961 816 4803 960 816 4804 962 816 4805 961 424 4806 962 424 4807 963 424 4808 482 425 4809 481 425 4810 964 425 4811 963 433 4812 962 433 4813 964 433 4814 964 817 4815 962 817 4816 965 817 4817 964 818 4818 965 818 4819 482 818 4820 482 352 4821 965 352 4822 966 352 4823 482 436 4824 966 436 4825 483 436 4826 483 437 4827 966 437 4828 967 437 4829 483 819 4830 967 819 4831 484 819 4832 967 452 4833 968 452 4834 484 452 4835 484 453 4836 968 453 4837 969 453 4838 484 454 4839 969 454 4840 485 454 4841 485 455 4842 969 455 4843 970 455 4844 485 820 4845 970 820 4846 492 820 4847 492 659 4848 970 659 4849 971 659 4850 492 660 4851 971 660 4852 493 660 4853 493 821 4854 971 821 4855 972 821 4856 493 822 4857 972 822 4858 494 822 4859 494 461 4860 972 461 4861 973 461 4862 494 462 4863 973 462 4864 486 462 4865 486 463 4866 973 463 4867 974 463 4868 486 463 4869 974 463 4870 479 463 4871 479 823 4872 974 823 4873 975 823 4874 479 771 4875 975 771 4876 480 771 4877 480 824 4878 975 824 4879 976 824 4880 480 825 4881 976 825 4882 495 825 4883 495 468 4884 976 468 4885 977 468 4886 495 714 4887 977 714 4888 496 714 4889 496 826 4890 977 826 4891 978 826 4892 496 471 4893 978 471 4894 497 471 4895 497 665 4896 978 665 4897 979 665 4898 497 665 4899 979 665 4900 498 665 4901 498 378 4902 979 378 4903 980 378 4904 498 631 4905 980 631 4906 499 631 4907 499 472 4908 980 472 4909 981 472 4910 499 827 4911 981 827 4912 500 827 4913 500 828 4914 981 828 4915 982 828 4916 500 475 4917 982 475 4918 501 475 4919 501 668 4920 982 668 4921 983 668 4922 501 384 4923 983 384 4924 502 384 4925 502 829 4926 983 829 4927 984 829 4928 502 718 4929 984 718 4930 503 718 4931 503 830 4932 984 830 4933 985 830 4934 503 831 4935 985 831 4936 504 831 4937 504 832 4938 985 832 4939 986 832 4940 504 833 4941 986 833 4942 505 833 4943 505 834 4944 986 834 4945 987 834 4946 505 835 4947 987 835 4948 488 835 4949 488 676 4950 987 676 4951 988 676 4952 488 677 4953 988 677 4954 489 677 4955 489 723 4956 988 723 4957 989 723 4958 489 836 4959 989 836 4960 490 836 4961 490 430 4962 989 430 4963 990 430 4964 490 837 4965 990 837 4966 491 837 4967 491 398 4968 990 398 4969 991 398 4970 491 680 4971 991 680 4972 512 680 4973 512 838 4974 991 838 4975 992 838 4976 512 443 4977 992 443 4978 513 443 4979 513 640 4980 992 640 4981 993 640 4982 513 402 4983 993 402 4984 507 402 4985 507 682 4986 993 682 4987 994 682 4988 507 682 4989 994 682 4990 508 682 4991 508 404 4992 994 404 4993 995 404 4994 508 683 4995 995 683 4996 474 683 4997 474 727 4998 995 727 4999 996 727 5000 474 445 5001 996 445 5002 475 445 5003 475 839 5004 996 839 5005 953 839 5006 475 839 5007 953 839 5008 477 839 5009 477 840 5010 953 840 5011 952 840 5012 477 841 5013 952 841 5014 478 841 5015 967 0 5016 966 0 5017 997 0 5018 967 0 5019 997 0 5020 968 0 5021 971 739 5022 970 739 5023 997 739 5024 997 842 5025 970 842 5026 969 842 5027 997 0 5028 969 0 5029 968 0 5030 974 557 5031 973 557 5032 997 557 5033 997 843 5034 973 843 5035 972 843 5036 997 844 5037 972 844 5038 971 844 5039 977 655 5040 976 655 5041 997 655 5042 997 845 5043 976 845 5044 975 845 5045 997 846 5046 975 846 5047 974 846 5048 980 0 5049 979 0 5050 997 0 5051 997 847 5052 979 847 5053 978 847 5054 997 0 5055 978 0 5056 977 0 5057 983 0 5058 982 0 5059 997 0 5060 997 848 5061 982 848 5062 981 848 5063 997 0 5064 981 0 5065 980 0 5066 986 0 5067 985 0 5068 997 0 5069 997 0 5070 985 0 5071 984 0 5072 997 0 5073 984 0 5074 983 0 5075 989 794 5076 988 794 5077 997 794 5078 997 849 5079 988 849 5080 987 849 5081 997 0 5082 987 0 5083 986 0 5084 992 0 5085 991 0 5086 997 0 5087 997 850 5088 991 850 5089 990 850 5090 997 803 5091 990 803 5092 989 803 5093 995 0 5094 994 0 5095 997 0 5096 997 695 5097 994 695 5098 993 695 5099 997 851 5100 993 851 5101 992 851 5102 954 0 5103 953 0 5104 997 0 5105 997 852 5106 953 852 5107 996 852 5108 997 853 5109 996 853 5110 995 853 5111 960 0 5112 958 0 5113 997 0 5114 997 805 5115 958 805 5116 955 805 5117 997 800 5118 955 800 5119 954 800 5120 966 0 5121 965 0 5122 997 0 5123 997 806 5124 965 806 5125 962 806 5126 997 807 5127 962 807 5128 960 807 5129 342 485 5130 998 485 5131 340 485 5132 340 485 5133 998 485 5134 620 485 5135 999 487 5136 125 487 5137 612 487 5138 612 487 5139 125 487 5140 123 487 5141 612 487 5142 123 487 5143 1000 487 5144 1001 854 5145 242 854 5146 904 854 5147 904 855 5148 242 855 5149 251 855 5150 916 856 5151 238 856 5152 1002 856 5153 1002 857 5154 238 857 5155 237 857 5156 1002 858 5157 237 858 5158 276 858 5159 1003 859 5160 58 859 5161 911 859 5162 911 860 5163 58 860 5164 60 860 5165 911 861 5166 60 861 5167 1004 861 5168 205 862 5169 661 862 5170 191 862 5171 191 863 5172 661 863 5173 1005 863 5174 191 864 5175 1005 864 5176 192 864 5177 659 865 5178 206 865 5179 182 865 5180 659 866 5181 182 866 5182 1006 866 5183 1006 867 5184 182 867 5185 184 867 5186 1006 868 5187 184 868 5188 223 868 5189 1007 869 5190 476 869 5191 952 869 5192 952 870 5193 476 870 5194 478 870 5195 964 871 5196 481 871 5197 172 871 5198 964 872 5199 172 872 5200 1008 872 5201 1008 873 5202 172 873 5203 174 873 5204 1008 874 5205 174 874 5206 185 874 5207 957 0 5208 1009 0 5209 956 0 5210 956 0 5211 1009 0 5212 951 0 5213 614 0 5214 617 0 5215 998 0 5216 998 875 5217 617 875 5218 619 875 5219 998 876 5220 619 876 5221 620 876 5222 952 0 5223 951 0 5224 1007 0 5225 1007 877 5226 951 877 5227 1009 877 5228 1007 878 5229 1009 878 5230 1010 878 5231 1010 0 5232 1009 0 5233 1011 0 5234 1010 879 5235 1011 879 5236 1012 879 5237 1012 0 5238 1011 0 5239 1013 0 5240 1012 0 5241 1013 0 5242 1014 0 5243 1014 0 5244 1013 0 5245 1015 0 5246 1014 0 5247 1015 0 5248 1016 0 5249 1016 0 5250 1015 0 5251 1017 0 5252 1016 0 5253 1017 0 5254 1018 0 5255 1018 0 5256 1017 0 5257 1019 0 5258 1018 0 5259 1019 0 5260 1020 0 5261 1020 0 5262 1019 0 5263 1021 0 5264 1020 0 5265 1021 0 5266 1022 0 5267 1022 0 5268 1021 0 5269 1023 0 5270 1022 0 5271 1023 0 5272 1024 0 5273 1024 0 5274 1023 0 5275 1025 0 5276 1024 880 5277 1025 880 5278 1026 880 5279 1026 881 5280 1025 881 5281 1027 881 5282 1026 0 5283 1027 0 5284 1028 0 5285 1028 0 5286 1027 0 5287 1029 0 5288 1028 0 5289 1029 0 5290 1030 0 5291 1030 882 5292 1029 882 5293 1031 882 5294 1030 0 5295 1031 0 5296 1032 0 5297 1032 883 5298 1031 883 5299 1033 883 5300 1032 0 5301 1033 0 5302 1034 0 5303 1034 884 5304 1033 884 5305 1035 884 5306 1034 0 5307 1035 0 5308 1036 0 5309 1036 0 5310 1035 0 5311 1037 0 5312 1036 0 5313 1037 0 5314 1038 0 5315 1038 0 5316 1037 0 5317 1039 0 5318 1038 885 5319 1039 885 5320 1040 885 5321 1040 886 5322 1039 886 5323 1041 886 5324 1040 0 5325 1041 0 5326 1042 0 5327 1042 0 5328 1041 0 5329 1043 0 5330 1042 0 5331 1043 0 5332 1044 0 5333 1044 0 5334 1043 0 5335 1045 0 5336 1044 887 5337 1045 887 5338 1046 887 5339 1046 888 5340 1045 888 5341 1047 888 5342 1046 889 5343 1047 889 5344 1048 889 5345 1048 0 5346 1047 0 5347 1049 0 5348 1048 0 5349 1049 0 5350 1050 0 5351 1050 0 5352 1049 0 5353 1051 0 5354 1050 0 5355 1051 0 5356 1052 0 5357 1052 0 5358 1051 0 5359 1053 0 5360 1052 0 5361 1053 0 5362 1054 0 5363 1054 0 5364 1053 0 5365 1055 0 5366 1054 890 5367 1055 890 5368 1056 890 5369 1056 0 5370 1055 0 5371 1057 0 5372 1056 891 5373 1057 891 5374 1058 891 5375 1058 0 5376 1057 0 5377 1059 0 5378 1058 0 5379 1059 0 5380 1060 0 5381 1060 0 5382 1059 0 5383 1061 0 5384 1060 892 5385 1061 892 5386 998 892 5387 998 0 5388 1061 0 5389 999 0 5390 998 0 5391 999 0 5392 614 0 5393 614 0 5394 999 0 5395 612 0 5396 916 0 5397 1002 0 5398 915 0 5399 915 0 5400 1002 0 5401 913 0 5402 1062 893 5403 609 893 5404 611 893 5405 609 0 5406 1062 0 5407 604 0 5408 604 0 5409 1062 0 5410 1063 0 5411 604 0 5412 1063 0 5413 605 0 5414 911 894 5415 913 894 5416 1003 894 5417 1003 0 5418 913 0 5419 1002 0 5420 1003 0 5421 1002 0 5422 1064 0 5423 1064 0 5424 1002 0 5425 1065 0 5426 1064 0 5427 1065 0 5428 1066 0 5429 1066 0 5430 1065 0 5431 1067 0 5432 1066 0 5433 1067 0 5434 1068 0 5435 1068 0 5436 1067 0 5437 1069 0 5438 1068 0 5439 1069 0 5440 1070 0 5441 1070 0 5442 1069 0 5443 1071 0 5444 1070 0 5445 1071 0 5446 1072 0 5447 1072 0 5448 1071 0 5449 1073 0 5450 1072 895 5451 1073 895 5452 1074 895 5453 1074 896 5454 1073 896 5455 1075 896 5456 1074 897 5457 1075 897 5458 1076 897 5459 1076 0 5460 1075 0 5461 1077 0 5462 1076 0 5463 1077 0 5464 1078 0 5465 1078 0 5466 1077 0 5467 1079 0 5468 1078 898 5469 1079 898 5470 1080 898 5471 1080 0 5472 1079 0 5473 1081 0 5474 1080 899 5475 1081 899 5476 1082 899 5477 1082 0 5478 1081 0 5479 1083 0 5480 1082 900 5481 1083 900 5482 1084 900 5483 1084 901 5484 1083 901 5485 1085 901 5486 1084 902 5487 1085 902 5488 1086 902 5489 1086 0 5490 1085 0 5491 1087 0 5492 1086 0 5493 1087 0 5494 1088 0 5495 1088 0 5496 1087 0 5497 1089 0 5498 1088 903 5499 1089 903 5500 1090 903 5501 1090 904 5502 1089 904 5503 1091 904 5504 1090 0 5505 1091 0 5506 1092 0 5507 1092 905 5508 1091 905 5509 1093 905 5510 1092 0 5511 1093 0 5512 1094 0 5513 1094 0 5514 1093 0 5515 1095 0 5516 1094 906 5517 1095 906 5518 1096 906 5519 1096 0 5520 1095 0 5521 1097 0 5522 1096 907 5523 1097 907 5524 1098 907 5525 1098 0 5526 1097 0 5527 1062 0 5528 1098 0 5529 1062 0 5530 1000 0 5531 1000 0 5532 1062 0 5533 611 0 5534 1000 908 5535 611 908 5536 612 908 5537 903 0 5538 908 0 5539 1004 0 5540 1004 909 5541 908 909 5542 910 909 5543 1004 910 5544 910 910 5545 911 910 5546 651 911 5547 656 911 5548 1006 911 5549 1006 912 5550 656 912 5551 658 912 5552 1006 913 5553 658 913 5554 659 913 5555 652 0 5556 651 0 5557 1099 0 5558 1099 914 5559 651 914 5560 1006 914 5561 1099 0 5562 1006 0 5563 1100 0 5564 1100 0 5565 1006 0 5566 1101 0 5567 1100 0 5568 1101 0 5569 1102 0 5570 1102 0 5571 1101 0 5572 1103 0 5573 1102 915 5574 1103 915 5575 1104 915 5576 1104 0 5577 1103 0 5578 1105 0 5579 1104 916 5580 1105 916 5581 1106 916 5582 1106 0 5583 1105 0 5584 1107 0 5585 1106 0 5586 1107 0 5587 1108 0 5588 1108 0 5589 1107 0 5590 1109 0 5591 1108 0 5592 1109 0 5593 1110 0 5594 1110 0 5595 1109 0 5596 1111 0 5597 1110 0 5598 1111 0 5599 1112 0 5600 1112 0 5601 1111 0 5602 1113 0 5603 1112 0 5604 1113 0 5605 1114 0 5606 1114 0 5607 1113 0 5608 1115 0 5609 1114 0 5610 1115 0 5611 1116 0 5612 1116 0 5613 1115 0 5614 1117 0 5615 1116 917 5616 1117 917 5617 1118 917 5618 1118 918 5619 1117 918 5620 1119 918 5621 1118 0 5622 1119 0 5623 1120 0 5624 1120 919 5625 1119 919 5626 1121 919 5627 1120 0 5628 1121 0 5629 1122 0 5630 1122 0 5631 1121 0 5632 1123 0 5633 1122 0 5634 1123 0 5635 1004 0 5636 1004 0 5637 1123 0 5638 1001 0 5639 1004 920 5640 1001 920 5641 903 920 5642 903 0 5643 1001 0 5644 904 0 5645 1124 921 5646 92 921 5647 957 921 5648 957 922 5649 92 922 5650 94 922 5651 957 923 5652 94 923 5653 1009 923 5654 1018 485 5655 1020 485 5656 511 485 5657 511 485 5658 1020 485 5659 515 485 5660 1018 924 5661 511 924 5662 510 924 5663 1018 925 5664 510 925 5665 1016 925 5666 1016 926 5667 510 926 5668 509 926 5669 1016 926 5670 509 926 5671 1014 926 5672 1014 927 5673 509 927 5674 514 927 5675 1014 928 5676 514 928 5677 1012 928 5678 1012 929 5679 514 929 5680 506 929 5681 1012 930 5682 506 930 5683 1010 930 5684 1010 931 5685 506 931 5686 476 931 5687 1010 932 5688 476 932 5689 1007 932 5690 1008 933 5691 185 933 5692 190 933 5693 1008 934 5694 190 934 5695 1125 934 5696 1125 935 5697 190 935 5698 189 935 5699 1125 936 5700 189 936 5701 1126 936 5702 1126 937 5703 189 937 5704 187 937 5705 1126 938 5706 187 938 5707 1127 938 5708 1127 939 5709 187 939 5710 186 939 5711 1127 940 5712 186 940 5713 1128 940 5714 1128 941 5715 186 941 5716 198 941 5717 1128 942 5718 198 942 5719 1129 942 5720 1129 943 5721 198 943 5722 197 943 5723 1129 943 5724 197 943 5725 1130 943 5726 1130 944 5727 197 944 5728 196 944 5729 1130 945 5730 196 945 5731 1131 945 5732 1131 946 5733 196 946 5734 195 946 5735 1131 947 5736 195 947 5737 1132 947 5738 1132 948 5739 195 948 5740 194 948 5741 1132 949 5742 194 949 5743 1133 949 5744 1133 950 5745 194 950 5746 192 950 5747 1133 951 5748 192 951 5749 1005 951 5750 1006 952 5751 223 952 5752 226 952 5753 1006 953 5754 226 953 5755 1101 953 5756 1101 954 5757 226 954 5758 225 954 5759 1101 955 5760 225 955 5761 1103 955 5762 1103 956 5763 225 956 5764 224 956 5765 1103 957 5766 224 957 5767 1105 957 5768 1105 958 5769 224 958 5770 233 958 5771 1105 959 5772 233 959 5773 1107 959 5774 1107 960 5775 233 960 5776 232 960 5777 1107 961 5778 232 961 5779 1109 961 5780 1109 962 5781 232 962 5782 231 962 5783 1109 963 5784 231 963 5785 1111 963 5786 1111 964 5787 231 964 5788 227 964 5789 1111 965 5790 227 965 5791 1113 965 5792 1113 966 5793 227 966 5794 229 966 5795 1113 967 5796 229 967 5797 1115 967 5798 1115 968 5799 229 968 5800 230 968 5801 1115 969 5802 230 969 5803 1117 969 5804 1117 970 5805 230 970 5806 236 970 5807 1117 971 5808 236 971 5809 1119 971 5810 1119 972 5811 236 972 5812 235 972 5813 1119 973 5814 235 973 5815 1121 973 5816 1121 974 5817 235 974 5818 1123 974 5819 1123 975 5820 235 975 5821 234 975 5822 234 976 5823 272 976 5824 1123 976 5825 1123 977 5826 272 977 5827 242 977 5828 1123 978 5829 242 978 5830 1001 978 5831 280 979 5832 1065 979 5833 275 979 5834 275 980 5835 1065 980 5836 1002 980 5837 275 981 5838 1002 981 5839 276 981 5840 1065 982 5841 280 982 5842 181 982 5843 1065 983 5844 181 983 5845 1067 983 5846 1067 984 5847 181 984 5848 179 984 5849 1067 985 5850 179 985 5851 178 985 5852 306 986 5853 1069 986 5854 278 986 5855 278 987 5856 1069 987 5857 1067 987 5858 278 988 5859 1067 988 5860 178 988 5861 1069 989 5862 306 989 5863 281 989 5864 1069 989 5865 281 989 5866 1071 989 5867 1071 990 5868 281 990 5869 176 990 5870 1071 991 5871 176 991 5872 1073 991 5873 176 992 5874 175 992 5875 1073 992 5876 1073 993 5877 175 993 5878 330 993 5879 1073 994 5880 330 994 5881 1075 994 5882 1075 995 5883 330 995 5884 329 995 5885 1075 996 5886 329 996 5887 1077 996 5888 1077 997 5889 329 997 5890 328 997 5891 1077 998 5892 328 998 5893 1079 998 5894 1079 999 5895 328 999 5896 324 999 5897 1079 1000 5898 324 1000 5899 1081 1000 5900 1081 1001 5901 324 1001 5902 326 1001 5903 1081 1002 5904 326 1002 5905 1083 1002 5906 1083 1003 5907 326 1003 5908 327 1003 5909 1083 1004 5910 327 1004 5911 1085 1004 5912 1085 1005 5913 327 1005 5914 323 1005 5915 1085 1005 5916 323 1005 5917 1087 1005 5918 1087 1006 5919 323 1006 5920 322 1006 5921 1087 1007 5922 322 1007 5923 1089 1007 5924 322 1008 5925 336 1008 5926 1089 1008 5927 1089 1009 5928 336 1009 5929 335 1009 5930 1089 1010 5931 335 1010 5932 1091 1010 5933 1091 1011 5934 335 1011 5935 334 1011 5936 1091 1012 5937 334 1012 5938 1093 1012 5939 1093 1013 5940 334 1013 5941 332 1013 5942 1093 1014 5943 332 1014 5944 1095 1014 5945 1095 1015 5946 332 1015 5947 331 1015 5948 1095 1016 5949 331 1016 5950 1097 1016 5951 331 1017 5952 339 1017 5953 1097 1017 5954 1097 1018 5955 339 1018 5956 338 1018 5957 1097 1019 5958 338 1019 5959 1062 1019 5960 1062 1020 5961 338 1020 5962 383 1020 5963 1062 1021 5964 383 1021 5965 1063 1021 5966 1063 485 5967 383 485 5968 605 485 5969 605 485 5970 383 485 5971 382 485 5972 998 1022 5973 342 1022 5974 1060 1022 5975 1060 1023 5976 342 1023 5977 365 1023 5978 1060 1024 5979 365 1024 5980 1058 1024 5981 1058 1025 5982 365 1025 5983 359 1025 5984 1058 1026 5985 359 1026 5986 1056 1026 5987 1056 1027 5988 359 1027 5989 358 1027 5990 1056 1028 5991 358 1028 5992 1054 1028 5993 1054 1029 5994 358 1029 5995 362 1029 5996 1054 1030 5997 362 1030 5998 1052 1030 5999 1052 1031 6000 362 1031 6001 364 1031 6002 1052 1032 6003 364 1032 6004 1050 1032 6005 1050 1033 6006 364 1033 6007 363 1033 6008 1050 1034 6009 363 1034 6010 1048 1034 6011 1048 1035 6012 363 1035 6013 361 1035 6014 1048 1036 6015 361 1036 6016 1046 1036 6017 1046 1037 6018 361 1037 6019 360 1037 6020 1046 1038 6021 360 1038 6022 1044 1038 6023 1044 1038 6024 360 1038 6025 370 1038 6026 1044 1039 6027 370 1039 6028 1042 1039 6029 1042 1040 6030 370 1040 6031 350 1040 6032 456 489 6033 1040 489 6034 352 489 6035 352 489 6036 1040 489 6037 1042 489 6038 352 489 6039 1042 489 6040 350 489 6041 1040 1041 6042 456 1041 6043 457 1041 6044 1040 1042 6045 457 1042 6046 1038 1042 6047 1038 1043 6048 457 1043 6049 440 1043 6050 1038 1044 6051 440 1044 6052 1036 1044 6053 1036 1045 6054 440 1045 6055 460 1045 6056 1036 1046 6057 460 1046 6058 1034 1046 6059 1034 1047 6060 460 1047 6061 459 1047 6062 1034 1048 6063 459 1048 6064 1032 1048 6065 1032 1049 6066 459 1049 6067 458 1049 6068 1032 1050 6069 458 1050 6070 1030 1050 6071 1030 1051 6072 458 1051 6073 443 1051 6074 1030 1052 6075 443 1052 6076 1028 1052 6077 1028 1053 6078 443 1053 6079 442 1053 6080 1028 1054 6081 442 1054 6082 1026 1054 6083 1026 1055 6084 442 1055 6085 426 1055 6086 1026 1056 6087 426 1056 6088 1024 1056 6089 1024 1057 6090 426 1057 6091 425 1057 6092 1024 1058 6093 425 1058 6094 1022 1058 6095 425 1059 6096 516 1059 6097 1022 1059 6098 1022 1060 6099 516 1060 6100 515 1060 6101 1022 1061 6102 515 1061 6103 1020 1061 6104 668 0 6105 1134 0 6106 667 0 6107 667 0 6108 1134 0 6109 665 0 6110 959 0 6111 961 0 6112 1008 0 6113 1008 1062 6114 961 1062 6115 963 1062 6116 1008 1063 6117 963 1063 6118 964 1063 6119 661 0 6120 660 0 6121 1005 0 6122 1005 0 6123 660 0 6124 1133 0 6125 957 0 6126 959 0 6127 1124 0 6128 1124 0 6129 959 0 6130 1008 0 6131 1124 0 6132 1008 0 6133 1135 0 6134 1135 1064 6135 1008 1064 6136 1125 1064 6137 1135 0 6138 1125 0 6139 1136 0 6140 1136 0 6141 1125 0 6142 1126 0 6143 1136 0 6144 1126 0 6145 1137 0 6146 1137 0 6147 1126 0 6148 1127 0 6149 1137 1065 6150 1127 1065 6151 1138 1065 6152 1138 0 6153 1127 0 6154 1128 0 6155 1138 0 6156 1128 0 6157 1139 0 6158 1139 1066 6159 1128 1066 6160 1129 1066 6161 1139 0 6162 1129 0 6163 1140 0 6164 1140 0 6165 1129 0 6166 1130 0 6167 1140 0 6168 1130 0 6169 1141 0 6170 1141 1067 6171 1130 1067 6172 1131 1067 6173 1141 0 6174 1131 0 6175 1142 0 6176 1142 0 6177 1131 0 6178 1132 0 6179 1142 1068 6180 1132 1068 6181 1143 1068 6182 1143 1069 6183 1132 1069 6184 1133 1069 6185 1143 0 6186 1133 0 6187 1134 0 6188 1134 1070 6189 1133 1070 6190 660 1070 6191 1134 0 6192 660 0 6193 665 0 6194 1021 487 6195 1019 487 6196 167 487 6197 167 487 6198 1019 487 6199 168 487 6200 1009 1071 6201 94 1071 6202 1011 1071 6203 1011 1071 6204 94 1071 6205 116 1071 6206 1011 1072 6207 116 1072 6208 1013 1072 6209 1013 1073 6210 116 1073 6211 118 1073 6212 1013 1074 6213 118 1074 6214 1015 1074 6215 1015 1075 6216 118 1075 6217 119 1075 6218 1015 1076 6219 119 1076 6220 1017 1076 6221 1017 1077 6222 119 1077 6223 121 1077 6224 1017 1078 6225 121 1078 6226 1019 1078 6227 1019 1079 6228 121 1079 6229 168 1079 6230 1134 1080 6231 104 1080 6232 1143 1080 6233 1143 1081 6234 104 1081 6235 103 1081 6236 1143 1082 6237 103 1082 6238 1142 1082 6239 1142 1083 6240 103 1083 6241 18 1083 6242 1142 1084 6243 18 1084 6244 1141 1084 6245 1141 1084 6246 18 1084 6247 78 1084 6248 1136 1093 6273 88 1093 6274 1135 1093 6275 1135 1094 6276 88 1094 6277 90 1094 6278 1135 1095 6279 90 1095 6280 1124 1095 6281 1124 1095 6282 90 1095 6283 92 1095 6284 1134 1096 6285 668 1096 6286 104 1096 6287 104 1097 6288 668 1097 6289 105 1097 6290 652 1098 6291 1099 1098 6292 112 1098 6293 112 922 6294 1099 922 6295 110 922 6296 1120 1099 6297 77 1099 6298 1118 1099 6299 1118 1100 6300 77 1100 6301 76 1100 6302 1118 1101 6303 76 1101 6304 1116 1101 6305 1116 1102 6306 76 1102 6307 74 1102 6308 1116 1103 6309 74 1103 6310 1114 1103 6311 1114 1104 6312 74 1104 6313 72 1104 6314 1114 1105 6315 72 1105 6316 1112 1105 6317 1112 1105 6318 72 1105 6319 70 1105 6320 1102 1116 6351 25 1116 6352 1100 1116 6353 1100 1117 6354 25 1117 6355 108 1117 6356 1100 1118 6357 108 1118 6358 1099 1118 6359 1099 1119 6360 108 1119 6361 110 1119 6362 1004 1120 6363 60 1120 6364 1122 1120 6365 1122 1120 6366 60 1120 6367 62 1120 6368 1122 1121 6369 62 1121 6370 1120 1121 6371 1120 1122 6372 62 1122 6373 77 1122 6374 1003 1123 6375 1064 1123 6376 58 1123 6377 58 1124 6378 1064 1124 6379 28 1124 6380 1064 1125 6381 1066 1125 6382 28 1125 6383 28 1126 6384 1066 1126 6385 102 1126 6386 1066 1127 6387 1068 1127 6388 102 1127 6389 102 1128 6390 1068 1128 6391 101 1128 6392 1082 1129 6393 54 1129 6394 1080 1129 6395 1080 1130 6396 54 1130 6397 44 1130 6398 1080 1131 6399 44 1131 6400 1078 1131 6401 1078 1132 6402 44 1132 6403 42 1132 6404 1070 1140 6426 99 1140 6427 1068 1140 6428 1068 1141 6429 99 1141 6430 101 1141 6431 1000 1142 6432 123 1142 6433 1098 1142 6434 1098 1143 6435 123 1143 6436 39 1143 6437 1098 1144 6438 39 1144 6439 1096 1144 6440 1096 1145 6441 39 1145 6442 37 1145 6443 1096 1146 6444 37 1146 6445 1094 1146 6446 1094 1147 6447 37 1147 6448 35 1147 6449 1094 1148 6450 35 1148 6451 1092 1148 6452 1092 1149 6453 35 1149 6454 20 1149 6455 1092 1150 6456 20 1150 6457 1090 1150 6458 1090 1151 6459 20 1151 6460 19 1151 6461 1090 1152 6462 19 1152 6463 1088 1152 6464 1088 1153 6465 19 1153 6466 49 1153 6467 1088 1154 6468 49 1154 6469 1086 1154 6470 1086 1155 6471 49 1155 6472 51 1155 6473 1086 1156 6474 51 1156 6475 1084 1156 6476 1084 1157 6477 51 1157 6478 53 1157 6479 1084 1158 6480 53 1158 6481 1082 1158 6482 1082 1159 6483 53 1159 6484 54 1159 6485 1043 1160 6486 145 1160 6487 143 1160 6488 1043 1161 6489 143 1161 6490 1045 1161 6491 1045 1162 6492 143 1162 6493 141 1162 6494 1045 1163 6495 141 1163 6496 1047 1163 6497 1047 1164 6498 141 1164 6499 139 1164 6500 1047 1165 6501 139 1165 6502 1049 1165 6503 1049 1166 6504 139 1166 6505 137 1166 6506 1049 1167 6507 137 1167 6508 1051 1167 6509 1051 1168 6510 137 1168 6511 135 1168 6512 1051 1169 6513 135 1169 6514 1053 1169 6515 1053 1170 6516 135 1170 6517 133 1170 6518 1053 1171 6519 133 1171 6520 1055 1171 6521 1055 1172 6522 133 1172 6523 131 1172 6524 1055 1172 6525 131 1172 6526 1057 1172 6527 1057 1173 6528 131 1173 6529 129 1173 6530 1057 1174 6531 129 1174 6532 1059 1174 6533 1059 1175 6534 129 1175 6535 127 1175 6536 1059 1176 6537 127 1176 6538 1061 1176 6539 1061 1177 6540 127 1177 6541 125 1177 6542 1061 1178 6543 125 1178 6544 999 1178 6545 1043 486 6546 1041 486 6547 145 486 6548 1041 1179 6549 1614 1179 6550 1630 1179 6551 1021 1180 6552 167 1180 6553 1023 1180 6554 1023 1181 6555 167 1181 6556 165 1181 6557 1033 1192 6588 155 1192 6589 1035 1192 6590 1035 1193 6591 155 1193 6592 153 1193 6593 1035 1194 6594 153 1194 6595 1037 1194 6596 1037 1195 6597 153 1195 6598 151 1195 6599 1037 1196 6600 151 1196 6601 1039 1196 6602 1039 1197 6603 151 1197 6604 149 1197 6605 1039 1198 6606 149 1198 6607 1041 1198 6608 1041 1199 6609 149 1199 6610 147 1199 6611 1144 0 6612 1145 0 6613 1146 0 6614 1146 0 6615 1145 0 6616 1147 0 6617 1146 0 6618 1147 0 6619 1148 0 6620 1148 0 6621 1147 0 6622 1149 0 6623 1148 0 6624 1149 0 6625 1150 0 6626 1150 0 6627 1149 0 6628 1151 0 6629 1150 0 6630 1151 0 6631 1152 0 6632 1152 0 6633 1151 0 6634 1153 0 6635 1152 0 6636 1153 0 6637 1154 0 6638 1154 1200 6639 1153 1200 6640 1155 1200 6641 1154 1201 6642 1155 1201 6643 1156 1201 6644 1156 0 6645 1155 0 6646 1157 0 6647 1156 0 6648 1157 0 6649 1158 0 6650 1158 0 6651 1157 0 6652 1159 0 6653 1158 1202 6654 1159 1202 6655 1160 1202 6656 1160 0 6657 1159 0 6658 1161 0 6659 1160 0 6660 1161 0 6661 1162 0 6662 1162 0 6663 1161 0 6664 1163 0 6665 1162 1203 6666 1163 1203 6667 1164 1203 6668 1164 1204 6669 1163 1204 6670 1165 1204 6671 1164 1205 6672 1165 1205 6673 1166 1205 6674 1166 0 6675 1165 0 6676 1167 0 6677 1166 1206 6678 1167 1206 6679 1168 1206 6680 1168 0 6681 1167 0 6682 1169 0 6683 1168 1203 6684 1169 1203 6685 1170 1203 6686 1170 0 6687 1169 0 6688 1171 0 6689 1170 1207 6690 1171 1207 6691 1172 1207 6692 1172 1208 6693 1171 1208 6694 1173 1208 6695 1172 0 6696 1173 0 6697 1174 0 6698 1174 1209 6699 1173 1209 6700 1175 1209 6701 1174 1210 6702 1175 1210 6703 1144 1210 6704 1144 0 6705 1175 0 6706 1145 0 6707 1159 1211 6708 1157 1211 6709 30 1211 6710 30 1212 6711 1157 1212 6712 59 1212 6713 1161 1213 6714 1159 1213 6715 10 1213 6716 10 1214 6717 1159 1214 6718 30 1214 6719 1163 1215 6720 1161 1215 6721 111 1215 6722 111 1216 6723 1161 1216 6724 10 1216 6725 1163 1217 6726 111 1217 6727 109 1217 6728 1163 1218 6729 109 1218 6730 1165 1218 6731 1165 1219 6732 109 1219 6733 107 1219 6734 1165 1220 6735 107 1220 6736 1167 1220 6737 1167 1221 6738 107 1221 6739 106 1221 6740 1167 1222 6741 106 1222 6742 1169 1222 6743 1169 1223 6744 106 1223 6745 27 1223 6746 1169 1224 6747 27 1224 6748 1171 1224 6749 1171 1225 6750 27 1225 6751 63 1225 6752 1171 1226 6753 63 1226 6754 1173 1226 6755 1173 1227 6756 63 1227 6757 65 1227 6758 1173 1228 6759 65 1228 6760 1175 1228 6761 1175 1229 6762 65 1229 6763 67 1229 6764 1175 1230 6765 67 1230 6766 1145 1230 6767 1145 1231 6768 67 1231 6769 69 1231 6770 1145 1232 6771 69 1232 6772 1147 1232 6773 1147 1233 6774 69 1233 6775 71 1233 6776 1147 1234 6777 71 1234 6778 1149 1234 6779 1149 1235 6780 71 1235 6781 73 1235 6782 1149 1236 6783 73 1236 6784 1151 1236 6785 1151 1237 6786 73 1237 6787 75 1237 6788 1151 1238 6789 75 1238 6790 1153 1238 6791 1153 1239 6792 75 1239 6793 61 1239 6794 1153 1240 6795 61 1240 6796 1155 1240 6797 1157 1241 6798 1155 1241 6799 59 1241 6800 59 1242 6801 1155 1242 6802 61 1242 6803 1156 1128 6804 1158 1128 6805 1176 1128 6806 1176 1243 6807 1158 1243 6808 1177 1243 6809 1158 1244 6810 1160 1244 6811 1177 1244 6812 1177 1245 6813 1160 1245 6814 1178 1245 6815 1160 1246 6816 1162 1246 6817 1178 1246 6818 1178 1247 6819 1162 1247 6820 1179 1247 6821 1154 1248 6822 1180 1248 6823 1152 1248 6824 1152 1249 6825 1180 1249 6826 1181 1249 6827 1152 1250 6828 1181 1250 6829 1150 1250 6830 1150 1251 6831 1181 1251 6832 1182 1251 6833 1150 1252 6834 1182 1252 6835 1148 1252 6836 1148 1253 6837 1182 1253 6838 1183 1253 6839 1148 1254 6840 1183 1254 6841 1146 1254 6842 1146 1255 6843 1183 1255 6844 1184 1255 6845 1146 1256 6846 1184 1256 6847 1144 1256 6848 1144 1257 6849 1184 1257 6850 1185 1257 6851 1144 1258 6852 1185 1258 6853 1174 1258 6854 1174 1259 6855 1185 1259 6856 1186 1259 6857 1174 1260 6858 1186 1260 6859 1172 1260 6860 1172 1260 6861 1186 1260 6862 1187 1260 6863 1172 1261 6864 1187 1261 6865 1170 1261 6866 1170 1262 6867 1187 1262 6868 1188 1262 6869 1170 1263 6870 1188 1263 6871 1168 1263 6872 1168 1264 6873 1188 1264 6874 1189 1264 6875 1168 1265 6876 1189 1265 6877 1166 1265 6878 1166 1266 6879 1189 1266 6880 1190 1266 6881 1166 1267 6882 1190 1267 6883 1164 1267 6884 1164 1268 6885 1190 1268 6886 1191 1268 6887 1164 1269 6888 1191 1269 6889 1162 1269 6890 1162 1270 6891 1191 1270 6892 1179 1270 6893 1154 1125 6894 1156 1125 6895 1180 1125 6896 1180 1271 6897 1156 1271 6898 1176 1271 6899 1192 0 6900 1193 0 6901 1194 0 6902 1192 0 6903 1194 0 6904 1195 0 6905 1196 739 6906 1197 739 6907 1194 739 6908 1194 740 6909 1197 740 6910 1198 740 6911 1194 0 6912 1198 0 6913 1195 0 6914 1199 557 6915 1200 557 6916 1194 557 6917 1194 1272 6918 1200 1272 6919 1201 1272 6920 1194 791 6921 1201 791 6922 1196 791 6923 1202 1273 6924 1203 1273 6925 1194 1273 6926 1194 1274 6927 1203 1274 6928 1204 1274 6929 1194 801 6930 1204 801 6931 1199 801 6932 1205 0 6933 1206 0 6934 1194 0 6935 1194 744 6936 1206 744 6937 1207 744 6938 1194 0 6939 1207 0 6940 1202 0 6941 1208 0 6942 1209 0 6943 1194 0 6944 1194 802 6945 1209 802 6946 1210 802 6947 1194 0 6948 1210 0 6949 1205 0 6950 1211 0 6951 1212 0 6952 1194 0 6953 1194 0 6954 1212 0 6955 1213 0 6956 1194 0 6957 1213 0 6958 1208 0 6959 1214 794 6960 1215 794 6961 1194 794 6962 1194 747 6963 1215 747 6964 1216 747 6965 1194 0 6966 1216 0 6967 1211 0 6968 1217 0 6969 1218 0 6970 1194 0 6971 1194 800 6972 1218 800 6973 1219 800 6974 1194 796 6975 1219 796 6976 1214 796 6977 1220 0 6978 1221 0 6979 1194 0 6980 1194 749 6981 1221 749 6982 1222 749 6983 1194 750 6984 1222 750 6985 1217 750 6986 1223 0 6987 1224 0 6988 1194 0 6989 1194 799 6990 1224 799 6991 1225 799 6992 1194 752 6993 1225 752 6994 1220 752 6995 1226 0 6996 1227 0 6997 1194 0 6998 1194 1275 6999 1227 1275 7000 1228 1275 7001 1194 800 7002 1228 800 7003 1223 800 7004 1193 0 7005 1229 0 7006 1194 0 7007 1194 755 7008 1229 755 7009 1230 755 7010 1194 756 7011 1230 756 7012 1226 756 7013 1192 789 7014 1195 789 7015 1231 789 7016 1231 790 7017 1195 790 7018 1198 790 7019 1231 1276 7020 1198 1276 7021 1232 1276 7022 1232 455 7023 1198 455 7024 1197 455 7025 1232 707 7026 1197 707 7027 1233 707 7028 1233 1277 7029 1197 1277 7030 1196 1277 7031 1233 458 7032 1196 458 7033 1234 458 7034 1234 766 7035 1196 766 7036 1201 766 7037 1234 1278 7038 1201 1278 7039 1235 1278 7040 1235 461 7041 1201 461 7042 1200 461 7043 1235 462 7044 1200 462 7045 1236 462 7046 1236 770 7047 1200 770 7048 1199 770 7049 1236 710 7050 1199 710 7051 1237 710 7052 1237 464 7053 1199 464 7054 1204 464 7055 1237 711 7056 1204 711 7057 1238 711 7058 1238 466 7059 1204 466 7060 1203 466 7061 1238 1279 7062 1203 1279 7063 1239 1279 7064 1239 468 7065 1203 468 7066 1202 468 7067 1239 714 7068 1202 714 7069 1240 714 7070 1240 773 7071 1202 773 7072 1207 773 7073 1240 715 7074 1207 715 7075 1241 715 7076 1241 510 7077 1207 510 7078 1206 510 7079 1241 511 7080 1206 511 7081 1242 511 7082 1242 378 7083 1206 378 7084 1205 378 7085 1242 379 7086 1205 379 7087 1243 379 7088 1243 1280 7089 1205 1280 7090 1210 1280 7091 1243 1281 7092 1210 1281 7093 1244 1281 7094 1244 1282 7095 1210 1282 7096 1209 1282 7097 1244 1283 7098 1209 1283 7099 1245 1283 7100 1245 580 7101 1209 580 7102 1208 580 7103 1245 515 7104 1208 515 7105 1246 515 7106 1246 718 7107 1208 718 7108 1213 718 7109 1246 718 7110 1213 718 7111 1247 718 7112 1247 477 7113 1213 477 7114 1212 477 7115 1247 478 7116 1212 478 7117 1248 478 7118 1248 758 7119 1212 758 7120 1211 758 7121 1248 1284 7122 1211 1284 7123 1249 1284 7124 1249 1285 7125 1211 1285 7126 1216 1285 7127 1249 1286 7128 1216 1286 7129 1250 1286 7130 1250 392 7131 1216 392 7132 1215 392 7133 1250 393 7134 1215 393 7135 1251 393 7136 1251 723 7137 1215 723 7138 1214 723 7139 1251 723 7140 1214 723 7141 1252 723 7142 1252 724 7143 1214 724 7144 1219 724 7145 1252 1287 7146 1219 1287 7147 1253 1287 7148 1253 524 7149 1219 524 7150 1218 524 7151 1253 1288 7152 1218 1288 7153 1254 1288 7154 1254 1289 7155 1218 1289 7156 1217 1289 7157 1254 1290 7158 1217 1290 7159 1255 1290 7160 1255 401 7161 1217 401 7162 1222 401 7163 1255 402 7164 1222 402 7165 1256 402 7166 1256 526 7167 1222 526 7168 1221 526 7169 1256 527 7170 1221 527 7171 1257 527 7172 1257 528 7173 1221 528 7174 1220 528 7175 1257 528 7176 1220 528 7177 1258 528 7178 1258 727 7179 1220 727 7180 1225 727 7181 1258 445 7182 1225 445 7183 1259 445 7184 1259 729 7185 1225 729 7186 1224 729 7187 1259 446 7188 1224 446 7189 1260 446 7190 1260 730 7191 1224 730 7192 1223 730 7193 1260 448 7194 1223 448 7195 1261 448 7196 1261 731 7197 1223 731 7198 1228 731 7199 1261 784 7200 1228 784 7201 1262 784 7202 1262 420 7203 1228 420 7204 1227 420 7205 1262 1291 7206 1227 1291 7207 1263 1291 7208 1263 734 7209 1227 734 7210 1226 734 7211 1263 421 7212 1226 421 7213 1264 421 7214 1264 1292 7215 1226 1292 7216 1230 1292 7217 1264 1292 7218 1230 1292 7219 1265 1292 7220 1265 538 7221 1230 538 7222 1229 538 7223 1265 690 7224 1229 690 7225 1266 690 7226 1266 1293 7227 1229 1293 7228 1193 1293 7229 1266 595 7230 1193 595 7231 1267 595 7232 1267 788 7233 1193 788 7234 1192 788 7235 1267 438 7236 1192 438 7237 1231 438 7238 1268 1331 7398 93 1331 7399 91 1331 7400 1268 1332 7401 91 1332 7402 1269 1332 7403 1269 1333 7404 91 1333 7405 89 1333 7406 1269 1334 7407 89 1334 7408 1270 1334 7409 1270 1335 7410 89 1335 7411 87 1335 7412 1270 1336 7413 87 1336 7414 1271 1336 7415 1271 1337 7416 87 1337 7417 85 1337 7418 1271 1338 7419 85 1338 7420 1272 1338 7421 1272 1339 7422 85 1339 7423 83 1339 7424 1272 1340 7425 83 1340 7426 1273 1340 7427 1273 1341 7428 83 1341 7429 81 1341 7430 1273 1342 7431 81 1342 7432 1274 1342 7433 1274 1343 7434 81 1343 7435 79 1343 7436 1274 1344 7437 79 1344 7438 1275 1344 7439 1275 1345 7440 79 1345 7441 17 1345 7442 1275 1346 7443 17 1346 7444 1276 1346 7445 1276 1347 7446 17 1347 7447 16 1347 7448 1276 1348 7449 16 1348 7450 1277 1348 7451 1277 1349 7452 16 1349 7453 32 1349 7454 1277 1350 7455 32 1350 7456 1278 1350 7457 1279 1351 7458 1278 1351 7459 31 1351 7460 31 1352 7461 1278 1352 7462 32 1352 7463 1280 1353 7464 1279 1353 7465 29 1353 7466 29 1353 7467 1279 1353 7468 31 1353 7469 1281 1354 7470 1280 1354 7471 100 1354 7472 100 1355 7473 1280 1355 7474 29 1355 7475 1281 1356 7476 100 1356 7477 98 1356 7478 1281 1356 7479 98 1356 7480 1282 1356 7481 1282 1357 7482 98 1357 7483 97 1357 7484 1282 1358 7485 97 1358 7486 1283 1358 7487 1283 1359 7488 97 1359 7489 24 1359 7490 1283 1360 7491 24 1360 7492 1284 1360 7493 1284 1361 7494 24 1361 7495 57 1361 7496 1284 1361 7497 57 1361 7498 1285 1361 7499 1285 1362 7500 57 1362 7501 56 1362 7502 1285 1363 7503 56 1363 7504 1286 1363 7505 1286 1364 7506 56 1364 7507 55 1364 7508 1286 1364 7509 55 1364 7510 1287 1364 7511 1287 1365 7512 55 1365 7513 43 1365 7514 1287 1366 7515 43 1366 7516 1288 1366 7517 1288 1367 7518 43 1367 7519 46 1367 7520 1288 1367 7521 46 1367 7522 1289 1367 7523 1290 489 7524 1289 489 7525 45 489 7526 45 489 7527 1289 489 7528 46 489 7529 1290 1368 7530 45 1368 7531 52 1368 7532 1290 1369 7533 52 1369 7534 1291 1369 7535 1291 1370 7536 52 1370 7537 50 1370 7538 1291 1371 7539 50 1371 7540 1292 1371 7541 1292 1372 7542 50 1372 7543 48 1372 7544 1292 1373 7545 48 1373 7546 1293 1373 7547 1293 1374 7548 48 1374 7549 47 1374 7550 1293 1375 7551 47 1375 7552 1294 1375 7553 1294 1376 7554 47 1376 7555 21 1376 7556 1294 1377 7557 21 1377 7558 1295 1377 7559 1295 1378 7560 21 1378 7561 34 1378 7562 1295 1379 7563 34 1379 7564 1296 1379 7565 1296 1380 7566 34 1380 7567 36 1380 7568 1296 1381 7569 36 1381 7570 1297 1381 7571 1297 1382 7572 36 1382 7573 38 1382 7574 1297 1383 7575 38 1383 7576 1298 1383 7577 1298 1384 7578 38 1384 7579 40 1384 7580 1298 1385 7581 40 1385 7582 1299 1385 7583 1299 1386 7584 40 1386 7585 122 1386 7586 1299 1387 7587 122 1387 7588 1300 1387 7589 1301 485 7590 1300 485 7591 124 485 7592 124 485 7593 1300 485 7594 122 485 7595 1301 1388 7596 124 1388 7597 1302 1388 7598 1302 1389 7599 124 1389 7600 126 1389 7601 1302 1390 7602 126 1390 7603 1303 1390 7604 1303 1391 7605 126 1391 7606 128 1391 7607 1303 1392 7608 128 1392 7609 1304 1392 7610 1304 1393 7611 128 1393 7612 130 1393 7613 1304 1394 7614 130 1394 7615 1305 1394 7616 1305 1394 7617 130 1394 7618 132 1394 7619 1305 1395 7620 132 1395 7621 1306 1395 7622 1306 1396 7623 132 1396 7624 134 1396 7625 1306 1397 7626 134 1397 7627 1307 1397 7628 1307 1398 7629 134 1398 7630 136 1398 7631 1307 1399 7632 136 1399 7633 1308 1399 7634 1308 1399 7635 136 1399 7636 138 1399 7637 1308 1400 7638 138 1400 7639 1309 1400 7640 1309 1401 7641 138 1401 7642 140 1401 7643 1309 1402 7644 140 1402 7645 1310 1402 7646 1310 1403 7647 140 1403 7648 142 1403 7649 1310 1404 7650 142 1404 7651 1311 1404 7652 1311 1405 7653 142 1405 7654 144 1405 7655 1312 489 7656 1311 489 7657 146 489 7658 1311 1406 7659 1615 1406 7660 1624 1406 7661 1312 1407 7662 146 1407 7663 148 1407 7664 1312 1408 7665 148 1408 7666 1313 1408 7667 1313 1409 7668 148 1409 7669 150 1409 7670 1313 1410 7671 150 1410 7672 1314 1410 7673 1314 1411 7674 150 1411 7675 152 1411 7676 1314 1412 7677 152 1412 7678 1315 1412 7679 1315 1413 7680 152 1413 7681 154 1413 7682 1315 1414 7683 154 1414 7684 1316 1414 7685 1316 1415 7686 154 1415 7687 156 1415 7688 1316 1416 7689 156 1416 7690 1317 1416 7691 1317 1378 7692 156 1378 7693 158 1378 7694 1317 1417 7695 158 1417 7696 1318 1417 7697 1318 1418 7698 158 1418 7699 160 1418 7700 1318 1419 7701 160 1419 7702 1319 1419 7703 1319 1420 7704 160 1420 7705 162 1420 7706 1319 1383 7707 162 1383 7708 1320 1383 7709 1320 1421 7710 162 1421 7711 164 1421 7712 1320 1422 7713 164 1422 7714 1321 1422 7715 1321 1423 7716 164 1423 7717 166 1423 7718 1321 1424 7719 166 1424 7720 1322 1424 7721 1323 485 7722 1322 485 7723 120 485 7724 120 485 7725 1322 485 7726 166 485 7727 1323 1425 7728 120 1425 7729 117 1425 7730 1323 1426 7731 117 1426 7732 1324 1426 7733 1324 1427 7734 117 1427 7735 115 1427 7736 1324 1428 7737 115 1428 7738 1325 1428 7739 1325 1429 7740 115 1429 7741 114 1429 7742 1325 1430 7743 114 1430 7744 1326 1430 7745 1326 1431 7746 114 1431 7747 96 1431 7748 1326 1432 7749 96 1432 7750 1327 1432 7751 1327 1433 7752 96 1433 7753 95 1433 7754 1327 1434 7755 95 1434 7756 1328 1434 7757 1268 868 7758 1328 868 7759 93 868 7760 93 1435 7761 1328 1435 7762 95 1435 7763 1329 0 7764 1323 0 7765 1330 0 7766 1330 1436 7767 1323 1436 7768 1324 1436 7769 1330 0 7770 1324 0 7771 1331 0 7772 1331 0 7773 1324 0 7774 1325 0 7775 1331 0 7776 1325 0 7777 1332 0 7778 1332 0 7779 1325 0 7780 1326 0 7781 1332 0 7782 1326 0 7783 1333 0 7784 1333 0 7785 1326 0 7786 1327 0 7787 1333 0 7788 1327 0 7789 1334 0 7790 1334 1437 7791 1327 1437 7792 1328 1437 7793 1334 1438 7794 1328 1438 7795 1335 1438 7796 1335 1439 7797 1328 1439 7798 1268 1439 7799 1335 1440 7800 1268 1440 7801 1336 1440 7802 1336 1441 7803 1268 1441 7804 1269 1441 7805 1336 1442 7806 1269 1442 7807 1337 1442 7808 1337 0 7809 1269 0 7810 1270 0 7811 1337 1443 7812 1270 1443 7813 1338 1443 7814 1338 1444 7815 1270 1444 7816 1271 1444 7817 1338 0 7818 1271 0 7819 1339 0 7820 1339 0 7821 1271 0 7822 1272 0 7823 1339 1445 7824 1272 1445 7825 1340 1445 7826 1340 1446 7827 1272 1446 7828 1273 1446 7829 1340 0 7830 1273 0 7831 1341 0 7832 1341 1447 7833 1273 1447 7834 1274 1447 7835 1341 0 7836 1274 0 7837 1342 0 7838 1342 1448 7839 1274 1448 7840 1275 1448 7841 1342 0 7842 1275 0 7843 1343 0 7844 1343 0 7845 1275 0 7846 1276 0 7847 1343 0 7848 1276 0 7849 1344 0 7850 1344 1449 7851 1276 1449 7852 1277 1449 7853 1344 1450 7854 1277 1450 7855 1345 1450 7856 1345 1437 7857 1277 1437 7858 1278 1437 7859 1345 0 7860 1278 0 7861 1346 0 7862 1346 1451 7863 1278 1451 7864 1279 1451 7865 1346 0 7866 1279 0 7867 1347 0 7868 1347 0 7869 1279 0 7870 1280 0 7871 1347 0 7872 1280 0 7873 1348 0 7874 1348 0 7875 1280 0 7876 1281 0 7877 1348 1452 7878 1281 1452 7879 1349 1452 7880 1349 0 7881 1281 0 7882 1282 0 7883 1349 0 7884 1282 0 7885 1350 0 7886 1350 1453 7887 1282 1453 7888 1283 1453 7889 1350 1454 7890 1283 1454 7891 1351 1454 7892 1351 0 7893 1283 0 7894 1284 0 7895 1351 1455 7896 1284 1455 7897 1352 1455 7898 1352 0 7899 1284 0 7900 1285 0 7901 1352 1455 7902 1285 1455 7903 1353 1455 7904 1353 1456 7905 1285 1456 7906 1286 1456 7907 1353 1457 7908 1286 1457 7909 1354 1457 7910 1354 0 7911 1286 0 7912 1287 0 7913 1354 0 7914 1287 0 7915 1355 0 7916 1355 0 7917 1287 0 7918 1288 0 7919 1355 0 7920 1288 0 7921 1356 0 7922 1356 1458 7923 1288 1458 7924 1289 1458 7925 1356 0 7926 1289 0 7927 1357 0 7928 1357 0 7929 1289 0 7930 1290 0 7931 1357 0 7932 1290 0 7933 1358 0 7934 1358 0 7935 1290 0 7936 1291 0 7937 1358 0 7938 1291 0 7939 1359 0 7940 1359 1459 7941 1291 1459 7942 1292 1459 7943 1359 0 7944 1292 0 7945 1360 0 7946 1360 0 7947 1292 0 7948 1293 0 7949 1360 0 7950 1293 0 7951 1361 0 7952 1361 0 7953 1293 0 7954 1294 0 7955 1361 0 7956 1294 0 7957 1362 0 7958 1362 0 7959 1294 0 7960 1295 0 7961 1362 0 7962 1295 0 7963 1363 0 7964 1363 0 7965 1295 0 7966 1296 0 7967 1363 0 7968 1296 0 7969 1364 0 7970 1364 0 7971 1296 0 7972 1297 0 7973 1364 0 7974 1297 0 7975 1365 0 7976 1365 0 7977 1297 0 7978 1298 0 7979 1365 0 7980 1298 0 7981 1366 0 7982 1366 0 7983 1298 0 7984 1299 0 7985 1366 0 7986 1299 0 7987 1367 0 7988 1367 0 7989 1299 0 7990 1300 0 7991 1367 0 7992 1300 0 7993 1368 0 7994 1368 0 7995 1300 0 7996 1301 0 7997 1368 0 7998 1301 0 7999 1369 0 8000 1369 1460 8001 1301 1460 8002 1302 1460 8003 1369 1461 8004 1302 1461 8005 1370 1461 8006 1370 1462 8007 1302 1462 8008 1303 1462 8009 1370 881 8010 1303 881 8011 1371 881 8012 1371 0 8013 1303 0 8014 1304 0 8015 1371 0 8016 1304 0 8017 1372 0 8018 1372 0 8019 1304 0 8020 1305 0 8021 1372 0 8022 1305 0 8023 1373 0 8024 1373 0 8025 1305 0 8026 1306 0 8027 1373 0 8028 1306 0 8029 1374 0 8030 1374 1463 8031 1306 1463 8032 1307 1463 8033 1374 0 8034 1307 0 8035 1375 0 8036 1375 0 8037 1307 0 8038 1308 0 8039 1375 0 8040 1308 0 8041 1376 0 8042 1376 0 8043 1308 0 8044 1309 0 8045 1376 0 8046 1309 0 8047 1377 0 8048 1377 1464 8049 1309 1464 8050 1310 1464 8051 1377 1442 8052 1310 1442 8053 1378 1442 8054 1378 1465 8055 1310 1465 8056 1311 1465 8057 1378 0 8058 1311 0 8059 1379 0 8060 1379 0 8061 1311 0 8062 1312 0 8063 1379 1466 8064 1312 1466 8065 1380 1466 8066 1380 1467 8067 1312 1467 8068 1313 1467 8069 1380 1468 8070 1313 1468 8071 1381 1468 8072 1381 1467 8073 1313 1467 8074 1314 1467 8075 1381 0 8076 1314 0 8077 1382 0 8078 1382 0 8079 1314 0 8080 1315 0 8081 1382 0 8082 1315 0 8083 1383 0 8084 1383 1469 8085 1315 1469 8086 1316 1469 8087 1383 883 8088 1316 883 8089 1384 883 8090 1384 1470 8091 1316 1470 8092 1317 1470 8093 1384 0 8094 1317 0 8095 1385 0 8096 1385 0 8097 1317 0 8098 1318 0 8099 1385 0 8100 1318 0 8101 1386 0 8102 1386 1471 8103 1318 1471 8104 1319 1471 8105 1386 0 8106 1319 0 8107 1387 0 8108 1387 0 8109 1319 0 8110 1320 0 8111 1387 0 8112 1320 0 8113 1388 0 8114 1388 0 8115 1320 0 8116 1321 0 8117 1388 0 8118 1321 0 8119 1389 0 8120 1389 0 8121 1321 0 8122 1322 0 8123 1389 0 8124 1322 0 8125 1329 0 8126 1329 0 8127 1322 0 8128 1323 0 8129 1345 1472 8130 1390 1472 8131 1344 1472 8132 1344 1473 8133 1390 1473 8134 1391 1473 8135 1344 1474 8136 1391 1474 8137 1343 1474 8138 1343 1475 8139 1391 1475 8140 1392 1475 8141 1343 1476 8142 1392 1476 8143 1342 1476 8144 1342 1477 8145 1392 1477 8146 1393 1477 8147 1342 1478 8148 1393 1478 8149 1341 1478 8150 1341 1479 8151 1393 1479 8152 1394 1479 8153 1341 1480 8154 1394 1480 8155 1340 1480 8156 1340 1481 8157 1394 1481 8158 1395 1481 8159 1340 1482 8160 1395 1482 8161 1339 1482 8162 1339 1483 8163 1395 1483 8164 1396 1483 8165 1339 1484 8166 1396 1484 8167 1338 1484 8168 1338 1485 8169 1396 1485 8170 1397 1485 8171 1338 1486 8172 1397 1486 8173 1337 1486 8174 1337 1487 8175 1397 1487 8176 1398 1487 8177 1337 1488 8178 1398 1488 8179 1336 1488 8180 1336 1489 8181 1398 1489 8182 1399 1489 8183 1336 1490 8184 1399 1490 8185 1335 1490 8186 1335 1491 8187 1399 1491 8188 1400 1491 8189 1345 1492 8190 1346 1492 8191 1390 1492 8192 1390 1213 8193 1346 1213 8194 1401 1213 8195 1346 1125 8196 1347 1125 8197 1401 1125 8198 1401 1493 8199 1347 1493 8200 1402 1493 8201 1347 1494 8202 1348 1494 8203 1402 1494 8204 1402 1128 8205 1348 1128 8206 1403 1128 8207 1356 1495 8208 1404 1495 8209 1355 1495 8210 1355 1496 8211 1404 1496 8212 1405 1496 8213 1355 1497 8214 1405 1497 8215 1354 1497 8216 1354 1498 8217 1405 1498 8218 1406 1498 8219 1354 1499 8220 1406 1499 8221 1353 1499 8222 1353 1500 8223 1406 1500 8224 1407 1500 8225 1353 1501 8226 1407 1501 8227 1352 1501 8228 1352 1502 8229 1407 1502 8230 1408 1502 8231 1352 1503 8232 1408 1503 8233 1351 1503 8234 1351 1504 8235 1408 1504 8236 1409 1504 8237 1351 1505 8238 1409 1505 8239 1350 1505 8240 1350 1506 8241 1409 1506 8242 1410 1506 8243 1350 1507 8244 1410 1507 8245 1349 1507 8246 1349 1508 8247 1410 1508 8248 1411 1508 8249 1349 1509 8250 1411 1509 8251 1348 1509 8252 1348 1510 8253 1411 1510 8254 1403 1510 8255 1356 486 8256 1357 486 8257 1404 486 8258 1404 486 8259 1357 486 8260 1412 486 8261 1367 1511 8262 1413 1511 8263 1366 1511 8264 1366 1512 8265 1413 1512 8266 1414 1512 8267 1366 1513 8268 1414 1513 8269 1365 1513 8270 1365 1514 8271 1414 1514 8272 1415 1514 8273 1365 1515 8274 1415 1515 8275 1364 1515 8276 1364 1515 8277 1415 1515 8278 1416 1515 8279 1364 1516 8280 1416 1516 8281 1363 1516 8282 1363 1517 8283 1416 1517 8284 1417 1517 8285 1363 1518 8286 1417 1518 8287 1362 1518 8288 1362 1519 8289 1417 1519 8290 1418 1519 8291 1362 1520 8292 1418 1520 8293 1361 1520 8294 1361 1521 8295 1418 1521 8296 1419 1521 8297 1361 1522 8298 1419 1522 8299 1360 1522 8300 1360 1166 8301 1419 1166 8302 1420 1166 8303 1360 1523 8304 1420 1523 8305 1359 1523 8306 1359 1524 8307 1420 1524 8308 1421 1524 8309 1359 1163 8310 1421 1163 8311 1358 1163 8312 1358 1162 8313 1421 1162 8314 1422 1162 8315 1358 1161 8316 1422 1161 8317 1357 1161 8318 1357 1525 8319 1422 1525 8320 1412 1525 8321 1367 487 8322 1368 487 8323 1413 487 8324 1413 487 8325 1368 487 8326 1423 487 8327 1378 1526 8328 1424 1526 8329 1425 1526 8330 1378 1527 8331 1425 1527 8332 1377 1527 8333 1377 1528 8334 1425 1528 8335 1426 1528 8336 1377 1529 8337 1426 1529 8338 1376 1529 8339 1376 1195 8340 1426 1195 8341 1427 1195 8342 1376 1530 8343 1427 1530 8344 1375 1530 8345 1375 1192 8346 1427 1192 8347 1428 1192 8348 1375 1531 8349 1428 1531 8350 1374 1531 8351 1374 1532 8352 1428 1532 8353 1429 1532 8354 1374 1533 8355 1429 1533 8356 1373 1533 8357 1373 1534 8358 1429 1534 8359 1430 1534 8360 1373 1535 8361 1430 1535 8362 1372 1535 8363 1372 1536 8364 1430 1536 8365 1431 1536 8366 1372 1537 8367 1431 1537 8368 1371 1537 8369 1371 1538 8370 1431 1538 8371 1432 1538 8372 1371 1539 8373 1432 1539 8374 1370 1539 8375 1370 1540 8376 1432 1540 8377 1433 1540 8378 1370 1541 8379 1433 1541 8380 1369 1541 8381 1369 1542 8382 1433 1542 8383 1423 1542 8384 1369 1543 8385 1423 1543 8386 1368 1543 8387 1378 486 8388 1379 486 8389 1424 486 8390 1424 486 8391 1379 486 8392 1434 486 8393 1389 1178 8394 1435 1178 8395 1388 1178 8396 1388 1544 8397 1435 1544 8398 1436 1544 8399 1388 1545 8400 1436 1545 8401 1387 1545 8402 1387 1546 8403 1436 1546 8404 1437 1546 8405 1387 1539 8406 1437 1539 8407 1386 1539 8408 1386 1538 8409 1437 1538 8410 1438 1538 8411 1386 1517 8412 1438 1517 8413 1385 1517 8414 1385 1547 8415 1438 1547 8416 1439 1547 8417 1385 1548 8418 1439 1548 8419 1384 1548 8420 1384 1549 8421 1439 1549 8422 1440 1549 8423 1384 1550 8424 1440 1550 8425 1383 1550 8426 1383 1551 8427 1440 1551 8428 1441 1551 8429 1383 1552 8430 1441 1552 8431 1382 1552 8432 1382 1553 8433 1441 1553 8434 1442 1553 8435 1382 1165 8436 1442 1165 8437 1381 1165 8438 1381 1554 8439 1442 1554 8440 1443 1554 8441 1381 1555 8442 1443 1555 8443 1380 1555 8444 1380 1556 8445 1443 1556 8446 1444 1556 8447 1380 1557 8448 1444 1557 8449 1379 1557 8450 1379 1160 8451 1444 1160 8452 1434 1160 8453 1389 487 8454 1329 487 8455 1435 487 8456 1435 487 8457 1329 487 8458 1445 487 8459 1334 1558 8460 1446 1558 8461 1333 1558 8462 1333 1559 8463 1446 1559 8464 1447 1559 8465 1333 1560 8466 1447 1560 8467 1332 1560 8468 1332 1561 8469 1447 1561 8470 1448 1561 8471 1332 1562 8472 1448 1562 8473 1331 1562 8474 1331 1563 8475 1448 1563 8476 1449 1563 8477 1331 1564 8478 1449 1564 8479 1330 1564 8480 1330 1565 8481 1449 1565 8482 1450 1565 8483 1330 1566 8484 1450 1566 8485 1329 1566 8486 1329 1567 8487 1450 1567 8488 1445 1567 8489 1334 1568 8490 1335 1568 8491 1446 1568 8492 1446 1569 8493 1335 1569 8494 1400 1569 8495 1451 0 8496 1452 0 8497 1453 0 8498 1451 0 8499 1453 0 8500 1454 0 8501 1455 739 8502 1456 739 8503 1453 739 8504 1453 1570 8505 1456 1570 8506 1457 1570 8507 1453 0 8508 1457 0 8509 1454 0 8510 1458 557 8511 1459 557 8512 1453 557 8513 1453 843 8514 1459 843 8515 1460 843 8516 1453 791 8517 1460 791 8518 1455 791 8519 1461 557 8520 1462 557 8521 1453 557 8522 1453 845 8523 1462 845 8524 1463 845 8525 1453 801 8526 1463 801 8527 1458 801 8528 1464 0 8529 1465 0 8530 1453 0 8531 1453 600 8532 1465 600 8533 1466 600 8534 1453 0 8535 1466 0 8536 1461 0 8537 1467 0 8538 1468 0 8539 1453 0 8540 1453 1571 8541 1468 1571 8542 1469 1571 8543 1453 0 8544 1469 0 8545 1464 0 8546 1470 0 8547 1471 0 8548 1453 0 8549 1453 0 8550 1471 0 8551 1472 0 8552 1453 0 8553 1472 0 8554 1467 0 8555 1473 794 8556 1474 794 8557 1453 794 8558 1453 849 8559 1474 849 8560 1475 849 8561 1453 0 8562 1475 0 8563 1470 0 8564 1476 0 8565 1477 0 8566 1453 0 8567 1453 1572 8568 1477 1572 8569 1478 1572 8570 1453 803 8571 1478 803 8572 1473 803 8573 1479 0 8574 1480 0 8575 1453 0 8576 1453 1573 8577 1480 1573 8578 1481 1573 8579 1453 1574 8580 1481 1574 8581 1476 1574 8582 1482 0 8583 1483 0 8584 1453 0 8585 1453 852 8586 1483 852 8587 1484 852 8588 1453 752 8589 1484 752 8590 1479 752 8591 1485 0 8592 1486 0 8593 1453 0 8594 1453 805 8595 1486 805 8596 1487 805 8597 1453 800 8598 1487 800 8599 1482 800 8600 1452 0 8601 1488 0 8602 1453 0 8603 1453 1575 8604 1488 1575 8605 1489 1575 8606 1453 807 8607 1489 807 8608 1485 807 8609 1490 0 8610 1491 0 8611 1492 0 8612 1490 0 8613 1492 0 8614 1493 0 8615 1494 0 8616 1495 0 8617 1492 0 8618 1492 543 8619 1495 543 8620 1496 543 8621 1492 0 8622 1496 0 8623 1493 0 8624 1497 544 8625 1498 544 8626 1492 544 8627 1492 611 8628 1498 611 8629 1499 611 8630 1492 597 8631 1499 597 8632 1494 597 8633 1500 0 8634 1501 0 8635 1492 0 8636 1492 1576 8637 1501 1576 8638 1502 1576 8639 1492 599 8640 1502 599 8641 1497 599 8642 1503 0 8643 1504 0 8644 1492 0 8645 1492 549 8646 1504 549 8647 1505 549 8648 1492 694 8649 1505 694 8650 1500 694 8651 1506 0 8652 1507 0 8653 1492 0 8654 1492 613 8655 1507 613 8656 1508 613 8657 1492 543 8658 1508 543 8659 1503 543 8660 1509 0 8661 1510 0 8662 1492 0 8663 1492 1577 8664 1510 1577 8665 1511 1577 8666 1492 603 8667 1511 603 8668 1506 603 8669 1512 553 8670 1513 553 8671 1492 553 8672 1492 1578 8673 1513 1578 8674 1514 1578 8675 1492 0 8676 1514 0 8677 1509 0 8678 1515 0 8679 1516 0 8680 1492 0 8681 1492 613 8682 1516 613 8683 1517 613 8684 1492 556 8685 1517 556 8686 1512 556 8687 1518 605 8688 1519 605 8689 1492 605 8690 1492 558 8691 1519 558 8692 1520 558 8693 1492 559 8694 1520 559 8695 1515 559 8696 1521 608 8697 1522 608 8698 1492 608 8699 1492 1579 8700 1522 1579 8701 1523 1579 8702 1492 1580 8703 1523 1580 8704 1518 1580 8705 1524 563 8706 1525 563 8707 1492 563 8708 1492 853 8709 1525 853 8710 1526 853 8711 1492 610 8712 1526 610 8713 1521 610 8714 1491 0 8715 1527 0 8716 1492 0 8717 1492 566 8718 1527 566 8719 1528 566 8720 1492 567 8721 1528 567 8722 1524 567 8723 1451 452 8724 1454 452 8725 1529 452 8726 1529 453 8727 1454 453 8728 1457 453 8729 1529 454 8730 1457 454 8731 1530 454 8732 1530 1581 8733 1457 1581 8734 1456 1581 8735 1530 1582 8736 1456 1582 8737 1531 1582 8738 1531 625 8739 1456 625 8740 1455 625 8741 1531 458 8742 1455 458 8743 1532 458 8744 1532 459 8745 1455 459 8746 1460 459 8747 1532 1278 8748 1460 1278 8749 1533 1278 8750 1533 461 8751 1460 461 8752 1459 461 8753 1533 462 8754 1459 462 8755 1534 462 8756 1534 463 8757 1459 463 8758 1458 463 8759 1534 1583 8760 1458 1583 8761 1535 1583 8762 1535 464 8763 1458 464 8764 1463 464 8765 1535 771 8766 1463 771 8767 1536 771 8768 1536 824 8769 1463 824 8770 1462 824 8771 1536 825 8772 1462 825 8773 1537 825 8774 1537 468 8775 1462 468 8776 1461 468 8777 1537 714 8778 1461 714 8779 1538 714 8780 1538 773 8781 1461 773 8782 1466 773 8783 1538 471 8784 1466 471 8785 1539 471 8786 1539 510 8787 1466 510 8788 1465 510 8789 1539 510 8790 1465 510 8791 1540 510 8792 1540 630 8793 1465 630 8794 1464 630 8795 1540 631 8796 1464 631 8797 1541 631 8798 1541 472 8799 1464 472 8800 1469 472 8801 1541 1281 8802 1469 1281 8803 1542 1281 8804 1542 474 8805 1469 474 8806 1468 474 8807 1542 1584 8808 1468 1584 8809 1543 1584 8810 1543 383 8811 1468 383 8812 1467 383 8813 1543 384 8814 1467 384 8815 1544 384 8816 1544 718 8817 1467 718 8818 1472 718 8819 1544 476 8820 1472 476 8821 1545 476 8822 1545 1585 8823 1472 1585 8824 1471 1585 8825 1545 1586 8826 1471 1586 8827 1546 1586 8828 1546 720 8829 1471 720 8830 1470 720 8831 1546 480 8832 1470 480 8833 1547 480 8834 1547 481 8835 1470 481 8836 1475 481 8837 1547 721 8838 1475 721 8839 1548 721 8840 1548 636 8841 1475 636 8842 1474 636 8843 1548 637 8844 1474 637 8845 1549 637 8846 1549 1587 8847 1474 1587 8848 1473 1587 8849 1549 723 8850 1473 723 8851 1550 723 8852 1550 430 8853 1473 430 8854 1478 430 8855 1550 1588 8856 1478 1588 8857 1551 1588 8858 1551 638 8859 1478 638 8860 1477 638 8861 1551 398 8862 1477 398 8863 1552 398 8864 1552 1289 8865 1477 1289 8866 1476 1289 8867 1552 443 8868 1476 443 8869 1553 443 8870 1553 640 8871 1476 640 8872 1481 640 8873 1553 641 8874 1481 641 8875 1554 641 8876 1554 527 8877 1481 527 8878 1480 527 8879 1554 527 8880 1480 527 8881 1555 527 8882 1555 404 8883 1480 404 8884 1479 404 8885 1555 528 8886 1479 528 8887 1556 528 8888 1556 727 8889 1479 727 8890 1484 727 8891 1556 445 8892 1484 445 8893 1557 445 8894 1557 839 8895 1484 839 8896 1483 839 8897 1557 839 8898 1483 839 8899 1558 839 8900 1558 783 8901 1483 783 8902 1482 783 8903 1558 448 8904 1482 448 8905 1559 448 8906 1559 1589 8907 1482 1589 8908 1487 1589 8909 1559 449 8910 1487 449 8911 1560 449 8912 1560 420 8913 1487 420 8914 1486 420 8915 1560 1291 8916 1486 1291 8917 1561 1291 8918 1561 734 8919 1486 734 8920 1485 734 8921 1561 734 8922 1485 734 8923 1562 734 8924 1562 1292 8925 1485 1292 8926 1489 1292 8927 1562 424 8928 1489 424 8929 1563 424 8930 1563 648 8931 1489 648 8932 1488 648 8933 1563 649 8934 1488 649 8935 1564 649 8936 1564 352 8937 1488 352 8938 1452 352 8939 1564 436 8940 1452 436 8941 1565 436 8942 1565 437 8943 1452 437 8944 1451 437 8945 1565 1590 8946 1451 1590 8947 1529 1590 8948 1491 1591 8949 1490 1591 8950 1566 1591 8951 1566 496 8952 1490 496 8953 1567 496 8954 1490 568 8955 1493 568 8956 1567 568 8957 1567 569 8958 1493 569 8959 1496 569 8960 1567 1592 8961 1496 1592 8962 1568 1592 8963 1568 357 8964 1496 357 8965 1495 357 8966 1568 500 8967 1495 500 8968 1569 500 8969 1569 1277 8970 1495 1277 8971 1494 1277 8972 1569 458 8973 1494 458 8974 1570 458 8975 1570 570 8976 1494 570 8977 1499 570 8978 1570 626 8979 1499 626 8980 1571 626 8981 1571 365 8982 1499 365 8983 1498 365 8984 1571 366 8985 1498 366 8986 1572 366 8987 1572 1593 8988 1498 1593 8989 1497 1593 8990 1572 1594 8991 1497 1594 8992 1573 1594 8993 1573 369 8994 1497 369 8995 1502 369 8996 1573 505 8997 1502 505 8998 1574 505 8999 1574 371 9000 1502 371 9001 1501 371 9002 1574 1595 9003 1501 1595 9004 1575 1595 9005 1575 373 9006 1501 373 9007 1500 373 9008 1575 508 9009 1500 508 9010 1576 508 9011 1576 509 9012 1500 509 9013 1505 509 9014 1576 509 9015 1505 509 9016 1577 509 9017 1577 510 9018 1505 510 9019 1504 510 9020 1577 511 9021 1504 511 9022 1578 511 9023 1578 378 9024 1504 378 9025 1503 378 9026 1578 379 9027 1503 379 9028 1579 379 9029 1579 381 9030 1503 381 9031 1508 381 9032 1579 632 9033 1508 632 9034 1580 632 9035 1580 1596 9036 1508 1596 9037 1507 1596 9038 1580 513 9039 1507 513 9040 1581 513 9041 1581 580 9042 1507 580 9043 1506 580 9044 1581 515 9045 1506 515 9046 1582 515 9047 1582 516 9048 1506 516 9049 1511 516 9050 1582 516 9051 1511 516 9052 1583 516 9053 1583 386 9054 1511 386 9055 1510 386 9056 1583 387 9057 1510 387 9058 1584 387 9059 1584 1597 9060 1510 1597 9061 1509 1597 9062 1584 1598 9063 1509 1598 9064 1585 1598 9065 1585 1599 9066 1509 1599 9067 1514 1599 9068 1585 1600 9069 1514 1600 9070 1586 1600 9071 1586 392 9072 1514 392 9073 1513 392 9074 1586 393 9075 1513 393 9076 1587 393 9077 1587 584 9078 1513 584 9079 1512 584 9080 1587 521 9081 1512 521 9082 1588 521 9083 1588 522 9084 1512 522 9085 1517 522 9086 1588 586 9087 1517 586 9088 1589 586 9089 1589 524 9090 1517 524 9091 1516 524 9092 1589 1288 9093 1516 1288 9094 1590 1288 9095 1590 639 9096 1516 639 9097 1515 639 9098 1590 1601 9099 1515 1601 9100 1591 1601 9101 1591 401 9102 1515 401 9103 1520 401 9104 1591 402 9105 1520 402 9106 1592 402 9107 1592 526 9108 1520 526 9109 1519 526 9110 1592 527 9111 1519 527 9112 1593 527 9113 1593 528 9114 1519 528 9115 1518 528 9116 1593 528 9117 1518 528 9118 1594 528 9119 1594 529 9120 1518 529 9121 1523 529 9122 1594 407 9123 1523 407 9124 1595 407 9125 1595 1602 9126 1523 1602 9127 1522 1602 9128 1595 409 9129 1522 409 9130 1596 409 9131 1596 532 9132 1522 532 9133 1521 532 9134 1596 411 9135 1521 411 9136 1597 411 9137 1597 1603 9138 1521 1603 9139 1526 1603 9140 1597 1604 9141 1526 1604 9142 1598 1604 9143 1598 414 9144 1526 414 9145 1525 414 9146 1598 414 9147 1525 414 9148 1599 414 9149 1599 645 9150 1525 645 9151 1524 645 9152 1599 594 9153 1524 594 9154 1600 594 9155 1600 646 9156 1524 646 9157 1528 646 9158 1600 1605 9159 1528 1605 9160 1601 1605 9161 1601 538 9162 1528 538 9163 1527 538 9164 1601 690 9165 1527 690 9166 1602 690 9167 1602 1293 9168 1527 1293 9169 1491 1293 9170 1602 595 9171 1491 595 9172 1603 595 9173 1603 596 9174 1491 596 9175 1566 596 9176 1611 486 9870 145 486 9871 1041 486 9872 1041 486 9873 147 486 9874 1608 486 9875 1608 486 9876 1623 486 9877 1041 486 9878 1630 486 9879 1611 486 9880 1041 486 9881 1623 486 9882 1614 486 9883 1041 486 9884 1609 1696 9885 146 1696 9886 1311 1696 9887 1311 1697 9888 144 1697 9889 1612 1697 9890 1631 489 9891 1615 489 9892 1311 489 9893 1311 1698 9894 1612 1698 9895 1631 1698 9896 1624 489 9897 1609 489 9898 1311 489 9899

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

8 1 24 9 1 25 10 1 26 11 0 27 12 0 28 10 0 29 10 2 30 12 2 31 13 2 32 9 3 33 14 3 34 10 3 35 10 4 36 14 4 37 15 4 38 10 5 39 15 5 40 11 5 41 16 0 42 17 0 43 18 0 44 19 0 45 20 0 46 21 0 47 22 0 48 23 0 49 24 0 50 25 6 51 26 6 52 27 6 53 28 7 54 29 7 55 30 7 56 30 8 57 29 8 58 31 8 59 30 9 60 31 9 61 10 9 62 10 10 63 31 10 64 32 10 65 10 0 66 32 0 67 8 0 68 8 0 69 32 0 70 33 0 71 21 11 72 20 11 73 34 11 74 34 12 75 20 12 76 35 12 77 34 0 78 35 0 79 36 0 80 36 13 81 35 13 82 37 13 83 36 0 84 37 0 85 38 0 86 38 0 87 37 0 88 39 0 89 38 0 90 39 0 91 40 0 92 41 0 93 42 0 94 43 0 95 44 0 96 45 0 97 42 0 98 42 0 99 45 0 100 46 0 101 42 14 102 46 14 103 43 14 104 21 0 105 47 0 106 19 0 107 19 15 108 47 15 109 48 15 110 19 0 111 48 0 112 49 0 113 49 16 114 48 16 115 50 16 116 49 0 117 50 0 118 51 0 119 51 17 120 50 17 121 52 17 122 51 18 123 52 18 124 53 18 125 53 19 126 52 19 127 45 19 128 53 0 129 45 0 130 54 0 131 54 0 132 45 0 133 44 0 134 43 0 135 55 0 136 41 0 137 41 20 138 55 20 139 56 20 140 41 21 141 56 21 142 23 21 143 23 22 144 56 22 145 57 22 146 23 23 147 57 23 148 24 23 149 28 24 150 30 24 151 58 24 152 58 0 153 30 0 154 59 0 155 58 0 156 59 0 157 60 0 158 60 25 159 59 25 160 61 25 161 60 0 162 61 0 163 62 0 164 27 26 165 26 26 166 63 26 167 63 27 168 26 27 169 64 27 170 63 28 171 64 28 172 65 28 173 65 29 174 64 29 175 66 29 176 65 0 177 66 0 178 67 0 179 67 30 180 66 30 181 68 30 182 67 31 183 68 31 184 69 31 185 69 32 186 68 32 187 70 32 188 69 0 189 70 0 190 71 0 191 71 0 192 70 0 193 72 0 194 71 0 195 72 0 196 73 0 197 73 0 198 72 0 199 74 0 200 73 0 201 74 0 202 75 0 203 75 33 204 74 33 205 76 33 206 75 0 207 76 0 208 61 0 209 61 0 210 76 0 211 77 0 212 61 34 213 77 34 214 62 34 215 18 35 216 17 35 217 78 35 218 78 36 219 17 36 220 79 36 221 78 0 222 79 0 223 80 0 224 80 37 225 79 37 226 81 37 227 80 0 228 81 0 229 82 0 230 82 38 231 81 38 232 83 38 233 82 39 234 83 39 235 84 39 236 84 40 237 83 40 238 85 40 239 84 0 240 85 0 241 86 0 242 86 41 243 85 41 244 87 41 245 86 0 246 87 0 247 88 0 248 88 42 249 87 42 250 89 42 251 88 43 252 89 43 253 90 43 254 90 44 255 89 44 256 91 44 257 90 0 258 91 0 259 92 0 260 92 45 261 91 45 262 93 45 263 92 0 264 93 0 265 94 0 266 94 0 267 93 0 268 95 0 269 94 46 270 95 46 271 96 46 272 24 0 273 97 0 274 22 0 275 22 47 276 97 47 277 98 47 278 22 0 279 98 0 280 99 0 281 99 48 282 98 48 283 100 48 284 99 49 285 100 49 286 101 49 287 101 0 288 100 0 289 29 0 290 101 0 291 29 0 292 102 0 293 102 0 294 29 0 295 28 0 296 18 50 297 103 50 298 16 50 299 16 51 300 103 51 301 104 51 302 16 52 303 104 52 304 32 52 305 32 0 306 104 0 307 105 0 308 32 53 309 105 53 310 33 53 311 27 0 312 106 0 313 25 0 314 25 54 315 106 54 316 107 54 317 25 0 318 107 0 319 108 0 320 108 55 321 107 55 322 109 55 323 108 0 324 109 0 325 110 0 326 110 56 327 109 56 328 111 56 329 110 57 330 111 57 331 112 57 332 112 0 333 111 0 334 10 0 335 112 0 336 10 0 337 113 0 338 113 0 339 10 0 340 13 0 341 96 0 342 114 0 343 94 0 344 94 58 345 114 58 346 115 58 347 94 59 348 115 59 349 116 59 350 116 60 351 115 60 352 117 60 353 116 0 354 117 0 355 118 0 356 118 0 357 117 0 358 119 0 359 119 61 360 117 61 361 120 61 362 119 62 363 120 62 364 121 62 365 40 0 366 39 0 367 122 0 368 122 0 369 39 0 370 123 0 371 122 0 372 123 0 373 124 0 374 124 0 375 123 0 376 125 0 377 124 0 378 125 0 379 126 0 380 126 63 381 125 63 382 127 63 383 126 0 384 127 0 385 128 0 386 128 64 387 127 64 388 129 64 389 128 0 390 129 0 391 130 0 392 130 65 393 129 65 394 131 65 395 130 66 396 131 66 397 132 66 398 132 67 399 131 67 400 133 67 401 132 0 402 133 0 403 134 0 404 134 68 405 133 68 406 135 68 407 134 0 408 135 0 409 136 0 410 136 69 411 135 69 412 137 69 413 136 70 414 137 70 415 138 70 416 138 71 417 137 71 418 139 71 419 138 0 420 139 0 421 140 0 422 140 72 423 139 72 424 141 72 425 140 0 426 141 0 427 142 0 428 142 73 429 141 73 430 143 73 431 142 0 432 143 0 433 144 0 434 144 74 435 143 74 436 145 74 437 1657 0 438 1633 0 439 146 0 440 145 75 441 1620 75 442 1660 75 443 146 76 444 147 76 445 148 76 446 148 77 447 147 77 448 149 77 449 148 0 450 149 0 451 150 0 452 150 78 453 149 78 454 151 78 455 150 0 456 151 0 457 152 0 458 152 79 459 151 79 460 153 79 461 152 0 462 153 0 463 154 0 464 154 80 465 153 80 466 155 80 467 154 0 468 155 0 469 156 0 470 156 81 471 155 81 472 157 81 473 156 0 474 157 0 475 158 0 476 158 82 477 157 82 478 159 82 479 158 83 480 159 83 481 160 83 482 160 0 483 159 0 484 161 0 485 160 84 486 161 84 487 162 84 488 162 0 489 161 0 490 163 0 491 162 0 492 163 0 493 164 0 494 164 85 495 163 85 496 165 85 497 164 0 498 165 0 499 166 0 500 166 0 501 165 0 502 167 0 503 166 0 504 167 0 505 120 0 506 120 0 507 167 0 508 168 0 509 120 0 510 168 0 511 121 0 512 1658 1684 9624 1618 1684 9625 147 1684 9626 1659 0 9627 1619 0 9628 144 0 9629 146 1690 9828 1609 1690 9829 1653 1690 9830 1626 1691 9831 1665 1691 9832 146 1691 9833 146 1690 9834 1653 1690 9835 1626 1690 9836 1669 0 9837 1610 0 9838 146 0 9839 1617 1692 9840 1657 1692 9841 146 1692 9842 1633 0 9843 1669 0 9844 146 0 9845 146 0 9846 1665 0 9847 1617 0 9848 1672 1693 9849 1613 1693 9850 145 1693 9851 145 1694 9852 1611 1694 9853 1656 1694 9854 1629 1695 9855 1668 1695 9856 145 1695 9857 145 0 9858 1656 0 9859 1629 0 9860 1636 0 9861 1672 0 9862 145 0 9863 1668 0 9864 1620 0 9865 145 0 9866 1660 0 9867 1636 0 9868 145 0 9869 147 1700 9903 146 1700 9904 1610 1700 9905 1670 0 9906 1634 0 9907 147 0 9908 147 1701 9909 1610 1701 9910 1670 1701 9911 1654 1702 9912 1608 1702 9913 147 1702 9914 1618 0 9915 1666 0 9916 147 0 9917 1627 0 9918 1654 0 9919 147 0 9920 147 0 9921 1634 0 9922 1658 0 9923 1666 1703 9924 1627 1703 9925 147 1703 9926 1612 1704 9927 144 1704 9928 1655 1704 9929 145 1705 9930 1613 1705 9931 144 1705 9932 1635 1706 9933 1659 1706 9934 144 1706 9935 1613 1707 9936 1671 1707 9937 144 1707 9938 1655 0 9939 144 0 9940 1628 0 9941 1619 0 9942 1667 0 9943 144 0 9944 1628 1704 9945 144 1704 9946 1667 1704 9947 1671 1706 9948 1635 1706 9949 144 1706 9950

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 2 0 3 1 0 4 3 0 5 2 0 6 3 0 7 4 0 8 4 0 9 3 0 10 5 0 11 4 0 12 5 0 13 6 0 14 6 0 15 5 0 16 7 0 17 6 0 18 7 0 19 0 0 20 0 0 21 7 0 22 1 0 23 169 0 513 170 0 514 171 0 515 172 0 516 173 0 517 174 0 518 175 0 519 176 0 520 177 0 521 178 0 522 179 0 523 180 0 524 180 0 525 179 0 526 181 0 527 182 0 528 183 0 529 184 0 530 174 0 531 173 0 532 185 0 533 186 0 534 187 0 535 188 0 536 188 0 537 187 0 538 189 0 539 188 86 540 189 86 541 190 86 542 191 0 543 192 0 544 193 0 545 193 87 546 192 87 547 194 87 548 193 88 549 194 88 550 195 88 551 195 0 552 196 0 553 193 0 554 193 89 555 196 89 556 197 89 557 193 0 558 197 0 559 188 0 560 188 90 561 197 90 562 198 90 563 188 91 564 198 91 565 186 91 566 199 0 567 200 0 568 183 0 569 191 92 570 201 92 571 202 92 572 202 0 573 203 0 574 191 0 575 191 93 576 203 93 577 204 93 578 191 94 579 204 94 580 205 94 581 182 95 582 206 95 583 207 95 584 207 0 585 208 0 586 182 0 587 182 96 588 208 96 589 209 96 590 182 97 591 209 97 592 210 97 593 210 0 594 211 0 595 182 0 596 182 98 597 211 98 598 212 98 599 182 0 600 212 0 601 183 0 602 183 99 603 212 99 604 213 99 605 183 100 606 213 100 607 199 100 608 214 0 609 215 0 610 191 0 611 191 101 612 215 101 613 216 101 614 191 102 615 216 102 616 217 102 617 217 0 618 218 0 619 191 0 620 191 103 621 218 103 622 219 103 623 191 104 624 219 104 625 201 104 626 200 0 627 220 0 628 183 0 629 183 105 630 220 105 631 221 105 632 183 0 633 221 0 634 191 0 635 191 106 636 221 106 637 222 106 638 191 107 639 222 107 640 214 107 641 191 0 642 193 0 643 183 0 644 183 0 645 193 0 646 223 0 647 183 0 648 223 0 649 184 0 650 224 0 651 225 0 652 193 0 653 193 108 654 225 108 655 226 108 656 193 109 657 226 109 658 223 109 659 227 0 660 228 0 661 229 0 662 229 110 663 228 110 664 230 110 665 227 111 666 231 111 667 228 111 668 228 112 669 231 112 670 232 112 671 228 0 672 232 0 673 193 0 674 193 113 675 232 113 676 233 113 677 193 114 678 233 114 679 224 114 680 234 0 681 235 0 682 228 0 683 228 0 684 235 0 685 236 0 686 228 0 687 236 0 688 230 0 689 237 115 690 238 115 691 239 115 692 240 0 693 241 0 694 242 0 695 239 0 696 243 0 697 237 0 698 237 116 699 243 116 700 244 116 701 237 117 702 244 117 703 245 117 704 245 118 705 246 118 706 237 118 707 237 119 708 246 119 709 247 119 710 237 120 711 247 120 712 248 120 713 241 121 714 249 121 715 242 121 716 242 122 717 249 122 718 250 122 719 242 123 720 250 123 721 251 123 722 248 124 723 252 124 724 237 124 725 237 125 726 252 125 727 253 125 728 237 126 729 253 126 730 254 126 731 255 0 732 256 0 733 257 0 734 254 0 735 258 0 736 237 0 737 237 127 738 258 127 739 259 127 740 237 128 741 259 128 742 260 128 743 261 0 744 262 0 745 257 0 746 257 129 747 262 129 748 263 129 749 257 130 750 263 130 751 264 130 752 264 0 753 265 0 754 257 0 755 257 131 756 265 131 757 266 131 758 257 132 759 266 132 760 267 132 761 234 133 762 268 133 763 269 133 764 256 0 765 270 0 766 257 0 767 257 134 768 270 134 769 271 134 770 257 135 771 271 135 772 261 135 773 234 136 774 269 136 775 272 136 776 272 137 777 269 137 778 273 137 779 272 0 780 273 0 781 242 0 782 242 138 783 273 138 784 274 138 785 242 139 786 274 139 787 240 139 788 275 140 789 276 140 790 277 140 791 279 0 792 178 0 793 277 0 794 277 0 795 178 0 796 180 0 797 277 0 798 180 0 799 275 0 800 275 0 801 180 0 802 181 0 803 275 141 804 181 141 805 280 141 806 281 0 807 282 0 808 283 0 809 283 0 810 284 0 811 281 0 812 281 142 813 284 142 814 285 142 815 281 143 816 285 143 817 286 143 818 287 0 819 288 0 820 177 0 821 289 0 822 290 0 823 278 0 824 278 144 825 290 144 826 291 144 827 278 145 828 291 145 829 292 145 830 292 0 831 293 0 832 278 0 833 278 146 834 293 146 835 294 146 836 278 147 837 294 147 838 295 147 839 295 0 840 296 0 841 278 0 842 278 148 843 296 148 844 297 148 845 278 149 846 297 149 847 298 149 848 286 0 849 299 0 850 281 0 851 281 150 852 299 150 853 300 150 854 281 151 855 300 151 856 301 151 857 298 0 858 302 0 859 278 0 860 278 152 861 302 152 862 303 152 863 278 153 864 303 153 865 304 153 866 304 0 867 305 0 868 278 0 869 278 154 870 305 154 871 282 154 872 278 0 873 282 0 874 306 0 875 306 0 876 282 0 877 281 0 878 307 0 879 308 0 880 177 0 881 177 155 882 308 155 883 309 155 884 177 156 885 309 156 886 310 156 887 310 0 888 311 0 889 177 0 890 177 157 891 311 157 892 312 157 893 177 0 894 312 0 895 278 0 896 278 158 897 312 158 898 313 158 899 278 159 900 313 159 901 289 159 902 288 0 903 314 0 904 177 0 905 177 160 906 314 160 907 315 160 908 177 161 909 315 161 910 307 161 911 301 0 912 316 0 913 281 0 914 281 162 915 316 162 916 317 162 917 281 163 918 317 163 919 176 163 920 317 0 921 318 0 922 176 0 923 176 164 924 318 164 925 319 164 926 176 0 927 319 0 928 177 0 929 177 165 930 319 165 931 320 165 932 177 166 933 320 166 934 287 166 935 321 0 936 322 0 937 323 0 938 324 167 939 325 167 940 326 167 941 326 0 942 325 0 943 321 0 944 326 168 945 321 168 946 327 168 947 327 169 948 321 169 949 323 169 950 324 0 951 328 0 952 325 0 953 325 170 954 328 170 955 329 170 956 325 0 957 329 0 958 330 0 959 331 0 960 332 0 961 333 0 962 332 0 963 334 0 964 333 0 965 333 171 966 334 171 967 335 171 968 333 0 969 335 0 970 321 0 971 321 172 972 335 172 973 336 172 974 321 173 975 336 173 976 322 173 977 337 174 978 338 174 979 339 174 980 340 175 981 341 175 982 342 175 983 342 176 984 341 176 985 343 176 986 342 177 987 343 177 988 344 177 989 344 178 990 345 178 991 342 178 992 342 179 993 345 179 994 346 179 995 342 180 996 346 180 997 347 180 998 348 0 999 349 0 1000 350 0 1001 350 181 1002 349 181 1003 351 181 1004 350 0 1005 351 0 1006 352 0 1007 352 182 1008 351 182 1009 353 182 1010 352 183 1011 353 183 1012 354 183 1013 355 0 1014 352 0 1015 356 0 1016 356 0 1017 352 0 1018 357 0 1019 358 0 1020 359 0 1021 350 0 1022 360 0 1023 361 0 1024 362 0 1025 362 184 1026 361 184 1027 363 184 1028 362 0 1029 363 0 1030 364 0 1031 347 0 1032 348 0 1033 342 0 1034 342 0 1035 348 0 1036 350 0 1037 342 0 1038 350 0 1039 365 0 1040 365 185 1041 350 185 1042 359 185 1043 354 0 1044 366 0 1045 352 0 1046 352 186 1047 366 186 1048 367 186 1049 352 187 1050 367 187 1051 357 187 1052 357 0 1053 367 0 1054 368 0 1055 357 0 1056 368 0 1057 369 0 1058 358 0 1059 350 0 1060 362 0 1061 362 188 1062 350 188 1063 370 188 1064 362 189 1065 370 189 1066 360 189 1067 371 0 1068 368 0 1069 372 0 1070 372 0 1071 368 0 1072 373 0 1073 355 0 1074 374 0 1075 352 0 1076 352 190 1077 374 190 1078 375 190 1079 352 191 1080 375 191 1081 376 191 1082 337 192 1083 377 192 1084 378 192 1085 379 0 1086 338 0 1087 380 0 1088 380 193 1089 338 193 1090 381 193 1091 382 0 1092 383 0 1093 384 0 1094 384 0 1095 383 0 1096 385 0 1097 373 194 1098 368 194 1099 386 194 1100 386 0 1101 368 0 1102 387 0 1103 386 0 1104 387 0 1105 388 0 1106 371 0 1107 389 0 1108 368 0 1109 368 195 1110 389 195 1111 390 195 1112 368 196 1113 390 196 1114 369 196 1115 378 0 1116 391 0 1117 337 0 1118 337 197 1119 391 197 1120 392 197 1121 337 198 1122 392 198 1123 393 198 1124 393 199 1125 394 199 1126 337 199 1127 337 200 1128 394 200 1129 395 200 1130 337 201 1131 395 201 1132 396 201 1133 396 0 1134 397 0 1135 337 0 1136 337 202 1137 397 202 1138 398 202 1139 337 203 1140 398 203 1141 338 203 1142 338 204 1143 398 204 1144 399 204 1145 338 205 1146 399 205 1147 400 205 1148 379 0 1149 401 0 1150 338 0 1151 338 206 1152 401 206 1153 402 206 1154 338 207 1155 402 207 1156 383 207 1157 383 208 1158 402 208 1159 403 208 1160 383 0 1161 403 0 1162 385 0 1163 376 0 1164 404 0 1165 352 0 1166 352 209 1167 404 209 1168 405 209 1169 352 210 1170 405 210 1171 406 210 1172 407 0 1173 400 0 1174 408 0 1175 408 211 1176 400 211 1177 409 211 1178 408 212 1179 409 212 1180 410 212 1181 407 0 1182 411 0 1183 400 0 1184 400 0 1185 411 0 1186 412 0 1187 400 0 1188 412 0 1189 338 0 1190 338 213 1191 412 213 1192 413 213 1193 338 214 1194 413 214 1195 381 214 1196 410 215 1197 414 215 1198 408 215 1199 408 0 1200 414 0 1201 415 0 1202 408 216 1203 415 216 1204 416 216 1205 406 0 1206 417 0 1207 337 0 1208 337 217 1209 417 217 1210 418 217 1211 337 218 1212 418 218 1213 377 218 1214 388 0 1215 387 0 1216 419 0 1217 419 0 1218 387 0 1219 420 0 1220 419 0 1221 420 0 1222 421 0 1223 421 219 1224 420 219 1225 422 219 1226 421 0 1227 422 0 1228 416 0 1229 416 0 1230 422 0 1231 423 0 1232 416 220 1233 423 220 1234 408 220 1235 424 221 1236 425 221 1237 426 221 1238 427 0 1239 428 0 1240 429 0 1241 429 0 1242 428 0 1243 430 0 1244 337 222 1245 431 222 1246 432 222 1247 406 0 1248 337 0 1249 352 0 1250 352 223 1251 337 223 1252 433 223 1253 352 224 1254 433 224 1255 434 224 1256 434 225 1257 435 225 1258 352 225 1259 352 226 1260 435 226 1261 436 226 1262 352 227 1263 436 227 1264 437 227 1265 438 228 1266 439 228 1267 440 228 1268 424 0 1269 426 0 1270 441 0 1271 441 229 1272 426 229 1273 442 229 1274 441 230 1275 442 230 1276 443 230 1277 425 0 1278 424 0 1279 428 0 1280 428 231 1281 424 231 1282 444 231 1283 428 232 1284 444 232 1285 430 232 1286 445 0 1287 446 0 1288 447 0 1289 447 233 1290 446 233 1291 448 233 1292 447 234 1293 449 234 1294 450 234 1295 432 0 1296 451 0 1297 337 0 1298 337 235 1299 451 235 1300 452 235 1301 337 236 1302 452 236 1303 453 236 1304 437 0 1305 454 0 1306 352 0 1307 352 237 1308 454 237 1309 455 237 1310 352 0 1311 455 0 1312 456 0 1313 456 238 1314 455 238 1315 438 238 1316 456 0 1317 438 0 1318 457 0 1319 457 239 1320 438 239 1321 440 239 1322 443 0 1323 458 0 1324 441 0 1325 441 240 1326 458 240 1327 459 240 1328 441 0 1329 459 0 1330 439 0 1331 439 241 1332 459 241 1333 460 241 1334 439 242 1335 460 242 1336 440 242 1337 427 243 1338 461 243 1339 428 243 1340 428 244 1341 461 244 1342 462 244 1343 428 245 1344 462 245 1345 447 245 1346 447 246 1347 462 246 1348 463 246 1349 447 247 1350 463 247 1351 445 247 1352 448 0 1353 464 0 1354 447 0 1355 447 248 1356 464 248 1357 465 248 1358 447 249 1359 465 249 1360 449 249 1361 450 0 1362 466 0 1363 447 0 1364 447 250 1365 466 250 1366 467 250 1367 447 0 1368 467 0 1369 337 0 1370 337 251 1371 467 251 1372 468 251 1373 337 252 1374 468 252 1375 431 252 1376 469 0 1377 470 0 1378 337 0 1379 337 253 1380 470 253 1381 471 253 1382 337 254 1383 471 254 1384 433 254 1385 453 0 1386 472 0 1387 337 0 1388 337 255 1389 472 255 1390 473 255 1391 337 256 1392 473 256 1393 469 256 1394 474 0 1395 475 0 1396 476 0 1397 476 0 1398 475 0 1399 477 0 1400 479 0 1404 480 0 1405 173 0 1406 172 258 1407 481 258 1408 482 258 1409 482 0 1410 483 0 1411 172 0 1412 172 259 1413 483 259 1414 484 259 1415 172 260 1416 484 260 1417 485 260 1418 479 0 1419 173 0 1420 486 0 1421 428 261 1422 487 261 1423 488 261 1424 488 0 1425 489 0 1426 428 0 1427 428 262 1428 489 262 1429 490 262 1430 428 263 1431 490 263 1432 491 263 1433 485 0 1434 492 0 1435 172 0 1436 172 264 1437 492 264 1438 493 264 1439 172 0 1440 493 0 1441 173 0 1442 173 265 1443 493 265 1444 494 265 1445 173 266 1446 494 266 1447 486 266 1448 480 0 1449 495 0 1450 173 0 1451 173 267 1452 495 267 1453 496 267 1454 173 0 1455 496 0 1456 487 0 1457 487 268 1458 496 268 1459 497 268 1460 497 0 1461 498 0 1462 487 0 1463 487 269 1464 498 269 1465 499 269 1466 487 270 1467 499 270 1468 500 270 1469 500 0 1470 501 0 1471 487 0 1472 487 271 1473 501 271 1474 502 271 1475 487 272 1476 502 272 1477 503 272 1478 503 0 1479 504 0 1480 487 0 1481 487 273 1482 504 273 1483 505 273 1484 487 274 1485 505 274 1486 488 274 1487 506 275 1488 507 275 1489 476 275 1490 476 276 1491 507 276 1492 508 276 1493 476 277 1494 508 277 1495 474 277 1496 509 278 1497 510 278 1498 428 278 1499 428 279 1500 510 279 1501 511 279 1502 491 0 1503 512 0 1504 428 0 1505 428 280 1506 512 280 1507 513 280 1508 428 281 1509 513 281 1510 509 281 1511 509 282 1512 513 282 1513 507 282 1514 509 0 1515 507 0 1516 514 0 1517 514 0 1518 507 0 1519 506 0 1520 511 0 1521 515 0 1522 428 0 1523 428 0 1524 515 0 1525 516 0 1526 428 0 1527 516 0 1528 425 0 1529 190 283 1530 185 283 1531 188 283 1532 188 284 1533 185 284 1534 173 284 1535 188 0 1536 173 0 1537 517 0 1538 517 0 1539 173 0 1540 487 0 1541 169 0 1542 518 0 1543 519 0 1544 519 0 1545 518 0 1546 520 0 1547 519 0 1548 520 0 1549 228 0 1550 228 0 1551 520 0 1552 257 0 1553 228 0 1554 257 0 1555 234 0 1556 234 0 1557 257 0 1558 267 0 1559 234 285 1560 267 285 1561 268 285 1562 521 0 1563 522 0 1564 520 0 1565 520 286 1566 522 286 1567 523 286 1568 524 0 1569 518 0 1570 525 0 1571 525 0 1572 518 0 1573 526 0 1574 527 0 1575 528 0 1576 520 0 1577 528 0 1578 529 0 1579 520 0 1580 520 287 1581 529 287 1582 530 287 1583 520 288 1584 530 288 1585 521 288 1586 524 0 1587 531 0 1588 518 0 1589 518 289 1590 531 289 1591 532 289 1592 518 290 1593 532 290 1594 533 290 1595 518 291 1596 534 291 1597 535 291 1598 523 0 1599 536 0 1600 520 0 1601 520 292 1602 536 292 1603 537 292 1604 520 293 1605 537 293 1606 538 293 1607 260 0 1608 255 0 1609 237 0 1610 237 294 1611 255 294 1612 257 294 1613 237 295 1614 257 295 1615 276 295 1616 276 0 1617 257 0 1618 520 0 1619 276 0 1620 520 0 1621 277 0 1622 277 296 1623 520 296 1624 538 296 1625 538 0 1626 539 0 1627 277 0 1628 277 297 1629 539 297 1630 540 297 1631 277 298 1632 540 298 1633 541 298 1634 541 0 1635 542 0 1636 277 0 1637 277 299 1638 542 299 1639 543 299 1640 277 300 1641 543 300 1642 544 300 1643 533 301 1644 545 301 1645 518 301 1646 518 302 1647 545 302 1648 546 302 1649 518 303 1650 546 303 1651 534 303 1652 535 0 1653 547 0 1654 518 0 1655 518 304 1656 547 304 1657 548 304 1658 518 0 1659 548 0 1660 520 0 1661 520 305 1662 548 305 1663 549 305 1664 520 306 1665 549 306 1666 527 306 1667 550 307 1668 551 307 1669 526 307 1670 526 308 1671 551 308 1672 552 308 1673 526 309 1674 552 309 1675 553 309 1676 544 0 1677 554 0 1678 277 0 1679 277 310 1680 554 310 1681 555 310 1682 277 0 1683 555 0 1684 526 0 1685 526 311 1686 555 311 1687 556 311 1688 526 312 1689 556 312 1690 550 312 1691 553 0 1692 557 0 1693 526 0 1694 526 313 1695 557 313 1696 558 313 1697 526 314 1698 558 314 1699 525 314 1700 559 0 1701 560 0 1702 279 0 1703 526 315 1704 561 315 1705 562 315 1706 563 316 1707 564 316 1708 277 316 1709 277 317 1710 564 317 1711 565 317 1712 277 318 1713 565 318 1714 279 318 1715 279 319 1716 565 319 1717 566 319 1718 279 320 1719 566 320 1720 559 320 1721 567 0 1722 568 0 1723 561 0 1724 561 321 1725 568 321 1726 569 321 1727 561 322 1728 569 322 1729 562 322 1730 562 323 1731 570 323 1732 526 323 1733 526 324 1734 570 324 1735 571 324 1736 526 325 1737 571 325 1738 572 325 1739 277 326 1740 573 326 1741 574 326 1742 560 0 1743 575 0 1744 279 0 1745 279 327 1746 575 327 1747 576 327 1748 279 328 1749 576 328 1750 577 328 1751 572 0 1752 578 0 1753 526 0 1754 526 329 1755 578 329 1756 579 329 1757 526 330 1758 579 330 1759 580 330 1760 580 0 1761 581 0 1762 526 0 1763 526 331 1764 581 331 1765 582 331 1766 526 0 1767 582 0 1768 277 0 1769 277 332 1770 582 332 1771 583 332 1772 277 333 1773 583 333 1774 573 333 1775 574 334 1776 584 334 1777 277 334 1778 277 335 1779 584 335 1780 585 335 1781 277 336 1782 585 336 1783 563 336 1784 586 0 1785 587 0 1786 561 0 1787 561 337 1788 587 337 1789 588 337 1790 561 338 1791 588 338 1792 567 338 1793 577 0 1794 589 0 1795 279 0 1796 279 339 1797 589 339 1798 590 339 1799 279 340 1800 590 340 1801 591 340 1802 591 0 1803 592 0 1804 279 0 1805 279 341 1806 592 341 1807 593 341 1808 279 0 1809 593 0 1810 561 0 1811 561 342 1812 593 342 1813 594 342 1814 561 343 1815 594 343 1816 595 343 1817 595 0 1818 596 0 1819 561 0 1820 561 344 1821 596 344 1822 597 344 1823 561 345 1824 597 345 1825 586 345 1826 169 0 1827 171 0 1828 518 0 1829 518 0 1830 171 0 1831 598 0 1832 518 0 1833 598 0 1834 526 0 1835 526 0 1836 598 0 1837 599 0 1838 526 0 1839 599 0 1840 561 0 1841 339 0 1842 331 0 1843 337 0 1844 337 0 1845 331 0 1846 333 0 1847 337 0 1848 333 0 1849 447 0 1850 447 0 1851 333 0 1852 600 0 1853 599 0 1854 601 0 1855 561 0 1856 561 0 1857 601 0 1858 602 0 1859 561 0 1860 602 0 1861 279 0 1862 279 0 1863 602 0 1864 603 0 1865 279 0 1866 603 0 1867 177 0 1868 177 0 1869 603 0 1870 325 0 1871 177 0 1872 325 0 1873 175 0 1874 175 346 1875 325 346 1876 330 346 1877 1257 0 7239 1258 0 7240 1177 0 7241 1180 1294 7242 1233 1294 7243 1234 1294 7244 1242 0 7245 1243 0 7246 1179 0 7247 1176 1295 7248 1265 1295 7249 1266 1295 7250 1242 0 7251 1179 0 7252 1241 0 7253 1247 1296 7254 1248 1296 7255 1178 1296 7256 1178 1297 7257 1248 1297 7258 1249 1297 7259 1178 1298 7260 1249 1298 7261 1250 1298 7262 1253 0 7263 1254 0 7264 1178 0 7265 1178 1299 7266 1254 1299 7267 1255 1299 7268 1178 1300 7269 1255 1300 7270 1177 1300 7271 1177 1301 7272 1255 1301 7273 1256 1301 7274 1177 1302 7275 1256 1302 7276 1257 1302 7277 1266 0 7278 1267 0 7279 1176 0 7280 1176 1303 7281 1267 1303 7282 1231 1303 7283 1176 1304 7284 1231 1304 7285 1180 1304 7286 1180 1305 7287 1231 1305 7288 1232 1305 7289 1180 1306 7290 1232 1306 7291 1233 1306 7292 1187 1307 7293 1186 1307 7294 1238 1307 7295 1250 0 7296 1251 0 7297 1178 0 7298 1178 0 7299 1251 0 7300 1252 0 7301 1178 1308 7302 1252 1308 7303 1253 1308 7304 1262 0 7305 1263 0 7306 1176 0 7307 1176 1309 7308 1263 1309 7309 1264 1309 7310 1176 1310 7311 1264 1310 7312 1265 1310 7313 1191 0 7314 1239 0 7315 1179 0 7316 1179 1311 7317 1239 1311 7318 1240 1311 7319 1179 1312 7320 1240 1312 7321 1241 1312 7322 1191 0 7323 1190 0 7324 1239 0 7325 1239 1313 7326 1190 1313 7327 1189 1313 7328 1239 0 7329 1189 0 7330 1238 0 7331 1238 1314 7332 1189 1314 7333 1188 1314 7334 1238 1315 7335 1188 1315 7336 1187 1315 7337 1243 1316 7338 1244 1316 7339 1179 1316 7340 1179 1317 7341 1244 1317 7342 1245 1317 7343 1179 0 7344 1245 0 7345 1178 0 7346 1178 1318 7347 1245 1318 7348 1246 1318 7349 1178 1319 7350 1246 1319 7351 1247 1319 7352 1258 1320 7353 1259 1320 7354 1177 1320 7355 1177 1321 7356 1259 1321 7357 1260 1321 7358 1177 1322 7359 1260 1322 7360 1176 1322 7361 1176 1323 7362 1260 1323 7363 1261 1323 7364 1176 1324 7365 1261 1324 7366 1262 1324 7367 1234 0 7368 1235 0 7369 1180 0 7370 1180 1325 7371 1235 1325 7372 1236 1325 7373 1180 1326 7374 1236 1326 7375 1181 1326 7376 1181 1327 7377 1236 1327 7378 1237 1327 7379 1181 0 7380 1237 0 7381 1182 0 7382 1186 0 7383 1185 0 7384 1238 0 7385 1238 1328 7386 1185 1328 7387 1184 1328 7388 1238 0 7389 1184 0 7390 1237 0 7391 1237 1329 7392 1184 1329 7393 1183 1329 7394 1237 1330 7395 1183 1330 7396 1182 1330 7397 1565 0 9177 1529 0 9178 1401 0 9179 1401 1606 9180 1529 1606 9181 1530 1606 9182 1401 1607 9183 1530 1607 9184 1390 1607 9185 1530 1608 9186 1531 1608 9187 1390 1608 9188 1390 1609 9189 1531 1609 9190 1532 1609 9191 1390 1610 9192 1532 1610 9193 1533 1610 9194 1396 0 9195 1538 0 9196 1397 0 9197 1397 1611 9198 1538 1611 9199 1539 1611 9200 1599 0 9201 1600 0 9202 1403 0 9203 1403 1612 9204 1600 1612 9205 1601 1612 9206 1403 1613 9207 1601 1613 9208 1602 1613 9209 1533 1614 9210 1534 1614 9211 1390 1614 9212 1390 1615 9213 1534 1615 9214 1535 1615 9215 1390 0 9216 1535 0 9217 1391 0 9218 1391 1616 9219 1535 1616 9220 1536 1616 9221 1391 0 9222 1536 0 9223 1392 0 9224 1392 1617 9225 1536 1617 9226 1537 1617 9227 1396 0 9228 1395 0 9229 1538 0 9230 1538 1618 9231 1395 1618 9232 1394 1618 9233 1538 0 9234 1394 0 9235 1537 0 9236 1537 1619 9237 1394 1619 9238 1393 1619 9239 1537 1620 9240 1393 1620 9241 1392 1620 9242 1541 0 9243 1400 0 9244 1540 0 9245 1540 1621 9246 1400 1621 9247 1399 1621 9248 1540 0 9249 1399 0 9250 1539 0 9251 1539 1622 9252 1399 1622 9253 1398 1622 9254 1539 1623 9255 1398 1623 9256 1397 1623 9257 1568 0 9258 1569 0 9259 1402 0 9260 1402 1624 9261 1569 1624 9262 1570 1624 9263 1402 1625 9264 1570 1625 9265 1571 1625 9266 1412 1626 9267 1589 1626 9268 1590 1626 9269 1602 0 9270 1603 0 9271 1403 0 9272 1403 1627 9273 1603 1627 9274 1566 1627 9275 1403 0 9276 1566 0 9277 1402 0 9278 1402 1628 9279 1566 1628 9280 1567 1628 9281 1402 1629 9282 1567 1629 9283 1568 1629 9284 1421 0 9285 1420 0 9286 1588 0 9287 1588 1630 9288 1420 1630 9289 1419 1630 9290 1590 0 9291 1591 0 9292 1412 0 9293 1412 1631 9294 1591 1631 9295 1592 1631 9296 1412 0 9297 1592 0 9298 1404 0 9299 1404 1632 9300 1592 1632 9301 1593 1632 9302 1404 1633 9303 1593 1633 9304 1594 1633 9305 1544 0 9306 1446 0 9307 1543 0 9308 1543 0 9309 1446 0 9310 1400 0 9311 1543 0 9312 1400 0 9313 1542 0 9314 1542 0 9315 1400 0 9316 1541 0 9317 1544 0 9318 1545 0 9319 1446 0 9320 1446 1634 9321 1545 1634 9322 1546 1634 9323 1446 1635 9324 1546 1635 9325 1547 1635 9326 1441 0 9327 1555 0 9328 1442 0 9329 1442 0 9330 1555 0 9331 1443 0 9332 1441 0 9333 1440 0 9334 1555 0 9335 1555 1636 9336 1440 1636 9337 1439 1636 9338 1555 1637 9339 1439 1637 9340 1438 1637 9341 1574 0 9342 1401 0 9343 1573 0 9344 1573 1638 9345 1401 1638 9346 1402 1638 9347 1573 0 9348 1402 0 9349 1572 0 9350 1572 0 9351 1402 0 9352 1571 0 9353 1557 0 9354 1424 0 9355 1556 0 9356 1556 0 9357 1424 0 9358 1434 0 9359 1556 1639 9360 1434 1639 9361 1555 1639 9362 1555 1640 9363 1434 1640 9364 1444 1640 9365 1555 1641 9366 1444 1641 9367 1443 1641 9368 1589 0 9369 1412 0 9370 1588 0 9371 1588 1642 9372 1412 1642 9373 1422 1642 9374 1588 1643 9375 1422 1643 9376 1421 1643 9377 1552 0 9378 1435 0 9379 1551 0 9380 1551 1644 9381 1435 1644 9382 1445 1644 9383 1551 0 9384 1445 0 9385 1550 0 9386 1550 1645 9387 1445 1645 9388 1450 1645 9389 1550 1646 9390 1450 1646 9391 1449 1646 9392 1547 0 9393 1548 0 9394 1446 0 9395 1446 1647 9396 1548 1647 9397 1549 1647 9398 1446 1648 9399 1549 1648 9400 1447 1648 9401 1447 0 9402 1549 0 9403 1550 0 9404 1447 0 9405 1550 0 9406 1448 0 9407 1448 0 9408 1550 0 9409 1449 0 9410 1552 1649 9411 1553 1649 9412 1435 1649 9413 1435 1650 9414 1553 1650 9415 1554 1650 9416 1435 0 9417 1554 0 9418 1436 0 9419 1436 1651 9420 1554 1651 9421 1555 1651 9422 1436 1652 9423 1555 1652 9424 1437 1652 9425 1437 0 9426 1555 0 9427 1438 0 9428 1562 0 9429 1563 0 9430 1401 0 9431 1401 1653 9432 1563 1653 9433 1564 1653 9434 1401 1654 9435 1564 1654 9436 1565 1654 9437 1577 0 9438 1578 0 9439 1423 0 9440 1423 1655 9441 1578 1655 9442 1579 1655 9443 1423 1656 9444 1579 1656 9445 1580 1656 9446 1580 0 9447 1581 0 9448 1423 0 9449 1423 1657 9450 1581 1657 9451 1582 1657 9452 1423 1658 9453 1582 1658 9454 1413 1658 9455 1413 0 9456 1582 0 9457 1583 0 9458 1413 1659 9459 1583 1659 9460 1584 1659 9461 1584 0 9462 1585 0 9463 1413 0 9464 1413 1660 9465 1585 1660 9466 1586 1660 9467 1413 1661 9468 1586 1661 9469 1414 1661 9470 1414 1662 9471 1586 1662 9472 1587 1662 9473 1414 0 9474 1587 0 9475 1415 0 9476 1419 0 9477 1418 0 9478 1588 0 9479 1588 1663 9480 1418 1663 9481 1417 1663 9482 1588 0 9483 1417 0 9484 1587 0 9485 1587 0 9486 1417 0 9487 1416 0 9488 1587 0 9489 1416 0 9490 1415 0 9491 1594 1664 9492 1595 1664 9493 1404 1664 9494 1404 1665 9495 1595 1665 9496 1596 1665 9497 1404 0 9498 1596 0 9499 1405 0 9500 1405 1666 9501 1596 1666 9502 1597 1666 9503 1405 0 9504 1597 0 9505 1406 0 9506 1406 0 9507 1597 0 9508 1407 0 9509 1407 1667 9510 1597 1667 9511 1598 1667 9512 1407 0 9513 1598 0 9514 1408 0 9515 1403 0 9516 1411 0 9517 1599 0 9518 1599 1668 9519 1411 1668 9520 1410 1668 9521 1599 1669 9522 1410 1669 9523 1598 1669 9524 1598 1670 9525 1410 1670 9526 1409 1670 9527 1598 1671 9528 1409 1671 9529 1408 1671 9530 1428 0 9531 1427 0 9532 1560 0 9533 1574 0 9534 1575 0 9535 1401 0 9536 1401 1672 9537 1575 1672 9538 1576 1672 9539 1401 1673 9540 1576 1673 9541 1577 1673 9542 1423 0 9543 1433 0 9544 1577 0 9545 1577 1674 9546 1433 1674 9547 1432 1674 9548 1577 1675 9549 1432 1675 9550 1401 1675 9551 1401 0 9552 1432 0 9553 1431 0 9554 1401 1676 9555 1431 1676 9556 1430 1676 9557 1562 0 9558 1401 0 9559 1561 0 9560 1561 1677 9561 1401 1677 9562 1430 1677 9563 1561 1678 9564 1430 1678 9565 1560 1678 9566 1560 1679 9567 1430 1679 9568 1429 1679 9569 1560 1680 9570 1429 1680 9571 1428 1680 9572 1557 0 9573 1558 0 9574 1424 0 9575 1424 1681 9576 1558 1681 9577 1559 1681 9578 1424 0 9579 1559 0 9580 1425 0 9581 1425 1682 9582 1559 1682 9583 1560 1682 9584 1425 0 9585 1560 0 9586 1426 0 9587 1426 0 9588 1560 0 9589 1427 0 9590 1604 489 9591 1605 489 9592 5 489 9593 5 489 9594 1605 489 9595 7 489 9596 1606 487 9597 1604 487 9598 3 487 9599 3 487 9600 1604 487 9601 5 487 9602 1607 486 9603 1606 486 9604 1 486 9605 1 486 9606 1606 486 9607 3 486 9608 1605 485 9609 1607 485 9610 7 485 9611 7 485 9612 1607 485 9613 1 485 9614 1604 1683 9615 1606 1683 9616 1605 1683 9617 1605 1683 9618 1606 1683 9619 1607 1683 9620 278 0 9621 279 0 9622 177 0 9623 278 1699 9900 178 1699 9901 279 1699 9902

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1676 1685 9633 1652 1685 9634 1644 1685 9635 1659 0 9645 1642 0 9646 1619 0 9647 1671 0 9651 1645 0 9652 1635 0 9653 1655 1686 9654 1631 1686 9655 1612 1686 9656 1663 0 9663 1624 0 9664 1615 0 9665 1688 0 9666 1627 0 9667 1666 0 9668 1664 0 9672 1641 0 9673 1622 0 9674 1652 0 9681 1657 0 9682 1691 0 9683 1620 0 9684 1690 0 9685 1640 0 9686 1689 0 9693 1614 0 9694 1661 0 9695 1684 0 9699 1638 0 9700 1674 0 9701 1621 0 9702 1688 0 9703 1639 0 9704 1687 0 9711 1608 0 9712 1654 0 9713 1686 0 9717 1634 0 9718 1670 0 9719 1616 0 9720 1686 0 9721 1625 0 9722 1675 0 9723 1647 0 9724 1643 0 9725 1685 0 9729 1618 0 9730 1658 0 9731 1613 0 9738 1684 0 9739 1632 0 9740 1667 0 9741 1646 0 9742 1628 0 9743 1683 0 9747 1621 0 9748 1662 0 9749 1647 0 9762 1653 0 9763 1681 0 9764 1646 0 9771 1663 0 9772 1679 0 9773 1645 0 9780 1664 0 9781 1677 0 9782 1632 0 9783 1676 0 9784 1678 0 9785 1642 0 9786 1675 0 9787 1680 0 9788 1641 1686 9789 1665 1686 9790 1682 1686 9791 1636 0 9792 1683 0 9793 1648 0 9794 1638 0 9798 1685 0 9799 1649 0 9800 1637 0 9804 1687 0 9805 1650 0 9806 1629 0 9810 1689 0 9811 1651 0 9812 1690 0 9813 1637 0 9814 1673 0 9815 1625 0 9816 1669 0 9817 1692 0 9818 1676 1708 9954 1692 1708 9955 1652 1708 9956 1659 0 9966 1677 0 9967 1642 0 9968 1671 0 9972 1678 0 9973 1645 0 9974 1655 1708 9975 1679 1708 9976 1631 1708 9977 1663 0 9984 1681 0 9985 1624 0 9986 1688 0 9987 1650 0 9988 1627 0 9989 1664 0 9993 1691 0 9994 1641 0 9995 1652 0 10002 1633 0 10003 1657 0 10004 1620 0 10005 1668 0 10006 1690 0 10007 1689 0 10014 1630 0 10015 1614 0 10016 1684 0 10020 1648 0 10021 1638 0 10022 1621 0 10023 1673 0 10024 1688 0 10025 1687 0 10032 1623 0 10033 1608 0 10034 1686 0 10038 1649 0 10039 1634 0 10040 1616 0 10041 1674 0 10042 1686 0 10043 1675 0 10044 1682 0 10045 1647 0 10046 1685 0 10050 1639 0 10051 1618 0 10052 1613 0 10059 1672 0 10060 1684 0 10061 1667 0 10062 1680 0 10063 1646 0 10064 1683 0 10068 1640 0 10069 1621 0 10070 1647 0 10083 1626 0 10084 1653 0 10085 1646 0 10092 1643 0 10093 1663 0 10094 1645 0 10101 1644 0 10102 1664 0 10103 1632 0 10104 1616 0 10105 1676 0 10106 1642 0 10107 1622 0 10108 1675 0 10109 1641 1709 10110 1617 1709 10111 1665 1709 10112 1636 0 10113 1660 0 10114 1683 0 10115 1638 0 10119 1662 0 10120 1685 0 10121 1637 0 10125 1661 0 10126 1687 0 10127 1629 0 10131 1656 0 10132 1689 0 10133 1690 0 10134 1651 0 10135 1637 0 10136 1625 0 10137 1610 0 10138 1669 0 10139

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

1692 0 9630 1633 0 9631 1652 0 9632 1680 0 9636 1643 0 9637 1646 0 9638 1678 0 9639 1644 0 9640 1645 0 9641 1660 0 9642 1640 0 9643 1683 0 9644 1677 0 9648 1622 0 9649 1642 0 9650 1682 0 9657 1626 0 9658 1647 0 9659 1662 0 9660 1639 0 9661 1685 0 9662 1673 0 9669 1650 0 9670 1688 0 9671 1616 1687 9675 1692 1687 9676 1676 1687 9677 1644 0 9678 1691 0 9679 1664 0 9680 1672 0 9687 1648 0 9688 1684 0 9689 1640 0 9690 1673 0 9691 1621 0 9692 1651 0 9696 1661 0 9697 1637 0 9698 1674 0 9705 1649 0 9706 1686 0 9707 1639 0 9708 1666 0 9709 1618 0 9710 1650 0 9714 1654 0 9715 1627 0 9716 1625 0 9726 1670 0 9727 1610 0 9728 1649 0 9732 1658 0 9733 1634 0 9734 1681 0 9735 1609 0 9736 1624 0 9737 1632 0 9744 1674 0 9745 1616 0 9746 1648 0 9750 1662 0 9751 1638 0 9752 1679 0 9753 1615 0 9754 1631 0 9755 1622 0 9756 1682 0 9757 1675 0 9758 1643 0 9759 1681 0 9760 1663 0 9761 1619 0 9765 1680 0 9766 1667 0 9767 1628 1688 9768 1679 1688 9769 1655 1688 9770 1613 0 9774 1678 0 9775 1671 0 9776 1635 0 9777 1677 0 9778 1659 0 9779 1656 0 9795 1630 0 9796 1689 0 9797 1661 0 9801 1623 0 9802 1687 0 9803 1691 1687 9807 1617 1687 9808 1641 1687 9809 1668 0 9819 1651 0 9820 1690 0 9821 1692 0 9951 1669 0 9952 1633 0 9953 1680 0 9957 1675 0 9958 1643 0 9959 1678 0 9960 1676 0 9961 1644 0 9962 1660 0 9963 1620 0 9964 1640 0 9965 1677 0 9969 1664 0 9970 1622 0 9971 1682 0 9978 1665 0 9979 1626 0 9980 1662 0 9981 1621 0 9982 1639 0 9983 1673 0 9990 1637 0 9991 1650 0 9992 1616 0 9996 1625 0 9997 1692 0 9998 1644 0 9999 1652 0 10000 1691 0 10001 1672 0 10008 1636 0 10009 1648 0 10010 1640 0 10011 1690 0 10012 1673 0 10013 1651 0 10017 1689 0 10018 1661 0 10019 1674 0 10026 1638 0 10027 1649 0 10028 1639 0 10029 1688 0 10030 1666 0 10031 1650 0 10035 1687 0 10036 1654 0 10037 1625 0 10047 1686 0 10048 1670 0 10049 1649 0 10053 1685 0 10054 1658 0 10055 1681 0 10056 1653 0 10057 1609 0 10058 1632 0 10065 1684 0 10066 1674 0 10067 1648 0 10071 1683 0 10072 1662 0 10073 1679 0 10074 1663 0 10075 1615 0 10076 1622 0 10077 1641 0 10078 1682 0 10079 1643 0 10080 1647 0 10081 1681 0 10082 1619 0 10086 1642 0 10087 1680 0 10088 1628 0 10089 1646 0 10090 1679 0 10091 1613 0 10095 1632 0 10096 1678 0 10097 1635 0 10098 1645 0 10099 1677 0 10100 1656 0 10116 1611 0 10117 1630 0 10118 1661 0 10122 1614 0 10123 1623 0 10124 1691 0 10128 1657 0 10129 1617 0 10130 1668 0 10140 1629 0 10141 1651 0 10142

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1023 1182 6558 165 1182 6559 1025 1182 6560 1025 1183 6561 165 1183 6562 163 1183 6563 1027 1184 6564 1025 1184 6565 163 1184 6566 1027 1185 6567 163 1185 6568 161 1185 6569 1027 1186 6570 161 1186 6571 1029 1186 6572 1029 1187 6573 161 1187 6574 159 1187 6575 1029 1188 6576 159 1188 6577 1031 1188 6578 1031 1189 6579 159 1189 6580 157 1189 6581 1031 1190 6582 157 1190 6583 1033 1190 6584 1033 1191 6585 157 1191 6586 155 1191 6587

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1141 1085 6249 78 1085 6250 1140 1085 6251 1140 1086 6252 78 1086 6253 80 1086 6254 1140 1087 6255 80 1087 6256 1139 1087 6257 1139 1088 6258 80 1088 6259 82 1088 6260 1139 1089 6261 82 1089 6262 1138 1089 6263 1138 1090 6264 82 1090 6265 84 1090 6266 1138 1091 6267 84 1091 6268 1137 1091 6269 1137 1092 6270 84 1092 6271 86 1092 6272 86 1689 9822 1136 1689 9823 1137 1689 9824 86 1689 10143 88 1689 10144 1136 1689 10145

+
+ + + + + 3 3 3 3 3 3 3 3 3 3 +

1112 1106 6321 70 1106 6322 1110 1106 6323 1110 1107 6324 70 1107 6325 68 1107 6326 1110 1108 6327 68 1108 6328 1108 1108 6329 1108 1109 6330 68 1109 6331 66 1109 6332 1108 1110 6333 66 1110 6334 1106 1110 6335 1106 1111 6336 66 1111 6337 64 1111 6338 1106 1112 6339 64 1112 6340 1104 1112 6341 1104 1113 6342 64 1113 6343 26 1113 6344 1104 1114 6345 26 1114 6346 1102 1114 6347 1102 1115 6348 26 1115 6349 25 1115 6350

+
+ + + + + 3 3 3 3 3 3 3 3 +

1078 1133 6405 42 1133 6406 1076 1133 6407 1076 1134 6408 42 1134 6409 41 1134 6410 1076 1135 6411 41 1135 6412 1074 1135 6413 1074 1136 6414 41 1136 6415 23 1136 6416 1072 1137 6417 23 1137 6418 22 1137 6419 1072 1138 6420 22 1138 6421 1070 1138 6422 1070 1139 6423 22 1139 6424 99 1139 6425 1072 1137 9825 1074 1137 9826 23 1137 9827

+
+
+
+
+ + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.001175366 0 0 -15 0 8.87376e-11 -0.001175366 18 0 0.001175366 8.87376e-11 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.config b/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.config new file mode 100755 index 0000000..50a42ad --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.config @@ -0,0 +1,11 @@ + + + MIT_Tunnel + 1.0 + model.sdf + + Abhishek Agarwal + abhia@mit.edu + + Building 32-081 + diff --git a/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.sdf new file mode 100755 index 0000000..9e1e0fc --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/MIT_Tunnel/model.sdf @@ -0,0 +1,917 @@ + + + + 3.61177 6.74312 0 0 -0 0 + + + + + 32.6917 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 32.6917 0.15 2.5 + + + + + 1 1 1 1 + + + -19.1952 15.5558 0 0 0 -0.001042 + + + + + + 8.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.5 0.15 2.5 + + + + + 1 1 1 1 + + + -2.92483 11.3639 0 0 0 -1.5708 + + + + + + 18.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 18.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.37517 7.18889 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 15.0799 4.96726 0 0 0 -1.8326 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 13.1846 2.74563 0 0 -0 3.14159 + + + + + + 2.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.75 0.15 2.5 + + + + + 1 1 1 1 + + + 10.9654 1.82639 0 0 0 -2.35619 + + + + + + 24.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 24.25 0.15 2.5 + + + + + 1 1 1 1 + + + -52.25 -18.2689 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 10.0461 -0.142849 0 0 0 -1.5708 + + + + + + 5.08891 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.08891 0.15 2.5 + + + + + 1 1 1 1 + + + 8.53852 -3.14869 0 0 0 -2.22749 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + 6.23091 -5.10454 0 0 -0 3.14159 + + + + + + 2.59216 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.59216 0.15 2.5 + + + + + 1 1 1 1 + + + 4.6163 -6.01417 0 0 0 -2.30114 + + + + + + 3 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 3 0.15 2.5 + + + + + 1 1 1 1 + + + 3.80168 -8.34882 0 0 0 -1.5708 + + + + + + 2.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.5 0.15 2.5 + + + + + 1 1 1 1 + + + 2.62668 -9.77382 0 0 -0 3.14159 + + + + + + 4.15096 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.15096 0.15 2.5 + + + + + 1 1 1 1 + + + 0.152007 -11.2946 0 0 0 -2.27796 + + + + + + 5.87777 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5.87777 0.15 2.5 + + + + + 1 1 1 1 + + + -1.14312 -15.679 0 0 0 -1.56921 + + + + + + 65.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 65.5 0.15 2.5 + + + + + 1 1 1 1 + + + 31.5103 -18.5427 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + 64.1853 -20.8427 0 0 0 -1.5708 + + + + + + 5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 5 0.15 2.5 + + + + + 1 1 1 1 + + + -64.3 -20.6939 0 0 0 -1.5708 + + + + + + 128.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 128.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1e-06 -23.1189 0 0 -0 0 + + + + + + 4.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 4.75 0.15 2.5 + + + + + 1 1 1 1 + + + -37.9 23.0811 0 0 -0 0 + + + + + + 31.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 31.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4175 -2.72616 0 0 -0 1.5708 + + + + + + 30 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 30 0.15 2.5 + + + + + 1 1 1 1 + + + -20.4925 13.0738 0 0 -0 0 + + + + + + 8.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 8.75 0.15 2.5 + + + + + 1 1 1 1 + + + -5.56745 8.77384 0 0 0 -1.5708 + + + + + + 13.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 13.75 0.15 2.5 + + + + + 1 1 1 1 + + + 1.23255 4.47384 0 0 -0 0 + + + + + + 2.25 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 2.25 0.15 2.5 + + + + + 1 1 1 1 + + + 8.03255 3.42384 0 0 0 -1.5708 + + + + + + 15.8243 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 15.8243 0.15 2.5 + + + + + 1 1 1 1 + + + 2.89068 -3.54071 0 0 0 -2.28642 + + + + + + 41.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 41.5 0.15 2.5 + + + + + 1 1 1 1 + + + -40.2 2.40609 0 0 -0 1.5708 + + + + + + 1 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1 0.15 2.5 + + + + + 1 1 1 1 + + + -2.6617 -9.34526 0 0 -0 2.87979 + + + + + + 1.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.47221 -9.92808 0 0 0 -2.0944 + + + + + + 1.5 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 1.5 0.15 2.5 + + + + + 1 1 1 1 + + + -3.39492 -11.0982 0 0 0 -0.785398 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.12975 -11.7876 0 0 0 -2.35619 + + + + + + 0.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 0.75 0.15 2.5 + + + + + 1 1 1 1 + + + -3.64188 -11.9998 0 0 -0 3.14159 + + + + + + 7.13355 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.13355 0.15 2.5 + + + + + 1 1 1 1 + + + -5.21192 -15.2524 0 0 0 -1.94306 + + + + + + 29 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 29 0.15 2.5 + + + + + 1 1 1 1 + + + -20.9925 -18.5262 0 0 -0 0 + + + + + + 7.75 0.15 2.5 + + + 0 0 1.25 0 -0 0 + + + 0 0 1.25 0 -0 0 + + + 7.75 0.15 2.5 + + + + + 1 1 1 1 + + + -35.4657 19.3427 0 0 0 -1.5708 + + 1 + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png new file mode 100755 index 0000000..e7da3a0 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/materials/textures/Marker0.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae new file mode 100755 index 0000000..ad2e324 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/meshes/Marker0.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker0.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf new file mode 100755 index 0000000..bf35114 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf new file mode 100755 index 0000000..b258bab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.config new file mode 100755 index 0000000..0b661f4 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.config @@ -0,0 +1,17 @@ + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.sdf new file mode 100755 index 0000000..7cf00bf --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker0/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker0/meshes/Marker0.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png new file mode 100755 index 0000000..44c03b4 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/materials/textures/Marker1.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae new file mode 100755 index 0000000..08d0848 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/meshes/Marker1.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker1.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf new file mode 100755 index 0000000..19cf0d7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf new file mode 100755 index 0000000..a3679dd --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.config new file mode 100755 index 0000000..7ef2b4a --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.config @@ -0,0 +1,17 @@ + + Marker1 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.sdf new file mode 100755 index 0000000..3155a67 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker1/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker1/meshes/Marker1.dae + 0.1 0.1 0.1 + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png new file mode 100755 index 0000000..2a203ef Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/materials/textures/Marker10.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae new file mode 100755 index 0000000..98a2b82 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/meshes/Marker10.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker10.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf new file mode 100755 index 0000000..8b8815d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf new file mode 100755 index 0000000..cb99cb3 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.config new file mode 100755 index 0000000..2f33aaa --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.config @@ -0,0 +1,17 @@ + + Marker10 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.sdf new file mode 100755 index 0000000..b3411e6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker10/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker10/meshes/Marker10.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png new file mode 100755 index 0000000..2303c36 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/materials/textures/Marker11.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae new file mode 100755 index 0000000..e575966 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/meshes/Marker11.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker11.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf new file mode 100755 index 0000000..ed845f8 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf new file mode 100755 index 0000000..fd2e9f7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.config new file mode 100755 index 0000000..d3a850b --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.config @@ -0,0 +1,17 @@ + + Marker11 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.sdf new file mode 100755 index 0000000..cf63a96 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker11/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker11/meshes/Marker11.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png new file mode 100755 index 0000000..704b9bb Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/materials/textures/Marker12.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae new file mode 100755 index 0000000..95674a9 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/meshes/Marker12.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker12.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf new file mode 100755 index 0000000..9c2663a --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf new file mode 100755 index 0000000..c19c0ad --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.config new file mode 100755 index 0000000..6938798 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.config @@ -0,0 +1,17 @@ + + Marker12 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.sdf new file mode 100755 index 0000000..689af0c --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker12/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker12/meshes/Marker12.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png new file mode 100755 index 0000000..79a7b32 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/materials/textures/Marker13.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae new file mode 100755 index 0000000..bf0a650 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/meshes/Marker13.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker13.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf new file mode 100755 index 0000000..379023e --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf new file mode 100755 index 0000000..72f5259 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.config new file mode 100755 index 0000000..982712d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.config @@ -0,0 +1,17 @@ + + Marker13 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.sdf new file mode 100755 index 0000000..4df884a --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker13/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker13/meshes/Marker13.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png new file mode 100755 index 0000000..3337cda Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/materials/textures/Marker14.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae new file mode 100755 index 0000000..71cee4b --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/meshes/Marker14.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker14.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf new file mode 100755 index 0000000..1ca8533 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf new file mode 100755 index 0000000..8dfa8a6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.config new file mode 100755 index 0000000..a247db7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.config @@ -0,0 +1,17 @@ + + Marker14 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.sdf new file mode 100755 index 0000000..8d512f7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker14/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker14/meshes/Marker14.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png new file mode 100755 index 0000000..df61cc7 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/materials/textures/Marker15.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae new file mode 100755 index 0000000..4100937 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/meshes/Marker15.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker15.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf new file mode 100755 index 0000000..04fb049 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf new file mode 100755 index 0000000..b6e79cd --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.config new file mode 100755 index 0000000..6cfc9fe --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.config @@ -0,0 +1,17 @@ + + Marker15 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.sdf new file mode 100755 index 0000000..3da547f --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker15/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker15/meshes/Marker15.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png new file mode 100755 index 0000000..84cea70 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/materials/textures/Marker16.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae new file mode 100755 index 0000000..e309ae9 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/meshes/Marker16.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker16.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf new file mode 100755 index 0000000..967d534 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf new file mode 100755 index 0000000..bc4eae9 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.config new file mode 100755 index 0000000..7e7ffb7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.config @@ -0,0 +1,17 @@ + + Marker16 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.sdf new file mode 100755 index 0000000..629d5a3 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker16/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker16/meshes/Marker16.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png new file mode 100755 index 0000000..8ca4a9d Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/materials/textures/Marker17.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae new file mode 100755 index 0000000..c5fd548 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/meshes/Marker17.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker17.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf new file mode 100755 index 0000000..eec5c67 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf new file mode 100755 index 0000000..4012a53 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.config new file mode 100755 index 0000000..00af1b1 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.config @@ -0,0 +1,17 @@ + + Marker17 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.sdf new file mode 100755 index 0000000..48d7ab4 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker17/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker17/meshes/Marker17.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png new file mode 100755 index 0000000..d2cb1ea Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/materials/textures/Marker2.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae new file mode 100755 index 0000000..ecdc879 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/meshes/Marker2.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker2.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf new file mode 100755 index 0000000..4afebd4 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf new file mode 100755 index 0000000..1433e1f --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.config new file mode 100755 index 0000000..fa54371 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.config @@ -0,0 +1,17 @@ + + Marker2 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.sdf new file mode 100755 index 0000000..21e4a9b --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker2/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker2/meshes/Marker2.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png new file mode 100755 index 0000000..05a3281 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/materials/textures/Marker3.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae new file mode 100755 index 0000000..27855f8 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/meshes/Marker3.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker3.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf new file mode 100755 index 0000000..0d4a4bd --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf new file mode 100755 index 0000000..e4894a7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.config new file mode 100755 index 0000000..047cf17 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.config @@ -0,0 +1,17 @@ + + Marker3 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.sdf new file mode 100755 index 0000000..fe58f24 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker3/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker3/meshes/Marker3.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png new file mode 100755 index 0000000..bc7830b Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/materials/textures/Marker4.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae new file mode 100755 index 0000000..58d0649 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/meshes/Marker4.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker4.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf new file mode 100755 index 0000000..2c67932 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf new file mode 100755 index 0000000..1dae276 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.config new file mode 100755 index 0000000..2e9fd7e --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.config @@ -0,0 +1,17 @@ + + Marker4 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.sdf new file mode 100755 index 0000000..cc4d203 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker4/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker4/meshes/Marker4.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png new file mode 100755 index 0000000..5d3113c Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/materials/textures/Marker5.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae new file mode 100755 index 0000000..67f2252 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/meshes/Marker5.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker5.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf new file mode 100755 index 0000000..dd62bd7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf new file mode 100755 index 0000000..d7702ad --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.config new file mode 100755 index 0000000..0f0e870 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.config @@ -0,0 +1,17 @@ + + Marker5 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.sdf new file mode 100755 index 0000000..07db97d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker5/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker5/meshes/Marker5.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png new file mode 100755 index 0000000..cb00f15 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/materials/textures/Marker6.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae new file mode 100755 index 0000000..956fb0c --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/meshes/Marker6.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker6.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf new file mode 100755 index 0000000..93e6a27 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf new file mode 100755 index 0000000..4d462fe --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.config new file mode 100755 index 0000000..c4f59c6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.config @@ -0,0 +1,17 @@ + + Marker6 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.sdf new file mode 100755 index 0000000..6aa9902 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker6/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker6/meshes/Marker6.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png new file mode 100755 index 0000000..41ddc8b Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/materials/textures/Marker7.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae new file mode 100755 index 0000000..f486fbf --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/meshes/Marker7.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker7.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf new file mode 100755 index 0000000..d86bb12 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf new file mode 100755 index 0000000..266b6d7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.config new file mode 100755 index 0000000..b4af58e --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.config @@ -0,0 +1,17 @@ + + Marker7 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.sdf new file mode 100755 index 0000000..cb6db5f --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker7/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker7/meshes/Marker7.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png new file mode 100755 index 0000000..dec84a2 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/materials/textures/Marker8.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae new file mode 100755 index 0000000..0ec7bf6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/meshes/Marker8.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker8.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf new file mode 100755 index 0000000..8f15643 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf new file mode 100755 index 0000000..cb4f7b6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.config new file mode 100755 index 0000000..317baae --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.config @@ -0,0 +1,17 @@ + + Marker8 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.sdf new file mode 100755 index 0000000..12ab587 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker8/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker8/meshes/Marker8.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf new file mode 100755 index 0000000..43a6f7d --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model-1_5.sdf @@ -0,0 +1,15 @@ + + + + true + + + + + model://marker0/meshes/Marker0.dae + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model.config new file mode 100755 index 0000000..ba97dab --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/marker0/model.config @@ -0,0 +1,19 @@ + + + + Marker0 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png new file mode 100755 index 0000000..358cb97 Binary files /dev/null and b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/materials/textures/Marker9.png differ diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae new file mode 100755 index 0000000..dedced0 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/meshes/Marker9.dae @@ -0,0 +1,125 @@ + + + + Blender User + Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0 + + 2015-04-05T02:03:25 + 2015-04-05T02:03:25 + + Z_UP + + + + Marker9.png + + + + + + + + Marker0_png + + + + + Marker0_png-surface + + + + + + 0 0 0 1 + + + 0.9 0.9 0.9 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 1 0.9999999 -9.41753e-6 1 -1 -9.41753e-6 -1 -0.9999998 -9.41753e-6 -0.9999997 1 -9.41753e-6 1 0.9999994 1.999991 0.9999994 -1.000001 1.999991 -1 -0.9999997 1.999991 -0.9999999 1 1.999991 + + + + + + + + + + 0 0 -1 0 0 1 1 -5.66244e-7 3.27825e-7 -4.76837e-7 -1 0 -1 2.38419e-7 -1.19209e-7 2.38419e-7 1 1.78814e-7 0 0 -1 0 0 1 1 0 -2.38419e-7 0 -1 -2.98023e-7 -1 2.38419e-7 0 2.98023e-7 1 2.38418e-7 + + + + + + + + + + 0 0 0 0 0 0 0 0 0 0 0 0 0.9999 0.9940189 9.96856e-5 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 9.96856e-5 0.9940191 9.98823e-5 9.96856e-5 0.9999004 9.98429e-5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9999004 9.96856e-5 0.9999 0.9940189 1.00079e-4 9.97642e-5 0 0 0 0 0 0 0.9999004 0.9940191 9.96856e-5 0.9940191 0.9999004 9.98429e-5 0 0 0 0 0 0 + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 +

0 0 0 1 0 1 2 0 2 7 1 3 6 1 4 5 1 5 4 2 6 5 2 7 1 2 8 5 3 9 6 3 10 2 3 11 2 4 12 6 4 13 7 4 14 0 5 15 3 5 16 7 5 17 3 6 18 0 6 19 2 6 20 4 7 21 7 7 22 5 7 23 0 8 24 4 8 25 1 8 26 1 9 27 5 9 28 2 9 29 3 10 30 2 10 31 7 10 32 4 11 33 0 11 34 7 11 35

+
+
+
+
+ + + + + 0.004999998 0 0 0 0 0.2499999 0 0 0 0 0.25 0 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf new file mode 100755 index 0000000..875f1f1 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_4.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf new file mode 100755 index 0000000..e6adfe5 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model-1_5.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.config b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.config new file mode 100755 index 0000000..4daf6ea --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.config @@ -0,0 +1,17 @@ + + Marker9 + 1.0 + model.sdf + model-1_5.sdf + model-1_4.sdf + + + Mikael Arguedas + mikael.arguedas@gmail.com + + + + A model of AR marker + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.sdf new file mode 100755 index 0000000..ec27065 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/ar_tags/marker9/model.sdf @@ -0,0 +1,14 @@ + + + true + + + + + model://racecar_description/models/ar_tags/marker9/meshes/Marker9.dae + 0.1 0.1 0.1 + + + + + \ No newline at end of file diff --git a/stack_master/config/NUC2/slam/f110_description/models/cone/model.config b/stack_master/config/NUC2/slam/f110_description/models/cone/model.config new file mode 100755 index 0000000..9baefb6 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/cone/model.config @@ -0,0 +1,7 @@ + + + cone + 1.0 + model.sdf + A bright orange cone + diff --git a/stack_master/config/NUC2/slam/f110_description/models/cone/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/cone/model.sdf new file mode 100755 index 0000000..e5875eb --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/cone/model.sdf @@ -0,0 +1,27 @@ + + + + + + + + model://racecar_description/meshes/cone.dae + + + + + + + model://racecar_description/meshes/cone.dae + + + + 1 0.2 0 1 + 1 0.2 0 1 + 0.1 0.1 0.1 1 + 0 0 0 0 + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.config b/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.sdf new file mode 100755 index 0000000..e1da33e --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/parking_1/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + + + model://racecar_description/meshes/parking_1.dae + + + + + 1 + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.config b/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.config new file mode 100755 index 0000000..f363ff7 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.config @@ -0,0 +1,10 @@ + + + walker_racecourse + 1.0 + model.sdf + + Owen Guldner + owen.guldner@ll.mit.edu + + diff --git a/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.sdf b/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.sdf new file mode 100755 index 0000000..18d303b --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/models/walker_racecourse/model.sdf @@ -0,0 +1,22 @@ + + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + + + model://racecar_description/meshes/walker_racecourse.dae + + + + + 1 + + diff --git a/stack_master/config/NUC2/slam/f110_description/package.xml b/stack_master/config/NUC2/slam/f110_description/package.xml new file mode 100755 index 0000000..f0b5eff --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/package.xml @@ -0,0 +1,49 @@ + + + f110_description + 0.0.0 + The racecar_description package + + + + + ubuntu + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/urdf/F110.xacro b/stack_master/config/NUC2/slam/f110_description/urdf/F110.xacro new file mode 100644 index 0000000..c8d1b61 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/urdf/F110.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/urdf/macros.xacro b/stack_master/config/NUC2/slam/f110_description/urdf/macros.xacro new file mode 100755 index 0000000..73d4f94 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/urdf/macros.xacro @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + + + transmission_interface/SimpleTransmission + + EffortJointInterface + + + EffortJointInterface + 1 + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/urdf/materials.xacro b/stack_master/config/NUC2/slam/f110_description/urdf/materials.xacro new file mode 100755 index 0000000..49f4bc1 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/urdf/materials.xacro @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/urdf/racecar.gazebo b/stack_master/config/NUC2/slam/f110_description/urdf/racecar.gazebo new file mode 100755 index 0000000..ab4ff78 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/urdf/racecar.gazebo @@ -0,0 +1,135 @@ + + + + + + + + + + + Gazebo/Blue + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + + + Gazebo/Black + + + + + + + /racecar + gazebo_ros_control/DefaultRobotHWSim + + + + + + + Gazebo/Grey + + 0 0 0.0124 0 0 0 + true + 40 + + + + 1081 + 1 + -2.3561944902 + 2.3561944902 + + + + 0.1 + 10.0 + 0.01 + + + 0.0 + 0.01 + + + + /scan + laser + + + + + + + + + + 30.0 + + + 0.8709216071359963 + + 640 + 480 + B8G8R8 + + + 0.02 + 300 + + + gaussian + 0.0 + 0.007 + + + + true + 30.0 + /camera/zed + rgb/image_rect_color + rgb/camera_info + camera_link + 0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + + + + diff --git a/stack_master/config/NUC2/slam/f110_description/urdf/racecar.xacro b/stack_master/config/NUC2/slam/f110_description/urdf/racecar.xacro new file mode 100755 index 0000000..2c25e89 --- /dev/null +++ b/stack_master/config/NUC2/slam/f110_description/urdf/racecar.xacro @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + robot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/static_transforms.launch.xml b/stack_master/config/NUC2/static_transforms.launch.xml new file mode 100644 index 0000000..6efaa89 --- /dev/null +++ b/stack_master/config/NUC2/static_transforms.launch.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/vesc.launch.xml b/stack_master/config/NUC2/vesc.launch.xml new file mode 100644 index 0000000..68f2257 --- /dev/null +++ b/stack_master/config/NUC2/vesc.launch.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/config/NUC2/vesc.yaml b/stack_master/config/NUC2/vesc.yaml new file mode 100644 index 0000000..9bf9f1c --- /dev/null +++ b/stack_master/config/NUC2/vesc.yaml @@ -0,0 +1,60 @@ + +# erpm (electrical rpm) = speed_to_erpm_gain * speed (meters / second) + speed_to_erpm_offset +#4614 +speed_to_erpm_gain: 4352 +speed_to_erpm_offset: 220.0 + +tachometer_ticks_to_meters_gain: 0.00225 + +# servo smoother - limits rotation speed and smooths anything above limit +max_servo_speed: 3.2 # radians/second +servo_smoother_rate: 75.0 # messages/sec +servo_timeout: 0.1 # (stop publishing after inactive for) s + +# motor rpm smoother - limits acceleration and smooths anything above limit +# not used when sending current commands +max_acceleration: 2.5 # meters/second^2 +throttle_smoother_rate: 75.0 # messages/sec +motor_timeout: 0.1 # (stop publishing after inactive for) s + +# motor current smoother - limits current and filters with time constant +max_accel_current: 65 #A +max_brake_current: 50 #A () +current_time_constant: 0.05 #s +current_smoother_rate: 100.0 # messages/sec +current_timeout: 0.1 # s for correct interpolation the controller must publish at frequency higher than 1/this + +# servo value (0 to 1) = steering_angle_to_servo_gain * steering angle (radians) + steering_angle_to_servo_offset +#-1.2135 +steering_angle_to_servo_gain: -1.1 # obtained 03.02.2023 +steering_angle_to_servo_offset: 0.495 # obtained 03.02.2023 +# steering_angle_to_servo_offset: 0.445 # obtained 19.02.2023 + +#offset johnny 0.417 +#0.5304 + +# current (A, 0 - 100) = gain * acceleration (m/s2) + gain * velocity +acceleration_to_current_gain: 8.938 +deceleration_to_current_gain: 5.936 +velocity_to_current_gain: 3.693 + +# publish odom to base link tf +vesc_to_odom/publish_tf: false + +# car wheelbase is about 25cm +wheelbase: 0.321 + +vesc_driver: + port: /dev/sensors/vesc + duty_cycle_min: 0.0 + duty_cycle_max: 0.0 + current_min: 0.0 + current_max: 100.0 + brake_min: -20000.0 + brake_max: 200000.0 + speed_min: -69000 + speed_max: 69000 + position_min: 0.0 + position_max: 0.0 + servo_min: 0.15 + servo_max: 0.85 diff --git a/stack_master/config/NUC2/vesc_new.yaml b/stack_master/config/NUC2/vesc_new.yaml new file mode 100644 index 0000000..49f8ded --- /dev/null +++ b/stack_master/config/NUC2/vesc_new.yaml @@ -0,0 +1,50 @@ + +# erpm (electrical rpm) = speed_to_erpm_gain * speed (meters / second) + speed_to_erpm_offset +speed_to_erpm_gain: 4614 +speed_to_erpm_offset: 0.0 + +tachometer_ticks_to_meters_gain: 0.00225 + +# servo smoother - limits rotation speed and smooths anything above limit +max_servo_speed: 3.2 # radians/second +servo_smoother_rate: 75.0 # messages/sec +servo_timeout: 0.1 # (stop publishing after inactive for) s + +# motor rpm smoother - limits acceleration and smooths anything above limit +# not used when sending current commands +max_acceleration: 2.5 # meters/second^2 +throttle_smoother_rate: 75.0 # messages/sec +motor_timeout: 0.1 # (stop publishing after inactive for) s + +# motor current smoother - limits current and filters with time constant +max_accel_current: 65 #A +max_brake_current: 50 #A () +current_time_constant: 0.05 #s +current_smoother_rate: 100.0 # messages/sec +current_timeout: 0.1 # s for correct interpolation the controller must publish at frequency higher than 1/this + +# servo value (0 to 1) = steering_angle_to_servo_gain * steering angle (radians) + steering_angle_to_servo_offset +steering_angle_to_servo_gain: -1.2135 +#steering_angle_to_servo_offset: 0.5304 +steering_angle_to_servo_offset: 0.5 + +# publish odom to base link tf +vesc_to_odom/publish_tf: false + +# car wheelbase is about 25cm +wheelbase: .25 + +vesc_driver: + port: /dev/ttyACM1 + duty_cycle_min: 0.0 + duty_cycle_max: 0.5 + current_min: 0.0 + current_max: 100.0 + brake_min: -20000.0 + brake_max: 200000.0 + speed_min: -33250 + speed_max: 33250 + position_min: 0.0 + position_max: 0.0 + servo_min: 0.15 + servo_max: 0.85 diff --git a/stack_master/config/README.md b/stack_master/config/README.md new file mode 100644 index 0000000..9d6d2a3 --- /dev/null +++ b/stack_master/config/README.md @@ -0,0 +1,90 @@ +# Config +The config folder is your one stop shop for all the parameters attached to your specific car. E.g. every car will have it's own specific servo steering offset and so on based on the physical hardware. So all parameters are saved in the `config` folder. + +## Create a new car +We provide some examples [`Jet1`, `NUC2`, `SIM`] which you can copy and name it after your car and then tune your parameters as desired. The `SIM` car refers to the tire dynamics etc of the car used in the simulator. Typically the following parameters are necessary to be adjusted: +- `config/NAME_OF_CAR/vesc.yaml`, for tuning follow the following guide from [MuSHR](https://mushr.io/tutorials/tuning/): + - `speed_to_erpm_gain`, this depends on your VESC PID tuning + - `speed_to_erpm_offset`, this depends on your VESC PID tuning + - `steering_angle_to_servo_offset`, this depends on your physical hardware + - `steering_angle_to_servo_gain`, this depends on your physical hardware + +- `config/NAME_OF_CAR/static_transforms.launch.xml`, When mounting the hardware it is good to remasure if all static transforms are correct +- `config/NAME_OF_CAR/slam/f110_2d_loc.lua`, this defines the specific slam parameters to be used for each car, as each LiDAR is slightly different and the accuracy of your wheel odometry tuning. + - `TRAJECTORY_BUILDER_2D.ceres_scan_matcher.rotation_weight`, depends on the accuracy of your wheel odometry + - `TRAJECTORY_BUILDER_2D.ceres_scan_matcher.translation_weight`, depends on the accuracy of your wheel odometry + - `MAP_BUILDER.num_background_threads`, depends on your compute power + - `TRAJECTORY_BUILDER_2D.submaps.num_range_data = 80`, this depends on your computer's computational power + - `POSE_GRAPH.optimize_every_n_nodes = 5`, this depends on your computer's computational power + +## MAP Controller +The MAP controller can be found in `/race_stack/controller/map/src/MAP_Controller.py`, the tuning Parameters differ from car to car and can be tuned using dynamic reconfigure. It is not necessary to tune these parameters as the default values should work on every track. However by tweaking the values to a specific track a slightly better performance can be achieved. It is also necessary to perform the tuning when a car is modified heavily (suspension, tires, weight) or when driving on a new car. +### Parameter description + + - MAP distance parameters + - `t_clip_min`: minimum l1 distance + - `t_clip_max`: maximum l1 distance + - `m_l1`: slope l1/velocity relation + - `q_l1`: intercept of l1/velocity relation + ![MAP distance Parameters](../checklists/img/l1_dist.png) + + - Forward propagation for the speed lookup: + - `speed_lookahead`: time [s] of forward propagation with constant velocity + - Forward propagation for the steering angle + - `speed_lookahead_for_steer`: time [s] of forward propagation with constant velocity for the location used for the steer (MAP) + - the acceleration scalers, for accounting for load shift in acc/braking, increase/decrease the steering angle by a factor + - `acc_scaler_for_steer` + - `dec_scaler_for_steer` + + - the coefficient to account for lateral error when doing speed control + - `lat_err_coeff`: 0 means no account for lateral error, 1 means maximum accounting + - scalers for high speed + - `start_scale_speed`: up to this speed the steer is normal + - `end_scale_speed`: from this speed on the steer is scaled by 1 - `downscale_factor` and in between it linearly decreases down + - `downscale_factor`: speed is reduced by this factor + +![High Speed Steer-Scaling](../checklists/img/speed_scaling.png) + + ### Tuning Procedure +1. MAP distance Parameters for new car/components (should not be necessary on raceday) + + Set up a track where the car can safely drive up to $4$ m/s (no sharp corners). Map the track and start a time trials session with the driving speed to constant $2$ m/s. Set `m_l1` and `q_l1` to zero and `t_clip_max` to a high number. With that we make sure, that the L1 distance is kept constant at the value of `t_clip_min`. + + While driving slowly increase `t_clip_min` until the car doesn't oscillate anymore. Save this number for later as $D_2$. + + Now set the driving speed to $4$ m/s and repeat the same process. Save the number set in `t_clip_min` as $D_4$. + + With these two datapoints gathered, we will interpolate to get the linear function representing the l1/velocity relation. It is possible to repeat the process with different velocities if necessary. + + The parameters can be set as follows: + + - `t_clip_max` = $5$ (the car should never look ahead more than 5 meters) + - `m_l1` = $\frac{D_4-D_2}{2}$ + - `q_l1` = $D_2 - 2*$ `m_l1` + - `t_clip_min` = $D_2 - 1*$ `m_l1` (as the car will never drive slower than 1 m/s) + +2. MAP distance Parameters at the Race + + Start out with the set parameters found with the process described in (1) + + `t_clip_min` and `t_clip_max` should not be changed unless the track is extremely fast or slow. + If the car tends to cut corners decrease `q_l1` and/or `m_l1`, if it oscillates increase them. + Proven good values are `m_l1 = 0.5`, `q_l1 = 0.2` + +3. Scalers for high speeds + + These could be tuned by driving the same track/corners at higher and higher constant speeds and and setting `start_scale_speed` to the point where the car starts to turn to much for it's velocity. And lower the steering from that velocity onward by `downscale_factor`. However this is probably not necessary to do. + +4. Accelerating scaler + + For `acc_scaler_for_steer` and `dec_scaler_for_steer` start out with both values at $1$ + + Increase the `acc_scaler_for_steer` slowly, looking at the laptime and average/max lateral error. Increase until the values stop improving or you see the car skidding. It is generally good to keep the values in the range $[1,1.5]$ + + Keep the `acc_scaler_for_steer` at the found value and slowly decrease `dec_scaler_for_steer`, looking at the laptime and average/max lateral error. Decrease until the values stop improving. It is generally good to keep the values in the range $[0.7,1]$ + +5. `speed_lookahead` is normally set at $0.25$, this should work. If you need to tune it, it should be kept in the range $[0,0.5]$. With larger values the car tracks better, but the laptime gets slower. + +6. To tune the `lat_err_coeff`, set up some obstacles on the track and start a head to head session. Make sure to activate overtaking on all sectors. Starting with a value of 1 slowly decrease the value as long as the laptime gets faster and the car can still overtake safely. +7. `speed_lookahead_for_steer` can be increased to make the car cut corners to increse laptime. This can get very dangerous fast. Slowly increase the value while looking at how close the car is to corners. Keep this in the range $[0,0.2]$, $0.05$ is probably realistic. + diff --git a/stack_master/config/SIM/BO_ranges.yaml b/stack_master/config/SIM/BO_ranges.yaml new file mode 100644 index 0000000..e85fea3 --- /dev/null +++ b/stack_master/config/SIM/BO_ranges.yaml @@ -0,0 +1,15 @@ + +l1_param: + t_clip_min: + lower_bound: 0.1 + upper_bound: 0.2 # 1.0 to enforce bad laps for debugging + m_l1: + lower_bound: 0.05 + upper_bound: 0.4 + q_l1: + lower_bound: -1.0 + upper_bound: 1.0 +sector: + lower_bound: 0.8 + upper_bound: 1.0 + diff --git a/stack_master/config/SIM/SIM_linear.yaml b/stack_master/config/SIM/SIM_linear.yaml new file mode 100644 index 0000000..51c5b8e --- /dev/null +++ b/stack_master/config/SIM/SIM_linear.yaml @@ -0,0 +1,19 @@ +C_0d: 0.4769777665344132 +C_R: 3.693303119695026 +C_Sf: 3.70776089172916 +C_Sr: 14.917278165744078 +C_acc: 7.135521073243542 +C_d: -0.8555709456247437 +C_dec: 0.555393889733246 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC1 +mu: 1 +tau_steer: 0.15779476 +tire_model: linear diff --git a/stack_master/config/SIM/SIM_pacejka.yaml b/stack_master/config/SIM/SIM_pacejka.yaml new file mode 100644 index 0000000..c1e204f --- /dev/null +++ b/stack_master/config/SIM/SIM_pacejka.yaml @@ -0,0 +1,27 @@ +C_0d: 0.41117415569890003 +C_Pf: +- 4.47161357602916 +- 0.1320293068694414 +- 12.267008918241816 +- 1.5562751013900538 +C_Pr: +- 9.999999999999812 +- 1.4999999999992566 +- 1.3200250015860229 +- 1.0999999999999999 +C_R: 3.693303119695026 +C_acc: 7.135521073243542 +C_d: -0.8390993957160475 +C_dec: 5.935972263881579 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC1 +mu: 1 +tire_model: pacejka +tau_steer: 0.15779476 diff --git a/stack_master/config/SIM/l1_params.yaml b/stack_master/config/SIM/l1_params.yaml new file mode 100644 index 0000000..0ab88c6 --- /dev/null +++ b/stack_master/config/SIM/l1_params.yaml @@ -0,0 +1,25 @@ +## L1 Controller Parameters (Lateral Control) +t_clip_min: 1 +t_clip_max: 5 +m_l1: 0.3 +q_l1: 0.15 +speed_lookahead: 0 +lat_err_coeff: 1 +acc_scaler_for_steer: 1.0 +dec_scaler_for_steer: 1.0 +start_scale_speed: 7.0 +end_scale_speed: 8.0 +downscale_factor: 0.2 +speed_lookahead_for_steer: 0 # safe/agg 0/0 # increasing this to 0.20 AT MOST can make the car faster on the laptime but cut more corners + + + + +## Trailing Controller Parameters +prioritize_dyn: True + +trailing_gap: 1.5 # Distance in meters or gap in seconds, depending on mode +trailing_p_gain: 0.5 +trailing_i_gain: 0.001 +trailing_d_gain: 0.2 +blind_trailing_speed: 1.5 \ No newline at end of file diff --git a/stack_master/config/gb_optimizer/racecar_f110.ini b/stack_master/config/gb_optimizer/racecar_f110.ini new file mode 100644 index 0000000..8ed9921 --- /dev/null +++ b/stack_master/config/gb_optimizer/racecar_f110.ini @@ -0,0 +1,282 @@ +# ---------------------------------------------------------------------------------------------------------------------- +[GENERAL_OPTIONS] + +### set name of ggv diagram and ax_max_machines files to use +ggv_file="ggv.csv" +ax_max_machines_file="ax_max_machines.csv" + + +### stepsize options +# stepsize_prep: [m] used for linear interpolation before spline approximation --> Initial Stepsize on the tracks +# stepsize_reg: [m] used for spline interpolation after spline approximation (stepsize during opt.) --> # Number of normals on the track +# stepsize_interp_after_opt: [m] used for spline interpolation after optimization + +stepsize_opts={"stepsize_prep": 0.05, + "stepsize_reg": 0.2, + "stepsize_interp_after_opt": 0.1} + +### spline regression smooth options +# k_reg: [-] order of B-Splines -> standard: 3 +# s_reg: [-] smoothing factor, range [1.0, 100.0] + +reg_smooth_opts={"k_reg": 3, + "s_reg": 1} + +### preview and review distances for numerical curvature calculation (used in minimum time optimization) +# d_preview_curv: [m] preview distance (curvature) +# d_review_curv: [m] review distance (curvature) +# d_preview_head: [m] preview distance (heading) +# d_review_head: [m] review distance (heading) + +curv_calc_opts = {"d_preview_curv": 2.0, + "d_review_curv": 2.0, + "d_preview_head": 1.0, + "d_review_head": 1.0} + +### general vehicle parameters required in several functions +# v_max: [m/s] maximal vehicle speed +# length: [m] vehicle length +# width: [m] vehicle width +# mass: [kg] vehiclemass +# dragcoeff: [kg*m2/m3] drag coefficient calculated by 0.5 * rho_air * c_w * A_front +# curvlim: [rad/m] curvature limit of the vehicle +# g: [N/kg] gravity acceleration + +veh_params = {"v_max":15.0, + "length": 0.535, + "width": 0.30, + "mass": 3.518, + "dragcoeff": 0.0136, + "curvlim": 1.0, + "g": 9.81} + +### velocity profile calculation options +# dyn_model_exp: [-] exponent used in the vehicle dynamics model (range [1.0, 2.0]) +# vel_profile_conv_filt_window: [-] moving average filter window size for velocity profile (set null if not used) + +vel_calc_opts = {"dyn_model_exp": 1.0, + "vel_profile_conv_filt_window": null} + +# ---------------------------------------------------------------------------------------------------------------------- +[OPTIMIZATION_OPTIONS] + +### optimization problem options (shortest path optimization) ---------------------------------------------------------- +# width_opt: [m] vehicle width for optimization including safety distance + +optim_opts_shortest_path={"width_opt": 1.20} + +### optimization problem options (minimum curvature optimization) ------------------------------------------------------ +# width_opt: [m] vehicle width for optimization including safety distance +# iqp_iters_min: [-] minimum number of iterations for the IQP +# iqp_curverror_allowed: [rad/m] maximum allowed curvature error for the IQP + +optim_opts_mincurv={"width_opt": 0.8, + "iqp_iters_min": 5, + "iqp_curverror_allowed": 0.1} + +### optimization problem options (minimum lap time optimization) ------------------------------------------------------- +# width_opt: [m] vehicle width for optimization including safety distance +# penalty_delta: [-] penalty of delta derivative for improved smoothness of controls (range [0.0, 50.0]) +# penalty_F: [-] penalty of F derivative for improved smoothness of controls (range [0.0, 2.0]) +# mue: [-] constant friction coefficient (determines tire's D parameter of MF by D = F_z * mue) +# n_gauss [-] number of gaussian basis functions on each side (var_friction: "gauss") +# dn [m] distance of equidistant points on normal vectors for extracting friction + # coefficients (var_friction: "linear" or "gauss") +# limit_energy: [true/false] limit energy consumption +# energy_limit: [kWh/lap] energy consumption limit (limit_energy: true) +# safe_traj: [true/false] safe trajectories -> limit accelerations +# ax_pos_safe: [m/s2] a_x+ limit for safe trajectories (safe_traj: true) -> null if ggv should be used +# ax_neg_safe: [m/s2] a_x- limit for safe trajectories (safe_traj: true) -> null if ggv should be used +# ay_safe: [m/s2] a_y limit for safe trajectories (safe_traj: true) -> null if ggv should be used +# w_tr_reopt: [m] total track width in case of reoptimization using the IQP +# w_veh_reopt: [m] vehicle width in case of reoptimization using the IQP +# w_add_spl_regr: [m] width added in case of reoptimization to compensate second spline regression +# step_non_reg: [-] defines how many points to be skipped per step during non-regular point sampling +# (dependent on curvature) +# eps_kappa: [rad/m] curvature threshold to skip discretization points on straights (if +# step_non_reg > 0) + +optim_opts_mintime={"width_opt": 0.8, + "penalty_delta": 1.0, + "penalty_F": 0.1, + "mue": 1.0, + "n_gauss": 5, + "dn": 0.025, + "limit_energy": false, + "energy_limit": 2.0, + "safe_traj": false, + "ax_pos_safe": null, + "ax_neg_safe": null, + "ay_safe": null, + "w_tr_reopt": 1.0, + "w_veh_reopt": 0.8, + "w_add_spl_regr": 0.0, + "step_non_reg": 0, + "eps_kappa": 1e-3} + +### vehicle parameters (minimum lap time optimization) +# wheelbase_front: [m] wheelbase front +# wheelbase_rear: [m] wheelbase rear +# track_width_front: [m] track width front +# track_width_rear: [m] track width rear +# cog_z: [m] center of gravity +# I_z: [kgm^2] yaw inertia +# liftcoeff_front: [kg*m2/m3] lift coefficient front axle calculated by 0.5 * rho_air * c_l_f * A_spoiler_f +# liftcoeff_rear: [kg*m2/m3] lift coefficient rear axle calculated by 0.5 * rho_air * c_l_r * A_spoiler_r +# k_brake_front: [-] portion of braking force at the front axle of the total braking force +# k_drive_front: [-] portion of driving force at the front axle of the total driving force +# k_roll: [-] portion of roll moment at the front axle of the total roll moment +# t_delta: [s] time constant for steering dynamic +# t_drive: [s] time constant for acceleration dynamic +# t_brake: [s] time constant for braking dynamic +# power_max: [W] maximal engine power +# f_drive_max: [N] maximal drive force +# f_brake_max: [N] maximal brake force (only needed for actor dynamics) +# delta_max: [rad] maximal steer angle + +vehicle_params_mintime = {"wheelbase_front": 0.15875, + "wheelbase_rear": 0.17145, + "track_width_front": 0.281, + "track_width_rear": 0.281, + "cog_z": 0.074, + "I_z": 0.04712, + "liftcoeff_front": 0.001, + "liftcoeff_rear": 0.0015, + "k_brake_front": 0.5, + "k_drive_front": 0.0, + "k_roll": 0.5, + "t_delta": 0.1, + "t_drive": 0.1, + "t_brake": 0.1, + "power_max": 267, + "f_drive_max": 33.4, + "f_brake_max": 47.4, + "delta_max": 0.34} + +### tire parameters (minimum lap time optimization) +# c_roll: [-] rolling resistance coefficient +# f_z0: [N] nominal normal force +# B_front: [-] Coefficient B for front tire +# C_front: [-] Coefficient C for front tire +# eps_front: [-] load dependence of Coefficient D for front tire +# E_front: [-] Coefficient E for front tire +# B_rear: [-] Coefficient B for rear tire +# C_rear: [-] Coefficient C for rear tire +# eps_rear: [-] load dependence of Coefficient D for rear tire +# E_rear: [-] Coefficient E for rear tire +# Hint: The D parameter of the Magic Formula is determined by D = F_z * mue. mue can be set above in optim_opts_mintime! + +tire_params_mintime = {"c_roll": 0.010, + "f_z0": 8.6, + "B_front": 7.4, + "C_front": 1.2, + "eps_front": -0.1, + "E_front": 0.85, + "B_rear": 7.4, + "C_rear": 1.2, + "eps_rear": -0.1, + "E_rear": 0.85} + +### powertrain behavior (minimum lap time optimization) +# [1] Prof. Dr.-Ing. Markus Lienkamp, „Auslegung von Elektrofahrzeugen: Lecture slides,“ Unpublished manuscript, 2018 +# [2] F. P. Incropera, Fundamentals of heat and mass transfer, 6th ed., Hoboken NJ, John Wiley, 2007, ISBN: 9780471457282 +# [3] M. Grabowski, K. Urbaniec, J. Wernik and K. J. Wołosz, „Numerical simulation and experimental verification of heat transfer from a finned housing of an electric motor,“Energy Conversion and Management, vol. 125, pp. 91–96, 2016 +# [4] K. Li, S. Wang and J. P. Sullivan, „A novel thermal network for the maximum temperaturerise of hollow cylinder,“ Applied Thermal Engineering, vol. 52, no. 1, pp. 198–208, 2013 + +# pwr_behavior: [-] consider powertrain behavior +# simple_loss: [-] use simple loss models (fitted to measured data, input -- ouput power), +# currently the only available option. A future release will contain more detailed +# powertrain models based on Gaussian basis functions. +# T_env: [°C] temperature of environment +# T_mot_ini: [°C] initial temperature electric machines +# T_batt_ini: [°C] initial temperature battery +# T_inv_ini: [°C] initial temperature inverter +# T_cool_mi_ini: [°C] initial temperature cooling fluid machine and inverter +# T_cool_b_ini: [°C] initial temperature battery fluid +# r_wheel: [m] Wheel radius +# R_i_simple: [Ohm] internal resistance of simple battery model +# V_OC_simple: [V] Open Circuit Voltage of simple battery model +# SOC_ini: [-] initial SOC of battery +# C_batt: [kWh] Capacity of battery (spreadsheet) +# N_cells_serial: [-] Number of battery cells in series in battery pack +# N_cells_parallel: [-] Number of battery cells in parallel in battery pack +# temp_mot_max: [°C] max. allowed temperature of electric machines (spreadsheet) +# temp_batt_max: [°C] max. allowed temperature of battery (spreadsheet) +# temp_inv_max: [°C] max. allowed temperature of inverters [1, p 7.19] +# N_machines: [-] number of electric machines (spreadsheet) +# transmission: [-] gear transmission +# MotorConstant: [Nm/A] motor constant (linear dependency current and torque) +# C_therm_machine: [J/K] Absolute thermal capacity electric machine + # c_iro = 420 J/kgK; c_magnet = 460 J/kgK; m_machine = 18 kg (spreadsheet) + # -> C_therm_machine = 99 % * m_machine * c_iro + 1 % * m_machine * c_magnet +# C_therm_inv: [J/K] Absolute thermal capacity inverter (equal to that of motor) +# C_therm_cell: [J/K] Absolute thermal capacity battery pouch cell +# C_TempCopper: [1/°C] temperature coefficient copper in electric machine +# m_therm_fluid_mi [kg] mass of cooling fluid (machine inverter circuit) +# m_therm_fluid_b [kg] mass of cooling fluid (battery circuit) +# r_rotor_int: [m] radius rotor internal (spreadsheet) +# r_rotor_ext: [m] radius rotor external (spreadsheet) +# r_stator_int: [m] radius stator internal (spreadsheet) +# r_stator_ext: [m] radius stator external (spreadsheet) +# l_machine: [m] length electric machine (spreadsheet) +# A_cool_inflate_machine: [-] factor of which cooling surface of machine is bigger than raw outer surface +# A_cool_inv: [m^2] cooling area of inverter: length * width +# A_cool_rad: [m^2] cooling area of radiator [2, p 704] +# k_iro: [W/m^2K] thermal conductivity of iron [3] +# h_air: [W/m^2K] convective heat flux coefficient of radiator to air [1, p 9.95] +# h_air_gap: [W/m^2K] convective heat flux coefficient of machine air gap [4] +# h_fluid_mi: [W/m^2K] convective heat flux coefficient of cooling fluid machine + inverter [1, p 9.95] +# c_heat_fluid [J/kgK] specific heat capacity cooling fluid (similar to water) [2] +# flow_rate_inv [kg/s] flow rate of cooling fluid through inverters +# flow_rate_rad [kg/s] flow rate of cooling fluid through radiator (estimated from spreadsheet) +# machine_simple_a,b,c: [-] fitting coefficients (ax^2 + bx + c) of machine efficiency (input -- output power) +# inverter_fit_a,b,c [-] fitting coefficients (ax^2 + bx + c) of inverter efficiency (input -- output power) + +pwr_params_mintime = {"pwr_behavior": false, + "simple_loss": true, + "T_env": 30, + "T_mot_ini": 30, + "T_batt_ini": 30, + "T_inv_ini": 30, + "T_cool_mi_ini": 30, + "T_cool_b_ini": 30, + "r_wheel": 0.3, + "R_i_simple": 0.05, + "V_OC_simple": 700, + "SOC_ini": 0.4, + "C_batt": 41.0, + "N_cells_serial": 176, + "N_cells_parallel": 3, + "temp_mot_max": 170.0, + "temp_batt_max": 50.0, + "temp_inv_max": 100.0, + "N_machines": 2, + "transmission": 6.25, + "MotorConstant": 0.465, + "C_therm_machine": 7567.2, + "C_therm_inv": 7567.2, + "C_therm_cell": 824.0, + "C_TempCopper": 0.004041, + "m_therm_fluid_mi": 5, + "m_therm_fluid_b": 5, + "r_rotor_int": 0.03, + "r_rotor_ext": 0.087, + "r_stator_int": 0.088, + "r_stator_ext": 0.121, + "l_machine": 0.055, + "A_cool_inflate_machine": 3.0, + "A_cool_inv": 0.3969, + "A_cool_rad": 5.0, + "k_iro": 45.0, + "h_air": 50.0, + "h_air_gap": 60.0, + "h_fluid_mi": 5000.0, + "c_heat_fluid": 4181.0, + "flow_rate_inv": 0.2, + "flow_rate_rad": 0.2, + "machine_simple_a": -0.000027510784764, + "machine_simple_b": 1.046187222759047, + "machine_simple_c": 1.001964003837042, + "inverter_simple_a": -0.000707138661579, + "inverter_simple_b": 1.139958410466637, + "inverter_simple_c": 1.004970807882952} diff --git a/stack_master/config/gb_optimizer/veh_dyn_info/ax_max_machines.csv b/stack_master/config/gb_optimizer/veh_dyn_info/ax_max_machines.csv new file mode 100644 index 0000000..f9a0259 --- /dev/null +++ b/stack_master/config/gb_optimizer/veh_dyn_info/ax_max_machines.csv @@ -0,0 +1,62 @@ +#v_mps,ax_max_machines_mps2 +0.0,9.10935576152022 +0.25,8.97995725362624 +0.5,8.850558745732261 +0.75,8.721160237838284 +1.0,8.591761729944306 +1.25,8.462363222050326 +1.5,8.332964714156347 +1.75,8.203566206262368 +2.0,8.07416769836839 +2.25,7.944769190474411 +2.5,7.815370682580432 +2.75,7.685972174686453 +3.0,7.556573666792474 +3.25,7.427175158898495 +3.5,7.297776651004517 +3.75,7.168378143110537 +4.0,7.03897963521656 +4.25,6.90958112732258 +4.5,6.780182619428602 +4.75,6.650784111534623 +5.0,6.521385603640645 +5.25,6.391987095746665 +5.5,6.262588587852687 +5.75,6.133190079958707 +6.0,6.003791572064729 +6.25,5.87439306417075 +6.5,5.744994556276771 +6.75,5.615596048382792 +7.0,5.4861975404888135 +7.25,5.356799032594835 +7.5,5.2274005247008555 +7.75,5.098002016806878 +8.0,4.968603508912898 +8.25,4.83920500101892 +8.5,4.709806493124941 +8.75,4.580407985230962 +9.0,4.451009477336983 +9.25,4.321610969443004 +9.5,4.192212461549026 +9.75,4.062813953655047 +10.0,3.933415445761068 +10.25,3.804016937867089 +10.5,3.67461842997311 +10.75,3.545219922079131 +11.0,3.415821414185153 +11.25,3.286422906291174 +11.5,3.157024398397195 +11.75,3.027625890503216 +12.0,2.898227382609237 +12.25,2.768828874715258 +12.5,2.6394303668212804 +12.75,2.5100318589273014 +13.0,2.3806333510333224 +13.25,2.2512348431393434 +13.5,2.1218363352453644 +13.75,1.9924378273513854 +14.0,1.8630393194574073 +14.25,1.7336408115634283 +14.5,1.6042423036694495 +14.75,1.4748437957754705 +15.0,1.4748437957754705 \ No newline at end of file diff --git a/stack_master/config/gb_optimizer/veh_dyn_info/ggv.csv b/stack_master/config/gb_optimizer/veh_dyn_info/ggv.csv new file mode 100644 index 0000000..f355141 --- /dev/null +++ b/stack_master/config/gb_optimizer/veh_dyn_info/ggv.csv @@ -0,0 +1,19 @@ +# v_mps,ax_max_mps2,ay_max_mps2 +0.0,12.0,12.0 +4.0,12.0,12.0 +8.0,12.0,12.0 +12.0,12.0,12.0 +16.0,12.0,12.0 +20.0,12.0,12.0 +24.0,12.0,12.0 +28.0,12.0,12.0 +32.0,12.0,12.0 +36.0,12.0,12.0 +40.0,12.0,12.0 +44.0,12.0,12.0 +48.0,12.0,12.0 +52.0,12.0,12.0 +56.0,12.0,12.0 +60.0,12.0,12.0 +66.0,12.0,12.0 +72.0,12.0,12.0 diff --git a/stack_master/config/global_planner_params.yaml b/stack_master/config/global_planner_params.yaml new file mode 100644 index 0000000..80b6dff --- /dev/null +++ b/stack_master/config/global_planner_params.yaml @@ -0,0 +1,9 @@ +# Parameters for global planner +rate: 10 # [hz] +test_on_car: True # also set True if using on a bag +required_laps: 1 # how many laps to drive until calculating global waypoints +safety_width: 0.7 # [m] including the width of the car +safety_width_sp: 0.7 # [m] including the width of the car for shortest path optimization +occupancy_grid_threshold: 10 + +show_plots: False diff --git a/stack_master/config/local_sysid_ver_params.yaml b/stack_master/config/local_sysid_ver_params.yaml new file mode 100644 index 0000000..d927588 --- /dev/null +++ b/stack_master/config/local_sysid_ver_params.yaml @@ -0,0 +1,42 @@ +# Parameters for local planner +rate: 40 # [hz] +test_on_car: True # also set True if using on a bag +n_loc_wpnts: 50 # number of local waypoints published, 1 waypoints every 0.1 meter# TODO add s where we want to go aggressive +every_n_lap_aggressive: 3 # number of laps driven in aggressive mode + +ftg_only: False +ftg_mode: "aggressive" # set to "safe" for precheck + +# Parameters for follow the gap controller +debug: False # publishes filtered scans if True but may not run smoothly + +safety_radius: 40 # helps not to cut corners +bubble_radius: 45 +preprocess_conv_size: 3 +best_point_conv_size: 200 # helps not to cut corners +max_lidar_dist: 9. + +range_offset: 220 # LiDAR has 1080 range points, only consider [range_offset,-range_offset] + +# speed is scaled with (1 - (steering_angle/max_steering)**steering_punish) and min(1, gap_distance/track_width - gap_offset) +cont_approach: True # continuous speed regulation +speed_filter: True +max_steering: 0.5 +steering_punish: 2 # 0.4 for max_speed = 10, 0.75 for max_speed = 7 +gap_offset: 0.1 # 0.1 or 0.05 for max_speed = 10, 0 for max_speed = 7 +track_width: 2.6 # approx gap distance on a straight when there are no obstacles (set debug to True to see gap distances during driving) +max_speed: 6. +min_speed: 2. +# not needed in ini version +speed_control_dist: 1. # if distance to best point is smaller than this, then speed does also depend on this distance + +# schedule for aggressivity +aggressive_schedule: + - 0 + - 1 + - 0 + - 0 + - 1 + - 0 +# parameter for switching +switch_position_s: 30 diff --git a/stack_master/config/opponent_tracker_params.yaml b/stack_master/config/opponent_tracker_params.yaml new file mode 100644 index 0000000..38e4d8e --- /dev/null +++ b/stack_master/config/opponent_tracker_params.yaml @@ -0,0 +1,19 @@ +detect: + rate: 40 # rate at which the node is running + lambda: 10 # minimum reliables detection angle in degrees + sigma: 0.03 # standard deviation of the noise of the lidar ranges in m + min_2_points_dist: 0.01 # minimum distance between two points + +tracking: + rate: 40 # rate at which the node is running + P_vs: 0.2 # proportional gain for the vs + P_d: 0.02 # proportional gain for the d + P_vd: 0.2 # proportional gain for the vd + measurment_var_s: 0.002 # the variance of the measurment noise in the s direction + measurment_var_d: 0.002 # the variance of the measurment noise in the d direction + measurment_var_vs: 0.2 + measurment_var_vd: 0.2 + process_var_vs: 2 # the variance of the process velocity noise in the s direction + process_var_vd: 8 # the variance of the process velocity noise in the d direction + max_dist: 0.5 # max distance for association + var_pub: 1 # obstacles with bigger variance are not published \ No newline at end of file diff --git a/stack_master/config/state_machine_params.yaml b/stack_master/config/state_machine_params.yaml new file mode 100644 index 0000000..af05374 --- /dev/null +++ b/stack_master/config/state_machine_params.yaml @@ -0,0 +1,30 @@ +# Parameters for local planner +rate: 80 # [hz] +test_on_car: True # also set True if using on a bag +n_loc_wpnts: 80 # number of local waypoints published, 1 waypoints every 0.1 meter + +### FTG Parameters ### +debug: False # publishes filtered scans if True but may not run smoothly + +safety_radius: 40 # helps not to cut corners +max_lidar_dist: 9. + +range_offset: 180 # LiDAR has 1080 range points, only consider [range_offset,-range_offset] +track_width: 2.6 # approx gap distance on a straight when there are no obstacles (set debug to True to see gap distances during driving) +max_speed: 6.0 +###################### + +splini_ttl: 2 # [s] ttl counter for validity of spliner waypoints -> NOW DYNAMIC RECONFIGURABLE + +gb_ego_width_m: 0.4 # [m], distance from gb path for rejoining +lateral_width_gb_m: 1.1 # [m] lateral width within which we consider obstacles to be on the overtaking line -> NOW DYNAMIC RECONFIGURABLE +gb_horizon_m: 6.9 # [m] horizon considered for the global waypoints to check for obstacles + +overtaking_horizon_m: 6.9 # [m] horizon considered for overtaking +lateral_width_ot_m: 0.3 # [m] lateral width within which we consider opponents to be on the overtaking line -> NOW DYNAMIC RECONFIGURABLE +splini_hyst_timer_sec: 0.2 # [s] time we have to wait between switching from overtaking on one side to the other -> NOW DYNAMIC RECONFIGURABLE + +ftg_speed_mps: 0.1 # [m/s] speed threshold below which we start a timer for activating FTG +ftg_timer_sec: 3 # [s] time we have to stay slower than the `ftg_speed` threshold before we activate FTG + +volt_threshold: 11 # [V] voltage threshold below which we start screaming diff --git a/stack_master/launch/base_system.launch b/stack_master/launch/base_system.launch new file mode 100644 index 0000000..150ac4b --- /dev/null +++ b/stack_master/launch/base_system.launch @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/launch/headtohead.launch b/stack_master/launch/headtohead.launch new file mode 100644 index 0000000..985d9d6 --- /dev/null +++ b/stack_master/launch/headtohead.launch @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/launch/mapping.launch b/stack_master/launch/mapping.launch new file mode 100644 index 0000000..c869e80 --- /dev/null +++ b/stack_master/launch/mapping.launch @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/launch/state_indicator.launch b/stack_master/launch/state_indicator.launch new file mode 100755 index 0000000..8c29580 --- /dev/null +++ b/stack_master/launch/state_indicator.launch @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/stack_master/launch/sysid_verify.launch b/stack_master/launch/sysid_verify.launch new file mode 100644 index 0000000..8d6697f --- /dev/null +++ b/stack_master/launch/sysid_verify.launch @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [false, false, false, + false, false, true, + true, false, false, + false, false, false, + false, false, false] + + + + + [false, false, false, + false, false, true, + false, false, false, + false, false, true, + false, false, false] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/launch/time_trials.launch b/stack_master/launch/time_trials.launch new file mode 100644 index 0000000..b0113a3 --- /dev/null +++ b/stack_master/launch/time_trials.launch @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/stack_master/maps/.gitignore b/stack_master/maps/.gitignore new file mode 100644 index 0000000..3aa25eb --- /dev/null +++ b/stack_master/maps/.gitignore @@ -0,0 +1,8 @@ +# I assume most maps in stack_master/.../ are not going to be uploaded to Github. +# This gitignore exists for that purpose. +**.yaml +**.png +**.pbstream +**.data +**.posegraph +**.pgm \ No newline at end of file diff --git a/stack_master/maps/JFR_racingv5/JFR_racingv5.pbstream b/stack_master/maps/JFR_racingv5/JFR_racingv5.pbstream new file mode 100644 index 0000000..645c2c8 Binary files /dev/null and b/stack_master/maps/JFR_racingv5/JFR_racingv5.pbstream differ diff --git a/stack_master/maps/JFR_racingv5/JFR_racingv5.png b/stack_master/maps/JFR_racingv5/JFR_racingv5.png new file mode 100644 index 0000000..4656cd5 Binary files /dev/null and b/stack_master/maps/JFR_racingv5/JFR_racingv5.png differ diff --git a/stack_master/maps/JFR_racingv5/JFR_racingv5.yaml b/stack_master/maps/JFR_racingv5/JFR_racingv5.yaml new file mode 100644 index 0000000..159384c --- /dev/null +++ b/stack_master/maps/JFR_racingv5/JFR_racingv5.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: JFR_racingv5.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -7.748979949951172 +- -6.321185302734375 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/maps/JFR_racingv5/JFR_racingv5_backup.png b/stack_master/maps/JFR_racingv5/JFR_racingv5_backup.png new file mode 100644 index 0000000..4e1b651 Binary files /dev/null and b/stack_master/maps/JFR_racingv5/JFR_racingv5_backup.png differ diff --git a/stack_master/maps/JFR_racingv5/global_waypoints.json b/stack_master/maps/JFR_racingv5/global_waypoints.json new file mode 100644 index 0000000..c495de2 --- /dev/null +++ b/stack_master/maps/JFR_racingv5/global_waypoints.json @@ -0,0 +1 @@ +{"map_info_str": {"data": "IQP estimated lap time: 10.172s; IQP maximum speed: 8.483m/s; SP estimated lap time: 10.1983s; SP maximum speed: 8.4554m/s; "}, "est_lap_time": {"data": 10.198310572918402}, "centerline_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -4.550903772178275, "y": -2.6914872724959276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -4.451580190355467, "y": -2.702437978642433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -4.351974214601121, "y": -2.7103890140444005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -4.252177606639081, "y": -2.7154095534990486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -4.1522719111709145, "y": -2.717351800078247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -4.0523568951474065, "y": -2.715943234602217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -3.952550818125899, "y": -2.7110950949395147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -3.852958098509758, "y": -2.7029647715462364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -3.7538881087193428, "y": -2.6899789951433704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -3.656266496078189, "y": -2.6689170880002804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -3.560708486764569, "y": -2.63977555055221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -3.4678033015238525, "y": -2.603102677108014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -3.379135265949133, "y": -2.5570840095140723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -3.2951516403612198, "y": -2.5030229230439036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -3.2165468870276506, "y": -2.4414524963529223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -3.1470013541566595, "y": -2.369857659013031, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -3.092053145093338, "y": -2.286678532772115, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -3.059127976341288, "y": -2.1925635315441183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -3.0502577919920553, "y": -2.093196476869633, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -3.0598668623632346, "y": -1.9938960187387327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -3.0844991346132855, "y": -1.8971270783592982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -3.11961966277632, "y": -1.8035993942222193, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -3.1615116011303375, "y": -1.7129000155098786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -3.2091703563632494, "y": -1.625086655425126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -3.2608829013997678, "y": -1.5395805140343637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -3.3143979394085568, "y": -1.4551923509995404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -3.3688973772318223, "y": -1.3714331363567103, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -3.424080953180314, "y": -1.2881234373033639, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -3.47883334156851, "y": -1.2045298708246113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -3.5331679618733016, "y": -1.1206642989167606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -3.5865987771796997, "y": -1.0362209338830874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -3.6381484438256315, "y": -0.9506226962524925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -3.685779106366834, "y": -0.8627894153532404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -3.727636804830289, "y": -0.7720824968385512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -3.761285446731931, "y": -0.6780435132525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -3.7821993940064367, "y": -0.5804379490212616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -3.78776098715811, "y": -0.48080856836057967, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -3.7745023293708106, "y": -0.38190561236868187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -3.743989569088114, "y": -0.2868957289551892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -3.6981341244462107, "y": -0.19831817257736353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -3.6379751318891755, "y": -0.11864326892443919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -3.5690129037183107, "y": -0.04639074102297915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -3.4935871923551742, "y": 0.019103673170004117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -3.414835648193996, "y": 0.08060609820412547, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -3.3343872736841225, "y": 0.13986896564606882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -3.2514786120528893, "y": 0.19564041825388, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -3.166582986796746, "y": 0.248350997614514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -3.080562471892801, "y": 0.29919895950660086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -2.9933801075058026, "y": 0.34802493854603855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -2.905223290492347, "y": 0.39508003107262063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -2.8165546444130936, "y": 0.44116251768610376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -2.728212925500336, "y": 0.48786886883243197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -2.64038859694408, "y": 0.5355377438877256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -2.553277123614656, "y": 0.5844952896275472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -2.46732282672773, "y": 0.6354613860373067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -2.3826447000148874, "y": 0.6885151076976549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -2.2997718219905465, "y": 0.7443495920858814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -2.2192447574372944, "y": 0.8035022524439053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -2.1423170574177335, "y": 0.8672551326969814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -2.06932670491643, "y": 0.935476261442815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -2.0020203434472874, "y": 1.0093039643386619, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -1.9427271860897282, "y": 1.0896871934290246, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -1.8909808911982278, "y": 1.1751126276683996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -1.8463438866343664, "y": 1.2644812307491229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -1.8074899929231887, "y": 1.356528455665688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -1.7754112694243913, "y": 1.4511377209479746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -1.7483474817879363, "y": 1.5473173528493793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -1.725744221998806, "y": 1.6446475621549599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -1.7078893339697547, "y": 1.7429451424015363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -1.6945804420533, "y": 1.8419786660417488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -1.684258913602511, "y": 1.9413692550688415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -1.6764920581431282, "y": 2.0409930188301235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -1.670846422797498, "y": 2.140760293822346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -1.6668895148505467, "y": 2.2406095517407425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -1.6654601681102685, "y": 2.340523922315355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -1.664806343855323, "y": 2.440450760287785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -1.664424012705942, "y": 2.5403775677449976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -1.664744345032477, "y": 2.6403052001402405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -1.6635899522135855, "y": 2.740225664258747, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -1.6602751965425808, "y": 2.8400963234669883, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -1.6543794515338768, "y": 2.939848590553134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -1.6481214773359047, "y": 3.0395803020247634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -1.641674868268583, "y": 3.139296989082923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -1.6366842967229307, "y": 3.2390978811724755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -1.6339400409432154, "y": 3.3389875532366835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -1.631629775653968, "y": 3.4388880546851905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -1.629172698986979, "y": 3.538786818218006, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -1.6267404229740703, "y": 3.6386862005158225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -1.6238577721175371, "y": 3.7385734212994564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -1.6184596485779936, "y": 3.8383520509904963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -1.6112239051827943, "y": 3.9380164669260873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -1.6019502147962428, "y": 4.037510834141179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -1.5902162177356785, "y": 4.136744127344694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -1.5755682803780346, "y": 4.235588462306824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -1.5575131047881972, "y": 4.333866539421057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -1.5355141106903691, "y": 4.431335879804597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -1.508994500936825, "y": 4.527670155685821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -1.4773497439471905, "y": 4.622438979164088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -1.4399725706181128, "y": 4.715089185681628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -1.3962929121237428, "y": 4.8049328395019195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -1.3458327804337178, "y": 4.891149324834064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -1.2870087138568431, "y": 4.971847674798794, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -1.2198877410687674, "y": 5.045782952309697, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -1.1444888623873595, "y": 5.111233814432104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -1.0603137908142262, "y": 5.164868389646373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -0.9693362844675141, "y": 5.206018194661154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -0.8744812334231482, "y": 5.237350700034797, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -0.7775472192574612, "y": 5.261548320463994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -0.6793981494890351, "y": 5.280254250634709, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -0.5805913653118215, "y": 5.295141715314008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -0.481397635509986, "y": 5.307215796480674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -0.3820007143186901, "y": 5.317504322220131, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -0.2825160319024924, "y": 5.3269161478372355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -0.18303874511198306, "y": 5.336405078223347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -0.08363565726002677, "y": 5.346635716420584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": 0.015586651809421623, "y": 5.3584757492739685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": 0.11449926919201313, "y": 5.3726605586195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": 0.2128257706895939, "y": 5.390431019618693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": 0.3100728772639649, "y": 5.413289978712438, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": 0.4049905405440672, "y": 5.444368976055754, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": 0.4953939693400442, "y": 5.486695669708853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": 0.5784898214278564, "y": 5.542008696560982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": 0.6523684194540434, "y": 5.609166712765694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": 0.7171127205680548, "y": 5.6851462586526065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": 0.7709651085086869, "y": 5.7692304761669995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": 0.8136398753795683, "y": 5.859488594451443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": 0.8438544872781943, "y": 5.954642711244909, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": 0.8608376842308928, "y": 6.053029046675433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": 0.8644538722637296, "y": 6.152801701133936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": 0.8554084988274604, "y": 6.25224564490136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": 0.8335074314049132, "y": 6.349675179856858, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": 0.800637926718842, "y": 6.443974045128209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": 0.7574476116146764, "y": 6.534012518921704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": 0.7054589075850121, "y": 6.619303113982121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": 0.6457876817943088, "y": 6.699418638808925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": 0.5778125051683553, "y": 6.772584609829943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": 0.5013352154603916, "y": 6.836802417729801, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": 0.41851411128394106, "y": 6.89260056156898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": 0.33045813817351055, "y": 6.939735488376742, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": 0.23864759044847866, "y": 6.979114236496634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": 0.14458561330143918, "y": 7.0127859749810915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": 0.04920834708274347, "y": 7.042582420745972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -0.04706184217988983, "y": 7.069360198002453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -0.1439294730161046, "y": 7.093899350004181, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -0.2411482324521398, "y": 7.1170130052432015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -0.3385191610324392, "y": 7.139478522216387, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -0.43586993631908555, "y": 7.162030927324428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -0.5330138221271079, "y": 7.185453879072352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -0.6297071800512436, "y": 7.2106629269361795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -0.7256636852525901, "y": 7.238538130736322, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -0.8204889232691829, "y": 7.270017521847991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -0.9134600607459374, "y": 7.306587941921778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -1.0031632641351451, "y": 7.350491955740477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -1.087878291108112, "y": 7.40336286430114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -1.165778644012556, "y": 7.465789505656105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -1.2346401730970342, "y": 7.5380889401879925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -1.29437779788833, "y": 7.618119038195998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -1.343436999960668, "y": 7.705108373260206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -1.3826003840713423, "y": 7.79698224541659, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -1.4118131958988442, "y": 7.8924706427739615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -1.430138752885718, "y": 7.990640475118331, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -1.4372105451894133, "y": 8.090262096766356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -1.4330158647742477, "y": 8.19004242749969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -1.418263866966483, "y": 8.288815606524185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -1.3935928794614627, "y": 8.385588092631936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -1.3597293297956248, "y": 8.479565416840277, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -1.3175796763155287, "y": 8.570128289653375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -1.2680894263057412, "y": 8.656910183977642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -1.2119871242167168, "y": 8.73957723463629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -1.1500860419722667, "y": 8.818000068667377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -1.0820686874855951, "y": 8.89117773367191, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -1.0093413454584765, "y": 8.959684193441973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -0.9316364098242569, "y": 9.02248172051344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -0.8499913724787387, "y": 9.08006750658639, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -0.7654829564321983, "y": 9.13337142677218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -0.6779889936011229, "y": 9.181606571359616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -0.5885980208981018, "y": 9.226261969621596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -0.4968004312788066, "y": 9.26570884643776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -0.40276332393320763, "y": 9.299479891663536, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -0.3072954315584141, "y": 9.328966562661469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -0.21074754075706945, "y": 9.354716434094957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -0.1135404499778253, "y": 9.377861987818262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -0.015873736797587565, "y": 9.398998319571616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": 0.0820610219780902, "y": 9.418861106570322, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": 0.18009212650842787, "y": 9.43824414188771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": 0.2780885903020314, "y": 9.45780067212037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": 0.3759187038850542, "y": 9.478171183751762, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": 0.4734307338812857, "y": 9.500003969873099, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": 0.5704231433455446, "y": 9.524033163979992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": 0.6666738818028336, "y": 9.550870770209746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": 0.7618706595083987, "y": 9.581215710093446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": 0.8554360464203922, "y": 9.616275620951031, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": 0.9469642229132249, "y": 9.656356189022869, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": 1.0367377729742349, "y": 9.700219912799914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": 1.123917191080165, "y": 9.74899412344304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": 1.207905579616103, "y": 9.803103304384049, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": 1.2881207089086246, "y": 9.86266534266402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": 1.3640338224189286, "y": 9.927608262176829, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": 1.4341676058507318, "y": 9.998723751369655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": 1.4977507842030429, "y": 10.075761011042255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": 1.5506695198645561, "y": 10.160422314503974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": 1.5920868746503212, "y": 10.251283861722037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": 1.6199542036108387, "y": 10.34712142941305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": 1.6333044942328925, "y": 10.446056351205366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": 1.635714926024083, "y": 10.545902718280967, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": 1.6271250223972853, "y": 10.645419204963043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": 1.6105249975050655, "y": 10.74391020166285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": 1.5849202368103559, "y": 10.840476944386605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": 1.5532568537602234, "y": 10.935237314084784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": 1.5168516814748032, "y": 11.028285394342397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": 1.4755779266333404, "y": 11.119287163526737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": 1.431992342728054, "y": 11.209206671242718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": 1.386372483283635, "y": 11.298105721210852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": 1.3391025710426787, "y": 11.386147105558813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": 1.2909516447793818, "y": 11.473708313477383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": 1.241126433235441, "y": 11.560329600439026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": 1.1909054781531743, "y": 11.646721904361572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": 1.1418841464678098, "y": 11.733798139733803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": 1.093462608502616, "y": 11.821209134778995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": 1.0469482588657815, "y": 11.909650679219038, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": 1.0023291785884132, "y": 11.999061871252465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": 0.9614262054035752, "y": 12.090235963141167, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": 0.9225942559030342, "y": 12.182296703631959, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": 0.8871030840770283, "y": 12.275706430870425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": 0.8551491059482661, "y": 12.370378867689903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": 0.827546837504368, "y": 12.466404698250063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": 0.8051278870662659, "y": 12.563764536621951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": 0.7886346938778399, "y": 12.662295137231288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": 0.7798068069623656, "y": 12.761772689101234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": 0.7794273533871775, "y": 12.861669398050239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": 0.7863540002493412, "y": 12.961321957205962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": 0.8021437946235546, "y": 13.059941206965414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": 0.8271787881503523, "y": 13.156612865367396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": 0.8610848448390036, "y": 13.250577891592714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010431107460711, "y": 13.342147013407203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": 0.9459723608209517, "y": 13.431390361302693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": 0.9943102787633658, "y": 13.518833678627084, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": 1.0460879327235864, "y": 13.604297821450094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": 1.1000281166398682, "y": 13.688416771817545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": 1.1569428356587708, "y": 13.770545437411304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": 1.2153057556052749, "y": 13.851659787363205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": 1.2749259924961223, "y": 13.931850150779947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": 1.336202519037718, "y": 14.010783963545016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": 1.3981549632357488, "y": 14.08919012707341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": 1.461332672395861, "y": 14.166613428149304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": 1.5247102529623398, "y": 14.24387329580224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": 1.5877246301095886, "y": 14.32142645272714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": 1.6495765615391773, "y": 14.399912570953056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": 1.711172137060711, "y": 14.478596680434995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": 1.7699999572979574, "y": 14.55937170903514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": 1.8276969943048837, "y": 14.640957849259543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": 1.8828726640868307, "y": 14.724265919392538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": 1.934895616061409, "y": 14.809574076452277, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": 1.9853740402243325, "y": 14.895809556358927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": 2.0319204130221724, "y": 14.984215730622278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": 2.0748344187805765, "y": 15.074454877469554, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": 2.11358902430802, "y": 15.166545562720898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": 2.1470230639289687, "y": 15.260693033273947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": 2.174613208443236, "y": 15.356715890616915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": 2.1973260172857043, "y": 15.454012462544938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": 2.214491628327594, "y": 15.552437581933532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": 2.2250457967512824, "y": 15.651791032057481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": 2.2297020964415184, "y": 15.751593731857088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": 2.2297460454284708, "y": 15.851511976835273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": 2.2261901315217365, "y": 15.951362453785817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": 2.2187468186667965, "y": 16.051009755039264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": 2.2086717708710126, "y": 16.15042475312528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": 2.195912720066727, "y": 16.24953154864745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": 2.1806579887380075, "y": 16.3482851211604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": 2.163382920169329, "y": 16.44670786962459, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": 2.1443050072179255, "y": 16.544796829651, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": 2.1236140613804073, "y": 16.64255958866905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": 2.101378610717638, "y": 16.73998279643208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": 2.0776377439812994, "y": 16.837044737795026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": 2.0515618947935024, "y": 16.93350592047633, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": 2.021651371809217, "y": 17.02883769971198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": 1.9871952382060074, "y": 17.12262407993241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": 1.9483843071503186, "y": 17.214692313840985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": 1.9060915104641383, "y": 17.305223687160897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": 1.8598628442984433, "y": 17.393800561799754, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": 1.8091034500188192, "y": 17.479860688244404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": 1.754272093024876, "y": 17.56339523225383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": 1.695845762620637, "y": 17.644447407262476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": 1.633821832265502, "y": 17.72279029235779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": 1.5679024498802934, "y": 17.797871154934867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": 1.4981795315502795, "y": 17.86944350899853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": 1.423373796692807, "y": 17.93565046686902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": 1.34465986661097, "y": 17.997173151187972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": 1.2620182309168593, "y": 18.05329788096842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": 1.1759971044542876, "y": 18.10409690793919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": 1.0864674220792563, "y": 18.148427625231864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": 0.9940642101267887, "y": 18.186426844558888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": 0.8993042418828762, "y": 18.218086446286716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": 0.8024914122509905, "y": 18.24275010644326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 0.704113907321934, "y": 18.2600932145064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 0.604611066318568, "y": 18.26888902101964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 0.504719729981107, "y": 18.268781841467305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 0.4052546670644082, "y": 18.259535232867076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 0.3070634207623234, "y": 18.241134667315126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 0.21110267219691112, "y": 18.213417416926788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 0.11858470861394205, "y": 18.175801289996407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 0.03038580111445726, "y": 18.12896784698733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": -0.05258795535429375, "y": 18.073402630881095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": -0.1299863254815766, "y": 18.010256600710736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": -0.20221064124854282, "y": 17.941244768828913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": -0.26853486383312136, "y": 17.86654369085573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": -0.32933945921594304, "y": 17.787263397544567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": -0.3849715300783158, "y": 17.70427935719694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": -0.43648534242162673, "y": 17.618666288077875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": -0.48438127199299125, "y": 17.530967419941785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": -0.5282444640955317, "y": 17.441189863585457, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": -0.5681143685484956, "y": 17.349567887542136, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": -0.6052663356038952, "y": 17.256812584212483, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": -0.6400989490896538, "y": 17.16315180599459, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": -0.6736886099262341, "y": 17.06903848891538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": -0.7052997193114223, "y": 16.97424720424421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": -0.7353897938157979, "y": 16.878956360777533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": -0.7641914392059443, "y": 16.783269249710074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": -0.7927684411053338, "y": 16.68751351686555, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": -0.8214676470214026, "y": 16.59179450892416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": -0.8492429434266267, "y": 16.495803473200517, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": -0.8780143762550661, "y": 16.400106813870334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": -0.9069611656671345, "y": 16.30446350057346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": -0.9371732129863464, "y": 16.209212204026823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": -0.9690997466136994, "y": 16.114523919496527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": -1.0026975920976877, "y": 16.020413446190535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": -1.0360224712333304, "y": 15.92620522960374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": -1.0708403989288462, "y": 15.832540271541232, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": -1.1056973938254264, "y": 15.738888150779294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": -1.1410007833120268, "y": 15.645403713745216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": -1.1764976104484237, "y": 15.551992967616862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": -1.2117554607738605, "y": 15.458491536458396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": -1.2455760668246771, "y": 15.364462798557335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": -1.2773614230294048, "y": 15.269725740130337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": -1.3090333467927144, "y": 15.174949207549862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": -1.3393357618733732, "y": 15.079725422036514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": -1.3691421936338681, "y": 14.98434818272252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": -1.3977611488682493, "y": 14.888607708306003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": -1.4241805095390978, "y": 14.792235575479323, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": -1.4496971406544208, "y": 14.695623331932955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": -1.471864538541186, "y": 14.598193447242362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": -1.4910879812710045, "y": 14.500134788524003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": -1.5090053249408653, "y": 14.401830401876104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": -1.5238968826590669, "y": 14.303029557916858, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": -1.5357902910546684, "y": 14.203815975026428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": -1.5452627505487784, "y": 14.104341317735205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": -1.5510229728579565, "y": 14.004589943680307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": -1.5551500753238767, "y": 13.90475089889715, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": -1.557185656184729, "y": 13.804847246347565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": -1.5558930509734137, "y": 13.704931357429288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": -1.5534517737565214, "y": 13.605035035663972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": -1.5494125588029608, "y": 13.50518981579188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": -1.542720378169653, "y": 13.405490707145455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": -1.5338769592919232, "y": 13.305955091656216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": -1.522817452841259, "y": 13.20665657079874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": -1.508699200298417, "y": 13.107732768104318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": -1.4920143503793384, "y": 13.009210239601783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": -1.473417221810819, "y": 12.911028083273468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": -1.4547732261346997, "y": 12.812854022348915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": -1.4363625829892057, "y": 12.714638756645723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": -1.4186938711852477, "y": 12.616284269251429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": -1.4014551570091058, "y": 12.517853793844065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": -1.3867049693640592, "y": 12.419025745468993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -1.374267601484835, "y": 12.319876808465173, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -1.3658692866781137, "y": 12.220318976603274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -1.3616091394185674, "y": 12.120491095343397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -1.3618730818510079, "y": 12.020577091174133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -1.3683348761443055, "y": 11.920898835599516, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -1.3828112557904655, "y": 11.822050762129336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -1.40548264589963, "y": 11.724764427716474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -1.4369405930390575, "y": 11.62996802550129, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -1.4756558698520066, "y": 11.537881333910411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -1.5231747876600963, "y": 11.450041046754645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -1.5805378144625362, "y": 11.36829788853848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -1.6473041103255381, "y": 11.294041623556975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -1.7212067871001893, "y": 11.22685118013515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -1.80070019321053, "y": 11.166351484250054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -1.8842240589435342, "y": 11.111543222362801, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -1.97030629976913, "y": 11.060806649720734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -2.058343719834296, "y": 11.013543685595042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -2.1477155113519455, "y": 10.96885199344948, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -2.2378271621872567, "y": 10.925659190780232, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -2.3284542365195704, "y": 10.883559356384888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -2.419505955942018, "y": 10.842384545791685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -2.51043711018735, "y": 10.800944159367535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -2.6012476885056013, "y": 10.759240382786684, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -2.691720141812898, "y": 10.71680942483139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -2.781228604031738, "y": 10.672396418898009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -2.869371232242132, "y": 10.625321303864837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -2.9559289626375116, "y": 10.575409732532941, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -3.0400904826826154, "y": 10.52156690028677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": -3.121199769447082, "y": 10.463227127442991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": -3.1987562363196567, "y": 10.400254561208381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": -3.2717090289010318, "y": 10.3320120874227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": -3.3391786161505896, "y": 10.258343204788963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": -3.401911438837519, "y": 10.180579661409105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": -3.4600134825242135, "y": 10.099313451179201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": -3.5141843782590128, "y": 10.015354390456647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": -3.563658245038027, "y": 9.928548122418745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": -3.6087790938428124, "y": 9.83938999830047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": -3.65092658326231, "y": 9.74879343857251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": -3.688592790578809, "y": 9.65623992253575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": -3.7234568368786225, "y": 9.562594416835974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": -3.754584933047597, "y": 9.46764074364698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": -3.7822381636996933, "y": 9.371619441677515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": -3.807130271865487, "y": 9.274845299434647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": -3.8307017988489345, "y": 9.177736920853057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": -3.852273388678233, "y": 9.080168073895077, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": -3.8728652267476584, "y": 8.982384993741835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": -3.892194532391237, "y": 8.884343296484472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": -3.9119701375809677, "y": 8.786390617133204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": -3.9317380378598585, "y": 8.688438582092688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": -3.952072379344663, "y": 8.590602226714518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": -3.973612067000456, "y": 8.493022621047468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": -3.9964349308303, "y": 8.395738401824827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": -4.021287255806572, "y": 8.298950382032071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": -4.046126597405027, "y": 8.202157813861385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": -4.0714770637851005, "y": 8.105501535167779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": -4.096998215043028, "y": 8.008889390916245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": -4.123778114935743, "y": 7.912619210538196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": -4.149969191280064, "y": 7.816185421068334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": -4.177510449344372, "y": 7.720127868913912, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": -4.204596355486639, "y": 7.623944082248858, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": -4.232565560172388, "y": 7.528009180311838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": -4.2621582308172545, "y": 7.432562440880727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": -4.290196926408744, "y": 7.336648261498069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": -4.318684910463329, "y": 7.240869114356581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": -4.346652518517244, "y": 7.144935297973078, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": -4.373762554131234, "y": 7.04875785793416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": -4.399950958859629, "y": 6.952323970589415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": -4.425923941813662, "y": 6.8558323811771595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": -4.451637141899731, "y": 6.759270121384598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": -4.47837466078036, "y": 6.662984595098511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": -4.505007622210406, "y": 6.566670053686692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": -4.53144411982684, "y": 6.47030150223382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": -4.558227450955206, "y": 6.374031513386018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": -4.58372826896996, "y": 6.277411112050029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": -4.6078399291340855, "y": 6.180440150562666, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -4.6312709904570974, "y": 6.083299524731067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -4.654912619708034, "y": 5.98620772829734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -4.679264641149521, "y": 5.889292018182424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -4.704397904260423, "y": 5.792576115071063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -4.728723732199464, "y": 5.6956540145022885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -4.753249849116405, "y": 5.598782491736786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -4.776301610241882, "y": 5.50155653141423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -4.798181762213749, "y": 5.404053503892091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -4.820616916096136, "y": 5.306676780738047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -4.843980197129454, "y": 5.209520660783728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -4.868912935758926, "y": 5.11275317256706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -4.894493223370571, "y": 5.016159470472711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -4.920185458836886, "y": 4.9195916916676685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -4.947633912856369, "y": 4.823506388146515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -4.974597377683466, "y": 4.727284232888126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -5.000833601796559, "y": 4.630861076419864, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -5.02554908664754, "y": 4.534038730522954, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -5.048247407708432, "y": 4.4367229506715855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -5.068981868799546, "y": 4.338975563749429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -5.085168213130733, "y": 4.240383616989549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -5.097210079916952, "y": 4.141201424912862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -5.103295848889503, "y": 4.04147194567257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -5.104776702036801, "y": 3.941589160645321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -5.100406025279958, "y": 3.841765443103514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -5.091556315528114, "y": 3.7422523656435227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -5.075941993021946, "y": 3.6435700140385374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -5.05381666632592, "y": 3.5461702357094906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -5.0237517977867086, "y": 3.45090983842881, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -4.986348399827901, "y": 3.358263198715932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -4.944404869129243, "y": 3.2675761876716183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -4.8992184445398355, "y": 3.178450439459747, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -4.851740590060552, "y": 3.0905291510388553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -4.803120056207735, "y": 3.003226469605196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -4.753630720676338, "y": 2.9164134909914146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -4.703949396394423, "y": 2.8297096120014316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -4.654124662456028, "y": 2.7430880119101957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -4.604134265471077, "y": 2.656563454464396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -4.555503810681697, "y": 2.5692678130085254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -4.508398635273457, "y": 2.4811393621931463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -4.463600892687702, "y": 2.391833700418137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -4.423123601686541, "y": 2.3004807678947614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": -4.389506195111687, "y": 2.20640828817441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": -4.364601999409326, "y": 2.109702339966931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": -4.3542766879791595, "y": 2.0105087318636707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": -4.367451902262881, "y": 1.9118006327565347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": -4.404192344803352, "y": 1.8191934418850486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": -4.462944182894379, "y": 1.7386331412398799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": -4.533980018789255, "y": 1.668504392760233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": -4.611810606571013, "y": 1.6058472930340448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": -4.693145621582976, "y": 1.547819768305665, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": -4.776751822224971, "y": 1.4930906266319206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": -4.861088647686338, "y": 1.4394904296851003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": -4.945470447420635, "y": 1.385962137147557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": -5.029477499496296, "y": 1.331845459078791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": -5.113912986682855, "y": 1.2784009754840218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": -5.1982550040768905, "y": 1.2248104419416324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": -5.282021527206097, "y": 1.170327595885373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": -5.364625622720649, "y": 1.1140956073773438, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": -5.445165375496213, "y": 1.0549506183247594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": -5.523101332038537, "y": 0.9924302602667588, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": -5.596557492633418, "y": 0.9247038074309293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": -5.664566007264684, "y": 0.8515360087673423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": -5.725446706195887, "y": 0.7723501558304668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": -5.778509322733805, "y": 0.6877423343869664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": -5.823821268642966, "y": 0.5987266225138506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": -5.861363396654322, "y": 0.5061588490322159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": -5.892765205402045, "y": 0.4113005214551207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": -5.920333345728006, "y": 0.3152554152428914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": -5.944227356633919, "y": 0.21823221325033781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": -5.964771021580463, "y": 0.12044185606007568, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": -5.982548653944837, "y": 0.022110491052757884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": -5.998254119812064, "y": -0.0765754861116062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": -6.014509791438364, "y": -0.1751732056769867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": -6.030830698728651, "y": -0.2737601681730579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": -6.046802431859815, "y": -0.37240448864416065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": -6.062417241953653, "y": -0.4711058643737822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": -6.077551272728651, "y": -0.5698821143550192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": -6.092317508981416, "y": -0.6687137834596586, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": -6.106590242113902, "y": -0.767618227393515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": -6.120506185731679, "y": -0.8665733442627238, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": -6.133809004598157, "y": -0.9656094524614511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": -6.144818646006629, "y": -1.064926661369675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": -6.152169612373098, "y": -1.164573618373868, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": -6.154487489762144, "y": -1.2644606837683339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": -6.152158926492854, "y": -1.3643566457251588, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": -6.144466011748322, "y": -1.4639683294445398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": -6.129940211975958, "y": -1.5628134916782808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": -6.109434442394644, "y": -1.6605804428058986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": -6.080991331689032, "y": -1.7563422897266414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": -6.045400150763046, "y": -1.8496704164560869, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": -6.001280597095447, "y": -1.9392867436547332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": -5.949959644880236, "y": -2.024982365588695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": -5.890849941598777, "y": -2.105509035665, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": -5.825654978913278, "y": -2.181197748492729, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": -5.754482687876054, "y": -2.251285236636902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": -5.6771551035682455, "y": -2.3145257388348277, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": -5.594705130086882, "y": -2.3709266950093437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": -5.508092663606467, "y": -2.4207028238270127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": -5.418140784961891, "y": -2.4641642740802796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": -5.3257637167039125, "y": -2.5022438033306456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": -5.231881235657473, "y": -2.5364135970305126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": -5.136622463244632, "y": -2.5665901429401217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": -5.040571237980871, "y": -2.594142686943405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": -4.943805629020641, "y": -2.6190778577552796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": -4.84635338191889, "y": -2.6411774610537315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": -4.74832062344325, "y": -2.660521675017353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": -4.649829516918033, "y": -2.6773883731239048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "centerline_waypoints": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.550903772178275, "y_m": -2.6914872724959276, "d_right": 0.606192805152332, "d_left": 0.7160911554280751, "psi_rad": -0.10980932887516137, "kappa_radpm": 0.15076477021307877, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 1, "s_m": 0.1, "d_m": 0.0, "x_m": -4.451580190355467, "y_m": -2.702437978642433, "d_right": 0.6187518679446306, "d_left": 0.6981417409558027, "psi_rad": -0.0947328518538535, "kappa_radpm": 0.22424334230964127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 2, "s_m": 0.2, "d_m": 0.0, "x_m": -4.351974214601121, "y_m": -2.7103890140444005, "d_right": 0.6108020721389237, "d_left": 0.6800899375912202, "psi_rad": -0.06496066041323312, "kappa_radpm": 0.2994057106870418, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 3, "s_m": 0.30000000000000004, "d_m": 0.0, "x_m": -4.252177606639081, "y_m": -2.7154095534990486, "d_right": 0.6057820055632845, "d_left": 0.6577000239017514, "psi_rad": -0.034851709716445134, "kappa_radpm": 0.3114493351464287, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 4, "s_m": 0.4, "d_m": 0.0, "x_m": -4.1522719111709145, "y_m": -2.717351800078247, "d_right": 0.6038397136425028, "d_left": 0.6469858484753167, "psi_rad": -0.0026707933839473785, "kappa_radpm": 0.33084340106139254, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 5, "s_m": 0.5, "d_m": 0.0, "x_m": -4.0523568951474065, "y_m": -2.715943234602217, "d_right": 0.605248157411141, "d_left": 0.6455817478176789, "psi_rad": 0.031316970495833374, "kappa_radpm": 0.3383354163990393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 6, "s_m": 0.6000000000000001, "d_m": 0.0, "x_m": -3.952550818125899, "y_m": -2.7110950949395147, "d_right": 0.6100966350083726, "d_left": 0.6407481042672571, "psi_rad": 0.06499628989586048, "kappa_radpm": 0.3728832250320957, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 7, "s_m": 0.7000000000000001, "d_m": 0.0, "x_m": -3.852958098509758, "y_m": -2.7029647715462364, "d_right": 0.6182283026845965, "d_left": 0.6326481048143927, "psi_rad": 0.10589361550225251, "kappa_radpm": 0.5320352727475608, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 8, "s_m": 0.8, "d_m": 0.0, "x_m": -3.7538881087193428, "y_m": -2.6899789951433704, "d_right": 0.6312184977014377, "d_left": 0.6197292074737623, "psi_rad": 0.17140334444537264, "kappa_radpm": 0.7418083585641222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 9, "s_m": 0.9, "d_m": 0.0, "x_m": -3.656266496078189, "y_m": -2.6689170880002804, "d_right": 0.652297633751028, "d_left": 0.6011041936958366, "psi_rad": 0.25425528721507695, "kappa_radpm": 0.822865450166933, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 10, "s_m": 1.0, "d_m": 0.0, "x_m": -3.560708486764569, "y_m": -2.63977555055221, "d_right": 0.6814911118921083, "d_left": 0.5904413861240113, "psi_rad": 0.33597643447875924, "kappa_radpm": 0.8654716021098141, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 11, "s_m": 1.1, "d_m": 0.0, "x_m": -3.4678033015238525, "y_m": -2.603102677108014, "d_right": 0.718296259564342, "d_left": 0.5886117611010488, "psi_rad": 0.4273496076370398, "kappa_radpm": 0.9467752016456188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 12, "s_m": 1.2000000000000002, "d_m": 0.0, "x_m": -3.379135265949133, "y_m": -2.5570840095140723, "d_right": 0.7646416482176113, "d_left": 0.5934511680342281, "psi_rad": 0.525331474807883, "kappa_radpm": 0.9542408520459478, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 13, "s_m": 1.3, "d_m": 0.0, "x_m": -3.2951516403612198, "y_m": -2.5030229230439036, "d_right": 0.8193797944798382, "d_left": 0.605683631317075, "psi_rad": 0.6181977780462293, "kappa_radpm": 1.034246602250909, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 14, "s_m": 1.4000000000000001, "d_m": 0.0, "x_m": -3.2165468870276506, "y_m": -2.4414524963529223, "d_right": 0.8803877799100349, "d_left": 0.6113977299305196, "psi_rad": 0.7321807952580648, "kappa_radpm": 1.3760283665106825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 15, "s_m": 1.5, "d_m": 0.0, "x_m": -3.1470013541566595, "y_m": -2.369857659013031, "d_right": 0.9513344437060625, "d_left": 0.6194472650610299, "psi_rad": 0.8934034513483659, "kappa_radpm": 1.8923254850742899, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 16, "s_m": 1.6, "d_m": 0.0, "x_m": -3.092053145093338, "y_m": -2.286678532772115, "d_right": 1.0037860530633165, "d_left": 0.6248833853437424, "psi_rad": 1.1106458922729228, "kappa_radpm": 2.3232257486078547, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 17, "s_m": 1.7000000000000002, "d_m": 0.0, "x_m": -3.059127976341288, "y_m": -2.1925635315441183, "d_right": 1.0667114979380719, "d_left": 0.6216069310506895, "psi_rad": 1.3580486010699369, "kappa_radpm": 2.3193481323784493, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 18, "s_m": 1.8, "d_m": 0.0, "x_m": -3.0502577919920553, "y_m": -2.093196476869633, "d_right": 1.096879846855808, "d_left": 0.6096554379808096, "psi_rad": 1.5745155187486126, "kappa_radpm": 1.9282149678445715, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 19, "s_m": 1.9000000000000001, "d_m": 0.0, "x_m": -3.0598668623632346, "y_m": -1.9938960187387327, "d_right": 1.1110699377740092, "d_left": 0.5954267854941832, "psi_rad": 1.7436915946388512, "kappa_radpm": 1.5026500772771212, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 20, "s_m": 2.0, "d_m": 0.0, "x_m": -3.0844991346132855, "y_m": -1.8971270783592982, "d_right": 1.1357579626971253, "d_left": 0.5825145433323405, "psi_rad": 1.8750455342040369, "kappa_radpm": 1.1152853645216876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 21, "s_m": 2.1, "d_m": 0.0, "x_m": -3.11961966277632, "y_m": -1.8035993942222193, "d_right": 1.1338227501498972, "d_left": 0.5756163497543949, "psi_rad": 1.9667486675431887, "kappa_radpm": 0.8035826869267837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 22, "s_m": 2.2, "d_m": 0.0, "x_m": -3.1615116011303375, "y_m": -1.7129000155098786, "d_right": 1.099193268952528, "d_left": 0.5786715506242922, "psi_rad": 2.0357620715893936, "kappa_radpm": 0.6231740052902035, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 23, "s_m": 2.3000000000000003, "d_m": 0.0, "x_m": -3.2091703563632494, "y_m": -1.625086655425126, "d_right": 1.0707370908959655, "d_left": 0.5923810563288558, "psi_rad": 2.0913834686012294, "kappa_radpm": 0.44787705868601924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 24, "s_m": 2.4000000000000004, "d_m": 0.0, "x_m": -3.2608829013997678, "y_m": -1.5395805140343637, "d_right": 1.010183190887704, "d_left": 0.6164205911890687, "psi_rad": 2.1253374833265974, "kappa_radpm": 0.25206246582687664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 25, "s_m": 2.5, "d_m": 0.0, "x_m": -3.3143979394085568, "y_m": -1.4551923509995404, "d_right": 0.9446335594057838, "d_left": 0.6391972123586069, "psi_rad": 2.1417959617666047, "kappa_radpm": 0.13199711997330166, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 26, "s_m": 2.6, "d_m": 0.0, "x_m": -3.3688973772318223, "y_m": -1.3714331363567103, "d_right": 0.8865055298007588, "d_left": 0.6750686406385168, "psi_rad": 2.1517369073212578, "kappa_radpm": 0.057269225201417306, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 27, "s_m": 2.7, "d_m": 0.0, "x_m": -3.424080953180314, "y_m": -1.2881234373033639, "d_right": 0.8357198849285478, "d_left": 0.7223783358162604, "psi_rad": 2.153249806806888, "kappa_radpm": -0.017822542184031676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 28, "s_m": 2.8000000000000003, "d_m": 0.0, "x_m": -3.47883334156851, "y_m": -1.2045298708246113, "d_right": 0.7852059495785063, "d_left": 0.7800944807282116, "psi_rad": 2.1481723988844514, "kappa_radpm": -0.06469596145391776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 29, "s_m": 2.9000000000000004, "d_m": 0.0, "x_m": -3.5331679618733016, "y_m": -1.1206642989167606, "d_right": 0.7442751705417524, "d_left": 0.8460759424742741, "psi_rad": 2.1403106145161046, "kappa_radpm": -0.12137121108632076, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 30, "s_m": 3.0, "d_m": 0.0, "x_m": -3.5865987771796997, "y_m": -1.0362209338830874, "d_right": 0.7140194716141653, "d_left": 0.9141840621472022, "psi_rad": 2.1238981566671873, "kappa_radpm": -0.25017632336647555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 31, "s_m": 3.1, "d_m": 0.0, "x_m": -3.6381484438256315, "y_m": -0.9506226962524925, "d_right": 0.6947099138544813, "d_left": 0.9867019680605398, "psi_rad": 2.0902753498428095, "kappa_radpm": -0.4423835876343185, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 32, "s_m": 3.2, "d_m": 0.0, "x_m": -3.685779106366834, "y_m": -0.8627894153532404, "d_right": 0.6849729180259273, "d_left": 1.0663622336646357, "psi_rad": 2.0354214391403236, "kappa_radpm": -0.6574600844460909, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 33, "s_m": 3.3000000000000003, "d_m": 0.0, "x_m": -3.727636804830289, "y_m": -0.7720824968385512, "d_right": 0.6734810970956474, "d_left": 1.1215075260356622, "psi_rad": 1.9587833329535913, "kappa_radpm": -0.9362837417494374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 34, "s_m": 3.4000000000000004, "d_m": 0.0, "x_m": -3.761285446731931, "y_m": -0.6780435132525, "d_right": 0.6663336210333247, "d_left": 1.0712248661666628, "psi_rad": 1.848164690790436, "kappa_radpm": -1.2727555898005194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 35, "s_m": 3.5, "d_m": 0.0, "x_m": -3.7821993940064367, "y_m": -0.5804379490212616, "d_right": 0.660893378540224, "d_left": 1.030617304157336, "psi_rad": 1.7042322149934874, "kappa_radpm": -1.5805939249167955, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 36, "s_m": 3.6, "d_m": 0.0, "x_m": -3.78776098715811, "y_m": -0.48080856836057967, "d_right": 0.6550179989087237, "d_left": 1.00053076469659, "psi_rad": 1.532045905807077, "kappa_radpm": -1.7772122977657667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 37, "s_m": 3.7, "d_m": 0.0, "x_m": -3.7745023293708106, "y_m": -0.38190561236868187, "d_right": 0.6454702012941426, "d_left": 0.9574370758043328, "psi_rad": 1.348789755440334, "kappa_radpm": -1.777265767952193, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 38, "s_m": 3.8000000000000003, "d_m": 0.0, "x_m": -3.743989569088114, "y_m": -0.2868957289551892, "d_right": 0.6335841888316576, "d_left": 0.9326548738154324, "psi_rad": 1.1765927522166384, "kappa_radpm": -1.7012281958985553, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 39, "s_m": 3.9000000000000004, "d_m": 0.0, "x_m": -3.6981341244462107, "y_m": -0.19831817257736353, "d_right": 0.6206634937712495, "d_left": 0.9315460223157309, "psi_rad": 1.008544116260623, "kappa_radpm": -1.551125788608501, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 40, "s_m": 4.0, "d_m": 0.0, "x_m": -3.6379751318891755, "y_m": -0.11864326892443919, "d_right": 0.6067907815209898, "d_left": 0.8989290981166049, "psi_rad": 0.8663675944949382, "kappa_radpm": -1.2333999246958631, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 41, "s_m": 4.1000000000000005, "d_m": 0.0, "x_m": -3.5690129037183107, "y_m": -0.04639074102297915, "d_right": 0.5976821739323006, "d_left": 0.8720950679561935, "psi_rad": 0.7618641313214504, "kappa_radpm": -0.8866878513781917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 42, "s_m": 4.2, "d_m": 0.0, "x_m": -3.4935871923551742, "y_m": 0.019103673170004117, "d_right": 0.595857020731016, "d_left": 0.8396381572242414, "psi_rad": 0.6890300242192998, "kappa_radpm": -0.5644835952353955, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 43, "s_m": 4.3, "d_m": 0.0, "x_m": -3.414835648193996, "y_m": 0.08060609820412547, "d_right": 0.6055116983948653, "d_left": 0.8233111761994386, "psi_rad": 0.6489674122743713, "kappa_radpm": -0.37748901369657306, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 44, "s_m": 4.4, "d_m": 0.0, "x_m": -3.3343872736841225, "y_m": 0.13986896564606882, "d_right": 0.628374853798269, "d_left": 0.8161083878562971, "psi_rad": 0.6135322214799852, "kappa_radpm": -0.37535520205011885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 45, "s_m": 4.5, "d_m": 0.0, "x_m": -3.2514786120528893, "y_m": 0.19564041825388, "d_right": 0.6336027463263583, "d_left": 0.8176157699848069, "psi_rad": 0.5738963718643475, "kappa_radpm": -0.34391920829363265, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 46, "s_m": 4.6000000000000005, "d_m": 0.0, "x_m": -3.166582986796746, "y_m": 0.248350997614514, "d_right": 0.6504774913506524, "d_left": 0.8140219366365463, "psi_rad": 0.5447483798212587, "kappa_radpm": -0.25852564809819234, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 47, "s_m": 4.7, "d_m": 0.0, "x_m": -3.080562471892801, "y_m": 0.29919895950660086, "d_right": 0.6797104634898482, "d_left": 0.813220420156041, "psi_rad": 0.522191242244709, "kappa_radpm": -0.22170341982030384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 48, "s_m": 4.800000000000001, "d_m": 0.0, "x_m": -2.9933801075058026, "y_m": 0.34802493854603855, "d_right": 0.719645531378889, "d_left": 0.8012764445457534, "psi_rad": 0.5004076958571979, "kappa_radpm": -0.18698260680864998, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 49, "s_m": 4.9, "d_m": 0.0, "x_m": -2.905223290492347, "y_m": 0.39508003107262063, "d_right": 0.7480780815390898, "d_left": 0.79139213097193, "psi_rad": 0.48479472088297904, "kappa_radpm": -0.08794012341727053, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 50, "s_m": 5.0, "d_m": 0.0, "x_m": -2.8165546444130936, "y_m": 0.44116251768610376, "d_right": 0.7728812611516966, "d_left": 0.7875632365890415, "psi_rad": 0.4828196711737438, "kappa_radpm": 0.03508457934617848, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 51, "s_m": 5.1000000000000005, "d_m": 0.0, "x_m": -2.728212925500336, "y_m": 0.48786886883243197, "d_right": 0.8099851174289996, "d_left": 0.7784829524810669, "psi_rad": 0.49181163675221473, "kappa_radpm": 0.10914367011923609, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 52, "s_m": 5.2, "d_m": 0.0, "x_m": -2.64038859694408, "y_m": 0.5355377438877256, "d_right": 0.8388595586658742, "d_left": 0.7629085789233908, "psi_rad": 0.504648405197591, "kappa_radpm": 0.15902395011748505, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 53, "s_m": 5.300000000000001, "d_m": 0.0, "x_m": -2.553277123614656, "y_m": 0.5844952896275472, "d_right": 0.8579660600448153, "d_left": 0.754762964906722, "psi_rad": 0.5236164267757117, "kappa_radpm": 0.2140491428043334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 54, "s_m": 5.4, "d_m": 0.0, "x_m": -2.46732282672773, "y_m": 0.6354613860373067, "d_right": 0.8684673587441877, "d_left": 0.7250586227105131, "psi_rad": 0.5474582337584577, "kappa_radpm": 0.2633754911351327, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 55, "s_m": 5.5, "d_m": 0.0, "x_m": -2.3826447000148874, "y_m": 0.6885151076976549, "d_right": 0.8852617185007038, "d_left": 0.7057191026364918, "psi_rad": 0.5762915250027383, "kappa_radpm": 0.3287865054148792, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 56, "s_m": 5.6000000000000005, "d_m": 0.0, "x_m": -2.2997718219905465, "y_m": 0.7443495920858814, "d_right": 0.9053323772730958, "d_left": 0.6969267927847929, "psi_rad": 0.6132155348414335, "kappa_radpm": 0.4324665145088602, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 57, "s_m": 5.7, "d_m": 0.0, "x_m": -2.2192447574372944, "y_m": 0.8035022524439053, "d_right": 0.9132871457528308, "d_left": 0.6891057500853367, "psi_rad": 0.6627848279045103, "kappa_radpm": 0.5430633698557191, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 58, "s_m": 5.800000000000001, "d_m": 0.0, "x_m": -2.1423170574177335, "y_m": 0.8672551326969814, "d_right": 0.9317520091365583, "d_left": 0.685672171004652, "psi_rad": 0.7218282088125774, "kappa_radpm": 0.6440941756507129, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 59, "s_m": 5.9, "d_m": 0.0, "x_m": -2.06932670491643, "y_m": 0.935476261442815, "d_right": 0.956650259813032, "d_left": 0.6908134068510552, "psi_rad": 0.7916036630346529, "kappa_radpm": 0.8079123841186298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 60, "s_m": 6.0, "d_m": 0.0, "x_m": -2.0020203434472874, "y_m": 1.0093039643386619, "d_right": 0.9624378544646732, "d_left": 0.7023317987901339, "psi_rad": 0.8834106856363033, "kappa_radpm": 0.9455193233062942, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 61, "s_m": 6.1000000000000005, "d_m": 0.0, "x_m": -1.9427271860897282, "y_m": 1.0896871934290246, "d_right": 0.9191384848206158, "d_left": 0.7088048968863911, "psi_rad": 0.9807075276959117, "kappa_radpm": 0.9173000883546933, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 62, "s_m": 6.2, "d_m": 0.0, "x_m": -1.8909808911982278, "y_m": 1.1751126276683996, "d_right": 0.8922484661223744, "d_left": 0.7158070182339559, "psi_rad": 1.066870703307242, "kappa_radpm": 0.7938491659781849, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 63, "s_m": 6.300000000000001, "d_m": 0.0, "x_m": -1.8463438866343664, "y_m": 1.2644812307491229, "d_right": 0.8474289457035403, "d_left": 0.7285129536012208, "psi_rad": 1.1394773608915487, "kappa_radpm": 0.7038193136378101, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 64, "s_m": 6.4, "d_m": 0.0, "x_m": -1.8074899929231887, "y_m": 1.356528455665688, "d_right": 0.8085144677365791, "d_left": 0.7482554947015022, "psi_rad": 1.207634566034804, "kappa_radpm": 0.6536154215768109, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 65, "s_m": 6.5, "d_m": 0.0, "x_m": -1.7754112694243913, "y_m": 1.4511377209479746, "d_right": 0.776435900645849, "d_left": 0.7735902351209542, "psi_rad": 1.2702004452069109, "kappa_radpm": 0.5596040828630444, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 66, "s_m": 6.6000000000000005, "d_m": 0.0, "x_m": -1.7483474817879363, "y_m": 1.5473173528493793, "d_right": 0.749394531581017, "d_left": 0.7740116788981997, "psi_rad": 1.319555382607413, "kappa_radpm": 0.48329557341256324, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 67, "s_m": 6.7, "d_m": 0.0, "x_m": -1.725744221998806, "y_m": 1.6446475621549599, "d_right": 0.7268189948740341, "d_left": 0.778626948611329, "psi_rad": 1.3668595598894235, "kappa_radpm": 0.47304114136506814, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 68, "s_m": 6.800000000000001, "d_m": 0.0, "x_m": -1.7078893339697547, "y_m": 1.7429451424015363, "d_right": 0.7089873042225856, "d_left": 0.7911200099432951, "psi_rad": 1.4141636108804265, "kappa_radpm": 0.42702279076385796, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 69, "s_m": 6.9, "d_m": 0.0, "x_m": -1.6945804420533, "y_m": 1.8419786660417488, "d_right": 0.7012115294665703, "d_left": 0.8044210237949694, "psi_rad": 1.4522641180421951, "kappa_radpm": 0.3299595787204612, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 70, "s_m": 7.0, "d_m": 0.0, "x_m": -1.684258913602511, "y_m": 1.9413692550688415, "d_right": 0.7090432444115221, "d_left": 0.7944611528309373, "psi_rad": 1.4801555266245188, "kappa_radpm": 0.2568306162920597, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 71, "s_m": 7.1000000000000005, "d_m": 0.0, "x_m": -1.6764920581431282, "y_m": 2.0409930188301235, "d_right": 0.7216536376927877, "d_left": 0.7859646964103921, "psi_rad": 1.503630241300607, "kappa_radpm": 0.21286452640057463, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 72, "s_m": 7.2, "d_m": 0.0, "x_m": -1.670846422797498, "y_m": 2.140760293822346, "d_right": 0.721916102610547, "d_left": 0.7816903491164802, "psi_rad": 1.5227284319046337, "kappa_radpm": 0.20104738392457966, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 73, "s_m": 7.300000000000001, "d_m": 0.0, "x_m": -1.6668895148505467, "y_m": 2.2406095517407425, "d_right": 0.7260333144066083, "d_left": 0.7748457999948375, "psi_rad": 1.543839718085523, "kappa_radpm": 0.18822070572764749, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 74, "s_m": 7.4, "d_m": 0.0, "x_m": -1.6654601681102685, "y_m": 2.340523922315355, "d_right": 0.7461230255923029, "d_left": 0.749493968352549, "psi_rad": 1.5603725730501632, "kappa_radpm": 0.1088604210604538, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 75, "s_m": 7.5, "d_m": 0.0, "x_m": -1.664806343855323, "y_m": 2.440450760287785, "d_right": 0.7663823428059845, "d_left": 0.7361559402969051, "psi_rad": 1.5656118022976138, "kappa_radpm": 0.050567669310944696, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 76, "s_m": 7.6000000000000005, "d_m": 0.0, "x_m": -1.664424012705942, "y_m": 2.5403775677449976, "d_right": 0.7660016419528163, "d_left": 0.73599089595224, "psi_rad": 1.5704861069123521, "kappa_radpm": 0.005055382206485826, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 77, "s_m": 7.7, "d_m": 0.0, "x_m": -1.664744345032477, "y_m": 2.6403052001402405, "d_right": 0.7663231266734244, "d_left": 0.7356686643473569, "psi_rad": 1.566622878738911, "kappa_radpm": -0.11027577306676584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 78, "s_m": 7.800000000000001, "d_m": 0.0, "x_m": -1.6635899522135855, "y_m": 2.740225664258747, "d_right": 0.7754450177373516, "d_left": 0.7368178477684687, "psi_rad": 1.548430952298999, "kappa_radpm": -0.20966672825725285, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 79, "s_m": 7.9, "d_m": 0.0, "x_m": -1.6602751965425808, "y_m": 2.8400963234669883, "d_right": 0.795004935104417, "d_left": 0.7401201800296578, "psi_rad": 1.5246895330874604, "kappa_radpm": -0.19242599761515655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 80, "s_m": 8.0, "d_m": 0.0, "x_m": -1.6543794515338768, "y_m": 2.939848590553134, "d_right": 0.8069399515663532, "d_left": 0.7459915339838411, "psi_rad": 1.5099457527759677, "kappa_radpm": -0.08752930179361074, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 81, "s_m": 8.1, "d_m": 0.0, "x_m": -1.6481214773359047, "y_m": 3.0395803020247634, "d_right": 0.8006840981421949, "d_left": 0.7522236642767651, "psi_rad": 1.5071836727287382, "kappa_radpm": 0.01794532901767787, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 82, "s_m": 8.200000000000001, "d_m": 0.0, "x_m": -1.641674868268583, "y_m": 3.139296989082923, "d_right": 0.794239105641643, "d_left": 0.7586437032104995, "psi_rad": 1.5135348185795032, "kappa_radpm": 0.12448971371926576, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 83, "s_m": 8.3, "d_m": 0.0, "x_m": -1.6366842967229307, "y_m": 3.2390978811724755, "d_right": 0.7892526312679918, "d_left": 0.7636156815773215, "psi_rad": 1.5320816154725914, "kappa_radpm": 0.15983878094567694, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 84, "s_m": 8.4, "d_m": 0.0, "x_m": -1.6339400409432154, "y_m": 3.3389875532366835, "d_right": 0.7865136738338728, "d_left": 0.7663506226164458, "psi_rad": 1.5455025747686386, "kappa_radpm": 0.07429289925407923, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 85, "s_m": 8.5, "d_m": 0.0, "x_m": -1.631629775653968, "y_m": 3.4388880546851905, "d_right": 0.7842085636502357, "d_left": 0.768653012587271, "psi_rad": 1.5469401953234072, "kappa_radpm": 0.0041358673545977, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 86, "s_m": 8.6, "d_m": 0.0, "x_m": -1.629172698986979, "y_m": 3.538786818218006, "d_right": 0.7817568564267623, "d_left": 0.7711019197296777, "psi_rad": 1.5463297482395582, "kappa_radpm": -0.013703073578932301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 87, "s_m": 8.700000000000001, "d_m": 0.0, "x_m": -1.6267404229740703, "y_m": 3.6386862005158225, "d_right": 0.7868937814030801, "d_left": 0.7593846252530987, "psi_rad": 1.5441995806076207, "kappa_radpm": -0.0849141542744547, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 88, "s_m": 8.8, "d_m": 0.0, "x_m": -1.6238577721175371, "y_m": 3.7385734212994564, "d_right": 0.7969613181043952, "d_left": 0.7375286152563096, "psi_rad": 1.5293469173846672, "kappa_radpm": -0.18332233273868348, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 89, "s_m": 8.9, "d_m": 0.0, "x_m": -1.6184596485779936, "y_m": 3.8383520509904963, "d_right": 0.8167588076350834, "d_left": 0.7313548350598945, "psi_rad": 1.507535114059884, "kappa_radpm": -0.20628663221401333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 90, "s_m": 9.0, "d_m": 0.0, "x_m": -1.6112239051827943, "y_m": 3.9380164669260873, "d_right": 0.8297805720575886, "d_left": 0.7385968251513427, "psi_rad": 1.4880895909418645, "kappa_radpm": -0.21029289267278095, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 91, "s_m": 9.1, "d_m": 0.0, "x_m": -1.6019502147962428, "y_m": 4.037510834141179, "d_right": 0.8468900351512956, "d_left": 0.7260932276088365, "psi_rad": 1.4654765355253279, "kappa_radpm": -0.24851920350938972, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 92, "s_m": 9.200000000000001, "d_m": 0.0, "x_m": -1.5902162177356785, "y_m": 4.136744127344694, "d_right": 0.8413010881707994, "d_left": 0.7181450305031858, "psi_rad": 1.4383857502399866, "kappa_radpm": -0.2954266987916232, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 93, "s_m": 9.3, "d_m": 0.0, "x_m": -1.5755682803780346, "y_m": 4.235588462306824, "d_right": 0.826668176602101, "d_left": 0.7236079203601206, "psi_rad": 1.4063911957670032, "kappa_radpm": -0.34712475959631006, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 94, "s_m": 9.4, "d_m": 0.0, "x_m": -1.5575131047881972, "y_m": 4.333866539421057, "d_right": 0.8086392975875532, "d_left": 0.7191936468806671, "psi_rad": 1.3689607983207246, "kappa_radpm": -0.40451139158438343, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 95, "s_m": 9.5, "d_m": 0.0, "x_m": -1.5355141106903691, "y_m": 4.431335879804597, "d_right": 0.7910468742638805, "d_left": 0.7204815979681067, "psi_rad": 1.3254889174501265, "kappa_radpm": -0.4680876982768267, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 96, "s_m": 9.600000000000001, "d_m": 0.0, "x_m": -1.508994500936825, "y_m": 4.527670155685821, "d_right": 0.7775513132625492, "d_left": 0.7399960003659869, "psi_rad": 1.2753432586653592, "kappa_radpm": -0.5377762682595422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 97, "s_m": 9.700000000000001, "d_m": 0.0, "x_m": -1.4773497439471905, "y_m": 4.622438979164088, "d_right": 0.7628758917335563, "d_left": 0.7458159787354491, "psi_rad": 1.217933663798218, "kappa_radpm": -0.6126767640529074, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 98, "s_m": 9.8, "d_m": 0.0, "x_m": -1.4399725706181128, "y_m": 4.715089185681628, "d_right": 0.7550321748881014, "d_left": 0.7650219038002403, "psi_rad": 1.1528079058547778, "kappa_radpm": -0.6907999462743408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 99, "s_m": 9.9, "d_m": 0.0, "x_m": -1.3962929121237428, "y_m": 4.8049328395019195, "d_right": 0.7534735837331766, "d_left": 0.8027086225090091, "psi_rad": 1.07977367454335, "kappa_radpm": -0.8085247499337722, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 100, "s_m": 10.0, "d_m": 0.0, "x_m": -1.3458327804337178, "y_m": 4.891149324834064, "d_right": 0.7574585765053283, "d_left": 0.8533733370709112, "psi_rad": 0.9911029558680233, "kappa_radpm": -0.9624084176078562, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 101, "s_m": 10.100000000000001, "d_m": 0.0, "x_m": -1.2870087138568431, "y_m": 4.971847674798794, "d_right": 0.7645635541749817, "d_left": 0.889146416354041, "psi_rad": 0.8872919910217787, "kappa_radpm": -1.0841024684524858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 102, "s_m": 10.200000000000001, "d_m": 0.0, "x_m": -1.2198877410687674, "y_m": 5.045782952309697, "d_right": 0.7739530269500516, "d_left": 0.9402172707911971, "psi_rad": 0.7742824621775262, "kappa_radpm": -1.2309080640512764, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 103, "s_m": 10.3, "d_m": 0.0, "x_m": -1.1444888623873595, "y_m": 5.111233814432104, "d_right": 0.7843018438798692, "d_left": 0.9960259927861431, "psi_rad": 0.6411103782115234, "kappa_radpm": -1.3912838670859118, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 104, "s_m": 10.4, "d_m": 0.0, "x_m": -1.0603137908142262, "y_m": 5.164868389646373, "d_right": 0.7925872205508777, "d_left": 1.0144403037077916, "psi_rad": 0.4960256887603438, "kappa_radpm": -1.3460937314717007, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 105, "s_m": 10.5, "d_m": 0.0, "x_m": -0.9693362844675141, "y_m": 5.206018194661154, "d_right": 0.7935229726602521, "d_left": 0.973060525776616, "psi_rad": 0.3718916319171832, "kappa_radpm": -1.0709747195134356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 106, "s_m": 10.600000000000001, "d_m": 0.0, "x_m": -0.8744812334231482, "y_m": 5.237350700034797, "d_right": 0.7905573310375259, "d_left": 0.9416276536679444, "psi_rad": 0.2818307448576567, "kappa_radpm": -0.7770666907210777, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 107, "s_m": 10.700000000000001, "d_m": 0.0, "x_m": -0.7775472192574612, "y_m": 5.261548320463994, "d_right": 0.7927760262480604, "d_left": 0.9067569316658168, "psi_rad": 0.21647829377296768, "kappa_radpm": -0.5644669278694392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 108, "s_m": 10.8, "d_m": 0.0, "x_m": -0.6793981494890351, "y_m": 5.280254250634709, "d_right": 0.8019157735083158, "d_left": 0.8647476745505034, "psi_rad": 0.16893735928376885, "kappa_radpm": -0.4057079960661636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 109, "s_m": 10.9, "d_m": 0.0, "x_m": -0.5805913653118215, "y_m": 5.295141715314008, "d_right": 0.8168319709040964, "d_left": 0.8364196632955895, "psi_rad": 0.13533669455973496, "kappa_radpm": -0.28401592781681306, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 110, "s_m": 11.0, "d_m": 0.0, "x_m": -0.481397635509986, "y_m": 5.307215796480674, "d_right": 0.8289231592996137, "d_left": 0.8222014558070685, "psi_rad": 0.11213417372040624, "kappa_radpm": -0.18301552568074753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 111, "s_m": 11.100000000000001, "d_m": 0.0, "x_m": -0.3820007143186901, "y_m": 5.317504322220131, "d_right": 0.839222759804946, "d_left": 0.8118986280924516, "psi_rad": 0.09873358942358545, "kappa_radpm": -0.08710785591286241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 112, "s_m": 11.200000000000001, "d_m": 0.0, "x_m": -0.2825160319024924, "y_m": 5.3269161478372355, "d_right": 0.8486431018471762, "d_left": 0.8024752344021376, "psi_rad": 0.09471260253783376, "kappa_radpm": 0.00048146704816676156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 113, "s_m": 11.3, "d_m": 0.0, "x_m": -0.18303874511198306, "y_m": 5.336405078223347, "d_right": 0.8581407698457173, "d_left": 0.7929745316749658, "psi_rad": 0.09882988283321881, "kappa_radpm": 0.07975249733193412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 114, "s_m": 11.4, "d_m": 0.0, "x_m": -0.08363565726002677, "y_m": 5.346635716420584, "d_right": 0.8683823389564073, "d_left": 0.7827298808495259, "psi_rad": 0.11066310200422058, "kappa_radpm": 0.15885780261639226, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 115, "s_m": 11.5, "d_m": 0.0, "x_m": 0.015586651809421623, "y_m": 5.3584757492739685, "d_right": 0.8822852469686154, "d_left": 0.7708702669580523, "psi_rad": 0.13060144335649726, "kappa_radpm": 0.2497707086155898, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 116, "s_m": 11.600000000000001, "d_m": 0.0, "x_m": 0.11449926919201313, "y_m": 5.3726605586195, "d_right": 0.9092963727637796, "d_left": 0.7668322035743261, "psi_rad": 0.16061724372733854, "kappa_radpm": 0.3711496285796889, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 117, "s_m": 11.700000000000001, "d_m": 0.0, "x_m": 0.2128257706895939, "y_m": 5.390431019618693, "d_right": 0.9494186186714311, "d_left": 0.7721521832257545, "psi_rad": 0.20483136907243504, "kappa_radpm": 0.5651372677311661, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 118, "s_m": 11.8, "d_m": 0.0, "x_m": 0.3100728772639649, "y_m": 5.413289978712438, "d_right": 0.9846111894410812, "d_left": 0.776894548124241, "psi_rad": 0.27364469727357177, "kappa_radpm": 0.8615422713481957, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 119, "s_m": 11.9, "d_m": 0.0, "x_m": 0.4049905405440672, "y_m": 5.444368976055754, "d_right": 1.018587319917657, "d_left": 0.7822027116928687, "psi_rad": 0.3771398233420742, "kappa_radpm": 1.194738933779127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 120, "s_m": 12.0, "d_m": 0.0, "x_m": 0.4953939693400442, "y_m": 5.486695669708853, "d_right": 1.0712874350901467, "d_left": 0.7881128390625853, "psi_rad": 0.5125924840293972, "kappa_radpm": 1.4270456542210108, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 121, "s_m": 12.100000000000001, "d_m": 0.0, "x_m": 0.5784898214278564, "y_m": 5.542008696560982, "d_right": 1.0384533094881792, "d_left": 0.7917516982737375, "psi_rad": 0.6625489541862764, "kappa_radpm": 1.4441368093013633, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 122, "s_m": 12.200000000000001, "d_m": 0.0, "x_m": 0.6523684194540434, "y_m": 5.609166712765694, "d_right": 0.9816001142787238, "d_left": 0.7929651859582536, "psi_rad": 0.8014198458896699, "kappa_radpm": 1.3528688960647184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 123, "s_m": 12.3, "d_m": 0.0, "x_m": 0.7171127205680548, "y_m": 5.6851462586526065, "d_right": 0.940347256124955, "d_left": 0.794047669905207, "psi_rad": 0.93312273339922, "kappa_radpm": 1.318621103820659, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 124, "s_m": 12.4, "d_m": 0.0, "x_m": 0.7709651085086869, "y_m": 5.7692304761669995, "d_right": 0.8953880122802629, "d_left": 0.7941061324969227, "psi_rad": 1.0651440666538017, "kappa_radpm": 1.3155586010144038, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 125, "s_m": 12.5, "d_m": 0.0, "x_m": 0.8136398753795683, "y_m": 5.859488594451443, "d_right": 0.8721137693881404, "d_left": 0.7939489170745708, "psi_rad": 1.1962344536021008, "kappa_radpm": 1.332278366042191, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 126, "s_m": 12.600000000000001, "d_m": 0.0, "x_m": 0.8438544872781943, "y_m": 5.954642711244909, "d_right": 0.8580862884866254, "d_left": 0.7929580274712945, "psi_rad": 1.33159973986224, "kappa_radpm": 1.354900470930881, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 127, "s_m": 12.700000000000001, "d_m": 0.0, "x_m": 0.8608376842308928, "y_m": 6.053029046675433, "d_right": 0.8514603459956079, "d_left": 0.7909152564904038, "psi_rad": 1.467214547788277, "kappa_radpm": 1.3322125949921426, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 128, "s_m": 12.8, "d_m": 0.0, "x_m": 0.8644538722637296, "y_m": 6.152801701133936, "d_right": 0.8697342943867888, "d_left": 0.7790132821963591, "psi_rad": 1.5980422588606684, "kappa_radpm": 1.2974774244872456, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 129, "s_m": 12.9, "d_m": 0.0, "x_m": 0.8554084988274604, "y_m": 6.25224564490136, "d_right": 0.9084288210680669, "d_left": 0.7652282342847824, "psi_rad": 1.726710032685726, "kappa_radpm": 1.2550523424490545, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 130, "s_m": 13.0, "d_m": 0.0, "x_m": 0.8335074314049132, "y_m": 6.349675179856858, "d_right": 0.941884003341754, "d_left": 0.7513363910905104, "psi_rad": 1.8490527273504793, "kappa_radpm": 1.1770884175213148, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 131, "s_m": 13.100000000000001, "d_m": 0.0, "x_m": 0.800637926718842, "y_m": 6.443974045128209, "d_right": 0.9941582331406392, "d_left": 0.7391818769964416, "psi_rad": 1.962127716189989, "kappa_radpm": 1.0954399877644527, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 132, "s_m": 13.200000000000001, "d_m": 0.0, "x_m": 0.7574476116146764, "y_m": 6.534012518921704, "d_right": 1.0442903200742495, "d_left": 0.7292555459891966, "psi_rad": 2.06814072490337, "kappa_radpm": 1.0123156379740628, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 133, "s_m": 13.3, "d_m": 0.0, "x_m": 0.7054589075850121, "y_m": 6.619303113982121, "d_right": 1.039641224208867, "d_left": 0.722946087095886, "psi_rad": 2.1645908437848016, "kappa_radpm": 0.9852714072854307, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 134, "s_m": 13.4, "d_m": 0.0, "x_m": 0.6457876817943088, "y_m": 6.699418638808925, "d_right": 0.979148358326749, "d_left": 0.7211534048849743, "psi_rad": 2.265195006360456, "kappa_radpm": 1.0833961049994123, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 135, "s_m": 13.5, "d_m": 0.0, "x_m": 0.5778125051683553, "y_m": 6.772584609829943, "d_right": 0.9274059663611176, "d_left": 0.7223634563545296, "psi_rad": 2.381270064784684, "kappa_radpm": 1.1536095885487674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 136, "s_m": 13.600000000000001, "d_m": 0.0, "x_m": 0.5013352154603916, "y_m": 6.836802417729801, "d_right": 0.8853258695780233, "d_left": 0.7136818510018017, "psi_rad": 2.4959169240702095, "kappa_radpm": 1.090771691666239, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 137, "s_m": 13.700000000000001, "d_m": 0.0, "x_m": 0.41851411128394106, "y_m": 6.89260056156898, "d_right": 0.854798901370871, "d_left": 0.7058903144274947, "psi_rad": 2.599424403117932, "kappa_radpm": 0.9867645342263986, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 138, "s_m": 13.8, "d_m": 0.0, "x_m": 0.33045813817351055, "y_m": 6.939735488376742, "d_right": 0.8324946309224491, "d_left": 0.702069786297144, "psi_rad": 2.693269830915489, "kappa_radpm": 0.838494199935873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 139, "s_m": 13.9, "d_m": 0.0, "x_m": 0.23864759044847866, "y_m": 6.979114236496634, "d_right": 0.8035129961353544, "d_left": 0.7028704141434442, "psi_rad": 2.7671232431051065, "kappa_radpm": 0.6252218181796643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 140, "s_m": 14.0, "d_m": 0.0, "x_m": 0.14458561330143918, "y_m": 7.0127859749810915, "d_right": 0.7851543253019959, "d_left": 0.6995795904309402, "psi_rad": 2.818314194551422, "kappa_radpm": 0.4371129526059714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 141, "s_m": 14.100000000000001, "d_m": 0.0, "x_m": 0.04920834708274347, "y_m": 7.042582420745972, "d_right": 0.7808257395577822, "d_left": 0.6935742052283552, "psi_rad": 2.8545458336263008, "kappa_radpm": 0.3178887804939845, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 142, "s_m": 14.200000000000001, "d_m": 0.0, "x_m": -0.04706184217988983, "y_m": 7.069360198002453, "d_right": 0.7738671992188491, "d_left": 0.6984631597146399, "psi_rad": 2.881891950650219, "kappa_radpm": 0.23142784478344947, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 143, "s_m": 14.3, "d_m": 0.0, "x_m": -0.1439294730161046, "y_m": 7.093899350004181, "d_right": 0.7670242459604246, "d_left": 0.7151292514370217, "psi_rad": 2.9008314025829907, "kappa_radpm": 0.14808238457470368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 144, "s_m": 14.4, "d_m": 0.0, "x_m": -0.2411482324521398, "y_m": 7.1170130052432015, "d_right": 0.774600100928881, "d_left": 0.7382764292079769, "psi_rad": 2.9115084275651597, "kappa_radpm": 0.06780957511959507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 145, "s_m": 14.5, "d_m": 0.0, "x_m": -0.3385191610324392, "y_m": 7.139478522216387, "d_right": 0.7954098331169477, "d_left": 0.7607807756410628, "psi_rad": 2.9143933176069097, "kappa_radpm": -0.010192807931936887, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 146, "s_m": 14.600000000000001, "d_m": 0.0, "x_m": -0.43586993631908555, "y_m": 7.162030927324428, "d_right": 0.7964857988486483, "d_left": 0.7833787847910426, "psi_rad": 2.9094698659787723, "kappa_radpm": -0.09308820430206088, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 147, "s_m": 14.700000000000001, "d_m": 0.0, "x_m": -0.5330138221271079, "y_m": 7.185453879072352, "d_right": 0.8048825088021588, "d_left": 0.7821210061179937, "psi_rad": 2.8957756767464975, "kappa_radpm": -0.18376332388957195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 148, "s_m": 14.8, "d_m": 0.0, "x_m": -0.6297071800512436, "y_m": 7.2106629269361795, "d_right": 0.8022833774845751, "d_left": 0.7883862145298771, "psi_rad": 2.872717201200858, "kappa_radpm": -0.2790169134873066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 149, "s_m": 14.9, "d_m": 0.0, "x_m": -0.7256636852525901, "y_m": 7.238538130736322, "d_right": 0.8093292276528432, "d_left": 0.8097410304733863, "psi_rad": 2.839972294049036, "kappa_radpm": -0.3938369868442826, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 150, "s_m": 15.0, "d_m": 0.0, "x_m": -0.8204889232691829, "y_m": 7.270017521847991, "d_right": 0.8189811292621524, "d_left": 0.8136345111483927, "psi_rad": 2.7939498038320014, "kappa_radpm": -0.5666730952009646, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 151, "s_m": 15.100000000000001, "d_m": 0.0, "x_m": -0.9134600607459374, "y_m": 7.306587941921778, "d_right": 0.8187080761316097, "d_left": 0.8334095902583915, "psi_rad": 2.7266376750088432, "kappa_radpm": -0.7945590745751852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 152, "s_m": 15.200000000000001, "d_m": 0.0, "x_m": -1.0031632641351451, "y_m": 7.350491955740477, "d_right": 0.8225848510271331, "d_left": 0.8717056662257024, "psi_rad": 2.6350379889169644, "kappa_radpm": -1.0089951588490043, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 153, "s_m": 15.3, "d_m": 0.0, "x_m": -1.087878291108112, "y_m": 7.40336286430114, "d_right": 0.8283071121475736, "d_left": 0.9248172134756844, "psi_rad": 2.5248386432390424, "kappa_radpm": -1.1805586307483473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 154, "s_m": 15.4, "d_m": 0.0, "x_m": -1.165778644012556, "y_m": 7.465789505656105, "d_right": 0.8343046954526038, "d_left": 0.9705385132859945, "psi_rad": 2.398926262767295, "kappa_radpm": -1.2645764056663844, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 155, "s_m": 15.5, "d_m": 0.0, "x_m": -1.2346401730970342, "y_m": 7.5380889401879925, "d_right": 0.8388493625369141, "d_left": 1.0145996104627237, "psi_rad": 2.2719233621057655, "kappa_radpm": -1.2538480725477763, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 156, "s_m": 15.600000000000001, "d_m": 0.0, "x_m": -1.29437779788833, "y_m": 7.618119038195998, "d_right": 0.8433112455491468, "d_left": 0.95460686676913, "psi_rad": 2.1481566482577397, "kappa_radpm": -1.2145079800381042, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 157, "s_m": 15.700000000000001, "d_m": 0.0, "x_m": -1.343436999960668, "y_m": 7.705108373260206, "d_right": 0.8468451121893577, "d_left": 0.9055975590938377, "psi_rad": 2.0290217660981447, "kappa_radpm": -1.1371871379397736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 158, "s_m": 15.8, "d_m": 0.0, "x_m": -1.3826003840713423, "y_m": 7.79698224541659, "d_right": 0.8511119107475273, "d_left": 0.8665674210700658, "psi_rad": 1.920719220669785, "kappa_radpm": -1.0875477680752932, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 159, "s_m": 15.9, "d_m": 0.0, "x_m": -1.4118131958988442, "y_m": 7.8924706427739615, "d_right": 0.8489766615743668, "d_left": 0.8126101117301906, "psi_rad": 1.811512212483086, "kappa_radpm": -1.11108505534111, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 160, "s_m": 16.0, "d_m": 0.0, "x_m": -1.430138752885718, "y_m": 7.990640475118331, "d_right": 0.8440421758505586, "d_left": 0.7757872787347968, "psi_rad": 1.698502209601563, "kappa_radpm": -1.1314409107506052, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 161, "s_m": 16.1, "d_m": 0.0, "x_m": -1.4372105451894133, "y_m": 8.090262096766356, "d_right": 0.8395634244105367, "d_left": 0.7617796171381918, "psi_rad": 1.585224030332965, "kappa_radpm": -1.114206804953023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 162, "s_m": 16.2, "d_m": 0.0, "x_m": -1.4330158647742477, "y_m": 8.19004242749969, "d_right": 0.8353817259454385, "d_left": 0.7659752348943307, "psi_rad": 1.4756608486109584, "kappa_radpm": -1.0668303127321188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 163, "s_m": 16.3, "d_m": 0.0, "x_m": -1.418263866966483, "y_m": 8.288815606524185, "d_right": 0.8207192572393084, "d_left": 0.7807342835546603, "psi_rad": 1.3718579677865412, "kappa_radpm": -1.0130399198919837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 164, "s_m": 16.400000000000002, "d_m": 0.0, "x_m": -1.3935928794614627, "y_m": 8.385588092631936, "d_right": 0.7960769936081675, "d_left": 0.8054322496602244, "psi_rad": 1.2730528646325616, "kappa_radpm": -0.9589471860911869, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 165, "s_m": 16.5, "d_m": 0.0, "x_m": -1.3597293297956248, "y_m": 8.479565416840277, "d_right": 0.7739317022784372, "d_left": 0.8393762971972836, "psi_rad": 1.1800685305683039, "kappa_radpm": -0.8960040261537472, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 166, "s_m": 16.6, "d_m": 0.0, "x_m": -1.3175796763155287, "y_m": 8.570128289653375, "d_right": 0.7553675159814033, "d_left": 0.8817251056938501, "psi_rad": 1.0938520594018122, "kappa_radpm": -0.8327097739070966, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 167, "s_m": 16.7, "d_m": 0.0, "x_m": -1.2680894263057412, "y_m": 8.656910183977642, "d_right": 0.7415107520194225, "d_left": 0.9316302731165221, "psi_rad": 1.0135265757868845, "kappa_radpm": -0.7764141071933017, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 168, "s_m": 16.8, "d_m": 0.0, "x_m": -1.2119871242167168, "y_m": 8.73957723463629, "d_right": 0.7281308874888635, "d_left": 0.9535290256597447, "psi_rad": 0.9385692379631518, "kappa_radpm": -0.7563101338166528, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 169, "s_m": 16.900000000000002, "d_m": 0.0, "x_m": -1.1500860419722667, "y_m": 8.818000068667377, "d_right": 0.7136231009555494, "d_left": 0.8907963208956776, "psi_rad": 0.862264549023554, "kappa_radpm": -0.7492241948921591, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 170, "s_m": 17.0, "d_m": 0.0, "x_m": -1.0820686874855951, "y_m": 8.89117773367191, "d_right": 0.7048999228246398, "d_left": 0.8418365309625928, "psi_rad": 0.78872439898472, "kappa_radpm": -0.7232833296851848, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 171, "s_m": 17.1, "d_m": 0.0, "x_m": -1.0093413454584765, "y_m": 8.959684193441973, "d_right": 0.7019208865240194, "d_left": 0.8086909186699501, "psi_rad": 0.717607883086517, "kappa_radpm": -0.7086745597276867, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 172, "s_m": 17.2, "d_m": 0.0, "x_m": -0.9316364098242569, "y_m": 9.02248172051344, "d_right": 0.6914249696073098, "d_left": 0.7944373410294403, "psi_rad": 0.6469894870391827, "kappa_radpm": -0.645511874231165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 173, "s_m": 17.3, "d_m": 0.0, "x_m": -0.8499913724787387, "y_m": 9.08006750658639, "d_right": 0.6760361447011243, "d_left": 0.7709658283345161, "psi_rad": 0.588505508240284, "kappa_radpm": -0.5685337053154632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 174, "s_m": 17.400000000000002, "d_m": 0.0, "x_m": -0.7654829564321983, "y_m": 9.13337142677218, "d_right": 0.6700905794712583, "d_left": 0.7539365079399261, "psi_rad": 0.53328274597609, "kappa_radpm": -0.5247174965878593, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 175, "s_m": 17.5, "d_m": 0.0, "x_m": -0.6779889936011229, "y_m": 9.181606571359616, "d_right": 0.6731268865655751, "d_left": 0.7479886216203946, "psi_rad": 0.48356200892271217, "kappa_radpm": -0.49353909748395597, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 176, "s_m": 17.6, "d_m": 0.0, "x_m": -0.5885980208981018, "y_m": 9.226261969621596, "d_right": 0.6868129182840237, "d_left": 0.7519591047186457, "psi_rad": 0.43457492647929885, "kappa_radpm": -0.5412157068160806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 177, "s_m": 17.7, "d_m": 0.0, "x_m": -0.4968004312788066, "y_m": 9.26570884643776, "d_right": 0.6850248612678982, "d_left": 0.7673691722385236, "psi_rad": 0.37531886755949606, "kappa_radpm": -0.5619996657687587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 178, "s_m": 17.8, "d_m": 0.0, "x_m": -0.40276332393320763, "y_m": 9.299479891663536, "d_right": 0.6890716694946121, "d_left": 0.7776277564687196, "psi_rad": 0.3221749933255471, "kappa_radpm": -0.476075495998568, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 179, "s_m": 17.900000000000002, "d_m": 0.0, "x_m": -0.3072954315584141, "y_m": 9.328966562661469, "d_right": 0.7029566452333456, "d_left": 0.7871012648692677, "psi_rad": 0.28010376835978246, "kappa_radpm": -0.3748960701132842, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 180, "s_m": 18.0, "d_m": 0.0, "x_m": -0.21074754075706945, "y_m": 9.354716434094957, "d_right": 0.7266885832034307, "d_left": 0.8004790698013641, "psi_rad": 0.24719577930289027, "kappa_radpm": -0.2833216344370426, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 181, "s_m": 18.1, "d_m": 0.0, "x_m": -0.1135404499778253, "y_m": 9.377861987818262, "d_right": 0.7496935923576415, "d_left": 0.8260480464065629, "psi_rad": 0.22343944147237393, "kappa_radpm": -0.20290788840857998, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 182, "s_m": 18.2, "d_m": 0.0, "x_m": -0.015873736797587565, "y_m": 9.398998319571616, "d_right": 0.7707255632984602, "d_left": 0.8574631186706673, "psi_rad": 0.20661420162117428, "kappa_radpm": -0.12892780429169526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 183, "s_m": 18.3, "d_m": 0.0, "x_m": 0.0820610219780902, "y_m": 9.418861106570322, "d_right": 0.7905056142900241, "d_left": 0.8852988461891598, "psi_rad": 0.19765388061403488, "kappa_radpm": -0.05261744249004385, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 184, "s_m": 18.400000000000002, "d_m": 0.0, "x_m": 0.18009212650842787, "y_m": 9.43824414188771, "d_right": 0.8098178930707137, "d_left": 0.8953424627412576, "psi_rad": 0.1960907131231655, "kappa_radpm": 0.017395296248484682, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 185, "s_m": 18.5, "d_m": 0.0, "x_m": 0.2780885903020314, "y_m": 9.45780067212037, "d_right": 0.8293101049123413, "d_left": 0.9160680848336475, "psi_rad": 0.20113293986373182, "kappa_radpm": 0.08343508519948473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 186, "s_m": 18.6, "d_m": 0.0, "x_m": 0.3759187038850542, "y_m": 9.478171183751762, "d_right": 0.8216523571995769, "d_left": 0.9461622632039299, "psi_rad": 0.21277773016306245, "kappa_radpm": 0.1521323257060092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 187, "s_m": 18.7, "d_m": 0.0, "x_m": 0.4734307338812857, "y_m": 9.500003969873099, "d_right": 0.8075229294151913, "d_left": 0.9657989718530835, "psi_rad": 0.23155940500493366, "kappa_radpm": 0.22305273322273944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 188, "s_m": 18.8, "d_m": 0.0, "x_m": 0.5704231433455446, "y_m": 9.524033163979992, "d_right": 0.8078865972582144, "d_left": 0.9582748204231415, "psi_rad": 0.25738827680761034, "kappa_radpm": 0.2934537291936046, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 189, "s_m": 18.900000000000002, "d_m": 0.0, "x_m": 0.6666738818028336, "y_m": 9.550870770209746, "d_right": 0.8111264821706752, "d_left": 0.9448614538062303, "psi_rad": 0.2902501508436546, "kappa_radpm": 0.38079622250483447, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 190, "s_m": 19.0, "d_m": 0.0, "x_m": 0.7618706595083987, "y_m": 9.581215710093446, "d_right": 0.8196024488398488, "d_left": 0.9382531553434981, "psi_rad": 0.33354752130857723, "kappa_radpm": 0.47691545993247986, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 191, "s_m": 19.1, "d_m": 0.0, "x_m": 0.8554360464203922, "y_m": 9.616275620951031, "d_right": 0.8447467228720751, "d_left": 0.9167309764697428, "psi_rad": 0.38563324283015055, "kappa_radpm": 0.5003584748975876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 192, "s_m": 19.200000000000003, "d_m": 0.0, "x_m": 0.9469642229132249, "y_m": 9.656356189022869, "d_right": 0.878690759952946, "d_left": 0.8883366919793555, "psi_rad": 0.43361921628809474, "kappa_radpm": 0.48325346032560446, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 193, "s_m": 19.3, "d_m": 0.0, "x_m": 1.0367377729742349, "y_m": 9.700219912799914, "d_right": 0.9224955440603825, "d_left": 0.8582742468463499, "psi_rad": 0.48228393489527144, "kappa_radpm": 0.5379239028406424, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 194, "s_m": 19.400000000000002, "d_m": 0.0, "x_m": 1.123917191080165, "y_m": 9.74899412344304, "d_right": 0.9527098246676992, "d_left": 0.833626727712328, "psi_rad": 0.5412039968562232, "kappa_radpm": 0.616136099087532, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 195, "s_m": 19.5, "d_m": 0.0, "x_m": 1.207905579616103, "y_m": 9.803103304384049, "d_right": 0.9864193939495103, "d_left": 0.8142973080228152, "psi_rad": 0.6055111547127778, "kappa_radpm": 0.6599102636486981, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 196, "s_m": 19.6, "d_m": 0.0, "x_m": 1.2881207089086246, "y_m": 9.86266534266402, "d_right": 1.018970702525584, "d_left": 0.8003393346487107, "psi_rad": 0.6731860495859628, "kappa_radpm": 0.7224742216336283, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 197, "s_m": 19.700000000000003, "d_m": 0.0, "x_m": 1.3640338224189286, "y_m": 9.927608262176829, "d_right": 1.0295956966704995, "d_left": 0.7918415564543678, "psi_rad": 0.7500059990395035, "kappa_radpm": 0.8169090175435956, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 198, "s_m": 19.8, "d_m": 0.0, "x_m": 1.4341676058507318, "y_m": 9.998723751369655, "d_right": 1.0135167267659033, "d_left": 0.7874506399897593, "psi_rad": 0.836567853094682, "kappa_radpm": 0.9822289837700032, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 199, "s_m": 19.900000000000002, "d_m": 0.0, "x_m": 1.4977507842030429, "y_m": 10.075761011042255, "d_right": 0.9545034378666049, "d_left": 0.7779264600327712, "psi_rad": 0.9464517957935041, "kappa_radpm": 1.2053285591338274, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 200, "s_m": 20.0, "d_m": 0.0, "x_m": 1.5506695198645561, "y_m": 10.160422314503974, "d_right": 0.9101476357983295, "d_left": 0.7587223632466357, "psi_rad": 1.0776335649214475, "kappa_radpm": 1.3449719585127151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 201, "s_m": 20.1, "d_m": 0.0, "x_m": 1.5920868746503212, "y_m": 10.251283861722037, "d_right": 0.8876721479816865, "d_left": 0.7322000329416809, "psi_rad": 1.2154461874960472, "kappa_radpm": 1.4231008020585556, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 202, "s_m": 20.200000000000003, "d_m": 0.0, "x_m": 1.6199542036108387, "y_m": 10.34712142941305, "d_right": 0.890502350537522, "d_left": 0.7044061651608471, "psi_rad": 1.3622537253331586, "kappa_radpm": 1.381144537953909, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 203, "s_m": 20.3, "d_m": 0.0, "x_m": 1.6333044942328925, "y_m": 10.446056351205366, "d_right": 0.8993233184055783, "d_left": 0.6753765019327373, "psi_rad": 1.491675095086829, "kappa_radpm": 1.1976439251262783, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 204, "s_m": 20.400000000000002, "d_m": 0.0, "x_m": 1.635714926024083, "y_m": 10.545902718280967, "d_right": 0.917310944478933, "d_left": 0.649425381929731, "psi_rad": 1.6017825103584142, "kappa_radpm": 1.0282928592251073, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 205, "s_m": 20.5, "d_m": 0.0, "x_m": 1.6271250223972853, "y_m": 10.645419204963043, "d_right": 0.9304623370204189, "d_left": 0.6272580719970181, "psi_rad": 1.6973336669318504, "kappa_radpm": 0.9104988741458531, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 206, "s_m": 20.6, "d_m": 0.0, "x_m": 1.6105249975050655, "y_m": 10.74391020166285, "d_right": 0.9585372942995676, "d_left": 0.6124973713553089, "psi_rad": 1.7838822851875848, "kappa_radpm": 0.8214801193175159, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 207, "s_m": 20.700000000000003, "d_m": 0.0, "x_m": 1.5849202368103559, "y_m": 10.840476944386605, "d_right": 1.0040840283640946, "d_left": 0.604649121121192, "psi_rad": 1.8616296907953536, "kappa_radpm": 0.6731225892726567, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 208, "s_m": 20.8, "d_m": 0.0, "x_m": 1.5532568537602234, "y_m": 10.935237314084784, "d_right": 1.019889289434602, "d_left": 0.6069335418111942, "psi_rad": 1.9185068030421162, "kappa_radpm": 0.5426956478160472, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 209, "s_m": 20.900000000000002, "d_m": 0.0, "x_m": 1.5168516814748032, "y_m": 11.028285394342397, "d_right": 0.9602788231896259, "d_left": 0.6127386351872334, "psi_rad": 1.970168820358563, "kappa_radpm": 0.4543195982690018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 210, "s_m": 21.0, "d_m": 0.0, "x_m": 1.4755779266333404, "y_m": 11.119287163526737, "d_right": 0.9124618044931347, "d_left": 0.622210135207803, "psi_rad": 2.0093707226959165, "kappa_radpm": 0.31681389361682744, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 211, "s_m": 21.1, "d_m": 0.0, "x_m": 1.431992342728054, "y_m": 11.209206671242718, "d_right": 0.8759129108556619, "d_left": 0.6447309749158606, "psi_rad": 2.0335315990819285, "kappa_radpm": 0.22427538548686066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 212, "s_m": 21.200000000000003, "d_m": 0.0, "x_m": 1.386372483283635, "y_m": 11.298105721210852, "d_right": 0.8452655307516126, "d_left": 0.6792406790882367, "psi_rad": 2.0542257997932887, "kappa_radpm": 0.1750978175375728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 213, "s_m": 21.3, "d_m": 0.0, "x_m": 1.3391025710426787, "y_m": 11.386147105558813, "d_right": 0.8164169514989784, "d_left": 0.7243744283555047, "psi_rad": 2.068551162589443, "kappa_radpm": 0.14476688810856952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 214, "s_m": 21.400000000000002, "d_m": 0.0, "x_m": 1.2909516447793818, "y_m": 11.473708313477383, "d_right": 0.7885511615797275, "d_left": 0.7789621326732643, "psi_rad": 2.0831791774150026, "kappa_radpm": 0.13261528231124364, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 215, "s_m": 21.5, "d_m": 0.0, "x_m": 1.241126433235441, "y_m": 11.560329600439026, "d_right": 0.7625501985495519, "d_left": 0.8404695941338938, "psi_rad": 2.0950742190516918, "kappa_radpm": 0.03636666932780974, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 216, "s_m": 21.6, "d_m": 0.0, "x_m": 1.1909054781531743, "y_m": 11.646721904361572, "d_right": 0.7370065439942908, "d_left": 0.9085065359156943, "psi_rad": 2.0904525112805645, "kappa_radpm": -0.07484117379162658, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 217, "s_m": 21.700000000000003, "d_m": 0.0, "x_m": 1.1418841464678098, "y_m": 11.733798139733803, "d_right": 0.7153880959809054, "d_left": 0.9599828315927033, "psi_rad": 2.0801059842933665, "kappa_radpm": -0.12315361407410963, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 218, "s_m": 21.8, "d_m": 0.0, "x_m": 1.093462608502616, "y_m": 11.821209134778995, "d_right": 0.7042295275786495, "d_left": 0.9569121521016407, "psi_rad": 2.0658217884657426, "kappa_radpm": -0.17891906649950107, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 219, "s_m": 21.900000000000002, "d_m": 0.0, "x_m": 1.0469482588657815, "y_m": 11.909650679219038, "d_right": 0.6940454905012, "d_left": 0.945412556037728, "psi_rad": 2.0443221709934662, "kappa_radpm": -0.263671040583362, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 220, "s_m": 22.0, "d_m": 0.0, "x_m": 1.0023291785884132, "y_m": 11.999061871252465, "d_right": 0.6843530948839948, "d_left": 0.9383034928180907, "psi_rad": 2.01308758034907, "kappa_radpm": -0.31544126592483623, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 221, "s_m": 22.1, "d_m": 0.0, "x_m": 0.9614262054035752, "y_m": 12.090235963141167, "d_right": 0.6832631945679772, "d_left": 0.9398688879989665, "psi_rad": 1.981233917808499, "kappa_radpm": -0.30578928938677197, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 222, "s_m": 22.200000000000003, "d_m": 0.0, "x_m": 0.9225942559030342, "y_m": 12.182296703631959, "d_right": 0.6944432702026451, "d_left": 0.9541915686438438, "psi_rad": 1.9519297224717158, "kappa_radpm": -0.3306359411813209, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 223, "s_m": 22.3, "d_m": 0.0, "x_m": 0.8871030840770283, "y_m": 12.275706430870425, "d_right": 0.7160233220495558, "d_left": 0.9652322319279875, "psi_rad": 1.9151067295722348, "kappa_radpm": -0.3921255865525053, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 224, "s_m": 22.400000000000002, "d_m": 0.0, "x_m": 0.8551491059482661, "y_m": 12.370378867689903, "d_right": 0.7240620310551975, "d_left": 0.9543190223445355, "psi_rad": 1.8735046051612148, "kappa_radpm": -0.4559875439767169, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 225, "s_m": 22.5, "d_m": 0.0, "x_m": 0.827546837504368, "y_m": 12.466404698250063, "d_right": 0.7374985113478724, "d_left": 0.9266497757422043, "psi_rad": 1.8239092207768914, "kappa_radpm": -0.533092297695692, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 226, "s_m": 22.6, "d_m": 0.0, "x_m": 0.8051278870662659, "y_m": 12.563764536621951, "d_right": 0.747296170251344, "d_left": 0.904194071268445, "psi_rad": 1.7668861456220764, "kappa_radpm": -0.6296211270787422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 227, "s_m": 22.700000000000003, "d_m": 0.0, "x_m": 0.7886346938778399, "y_m": 12.662295137231288, "d_right": 0.7638418258838745, "d_left": 0.8876834114760057, "psi_rad": 1.697984995361143, "kappa_radpm": -0.749707088858006, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 228, "s_m": 22.8, "d_m": 0.0, "x_m": 0.7798068069623656, "y_m": 12.761772689101234, "d_right": 0.7726784312636589, "d_left": 0.8788501813104707, "psi_rad": 1.6169447278504752, "kappa_radpm": -0.7999340589027704, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 229, "s_m": 22.900000000000002, "d_m": 0.0, "x_m": 0.7794273533871775, "y_m": 12.861669398050239, "d_right": 0.7733658368522273, "d_left": 0.8784698995917508, "psi_rad": 1.537998183580589, "kappa_radpm": -0.8011160526291805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 230, "s_m": 23.0, "d_m": 0.0, "x_m": 0.7863540002493412, "y_m": 12.961321957205962, "d_right": 0.7796251398101738, "d_left": 0.8775821500314838, "psi_rad": 1.456721517324639, "kappa_radpm": -0.8664009672378081, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 231, "s_m": 23.1, "d_m": 0.0, "x_m": 0.8021437946235546, "y_m": 13.059941206965414, "d_right": 0.7867417617388096, "d_left": 0.86801229765364, "psi_rad": 1.3647179901330273, "kappa_radpm": -0.9289129027492071, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 232, "s_m": 23.200000000000003, "d_m": 0.0, "x_m": 0.8271787881503523, "y_m": 13.156612865367396, "d_right": 0.7768512219476743, "d_left": 0.864014101370614, "psi_rad": 1.2709389367747976, "kappa_radpm": -0.8640191191052071, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 233, "s_m": 23.3, "d_m": 0.0, "x_m": 0.8610848448390036, "y_m": 13.250577891592714, "d_right": 0.7575222730322438, "d_left": 0.8671651454348247, "psi_rad": 1.1919141663119859, "kappa_radpm": -0.695380180671823, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 234, "s_m": 23.400000000000002, "d_m": 0.0, "x_m": 0.9010431107460711, "y_m": 13.342147013407203, "d_right": 0.7445862383750974, "d_left": 0.8638546590561204, "psi_rad": 1.131862900640433, "kappa_radpm": -0.5340509635730306, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 235, "s_m": 23.5, "d_m": 0.0, "x_m": 0.9459723608209517, "y_m": 13.431390361302693, "d_right": 0.7079585743353585, "d_left": 0.8774671831712841, "psi_rad": 1.0851039735973798, "kappa_radpm": -0.4295554341842389, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 236, "s_m": 23.6, "d_m": 0.0, "x_m": 0.9943102787633658, "y_m": 13.518833678627084, "d_right": 0.673975486216222, "d_left": 0.8862770268087131, "psi_rad": 1.0459518138035853, "kappa_radpm": -0.3587722926469761, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 237, "s_m": 23.700000000000003, "d_m": 0.0, "x_m": 1.0460879327235864, "y_m": 13.604297821450094, "d_right": 0.6497158587987386, "d_left": 0.866566899146663, "psi_rad": 1.0133495150679845, "kappa_radpm": -0.3162726279981881, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 238, "s_m": 23.8, "d_m": 0.0, "x_m": 1.1000281166398682, "y_m": 13.688416771817545, "d_right": 0.637757735624186, "d_left": 0.8606604138377728, "psi_rad": 0.9826972882039476, "kappa_radpm": -0.2870470145723625, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 239, "s_m": 23.900000000000002, "d_m": 0.0, "x_m": 1.1569428356587708, "y_m": 13.770545437411304, "d_right": 0.6332969988843856, "d_left": 0.8698643548499828, "psi_rad": 0.955940112153512, "kappa_radpm": -0.21705579569977207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 240, "s_m": 24.0, "d_m": 0.0, "x_m": 1.2153057556052749, "y_m": 13.851659787363205, "d_right": 0.6247135487796112, "d_left": 0.8919647498813172, "psi_rad": 0.9392861290639932, "kappa_radpm": -0.1743219784561445, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 241, "s_m": 24.1, "d_m": 0.0, "x_m": 1.2749259924961223, "y_m": 13.931850150779947, "d_right": 0.623524736606977, "d_left": 0.8989263057342145, "psi_rad": 0.9210757164622831, "kappa_radpm": -0.16451876273966493, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 242, "s_m": 24.200000000000003, "d_m": 0.0, "x_m": 1.336202519037718, "y_m": 14.010783963545016, "d_right": 0.6361457703920472, "d_left": 0.8864240657487071, "psi_rad": 0.9063823765160602, "kappa_radpm": -0.1342169374209795, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 243, "s_m": 24.3, "d_m": 0.0, "x_m": 1.3981549632357488, "y_m": 14.08919012707341, "d_right": 0.6629344313226533, "d_left": 0.8416490711470244, "psi_rad": 0.8942323289780872, "kappa_radpm": -0.10650680966778237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 244, "s_m": 24.400000000000002, "d_m": 0.0, "x_m": 1.461332672395861, "y_m": 14.166613428149304, "d_right": 0.6922598302516562, "d_left": 0.8042943510919861, "psi_rad": 0.8850810145825038, "kappa_radpm": -0.04053674335429858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 245, "s_m": 24.5, "d_m": 0.0, "x_m": 1.5247102529623398, "y_m": 14.24387329580224, "d_right": 0.723754534281203, "d_left": 0.7708407963516619, "psi_rad": 0.8861249803072275, "kappa_radpm": 0.05419025459714677, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 246, "s_m": 24.6, "d_m": 0.0, "x_m": 1.5877246301095886, "y_m": 14.32142645272714, "d_right": 0.7623177913478694, "d_left": 0.7488543425960894, "psi_rad": 0.8959190655019331, "kappa_radpm": 0.09436405210605403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 247, "s_m": 24.700000000000003, "d_m": 0.0, "x_m": 1.6495765615391773, "y_m": 14.399912570953056, "d_right": 0.8074171517187626, "d_left": 0.7383349047562533, "psi_rad": 0.9049977907284383, "kappa_radpm": 0.1402851552434009, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 248, "s_m": 24.8, "d_m": 0.0, "x_m": 1.711172137060711, "y_m": 14.478596680434995, "d_right": 0.8567670532394, "d_left": 0.7286975969197297, "psi_rad": 0.9239760965506133, "kappa_radpm": 0.21649508462201705, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 249, "s_m": 24.900000000000002, "d_m": 0.0, "x_m": 1.7699999572979574, "y_m": 14.55937170903514, "d_right": 0.9091178649783036, "d_left": 0.729105886752544, "psi_rad": 0.9482968076528417, "kappa_radpm": 0.23281027483990802, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 250, "s_m": 25.0, "d_m": 0.0, "x_m": 1.8276969943048837, "y_m": 14.640957849259543, "d_right": 0.9700468284186388, "d_left": 0.741711703373061, "psi_rad": 0.9705381515185949, "kappa_radpm": 0.2810178762268367, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 251, "s_m": 25.1, "d_m": 0.0, "x_m": 1.8828726640868307, "y_m": 14.724265919392538, "d_right": 1.0345056987733645, "d_left": 0.7643223657720725, "psi_rad": 1.004500382898209, "kappa_radpm": 0.308307635178543, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 252, "s_m": 25.200000000000003, "d_m": 0.0, "x_m": 1.934895616061409, "y_m": 14.809574076452277, "d_right": 1.104866630972761, "d_left": 0.7954327359788298, "psi_rad": 1.0321996785543035, "kappa_radpm": 0.2959509735803012, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 253, "s_m": 25.3, "d_m": 0.0, "x_m": 1.9853740402243325, "y_m": 14.895809556358927, "d_right": 1.1730041648202343, "d_left": 0.8357836403668572, "psi_rad": 1.0636905776142693, "kappa_radpm": 0.37166253993009657, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 254, "s_m": 25.400000000000002, "d_m": 0.0, "x_m": 2.0319204130221724, "y_m": 14.984215730622278, "d_right": 1.2450218817746046, "d_left": 0.8685326640201502, "psi_rad": 1.1065321865403228, "kappa_radpm": 0.4299274453461621, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 255, "s_m": 25.5, "d_m": 0.0, "x_m": 2.0748344187805765, "y_m": 15.074454877469554, "d_right": 1.226218714688095, "d_left": 0.8901879665097063, "psi_rad": 1.1496760666835018, "kappa_radpm": 0.4724006893280397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 256, "s_m": 25.6, "d_m": 0.0, "x_m": 2.11358902430802, "y_m": 15.166545562720898, "d_right": 1.1874317810468071, "d_left": 0.9179492020650258, "psi_rad": 1.2010123244059308, "kappa_radpm": 0.553040780617462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 257, "s_m": 25.700000000000003, "d_m": 0.0, "x_m": 2.1470230639289687, "y_m": 15.260693033273947, "d_right": 1.1540061581044492, "d_left": 0.9481079547082913, "psi_rad": 1.2602842228069941, "kappa_radpm": 0.5761130986766483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 258, "s_m": 25.8, "d_m": 0.0, "x_m": 2.174613208443236, "y_m": 15.356715890616915, "d_right": 1.1264385354381203, "d_left": 0.9741480156820651, "psi_rad": 1.3162349441412604, "kappa_radpm": 0.5475638718439524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 259, "s_m": 25.900000000000002, "d_m": 0.0, "x_m": 2.1973260172857043, "y_m": 15.454012462544938, "d_right": 1.1037492384177472, "d_left": 0.9967636435729879, "psi_rad": 1.3697969971757846, "kappa_radpm": 0.5765640442360775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 260, "s_m": 26.0, "d_m": 0.0, "x_m": 2.214491628327594, "y_m": 15.552437581933532, "d_right": 1.0866003596597815, "d_left": 1.013876709342457, "psi_rad": 1.431547752988476, "kappa_radpm": 0.6238636379926821, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 261, "s_m": 26.1, "d_m": 0.0, "x_m": 2.2250457967512824, "y_m": 15.651791032057481, "d_right": 1.0760532722797893, "d_left": 1.0244096894350623, "psi_rad": 1.494569724774321, "kappa_radpm": 0.5785941862199184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 262, "s_m": 26.200000000000003, "d_m": 0.0, "x_m": 2.2297020964415184, "y_m": 15.751593731857088, "d_right": 1.0713983964532907, "d_left": 1.02905975697689, "psi_rad": 1.5472665902324596, "kappa_radpm": 0.4690247267890524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 263, "s_m": 26.3, "d_m": 0.0, "x_m": 2.2297460454284708, "y_m": 15.851511976835273, "d_right": 1.071354121479375, "d_left": 1.0291023409372284, "psi_rad": 1.5883746701321315, "kappa_radpm": 0.3930427727360952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 264, "s_m": 26.400000000000002, "d_m": 0.0, "x_m": 2.2261901315217365, "y_m": 15.951362453785817, "d_right": 1.0749102689842476, "d_left": 1.0255445475265175, "psi_rad": 1.6258751447796786, "kappa_radpm": 0.3509996365678192, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 265, "s_m": 26.5, "d_m": 0.0, "x_m": 2.2187468186667965, "y_m": 16.051009755039264, "d_right": 1.0823560179297904, "d_left": 1.0180952913244374, "psi_rad": 1.6585745974456954, "kappa_radpm": 0.29719276853717, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 266, "s_m": 26.6, "d_m": 0.0, "x_m": 2.2086717708710126, "y_m": 16.15042475312528, "d_right": 1.0924362385996211, "d_left": 1.0080090486190676, "psi_rad": 1.6853136984871127, "kappa_radpm": 0.2643524236530437, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 267, "s_m": 26.700000000000003, "d_m": 0.0, "x_m": 2.195912720066727, "y_m": 16.24953154864745, "d_right": 1.0951946336215272, "d_left": 0.9952317237652245, "psi_rad": 1.711445082176304, "kappa_radpm": 0.24494025695818045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 268, "s_m": 26.8, "d_m": 0.0, "x_m": 2.1806579887380075, "y_m": 16.3482851211604, "d_right": 1.0879519425253763, "d_left": 0.9799508256540578, "psi_rad": 1.7343017498787487, "kappa_radpm": 0.21137361125747378, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 269, "s_m": 26.900000000000002, "d_m": 0.0, "x_m": 2.163382920169329, "y_m": 16.44670786962459, "d_right": 1.0919028879461044, "d_left": 0.9626428574140142, "psi_rad": 1.7537198044277988, "kappa_radpm": 0.18413412678139562, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 270, "s_m": 27.0, "d_m": 0.0, "x_m": 2.1443050072179255, "y_m": 16.544796829651, "d_right": 1.097590509330428, "d_left": 0.9435262330350844, "psi_rad": 1.7711285752350279, "kappa_radpm": 0.16777944269360634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 271, "s_m": 27.1, "d_m": 0.0, "x_m": 2.1236140613804073, "y_m": 16.64255958866905, "d_right": 1.0881914784372628, "d_left": 0.9227923318688706, "psi_rad": 1.7872756929665201, "kappa_radpm": 0.1590308299422727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 272, "s_m": 27.200000000000003, "d_m": 0.0, "x_m": 2.101378610717638, "y_m": 16.73998279643208, "d_right": 1.081648389031764, "d_left": 0.9078720039447488, "psi_rad": 1.8029347412234824, "kappa_radpm": 0.1773525497603301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 273, "s_m": 27.3, "d_m": 0.0, "x_m": 2.0776377439812994, "y_m": 16.837044737795026, "d_right": 1.0759156815246669, "d_left": 0.9022708920116025, "psi_rad": 1.8227462029185861, "kappa_radpm": 0.25940181037569565, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 274, "s_m": 27.400000000000002, "d_m": 0.0, "x_m": 2.0515618947935024, "y_m": 16.93350592047633, "d_right": 1.0660567635487286, "d_left": 0.9053026369919135, "psi_rad": 1.8548151032986215, "kappa_radpm": 0.3805185438259695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 275, "s_m": 27.5, "d_m": 0.0, "x_m": 2.021651371809217, "y_m": 17.02883769971198, "d_right": 1.069507542647687, "d_left": 0.9153124850870776, "psi_rad": 1.89884991168378, "kappa_radpm": 0.45746205815628715, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 276, "s_m": 27.6, "d_m": 0.0, "x_m": 1.9871952382060074, "y_m": 17.12262407993241, "d_right": 1.08691986687894, "d_left": 0.8995596860847813, "psi_rad": 1.946307514929879, "kappa_radpm": 0.4496725146373648, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 277, "s_m": 27.700000000000003, "d_m": 0.0, "x_m": 1.9483843071503186, "y_m": 17.214692313840985, "d_right": 1.1101875923348885, "d_left": 0.8810892726048415, "psi_rad": 1.988784414611253, "kappa_radpm": 0.41756667949817916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 278, "s_m": 27.8, "d_m": 0.0, "x_m": 1.9060915104641383, "y_m": 17.305223687160897, "d_right": 1.0864636624013126, "d_left": 0.869920796494809, "psi_rad": 2.029820850829515, "kappa_radpm": 0.44484107689273356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 279, "s_m": 27.900000000000002, "d_m": 0.0, "x_m": 1.8598628442984433, "y_m": 17.393800561799754, "d_right": 1.0759491430101265, "d_left": 0.8657666131998136, "psi_rad": 2.0777526299897997, "kappa_radpm": 0.4892590053357071, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 280, "s_m": 28.0, "d_m": 0.0, "x_m": 1.8091034500188192, "y_m": 17.479860688244404, "d_right": 1.0501421203829286, "d_left": 0.867947878494255, "psi_rad": 2.127672651896656, "kappa_radpm": 0.47880653401236817, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 281, "s_m": 28.1, "d_m": 0.0, "x_m": 1.754272093024876, "y_m": 17.56339523225383, "d_right": 1.000410211782819, "d_left": 0.8726958532683573, "psi_rad": 2.1735139367922733, "kappa_radpm": 0.45122250009819176, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 282, "s_m": 28.200000000000003, "d_m": 0.0, "x_m": 1.695845762620637, "y_m": 17.644447407262476, "d_right": 0.9626335396751857, "d_left": 0.8471837853955839, "psi_rad": 2.2179171519162946, "kappa_radpm": 0.4618374598853481, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 283, "s_m": 28.3, "d_m": 0.0, "x_m": 1.633821832265502, "y_m": 17.72279029235779, "d_right": 0.9384595877350642, "d_left": 0.8165463988402146, "psi_rad": 2.265881428769343, "kappa_radpm": 0.4964608708182072, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 284, "s_m": 28.400000000000002, "d_m": 0.0, "x_m": 1.5679024498802934, "y_m": 17.797871154934867, "d_right": 0.9236442258082316, "d_left": 0.7923203199670199, "psi_rad": 2.317209326079936, "kappa_radpm": 0.5710811656789017, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 285, "s_m": 28.5, "d_m": 0.0, "x_m": 1.4981795315502795, "y_m": 17.86944350899853, "d_right": 0.8807433907089456, "d_left": 0.775073823745428, "psi_rad": 2.3800976619051233, "kappa_radpm": 0.652137609937542, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 286, "s_m": 28.6, "d_m": 0.0, "x_m": 1.423373796692807, "y_m": 17.93565046686902, "d_right": 0.8524251663992883, "d_left": 0.7631141471210922, "psi_rad": 2.4476368480674444, "kappa_radpm": 0.6574609084127236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 287, "s_m": 28.700000000000003, "d_m": 0.0, "x_m": 1.34465986661097, "y_m": 17.997173151187972, "d_right": 0.8047911008231399, "d_left": 0.7509540893159803, "psi_rad": 2.511589843587668, "kappa_radpm": 0.6447320661166023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 288, "s_m": 28.8, "d_m": 0.0, "x_m": 1.2620182309168593, "y_m": 18.05329788096842, "d_right": 0.7701235610304896, "d_left": 0.7377643090811139, "psi_rad": 2.576583261290765, "kappa_radpm": 0.6670256372502914, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 289, "s_m": 28.900000000000002, "d_m": 0.0, "x_m": 1.1759971044542876, "y_m": 18.10409690793919, "d_right": 0.7535466135664266, "d_left": 0.7199286314510934, "psi_rad": 2.6449949710377263, "kappa_radpm": 0.7002711059416566, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 290, "s_m": 29.0, "d_m": 0.0, "x_m": 1.0864674220792563, "y_m": 18.148427625231864, "d_right": 0.7441833450057299, "d_left": 0.7083641546685174, "psi_rad": 2.716637482479096, "kappa_radpm": 0.7014980933913995, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 291, "s_m": 29.1, "d_m": 0.0, "x_m": 0.9940642101267887, "y_m": 18.186426844558888, "d_right": 0.731191898430407, "d_left": 0.7013253571335525, "psi_rad": 2.785294589716006, "kappa_radpm": 0.6950394221020506, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 292, "s_m": 29.200000000000003, "d_m": 0.0, "x_m": 0.8993042418828762, "y_m": 18.218086446286716, "d_right": 0.7265340747361843, "d_left": 0.6910875577493091, "psi_rad": 2.8556453668995063, "kappa_radpm": 0.7216094720018518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 293, "s_m": 29.3, "d_m": 0.0, "x_m": 0.8024914122509905, "y_m": 18.24275010644326, "d_right": 0.7293543324512632, "d_left": 0.6879356941284809, "psi_rad": 2.9296164841163765, "kappa_radpm": 0.7730654994562602, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 294, "s_m": 29.400000000000002, "d_m": 0.0, "x_m": 0.704113907321934, "y_m": 18.2600932145064, "d_right": 0.7194764921704403, "d_left": 0.6917870707327974, "psi_rad": 3.0102584667907584, "kappa_radpm": 0.8421429466066122, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 295, "s_m": 29.5, "d_m": 0.0, "x_m": 0.604611066318568, "y_m": 18.26888902101964, "d_right": 0.7130393203755961, "d_left": 0.7013839098063546, "psi_rad": 3.098045073437699, "kappa_radpm": 0.8910986519292274, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 296, "s_m": 29.6, "d_m": 0.0, "x_m": 0.504719729981107, "y_m": 18.268781841467305, "d_right": 0.7292824097914101, "d_left": 0.716142024978911, "psi_rad": 3.188478197176604, "kappa_radpm": 0.9126045600700672, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 297, "s_m": 29.700000000000003, "d_m": 0.0, "x_m": 0.4052546670644082, "y_m": 18.259535232867076, "d_right": 0.7606521853445906, "d_left": 0.7269896301468283, "psi_rad": 3.2805659854517124, "kappa_radpm": 0.9316350346000579, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 298, "s_m": 29.8, "d_m": 0.0, "x_m": 0.3070634207623234, "y_m": 18.241134667315126, "d_right": 0.7878184646692299, "d_left": 0.7387643501655872, "psi_rad": 3.3748052040966154, "kappa_radpm": 0.973504271071377, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 299, "s_m": 29.900000000000002, "d_m": 0.0, "x_m": 0.21110267219691112, "y_m": 18.213417416926788, "d_right": 0.815611571940382, "d_left": 0.7497478655708811, "psi_rad": 3.475266839665988, "kappa_radpm": 1.01968586237974, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 300, "s_m": 30.0, "d_m": 0.0, "x_m": 0.11858470861394205, "y_m": 18.175801289996407, "d_right": 0.8534115240200695, "d_left": 0.7557973540789528, "psi_rad": 3.5787423765725634, "kappa_radpm": 1.0271718946179131, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 301, "s_m": 30.1, "d_m": 0.0, "x_m": 0.03038580111445726, "y_m": 18.12896784698733, "d_right": 0.9006384857172661, "d_left": 0.7648141596018143, "psi_rad": 3.6807012185895704, "kappa_radpm": 1.000325632774941, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 302, "s_m": 30.200000000000003, "d_m": 0.0, "x_m": -0.05258795535429375, "y_m": 18.073402630881095, "d_right": 0.956482421670754, "d_left": 0.77660556172079, "psi_rad": 3.7788075031275516, "kappa_radpm": 0.9219427514349654, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 303, "s_m": 30.3, "d_m": 0.0, "x_m": -0.1299863254815766, "y_m": 18.010256600710736, "d_right": 1.0170492256543264, "d_left": 0.7866903389844202, "psi_rad": 3.8650897688765635, "kappa_radpm": 0.8323884188779362, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 304, "s_m": 30.400000000000002, "d_m": 0.0, "x_m": -0.20221064124854282, "y_m": 17.941244768828913, "d_right": 0.9530190668258222, "d_left": 0.7918798851669886, "psi_rad": 3.945285186903139, "kappa_radpm": 0.7856765939189847, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 305, "s_m": 30.5, "d_m": 0.0, "x_m": -0.26853486383312136, "y_m": 17.86654369085573, "d_right": 0.8993979430867713, "d_left": 0.7910690853467104, "psi_rad": 4.0222250876603605, "kappa_radpm": 0.7234015830499474, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 306, "s_m": 30.6, "d_m": 0.0, "x_m": -0.32933945921594304, "y_m": 17.787263397544567, "d_right": 0.8571035444106521, "d_left": 0.7956910982063501, "psi_rad": 4.089965503513128, "kappa_radpm": 0.6201969827585008, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 307, "s_m": 30.700000000000003, "d_m": 0.0, "x_m": -0.3849715300783158, "y_m": 17.70427935719694, "d_right": 0.8243885010774733, "d_left": 0.8064288801933224, "psi_rad": 4.146264484212061, "kappa_radpm": 0.5082529497595245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 308, "s_m": 30.8, "d_m": 0.0, "x_m": -0.43648534242162673, "y_m": 17.618666288077875, "d_right": 0.8076924987006154, "d_left": 0.8244393113207911, "psi_rad": 4.191616093465033, "kappa_radpm": 0.4447631173511546, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 309, "s_m": 30.900000000000002, "d_m": 0.0, "x_m": -0.48438127199299125, "y_m": 17.530967419941785, "d_right": 0.7973016268408393, "d_left": 0.8498971294092742, "psi_rad": 4.235217107682292, "kappa_radpm": 0.4415929811103969, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 310, "s_m": 31.0, "d_m": 0.0, "x_m": -0.5282444640955317, "y_m": 17.441189863585457, "d_right": 0.8024908724393114, "d_left": 0.8775688137861132, "psi_rad": 4.279934689687113, "kappa_radpm": 0.40733026063579425, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 311, "s_m": 31.1, "d_m": 0.0, "x_m": -0.5681143685484956, "y_m": 17.349567887542136, "d_right": 0.8022825430978631, "d_left": 0.8843665931548192, "psi_rad": 4.31668315980945, "kappa_radpm": 0.3197211965252622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 312, "s_m": 31.200000000000003, "d_m": 0.0, "x_m": -0.6052663356038952, "y_m": 17.256812584212483, "d_right": 0.7935861963804093, "d_left": 0.8894452546773318, "psi_rad": 4.343878928992165, "kappa_radpm": 0.23136390757432235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 313, "s_m": 31.3, "d_m": 0.0, "x_m": -0.6400989490896538, "y_m": 17.16315180599459, "d_right": 0.7643879186711996, "d_left": 0.9031517864216535, "psi_rad": 4.362955941324315, "kappa_radpm": 0.1808041027714502, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 314, "s_m": 31.400000000000002, "d_m": 0.0, "x_m": -0.6736886099262341, "y_m": 17.06903848891538, "d_right": 0.7486875017506424, "d_left": 0.9111675273365699, "psi_rad": 4.380039749546455, "kappa_radpm": 0.1778023484001845, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 315, "s_m": 31.5, "d_m": 0.0, "x_m": -0.7052997193114223, "y_m": 16.97424720424421, "d_right": 0.7482440412393389, "d_left": 0.8981986549736976, "psi_rad": 4.398516411004351, "kappa_radpm": 0.16616031341716742, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 316, "s_m": 31.6, "d_m": 0.0, "x_m": -0.7353897938157979, "y_m": 16.878956360777533, "d_right": 0.7402072861713038, "d_left": 0.8887353352400041, "psi_rad": 4.413271812229889, "kappa_radpm": 0.11337780119137886, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 317, "s_m": 31.700000000000003, "d_m": 0.0, "x_m": -0.7641914392059443, "y_m": 16.783269249710074, "d_right": 0.7434765056026708, "d_left": 0.8891108246485445, "psi_rad": 4.421191971242628, "kappa_radpm": 0.042284814193132014, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 318, "s_m": 31.8, "d_m": 0.0, "x_m": -0.7927684411053338, "y_m": 16.68751351686555, "d_right": 0.7365125131191101, "d_left": 0.8916591187989963, "psi_rad": 4.421728775068515, "kappa_radpm": 0.0235870135449745, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 319, "s_m": 31.900000000000002, "d_m": 0.0, "x_m": -0.8214676470214026, "y_m": 16.59179450892416, "d_right": 0.7382968998359253, "d_left": 0.8934739083518097, "psi_rad": 4.425909373951622, "kappa_radpm": 0.019011653656704208, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 320, "s_m": 32.0, "d_m": 0.0, "x_m": -0.8492429434266267, "y_m": 16.495803473200517, "d_right": 0.7340248158865648, "d_left": 0.8754703509364249, "psi_rad": 4.425531105799855, "kappa_radpm": -0.03246374915466088, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 321, "s_m": 32.1, "d_m": 0.0, "x_m": -0.8780143762550661, "y_m": 16.400106813870334, "d_right": 0.7341192395418716, "d_left": 0.8686415645176865, "psi_rad": 4.41941662412069, "kappa_radpm": -0.06829707173027222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 322, "s_m": 32.2, "d_m": 0.0, "x_m": -0.9069611656671345, "y_m": 16.30446350057346, "d_right": 0.7305075186154536, "d_left": 0.8686343185028101, "psi_rad": 4.411871691453801, "kappa_radpm": -0.11601092992657769, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 323, "s_m": 32.300000000000004, "d_m": 0.0, "x_m": -0.9371732129863464, "y_m": 16.209212204026823, "d_right": 0.7391805791666204, "d_left": 0.8559736318215903, "psi_rad": 4.396214438135375, "kappa_radpm": -0.16767711402362107, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 324, "s_m": 32.4, "d_m": 0.0, "x_m": -0.9690997466136994, "y_m": 16.114523919496527, "d_right": 0.7374863001225477, "d_left": 0.8492748931020415, "psi_rad": 4.378336268649077, "kappa_radpm": -0.12637896247171598, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 325, "s_m": 32.5, "d_m": 0.0, "x_m": -1.0026975920976877, "y_m": 16.020413446190535, "d_right": 0.7431679254574809, "d_left": 0.8509956169059316, "psi_rad": 4.370938645641031, "kappa_radpm": -0.06948355350867796, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 326, "s_m": 32.6, "d_m": 0.0, "x_m": -1.0360224712333304, "y_m": 15.92620522960374, "d_right": 0.734102564718417, "d_left": 0.842003828732027, "psi_rad": 4.364439557947342, "kappa_radpm": -0.07327318192382082, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 327, "s_m": 32.7, "d_m": 0.0, "x_m": -1.0708403989288462, "y_m": 15.832540271541232, "d_right": 0.7293922480422443, "d_left": 0.8358835980976094, "psi_rad": 4.356284009256267, "kappa_radpm": -0.05373554263736979, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 328, "s_m": 32.800000000000004, "d_m": 0.0, "x_m": -1.1056973938254264, "y_m": 15.738888150779294, "d_right": 0.7221974358737767, "d_left": 0.8325608797412719, "psi_rad": 4.353692449419867, "kappa_radpm": -0.030066282564209512, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 329, "s_m": 32.9, "d_m": 0.0, "x_m": -1.1410007833120268, "y_m": 15.645403713745216, "d_right": 0.7079828470033693, "d_left": 0.8192886309101551, "psi_rad": 4.350270752743425, "kappa_radpm": -0.015892453604828827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 330, "s_m": 33.0, "d_m": 0.0, "x_m": -1.1764976104484237, "y_m": 15.551992967616862, "d_right": 0.6725397025587276, "d_left": 0.7985405552490378, "psi_rad": 4.350513958698902, "kappa_radpm": 0.04591166366752608, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 331, "s_m": 33.1, "d_m": 0.0, "x_m": -1.2117554607738605, "y_m": 15.458491536458396, "d_right": 0.6374051942289296, "d_left": 0.7770735371721775, "psi_rad": 4.359453085476931, "kappa_radpm": 0.13691279408422297, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 332, "s_m": 33.2, "d_m": 0.0, "x_m": -1.2455760668246771, "y_m": 15.364462798557335, "d_right": 0.6085336497967835, "d_left": 0.7505382923453667, "psi_rad": 4.3778965175157465, "kappa_radpm": 0.14913674200903504, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 333, "s_m": 33.300000000000004, "d_m": 0.0, "x_m": -1.2773614230294048, "y_m": 15.269725740130337, "d_right": 0.5973939529912821, "d_left": 0.7343033675000639, "psi_rad": 4.389280433878738, "kappa_radpm": 0.09596748848903935, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 334, "s_m": 33.4, "d_m": 0.0, "x_m": -1.3090333467927144, "y_m": 15.174949207549862, "d_right": 0.5926038333418477, "d_left": 0.710599839498566, "psi_rad": 4.397090015213554, "kappa_radpm": 0.08807960463964815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 335, "s_m": 33.5, "d_m": 0.0, "x_m": -1.3393357618733732, "y_m": 15.079725422036514, "d_right": 0.5767602121378942, "d_left": 0.6873887608673942, "psi_rad": 4.406896354806667, "kappa_radpm": 0.09308846293190065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 336, "s_m": 33.6, "d_m": 0.0, "x_m": -1.3691421936338681, "y_m": 14.98434818272252, "d_right": 0.5706278718851706, "d_left": 0.6717009977544808, "psi_rad": 4.4157077077999345, "kappa_radpm": 0.13238031898953562, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 337, "s_m": 33.7, "d_m": 0.0, "x_m": -1.3977611488682493, "y_m": 14.888607708306003, "d_right": 0.5830668879820571, "d_left": 0.6615906864990688, "psi_rad": 4.433372418604574, "kappa_radpm": 0.1689482528772146, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 338, "s_m": 33.800000000000004, "d_m": 0.0, "x_m": -1.4241805095390978, "y_m": 14.792235575479323, "d_right": 0.613915577489907, "d_left": 0.6492789183087984, "psi_rad": 4.449497358375377, "kappa_radpm": 0.1902537299757423, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 339, "s_m": 33.9, "d_m": 0.0, "x_m": -1.4496971406544208, "y_m": 14.695623331932955, "d_right": 0.6513705378880936, "d_left": 0.6281213867359108, "psi_rad": 4.471423164599723, "kappa_radpm": 0.2712141248351152, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 340, "s_m": 34.0, "d_m": 0.0, "x_m": -1.471864538541186, "y_m": 14.598193447242362, "d_right": 0.6446983845618572, "d_left": 0.6083378085688638, "psi_rad": 4.5037401833424004, "kappa_radpm": 0.27015346176491484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 341, "s_m": 34.1, "d_m": 0.0, "x_m": -1.4910879812710045, "y_m": 14.500134788524003, "d_right": 0.656382439561278, "d_left": 0.6001819700265356, "psi_rad": 4.525453856952706, "kappa_radpm": 0.21853652840271298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 342, "s_m": 34.2, "d_m": 0.0, "x_m": -1.5090053249408653, "y_m": 14.401830401876104, "d_right": 0.6839000291897992, "d_left": 0.5905811901391724, "psi_rad": 4.547447489022943, "kappa_radpm": 0.26241723297952824, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 343, "s_m": 34.300000000000004, "d_m": 0.0, "x_m": -1.5238968826590669, "y_m": 14.303029557916858, "d_right": 0.7251205403780401, "d_left": 0.5817196736765357, "psi_rad": 4.5779373035486115, "kappa_radpm": 0.28909250426354394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 344, "s_m": 34.4, "d_m": 0.0, "x_m": -1.5357902910546684, "y_m": 14.203815975026428, "d_right": 0.7132210675688688, "d_left": 0.5869045683743319, "psi_rad": 4.605265989875652, "kappa_radpm": 0.2907042808718252, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 345, "s_m": 34.5, "d_m": 0.0, "x_m": -1.5452627505487784, "y_m": 14.104341317735205, "d_right": 0.7037451872035242, "d_left": 0.5963670406976398, "psi_rad": 4.6360781597229765, "kappa_radpm": 0.28812690124918383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 346, "s_m": 34.6, "d_m": 0.0, "x_m": -1.5510229728579565, "y_m": 14.004589943680307, "d_right": 0.697983950341138, "d_left": 0.6021228919301647, "psi_rad": 4.662891370125489, "kappa_radpm": 0.22733747671361382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 347, "s_m": 34.7, "d_m": 0.0, "x_m": -1.5551500753238767, "y_m": 13.90475089889715, "d_right": 0.6938565477706471, "d_left": 0.6160058566651331, "psi_rad": 4.681545655065699, "kappa_radpm": 0.228896971060204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 348, "s_m": 34.800000000000004, "d_m": 0.0, "x_m": -1.557185656184729, "y_m": 13.804847246347565, "d_right": 0.6918211543666511, "d_left": 0.6432905533514639, "psi_rad": 4.70867076433753, "kappa_radpm": 0.24764054397131474, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 349, "s_m": 34.9, "d_m": 0.0, "x_m": -1.5558930509734137, "y_m": 13.704931357429288, "d_right": 0.6931139261976078, "d_left": 0.6812552235324988, "psi_rad": -1.552111543319624, "kappa_radpm": 0.18075613816248115, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 350, "s_m": 35.0, "d_m": 0.0, "x_m": -1.5534517737565214, "y_m": 13.605035035663972, "d_right": 0.6955551523706384, "d_left": 0.7204465825847742, "psi_rad": -1.538363315209561, "kappa_radpm": 0.17521482760526785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 351, "s_m": 35.1, "d_m": 0.0, "x_m": -1.5494125588029608, "y_m": 13.50518981579188, "d_right": 0.6995938083439082, "d_left": 0.7337012199819481, "psi_rad": -1.5170685777985704, "kappa_radpm": 0.22692943470591143, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 352, "s_m": 35.2, "d_m": 0.0, "x_m": -1.542720378169653, "y_m": 13.405490707145455, "d_right": 0.7062841069510906, "d_left": 0.7550536852484557, "psi_rad": -1.4929774282683788, "kappa_radpm": 0.2301903073198175, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 353, "s_m": 35.300000000000004, "d_m": 0.0, "x_m": -1.5338769592919232, "y_m": 13.305955091656216, "d_right": 0.6873680411705844, "d_left": 0.7831774966014862, "psi_rad": -1.471030516334607, "kappa_radpm": 0.24261167467850786, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 354, "s_m": 35.4, "d_m": 0.0, "x_m": -1.522817452841259, "y_m": 13.20665657079874, "d_right": 0.6802249959007665, "d_left": 0.7791502615085182, "psi_rad": -1.4444550933326772, "kappa_radpm": 0.27497086050566777, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 355, "s_m": 35.5, "d_m": 0.0, "x_m": -1.508699200298417, "y_m": 13.107732768104318, "d_right": 0.6771873799154594, "d_left": 0.7830586418622243, "psi_rad": -1.4160363442334734, "kappa_radpm": 0.2556838767035252, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 356, "s_m": 35.6, "d_m": 0.0, "x_m": -1.4920143503793384, "y_m": 13.009210239601783, "d_right": 0.6751751757528016, "d_left": 0.7969973551029139, "psi_rad": -1.3933183179919721, "kappa_radpm": 0.16337396549664485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 357, "s_m": 35.7, "d_m": 0.0, "x_m": -1.473417221810819, "y_m": 12.911028083273468, "d_right": 0.678010956451637, "d_left": 0.8210733044756288, "psi_rad": -1.3833615511341444, "kappa_radpm": 0.045045666299665665, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 358, "s_m": 35.800000000000004, "d_m": 0.0, "x_m": -1.4547732261346997, "y_m": 12.812854022348915, "d_right": 0.6953932595313229, "d_left": 0.8558112947028108, "psi_rad": -1.384309184732039, "kappa_radpm": -0.02955212016062747, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 359, "s_m": 35.9, "d_m": 0.0, "x_m": -1.4363625829892057, "y_m": 12.714638756645723, "d_right": 0.7136799064447991, "d_left": 0.8437857443867949, "psi_rad": -1.3892719751662699, "kappa_radpm": -0.05462356583035399, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 360, "s_m": 36.0, "d_m": 0.0, "x_m": -1.4186938711852477, "y_m": 12.616284269251429, "d_right": 0.7312427451624646, "d_left": 0.8442619389811592, "psi_rad": -1.3952338978981098, "kappa_radpm": -0.10378253956403682, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 361, "s_m": 36.1, "d_m": 0.0, "x_m": -1.4014551570091058, "y_m": 12.517853793844065, "d_right": 0.7483878599475198, "d_left": 0.8569067899549425, "psi_rad": -1.4100284830790772, "kappa_radpm": -0.195446043710521, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 362, "s_m": 36.2, "d_m": 0.0, "x_m": -1.3867049693640592, "y_m": 12.419025745468993, "d_right": 0.7630720368469313, "d_left": 0.8661667956342681, "psi_rad": -1.434323106640214, "kappa_radpm": -0.28146595589144674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 363, "s_m": 36.300000000000004, "d_m": 0.0, "x_m": -1.374267601484835, "y_m": 12.319876808465173, "d_right": 0.7754635939906247, "d_left": 0.8762056188925147, "psi_rad": -1.4663216742573666, "kappa_radpm": -0.3653550257735194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 364, "s_m": 36.4, "d_m": 0.0, "x_m": -1.3658692866781137, "y_m": 12.220318976603274, "d_right": 0.7838394103566031, "d_left": 0.8677973293831456, "psi_rad": -1.507394111794918, "kappa_radpm": -0.42235238438073086, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 365, "s_m": 36.5, "d_m": 0.0, "x_m": -1.3616091394185674, "y_m": 12.120491095343397, "d_right": 0.7880929001156638, "d_left": 0.8635352297488563, "psi_rad": -1.5507921511335128, "kappa_radpm": -0.485434257982158, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 366, "s_m": 36.6, "d_m": 0.0, "x_m": -1.3618730818510079, "y_m": 12.020577091174133, "d_right": 0.7878301711924373, "d_left": 0.8637964217875885, "psi_rad": 4.678704343788237, "kappa_radpm": -0.6254185134224066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 367, "s_m": 36.7, "d_m": 0.0, "x_m": -1.3683348761443055, "y_m": 11.920898835599516, "d_right": 0.7813651843568016, "d_left": 0.870238406491307, "psi_rad": 4.607309453361592, "kappa_radpm": -0.7674886144143556, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 368, "s_m": 36.800000000000004, "d_m": 0.0, "x_m": -1.3828112557904655, "y_m": 11.822050762129336, "d_right": 0.7775223572675537, "d_left": 0.8846514122723713, "psi_rad": 4.525206620905366, "kappa_radpm": -0.847997849602995, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 369, "s_m": 36.9, "d_m": 0.0, "x_m": -1.40548264589963, "y_m": 11.724764427716474, "d_right": 0.7728763043198456, "d_left": 0.9071937127989296, "psi_rad": 4.437709883440993, "kappa_radpm": -0.8601006677046241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 370, "s_m": 37.0, "d_m": 0.0, "x_m": -1.4369405930390575, "y_m": 11.62996802550129, "d_right": 0.765120843407155, "d_left": 0.9384476918727432, "psi_rad": 4.353186487364441, "kappa_radpm": -0.8612503986300402, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 371, "s_m": 37.1, "d_m": 0.0, "x_m": -1.4756558698520066, "y_m": 11.537881333910411, "d_right": 0.7626251612069144, "d_left": 0.9769316307055828, "psi_rad": 4.265459803714984, "kappa_radpm": -0.9734295121161929, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 372, "s_m": 37.2, "d_m": 0.0, "x_m": -1.5231747876600963, "y_m": 11.450041046754645, "d_right": 0.763432952984338, "d_left": 1.0242459179968497, "psi_rad": 4.158500584941203, "kappa_radpm": -1.125932960376037, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 373, "s_m": 37.300000000000004, "d_m": 0.0, "x_m": -1.5805378144625362, "y_m": 11.36829788853848, "d_right": 0.7657224537612207, "d_left": 1.019669657917908, "psi_rad": 4.040273211639777, "kappa_radpm": -1.1437648878715878, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 374, "s_m": 37.4, "d_m": 0.0, "x_m": -1.6473041103255381, "y_m": 11.294041623556975, "d_right": 0.7690094288740594, "d_left": 0.9692432115706148, "psi_rad": 3.929747607366885, "kappa_radpm": -1.022404390584557, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 375, "s_m": 37.5, "d_m": 0.0, "x_m": -1.7212067871001893, "y_m": 11.22685118013515, "d_right": 0.7642624093349026, "d_left": 0.9314691134677355, "psi_rad": 3.835792333522866, "kappa_radpm": -0.8626128019332779, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 376, "s_m": 37.6, "d_m": 0.0, "x_m": -1.80070019321053, "y_m": 11.166351484250054, "d_right": 0.7618218115861388, "d_left": 0.9053696006232593, "psi_rad": 3.7572250469802295, "kappa_radpm": -0.6877436898404365, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 377, "s_m": 37.7, "d_m": 0.0, "x_m": -1.8842240589435342, "y_m": 11.111543222362801, "d_right": 0.7654944965174807, "d_left": 0.8655775914818382, "psi_rad": 3.6982435955547786, "kappa_radpm": -0.5149664884433314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 378, "s_m": 37.800000000000004, "d_m": 0.0, "x_m": -1.97030629976913, "y_m": 11.060806649720734, "d_right": 0.7773149642568872, "d_left": 0.8364002298681658, "psi_rad": 3.6542317492915632, "kappa_radpm": -0.39227680330799153, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 379, "s_m": 37.9, "d_m": 0.0, "x_m": -2.058343719834296, "y_m": 11.013543685595042, "d_right": 0.7976898313655632, "d_left": 0.8019109389018674, "psi_rad": 3.6197882348931802, "kappa_radpm": -0.286518983314914, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 380, "s_m": 38.0, "d_m": 0.0, "x_m": -2.1477155113519455, "y_m": 10.96885199344948, "d_right": 0.8269789737656112, "d_left": 0.7816588043135789, "psi_rad": 3.5969279526285804, "kappa_radpm": -0.18635202832181896, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 381, "s_m": 38.1, "d_m": 0.0, "x_m": -2.2378271621872567, "y_m": 10.925659190780232, "d_right": 0.8482381886331138, "d_left": 0.775550769283146, "psi_rad": 3.5825178292288165, "kappa_radpm": -0.12774688416589353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 382, "s_m": 38.2, "d_m": 0.0, "x_m": -2.3284542365195704, "y_m": 10.883559356384888, "d_right": 0.8600369953618135, "d_left": 0.7656019343953048, "psi_rad": 3.5713785757954017, "kappa_radpm": -0.07386368059369541, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 383, "s_m": 38.300000000000004, "d_m": 0.0, "x_m": -2.419505955942018, "y_m": 10.842384545791685, "d_right": 0.8328244793258306, "d_left": 0.73924151982555, "psi_rad": 3.5677450931100774, "kappa_radpm": -0.003623592624357741, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 384, "s_m": 38.400000000000006, "d_m": 0.0, "x_m": -2.51043711018735, "y_m": 10.800944159367535, "d_right": 0.817297719442525, "d_left": 0.725506024203045, "psi_rad": 3.57065385727053, "kappa_radpm": 0.04185395782675183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 385, "s_m": 38.5, "d_m": 0.0, "x_m": -2.6012476885056013, "y_m": 10.759240382786684, "d_right": 0.8141237404656846, "d_left": 0.725115340573476, "psi_rad": 3.5761158846754277, "kappa_radpm": 0.10251472498910452, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 386, "s_m": 38.6, "d_m": 0.0, "x_m": -2.691720141812898, "y_m": 10.71680942483139, "d_right": 0.8238521869499884, "d_left": 0.724003841366826, "psi_rad": 3.591156802268351, "kappa_radpm": 0.20521247769792694, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 387, "s_m": 38.7, "d_m": 0.0, "x_m": -2.781228604031738, "y_m": 10.672396418898009, "d_right": 0.825577672860707, "d_left": 0.7098959012515217, "psi_rad": 3.617158380215013, "kappa_radpm": 0.2861609759066397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 388, "s_m": 38.800000000000004, "d_m": 0.0, "x_m": -2.869371232242132, "y_m": 10.625321303864837, "d_right": 0.8149130914975975, "d_left": 0.7014320080489302, "psi_rad": 3.648388997449679, "kappa_radpm": 0.35265939814011826, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 389, "s_m": 38.900000000000006, "d_m": 0.0, "x_m": -2.9559289626375116, "y_m": 10.575409732532941, "d_right": 0.8128915310742637, "d_left": 0.6871986739572781, "psi_rad": 3.6876902598430368, "kappa_radpm": 0.4477297777438505, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 390, "s_m": 39.0, "d_m": 0.0, "x_m": -3.0400904826826154, "y_m": 10.52156690028677, "d_right": 0.8048260832731596, "d_left": 0.6784001188588521, "psi_rad": 3.737934952998449, "kappa_radpm": 0.5333415182270906, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 391, "s_m": 39.1, "d_m": 0.0, "x_m": -3.121199769447082, "y_m": 10.463227127442991, "d_right": 0.8144998125214908, "d_left": 0.6788286283436568, "psi_rad": 3.794358563488455, "kappa_radpm": 0.6033823218439904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 392, "s_m": 39.2, "d_m": 0.0, "x_m": -3.1987562363196567, "y_m": 10.400254561208381, "d_right": 0.8416525282315722, "d_left": 0.666868234658698, "psi_rad": 3.858611417367247, "kappa_radpm": 0.6895301103413054, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 393, "s_m": 39.300000000000004, "d_m": 0.0, "x_m": -3.2717090289010318, "y_m": 10.3320120874227, "d_right": 0.8306084559666044, "d_left": 0.6561371027958915, "psi_rad": 3.932264585556716, "kappa_radpm": 0.7180923013413776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 394, "s_m": 39.400000000000006, "d_m": 0.0, "x_m": -3.3391786161505896, "y_m": 10.258343204788963, "d_right": 0.8069420684465196, "d_left": 0.652823789441563, "psi_rad": 4.002229877635523, "kappa_radpm": 0.6518227426942458, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 395, "s_m": 39.5, "d_m": 0.0, "x_m": -3.401911438837519, "y_m": 10.180579661409105, "d_right": 0.7948464196877236, "d_left": 0.6533786850919819, "psi_rad": 4.062629134095565, "kappa_radpm": 0.5665731193852408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 396, "s_m": 39.6, "d_m": 0.0, "x_m": -3.4600134825242135, "y_m": 10.099313451179201, "d_right": 0.779791295586041, "d_left": 0.6538622998240237, "psi_rad": 4.115544501512571, "kappa_radpm": 0.5212554133851066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 397, "s_m": 39.7, "d_m": 0.0, "x_m": -3.5141843782590128, "y_m": 10.015354390456647, "d_right": 0.7618502718312674, "d_left": 0.6647647004526861, "psi_rad": 4.1668802167725865, "kappa_radpm": 0.517938681123491, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 398, "s_m": 39.800000000000004, "d_m": 0.0, "x_m": -3.563658245038027, "y_m": 9.928548122418745, "d_right": 0.7494001856521828, "d_left": 0.6848659890212743, "psi_rad": 4.219132237737269, "kappa_radpm": 0.46769913172246325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 399, "s_m": 39.900000000000006, "d_m": 0.0, "x_m": -3.6087790938428124, "y_m": 9.83938999830047, "d_right": 0.7501122159152698, "d_left": 0.695461566892986, "psi_rad": 4.26042004311708, "kappa_radpm": 0.4114416501109952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 400, "s_m": 40.0, "d_m": 0.0, "x_m": -3.65092658326231, "y_m": 9.74879343857251, "d_right": 0.7402210168843371, "d_left": 0.6831521649409285, "psi_rad": 4.301420567759468, "kappa_radpm": 0.40260092855602725, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 401, "s_m": 40.1, "d_m": 0.0, "x_m": -3.688592790578809, "y_m": 9.65623992253575, "d_right": 0.7387747902052972, "d_left": 0.6798751857276495, "psi_rad": 4.340940228828284, "kappa_radpm": 0.371882950572342, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 402, "s_m": 40.2, "d_m": 0.0, "x_m": -3.7234568368786225, "y_m": 9.562594416835974, "d_right": 0.7431894348051454, "d_left": 0.6882191169541964, "psi_rad": 4.3757971578739365, "kappa_radpm": 0.36427565066282197, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 403, "s_m": 40.300000000000004, "d_m": 0.0, "x_m": -3.754584933047597, "y_m": 9.46764074364698, "d_right": 0.7470022081931934, "d_left": 0.7054131441144518, "psi_rad": 4.413795358960849, "kappa_radpm": 0.3525494813416419, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 404, "s_m": 40.400000000000006, "d_m": 0.0, "x_m": -3.7822381636996933, "y_m": 9.371619441677515, "d_right": 0.7340316702377597, "d_left": 0.7078731614812301, "psi_rad": 4.446307054142265, "kappa_radpm": 0.26824457571294147, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 405, "s_m": 40.5, "d_m": 0.0, "x_m": -3.807130271865487, "y_m": 9.274845299434647, "d_right": 0.7374000413852743, "d_left": 0.7196770083699199, "psi_rad": 4.467444274103437, "kappa_radpm": 0.19111045212857114, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 406, "s_m": 40.6, "d_m": 0.0, "x_m": -3.8307017988489345, "y_m": 9.177736920853057, "d_right": 0.7554359699638333, "d_left": 0.7323859536566619, "psi_rad": 4.484529144567979, "kappa_radpm": 0.16186156818457365, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 407, "s_m": 40.7, "d_m": 0.0, "x_m": -3.852273388678233, "y_m": 9.080168073895077, "d_right": 0.7877666497521352, "d_left": 0.7347841724663944, "psi_rad": 4.4998165877403515, "kappa_radpm": 0.13377007105624283, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 408, "s_m": 40.800000000000004, "d_m": 0.0, "x_m": -3.8728652267476584, "y_m": 8.982384993741835, "d_right": 0.8040706022645614, "d_left": 0.7329666191697901, "psi_rad": 4.511283158779228, "kappa_radpm": 0.07818930138499658, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 409, "s_m": 40.900000000000006, "d_m": 0.0, "x_m": -3.892194532391237, "y_m": 8.884343296484472, "d_right": 0.8170570575672492, "d_left": 0.743408602159035, "psi_rad": 4.515454448017351, "kappa_radpm": 0.00965684501154751, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 410, "s_m": 41.0, "d_m": 0.0, "x_m": -3.9119701375809677, "y_m": 8.786390617133204, "d_right": 0.8085596968983263, "d_left": 0.7632266827956112, "psi_rad": 4.513214527781537, "kappa_radpm": -0.025477756493925696, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 411, "s_m": 41.1, "d_m": 0.0, "x_m": -3.9317380378598585, "y_m": 8.688438582092688, "d_right": 0.8111768280199538, "d_left": 0.7830401180616922, "psi_rad": 4.510358896718566, "kappa_radpm": -0.0595743517513192, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 412, "s_m": 41.2, "d_m": 0.0, "x_m": -3.952072379344663, "y_m": 8.590602226714518, "d_right": 0.8253988198666103, "d_left": 0.8034259031357565, "psi_rad": 4.501299657431273, "kappa_radpm": -0.10907010727619237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 413, "s_m": 41.300000000000004, "d_m": 0.0, "x_m": -3.973612067000456, "y_m": 8.493022621047468, "d_right": 0.8458695774090037, "d_left": 0.8250273467321623, "psi_rad": 4.488544875263328, "kappa_radpm": -0.14898789209379704, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 414, "s_m": 41.400000000000006, "d_m": 0.0, "x_m": -3.9964349308303, "y_m": 8.395738401824827, "d_right": 0.8591694776936174, "d_left": 0.8479246389421509, "psi_rad": 4.471502079012514, "kappa_radpm": -0.13714076112352647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 415, "s_m": 41.5, "d_m": 0.0, "x_m": -4.021287255806572, "y_m": 8.298950382032071, "d_right": 0.8728830811926268, "d_left": 0.8480619507542962, "psi_rad": 4.461116723038622, "kappa_radpm": -0.06481757452575732, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 416, "s_m": 41.6, "d_m": 0.0, "x_m": -4.046126597405027, "y_m": 8.202157813861385, "d_right": 0.8748484324007556, "d_left": 0.8430855104150603, "psi_rad": 4.4585385641073625, "kappa_radpm": -0.030535682022585497, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 417, "s_m": 41.7, "d_m": 0.0, "x_m": -4.0714770637851005, "y_m": 8.105501535167779, "d_right": 0.8732915991431643, "d_left": 0.8456203472666401, "psi_rad": 4.455009586634105, "kappa_radpm": -0.05468920518524989, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 418, "s_m": 41.800000000000004, "d_m": 0.0, "x_m": -4.096998215043028, "y_m": 8.008889390916245, "d_right": 0.8763992362466317, "d_left": 0.8538690185912717, "psi_rad": 4.4476007230703125, "kappa_radpm": -0.054388532555837976, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 419, "s_m": 41.900000000000006, "d_m": 0.0, "x_m": -4.123778114935743, "y_m": 7.912619210538196, "d_right": 0.8881563411504094, "d_left": 0.87190400896313, "psi_rad": 4.444131880122938, "kappa_radpm": -0.03712121119373135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 420, "s_m": 42.0, "d_m": 0.0, "x_m": -4.149969191280064, "y_m": 7.816185421068334, "d_right": 0.902603960711932, "d_left": 0.8711379463343095, "psi_rad": 4.440176480831566, "kappa_radpm": -0.04302170188989152, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 421, "s_m": 42.1, "d_m": 0.0, "x_m": -4.177510449344372, "y_m": 7.720127868913912, "d_right": 0.9038186773579894, "d_left": 0.8831507304031847, "psi_rad": 4.435527539744959, "kappa_radpm": -0.03438234327254319, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 422, "s_m": 42.2, "d_m": 0.0, "x_m": -4.204596355486639, "y_m": 7.623944082248858, "d_right": 0.9080166791125118, "d_left": 0.8981830885811853, "psi_rad": 4.433300012177058, "kappa_radpm": -0.07650858686595985, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 423, "s_m": 42.300000000000004, "d_m": 0.0, "x_m": -4.232565560172388, "y_m": 7.528009180311838, "d_right": 0.9025111419254026, "d_left": 0.9011971721458928, "psi_rad": 4.420225822371767, "kappa_radpm": -0.06718516911251804, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 424, "s_m": 42.400000000000006, "d_m": 0.0, "x_m": -4.2621582308172545, "y_m": 7.432562440880727, "d_right": 0.8895154535432572, "d_left": 0.9017955088209147, "psi_rad": 4.419862978354554, "kappa_radpm": 0.027047389654613063, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 425, "s_m": 42.5, "d_m": 0.0, "x_m": -4.290196926408744, "y_m": 7.336648261498069, "d_right": 0.8745069117340192, "d_left": 0.906391045216218, "psi_rad": 4.42563530030269, "kappa_radpm": 0.030706442597410177, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 426, "s_m": 42.6, "d_m": 0.0, "x_m": -4.318684910463329, "y_m": 7.240869114356581, "d_right": 0.8703111953356212, "d_left": 0.9223180864859543, "psi_rad": 4.4260042668740365, "kappa_radpm": 0.037730406701232955, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 427, "s_m": 42.7, "d_m": 0.0, "x_m": -4.346652518517244, "y_m": 7.144935297973078, "d_right": 0.8706604767971727, "d_left": 0.9325459876368731, "psi_rad": 4.433181381642937, "kappa_radpm": 0.08212397959946882, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 428, "s_m": 42.800000000000004, "d_m": 0.0, "x_m": -4.373762554131234, "y_m": 7.04875785793416, "d_right": 0.8694875233000584, "d_left": 0.9270954848637442, "psi_rad": 4.44242906279393, "kappa_radpm": 0.07575162747285757, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 429, "s_m": 42.900000000000006, "d_m": 0.0, "x_m": -4.399950958859629, "y_m": 6.952323970589415, "d_right": 0.870306751511422, "d_left": 0.9124496746125668, "psi_rad": 4.448331707137508, "kappa_radpm": 0.04182824850941902, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 430, "s_m": 43.0, "d_m": 0.0, "x_m": -4.425923941813662, "y_m": 6.8558323811771595, "d_right": 0.8707317991257544, "d_left": 0.8997996930025984, "psi_rad": 4.450794712495814, "kappa_radpm": -0.007494999477390962, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 431, "s_m": 43.1, "d_m": 0.0, "x_m": -4.451637141899731, "y_m": 6.759270121384598, "d_right": 0.853867862710147, "d_left": 0.8963526341295994, "psi_rad": 4.44683270724203, "kappa_radpm": -0.043640377551823484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 432, "s_m": 43.2, "d_m": 0.0, "x_m": -4.47837466078036, "y_m": 6.662984595098511, "d_right": 0.8372802985726414, "d_left": 0.9037498682872226, "psi_rad": 4.442066636985449, "kappa_radpm": -0.016018272596673988, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 433, "s_m": 43.300000000000004, "d_m": 0.0, "x_m": -4.505007622210406, "y_m": 6.566670053686692, "d_right": 0.8289622914956666, "d_left": 0.900353941079051, "psi_rad": 4.443629052722695, "kappa_radpm": 0.003889184107284116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 434, "s_m": 43.400000000000006, "d_m": 0.0, "x_m": -4.53144411982684, "y_m": 6.47030150223382, "d_right": 0.8176822088234069, "d_left": 0.8896567135602106, "psi_rad": 4.442844473806906, "kappa_radpm": 0.02031928896126356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 435, "s_m": 43.5, "d_m": 0.0, "x_m": -4.558227450955206, "y_m": 6.374031513386018, "d_right": 0.7986087877081729, "d_left": 0.8904790530631245, "psi_rad": 4.447692910514948, "kappa_radpm": 0.09334727719354508, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 436, "s_m": 43.6, "d_m": 0.0, "x_m": -4.58372826896996, "y_m": 6.277411112050029, "d_right": 0.7931112541460016, "d_left": 0.9011238941354218, "psi_rad": 4.461513929245615, "kappa_radpm": 0.12249919145252086, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 437, "s_m": 43.7, "d_m": 0.0, "x_m": -4.6078399291340855, "y_m": 6.180440150562666, "d_right": 0.7915793835702349, "d_left": 0.8852624176662653, "psi_rad": 4.472192748805452, "kappa_radpm": 0.0655349730462218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 438, "s_m": 43.800000000000004, "d_m": 0.0, "x_m": -4.6312709904570974, "y_m": 6.083299524731067, "d_right": 0.7680722126744597, "d_left": 0.8745130024710991, "psi_rad": 4.474620923854859, "kappa_radpm": -0.011576956021914775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 439, "s_m": 43.900000000000006, "d_m": 0.0, "x_m": -4.654912619708034, "y_m": 5.98620772829734, "d_right": 0.7537954725190938, "d_left": 0.8753312953602633, "psi_rad": 4.469877357601069, "kappa_radpm": -0.06220245232221977, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 440, "s_m": 44.0, "d_m": 0.0, "x_m": -4.679264641149521, "y_m": 5.889292018182424, "d_right": 0.7518989649539792, "d_left": 0.8781919797734064, "psi_rad": 4.462180433390415, "kappa_radpm": -0.03781012651966176, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 441, "s_m": 44.1, "d_m": 0.0, "x_m": -4.704397904260423, "y_m": 5.792576115071063, "d_right": 0.7567700376817725, "d_left": 0.8642337577919055, "psi_rad": 4.462315332297137, "kappa_radpm": 0.016355109650771915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 442, "s_m": 44.2, "d_m": 0.0, "x_m": -4.728723732199464, "y_m": 5.6956540145022885, "d_right": 0.7567582688183144, "d_left": 0.8500989072290348, "psi_rad": 4.4654514553205695, "kappa_radpm": 0.048448785114110215, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 443, "s_m": 44.300000000000004, "d_m": 0.0, "x_m": -4.753249849116405, "y_m": 5.598782491736786, "d_right": 0.7696262211282433, "d_left": 0.8444788847372743, "psi_rad": 4.472005089319959, "kappa_radpm": 0.10082857990917127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 444, "s_m": 44.400000000000006, "d_m": 0.0, "x_m": -4.776301610241882, "y_m": 5.50155653141423, "d_right": 0.7865458293167598, "d_left": 0.8491348278977833, "psi_rad": 4.485617171302404, "kappa_radpm": 0.08393988315622547, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 445, "s_m": 44.5, "d_m": 0.0, "x_m": -4.798181762213749, "y_m": 5.404053503892091, "d_right": 0.7963733022940626, "d_left": 0.8420064919259427, "psi_rad": 4.488793065951204, "kappa_radpm": -0.022227512928503224, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 446, "s_m": 44.6, "d_m": 0.0, "x_m": -4.820616916096136, "y_m": 5.306676780738047, "d_right": 0.7828776936712336, "d_left": 0.8256192209534136, "psi_rad": 4.481171668716703, "kappa_radpm": -0.10242625626873281, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 447, "s_m": 44.7, "d_m": 0.0, "x_m": -4.843980197129454, "y_m": 5.209520660783728, "d_right": 0.7764186923092631, "d_left": 0.8221056003738133, "psi_rad": 4.468307814697457, "kappa_radpm": -0.1215436359505051, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 448, "s_m": 44.800000000000004, "d_m": 0.0, "x_m": -4.868912935758926, "y_m": 5.11275317256706, "d_right": 0.7800677363587877, "d_left": 0.8322835769962853, "psi_rad": 4.456862941526602, "kappa_radpm": -0.07687194536014186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 449, "s_m": 44.900000000000006, "d_m": 0.0, "x_m": -4.894493223370571, "y_m": 5.016159470472711, "d_right": 0.7605078813947144, "d_left": 0.8197873457786554, "psi_rad": 4.452933425625429, "kappa_radpm": -0.06808695862702718, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 450, "s_m": 45.0, "d_m": 0.0, "x_m": -4.920185458836886, "y_m": 4.9195916916676685, "d_right": 0.7471876919417004, "d_left": 0.8098905572494224, "psi_rad": 4.443245549801197, "kappa_radpm": -0.08139736357616334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 451, "s_m": 45.1, "d_m": 0.0, "x_m": -4.947633912856369, "y_m": 4.823506388146515, "d_right": 0.7391073782894952, "d_left": 0.814072562000003, "psi_rad": 4.436653952910197, "kappa_radpm": -0.001474603281583775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 452, "s_m": 45.2, "d_m": 0.0, "x_m": -4.974597377683466, "y_m": 4.727284232888126, "d_right": 0.7244036507078652, "d_left": 0.8261875427438746, "psi_rad": 4.44295062914488, "kappa_radpm": 0.08969441469044881, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 453, "s_m": 45.300000000000004, "d_m": 0.0, "x_m": -5.000833601796559, "y_m": 4.630861076419864, "d_right": 0.6981493626174393, "d_left": 0.830476531290856, "psi_rad": 4.4545928358482865, "kappa_radpm": 0.14950136027770178, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 454, "s_m": 45.400000000000006, "d_m": 0.0, "x_m": -5.02554908664754, "y_m": 4.534038730522954, "d_right": 0.6734315856536819, "d_left": 0.8359400969562479, "psi_rad": 4.47285090120042, "kappa_radpm": 0.19354987856091688, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 455, "s_m": 45.5, "d_m": 0.0, "x_m": -5.048247407708432, "y_m": 4.4367229506715855, "d_right": 0.6578207832150113, "d_left": 0.8165878946380586, "psi_rad": 4.493302811560469, "kappa_radpm": 0.2683141385028831, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 456, "s_m": 45.6, "d_m": 0.0, "x_m": -5.068981868799546, "y_m": 4.338975563749429, "d_right": 0.6592081155289452, "d_left": 0.806505363798456, "psi_rad": 4.526513728900997, "kappa_radpm": 0.38657085466696106, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 457, "s_m": 45.7, "d_m": 0.0, "x_m": -5.085168213130733, "y_m": 4.240383616989549, "d_right": 0.6639527521128187, "d_left": 0.8041188008113446, "psi_rad": 4.570616982493862, "kappa_radpm": 0.47496102992764744, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 458, "s_m": 45.800000000000004, "d_m": 0.0, "x_m": -5.097210079916952, "y_m": 4.141201424912862, "d_right": 0.6614702488132771, "d_left": 0.8039584586899388, "psi_rad": 4.621505934886526, "kappa_radpm": 0.5194176953322316, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 459, "s_m": 45.900000000000006, "d_m": 0.0, "x_m": -5.103295848889503, "y_m": 4.04147194567257, "d_right": 0.6797831960821293, "d_left": 0.7947187666962453, "psi_rad": 4.674500521560308, "kappa_radpm": 0.526761943711267, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 460, "s_m": 46.0, "d_m": 0.0, "x_m": -5.104776702036801, "y_m": 3.941589160645321, "d_right": 0.7069056687695872, "d_left": 0.7565463597503751, "psi_rad": -1.5563269835508065, "kappa_radpm": 0.5205666563763289, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 461, "s_m": 46.1, "d_m": 0.0, "x_m": -5.100406025279958, "y_m": 3.841765443103514, "d_right": 0.7364796051265372, "d_left": 0.7244394895522629, "psi_rad": -1.5045714543440125, "kappa_radpm": 0.5417166829959275, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 462, "s_m": 46.2, "d_m": 0.0, "x_m": -5.091556315528114, "y_m": 3.7422523656435227, "d_right": 0.7728555188080429, "d_left": 0.6840379140797275, "psi_rad": -1.447983646951621, "kappa_radpm": 0.6195928059118527, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 463, "s_m": 46.300000000000004, "d_m": 0.0, "x_m": -5.075941993021946, "y_m": 3.6435700140385374, "d_right": 0.8131853665755708, "d_left": 0.641510347802411, "psi_rad": -1.380652893161642, "kappa_radpm": 0.7086540925608831, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 464, "s_m": 46.400000000000006, "d_m": 0.0, "x_m": -5.05381666632592, "y_m": 3.5461702357094906, "d_right": 0.8686844469821214, "d_left": 0.6060574261886316, "psi_rad": -1.3062528284394443, "kappa_radpm": 0.7728602054462486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 465, "s_m": 46.5, "d_m": 0.0, "x_m": -5.0237517977867086, "y_m": 3.45090983842881, "d_right": 0.9238525879951054, "d_left": 0.577573038927291, "psi_rad": -1.2260808520723923, "kappa_radpm": 0.7195789896274873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 466, "s_m": 46.6, "d_m": 0.0, "x_m": -4.986348399827901, "y_m": 3.358263198715932, "d_right": 0.9897062183363338, "d_left": 0.5550570796637255, "psi_rad": -1.1623370305139469, "kappa_radpm": 0.532517473551144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 467, "s_m": 46.7, "d_m": 0.0, "x_m": -4.944404869129243, "y_m": 3.2675761876716183, "d_right": 0.9818444542705055, "d_left": 0.5308858670712535, "psi_rad": -1.1195773573621635, "kappa_radpm": 0.3686155236842015, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 468, "s_m": 46.800000000000004, "d_m": 0.0, "x_m": -4.8992184445398355, "y_m": 3.178450439459747, "d_right": 0.9210719134034775, "d_left": 0.5213377766507725, "psi_rad": -1.0886139257771066, "kappa_radpm": 0.25209706541875043, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 469, "s_m": 46.900000000000006, "d_m": 0.0, "x_m": -4.851740590060552, "y_m": 3.0905291510388553, "d_right": 0.8618163582838919, "d_left": 0.5117306571909856, "psi_rad": -1.0691579442784134, "kappa_radpm": 0.15473806038882598, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 470, "s_m": 47.0, "d_m": 0.0, "x_m": -4.803120056207735, "y_m": 3.003226469605196, "d_right": 0.8000047139629697, "d_left": 0.5164945703476164, "psi_rad": -1.0576663136993414, "kappa_radpm": 0.08793333446212692, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 471, "s_m": 47.1, "d_m": 0.0, "x_m": -4.753630720676338, "y_m": 2.9164134909914146, "d_right": 0.7310725731564535, "d_left": 0.5239434339506224, "psi_rad": -1.051571277385988, "kappa_radpm": 0.04013599401572865, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 472, "s_m": 47.2, "d_m": 0.0, "x_m": -4.703949396394423, "y_m": 2.8297096120014316, "d_right": 0.6701806638559754, "d_left": 0.535397427957759, "psi_rad": -1.0496391148961957, "kappa_radpm": 0.01860029430556409, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 473, "s_m": 47.300000000000004, "d_m": 0.0, "x_m": -4.654124662456028, "y_m": 2.7430880119101957, "d_right": 0.6196547734240196, "d_left": 0.5612996466049897, "psi_rad": -1.0478512185248752, "kappa_radpm": -0.025369359291236293, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 474, "s_m": 47.400000000000006, "d_m": 0.0, "x_m": -4.604134265471077, "y_m": 2.656563454464396, "d_right": 0.5713198782773782, "d_left": 0.5867702208532416, "psi_rad": -1.054712986754443, "kappa_radpm": -0.11689895908128634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 475, "s_m": 47.5, "d_m": 0.0, "x_m": -4.555503810681697, "y_m": 2.5692678130085254, "d_right": 0.5232937525485336, "d_left": 0.6283879706149355, "psi_rad": -1.0712310103411324, "kappa_radpm": -0.19087490659999595, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 476, "s_m": 47.6, "d_m": 0.0, "x_m": -4.508398635273457, "y_m": 2.4811393621931463, "d_right": 0.4664071722197668, "d_left": 0.6786987108239363, "psi_rad": -1.092887968074442, "kappa_radpm": -0.29274323228476895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 477, "s_m": 47.7, "d_m": 0.0, "x_m": -4.463600892687702, "y_m": 2.391833700418137, "d_right": 0.4232365418186522, "d_left": 0.7231285871594922, "psi_rad": -1.1297796567980862, "kappa_radpm": -0.4887644454589646, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 478, "s_m": 47.800000000000004, "d_m": 0.0, "x_m": -4.423123601686541, "y_m": 2.3004807678947614, "d_right": 0.39611705478783943, "d_left": 0.780928838905899, "psi_rad": -1.190640857166235, "kappa_radpm": -0.7168862316595392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 479, "s_m": 47.900000000000006, "d_m": 0.0, "x_m": -4.389506195111687, "y_m": 2.20640828817441, "d_right": 0.3858967679238684, "d_left": 0.8235065364012302, "psi_rad": -1.273156903129994, "kappa_radpm": -1.011114003508271, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 480, "s_m": 48.0, "d_m": 0.0, "x_m": -4.364601999409326, "y_m": 2.109702339966931, "d_right": 0.3922406195971349, "d_left": 0.873613327496746, "psi_rad": -1.3928636578678892, "kappa_radpm": -1.5601951297766803, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 481, "s_m": 48.1, "d_m": 0.0, "x_m": -4.3542766879791595, "y_m": 2.0105087318636707, "d_right": 0.40886833255961574, "d_left": 0.9359605089202245, "psi_rad": 4.697989378094256, "kappa_radpm": -2.165754421354089, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 482, "s_m": 48.2, "d_m": 0.0, "x_m": -4.367451902262881, "y_m": 1.9118006327565347, "d_right": 0.4191936958710247, "d_left": 0.9381070567484618, "psi_rad": 4.457170765040879, "kappa_radpm": -2.4477602058710857, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 483, "s_m": 48.300000000000004, "d_m": 0.0, "x_m": -4.404192344803352, "y_m": 1.8191934418850486, "d_right": 0.414739174630761, "d_left": 0.853521764865429, "psi_rad": 4.2084373369200385, "kappa_radpm": -2.2789827351386482, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 484, "s_m": 48.400000000000006, "d_m": 0.0, "x_m": -4.462944182894379, "y_m": 1.7386331412398799, "d_right": 0.409110885502112, "d_left": 0.7831360448484596, "psi_rad": 4.001374218013149, "kappa_radpm": -1.692391616476041, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 485, "s_m": 48.5, "d_m": 0.0, "x_m": -4.533980018789255, "y_m": 1.668504392760233, "d_right": 0.4116492069798969, "d_left": 0.7333915205907362, "psi_rad": 3.8699590136248303, "kappa_radpm": -1.0551603844820234, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 486, "s_m": 48.6, "d_m": 0.0, "x_m": -4.611810606571013, "y_m": 1.6058472930340448, "d_right": 0.4280399372622966, "d_left": 0.7041887513450285, "psi_rad": 3.790342141116745, "kappa_radpm": -0.6436016625453678, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 487, "s_m": 48.7, "d_m": 0.0, "x_m": -4.693145621582976, "y_m": 1.547819768305665, "d_right": 0.460578972460085, "d_left": 0.6897361800068396, "psi_rad": 3.7412386811157567, "kappa_radpm": -0.3793582264265538, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 488, "s_m": 48.800000000000004, "d_m": 0.0, "x_m": -4.776751822224971, "y_m": 1.4930906266319206, "d_right": 0.4942115203324396, "d_left": 0.6633573788930172, "psi_rad": 3.714470495831434, "kappa_radpm": -0.16960551528167667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 489, "s_m": 48.900000000000006, "d_m": 0.0, "x_m": -4.861088647686338, "y_m": 1.4394904296851003, "d_right": 0.5393680298422198, "d_left": 0.6469909661369835, "psi_rad": 3.7073175780594214, "kappa_radpm": -0.020433962215111734, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 490, "s_m": 49.0, "d_m": 0.0, "x_m": -4.945470447420635, "y_m": 1.385962137147557, "d_right": 0.5932745928445239, "d_left": 0.6318803252659332, "psi_rad": 3.7103837033884117, "kappa_radpm": 0.012840573215942008, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 491, "s_m": 49.1, "d_m": 0.0, "x_m": -5.029477499496296, "y_m": 1.331845459078791, "d_right": 0.6480993596347856, "d_left": 0.6305210084387848, "psi_rad": 3.70988569270261, "kappa_radpm": -0.018094378782760323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 492, "s_m": 49.2, "d_m": 0.0, "x_m": -5.113912986682855, "y_m": 1.2784009754840218, "d_right": 0.6908153695249988, "d_left": 0.6321162156849826, "psi_rad": 3.7067648276318597, "kappa_radpm": 0.01529804085903308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 493, "s_m": 49.300000000000004, "d_m": 0.0, "x_m": -5.1982550040768905, "y_m": 1.2248104419416324, "d_right": 0.7194836689016809, "d_left": 0.6375151070054836, "psi_rad": 3.7129453008744164, "kappa_radpm": 0.1100112796006103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 494, "s_m": 49.400000000000006, "d_m": 0.0, "x_m": -5.282021527206097, "y_m": 1.170327595885373, "d_right": 0.738834147997742, "d_left": 0.6541441594805715, "psi_rad": 3.7287670835519817, "kappa_radpm": 0.2209796922673135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 495, "s_m": 49.5, "d_m": 0.0, "x_m": -5.364625622720649, "y_m": 1.1140956073773438, "d_right": 0.7629759502678057, "d_left": 0.6727238224307105, "psi_rad": 3.757141239327879, "kappa_radpm": 0.33786424545872773, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 496, "s_m": 49.6, "d_m": 0.0, "x_m": -5.445165375496213, "y_m": 1.0549506183247594, "d_right": 0.8021960343115695, "d_left": 0.6878103476519408, "psi_rad": 3.7963399326437273, "kappa_radpm": 0.47455344002006683, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 497, "s_m": 49.7, "d_m": 0.0, "x_m": -5.523101332038537, "y_m": 0.9924302602667588, "d_right": 0.8501645491246341, "d_left": 0.6986887110891252, "psi_rad": 3.8520519273318925, "kappa_radpm": 0.6431533960950531, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 498, "s_m": 49.800000000000004, "d_m": 0.0, "x_m": -5.596557492633418, "y_m": 0.9247038074309293, "d_right": 0.8456519756534613, "d_left": 0.7124351263811518, "psi_rad": 3.924970611862738, "kappa_radpm": 0.7908867090476246, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 499, "s_m": 49.900000000000006, "d_m": 0.0, "x_m": -5.664566007264684, "y_m": 0.8515360087673423, "d_right": 0.7963279750776812, "d_left": 0.7321913422985349, "psi_rad": 4.010229269141417, "kappa_radpm": 0.8980841287113983, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 500, "s_m": 50.0, "d_m": 0.0, "x_m": -5.725446706195887, "y_m": 0.7723501558304668, "d_right": 0.7472128368700361, "d_left": 0.7558207626690365, "psi_rad": 4.1045874376050175, "kappa_radpm": 0.9333174261203547, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 501, "s_m": 50.1, "d_m": 0.0, "x_m": -5.778509322733805, "y_m": 0.6877423343869664, "d_right": 0.7179970732677342, "d_left": 0.757148131590042, "psi_rad": 4.196892754365488, "kappa_radpm": 0.8986608104750227, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 502, "s_m": 50.2, "d_m": 0.0, "x_m": -5.823821268642966, "y_m": 0.5987266225138506, "d_right": 0.6762512482080238, "d_left": 0.751935904114639, "psi_rad": 4.284319599700022, "kappa_radpm": 0.815061410280884, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 503, "s_m": 50.300000000000004, "d_m": 0.0, "x_m": -5.861363396654322, "y_m": 0.5061588490322159, "d_right": 0.6509332710870864, "d_left": 0.75143473629095, "psi_rad": 4.359905036421665, "kappa_radpm": 0.6423408114102624, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 504, "s_m": 50.400000000000006, "d_m": 0.0, "x_m": -5.892765205402045, "y_m": 0.4113005214551207, "d_right": 0.6469198631406815, "d_left": 0.7576406018418098, "psi_rad": 4.412787761982075, "kappa_radpm": 0.45995737145025695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 505, "s_m": 50.5, "d_m": 0.0, "x_m": -5.920333345728006, "y_m": 0.3152554152428914, "d_right": 0.6446669549998374, "d_left": 0.763235310083422, "psi_rad": 4.451896510711716, "kappa_radpm": 0.37667343721146995, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 506, "s_m": 50.6, "d_m": 0.0, "x_m": -5.944227356633919, "y_m": 0.21823221325033781, "d_right": 0.63631280762399, "d_left": 0.763313901975847, "psi_rad": 4.4881224494243686, "kappa_radpm": 0.33764115700151587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 507, "s_m": 50.7, "d_m": 0.0, "x_m": -5.964771021580463, "y_m": 0.12044185606007568, "d_right": 0.6355467828824777, "d_left": 0.7729792636300603, "psi_rad": 4.51942474211202, "kappa_radpm": 0.2796248260810108, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 508, "s_m": 50.800000000000004, "d_m": 0.0, "x_m": -5.982548653944837, "y_m": 0.022110491052757884, "d_right": 0.6190716199042173, "d_left": 0.7639950664913608, "psi_rad": 4.544047414640571, "kappa_radpm": 0.16176843669991614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 509, "s_m": 50.900000000000006, "d_m": 0.0, "x_m": -5.998254119812064, "y_m": -0.0765754861116062, "d_right": 0.6206009323289404, "d_left": 0.7580138632898807, "psi_rad": 4.551778429452003, "kappa_radpm": 0.023060062101256662, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 510, "s_m": 51.0, "d_m": 0.0, "x_m": -6.014509791438364, "y_m": -0.1751732056769867, "d_right": 0.6349454849918468, "d_left": 0.7421941139427698, "psi_rad": 4.548659427060822, "kappa_radpm": -0.008396451361478707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 511, "s_m": 51.1, "d_m": 0.0, "x_m": -6.030830698728651, "y_m": -0.2737601681730579, "d_right": 0.622565516670703, "d_left": 0.7386776656623805, "psi_rad": 4.550099139179707, "kappa_radpm": 0.025093988833864156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 512, "s_m": 51.2, "d_m": 0.0, "x_m": -6.046802431859815, "y_m": -0.37240448864416065, "d_right": 0.6264436212819102, "d_left": 0.7362196383771505, "psi_rad": 4.553678224827594, "kappa_radpm": 0.03911125995797349, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 513, "s_m": 51.300000000000004, "d_m": 0.0, "x_m": -6.062417241953653, "y_m": -0.4711058643737822, "d_right": 0.6418997050454893, "d_left": 0.7334951666516463, "psi_rad": 4.557921391171302, "kappa_radpm": 0.0426941424299776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 514, "s_m": 51.400000000000006, "d_m": 0.0, "x_m": -6.077551272728651, "y_m": -0.5698821143550192, "d_right": 0.6336616640482853, "d_left": 0.7138599397013625, "psi_rad": 4.56221705331359, "kappa_radpm": 0.04326352568408964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 515, "s_m": 51.5, "d_m": 0.0, "x_m": -6.092317508981416, "y_m": -0.6687137834596586, "d_right": 0.6414529447139655, "d_left": 0.6864850569248095, "psi_rad": 4.56657409630812, "kappa_radpm": 0.043280749926863926, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 516, "s_m": 51.6, "d_m": 0.0, "x_m": -6.106590242113902, "y_m": -0.767618227393515, "d_right": 0.6424668098631069, "d_left": 0.6724798516267027, "psi_rad": 4.570873203298963, "kappa_radpm": 0.04598330102452808, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 517, "s_m": 51.7, "d_m": 0.0, "x_m": -6.120506185731679, "y_m": -0.8665733442627238, "d_right": 0.6378404753213818, "d_left": 0.6728184207614204, "psi_rad": 4.575770756513025, "kappa_radpm": 0.09776323949809651, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 518, "s_m": 51.800000000000004, "d_m": 0.0, "x_m": -6.133809004598157, "y_m": -0.9656094524614511, "d_right": 0.6493662553033748, "d_left": 0.6861534312935983, "psi_rad": 4.5904258511985825, "kappa_radpm": 0.22298931945169853, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 519, "s_m": 51.900000000000006, "d_m": 0.0, "x_m": -6.144818646006629, "y_m": -1.064926661369675, "d_right": 0.6658899651770052, "d_left": 0.6971822428167392, "psi_rad": 4.620368620403365, "kappa_radpm": 0.36771942333771124, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 520, "s_m": 52.0, "d_m": 0.0, "x_m": -6.152169612373098, "y_m": -1.164573618373868, "d_right": 0.6709368726362468, "d_left": 0.7045389822498186, "psi_rad": 4.663969735866125, "kappa_radpm": 0.46036923704518173, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 521, "s_m": 52.1, "d_m": 0.0, "x_m": -6.154487489762144, "y_m": -1.2644606837683339, "d_right": 0.695380411406676, "d_left": 0.7068574344406652, "psi_rad": -1.5707428393671843, "kappa_radpm": 0.4930405441927199, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 522, "s_m": 52.2, "d_m": 0.0, "x_m": -6.152158926492854, "y_m": -1.3643566457251588, "d_right": 0.6985253317583939, "d_left": 0.7045378053732977, "psi_rad": -1.5206074624749175, "kappa_radpm": 0.5571981715667484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 523, "s_m": 52.300000000000004, "d_m": 0.0, "x_m": -6.144466011748322, "y_m": -1.4639683294445398, "d_right": 0.7199693021377257, "d_left": 0.6968823491331511, "psi_rad": -1.4593032050538346, "kappa_radpm": 0.6306840159842042, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 524, "s_m": 52.400000000000006, "d_m": 0.0, "x_m": -6.129940211975958, "y_m": -1.5628134916782808, "d_right": 0.7603533667644451, "d_left": 0.6831579912855108, "psi_rad": -1.3944706592780767, "kappa_radpm": 0.6811977003260639, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 525, "s_m": 52.5, "d_m": 0.0, "x_m": -6.109434442394644, "y_m": -1.6605804428058986, "d_right": 0.7923014479696786, "d_left": 0.6778366962286735, "psi_rad": -1.3230636649886218, "kappa_radpm": 0.7509867682005833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 526, "s_m": 52.6, "d_m": 0.0, "x_m": -6.080991331689032, "y_m": -1.7563422897266414, "d_right": 0.8338350084684627, "d_left": 0.6770242892856098, "psi_rad": -1.24427330563796, "kappa_radpm": 0.815871983385763, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 527, "s_m": 52.7, "d_m": 0.0, "x_m": -6.045400150763046, "y_m": -1.8496704164560869, "d_right": 0.8908888014021777, "d_left": 0.6717099098921028, "psi_rad": -1.1598892683114692, "kappa_radpm": 0.8600679842064851, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 528, "s_m": 52.800000000000004, "d_m": 0.0, "x_m": -6.001280597095447, "y_m": -1.9392867436547332, "d_right": 0.9516712507805097, "d_left": 0.6719298304141552, "psi_rad": -1.072259708796663, "kappa_radpm": 0.8774681951494245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 529, "s_m": 52.900000000000006, "d_m": 0.0, "x_m": -5.949959644880236, "y_m": -2.024982365588695, "d_right": 0.9689983143162778, "d_left": 0.6787697288481769, "psi_rad": -0.9843956292815843, "kappa_radpm": 0.8679644133518449, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 530, "s_m": 53.0, "d_m": 0.0, "x_m": -5.890849941598777, "y_m": -2.105509035665, "d_right": 0.9178109450121861, "d_left": 0.6908626839179971, "psi_rad": -0.898666826126294, "kappa_radpm": 0.8283086144740759, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 531, "s_m": 53.1, "d_m": 0.0, "x_m": -5.825654978913278, "y_m": -2.181197748492729, "d_right": 0.8751196891033913, "d_left": 0.698262478897505, "psi_rad": -0.8187339063867691, "kappa_radpm": 0.8352530952327886, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 532, "s_m": 53.2, "d_m": 0.0, "x_m": -5.754482687876054, "y_m": -2.251285236636902, "d_right": 0.83519725560579, "d_left": 0.6974927115640902, "psi_rad": -0.7316162070797363, "kappa_radpm": 0.8800057371513903, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 533, "s_m": 53.300000000000004, "d_m": 0.0, "x_m": -5.6771551035682455, "y_m": -2.3145257388348277, "d_right": 0.8023023877262887, "d_left": 0.6986966586120519, "psi_rad": -0.6427327589564911, "kappa_radpm": 0.8541879246443074, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 534, "s_m": 53.400000000000006, "d_m": 0.0, "x_m": -5.594705130086882, "y_m": -2.3709266950093437, "d_right": 0.7693057956337049, "d_left": 0.7056097468092366, "psi_rad": -0.5607786221508748, "kappa_radpm": 0.7844273887443287, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 535, "s_m": 53.5, "d_m": 0.0, "x_m": -5.508092663606467, "y_m": -2.4207028238270127, "d_right": 0.7435070406053795, "d_left": 0.7187257662241003, "psi_rad": -0.4858472812076253, "kappa_radpm": 0.7011986825624694, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 536, "s_m": 53.6, "d_m": 0.0, "x_m": -5.418140784961891, "y_m": -2.4641642740802796, "d_right": 0.7077521360058615, "d_left": 0.7233810582817797, "psi_rad": -0.42053888563838093, "kappa_radpm": 0.5790939475715817, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 537, "s_m": 53.7, "d_m": 0.0, "x_m": -5.3257637167039125, "y_m": -2.5022438033306456, "d_right": 0.6716460956877442, "d_left": 0.7255154145589298, "psi_rad": -0.370028491693309, "kappa_radpm": 0.46309407482076126, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 538, "s_m": 53.800000000000004, "d_m": 0.0, "x_m": -5.231881235657473, "y_m": -2.5364135970305126, "d_right": 0.6464936211020962, "d_left": 0.7371326672332876, "psi_rad": -0.3279200706742287, "kappa_radpm": 0.38480373906816356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 539, "s_m": 53.900000000000006, "d_m": 0.0, "x_m": -5.136622463244632, "y_m": -2.5665901429401217, "d_right": 0.6325542013116322, "d_left": 0.7549449886558312, "psi_rad": -0.29306774387967627, "kappa_radpm": 0.31072251763897163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 540, "s_m": 54.0, "d_m": 0.0, "x_m": -5.040571237980871, "y_m": -2.594142686943405, "d_right": 0.6305530721391264, "d_left": 0.7365398857246492, "psi_rad": -0.26577556714643435, "kappa_radpm": 0.2773346111657582, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 541, "s_m": 54.1, "d_m": 0.0, "x_m": -4.943805629020641, "y_m": -2.6190778577552796, "d_right": 0.6238354475133715, "d_left": 0.7287307099835523, "psi_rad": -0.23760082164652463, "kappa_radpm": 0.28431871950193033, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 542, "s_m": 54.2, "d_m": 0.0, "x_m": -4.84635338191889, "y_m": -2.6411774610537315, "d_right": 0.6302735666833061, "d_left": 0.7216835784202207, "psi_rad": -0.2089118232460483, "kappa_radpm": 0.27693746429590216, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 543, "s_m": 54.300000000000004, "d_m": 0.0, "x_m": -4.74832062344325, "y_m": -2.660521675017353, "d_right": 0.6109962679745969, "d_left": 0.7100321501211708, "psi_rad": -0.1822133287873442, "kappa_radpm": 0.19653039903207548, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 544, "s_m": 54.400000000000006, "d_m": 0.0, "x_m": -4.649829516918033, "y_m": -2.6773883731239048, "d_right": 0.5989411403245792, "d_left": 0.7098324017193501, "psi_rad": -0.1696057434396332, "kappa_radpm": 0.12607585347711003, "vx_mps": 0.0, "ax_mps2": 0.0}]}, "global_traj_markers_iqp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.553981875574665, "y": -2.7041464914434448, "z": 0.21928254555057705}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4385650911011541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.455490221653512, "y": -2.7205797075671967, "z": 0.2155494953972446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4310989907944892}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -4.356064735818184, "y": -2.729829490710904, "z": 0.21193210648407834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4238642129681567}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -4.256250481563182, "y": -2.7315103502925986, "z": 0.20855047898797915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4171009579759583}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -4.156579216222994, "y": -2.725226213657124, "z": 0.20552805364244567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41105610728489134}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -4.057841339421828, "y": -2.710567897872524, "z": 0.2034291527595825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.406858305519165}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -3.960793442322772, "y": -2.6870177072351606, "z": 0.20247030883886488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40494061767772976}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -3.866499426913825, "y": -2.654232553277101, "z": 0.20179628963896082}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40359257927792164}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -3.7759070457552864, "y": -2.612243437262176, "z": 0.20166502271465742}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40333004542931483}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -3.690042551790207, "y": -2.5612753385950806, "z": 0.20155560888647508}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40311121777295017}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -3.6098310431729175, "y": -2.501854096741153, "z": 0.2014105051296194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4028210102592388}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -3.536061817609144, "y": -2.434525561030273, "z": 0.20128182040037546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4025636408007509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -3.4696100193308523, "y": -2.360090866807209, "z": 0.20120414950408977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40240829900817954}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -3.411121852285442, "y": -2.2792173668345233, "z": 0.20112644861290424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4022528972258085}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -3.3612460180876846, "y": -2.1928325451093738, "z": 0.20112486068289015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4022497213657803}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -3.320516605189066, "y": -2.10195875039284, "z": 0.20113615102595114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4022723020519023}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -3.289090331687769, "y": -2.007015118745124, "z": 0.20127770047920251}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40255540095840503}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -3.2673533662608496, "y": -1.9097777066497226, "z": 0.20180928349888888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40361856699777776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -3.255132246666767, "y": -1.8103512767140781, "z": 0.20271019150760164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4054203830152033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -3.2522930624817383, "y": -1.7105660046290667, "z": 0.2039762966484247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4079525932968494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -3.2577870235754998, "y": -1.6107518754190666, "z": 0.2073073061544788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4146146123089576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -3.270509059179456, "y": -1.5115881643931406, "z": 0.2121284200017211}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4242568400034422}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -3.2890448421502265, "y": -1.4135608286834034, "z": 0.21899509430852024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4379901886170405}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -3.312098578396881, "y": -1.3161823959107535, "z": 0.22774779428872474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4554955885774495}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -3.3380831785402876, "y": -1.2199607670416028, "z": 0.23824906824558778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47649813649117556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -3.365755032444531, "y": -1.1238219529815023, "z": 0.24817011446011747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49634022892023494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -3.393423770125603, "y": -1.0280564850494947, "z": 0.2355481369878296}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4710962739756592}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -3.4197003934145624, "y": -0.9316103705522696, "z": 0.2245131682876936}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4490263365753872}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -3.4427715064912277, "y": -0.8345487903442069, "z": 0.21606081933626792}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43212163867253583}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -3.461050627164351, "y": -0.736334975412501, "z": 0.20963183853105807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41926367706211615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -3.472999412877598, "y": -0.6372604242022, "z": 0.20536399384497456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4107279876899491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -3.4771908411628236, "y": -0.5375277208476728, "z": 0.20347678095671803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40695356191343607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -3.4722477177043616, "y": -0.43786064476395137, "z": 0.20339826306613656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40679652613227313}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -3.4574885689760704, "y": -0.33923826367475823, "z": 0.20331971485356354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4066394297071271}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -3.433454386649921, "y": -0.24219943908364414, "z": 0.20457137229313596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4091427445862719}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -3.401134615365945, "y": -0.14779109641244956, "z": 0.20696316042316176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4139263208463235}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -3.361545898218572, "y": -0.05600565528033666, "z": 0.21097459326834622}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42194918653669244}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -3.315795386295829, "y": 0.03271010597755029, "z": 0.2160602478905016}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4321204957810032}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -3.2646014720670564, "y": 0.11850219836968, "z": 0.2218062346531399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4436124693062798}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -3.2087960809405365, "y": 0.2013006567614187, "z": 0.22818874229966868}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45637748459933736}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -3.1490283591795696, "y": 0.2813661005361936, "z": 0.23524925334590674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4704985066918135}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -3.0860149555037486, "y": 0.3588584737315311, "z": 0.24297250181647076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4859450036329415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -3.0203637155098786, "y": 0.4341232573559532, "z": 0.25146922884720196}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5029384576944039}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -2.9526421034058634, "y": 0.5075613401177327, "z": 0.26072398681767145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5214479736353429}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -2.883448678162968, "y": 0.5795651899778893, "z": 0.2695499261495766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5390998522991532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -2.813258603533118, "y": 0.650668226543899, "z": 0.277992677614809}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.555985355229618}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -2.742677502269844, "y": 0.7212870567235815, "z": 0.2860903268732877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5721806537465755}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -2.6721281739193126, "y": 0.792032634792521, "z": 0.29387505370972955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5877501074194591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -2.602229254041937, "y": 0.8633293889539049, "z": 0.3013743399349597}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6027486798699194}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -2.5334243592632206, "y": 0.9357901909893914, "z": 0.3086118770623635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.617223754124727}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -2.4664000800540946, "y": 1.0097896705105078, "z": 0.3086614745953937}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6173229491907875}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -2.4016090923837443, "y": 1.0858726638228584, "z": 0.3060775607253894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6121551214507788}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -2.3397156537591712, "y": 1.1641463032471389, "z": 0.30489003601097764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6097800720219553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -2.281036386164604, "y": 1.2449603715931292, "z": 0.3044048509686257}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6088097019372514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -2.2259752591701707, "y": 1.3282094016318249, "z": 0.30428738682029166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6085747736405833}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -2.17467692691078, "y": 1.4138642128943257, "z": 0.30416987730972384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6083397546194477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -2.1271459895871083, "y": 1.5017234290607788, "z": 0.30444442593815724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6088888518763145}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -2.0833368056292865, "y": 1.591451399754622, "z": 0.3052721570445626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6105443140891252}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -2.0429914336298376, "y": 1.6828394707491963, "z": 0.3070526792636068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6141053585272136}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -2.0059107613172253, "y": 1.7755555548542186, "z": 0.30965287545804027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6193057509160805}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -1.9718318403092314, "y": 1.8694490277053901, "z": 0.3129657111326675}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.625931422265335}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -1.9405248869074365, "y": 1.964275791206406, "z": 0.3169571558096318}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6339143116192636}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -1.9117086317244718, "y": 2.059919072247565, "z": 0.3216206158225181}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6432412316450362}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -1.8851292466922196, "y": 2.1561823369455855, "z": 0.3269255198589637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6538510397179274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -1.8605008410234873, "y": 2.2529860106064996, "z": 0.33285601150752453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6657120230150491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -1.837555811120331, "y": 2.3501830212277643, "z": 0.3391174646585525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.678234929317105}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -1.8160031134515664, "y": 2.447716051821429, "z": 0.3452054155725618}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6904108311451236}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -1.795564504853948, "y": 2.545473498768215, "z": 0.3511304401567993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7022608803135986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -1.7759464825499893, "y": 2.6434126419250163, "z": 0.3569020874602885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.713804174920577}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -1.7568647925204288, "y": 2.741446269242333, "z": 0.362529014079272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.725058028158544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -1.7380249140259016, "y": 2.8395367367474726, "z": 0.3680190967543293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7360381935086586}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -1.7191395764340787, "y": 2.937610375745144, "z": 0.3602785556749376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7205571113498752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -1.6999154997637669, "y": 3.0356247586426606, "z": 0.3506458759692669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7012917519385338}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -1.6800652208036024, "y": 3.133509542525101, "z": 0.34164273087365943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6832854617473189}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -1.659299023048968, "y": 3.231207171562682, "z": 0.33322786623454304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6664557324690861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -1.6373317509858376, "y": 3.3286406261922923, "z": 0.3253656997559101}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6507313995118202}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -1.6138802310195923, "y": 3.425726552416608, "z": 0.3180249673603518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6360499347207036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -1.5886643681239763, "y": 3.522372060438154, "z": 0.31117965955100096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6223593191020019}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -1.5614118376652864, "y": 3.6184579398093133, "z": 0.30481011925874996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6096202385174999}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -1.5318507802469885, "y": 3.7138659963720575, "z": 0.2989035678250277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5978071356500554}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -1.4997244231420686, "y": 3.8084305912948424, "z": 0.29345599457667704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5869119891533541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -1.4647716793592123, "y": 3.9019987873693824, "z": 0.2884732502802745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.576946500560549}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -1.4267551901542699, "y": 3.9943508326702695, "z": 0.2839698587832439}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5679397175664878}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -1.385429553500364, "y": 4.08528517114124, "z": 0.27997813001199867}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5599562600239973}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -1.3405834323888115, "y": 4.174517615492271, "z": 0.27653745635912286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5530749127182457}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -1.2919949309214835, "y": 4.261784610445863, "z": 0.2737083701216172}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5474167402432344}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -1.2394912129426692, "y": 4.3467283920642, "z": 0.27159383433270495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5431876686654099}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -1.182879230066467, "y": 4.429007490531975, "z": 0.27033752958525725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5406750591705145}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -1.1220035063753513, "y": 4.508204184531867, "z": 0.2697462712368288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5394925424736576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -1.0568386235910785, "y": 4.5839043846771705, "z": 0.2696421811872903}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5392843623745806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -0.9875414802396586, "y": 4.655672204776222, "z": 0.26953805094031924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5390761018806385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -0.9143186583216082, "y": 4.723508324426111, "z": 0.2698030411380657}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5396060822761314}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -0.8378453265321673, "y": 4.787523440124825, "z": 0.2715272770865843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5430545541731686}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -0.7585256379457154, "y": 4.848243602713599, "z": 0.2748881989248415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.549776397849683}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -0.6770648652579442, "y": 4.90604254294014, "z": 0.27989760931790214}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5597952186358043}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -0.5940167834656073, "y": 4.961595577323046, "z": 0.2868718836221802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5737437672443604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -0.5100246859789024, "y": 5.015644057919728, "z": 0.2847841897542456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5695683795084912}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -0.42557934470871334, "y": 5.069000328508896, "z": 0.2721631829651208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5443263659302416}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -0.34120707127138267, "y": 5.122433387583164, "z": 0.2590145103683255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.518029020736651}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -0.2573668617527827, "y": 5.17675867635096, "z": 0.2472504747164632}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4945009494329264}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -0.17462096877640929, "y": 5.232731816216796, "z": 0.2367636562295829}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4735273124591658}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -0.09357210578958262, "y": 5.29110203145742, "z": 0.22747774479469376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45495548958938753}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -0.014872880684953065, "y": 5.352606105237094, "z": 0.21939305737581255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4387861147516251}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": 0.06068199649473038, "y": 5.4179105069442075, "z": 0.21258115112190804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42516230224381607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": 0.13223117311818458, "y": 5.487671279295291, "z": 0.2071066232077372}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4142132464154744}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": 0.19862102657463063, "y": 5.562267536526473, "z": 0.20332802931808885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4066560586361777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": 0.2586695378355558, "y": 5.642079252038783, "z": 0.200849566442057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.401699132884114}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": 0.3111698577129284, "y": 5.726974830841489, "z": 0.19944513777302897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39889027554605794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": 0.3552259518864687, "y": 5.816802220283102, "z": 0.1983214099117195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.396642819823439}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": 0.38994692324408936, "y": 5.910436629912014, "z": 0.19742695318027095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3948539063605419}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": 0.4148809410645019, "y": 6.007219507532429, "z": 0.19707013836374054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3941402767274811}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": 0.42943324498418767, "y": 6.105804266972869, "z": 0.19675027283387503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39350054566775006}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": 0.4334592578321616, "y": 6.20503476077574, "z": 0.19667435057718508}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39334870115437015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": 0.4268257807029127, "y": 6.304647553289433, "z": 0.19659839900088386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3931967980017677}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": 0.4097794124625608, "y": 6.402575179817199, "z": 0.19678406206133245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3935681241226649}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": 0.3825999316761222, "y": 6.499015472140288, "z": 0.19776436950306442}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39552873900612884}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": 0.3460039535078711, "y": 6.5919276644985505, "z": 0.19888386825929205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3977677365185841}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": 0.3004074196509804, "y": 6.6809365986374285, "z": 0.20026740183481312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40053480366962624}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": 0.2464910267344289, "y": 6.765093561232163, "z": 0.20161105389347828}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40322210778695655}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": 0.18529135602004917, "y": 6.844029721391778, "z": 0.20410876248534957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40821752497069913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": 0.1178949572413778, "y": 6.917862946135783, "z": 0.20797508008892654}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4159501601778531}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": 0.045680900111430105, "y": 6.986787216765255, "z": 0.21352269110508842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42704538221017685}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -0.030327903800045956, "y": 7.051663066744332, "z": 0.22095369970016152}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44190739940032303}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -0.10892053631495592, "y": 7.113205764649851, "z": 0.230186652581027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.460373305162054}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -0.1892910711548148, "y": 7.172523736236434, "z": 0.2405488119481451}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4810976238962902}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -0.27046371270213276, "y": 7.23064110777845, "z": 0.25034906273750573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5006981254750115}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -0.3516631875126535, "y": 7.288772766884925, "z": 0.239295873615594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.478591747231188}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -0.43200693503648613, "y": 7.348048906290865, "z": 0.22772725023895596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4554545004779119}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -0.5106293547751043, "y": 7.409603756010362, "z": 0.21821880933811424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4364376186762285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -0.5865124448679079, "y": 7.47450508540211, "z": 0.2108274925072568}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4216549850145136}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -0.6584948182619629, "y": 7.543731702403859, "z": 0.20554257789833813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41108515579667626}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -0.7252227502721461, "y": 7.618002884140889, "z": 0.20273827875971945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4054765575194389}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -0.7852891767754838, "y": 7.697890370059719, "z": 0.20106226362691065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4021245272538213}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -0.8374269614267806, "y": 7.783017233229784, "z": 0.20024512483686946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4004902496737389}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -0.8808622934537209, "y": 7.87304863753808, "z": 0.1998497208196878}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3996994416393756}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -0.9147593953447107, "y": 7.966834565831513, "z": 0.19962159255416695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3992431851083339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -0.9387845834019003, "y": 8.063669589109804, "z": 0.19952250014015377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39904500028030754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -0.9525887591780157, "y": 8.162484377390987, "z": 0.1994455081327076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3988910162654152}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -0.9560090131251168, "y": 8.26200878922919, "z": 0.19936848639253446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3987369727850689}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -0.9490508214730502, "y": 8.361723565005311, "z": 0.19941887907607087}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39883775815214173}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -0.9319478564260674, "y": 8.45986849716617, "z": 0.1996684228244137}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3993368456488274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -0.9049230717403317, "y": 8.556205835134808, "z": 0.20031732594336635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4006346518867327}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -0.868581520429746, "y": 8.649098113813457, "z": 0.20098826065660086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4019765213132017}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -0.8236150468645222, "y": 8.738391476485058, "z": 0.2028322480429757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4056644960859514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -0.7711655595024958, "y": 8.823351091161124, "z": 0.20570538963985255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4114107792797051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -0.7121025563855532, "y": 8.903922572626074, "z": 0.20949866719803517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41899733439607034}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -0.6473399159503463, "y": 8.979987604189148, "z": 0.21400862793619954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4280172558723991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -0.577733751655076, "y": 9.051575972557844, "z": 0.2191928325416712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4383856650833424}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -0.5039568326415548, "y": 9.118937139487853, "z": 0.2250003183787758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4500006367575516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -0.4267609864755749, "y": 9.182244996013079, "z": 0.2313827215736775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.462765443147355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -0.3466399032173347, "y": 9.241910366758336, "z": 0.2383598823358999}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4767197646717998}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -0.26421419490144665, "y": 9.298253306129991, "z": 0.24596451331038127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49192902662076254}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -0.17986714813652846, "y": 9.351775110402212, "z": 0.25425155339536626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5085031067907325}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -0.09410430415917609, "y": 9.402904587298277, "z": 0.2632918982884686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5265837965769372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -0.007235237157383732, "y": 9.452201730057773, "z": 0.27200386238811114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5440077247762223}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": 0.08034448981717063, "y": 9.500175364015872, "z": 0.28034422909962997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5606884581992599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": 0.1683461704407927, "y": 9.547396422166786, "z": 0.28834924813453877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5766984962690775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": 0.25645600157118736, "y": 9.594416356458426, "z": 0.29604964631995817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5920992926399163}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": 0.3443695530244964, "y": 9.641787484237073, "z": 0.28876654723234646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5775330944646929}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": 0.4318069806177148, "y": 9.690064665784393, "z": 0.2784664175994575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.556932835198915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": 0.518421901420822, "y": 9.739757473429279, "z": 0.2690829113653055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.538165822730611}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": 0.6039247803606244, "y": 9.79139273333867, "z": 0.26052854785580676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5210570957116135}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": 0.6879109166344515, "y": 9.845418188902258, "z": 0.2527155070532404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5054310141064808}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": 0.7700184457116389, "y": 9.90229537875405, "z": 0.24560530575646564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49121061151293127}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": 0.8497871243197211, "y": 9.96241643577547, "z": 0.23915141635967024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4783028327193405}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": 0.9266981242259686, "y": 10.026116439848641, "z": 0.23338046616635294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4667609323327059}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": 1.0002287923468234, "y": 10.093734122143227, "z": 0.22832451692526762}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45664903385053524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": 1.0696863986924259, "y": 10.165454224584103, "z": 0.22407498543429147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44814997086858294}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": 1.1344699129504232, "y": 10.241579602668716, "z": 0.22101666133938014}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4420333226787603}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": 1.1935313139470851, "y": 10.322028002660947, "z": 0.21967048471792308}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43934096943584616}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": 1.2460620507285705, "y": 10.407094891474483, "z": 0.21903617855049537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43807235710099074}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": 1.2911325446527906, "y": 10.496070899699507, "z": 0.2189516565788977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4379033131577954}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": 1.3284326337719883, "y": 10.588703093882753, "z": 0.21886710196665607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43773420393331214}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": 1.3580332904403736, "y": 10.683988634732586, "z": 0.21992776850740609}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43985553701481217}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": 1.3805360035791472, "y": 10.781242786101885, "z": 0.22254815896330882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44509631792661764}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": 1.396472517617692, "y": 10.879820504419865, "z": 0.2262072068345151}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4524144136690302}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": 1.4063766468404997, "y": 10.97913332210032, "z": 0.23070696893674544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4614139378734909}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": 1.4108413716802153, "y": 11.078941338576186, "z": 0.23598602293438073}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47197204586876146}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": 1.4104598208249217, "y": 11.178717602452604, "z": 0.24201578184705919}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48403156369411837}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": 1.4058215219168542, "y": 11.278564996438389, "z": 0.24872510084402435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4974502016880487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": 1.3975294805063836, "y": 11.377993364086212, "z": 0.256113248235769}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.512226496471538}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": 1.3861287500566812, "y": 11.477315362764177, "z": 0.2641861676989002}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5283723353978004}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": 1.3722239826069544, "y": 11.576137715650841, "z": 0.27285892825083274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5457178565016655}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": 1.3563155406893865, "y": 11.674822987090243, "z": 0.28116402655800116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5623280531160023}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": 1.3389810940008464, "y": 11.773139028806952, "z": 0.28913709661034254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5782741932206851}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": 1.3207036999313213, "y": 11.871379201056138, "z": 0.29680837647796465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5936167529559293}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": 1.3020190653507409, "y": 11.969495565731396, "z": 0.30420378745526516}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6084075749105303}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": 1.2834193128479887, "y": 12.06762887846073, "z": 0.31134575061006553}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6226915012201311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": 1.2653915380259715, "y": 12.165925727544442, "z": 0.3182538148565764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6365076297131528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": 1.2484564362310384, "y": 12.264302791803074, "z": 0.32494514714624806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6498902942924961}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": 1.2330714189186969, "y": 12.363072530868015, "z": 0.33143492006235103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6628698401247021}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": 1.2197998978793254, "y": 12.46197511337056, "z": 0.3368223396594772}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6736446793189544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": 1.20912661241782, "y": 12.561311968634474, "z": 0.3387498163540614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6774996327081227}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": 1.2015826228757094, "y": 12.660853930148209, "z": 0.33861909912485266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6772381982497053}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": 1.1975741298073086, "y": 12.760642879424749, "z": 0.3384883314153433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6769766628306866}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": 1.197150937652559, "y": 12.860512310556405, "z": 0.3385055951348186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6770111902696372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": 1.2002284700870884, "y": 12.960351891384454, "z": 0.3387121320125878}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6774242640251756}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": 1.2065932459769535, "y": 13.060005422281865, "z": 0.3397076133715324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6794152267430648}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": 1.216006285041361, "y": 13.159448859369007, "z": 0.34144118667781453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6828823733556291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": 1.2282257074782694, "y": 13.258556250595513, "z": 0.34383317908231303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6876663581646261}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": 1.2430228401506562, "y": 13.35733585778173, "z": 0.346848494373738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.693696988747476}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": 1.260155637360619, "y": 13.455721220557576, "z": 0.35047418090850546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7009483618170109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": 1.2793929505656354, "y": 13.553723447658212, "z": 0.3546884040224455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.709376808044891}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": 1.3005037976416391, "y": 13.651342203427928, "z": 0.35946659150743643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7189331830148729}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": 1.3232564602282728, "y": 13.748574171544886, "z": 0.36480329060917566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7296065812183513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": 1.3474412369697553, "y": 13.84549150091194, "z": 0.3702392113088269}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7404784226176538}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": 1.3728219202826468, "y": 13.942057974140567, "z": 0.3755482584478422}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7510965168956844}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": 1.3992069985778588, "y": 14.038412334291818, "z": 0.3807367915853503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7614735831707006}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": 1.4263491351409585, "y": 14.134486465340972, "z": 0.38581066013900045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7716213202780009}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": 1.4540747303064834, "y": 14.230475816398748, "z": 0.39077525890854264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7815505178170853}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": 1.4821258282051146, "y": 14.326277467431677, "z": 0.39563557606250305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7912711521250061}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": 1.5103462153234064, "y": 14.422133966992982, "z": 0.40039623480194236}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8007924696038847}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": 1.5384689142155206, "y": 14.517904200742668, "z": 0.39617009316637736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7923401863327547}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": 1.5663529365443973, "y": 14.613870556138371, "z": 0.3872974161454483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7745948322908967}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": 1.5937244915438735, "y": 14.709850418216785, "z": 0.378931998409552}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.757863996819104}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": 1.6204540279462836, "y": 14.80615275678791, "z": 0.37103726727943304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7420745345588661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": 1.646265301521458, "y": 14.902548463419961, "z": 0.3635616332058075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.727123266411615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": 1.6710450392895224, "y": 14.999385818468932, "z": 0.35645716300645885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7129143260129177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": 1.6945230077221136, "y": 15.096357368628459, "z": 0.34956470034879494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6991294006975899}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": 1.716634017945389, "y": 15.193864018617493, "z": 0.34286239978408783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6857247995681757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": 1.7371301665656396, "y": 15.291510699479502, "z": 0.33639990235014444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6727998047002889}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": 1.7559258358601477, "y": 15.389712560929304, "z": 0.33016147617031305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6603229523406261}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": 1.7727664603566708, "y": 15.488063036056934, "z": 0.32416159165079944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6483231833015989}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": 1.7875339557003387, "y": 15.586941361653853, "z": 0.3183830540398924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6367661080797848}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": 1.7999858756042357, "y": 15.68594444003253, "z": 0.3127907372754989}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6255814745509978}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": 1.8099862093307002, "y": 15.78540413080554, "z": 0.30737190591999625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6147438118399925}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": 1.817319085452807, "y": 15.884933532710436, "z": 0.30209968615120814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6041993723024163}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": 1.8218284238797813, "y": 15.984771579109568, "z": 0.2969654915440522}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5939309830881044}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": 1.8233239171810867, "y": 16.084585460397452, "z": 0.29193429079931194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5838685815986239}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": 1.8216372286184777, "y": 16.18448776195523, "z": 0.2870010961385829}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5740021922771658}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": 1.8165988959458812, "y": 16.284212724657802, "z": 0.28213975507800015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5642795101560003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": 1.808038477994641, "y": 16.383738975414904, "z": 0.27734850014006157}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5546970002801231}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": 1.7957954105240408, "y": 16.482860796004427, "z": 0.272602435101958}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.545204870203916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": 1.7797100829171129, "y": 16.581432308785725, "z": 0.26790154076482703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5358030815296541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": 1.7596225725242545, "y": 16.679288751410066, "z": 0.263219973763258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.526439947526516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": 1.7353986422213015, "y": 16.776168077285448, "z": 0.2585625078490071}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5171250156980142}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": 1.7068748666750584, "y": 16.87191985916384, "z": 0.2539134993506447}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5078269987012894}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": 1.6739483744325026, "y": 16.966188674465677, "z": 0.2492790806017555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.498558161203511}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": 1.6364557589976951, "y": 17.058797005688174, "z": 0.24465665730257447}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48931331460514893}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": 1.5943229205658298, "y": 17.14932747862085, "z": 0.24006410958694852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48012821917389703}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": 1.5474008393132865, "y": 17.237524460858236, "z": 0.2355083411651704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4710166823303408}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": 1.4956405135881852, "y": 17.322923742401766, "z": 0.2310184262871629}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4620368525743258}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": 1.438935220980841, "y": 17.405154966706192, "z": 0.22663077935121187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45326155870242374}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": 1.3772587735931543, "y": 17.483703314411784, "z": 0.22241362295366005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4448272459073201}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": 1.3105795250082817, "y": 17.558046496372192, "z": 0.21844168430783542}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43688336861567084}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": 1.2389040198464862, "y": 17.627595062651118, "z": 0.214835475844083}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.429670951688166}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": 1.1623047874849048, "y": 17.691671911574254, "z": 0.21174515584596548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42349031169193097}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": 1.0808979686097246, "y": 17.74953894382449, "z": 0.20946933846371008}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41893867692742015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": 0.9949336065975113, "y": 17.800320533018613, "z": 0.20801777336762994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4160355467352599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": 0.9047629303514396, "y": 17.843208011726713, "z": 0.20738792045339857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41477584090679714}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": 0.8110781960517529, "y": 17.87739449961379, "z": 0.20730755598436576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4146151119687315}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": 0.714465418321064, "y": 17.902394683824653, "z": 0.20722755986922695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4144551197384539}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": 0.6159423071241993, "y": 17.91793648115058, "z": 0.2071475328612367}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4142950657224734}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": 0.516286112857788, "y": 17.924118913953624, "z": 0.2075820134506378}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4151640269012756}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": 0.4164948459933704, "y": 17.921236242038525, "z": 0.2086935653218295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.417387130643659}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": 0.3172972421970155, "y": 17.909773594929266, "z": 0.21057540939355154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4211508187871031}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": 0.21936755966098095, "y": 17.89034553250024, "z": 0.2132520830860643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4265041661721286}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": 0.12317433878840021, "y": 17.86350937543057, "z": 0.21642353222519842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43284706445039683}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": 0.029188089811759722, "y": 17.829814143044608, "z": 0.21993464141850272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43986928283700544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -0.062308311350599346, "y": 17.789767282670017, "z": 0.223726924594743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.447453849189486}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -0.15099275426578432, "y": 17.743900975174622, "z": 0.2277417392781545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.455483478556309}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -0.23672053635131005, "y": 17.692652082782068, "z": 0.23189409013906825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4637881802781365}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -0.31927035888767286, "y": 17.636502773786628, "z": 0.23616023659354604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4723204731870921}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -0.39860930877883083, "y": 17.575809626311294, "z": 0.24050501026585172}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48101002053170344}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -0.47457177280635704, "y": 17.51102278031225, "z": 0.24490888894834573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48981777789669145}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -0.5471910687683172, "y": 17.44242538558034, "z": 0.2493458746874286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4986917493748572}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -0.6163559604118737, "y": 17.37042874555087, "z": 0.25381120159083626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5076224031816725}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -0.6821460652744125, "y": 17.29524997874477, "z": 0.2582925654633747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5165851309267494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -0.7444883309194583, "y": 17.21727078589948, "z": 0.26278854822777714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5255770964555543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -0.8034924870535959, "y": 17.136652959312475, "z": 0.26729895399139125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5345979079827825}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -0.8591209639989181, "y": 17.053749861984294, "z": 0.27182662339110436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5436532467822087}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -0.9115015773243873, "y": 16.96867756385312, "z": 0.27637357440300026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5527471488060005}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -0.9606266198689409, "y": 16.881761166427655, "z": 0.28094291301629837}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5618858260325967}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -1.0066337891772064, "y": 16.79307970471921, "z": 0.28554132807005456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5710826561401091}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -1.0495418442385727, "y": 16.702930396901554, "z": 0.2901736433949124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5803472867898248}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": -1.0894933866010705, "y": 16.611361118864465, "z": 0.294846313918867}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.589692627837734}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": -1.1265292211618727, "y": 16.51864053103422, "z": 0.29956458548263926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5991291709652785}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": -1.160790430353102, "y": 16.4247965326643, "z": 0.3043340118854806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6086680237709612}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": -1.1923376050842087, "y": 16.330064221125056, "z": 0.30915929125656744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6183185825131349}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": -1.221309195295625, "y": 16.234458745731636, "z": 0.31405250090891795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6281050018178359}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": -1.2477843503954598, "y": 16.13818261478056, "z": 0.31902099420212515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6380419884042503}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": -1.2719027973811654, "y": 16.04124072285203, "z": 0.32408841327567856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6481768265513571}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": -1.2937602498972929, "y": 15.943807266111966, "z": 0.32926196752185893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6585239350437179}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": -1.3134950277458892, "y": 15.84588266103886, "z": 0.3345565456642384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6691130913284768}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": -1.3312148285897654, "y": 15.7476085745098, "z": 0.3399793398966389}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6799586797932778}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": -1.3470556321535827, "y": 15.648982217540631, "z": 0.3455429756071352}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6910859512142704}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": -1.3611332959486577, "y": 15.550119167602805, "z": 0.3512574630533048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7025149261066096}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": -1.3735841365710042, "y": 15.451008343112548, "z": 0.35702587638293587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7140517527658717}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": -1.3845299318232291, "y": 15.351747391545583, "z": 0.36264974811668665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7252994962333733}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": -1.3941064136917873, "y": 15.252319246260765, "z": 0.3681369391594231}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7362738783188462}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": -1.4024392067770122, "y": 15.152803402033811, "z": 0.37349462741805256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7469892548361051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": -1.4096636889208314, "y": 15.053177744270236, "z": 0.3787293881128975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.757458776225795}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": -1.4159083931364436, "y": 14.95350779619024, "z": 0.3838472623396168}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7676945246792336}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": -1.4213083391774206, "y": 14.85376710204296, "z": 0.38885381591676155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7777076318335231}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": -1.4259938157407797, "y": 14.754008643516178, "z": 0.39375419015013763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7875083803002753}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": -1.4300993864513463, "y": 14.654209105891097, "z": 0.3985531458309963}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7971062916619926}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": -1.4337555636218746, "y": 14.554406830767059, "z": 0.4032551015387406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8065102030774812}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": -1.4370914678686735, "y": 14.454579434351984, "z": 0.4078641671241778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8157283342483556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": -1.4402308101280035, "y": 14.354758176386728, "z": 0.41238417309442105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8247683461888421}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": -1.4432904788168388, "y": 14.254922318008978, "z": 0.4168186964963951}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8336373929927902}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": -1.4463843720450065, "y": 14.155094006665486, "z": 0.421171083795782}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.842342167591564}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": -1.4496275155471348, "y": 14.055269406701886, "z": 0.42544447116701034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8508889423340207}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": -1.4531352279610121, "y": 13.955450088536665, "z": 0.42964180254361517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8592836050872303}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": -1.4570233293944264, "y": 13.855653570395386, "z": 0.43376584572391563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8675316914478313}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": -1.4614084380625416, "y": 13.755864397256694, "z": 0.437819206782124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.875638413564248}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": -1.4664024634134756, "y": 13.656121429496583, "z": 0.4322608961186866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8645217922373732}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": -1.4721205124908527, "y": 13.55639468767727, "z": 0.4259398130799036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8518796261598072}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": -1.4786728397483146, "y": 13.456747484186138, "z": 0.41990609790364525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8398121958072905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": -1.4861766005551242, "y": 13.357135611366806, "z": 0.41414862674690406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8282972534938081}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": -1.4947390869891535, "y": 13.257644899545586, "z": 0.40866277961435943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8173255592287189}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": -1.5044792188798897, "y": 13.158223781545507, "z": 0.40344652521436714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8068930504287343}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": -1.5155017922454426, "y": 13.05897914014192, "z": 0.39849805662346893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7969961132469379}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -1.5279290240917256, "y": 12.959857733467537, "z": 0.39381608632635384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7876321726527077}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -1.5418626186434965, "y": 12.860981189552048, "z": 0.3894010130203853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7788020260407706}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -1.5574268647145249, "y": 12.762305147568854, "z": 0.3852576133339946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7705152266679892}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -1.574720704165305, "y": 12.66396013261149, "z": 0.3813907602391106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7627815204782212}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -1.5938699379488221, "y": 12.565920349053817, "z": 0.3778129705839844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7556259411679688}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -1.6149722362534185, "y": 12.468320126659561, "z": 0.37453196248859244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7490639249771849}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -1.638152802516469, "y": 12.3711615597646, "z": 0.3715640038097569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7431280076195138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -1.663509366274894, "y": 12.274574397431367, "z": 0.36892096962985316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7378419392597063}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -1.6911611807425504, "y": 12.17860141653557, "z": 0.36662586712987116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7332517342597423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -1.7212077293475836, "y": 12.083363595068034, "z": 0.3647079264103669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7294158528207338}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -1.7537606292878796, "y": 11.98895414601241, "z": 0.36324901054964276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7264980210992855}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -1.788940888839563, "y": 11.895477185970979, "z": 0.3622735427349029}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7245470854698058}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -1.8268500878731648, "y": 11.803089303354643, "z": 0.36183315149736905}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7236663029947381}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": -1.8676059287637519, "y": 11.711910011944022, "z": 0.3616935268401259}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7233870536802518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": -1.9112018424513009, "y": 11.622091360219958, "z": 0.36155384826271697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7231076965254339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": -1.9574885402538842, "y": 11.533572429409961, "z": 0.36211075319990293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7242215063998059}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": -2.0062082763863436, "y": 11.446434922761329, "z": 0.3633255094349743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7266510188699487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": -2.0572383244146515, "y": 11.36052315647673, "z": 0.36513437372660773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7302687474532155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": -2.110315751662563, "y": 11.275939419219442, "z": 0.36748009644515245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7349601928903049}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": -2.165335858791645, "y": 11.192550449083852, "z": 0.3702712728034273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7405425456068546}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": -2.222087509368961, "y": 11.110377589564521, "z": 0.3735052863687308}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7470105727374616}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": -2.2804221721467526, "y": 11.02929902272282, "z": 0.37729312725060865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7545862545012173}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": -2.340147821667842, "y": 10.949256662934063, "z": 0.38161031118883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.76322062237766}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": -2.4011216078390096, "y": 10.870138998149967, "z": 0.3864097484726047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7728194969452093}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": -2.4631716810611493, "y": 10.791874640492573, "z": 0.3913616270507771}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7827232541015542}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": -2.5261525741478765, "y": 10.714355685489613, "z": 0.3962097950908584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7924195901817168}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": -2.5899187860387975, "y": 10.637475435100512, "z": 0.4009588346943696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8019176693887392}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": -2.6543150986900406, "y": 10.5611390952158, "z": 0.4056130033514623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8112260067029246}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": -2.719218041657842, "y": 10.485214472242058, "z": 0.4101762652559681}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8203525305119362}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": -2.7844703473924395, "y": 10.409609479823843, "z": 0.4146523188398869}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8293046376797738}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": -2.8499617086897167, "y": 10.33418452395117, "z": 0.4190446210706381}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8380892421412762}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": -2.9155370128697458, "y": 10.258866411664405, "z": 0.4233564089644781}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8467128179289563}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": -2.98110038213412, "y": 10.18350684586653, "z": 0.4275907186962759}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8551814373925518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": -3.046478633728879, "y": 10.108029238978919, "z": 0.43175040262596803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8635008052519361}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": -3.1115415558849633, "y": 10.03225489412764, "z": 0.43583814451275205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8716762890255041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": -3.1760595052989187, "y": 9.956022698651596, "z": 0.43985647314734916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8797129462946983}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": -3.239857440352239, "y": 9.879183912757735, "z": 0.44380777459886267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8876155491977253}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": -3.3028406629710623, "y": 9.801661875879189, "z": 0.44769430324452436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8953886064890487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": -3.364930426361002, "y": 9.723432695311095, "z": 0.4515181917269955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.903036383453991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": -3.426115819816131, "y": 9.644489198025695, "z": 0.4552814599639811}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9105629199279622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": -3.4863786560407033, "y": 9.564842822471581, "z": 0.45895043727145984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9179008745429197}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": -3.5457054164074533, "y": 9.484496094884529, "z": 0.4624599931576685}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.924919986315337}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": -3.604081256562958, "y": 9.403455464745662, "z": 0.4658206537495551}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9316413074991102}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": -3.66149287127983, "y": 9.321730119621495, "z": 0.46905250247024527}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9381050049404905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": -3.7179295304381355, "y": 9.239326863034412, "z": 0.4721608399243448}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9443216798486896}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": -3.773378186508529, "y": 9.15625748144527, "z": 0.47515441495345995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9503088299069199}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": -3.82783021533007, "y": 9.072527905472567, "z": 0.4780377336977613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9560754673955226}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": -3.8812713002331787, "y": 8.988153694674484, "z": 0.4808166303136119}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9616332606272238}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": -3.9336953913286012, "y": 8.90313859683423, "z": 0.4834958654847447}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9669917309694894}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": -3.985087476362368, "y": 8.817503063053431, "z": 0.4860848837948183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9721697675896366}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": -4.035445619869208, "y": 8.731247732383967, "z": 0.4885891696002635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.977178339200527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": -4.084755683532531, "y": 8.644396727226566, "z": 0.49101926388140116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9820385277628023}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": -4.133017363053288, "y": 8.556949961775153, "z": 0.49337603599346763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9867520719869353}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": -4.1802151149710385, "y": 8.468933848631337, "z": 0.49565898813928677}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9913179762785735}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": -4.226348792170726, "y": 8.380345424285485, "z": 0.49786759676503545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9957351935300709}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": -4.27140087670385, "y": 8.29121338820567, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": -4.315371474189639, "y": 8.201531638555199, "z": 0.4976087643398994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9952175286797988}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": -4.358242465478053, "y": 8.11133035139196, "z": 0.4951027833825949}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9902055667651898}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": -4.400013182800687, "y": 8.020603004634719, "z": 0.492541296907745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.98508259381549}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": -4.440665167534997, "y": 7.929380289319023, "z": 0.4899249842277223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9798499684554446}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": -4.480196672632746, "y": 7.8376555243511445, "z": 0.4872533064320599}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9745066128641198}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": -4.518589378511442, "y": 7.745459320017761, "z": 0.4845259276322454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9690518552644908}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": -4.555840371785143, "y": 7.652785526973592, "z": 0.481741966640908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.963483933281816}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": -4.591931741966756, "y": 7.55966402212141, "z": 0.47890101855133604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9578020371026721}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": -4.62685897174876, "y": 7.4660904460693995, "z": 0.4760019147509764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9520038295019528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": -4.660604841307187, "y": 7.372093322334913, "z": 0.47304373747140754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9460874749428151}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": -4.693163367560077, "y": 7.277670455359611, "z": 0.47002467877777077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9400493575555415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": -4.724518358052408, "y": 7.1828484880910555, "z": 0.46694283652693647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9338856730538729}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": -4.754662355568512, "y": 7.087628226751605, "z": 0.4637960852223736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9275921704447472}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": -4.783580022773557, "y": 6.992034572092865, "z": 0.4605824312203781}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9211648624407562}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": -4.811262706425452, "y": 6.8960711031761885, "z": 0.4572991668230455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.914598333646091}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": -4.837696153054446, "y": 6.7997605666467456, "z": 0.45394311471076126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9078862294215225}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": -4.862870613996507, "y": 6.703109566057086, "z": 0.4505116438742443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9010232877484886}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": -4.886772459939479, "y": 6.606138657200698, "z": 0.44700257468108745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8940051493621749}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": -4.9093917616903475, "y": 6.508858323909744, "z": 0.443407653283419}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.886815306566838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": -4.9307169492765155, "y": 6.411290806019118, "z": 0.439717229881971}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.879434459763942}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": -4.950737399213929, "y": 6.313444238034339, "z": 0.4359375907526065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.871875181505213}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": -4.969436731638336, "y": 6.215342534433923, "z": 0.43207364054042646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8641472810808529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": -4.986795077829621, "y": 6.116988558477868, "z": 0.4281661852318877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8563323704637754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": -5.002780883870959, "y": 6.018405714439768, "z": 0.4242583960125466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8485167920250932}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": -5.017359366103214, "y": 5.919599349423892, "z": 0.4203741847949544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8407483695899088}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": -5.030486813113656, "y": 5.82059318944128, "z": 0.4165131870247141}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8330263740494283}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": -5.04212085258297, "y": 5.721396160165727, "z": 0.41267493821041773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8253498764208355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": -5.052216533418855, "y": 5.622035277012585, "z": 0.40884537711963165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8176907542392633}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": -5.060733163462212, "y": 5.522521140829257, "z": 0.4050125912933748}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8100251825867496}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": -5.067630206564514, "y": 5.422886576438224, "z": 0.40116852503900596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8023370500780119}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": -5.0728697037270525, "y": 5.323145592036332, "z": 0.39730644305362056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7946128861072411}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": -5.07641308662606, "y": 5.223335894405626, "z": 0.39342389973566305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7868477994713261}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": -5.078222428100066, "y": 5.123473794089091, "z": 0.3895178685342106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7790357370684212}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": -5.078258917131045, "y": 5.023601355477032, "z": 0.38558228070013384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7711645614002677}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": -5.076484323712166, "y": 4.923738359934899, "z": 0.3816119787409408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7632239574818817}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": -5.072860866287294, "y": 4.8239305646776725, "z": 0.3775999602827403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7551999205654806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": -5.067350928498191, "y": 4.724204181690389, "z": 0.3735443170371297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7470886340742594}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": -5.0599183111565775, "y": 4.6246075923733745, "z": 0.3694385156835264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7388770313670529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": -5.050525989289203, "y": 4.52517248091112, "z": 0.3652758348959281}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7305516697918562}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": -5.039138699615623, "y": 4.425949294595272, "z": 0.3610495885133194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7220991770266388}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": -5.025720814181026, "y": 4.326977296740267, "z": 0.3567496506605466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7134993013210932}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": -5.01023844077363, "y": 4.22830732385094, "z": 0.3523678146453778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7047356292907556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": -4.992658952540226, "y": 4.129990337191656, "z": 0.34789118889535664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6957823777907133}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": -4.972949862921699, "y": 4.032077782964958, "z": 0.3433076680908456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6866153361816912}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": -4.951072779997037, "y": 3.934629041485702, "z": 0.3386357007607968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6772714015215936}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": -4.926982388238436, "y": 3.837699849790881, "z": 0.3338827851169331}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6677655702338662}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": -4.900631755052976, "y": 3.741364535110839, "z": 0.329067488418375}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.65813497683675}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": -4.871963847956206, "y": 3.645682995345152, "z": 0.3242181027384724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6484362054769448}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": -4.840923279458513, "y": 3.550757599554891, "z": 0.31935186428025764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6387037285605153}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": -4.807448469764492, "y": 3.4566526692718074, "z": 0.314447238843852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.628894477687704}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": -4.771688544263138, "y": 3.363404015451043, "z": 0.30878723039857725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6175744607971545}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": -4.733958500931385, "y": 3.270950039291387, "z": 0.3018723739227038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6037447478454075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": -4.6949333554465955, "y": 3.1790206583464173, "z": 0.2921452505516551}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5842905011033102}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": -4.6555861755233146, "y": 3.0872722129718753, "z": 0.27900453085854166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5580090617170833}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": -4.616736781318179, "y": 2.9952545031586086, "z": 0.2673569913735395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.534713982747079}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": -4.579201913741401, "y": 2.9027352794965244, "z": 0.2569321146256547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5138642292513094}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": -4.543697478996239, "y": 2.809361355493854, "z": 0.24754763772384253}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49509527544768506}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": -4.5109858631132695, "y": 2.714984897487491, "z": 0.23912253252893192}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47824506505786385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": -4.481822644056201, "y": 2.619451275784332, "z": 0.23163340724721643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46326681449443285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": -4.4569969886221825, "y": 2.5226799043724384, "z": 0.225095585048066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.450191170096132}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": -4.437354067635832, "y": 2.424764895727009, "z": 0.21961094265735617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43922188531471235}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": -4.423756299610563, "y": 2.325785352999851, "z": 0.2152788360268617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4305576720537234}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": -4.417116642642074, "y": 2.2261605298151586, "z": 0.21237370530306693}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42474741060613386}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": -4.418348298831514, "y": 2.126259744309647, "z": 0.2107787985376662}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4215575970753324}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": -4.428207558864256, "y": 2.026918164037206, "z": 0.2106974629348389}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4213949258696778}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": -4.447267058906531, "y": 1.9289659364210967, "z": 0.21061609592187763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42123219184375527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": -4.475188275672755, "y": 1.8331246409168467, "z": 0.21102076532622577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42204153065245154}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": -4.510858850878537, "y": 1.7399178234549784, "z": 0.21335741042556397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42671482085112794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": -4.553269103023706, "y": 1.6495220037599614, "z": 0.21714045480363717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43428090960727433}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": -4.601415085258773, "y": 1.5620760033926449, "z": 0.22214639117785015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4442927823557003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": -4.654433816194981, "y": 1.4774265365528396, "z": 0.2282224097763104}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4564448195526208}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": -4.711455429261681, "y": 1.3954405262165583, "z": 0.23528572703160647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47057145406321294}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": -4.771728571102804, "y": 1.3157895602836773, "z": 0.2433247475155577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4866494950311154}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": -4.834523453843737, "y": 1.238108644481398, "z": 0.25238192946118015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5047638589223603}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": -4.899167205996139, "y": 1.1619636376061862, "z": 0.2615930913877454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5231861827754908}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": -4.965057841746912, "y": 1.086840141823495, "z": 0.27038022114837096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5407604422967419}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": -5.031525725136546, "y": 1.0122945307925764, "z": 0.2787881348183549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5575762696367098}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": -5.098038990067745, "y": 0.9377229637610265, "z": 0.2868542851716415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.573708570343283}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": -5.163954108291266, "y": 0.8627195614336699, "z": 0.29461035186841694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5892207037368339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": -5.2287808835682466, "y": 0.7867599923959784, "z": 0.30208341556819324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6041668311363865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": -5.291969563215432, "y": 0.7094506541842703, "z": 0.30924020493990656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6184804098798131}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": -5.3530070364978695, "y": 0.630440190936667, "z": 0.31399344071865626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6279868814373125}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": -5.411565427667272, "y": 0.5495349373290315, "z": 0.31729248325683035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6345849665136607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": -5.467396019864155, "y": 0.46673188389455855, "z": 0.31655208657589823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6331041731517965}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": -5.520355265942215, "y": 0.3820539022131647, "z": 0.31414164791163984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6282832958232797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": -5.570333277479992, "y": 0.29559012583372885, "z": 0.3116879892830834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6233759785661668}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": -5.617232188081661, "y": 0.20741244461029662, "z": 0.30919710155426916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6183942031085383}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": -5.660940983875419, "y": 0.1176174952931813, "z": 0.3066755035540562}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6133510071081124}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": -5.7013591435750355, "y": 0.026287078835391053, "z": 0.3041197759502734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6082395519005468}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": -5.738374250907094, "y": -0.06646816950224871, "z": 0.30153409526377123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6030681905275425}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": -5.77188096791497, "y": -0.16055321783366525, "z": 0.2989339848033043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5978679696066086}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": -5.8017645538198135, "y": -0.25584679004213606, "z": 0.2963141035472311}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5926282070944622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": -5.827917153970784, "y": -0.35223437442591854, "z": 0.2936814506661991}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5873629013323982}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": -5.850227000251492, "y": -0.4495812983494541, "z": 0.2910370766132517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5820741532265034}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": -5.868584599253377, "y": -0.5477496973576872, "z": 0.2883906341913207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5767812683826414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": -5.882879927366148, "y": -0.6465928424243297, "z": 0.28575052050105804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5715010410021161}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": -5.893001707051557, "y": -0.7459467935507154, "z": 0.2831339857873563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5662679715747126}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": -5.898838627584052, "y": -0.8456483324470631, "z": 0.28055869767179464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5611173953435893}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": -5.9002772919801, "y": -0.9455034691183438, "z": 0.2780481669720237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5560963339440474}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": -5.8972044155718955, "y": -1.0453308716924736, "z": 0.2756195351551959}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5512390703103918}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": -5.88950971929769, "y": -1.1448965797540633, "z": 0.273306580877545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.54661316175509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": -5.8770806520626016, "y": -1.24399527752691, "z": 0.27115022453970145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5423004490794029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": -5.859811099067672, "y": -1.3423489793471817, "z": 0.269197810698248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.538395621396496}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 3, "action": 0, "pose": {"position": {"x": -5.837587921312444, "y": -1.4397208812726277, "z": 0.2674981589427436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5349963178854872}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 3, "action": 0, "pose": {"position": {"x": -5.810318443652128, "y": -1.5357809541901635, "z": 0.2661241986089733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5322483972179466}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 3, "action": 0, "pose": {"position": {"x": -5.777897557137803, "y": -1.6302500304238035, "z": 0.26509578561009006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5301915712201801}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 3, "action": 0, "pose": {"position": {"x": -5.740272012452082, "y": -1.7227402383206993, "z": 0.2644941281095033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5289882562190066}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 3, "action": 0, "pose": {"position": {"x": -5.697388271446698, "y": -1.8129366204673483, "z": 0.2639085848987397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5278171697974794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 3, "action": 0, "pose": {"position": {"x": -5.649361241483825, "y": -1.9004796022726744, "z": 0.26332720958843187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5266544191768637}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 3, "action": 0, "pose": {"position": {"x": -5.596328185626421, "y": -1.9851151959258935, "z": 0.2627218376402798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5254436752805596}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 3, "action": 0, "pose": {"position": {"x": -5.538528236203125, "y": -2.0665330618016156, "z": 0.26192438346894276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5238487669378855}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 3, "action": 0, "pose": {"position": {"x": -5.476146161106553, "y": -2.144543769035677, "z": 0.26091876121351437}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5218375224270287}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 3, "action": 0, "pose": {"position": {"x": -5.409453669749331, "y": -2.2188429076479563, "z": 0.2597341765341453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5194683530682906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 3, "action": 0, "pose": {"position": {"x": -5.338607163257599, "y": -2.2892592114551724, "z": 0.25839881118654884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5167976223730977}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 3, "action": 0, "pose": {"position": {"x": -5.263894975062501, "y": -2.3554820645678607, "z": 0.2569454586747799}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5138909173495598}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 3, "action": 0, "pose": {"position": {"x": -5.1854603997388375, "y": -2.4173348500419056, "z": 0.255405884360008}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.510811768720016}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 3, "action": 0, "pose": {"position": {"x": -5.103611890550172, "y": -2.474498873020227, "z": 0.2538549262378546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5077098524757092}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 3, "action": 0, "pose": {"position": {"x": -5.018496832206401, "y": -2.526772859886916, "z": 0.2523948282970894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5047896565941788}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 3, "action": 0, "pose": {"position": {"x": -4.930446812929206, "y": -2.573828389255741, "z": 0.25109408662323124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5021881732464625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 3, "action": 0, "pose": {"position": {"x": -4.839641445363823, "y": -2.615422512490522, "z": 0.25006881621689836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5001376324337967}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 3, "action": 0, "pose": {"position": {"x": -4.746438106767547, "y": -2.6512145387737145, "z": 0.24942211745914525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4988442349182905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 3, "action": 0, "pose": {"position": {"x": -4.651086528101142, "y": -2.68090837501776, "z": 0.24932587012106977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49865174024213954}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 3, "action": 0, "pose": {"position": {"x": -4.553981875574665, "y": -2.7041464914434448, "z": 0.21928254555057705}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4385650911011541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_iqp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.553981875574665, "y_m": -2.7041464914434448, "d_right": 0.5931872982370089, "d_left": 0.7290256277137677, "psi_rad": -0.20056960039514404, "kappa_radpm": 0.696017390927075, "vx_mps": 3.720348528289955, "ax_mps2": -2.339119263100952}, {"id": 1, "s_m": 0.09987622699461336, "d_m": 0.0, "x_m": -4.455490221653512, "y_m": -2.7205797075671967, "d_right": 0.600638517374758, "d_left": 0.7166994486759135, "psi_rad": -0.12957867513280386, "kappa_radpm": 0.7262422734495019, "vx_mps": 3.657013584739787, "ax_mps2": -2.22833065131089}, {"id": 2, "s_m": 0.19975245398922672, "d_m": 0.0, "x_m": -4.356064735818184, "y_m": -2.729829490710904, "d_right": 0.5913943902272158, "d_left": 0.6997641752422826, "psi_rad": -0.0553956728642675, "kappa_radpm": 0.7596819126787903, "vx_mps": 3.59564095024414, "ax_mps2": -2.048994453903527}, {"id": 3, "s_m": 0.2996286809838401, "d_m": 0.0, "x_m": -4.256250481563182, "y_m": -2.7315103502925986, "d_right": 0.5897145290226832, "d_left": 0.6742915846222762, "psi_rad": 0.02236938826312418, "kappa_radpm": 0.7987163456764452, "vx_mps": 3.538268244875597, "ax_mps2": -1.8034549616486844}, {"id": 4, "s_m": 0.39950490797845345, "d_m": 0.0, "x_m": -4.156579216222994, "y_m": -2.725226213657124, "d_right": 0.596000812445695, "d_left": 0.6550786314145421, "psi_rad": 0.10427635858869322, "kappa_radpm": 0.8424597284198934, "vx_mps": 3.4869897646030834, "ax_mps2": -1.2369062914357702}, {"id": 5, "s_m": 0.4993811349730668, "d_m": 0.0, "x_m": -4.057841339421828, "y_m": -2.710567897872524, "d_right": 0.6106725423640506, "d_left": 0.6405160393236996, "psi_rad": 0.19156676541803597, "kappa_radpm": 0.9074146351005097, "vx_mps": 3.4513798039882047, "ax_mps2": -0.5608327896437753}, {"id": 6, "s_m": 0.5992573619676802, "d_m": 0.0, "x_m": -3.960793442322772, "y_m": -2.6870177072351606, "d_right": 0.6342638617468351, "d_left": 0.6171962487564294, "psi_rad": 0.285727078444288, "kappa_radpm": 0.973287208008259, "vx_mps": 3.435112054266744, "ax_mps2": -0.39265138261430593}, {"id": 7, "s_m": 0.6991335889622935, "d_m": 0.0, "x_m": -3.866499426913825, "y_m": -2.654232553277101, "d_right": 0.6671605020628657, "d_left": 0.5849130698645907, "psi_rad": 0.38385241133221126, "kappa_radpm": 0.9941219836014584, "vx_mps": 3.423676641876277, "ax_mps2": -0.07631751296527547}, {"id": 8, "s_m": 0.7990098159569069, "d_m": 0.0, "x_m": -3.7759070457552864, "y_m": -2.612243437262176, "d_right": 0.7094165608027999, "d_left": 0.542837148997319, "psi_rad": 0.48472279204839985, "kappa_radpm": 1.022434042386716, "vx_mps": 3.4214495667234455, "ax_mps2": -0.0635743548749843}, {"id": 9, "s_m": 0.8988860429515203, "d_m": 0.0, "x_m": -3.690042551790207, "y_m": -2.5612753385950806, "d_right": 0.760960678142119, "d_left": 0.4909957249259313, "psi_rad": 0.5866067830096243, "kappa_radpm": 1.0192738827812835, "vx_mps": 3.419593251285157, "ax_mps2": -0.08425858992715554}, {"id": 10, "s_m": 0.9987622699461336, "d_m": 0.0, "x_m": -3.6098310431729175, "y_m": -2.501854096741153, "d_right": 0.8203185117075309, "d_left": 0.44449958611342505, "psi_rad": 0.688692875709782, "kappa_radpm": 1.0243298751510124, "vx_mps": 3.417131420376947, "ax_mps2": -0.0746736481110479}, {"id": 11, "s_m": 1.098638496940747, "d_m": 0.0, "x_m": -3.536061817609144, "y_m": -2.434525561030273, "d_right": 0.8867720175962304, "d_left": 0.40717853947366495, "psi_rad": 0.7908409118855092, "kappa_radpm": 1.0224249140423072, "vx_mps": 3.414948154755627, "ax_mps2": -0.04504805718587223}, {"id": 12, "s_m": 1.1985147239353604, "d_m": 0.0, "x_m": -3.4696100193308523, "y_m": -2.360090866807209, "d_right": 0.9612886773315616, "d_left": 0.3822127879428602, "psi_rad": 0.8933132234586493, "kappa_radpm": 1.0297890122884108, "vx_mps": 3.4136303900244584, "ax_mps2": -0.045048057185881125}, {"id": 13, "s_m": 1.2983909509299738, "d_m": 0.0, "x_m": -3.411121852285442, "y_m": -2.2792173668345233, "d_right": 1.042703584709933, "d_left": 0.3593176531692604, "psi_rad": 0.9959675207493139, "kappa_radpm": 1.0267980562910908, "vx_mps": 3.4123121163997014, "ax_mps2": -0.0009204407269789124}, {"id": 14, "s_m": 1.398267177924587, "d_m": 0.0, "x_m": -3.3612460180876846, "y_m": -2.1928325451093738, "d_right": 1.128404908788649, "d_left": 0.3431802619631294, "psi_rad": 1.0983933708106068, "kappa_radpm": 1.0261732090961166, "vx_mps": 3.412285175572851, "ax_mps2": 0.006544584548954074}, {"id": 15, "s_m": 1.4981434049192004, "d_m": 0.0, "x_m": -3.320516605189066, "y_m": -2.10195875039284, "d_right": 1.2195924979171937, "d_left": 0.3454516389455285, "psi_rad": 1.2003816321689877, "kappa_radpm": 1.0195708874771034, "vx_mps": 3.4124767275775283, "ax_mps2": 0.082082035975527}, {"id": 16, "s_m": 1.5980196319138138, "d_m": 0.0, "x_m": -3.289090331687769, "y_m": -2.007015118745124, "d_right": 1.3147365737132144, "d_left": 0.3659128928742882, "psi_rad": 1.301594704440904, "kappa_radpm": 0.9986926289927092, "vx_mps": 3.41487825615684, "ax_mps2": 0.308771265201754}, {"id": 17, "s_m": 1.6978958589084272, "d_m": 0.0, "x_m": -3.2673533662608496, "y_m": -1.9097777066497226, "d_right": 1.313835836413538, "d_left": 0.401653932247787, "psi_rad": 1.399745550463633, "kappa_radpm": 0.974960059556518, "vx_mps": 3.423897095754805, "ax_mps2": 0.5251542510743523}, {"id": 18, "s_m": 1.7977720859030406, "d_m": 0.0, "x_m": -3.255132246666767, "y_m": -1.8103512767140781, "d_right": 1.2342422806224713, "d_left": 0.4492304678843964, "psi_rad": 1.4970104169606455, "kappa_radpm": 0.9479467395635502, "vx_mps": 3.4391819045658467, "ax_mps2": 0.7419873797597162}, {"id": 19, "s_m": 1.8976483128976538, "d_m": 0.0, "x_m": -3.2522930624817383, "y_m": -1.7105660046290667, "d_right": 1.1616497343744876, "d_left": 0.5049118210038601, "psi_rad": 1.5857820182609372, "kappa_radpm": 0.8332814263515826, "vx_mps": 3.4606626493533295, "ax_mps2": 1.974168737210293}, {"id": 20, "s_m": 1.9975245398922672, "d_m": 0.0, "x_m": -3.2577870235754998, "y_m": -1.6107518754190666, "d_right": 1.0765664148418213, "d_left": 0.5668593589279836, "psi_rad": 1.6641533841258642, "kappa_radpm": 0.7306269162246766, "vx_mps": 3.517176569704139, "ax_mps2": 2.9139346616697077}, {"id": 21, "s_m": 2.0974007668868806, "d_m": 0.0, "x_m": -3.270509059179456, "y_m": -1.5115881643931406, "d_right": 0.9856132197008075, "d_left": 0.6281534452088319, "psi_rad": 1.7303403775359645, "kappa_radpm": 0.593238833028947, "vx_mps": 3.5989716061548145, "ax_mps2": 4.265944121686427}, {"id": 22, "s_m": 2.197276993881494, "d_m": 0.0, "x_m": -3.2890448421502265, "y_m": -1.4135608286834034, "d_right": 0.897100671158623, "d_left": 0.6874199922932522, "psi_rad": 1.7827641376767958, "kappa_radpm": 0.4572336257058362, "vx_mps": 3.7154716293892416, "ax_mps2": 5.634646734739953}, {"id": 23, "s_m": 2.2971532208761074, "d_m": 0.0, "x_m": -3.312098578396881, "y_m": -1.3161823959107535, "d_right": 0.8134807480580056, "d_left": 0.7522292919985624, "psi_rad": 1.8213568809590797, "kappa_radpm": 0.3134186504063458, "vx_mps": 3.863969971599551, "ax_mps2": 7.051670061084772}, {"id": 24, "s_m": 2.397029447870721, "d_m": 0.0, "x_m": -3.3380831785402876, "y_m": -1.2199607670416028, "d_right": 0.7363316064942372, "d_left": 0.8217187755528284, "psi_rad": 1.8453125454464736, "kappa_radpm": 0.16627927245876514, "vx_mps": 4.042134626759366, "ax_mps2": 6.954007731616187}, {"id": 25, "s_m": 2.496905674865334, "d_m": 0.0, "x_m": -3.365755032444531, "y_m": -1.1238219529815023, "d_right": 0.6618733730110584, "d_left": 0.896163544849755, "psi_rad": 1.85419117957743, "kappa_radpm": 0.010253201355924743, "vx_mps": 4.210455135765903, "ax_mps2": -8.798059158303582}, {"id": 26, "s_m": 2.5967819018599476, "d_m": 0.0, "x_m": -3.393423770125603, "y_m": -1.0280564850494947, "d_right": 0.5896902502419528, "d_left": 0.9748491360959817, "psi_rad": 1.847260309752052, "kappa_radpm": -0.151246424775031, "vx_mps": 3.9963106164416122, "ax_mps2": -7.315665097245213}, {"id": 27, "s_m": 2.6966581288545606, "d_m": 0.0, "x_m": -3.4197003934145624, "y_m": -0.9316103705522696, "d_right": 0.5251596622627775, "d_left": 1.0581370253771287, "psi_rad": 1.823393991560067, "kappa_radpm": -0.32671909106070784, "vx_mps": 3.8090912941731756, "ax_mps2": -5.366155743670405}, {"id": 28, "s_m": 2.796534355849174, "d_m": 0.0, "x_m": -3.4427715064912277, "y_m": -0.8345487903442069, "d_right": 0.47030906781692317, "d_left": 1.1454827062335606, "psi_rad": 1.7820331745815858, "kappa_radpm": -0.4975555797505048, "vx_mps": 3.6656887086957246, "ax_mps2": -3.9437129059393357}, {"id": 29, "s_m": 2.8964105828437874, "d_m": 0.0, "x_m": -3.461050627164351, "y_m": -0.736334975412501, "d_right": 0.42712830305743915, "d_left": 1.236840841886546, "psi_rad": 1.725194136892247, "kappa_radpm": -0.6407512745725779, "vx_mps": 3.5566145951267987, "ax_mps2": -2.552227268719085}, {"id": 30, "s_m": 2.996286809838401, "d_m": 0.0, "x_m": -3.472999412877598, "y_m": -0.6372604242022, "d_right": 0.38535566337623084, "d_left": 1.3289210744494466, "psi_rad": 1.6540774163052563, "kappa_radpm": -0.7821204536589077, "vx_mps": 3.4842063254354074, "ax_mps2": -1.1118395006517459}, {"id": 31, "s_m": 3.096163036833014, "d_m": 0.0, "x_m": -3.4771908411628236, "y_m": -0.5375277208476728, "d_right": 0.35361623025062977, "d_left": 1.2920821831094933, "psi_rad": 1.5692634744725598, "kappa_radpm": -0.9174859862879304, "vx_mps": 3.452187864167702, "ax_mps2": -0.04603590437721935}, {"id": 32, "s_m": 3.1960392638276276, "d_m": 0.0, "x_m": -3.4722477177043616, "y_m": -0.43786064476395137, "d_right": 0.3394687457030724, "d_left": 1.2434570860375802, "psi_rad": 1.4713940686063307, "kappa_radpm": -1.0076916038150139, "vx_mps": 3.4508557293279876, "ax_mps2": -0.04603590437721935}, {"id": 33, "s_m": 3.295915490822241, "d_m": 0.0, "x_m": -3.4574885689760704, "y_m": -0.33923826367475823, "d_right": 0.3444467039788283, "d_left": 1.1837562541700677, "psi_rad": 1.3741779611734595, "kappa_radpm": -0.942777461734949, "vx_mps": 3.449523080045245, "ax_mps2": 0.7356931350049809}, {"id": 34, "s_m": 3.3957917178168544, "d_m": 0.0, "x_m": -3.433454386649921, "y_m": -0.24219943908364414, "d_right": 0.36824374693289513, "d_left": 1.1031393517942174, "psi_rad": 1.2828800216827136, "kappa_radpm": -0.8745554777503419, "vx_mps": 3.4707587050766158, "ax_mps2": 1.418391084236445}, {"id": 35, "s_m": 3.495667944811468, "d_m": 0.0, "x_m": -3.401134615365945, "y_m": -0.14779109641244956, "d_right": 0.40794388431247103, "d_left": 1.0300908986466792, "psi_rad": 1.2007262795070817, "kappa_radpm": -0.7734657651502763, "vx_mps": 3.5113377918761643, "ax_mps2": 2.415895434742167}, {"id": 36, "s_m": 3.595544171806081, "d_m": 0.0, "x_m": -3.361545898218572, "y_m": -0.05600565528033666, "d_right": 0.46008014161948396, "d_left": 0.9677861788024628, "psi_rad": 1.1278829912235688, "kappa_radpm": -0.6884876388501131, "vx_mps": 3.5793957772686853, "ax_mps2": 3.1295159960648613}, {"id": 37, "s_m": 3.6954203988006946, "d_m": 0.0, "x_m": -3.315795386295829, "y_m": 0.03271010597755029, "d_right": 0.5211706088994461, "d_left": 0.9174867544219736, "psi_rad": 1.0626073127122213, "kappa_radpm": -0.6193631984535904, "vx_mps": 3.6656790135446107, "ax_mps2": 3.625545221133547}, {"id": 38, "s_m": 3.7952966257953076, "d_m": 0.0, "x_m": -3.2646014720670564, "y_m": 0.11850219836968, "d_right": 0.5723268273977499, "d_left": 0.8728459311913548, "psi_rad": 1.0041018486294127, "kappa_radpm": -0.5512538898362638, "vx_mps": 3.763165447507155, "ax_mps2": 4.138719684468774}, {"id": 39, "s_m": 3.895172852789921, "d_m": 0.0, "x_m": -3.2087960809405365, "y_m": 0.2013006567614187, "d_right": 0.6209298049020441, "d_left": 0.8324305794525665, "psi_rad": 0.9525289360243234, "kappa_radpm": -0.4821758711955611, "vx_mps": 3.8714510972835345, "ax_mps2": 4.715142005102221}, {"id": 40, "s_m": 3.9950490797845344, "d_m": 0.0, "x_m": -3.1490283591795696, "y_m": 0.2813661005361936, "d_right": 0.6771022531463635, "d_left": 0.7966863451108464, "psi_rad": 0.9076717885227967, "kappa_radpm": -0.41532682838440904, "vx_mps": 3.9912397553999104, "ax_mps2": 5.3222630924374865}, {"id": 41, "s_m": 4.094925306779148, "d_m": 0.0, "x_m": -3.0860149555037486, "y_m": 0.3588584737315311, "d_right": 0.7394650432106672, "d_left": 0.7556489611523018, "psi_rad": 0.8696510836056444, "kappa_radpm": -0.346047357444131, "vx_mps": 4.122272419258025, "ax_mps2": 6.053879703944106}, {"id": 42, "s_m": 4.194801533773761, "d_m": 0.0, "x_m": -3.0203637155098786, "y_m": 0.4341232573559532, "d_right": 0.8069863926906559, "d_left": 0.7112659711323521, "psi_rad": 0.8385239129243628, "kappa_radpm": -0.2769289993281252, "vx_mps": 4.266427923403116, "ax_mps2": 6.830710668241811}, {"id": 43, "s_m": 4.294677760768375, "d_m": 0.0, "x_m": -2.9526421034058634, "y_m": 0.5075613401177327, "d_right": 0.8695536932259623, "d_left": 0.6693565938241386, "psi_rad": 0.8144027459316997, "kappa_radpm": -0.20596700511647242, "vx_mps": 4.423444183446369, "ax_mps2": 6.74416524882738}, {"id": 44, "s_m": 4.394553987762988, "d_m": 0.0, "x_m": -2.883448678162968, "y_m": 0.5795651899778893, "d_right": 0.9214178610354926, "d_left": 0.6341218155047059, "psi_rad": 0.7973807574814981, "kappa_radpm": -0.13469985589719174, "vx_mps": 4.573185104785028, "ax_mps2": 6.661452332507897}, {"id": 45, "s_m": 4.494430214757601, "d_m": 0.0, "x_m": -2.813258603533118, "y_m": 0.650668226543899, "d_right": 0.9797158056076948, "d_left": 0.5997906310978696, "psi_rad": 0.7875481872142375, "kappa_radpm": -0.06204478507704661, "vx_mps": 4.7164248592740625, "ax_mps2": 6.5821682530561025}, {"id": 46, "s_m": 4.594306441752215, "d_m": 0.0, "x_m": -2.742677502269844, "y_m": 0.7212870567235815, "d_right": 1.0438334232645452, "d_left": 0.5522694511377367, "psi_rad": 0.7849999914666268, "kappa_radpm": 0.011143256471157265, "vx_mps": 4.853809608369111, "ax_mps2": 6.505975913378434}, {"id": 47, "s_m": 4.694182668746828, "d_m": 0.0, "x_m": -2.6721281739193126, "y_m": 0.792032634792521, "d_right": 1.0949524834825826, "d_left": 0.5196747922021712, "psi_rad": 0.7898071481473632, "kappa_radpm": 0.08518376960577534, "vx_mps": 4.985885314423953, "ax_mps2": 6.432590339147905}, {"id": 48, "s_m": 4.794058895741442, "d_m": 0.0, "x_m": -2.602229254041937, "y_m": 0.8633293889539049, "d_right": 1.1306147485021045, "d_left": 0.4718367629127277, "psi_rad": 0.802029242132372, "kappa_radpm": 0.1597910963606651, "vx_mps": 5.113118233948891, "ax_mps2": 6.361768031366378}, {"id": 49, "s_m": 4.893935122736055, "d_m": 0.0, "x_m": -2.5334243592632206, "y_m": 0.9357901909893914, "d_right": 1.1712820686981833, "d_left": 0.4192532898976735, "psi_rad": 0.8217791941540749, "kappa_radpm": 0.2357117783374143, "vx_mps": 5.235910317252987, "ax_mps2": 0.044116861264193355}, {"id": 50, "s_m": 4.993811349730668, "d_m": 0.0, "x_m": -2.4664000800540946, "y_m": 1.0097896705105078, "d_right": 1.214071573708777, "d_left": 0.38358869669325135, "psi_rad": 0.8490870519453574, "kappa_radpm": 0.3074279666059114, "vx_mps": 5.2367517891930015, "ax_mps2": -2.288947476723093}, {"id": 51, "s_m": 5.093687576725282, "d_m": 0.0, "x_m": -2.4016090923837443, "y_m": 1.0858726638228584, "d_right": 1.2493979441737808, "d_left": 0.3530103532624502, "psi_rad": 0.8826229257652478, "kappa_radpm": 0.36398330557297875, "vx_mps": 5.192913096335063, "ax_mps2": -1.0455091482229002}, {"id": 52, "s_m": 5.193563803719895, "d_m": 0.0, "x_m": -2.3397156537591712, "y_m": 1.1641463032471389, "d_right": 1.2860730727958092, "d_left": 0.33671101782160134, "psi_rad": 0.9217121401900291, "kappa_radpm": 0.4132646726809473, "vx_mps": 5.17276554737043, "ax_mps2": -0.4259924873902365}, {"id": 53, "s_m": 5.293440030714509, "d_m": 0.0, "x_m": -2.281036386164604, "y_m": 1.2449603715931292, "d_right": 1.282088354602353, "d_left": 0.34164575821445103, "psi_rad": 0.964228672043339, "kappa_radpm": 0.43779765060500775, "vx_mps": 5.164533896037989, "ax_mps2": -0.1030315184989987}, {"id": 54, "s_m": 5.393316257709121, "d_m": 0.0, "x_m": -2.2259752591701707, "y_m": 1.3282094016318249, "d_right": 1.227264001267666, "d_left": 0.3477055423015292, "psi_rad": 1.0089216594231438, "kappa_radpm": 0.45025051548088607, "vx_mps": 5.162540998836418, "ax_mps2": -0.10303151849898}, {"id": 55, "s_m": 5.493192484703735, "d_m": 0.0, "x_m": -2.17467692691078, "y_m": 1.4138642128943257, "d_right": 1.1763743142435885, "d_left": 0.37677147628696767, "psi_rad": 1.0532470948309416, "kappa_radpm": 0.4376912136629081, "vx_mps": 5.160547332019009, "ax_mps2": 0.24078444967565465}, {"id": 56, "s_m": 5.593068711698348, "d_m": 0.0, "x_m": -2.1271459895871083, "y_m": 1.5017234290607788, "d_right": 1.1291845933954296, "d_left": 0.4242062144763502, "psi_rad": 1.0962610113066902, "kappa_radpm": 0.4186613552818417, "vx_mps": 5.165205325126356, "ax_mps2": 0.7272509317400271}, {"id": 57, "s_m": 5.692944938692961, "d_m": 0.0, "x_m": -2.0833368056292865, "y_m": 1.591451399754622, "d_right": 1.0850150620018855, "d_left": 0.4400990018750837, "psi_rad": 1.136371858484212, "kappa_radpm": 0.3849161442118752, "vx_mps": 5.179248614325701, "ax_mps2": 1.5710726760840708}, {"id": 58, "s_m": 5.792821165687575, "d_m": 0.0, "x_m": -2.0429914336298376, "y_m": 1.6828394707491963, "d_right": 1.0444221300600431, "d_left": 0.4590902861391073, "psi_rad": 1.1732096861997592, "kappa_radpm": 0.35316500174368576, "vx_mps": 5.209456961280888, "ax_mps2": 2.310739463089542}, {"id": 59, "s_m": 5.892697392682188, "d_m": 0.0, "x_m": -2.0059107613172253, "y_m": 1.7755555548542186, "d_right": 1.0071735411111564, "d_left": 0.49464390386820545, "psi_rad": 1.2069789524201782, "kappa_radpm": 0.3232254453201754, "vx_mps": 5.253571900118984, "ax_mps2": 2.972274929543864}, {"id": 60, "s_m": 5.992573619676802, "d_m": 0.0, "x_m": -1.9718318403092314, "y_m": 1.8694490277053901, "d_right": 0.979743283455765, "d_left": 0.5282028379894987, "psi_rad": 1.2377818817254282, "kappa_radpm": 0.293252113410423, "vx_mps": 5.309777483174491, "ax_mps2": 3.623134788407199}, {"id": 61, "s_m": 6.092449846671415, "d_m": 0.0, "x_m": -1.9405248869074365, "y_m": 1.964275791206406, "d_right": 0.9648599948306193, "d_left": 0.5407094382487275, "psi_rad": 1.2655386720937178, "kappa_radpm": 0.262710012825565, "vx_mps": 5.377496349226553, "ax_mps2": 4.291301783149493}, {"id": 62, "s_m": 6.192326073666028, "d_m": 0.0, "x_m": -1.9117086317244718, "y_m": 2.059919072247565, "d_right": 0.9543199752426783, "d_left": 0.5500516168576594, "psi_rad": 1.2902760363248567, "kappa_radpm": 0.23265205900202562, "vx_mps": 5.456616630104901, "ax_mps2": 4.95775899197643}, {"id": 63, "s_m": 6.292202300660642, "d_m": 0.0, "x_m": -1.8851292466922196, "y_m": 2.1561823369455855, "d_right": 0.936453879679393, "d_left": 0.5669356729930278, "psi_rad": 1.3120232446686773, "kappa_radpm": 0.2029138366306926, "vx_mps": 5.546619652804022, "ax_mps2": 5.638425624249903}, {"id": 64, "s_m": 6.392078527655255, "d_m": 0.0, "x_m": -1.8605008410234873, "y_m": 2.2529860106064996, "d_right": 0.9194752082628256, "d_left": 0.5896879410492557, "psi_rad": 1.3308156026814677, "kappa_radpm": 0.17328869017164558, "vx_mps": 5.647236397385138, "ax_mps2": 6.063093553321724}, {"id": 65, "s_m": 6.491954754649869, "d_m": 0.0, "x_m": -1.837555811120331, "y_m": 2.3501830212277643, "d_right": 0.9148980781395277, "d_left": 0.5796610671876236, "psi_rad": 1.3466359995303787, "kappa_radpm": 0.1435604099762911, "vx_mps": 5.753468236115825, "ax_mps2": 6.003426608581287}, {"id": 66, "s_m": 6.591830981644482, "d_m": 0.0, "x_m": -1.8160031134515664, "y_m": 2.447716051821429, "d_right": 0.9177473399310047, "d_left": 0.5848461291449956, "psi_rad": 1.359496602160989, "kappa_radpm": 0.11391334502051909, "vx_mps": 5.856756435212419, "ax_mps2": 5.945329349534127}, {"id": 67, "s_m": 6.691707208639095, "d_m": 0.0, "x_m": -1.795564504853948, "y_m": 2.545473498768215, "d_right": 0.8972410807414988, "d_left": 0.605396285681949, "psi_rad": 1.3693904290618568, "kappa_radpm": 0.08423519079697693, "vx_mps": 5.957280425558771, "ax_mps2": 5.888707691699361}, {"id": 68, "s_m": 6.791583435633709, "d_m": 0.0, "x_m": -1.7759464825499893, "y_m": 2.6434126419250163, "d_right": 0.8775635713937816, "d_left": 0.624957664963446, "psi_rad": 1.37632480957923, "kappa_radpm": 0.05458066508726232, "vx_mps": 6.055202216358086, "ax_mps2": 5.8334766406068}, {"id": 69, "s_m": 6.891459662628322, "d_m": 0.0, "x_m": -1.7568647925204288, "y_m": 2.741446269242333, "d_right": 0.8677383113769829, "d_left": 0.6438380241126346, "psi_rad": 1.380292195127862, "kappa_radpm": 0.024877940395147007, "vx_mps": 6.150668675456183, "ax_mps2": 5.779559104496371}, {"id": 70, "s_m": 6.991335889622936, "d_m": 0.0, "x_m": -1.7380249140259016, "y_m": 2.8395367367474726, "d_right": 0.8695992367145183, "d_left": 0.6624981874009727, "psi_rad": 1.3812954542627947, "kappa_radpm": -0.004794735450299367, "vx_mps": 6.2438134396646445, "ax_mps2": -8.1235757164556}, {"id": 71, "s_m": 7.091212116617549, "d_m": 0.0, "x_m": -1.7191395764340787, "y_m": 2.937610375745144, "d_right": 0.8714605225172525, "d_left": 0.6812177173117687, "psi_rad": 1.3793346537284794, "kappa_radpm": -0.03446684527633045, "vx_mps": 6.112487389337302, "ax_mps2": -9.868191351267754}, {"id": 72, "s_m": 7.191088343612162, "d_m": 0.0, "x_m": -1.6999154997637669, "y_m": 3.0356247586426606, "d_right": 0.8521630254752062, "d_left": 0.7002859279544282, "psi_rad": 1.3744111822175717, "kappa_radpm": -0.06410120845783668, "vx_mps": 5.949059307651635, "ax_mps2": -8.981490948539099}, {"id": 73, "s_m": 7.290964570606776, "d_m": 0.0, "x_m": -1.6800652208036024, "y_m": 3.133509542525101, "d_right": 0.8322342117142233, "d_left": 0.7199859262821221, "psi_rad": 1.3665305980924298, "kappa_radpm": -0.09370981377034425, "vx_mps": 5.796311912630637, "ax_mps2": -8.183416290461247}, {"id": 74, "s_m": 7.390840797601389, "d_m": 0.0, "x_m": -1.659299023048968, "y_m": 3.231207171562682, "d_right": 0.8113822005924666, "d_left": 0.7406052185132107, "psi_rad": 1.355692180247407, "kappa_radpm": -0.12327372764995216, "vx_mps": 5.653545286142916, "ax_mps2": -7.46150994359961}, {"id": 75, "s_m": 7.490717024596002, "d_m": 0.0, "x_m": -1.6373317509858376, "y_m": 3.3286406261922923, "d_right": 0.7893190565281759, "d_left": 0.7624271110884336, "psi_rad": 1.3419058611689303, "kappa_radpm": -0.15280493354007096, "vx_mps": 5.520155738814781, "ax_mps2": -6.805830863512949}, {"id": 76, "s_m": 7.590593251590615, "d_m": 0.0, "x_m": -1.6138802310195923, "y_m": 3.425726552416608, "d_right": 0.7657591964921093, "d_left": 0.7857342908076281, "psi_rad": 1.3251676150723444, "kappa_radpm": -0.18228213243531952, "vx_mps": 5.395612844186231, "ax_mps2": -6.206573346024413}, {"id": 77, "s_m": 7.690469478585229, "d_m": 0.0, "x_m": -1.5886643681239763, "y_m": 3.522372060438154, "d_right": 0.7404207659654802, "d_left": 0.8108078500946124, "psi_rad": 1.3054928879674892, "kappa_radpm": -0.2117177258748058, "vx_mps": 5.279475325031354, "ax_mps2": -5.653906184728229}, {"id": 78, "s_m": 7.790345705579842, "d_m": 0.0, "x_m": -1.5614118376652864, "y_m": 3.6184579398093133, "d_right": 0.7205351617864804, "d_left": 0.8277673032886397, "psi_rad": 1.2828719705169653, "kappa_radpm": -0.24116083981590666, "vx_mps": 5.171409679438537, "ax_mps2": -5.138448580870909}, {"id": 79, "s_m": 7.890221932574455, "d_m": 0.0, "x_m": -1.5318507802469885, "y_m": 3.7138659963720575, "d_right": 0.7019592971486652, "d_left": 0.8325343307882744, "psi_rad": 1.2573132635532303, "kappa_radpm": -0.27067515411872806, "vx_mps": 5.071199104636316, "ax_mps2": -4.650027111003248}, {"id": 80, "s_m": 7.990098159569069, "d_m": 0.0, "x_m": -1.4997244231420686, "y_m": 3.8084305912948424, "d_right": 0.6946345333491463, "d_left": 0.8517279605967805, "psi_rad": 1.228793164721584, "kappa_radpm": -0.30037671708460495, "vx_mps": 4.97877555552817, "ax_mps2": -4.178359340507965}, {"id": 81, "s_m": 8.089974386563682, "d_m": 0.0, "x_m": -1.4647716793592123, "y_m": 3.9019987873693824, "d_right": 0.6790784918800811, "d_left": 0.8846743904607317, "psi_rad": 1.1972954905458673, "kappa_radpm": -0.3303992535212347, "vx_mps": 4.8942382962427935, "ax_mps2": -3.7148308038828857}, {"id": 82, "s_m": 8.189850613558296, "d_m": 0.0, "x_m": -1.4267551901542699, "y_m": 3.9943508326702695, "d_right": 0.6672254611749593, "d_left": 0.9061541272574831, "psi_rad": 1.162777239090669, "kappa_radpm": -0.36080792483795776, "vx_mps": 4.817833738432573, "ax_mps2": -3.24389717365999}, {"id": 83, "s_m": 8.289726840552909, "d_m": 0.0, "x_m": -1.385429553500364, "y_m": 4.08528517114124, "d_right": 0.6375829652120183, "d_left": 0.9287174621039767, "psi_rad": 1.1251908279082654, "kappa_radpm": -0.3919299703135811, "vx_mps": 4.750110052435826, "ax_mps2": -2.759229450672072}, {"id": 84, "s_m": 8.389603067547522, "d_m": 0.0, "x_m": -1.3405834323888115, "y_m": 4.174517615492271, "d_right": 0.5922349213127963, "d_left": 0.9615592498044054, "psi_rad": 1.0844601712890445, "kappa_radpm": -0.42366457493976367, "vx_mps": 4.691735569739709, "ax_mps2": -2.2432100708435816}, {"id": 85, "s_m": 8.489479294542136, "d_m": 0.0, "x_m": -1.2919949309214835, "y_m": 4.261784610445863, "d_right": 0.5432144072736484, "d_left": 0.9943040614183841, "psi_rad": 1.0405216517409634, "kappa_radpm": -0.4563169565294786, "vx_mps": 4.643737281532671, "ax_mps2": -1.6615725019839147}, {"id": 86, "s_m": 8.58935552153675, "d_m": 0.0, "x_m": -1.2394912129426692, "y_m": 4.3467283920642, "d_right": 0.4905114227711674, "d_left": 1.0262838768834874, "psi_rad": 0.9932547385830752, "kappa_radpm": -0.49078351647822394, "vx_mps": 4.607862059040411, "ax_mps2": -0.9810842189611593}, {"id": 87, "s_m": 8.689231748531363, "d_m": 0.0, "x_m": -1.182879230066467, "y_m": 4.429007490531975, "d_right": 0.44158826114523486, "d_left": 1.0710291399337397, "psi_rad": 0.9424046794441401, "kappa_radpm": -0.5276677165822731, "vx_mps": 4.586547587765392, "ax_mps2": -0.46015637178985136}, {"id": 88, "s_m": 8.789107975525976, "d_m": 0.0, "x_m": -1.1220035063753513, "y_m": 4.508204184531867, "d_right": 0.39149104175230787, "d_left": 1.1186871268674277, "psi_rad": 0.8880503845317127, "kappa_radpm": -0.5548383006265157, "vx_mps": 4.57651629630582, "ax_mps2": -0.08090546580222907}, {"id": 89, "s_m": 8.88898420252059, "d_m": 0.0, "x_m": -1.0568386235910785, "y_m": 4.5839043846771705, "d_right": 0.3507880721395524, "d_left": 1.1644664750891824, "psi_rad": 0.8317394016479137, "kappa_radpm": -0.5733851706428711, "vx_mps": 4.574750304116892, "ax_mps2": -0.0809054658022113}, {"id": 90, "s_m": 8.988860429515203, "d_m": 0.0, "x_m": -0.9875414802396586, "y_m": 4.655672204776222, "d_right": 0.330151264513034, "d_left": 1.2213341570484804, "psi_rad": 0.7742941781663684, "kappa_radpm": -0.5601141589562755, "vx_mps": 4.572983629938168, "ax_mps2": 0.20594930099298642}, {"id": 91, "s_m": 9.088736656509816, "d_m": 0.0, "x_m": -0.9143186583216082, "y_m": 4.723508324426111, "d_right": 0.33347672928941324, "d_left": 1.2876255738545623, "psi_rad": 0.7210880166222848, "kappa_radpm": -0.5046449556909897, "vx_mps": 4.577479454672973, "ax_mps2": 1.3450116607482847}, {"id": 92, "s_m": 9.18861288350443, "d_m": 0.0, "x_m": -0.8378453265321673, "y_m": 4.787523440124825, "d_right": 0.360455737007535, "d_left": 1.3613340758788153, "psi_rad": 0.6739492961397794, "kappa_radpm": -0.43688662410744106, "vx_mps": 4.6067328485415535, "ax_mps2": 2.6463568509771425}, {"id": 93, "s_m": 9.288489110499043, "d_m": 0.0, "x_m": -0.7585256379457154, "y_m": 4.848243602713599, "d_right": 0.3845468369611075, "d_left": 1.3039218175474638, "psi_rad": 0.6339792462228735, "kappa_radpm": -0.3637201591876172, "vx_mps": 4.663754261637899, "ax_mps2": 4.004782719792849}, {"id": 94, "s_m": 9.388365337493656, "d_m": 0.0, "x_m": -0.6770648652579442, "y_m": 4.90604254294014, "d_right": 0.42797637383792314, "d_left": 1.2337479052485634, "psi_rad": 0.6016925192059284, "kappa_radpm": -0.27568219316943954, "vx_mps": 4.748743938023815, "ax_mps2": 5.696032953316782}, {"id": 95, "s_m": 9.48824156448827, "d_m": 0.0, "x_m": -0.5940167834656073, "y_m": 4.961595577323046, "d_right": 0.4846169569648272, "d_left": 1.170036995073791, "psi_rad": 0.5790696734692571, "kappa_radpm": -0.1776824905452191, "vx_mps": 4.867069503237699, "ax_mps2": -1.7197631554360138}, {"id": 96, "s_m": 9.588117791482883, "d_m": 0.0, "x_m": -0.5100246859789024, "y_m": 5.015644057919728, "d_right": 0.5384576113919743, "d_left": 1.1131744476657324, "psi_rad": 0.566084779678399, "kappa_radpm": -0.08283412647881154, "vx_mps": 4.831649680882076, "ax_mps2": -10.129200384038416}, {"id": 97, "s_m": 9.687994018477497, "d_m": 0.0, "x_m": -0.42557934470871334, "y_m": 5.069000328508896, "d_right": 0.5907755929529221, "d_left": 1.0598904382600414, "psi_rad": 0.5624795266759426, "kappa_radpm": 0.010444700174079957, "vx_mps": 4.617521630172139, "ax_mps2": -10.06441978991892}, {"id": 98, "s_m": 9.78787024547211, "d_m": 0.0, "x_m": -0.34120707127138267, "y_m": 5.122433387583164, "d_right": 0.6437104835924928, "d_left": 1.0067787190597193, "psi_rad": 0.5681741295199458, "kappa_radpm": 0.10409724699747215, "vx_mps": 4.39444119929867, "ax_mps2": -8.582251279087227}, {"id": 99, "s_m": 9.887746472466723, "d_m": 0.0, "x_m": -0.2573668617527827, "y_m": 5.17675867635096, "d_right": 0.6979629741176914, "d_left": 0.9530912590028799, "psi_rad": 0.583273497730897, "kappa_radpm": 0.19809155059361835, "vx_mps": 4.194852524266339, "ax_mps2": -7.31423306825133}, {"id": 100, "s_m": 9.987622699461337, "d_m": 0.0, "x_m": -0.17462096877640929, "y_m": 5.232731816216796, "d_right": 0.7542471779886037, "d_left": 0.8969028818191271, "psi_rad": 0.6078153378370729, "kappa_radpm": 0.2942624019227992, "vx_mps": 4.016933120666975, "ax_mps2": -6.21205666015153}, {"id": 101, "s_m": 10.08749892645595, "d_m": 0.0, "x_m": -0.09357210578958262, "y_m": 5.29110203145742, "d_right": 0.813329275920363, "d_left": 0.8379379266580147, "psi_rad": 0.6421099655222338, "kappa_radpm": 0.3924519822650612, "vx_mps": 3.85938831082413, "ax_mps2": -5.206096520168865}, {"id": 102, "s_m": 10.187375153450564, "d_m": 0.0, "x_m": -0.014872880684953065, "y_m": 5.352606105237094, "d_right": 0.8745972876700142, "d_left": 0.7762109787353131, "psi_rad": 0.6863127548128917, "kappa_radpm": 0.49422521109075046, "vx_mps": 3.7222234723505556, "ax_mps2": -4.240269723299184}, {"id": 103, "s_m": 10.287251380445177, "d_m": 0.0, "x_m": 0.06068199649473038, "y_m": 5.4179105069442075, "d_right": 0.9458811504582092, "d_left": 0.7147150852446216, "psi_rad": 0.7409659896708811, "kappa_radpm": 0.6004036636707929, "vx_mps": 3.606652644116452, "ax_mps2": -3.3108537383557852}, {"id": 104, "s_m": 10.38712760743979, "d_m": 0.0, "x_m": 0.13223117311818458, "y_m": 5.487671279295291, "d_right": 1.0256143555480222, "d_left": 0.6573920286677628, "psi_rad": 0.8062982995074912, "kappa_radpm": 0.7076346271744197, "vx_mps": 3.513771782042229, "ax_mps2": -2.2348132696672955}, {"id": 105, "s_m": 10.487003834434404, "d_m": 0.0, "x_m": 0.19862102657463063, "y_m": 5.562267536526473, "d_right": 1.1121546054891278, "d_left": 0.6044306504922557, "psi_rad": 0.8827272847591493, "kappa_radpm": 0.8244571611877411, "vx_mps": 3.4496641432830084, "ax_mps2": -1.4435161834188348}, {"id": 106, "s_m": 10.586880061429017, "d_m": 0.0, "x_m": 0.2586695378355558, "y_m": 5.642079252038783, "d_right": 1.2041413919377775, "d_left": 0.5435981344186215, "psi_rad": 0.970262734679948, "kappa_radpm": 0.9129798685710286, "vx_mps": 3.407614532402604, "ax_mps2": -0.8101147389599527}, {"id": 107, "s_m": 10.686756288423629, "d_m": 0.0, "x_m": 0.3111698577129284, "y_m": 5.726974830841489, "d_right": 1.29824979794773, "d_left": 0.4874855652624937, "psi_rad": 1.0647724645618044, "kappa_radpm": 0.9811471598236494, "vx_mps": 3.3837869900928053, "ax_mps2": -0.6441046100919002}, {"id": 108, "s_m": 10.786632515418242, "d_m": 0.0, "x_m": 0.3552259518864687, "y_m": 5.816802220283102, "d_right": 1.3136358709564258, "d_left": 0.43769873547877447, "psi_rad": 1.1652222834156851, "kappa_radpm": 1.0069169233369375, "vx_mps": 3.364721818788248, "ax_mps2": -0.5100884229561709}, {"id": 109, "s_m": 10.886508742412856, "d_m": 0.0, "x_m": 0.38994692324408936, "y_m": 5.910436629912014, "d_right": 1.2959706997942262, "d_left": 0.39714809764032893, "psi_rad": 1.2665279325098617, "kappa_radpm": 1.027971274405461, "vx_mps": 3.349546462372586, "ax_mps2": -0.20284004042781417}, {"id": 110, "s_m": 10.98638496940747, "d_m": 0.0, "x_m": 0.4148809410645019, "y_m": 6.007219507532429, "d_right": 1.289447951877963, "d_left": 0.3690022268389343, "psi_rad": 1.3712968622557, "kappa_radpm": 1.0591676814048603, "vx_mps": 3.343492740795167, "ax_mps2": -0.18152341997291674}, {"id": 111, "s_m": 11.086261196402083, "d_m": 0.0, "x_m": 0.42943324498418767, "y_m": 6.105804266972869, "d_right": 1.2858365556816176, "d_left": 0.3563154767316833, "psi_rad": 1.4772768882843204, "kappa_radpm": 1.0645148311934183, "vx_mps": 3.3380659009602955, "ax_mps2": -0.04304251594916176}, {"id": 112, "s_m": 11.186137423396696, "d_m": 0.0, "x_m": 0.4334592578321616, "y_m": 6.20503476077574, "d_right": 1.3003405813540871, "d_left": 0.34490495322266285, "psi_rad": 1.5834933076244517, "kappa_radpm": 1.0777714381227854, "vx_mps": 3.33677780365537, "ax_mps2": -0.043042515949170655}, {"id": 113, "s_m": 11.28601365039131, "d_m": 0.0, "x_m": 0.4268257807029127, "y_m": 6.304647553289433, "d_right": 1.3324676942946494, "d_left": 0.3427784395221489, "psi_rad": 1.6908792885994532, "kappa_radpm": 1.0652785730428698, "vx_mps": 3.3354892089138044, "ax_mps2": 0.10524646091493954}, {"id": 114, "s_m": 11.385889877385923, "d_m": 0.0, "x_m": 0.4097794124625608, "y_m": 6.402575179817199, "d_right": 1.3274310095432107, "d_left": 0.3586832666808176, "psi_rad": 1.794655241410322, "kappa_radpm": 1.0227017996870462, "vx_mps": 3.3386391691259294, "ax_mps2": 0.5573520766262986}, {"id": 115, "s_m": 11.485766104380536, "d_m": 0.0, "x_m": 0.3825999316761222, "y_m": 6.499015472140288, "d_right": 1.2433005193605153, "d_left": 0.3908583947881122, "psi_rad": 1.8960509814412683, "kappa_radpm": 1.0052193501781608, "vx_mps": 3.3552710690291434, "ax_mps2": 0.6398764804702721}, {"id": 116, "s_m": 11.58564233137515, "d_m": 0.0, "x_m": 0.3460039535078711, "y_m": 6.5919276644985505, "d_right": 1.1640041479761027, "d_left": 0.4311501981592649, "psi_rad": 1.995486324905711, "kappa_radpm": 0.9801980657795811, "vx_mps": 3.374264489320287, "ax_mps2": 0.7957822013804513}, {"id": 117, "s_m": 11.685518558369763, "d_m": 0.0, "x_m": 0.3004074196509804, "y_m": 6.6809365986374285, "d_right": 1.0887147472010255, "d_left": 0.4650505278502543, "psi_rad": 2.0927357044116475, "kappa_radpm": 0.9681779576385199, "vx_mps": 3.3977375253916526, "ax_mps2": 0.7781235320332082}, {"id": 118, "s_m": 11.785394785364376, "d_m": 0.0, "x_m": 0.2464910267344289, "y_m": 6.765093561232163, "d_right": 1.0161584883591481, "d_left": 0.508305674920166, "psi_rad": 2.187081344252655, "kappa_radpm": 0.89696123313349, "vx_mps": 3.420533931491543, "ax_mps2": 1.460276145725798}, {"id": 119, "s_m": 11.88527101235899, "d_m": 0.0, "x_m": 0.18529135602004917, "y_m": 6.844029721391778, "d_right": 0.9439941147102452, "d_left": 0.5581004758921565, "psi_rad": 2.271987313202349, "kappa_radpm": 0.8053670327191677, "vx_mps": 3.462910065262401, "ax_mps2": 2.295884923942178}, {"id": 120, "s_m": 11.985147239353603, "d_m": 0.0, "x_m": 0.1178949572413778, "y_m": 6.917862946135783, "d_right": 0.8836357364625005, "d_left": 0.6010315379011786, "psi_rad": 2.3473162006493618, "kappa_radpm": 0.6893255043599615, "vx_mps": 3.5285060248963678, "ax_mps2": 3.3695219296995824}, {"id": 121, "s_m": 12.085023466348217, "d_m": 0.0, "x_m": 0.045680900111430105, "y_m": 6.986787216765255, "d_right": 0.8360108252531505, "d_left": 0.6392821013210976, "psi_rad": 2.4094628040908805, "kappa_radpm": 0.5560153095265135, "vx_mps": 3.622626815165754, "ax_mps2": 4.652441795490314}, {"id": 122, "s_m": 12.18489969334283, "d_m": 0.0, "x_m": -0.030327903800045956, "y_m": 7.051663066744332, "d_right": 0.7897480853440114, "d_left": 0.6837488364457396, "psi_rad": 2.458426853143891, "kappa_radpm": 0.4229312647074269, "vx_mps": 3.7487013361495216, "ax_mps2": 6.002322090374541}, {"id": 123, "s_m": 12.284775920337443, "d_m": 0.0, "x_m": -0.10892053631495592, "y_m": 7.113205764649851, "d_right": 0.7403982694354373, "d_left": 0.735649395647527, "psi_rad": 2.4938254896226, "kappa_radpm": 0.2858197629990414, "vx_mps": 3.9053476509569887, "ax_mps2": 7.029010447435629}, {"id": 124, "s_m": 12.384652147332057, "d_m": 0.0, "x_m": -0.1892910711548148, "y_m": 7.172523736236434, "d_right": 0.7045428356984547, "d_left": 0.7945875434109354, "psi_rad": 2.515386856799063, "kappa_radpm": 0.14492837413875326, "vx_mps": 4.081152087441296, "ax_mps2": 6.932587251037864}, {"id": 125, "s_m": 12.48452837432667, "d_m": 0.0, "x_m": -0.27046371270213276, "y_m": 7.23064110777845, "d_right": 0.6829971449435068, "d_left": 0.8520284520499609, "psi_rad": 2.5226623970749174, "kappa_radpm": 0.00039635876458887125, "vx_mps": 4.247423180790406, "ax_mps2": -7.798945247642137}, {"id": 126, "s_m": 12.584404601321284, "d_m": 0.0, "x_m": -0.3516631875126535, "y_m": 7.288772766884925, "d_right": 0.6533657528785046, "d_left": 0.9099579036810309, "psi_rad": 2.515485650205043, "kappa_radpm": -0.1432588027785284, "vx_mps": 4.059894730774624, "ax_mps2": -7.785510053996288}, {"id": 127, "s_m": 12.684280828315897, "d_m": 0.0, "x_m": -0.43200693503648613, "y_m": 7.348048906290865, "d_right": 0.6181190992566353, "d_left": 0.966647000976328, "psi_rad": 2.4940497301151905, "kappa_radpm": -0.2861950940022543, "vx_mps": 3.8636214211705577, "ax_mps2": -6.110245293031223}, {"id": 128, "s_m": 12.78415705531051, "d_m": 0.0, "x_m": -0.5106293547751043, "y_m": 7.409603756010362, "d_right": 0.5803263172413523, "d_left": 1.0052480194965845, "psi_rad": 2.458202741690686, "kappa_radpm": -0.4335543204921621, "vx_mps": 3.7023011755351414, "ax_mps2": -4.569755714450187}, {"id": 129, "s_m": 12.884033282305124, "d_m": 0.0, "x_m": -0.5865124448679079, "y_m": 7.47450508540211, "d_right": 0.538249692155988, "d_left": 1.055629447968854, "psi_rad": 2.407363467660795, "kappa_radpm": -0.5846161815134635, "vx_mps": 3.5769000651788097, "ax_mps2": -3.170914130505833}, {"id": 130, "s_m": 12.983909509299737, "d_m": 0.0, "x_m": -0.6584948182619629, "y_m": 7.543731702403859, "d_right": 0.5067199996408337, "d_left": 1.1172738994064768, "psi_rad": 2.341649119396131, "kappa_radpm": -0.729893241401533, "vx_mps": 3.487236183185549, "ax_mps2": -1.649872404868061}, {"id": 131, "s_m": 13.08378573629435, "d_m": 0.0, "x_m": -0.7252227502721461, "y_m": 7.618002884140889, "d_right": 0.45880846733534547, "d_left": 1.1742977343939343, "psi_rad": 2.261365353912647, "kappa_radpm": -0.8786785091566717, "vx_mps": 3.439658432995494, "ax_mps2": -0.9752407423035395}, {"id": 132, "s_m": 13.183661963288964, "d_m": 0.0, "x_m": -0.7852891767754838, "y_m": 7.697890370059719, "d_right": 0.41252994639352153, "d_left": 1.2396535147994734, "psi_rad": 2.1685914171012626, "kappa_radpm": -0.951299586865905, "vx_mps": 3.4112231536754685, "ax_mps2": -0.4725415327188594}, {"id": 133, "s_m": 13.283538190283577, "d_m": 0.0, "x_m": -0.8374269614267806, "y_m": 7.783017233229784, "d_right": 0.377768602073822, "d_left": 1.3155997394921335, "psi_rad": 2.071225604906534, "kappa_radpm": -1.002601447113852, "vx_mps": 3.397359573757124, "ax_mps2": -0.22796650268527635}, {"id": 134, "s_m": 13.38341441727819, "d_m": 0.0, "x_m": -0.8808622934537209, "y_m": 7.87304863753808, "d_right": 0.3576615409890929, "d_left": 1.3365447356424416, "psi_rad": 1.9690384300081765, "kappa_radpm": -1.0278312073526246, "vx_mps": 3.390651147650029, "ax_mps2": -0.13132024937859466}, {"id": 135, "s_m": 13.483290644272804, "d_m": 0.0, "x_m": -0.9147593953447107, "y_m": 7.966834565831513, "d_right": 0.3547005269927562, "d_left": 1.290523116659837, "psi_rad": 1.8660181604901855, "kappa_radpm": -1.0385987217172723, "vx_mps": 3.3867807226020124, "ax_mps2": -0.05699504717326643}, {"id": 136, "s_m": 13.583166871267418, "d_m": 0.0, "x_m": -0.9387845834019003, "y_m": 8.063669589109804, "d_right": 0.3477432991252499, "d_left": 1.260565601550059, "psi_rad": 1.7618497565183966, "kappa_radpm": -1.0461130156309784, "vx_mps": 3.3850995203170196, "ax_mps2": -0.044264006279876915}, {"id": 137, "s_m": 13.683043098262031, "d_m": 0.0, "x_m": -0.9525887591780157, "y_m": 8.162484377390987, "d_right": 0.3544870199769176, "d_left": 1.2467943211291213, "psi_rad": 1.6573093866078354, "kappa_radpm": -1.0480297246850572, "vx_mps": 3.383793273616566, "ax_mps2": -0.04426400627986802}, {"id": 138, "s_m": 13.782919325256644, "d_m": 0.0, "x_m": -0.9560090131251168, "y_m": 8.26200878922919, "d_right": 0.35787350639073434, "d_left": 1.2433865688476082, "psi_rad": 1.5530903029668646, "kappa_radpm": -1.042442748357154, "vx_mps": 3.3824865224705505, "ax_mps2": 0.028958487800459717}, {"id": 139, "s_m": 13.882795552251258, "d_m": 0.0, "x_m": -0.9490508214730502, "y_m": 8.361723565005311, "d_right": 0.3509197408483574, "d_left": 1.2503489856702767, "psi_rad": 1.4493419311459064, "kappa_radpm": -1.0319069106330783, "vx_mps": 3.3833414849371732, "ax_mps2": 0.14350981571951754}, {"id": 140, "s_m": 13.982671779245871, "d_m": 0.0, "x_m": -0.9319478564260674, "y_m": 8.45986849716617, "d_right": 0.35479997661603746, "d_left": 1.2674942042934028, "psi_rad": 1.3476054409489906, "kappa_radpm": -1.0092329209252187, "vx_mps": 3.3875752451507837, "ax_mps2": 0.37401703444666334}, {"id": 141, "s_m": 14.082548006240485, "d_m": 0.0, "x_m": -0.9049230717403317, "y_m": 8.556205835134808, "d_right": 0.3729595812823882, "d_left": 1.2187028634804336, "psi_rad": 1.247130081674868, "kappa_radpm": -1.0014700455253271, "vx_mps": 3.398584538013272, "ax_mps2": 0.3879917317415184}, {"id": 142, "s_m": 14.182424233235098, "d_m": 0.0, "x_m": -0.868581520429746, "y_m": 8.649098113813457, "d_right": 0.3861259575190644, "d_left": 1.1493904595308675, "psi_rad": 1.149865913640361, "kappa_radpm": -0.9358555255700846, "vx_mps": 3.4099676189908, "ax_mps2": 1.0730335976977015}, {"id": 143, "s_m": 14.282300460229711, "d_m": 0.0, "x_m": -0.8236150468645222, "y_m": 8.738391476485058, "d_right": 0.41475467310222525, "d_left": 1.0923029936993403, "psi_rad": 1.0598643879286278, "kappa_radpm": -0.8666264977911752, "vx_mps": 3.441252716223961, "ax_mps2": 1.6914380884751843}, {"id": 144, "s_m": 14.382176687224325, "d_m": 0.0, "x_m": -0.7711655595024958, "y_m": 8.823351091161124, "d_right": 0.43743362764292953, "d_left": 1.0389893147975167, "psi_rad": 0.9767974727562132, "kappa_radpm": -0.7950143557966362, "vx_mps": 3.4899984478309665, "ax_mps2": 2.2695680693261937}, {"id": 145, "s_m": 14.482052914218938, "d_m": 0.0, "x_m": -0.7121025563855532, "y_m": 8.903922572626074, "d_right": 0.45251120435496, "d_left": 0.9872036526285947, "psi_rad": 0.90077935320362, "kappa_radpm": -0.7281333939911603, "vx_mps": 3.554355209768159, "ax_mps2": 2.752330986860701}, {"id": 146, "s_m": 14.581929141213552, "d_m": 0.0, "x_m": -0.6473399159503463, "y_m": 8.979987604189148, "d_right": 0.47807694356670954, "d_left": 0.9415959301573339, "psi_rad": 0.8313222483984466, "kappa_radpm": -0.6609010900618836, "vx_mps": 3.6308712213492327, "ax_mps2": 3.236227533456549}, {"id": 147, "s_m": 14.681805368208165, "d_m": 0.0, "x_m": -0.577733751655076, "y_m": 9.051575972557844, "d_right": 0.5160560272356299, "d_left": 0.9107480269700196, "psi_rad": 0.7686466038993309, "kappa_radpm": -0.5950425239095444, "vx_mps": 3.7188264570288188, "ax_mps2": 3.7172949353796763}, {"id": 148, "s_m": 14.781681595202778, "d_m": 0.0, "x_m": -0.5039568326415548, "y_m": 9.118937139487853, "d_right": 0.5545326476562868, "d_left": 0.8873829564355517, "psi_rad": 0.7123551370390953, "kappa_radpm": -0.5315777876880423, "vx_mps": 3.8173562845300846, "ax_mps2": 4.197403652034914}, {"id": 149, "s_m": 14.881557822197392, "d_m": 0.0, "x_m": -0.4267609864755749, "y_m": 9.182244996013079, "d_right": 0.5826508506140358, "d_left": 0.8749374708295741, "psi_rad": 0.6624452805269909, "kappa_radpm": -0.4683487088655005, "vx_mps": 3.925640162179749, "ax_mps2": 4.722866650080269}, {"id": 150, "s_m": 14.981434049192003, "d_m": 0.0, "x_m": -0.3466399032173347, "y_m": 9.241910366758336, "d_right": 0.6215354486783061, "d_left": 0.8532259721338012, "psi_rad": 0.6187922580972165, "kappa_radpm": -0.40536625385711356, "vx_mps": 4.044014699050443, "ax_mps2": 5.307395992667195}, {"id": 151, "s_m": 15.081310276186617, "d_m": 0.0, "x_m": -0.26421419490144665, "y_m": 9.298253306129991, "d_right": 0.6697268371528071, "d_left": 0.832462708676768, "psi_rad": 0.5814733742447603, "kappa_radpm": -0.34220569808019297, "vx_mps": 4.173034898004557, "ax_mps2": 5.9734341345119075}, {"id": 152, "s_m": 15.18118650318123, "d_m": 0.0, "x_m": -0.17986714813652846, "y_m": 9.351775110402212, "d_right": 0.7238165252761175, "d_left": 0.8165359083178058, "psi_rad": 0.5504487214936273, "kappa_radpm": -0.2787010824553545, "vx_mps": 4.313632852605292, "ax_mps2": 6.742156358720491}, {"id": 153, "s_m": 15.281062730175844, "d_m": 0.0, "x_m": -0.09410430415917609, "y_m": 9.402904587298277, "d_right": 0.775659687538898, "d_left": 0.8154416421807156, "psi_rad": 0.5258200089012659, "kappa_radpm": -0.2145659639046652, "vx_mps": 4.467011379536564, "ax_mps2": 6.720117766531659}, {"id": 154, "s_m": 15.380938957170457, "d_m": 0.0, "x_m": -0.007235237157383732, "y_m": 9.452201730057773, "d_right": 0.8242422320757576, "d_left": 0.8174763202166733, "psi_rad": 0.5075840225316854, "kappa_radpm": -0.1506252982623888, "vx_mps": 4.6148185966374085, "ax_mps2": 6.638424293681228}, {"id": 155, "s_m": 15.48081518416507, "d_m": 0.0, "x_m": 0.08034448981717063, "y_m": 9.500175364015872, "d_right": 0.8717256494173828, "d_left": 0.8060979797810027, "psi_rad": 0.49574474278728276, "kappa_radpm": -0.0864452516430656, "vx_mps": 4.756321290993175, "ax_mps2": 6.560057088659564}, {"id": 156, "s_m": 15.580691411159684, "d_m": 0.0, "x_m": 0.1683461704407927, "y_m": 9.547396422166786, "d_right": 0.9186783757164495, "d_left": 0.7892693936398669, "psi_rad": 0.49029411611519724, "kappa_radpm": -0.02289944767241158, "vx_mps": 4.892134475351649, "ax_mps2": 6.4846952559631745}, {"id": 157, "s_m": 15.680567638154297, "d_m": 0.0, "x_m": 0.25645600157118736, "y_m": 9.594416356458426, "d_right": 0.965602695758327, "d_left": 0.785114708839441, "psi_rad": 0.4911701276367184, "kappa_radpm": 0.04044383890367622, "vx_mps": 5.022779461182334, "ax_mps2": -6.137656954157268}, {"id": 158, "s_m": 15.78044386514891, "d_m": 0.0, "x_m": 0.3443695530244964, "y_m": 9.641787484237073, "d_right": 0.9845592861513177, "d_left": 0.7852816473214946, "psi_rad": 0.4983280356557147, "kappa_radpm": 0.10261410611380185, "vx_mps": 4.899214373482563, "ax_mps2": -8.419206378109271}, {"id": 159, "s_m": 15.880320092143524, "d_m": 0.0, "x_m": 0.4318069806177148, "y_m": 9.690064665784393, "d_right": 1.0015149538128374, "d_left": 0.774231967130243, "psi_rad": 0.5116590969592814, "kappa_radpm": 0.164291742143767, "vx_mps": 4.724462333712595, "ax_mps2": -7.403812311751877}, {"id": 160, "s_m": 15.980196319138138, "d_m": 0.0, "x_m": 0.518421901420822, "y_m": 9.739757473429279, "d_right": 1.0294847845472135, "d_left": 0.7396557911232811, "psi_rad": 0.5310835618665652, "kappa_radpm": 0.22439518062034952, "vx_mps": 4.565261730122488, "ax_mps2": -6.5284799919501575}, {"id": 161, "s_m": 16.08007254613275, "d_m": 0.0, "x_m": 0.6039247803606244, "y_m": 9.79139273333867, "d_right": 1.0596150580909496, "d_left": 0.697015978463935, "psi_rad": 0.5564731616063854, "kappa_radpm": 0.28391754223721294, "vx_mps": 4.420128365252458, "ax_mps2": -5.778445515141215}, {"id": 162, "s_m": 16.179948773127364, "d_m": 0.0, "x_m": 0.6879109166344515, "y_m": 9.845418188902258, "d_right": 1.0927133542438328, "d_left": 0.663992073613654, "psi_rad": 0.5877500868669563, "kappa_radpm": 0.34230140077702614, "vx_mps": 4.287572284337241, "ax_mps2": -5.105730945996454}, {"id": 163, "s_m": 16.279825000121978, "d_m": 0.0, "x_m": 0.7700184457116389, "y_m": 9.90229537875405, "d_right": 1.136708583457654, "d_left": 0.6265232502828694, "psi_rad": 0.6248671922429306, "kappa_radpm": 0.400923523908871, "vx_mps": 4.166940581235271, "ax_mps2": -4.508295364154195}, {"id": 164, "s_m": 16.37970122711659, "d_m": 0.0, "x_m": 0.8497871243197211, "y_m": 9.96241643577547, "d_right": 1.1908222987696702, "d_left": 0.5722914876857743, "psi_rad": 0.6678152671863183, "kappa_radpm": 0.4589331083743388, "vx_mps": 4.0574438684037615, "ax_mps2": -3.9295737623341203}, {"id": 165, "s_m": 16.479577454111205, "d_m": 0.0, "x_m": 0.9266981242259686, "y_m": 10.026116439848641, "d_right": 1.2490042879546484, "d_left": 0.5185293040385254, "psi_rad": 0.7166166876319352, "kappa_radpm": 0.5186300383358505, "vx_mps": 3.9595339047783593, "ax_mps2": -3.363831784734654}, {"id": 166, "s_m": 16.579453681105818, "d_m": 0.0, "x_m": 1.0002287923468234, "y_m": 10.093734122143227, "d_right": 1.3149456087237534, "d_left": 0.46759060359869403, "psi_rad": 0.771453521726369, "kappa_radpm": 0.5793811301916348, "vx_mps": 3.8737546501142344, "ax_mps2": -2.770321504797068}, {"id": 167, "s_m": 16.67932990810043, "d_m": 0.0, "x_m": 1.0696863986924259, "y_m": 10.165454224584103, "d_right": 1.3701254275161643, "d_left": 0.4284511751528065, "psi_rad": 0.8324426771648143, "kappa_radpm": 0.6424831533023285, "vx_mps": 3.801657082162897, "ax_mps2": -1.9615525750362013}, {"id": 168, "s_m": 16.779206135095045, "d_m": 0.0, "x_m": 1.1344699129504232, "y_m": 10.241579602668716, "d_right": 1.333883754350715, "d_left": 0.40400595166565756, "psi_rad": 0.9002574827554414, "kappa_radpm": 0.7177987299447431, "vx_mps": 3.74976954356757, "ax_mps2": -0.8548687273768673}, {"id": 169, "s_m": 16.879082362089658, "d_m": 0.0, "x_m": 1.1935313139470851, "y_m": 10.322028002660947, "d_right": 1.2915796197602571, "d_left": 0.38896975439731285, "psi_rad": 0.9762449912003477, "kappa_radpm": 0.8062505446645933, "vx_mps": 3.726930305725446, "ax_mps2": -0.40099611741986596}, {"id": 170, "s_m": 16.97895858908427, "d_m": 0.0, "x_m": 1.2460620507285705, "y_m": 10.407094891474483, "d_right": 1.2634134027485486, "d_left": 0.3693385130011518, "psi_rad": 1.0594392865373754, "kappa_radpm": 0.8437702395164696, "vx_mps": 3.716168664799809, "ax_mps2": -0.05334560811708091}, {"id": 171, "s_m": 17.078834816078885, "d_m": 0.0, "x_m": 1.2911325446527906, "y_m": 10.496070899699507, "d_right": 1.2441012973929686, "d_left": 0.34535713396244977, "psi_rad": 1.14484099463977, "kappa_radpm": 0.8696122502369551, "vx_mps": 3.7147346646980135, "ax_mps2": -0.05334560811708091}, {"id": 172, "s_m": 17.1787110430735, "d_m": 0.0, "x_m": 1.3284326337719883, "y_m": 10.588703093882753, "d_right": 1.2268488337724202, "d_left": 0.34084246301386945, "psi_rad": 1.2301123772308442, "kappa_radpm": 0.8177791596327333, "vx_mps": 3.713300110814924, "ax_mps2": 0.670667735640579}, {"id": 173, "s_m": 17.278587270068112, "d_m": 0.0, "x_m": 1.3580332904403736, "y_m": 10.683988634732586, "d_right": 1.2017037398312382, "d_left": 0.3570135349025988, "psi_rad": 1.3077511751461026, "kappa_radpm": 0.7380381749698778, "vx_mps": 3.7312953835074127, "ax_mps2": 1.6707930499308938}, {"id": 174, "s_m": 17.378463497062725, "d_m": 0.0, "x_m": 1.3805360035791472, "y_m": 10.781242786101885, "d_right": 1.1915313963435135, "d_left": 0.39191589620465184, "psi_rad": 1.3780090318836322, "kappa_radpm": 0.6718936267361669, "vx_mps": 3.77575293826484, "ax_mps2": 2.3661634890795757}, {"id": 175, "s_m": 17.47833972405734, "d_m": 0.0, "x_m": 1.396472517617692, "y_m": 10.879820504419865, "d_right": 1.150884528166417, "d_left": 0.44152996079856116, "psi_rad": 1.4419921985589885, "kappa_radpm": 0.609706188218476, "vx_mps": 3.8378323588060654, "ax_mps2": 2.9627239536504146}, {"id": 176, "s_m": 17.578215951051952, "d_m": 0.0, "x_m": 1.4063766468404997, "y_m": 10.97913332210032, "d_right": 1.0650991686354196, "d_left": 0.49185645284351714, "psi_rad": 1.4997701198183022, "kappa_radpm": 0.5476591862729118, "vx_mps": 3.9141753402898627, "ax_mps2": 3.550212807775599}, {"id": 177, "s_m": 17.678092178046565, "d_m": 0.0, "x_m": 1.4108413716802153, "y_m": 11.078941338576186, "d_right": 0.9851620880045105, "d_left": 0.5460134625593263, "psi_rad": 1.551382488555523, "kappa_radpm": 0.4856352694545879, "vx_mps": 4.0037397911290915, "ax_mps2": 4.153330461751541}, {"id": 178, "s_m": 17.77796840504118, "d_m": 0.0, "x_m": 1.4104598208249217, "y_m": 11.178717602452604, "d_right": 0.9126431049890227, "d_left": 0.6082018661854043, "psi_rad": 1.5968771902510726, "kappa_radpm": 0.42647852767149697, "vx_mps": 4.106040704502758, "ax_mps2": 4.7445790146047}, {"id": 179, "s_m": 17.877844632035792, "d_m": 0.0, "x_m": 1.4058215219168542, "y_m": 11.278564996438389, "d_right": 0.8455878242186172, "d_left": 0.6766674938524094, "psi_rad": 1.6365850930809016, "kappa_radpm": 0.3681887451034751, "vx_mps": 4.219871036933069, "ax_mps2": 5.374708209782203}, {"id": 180, "s_m": 17.977720859030406, "d_m": 0.0, "x_m": 1.3975294805063836, "y_m": 11.377993364086212, "d_right": 0.7821855111375687, "d_left": 0.7497503109159076, "psi_rad": 1.670467520746136, "kappa_radpm": 0.31112273147696196, "vx_mps": 4.345218374572976, "ax_mps2": 6.052725258219187}, {"id": 181, "s_m": 18.07759708602502, "d_m": 0.0, "x_m": 1.3861287500566812, "y_m": 11.477315362764177, "d_right": 0.7194492343268744, "d_left": 0.8267324915041879, "psi_rad": 1.6987630996482421, "kappa_radpm": 0.2551473374561566, "vx_mps": 4.4821835578631175, "ax_mps2": 6.711739839508794}, {"id": 182, "s_m": 18.177473313019632, "d_m": 0.0, "x_m": 1.3722239826069544, "y_m": 11.576137715650841, "d_right": 0.6587738206581941, "d_left": 0.906625812806735, "psi_rad": 1.721496585437199, "kappa_radpm": 0.20060954191619518, "vx_mps": 4.629325647419678, "ax_mps2": 6.630397102221164}, {"id": 183, "s_m": 18.277349540014246, "d_m": 0.0, "x_m": 1.3563155406893865, "y_m": 11.674822987090243, "d_right": 0.6001506741210046, "d_left": 0.9892124256213973, "psi_rad": 1.738859671627056, "kappa_radpm": 0.1469465851120872, "vx_mps": 4.770229977888839, "ax_mps2": 6.552345805450267}, {"id": 184, "s_m": 18.37722576700886, "d_m": 0.0, "x_m": 1.3389810940008464, "y_m": 11.773139028806952, "d_right": 0.5433985765183643, "d_left": 1.0739073466440092, "psi_rad": 1.7508975405665286, "kappa_radpm": 0.09433458199975285, "vx_mps": 4.905501115683704, "ax_mps2": 6.477270487546941}, {"id": 185, "s_m": 18.477101994003473, "d_m": 0.0, "x_m": 1.3207036999313213, "y_m": 11.871379201056138, "d_right": 0.48977553195346757, "d_left": 1.1606471093502186, "psi_rad": 1.757717461189248, "kappa_radpm": 0.0422376066093142, "vx_mps": 5.035652080020378, "ax_mps2": 6.404903314747504}, {"id": 186, "s_m": 18.576978220998086, "d_m": 0.0, "x_m": 1.3020190653507409, "y_m": 11.969495565731396, "d_right": 0.4486367161812184, "d_left": 1.2052253106199333, "psi_rad": 1.7593890709027638, "kappa_radpm": -0.008676948251850182, "vx_mps": 5.161122651681328, "ax_mps2": 6.335014567888002}, {"id": 187, "s_m": 18.6768544479927, "d_m": 0.0, "x_m": 1.2834193128479887, "y_m": 12.06762887846073, "d_right": 0.4109795505295863, "d_left": 1.224870606826545, "psi_rad": 1.755984704976261, "kappa_radpm": -0.05951300567200034, "vx_mps": 5.282293226591197, "ax_mps2": 6.2674054424439465}, {"id": 188, "s_m": 18.776730674987313, "d_m": 0.0, "x_m": 1.2653915380259715, "y_m": 12.165925727544442, "d_right": 0.37384433799859546, "d_left": 1.2459922778768666, "psi_rad": 1.7475530194040727, "kappa_radpm": -0.10920733253982669, "vx_mps": 5.3994954717051895, "ax_mps2": 6.201902509233337}, {"id": 189, "s_m": 18.876606901981926, "d_m": 0.0, "x_m": 1.2484564362310384, "y_m": 12.264302791803074, "d_right": 0.3587403804264113, "d_left": 1.2751874985799838, "psi_rad": 1.7341523447494116, "kappa_radpm": -0.15941537611688927, "vx_mps": 5.513020641588978, "ax_mps2": 6.13835339020934}, {"id": 190, "s_m": 18.97648312897654, "d_m": 0.0, "x_m": 1.2330714189186969, "y_m": 12.363072530868015, "d_right": 0.3647637145246797, "d_left": 1.3128636528288498, "psi_rad": 1.7156197181679778, "kappa_radpm": -0.21157372125511495, "vx_mps": 5.62312615434987, "ax_mps2": 5.1878987319199865}, {"id": 191, "s_m": 19.076359355971153, "d_m": 0.0, "x_m": 1.2197998978793254, "y_m": 12.46197511337056, "d_right": 0.348861110438258, "d_left": 1.3188229331924421, "psi_rad": 1.6918768811214253, "kappa_radpm": -0.26435909493805515, "vx_mps": 5.714529136375295, "ax_mps2": 1.8764106106341452}, {"id": 192, "s_m": 19.176235582965766, "d_m": 0.0, "x_m": 1.20912661241782, "y_m": 12.561311968634474, "d_right": 0.3452796741197687, "d_left": 1.308145001794395, "psi_rad": 1.6629545960896899, "kappa_radpm": -0.31438751446862057, "vx_mps": 5.747230713539153, "ax_mps2": -0.12759248604016812}, {"id": 193, "s_m": 19.27611180996038, "d_m": 0.0, "x_m": 1.2015826228757094, "y_m": 12.660853930148209, "d_right": 0.35279919852384933, "d_left": 1.3005980152651777, "psi_rad": 1.629104107904259, "kappa_radpm": -0.36357935921356355, "vx_mps": 5.745012964515455, "ax_mps2": -0.12759248604016812}, {"id": 194, "s_m": 19.375988036954993, "d_m": 0.0, "x_m": 1.1975741298073086, "y_m": 12.760642879424749, "d_right": 0.3567838796059727, "d_left": 1.2965883158986062, "psi_rad": 1.5928880328305834, "kappa_radpm": -0.35948383365658904, "vx_mps": 5.742794359042778, "ax_mps2": 0.01684170848278566}, {"id": 195, "s_m": 19.475864263949607, "d_m": 0.0, "x_m": 1.197150937652559, "y_m": 12.860512310556405, "d_right": 0.3575512294916803, "d_left": 1.2961644204591203, "psi_rad": 1.5572733325290287, "kappa_radpm": -0.3538465334414114, "vx_mps": 5.74308725537514, "ax_mps2": 0.20155469924669578}, {"id": 196, "s_m": 19.57574049094422, "d_m": 0.0, "x_m": 1.2002284700870884, "y_m": 12.960351891384454, "d_right": 0.37710306241976377, "d_left": 1.278050102470641, "psi_rad": 1.52309349803102, "kappa_radpm": -0.3300439736944306, "vx_mps": 5.746591360853836, "ax_mps2": 0.9731921886057768}, {"id": 197, "s_m": 19.675616717938833, "d_m": 0.0, "x_m": 1.2065932459769535, "y_m": 13.060005422281865, "d_right": 0.39544016462294995, "d_left": 1.255227037989292, "psi_rad": 1.4913318610558841, "kappa_radpm": -0.30616230026548524, "vx_mps": 5.763480701496023, "ax_mps2": 1.701575445095653}, {"id": 198, "s_m": 19.775492944933447, "d_m": 0.0, "x_m": 1.216006285041361, "y_m": 13.159448859369007, "d_right": 0.39153359153958, "d_left": 1.2255047908520942, "psi_rad": 1.461888665879886, "kappa_radpm": -0.28333995620817026, "vx_mps": 5.79289251301306, "ax_mps2": 2.3620619595037446}, {"id": 199, "s_m": 19.87536917192806, "d_m": 0.0, "x_m": 1.2282257074782694, "y_m": 13.258556250595513, "d_right": 0.4098347954171284, "d_left": 1.1992796535523689, "psi_rad": 1.4347314936638713, "kappa_radpm": -0.2605793548271036, "vx_mps": 5.833475065534114, "ax_mps2": 3.001080642367539}, {"id": 200, "s_m": 19.975245398922674, "d_m": 0.0, "x_m": 1.2430228401506562, "y_m": 13.35733585778173, "d_right": 0.4081179921566745, "d_left": 1.1773104690891079, "psi_rad": 1.4098584945048387, "kappa_radpm": -0.23745663273267192, "vx_mps": 5.884632916600721, "ax_mps2": 3.6432673700641662}, {"id": 201, "s_m": 20.075121625917287, "d_m": 0.0, "x_m": 1.260155637360619, "y_m": 13.455721220557576, "d_right": 0.40075024572955764, "d_left": 1.1264976170694494, "psi_rad": 1.3872962456084037, "kappa_radpm": -0.21441647601205555, "vx_mps": 5.946146328577014, "ax_mps2": 4.282267459229222}, {"id": 202, "s_m": 20.1749978529119, "d_m": 0.0, "x_m": 1.2793929505656354, "y_m": 13.553723447658212, "d_right": 0.41578359585053737, "d_left": 1.0844987404102098, "psi_rad": 1.3670137615249724, "kappa_radpm": -0.1917250213229703, "vx_mps": 6.017644854465005, "ax_mps2": 4.917254288116927}, {"id": 203, "s_m": 20.274874079906514, "d_m": 0.0, "x_m": 1.3005037976416391, "y_m": 13.651342203427928, "d_right": 0.449887390966679, "d_left": 1.0521752328075766, "psi_rad": 1.3490007459519409, "kappa_radpm": -0.16901538597483026, "vx_mps": 6.0987116020852765, "ax_mps2": 5.569806985776596}, {"id": 204, "s_m": 20.374750306901127, "d_m": 0.0, "x_m": 1.3232564602282728, "y_m": 13.748574171544886, "d_right": 0.4799439451909064, "d_left": 1.0302324440784572, "psi_rad": 1.3332232478924275, "kappa_radpm": -0.14696855948771892, "vx_mps": 6.189254059986936, "ax_mps2": 5.757746859533136}, {"id": 205, "s_m": 20.47462653389574, "d_m": 0.0, "x_m": 1.3474412369697553, "y_m": 13.84549150091194, "d_right": 0.5126182794301901, "d_left": 1.0110637002995588, "psi_rad": 1.3196449975833302, "kappa_radpm": -0.12489358157883527, "vx_mps": 6.281479911908123, "ax_mps2": 5.705565121620045}, {"id": 206, "s_m": 20.574502760890354, "d_m": 0.0, "x_m": 1.3728219202826468, "y_m": 13.942057974140567, "d_right": 0.5603322787704466, "d_left": 0.9606465395269411, "psi_rad": 1.3082795881740634, "kappa_radpm": -0.10276488149539874, "vx_mps": 6.3715532265017005, "ax_mps2": 5.654537819419425}, {"id": 207, "s_m": 20.674378987884968, "d_m": 0.0, "x_m": 1.3992069985778588, "y_m": 14.038412334291818, "d_right": 0.6198267286444841, "d_left": 0.8873657063881784, "psi_rad": 1.2991178083189638, "kappa_radpm": -0.08065633550839936, "vx_mps": 6.459581900072802, "ax_mps2": 5.604608214981484}, {"id": 208, "s_m": 20.77425521487958, "d_m": 0.0, "x_m": 1.4263491351409585, "y_m": 14.134486465340972, "d_right": 0.6850520919476696, "d_left": 0.8159935652144342, "psi_rad": 1.2921683471029606, "kappa_radpm": -0.05857552036735195, "vx_mps": 6.545665173864218, "ax_mps2": 5.55572409397835}, {"id": 209, "s_m": 20.874131441874194, "d_m": 0.0, "x_m": 1.4540747303064834, "y_m": 14.230475816398748, "d_right": 0.7508257082176809, "d_left": 0.7447348406545138, "psi_rad": 1.287415917418605, "kappa_radpm": -0.036575285409554126, "vx_mps": 6.6298945760696775, "ax_mps2": 5.507837274630988}, {"id": 210, "s_m": 20.974007668868808, "d_m": 0.0, "x_m": 1.4821258282051146, "y_m": 14.326277467431677, "d_right": 0.8162604457702655, "d_left": 0.678917942768891, "psi_rad": 1.284856472277183, "kappa_radpm": -0.014728719620368416, "vx_mps": 6.712354735975968, "ax_mps2": 5.460903183199687}, {"id": 211, "s_m": 21.07388389586342, "d_m": 0.0, "x_m": 1.5103462153234064, "y_m": 14.422133966992982, "d_right": 0.8865913939424237, "d_left": 0.6222955893021656, "psi_rad": 1.2844705769598332, "kappa_radpm": 0.0069777372171444425, "vx_mps": 6.793124090830427, "ax_mps2": -4.851019216355902}, {"id": 212, "s_m": 21.173760122858035, "d_m": 0.0, "x_m": 1.5384689142155206, "y_m": 14.517904200742668, "d_right": 0.9621307770384118, "d_left": 0.5764119431110486, "psi_rad": 1.2862424481530417, "kappa_radpm": 0.028490752397272737, "vx_mps": 6.7214233552577785, "ax_mps2": -10.017115157399303}, {"id": 213, "s_m": 21.273636349852648, "d_m": 0.0, "x_m": 1.5663529365443973, "y_m": 14.613870556138371, "d_right": 1.0366227523849423, "d_left": 0.5309741698907154, "psi_rad": 1.2901566000627889, "kappa_radpm": 0.0497908331325813, "vx_mps": 6.570889482103739, "ax_mps2": -9.236628054984573}, {"id": 214, "s_m": 21.373512576847258, "d_m": 0.0, "x_m": 1.5937244915438735, "y_m": 14.709850418216785, "d_right": 1.114888643220456, "d_left": 0.5011289065041863, "psi_rad": 1.2961726781583816, "kappa_radpm": 0.0707244912151184, "vx_mps": 6.428961771970083, "ax_mps2": -8.531940394858823}, {"id": 215, "s_m": 21.47338880384187, "d_m": 0.0, "x_m": 1.6204540279462836, "y_m": 14.80615275678791, "d_right": 1.1931941746752002, "d_left": 0.4894454381914912, "psi_rad": 1.3042781337656402, "kappa_radpm": 0.09138282064557672, "vx_mps": 6.2950197326370505, "ax_mps2": -7.913439959851067}, {"id": 216, "s_m": 21.573265030836485, "d_m": 0.0, "x_m": 1.646265301521458, "y_m": 14.902548463419961, "d_right": 1.2739181962103068, "d_left": 0.49703366186624554, "psi_rad": 1.3143927152086499, "kappa_radpm": 0.11127532579620805, "vx_mps": 6.1681880956090485, "ax_mps2": -7.371273640765098}, {"id": 217, "s_m": 21.673141257831098, "d_m": 0.0, "x_m": 1.6710450392895224, "y_m": 14.999385818468932, "d_right": 1.3579091229174232, "d_left": 0.521990579728777, "psi_rad": 1.3264943745892148, "kappa_radpm": 0.1304232748424867, "vx_mps": 6.0476536263285, "ax_mps2": -7.012285257149131}, {"id": 218, "s_m": 21.77301748482571, "d_m": 0.0, "x_m": 1.6945230077221136, "y_m": 15.096357368628459, "d_right": 1.4444075771369644, "d_left": 0.5134585050564072, "psi_rad": 1.3402699744904072, "kappa_radpm": 0.14566946025139113, "vx_mps": 5.9307160778321055, "ax_mps2": -6.6875179329112475}, {"id": 219, "s_m": 21.872893711820325, "d_m": 0.0, "x_m": 1.716634017945389, "y_m": 15.193864018617493, "d_right": 1.5319588046142953, "d_left": 0.5200628443776525, "psi_rad": 1.355587515092099, "kappa_radpm": 0.16086546314883804, "vx_mps": 5.817004820151024, "ax_mps2": -6.325646221190586}, {"id": 220, "s_m": 21.97276993881494, "d_m": 0.0, "x_m": 1.7371301665656396, "y_m": 15.291510699479502, "d_right": 1.564110473893883, "d_left": 0.5370837424348726, "psi_rad": 1.3724961558423738, "kappa_radpm": 0.1780647940812206, "vx_mps": 5.7073620633274835, "ax_mps2": -5.9921432839833555}, {"id": 221, "s_m": 22.07264616580955, "d_m": 0.0, "x_m": 1.7559258358601477, "y_m": 15.389712560929304, "d_right": 1.545289701481305, "d_left": 0.5559520010408496, "psi_rad": 1.3911611989565784, "kappa_radpm": 0.1953388783103958, "vx_mps": 5.6015209002804776, "ax_mps2": -5.65720772550881}, {"id": 222, "s_m": 22.172522392804165, "d_m": 0.0, "x_m": 1.7727664603566708, "y_m": 15.488063036056934, "d_right": 1.5284272376211665, "d_left": 0.5728604229965207, "psi_rad": 1.4115624280867691, "kappa_radpm": 0.21356574578620768, "vx_mps": 5.499726835978476, "ax_mps2": -5.3504246975945735}, {"id": 223, "s_m": 22.27239861979878, "d_m": 0.0, "x_m": 1.7875339557003387, "y_m": 15.586941361653853, "d_right": 1.5136463626560044, "d_left": 0.5876671533202427, "psi_rad": 1.4338248410770607, "kappa_radpm": 0.23176088361759728, "vx_mps": 5.401688144196473, "ax_mps2": -5.086367352097151}, {"id": 224, "s_m": 22.372274846793392, "d_m": 0.0, "x_m": 1.7999858756042357, "y_m": 15.68594444003253, "d_right": 1.501183007522069, "d_left": 0.6001550918159371, "psi_rad": 1.4578283335668232, "kappa_radpm": 0.24935899846391812, "vx_mps": 5.3068088760271594, "ax_mps2": -4.8425960117699445}, {"id": 225, "s_m": 22.472151073788005, "d_m": 0.0, "x_m": 1.8099862093307002, "y_m": 15.78540413080554, "d_right": 1.491177618082487, "d_left": 0.6101676094320548, "psi_rad": 1.4836395584055722, "kappa_radpm": 0.26705503324972557, "vx_mps": 5.214872961985858, "ax_mps2": -4.630351661954819}, {"id": 226, "s_m": 22.57202730078262, "d_m": 0.0, "x_m": 1.817319085452807, "y_m": 15.884933532710436, "d_right": 1.4838404481746528, "d_left": 0.6175135619990463, "psi_rad": 1.511156201629046, "kappa_radpm": 0.28440085753723765, "vx_mps": 5.125424460700068, "ax_mps2": -4.432139332668011}, {"id": 227, "s_m": 22.671903527777232, "d_m": 0.0, "x_m": 1.8218284238797813, "y_m": 15.984771579109568, "d_right": 1.479330803155265, "d_left": 0.6220222007675136, "psi_rad": 1.5404578208074275, "kappa_radpm": 0.301993327233823, "vx_mps": 5.03831769484815, "ax_mps2": -4.269529736115877}, {"id": 228, "s_m": 22.771779754771845, "d_m": 0.0, "x_m": 1.8233239171810867, "y_m": 16.084585460397452, "d_right": 1.4778343898982749, "d_left": 0.6235244069399024, "psi_rad": 1.571453090030085, "kappa_radpm": 0.3189862674160132, "vx_mps": 4.9529583232701295, "ax_mps2": -4.115526020621155}, {"id": 229, "s_m": 22.87165598176646, "d_m": 0.0, "x_m": 1.8216372286184777, "y_m": 16.18448776195523, "d_right": 1.47368899516136, "d_left": 0.6218451574535596, "psi_rad": 1.6041932943342876, "kappa_radpm": 0.33640781963096467, "vx_mps": 4.869261723298026, "ax_mps2": -3.9869689474106136}, {"id": 230, "s_m": 22.971532208761072, "d_m": 0.0, "x_m": 1.8165988959458812, "y_m": 16.284212724657802, "d_right": 1.457601507204092, "d_left": 0.6168323001258806, "psi_rad": 1.6386424096081351, "kappa_radpm": 0.3535767011703246, "vx_mps": 4.786784191787963, "ax_mps2": -3.862844776588371}, {"id": 231, "s_m": 23.071408435755686, "d_m": 0.0, "x_m": 1.808038477994641, "y_m": 16.383738975414904, "d_right": 1.4517580615938044, "d_left": 0.6083182329477629, "psi_rad": 1.674847533491701, "kappa_radpm": 0.3713696304020112, "vx_mps": 4.705495741709703, "ax_mps2": -3.761184460117444}, {"id": 232, "s_m": 23.1712846627503, "d_m": 0.0, "x_m": 1.7957954105240408, "y_m": 16.482860796004427, "d_right": 1.4506747457071418, "d_left": 0.5961588901489332, "psi_rad": 1.7128230068285815, "kappa_radpm": 0.38903027896270503, "vx_mps": 4.624973983649372, "ax_mps2": -3.661393323911356}, {"id": 233, "s_m": 23.271160889744912, "d_m": 0.0, "x_m": 1.7797100829171129, "y_m": 16.581432308785725, "d_right": 1.4341082120010948, "d_left": 0.5802113277673712, "psi_rad": 1.7525942601095048, "kappa_radpm": 0.4074962996374446, "vx_mps": 4.545218591878996, "ax_mps2": -3.5830439903197453}, {"id": 234, "s_m": 23.371037116739526, "d_m": 0.0, "x_m": 1.7596225725242545, "y_m": 16.679288751410066, "d_right": 1.428142577352887, "d_left": 0.5613890409440933, "psi_rad": 1.7942278839428847, "kappa_radpm": 0.4259103359287041, "vx_mps": 4.465791107759605, "ax_mps2": -3.5019196887831123}, {"id": 235, "s_m": 23.47091334373414, "d_m": 0.0, "x_m": 1.7353986422213015, "y_m": 16.776168077285448, "d_right": 1.4164013853250237, "d_left": 0.5557800969380192, "psi_rad": 1.8377273391780025, "kappa_radpm": 0.4454673960057276, "vx_mps": 4.386772522782227, "ax_mps2": -3.433214045367709}, {"id": 236, "s_m": 23.570789570728753, "d_m": 0.0, "x_m": 1.7068748666750584, "y_m": 16.87191985916384, "d_right": 1.4136401500042397, "d_left": 0.5635954624304328, "psi_rad": 1.8832414961015393, "kappa_radpm": 0.46548858736665283, "vx_mps": 4.307897426356002, "ax_mps2": -3.360442771191381}, {"id": 237, "s_m": 23.670665797723366, "d_m": 0.0, "x_m": 1.6739483744325026, "y_m": 16.966188674465677, "d_right": 1.4225468499647338, "d_left": 0.5752810023615114, "psi_rad": 1.9307791102901164, "kappa_radpm": 0.4868809142189465, "vx_mps": 4.229269859676588, "ax_mps2": -3.2900853648997015}, {"id": 238, "s_m": 23.77054202471798, "d_m": 0.0, "x_m": 1.6364557589976951, "y_m": 17.058797005688174, "d_right": 1.4431032749547186, "d_left": 0.5432013712102391, "psi_rad": 1.9805500291648521, "kappa_radpm": 0.5093885734680594, "vx_mps": 4.150845807843996, "ax_mps2": -3.2078371057792094}, {"id": 239, "s_m": 23.870418251712593, "d_m": 0.0, "x_m": 1.5943229205658298, "y_m": 17.14932747862085, "d_right": 1.4312889799619768, "d_left": 0.523285412593322, "psi_rad": 2.032622512472806, "kappa_radpm": 0.5338734689582099, "vx_mps": 4.072928625279232, "ax_mps2": -3.1220893757131223}, {"id": 240, "s_m": 23.970294478707206, "d_m": 0.0, "x_m": 1.5474008393132865, "y_m": 17.237524460858236, "d_right": 1.3859955167331672, "d_left": 0.5167275440549097, "psi_rad": 2.0872631345880697, "kappa_radpm": 0.5599481119499781, "vx_mps": 3.995635440358215, "ax_mps2": -3.0184339518614203}, {"id": 241, "s_m": 24.07017070570182, "d_m": 0.0, "x_m": 1.4956405135881852, "y_m": 17.322923742401766, "d_right": 1.3410657491925009, "d_left": 0.5237975161307976, "psi_rad": 2.144587699444503, "kappa_radpm": 0.5885208751205829, "vx_mps": 3.919459526919224, "ax_mps2": -2.8935526519324317}, {"id": 242, "s_m": 24.170046932696433, "d_m": 0.0, "x_m": 1.438935220980841, "y_m": 17.405154966706192, "d_right": 1.30779748908839, "d_left": 0.5204918732308804, "psi_rad": 2.2049266176211995, "kappa_radpm": 0.6198252086014031, "vx_mps": 3.845018691786469, "ax_mps2": -2.7288269613498963}, {"id": 243, "s_m": 24.269923159691047, "d_m": 0.0, "x_m": 1.3772587735931543, "y_m": 17.483703314411784, "d_right": 1.2835635290968772, "d_left": 0.4987382605350132, "psi_rad": 2.2685582752439113, "kappa_radpm": 0.6549734733897357, "vx_mps": 3.773470399797211, "ax_mps2": -2.523280942585494}, {"id": 244, "s_m": 24.36979938668566, "d_m": 0.0, "x_m": 1.3105795250082817, "y_m": 17.558046496372192, "d_right": 1.2418754149187028, "d_left": 0.45475043880947824, "psi_rad": 2.3358923446435953, "kappa_radpm": 0.6938320813893535, "vx_mps": 3.7060824731460067, "ax_mps2": -2.2515605325112524}, {"id": 245, "s_m": 24.469675613680273, "d_m": 0.0, "x_m": 1.2389040198464862, "y_m": 17.627595062651118, "d_right": 1.188019022938558, "d_left": 0.4230680139767651, "psi_rad": 2.4073456809973, "kappa_radpm": 0.7376426335084485, "vx_mps": 3.644899526198988, "ax_mps2": -1.899641235154813}, {"id": 246, "s_m": 24.569551840674887, "d_m": 0.0, "x_m": 1.1623047874849048, "y_m": 17.691671911574254, "d_right": 1.1451049517676382, "d_left": 0.40631088202734894, "psi_rad": 2.4834165530626673, "kappa_radpm": 0.7864854085031358, "vx_mps": 3.592469144984311, "ax_mps2": -1.3813626850344007}, {"id": 247, "s_m": 24.6694280676695, "d_m": 0.0, "x_m": 1.0808979686097246, "y_m": 17.74953894382449, "d_right": 1.1170838321717742, "d_left": 0.3896201268403637, "psi_rad": 2.56481220322066, "kappa_radpm": 0.8446194394542365, "vx_mps": 3.5538576183465116, "ax_mps2": -0.8732660825060136}, {"id": 248, "s_m": 24.769304294664114, "d_m": 0.0, "x_m": 0.9949336065975113, "y_m": 17.800320533018613, "d_right": 1.1036225303820368, "d_left": 0.3702772084903078, "psi_rad": 2.6521061838728603, "kappa_radpm": 0.8971871335666892, "vx_mps": 3.529230359230381, "ax_mps2": -0.37703232909374984}, {"id": 249, "s_m": 24.869180521658727, "d_m": 0.0, "x_m": 0.9047629303514396, "y_m": 17.843208011726713, "d_right": 1.0852069799036133, "d_left": 0.35349464366270666, "psi_rad": 2.743920303675673, "kappa_radpm": 0.9427045470514852, "vx_mps": 3.518544272215948, "ax_mps2": -0.048024226710135294}, {"id": 250, "s_m": 24.96905674865334, "d_m": 0.0, "x_m": 0.8110781960517529, "y_m": 17.87739449961379, "d_right": 1.078230278744513, "d_left": 0.34272124305131624, "psi_rad": 2.839933635016194, "kappa_radpm": 0.9700286390099755, "vx_mps": 3.517180808318982, "ax_mps2": -0.04778562006596675}, {"id": 251, "s_m": 25.068932975647954, "d_m": 0.0, "x_m": 0.714465418321064, "y_m": 17.902394683824653, "d_right": 1.0772907515736763, "d_left": 0.3370968185886107, "psi_rad": 2.936839013114965, "kappa_radpm": 0.9707940223631021, "vx_mps": 3.515823593915627, "ax_mps2": -0.04778562006596675}, {"id": 252, "s_m": 25.168809202642567, "d_m": 0.0, "x_m": 0.6159423071241993, "y_m": 17.91793648115058, "d_right": 1.062315146518125, "d_left": 0.35102289012773025, "psi_rad": 3.0330058220164564, "kappa_radpm": 0.9466559572242829, "vx_mps": 3.514465855384033, "ax_mps2": 0.2596583890759235}, {"id": 253, "s_m": 25.26868542963718, "d_m": 0.0, "x_m": 0.516286112857788, "y_m": 17.924118913953624, "d_right": 1.0660079557718962, "d_left": 0.37610650461273, "psi_rad": 3.1256496682880877, "kappa_radpm": 0.9098581852387652, "vx_mps": 3.5218372547687418, "ax_mps2": 0.6667724854548667}, {"id": 254, "s_m": 25.368561656631794, "d_m": 0.0, "x_m": 0.4164948459933704, "y_m": 17.921236242038525, "d_right": 1.087810802787794, "d_left": 0.40119621192181665, "psi_rad": -3.068699788496584, "kappa_radpm": 0.8626456571759669, "vx_mps": 3.5406958481771817, "ax_mps2": 1.1369552319804184}, {"id": 255, "s_m": 25.468437883626407, "d_m": 0.0, "x_m": 0.3172972421970155, "y_m": 17.909773594929266, "d_right": 1.1193203000875906, "d_left": 0.42861318183959457, "psi_rad": -2.985305597085601, "kappa_radpm": 0.8082263205006809, "vx_mps": 3.5726232220824956, "ax_mps2": 1.634750798176104}, {"id": 256, "s_m": 25.56831411062102, "d_m": 0.0, "x_m": 0.21936755966098095, "y_m": 17.89034553250024, "d_right": 1.1387883291007346, "d_left": 0.46059284427523467, "psi_rad": -2.9069382163119775, "kappa_radpm": 0.7628418899271098, "vx_mps": 3.6180356784531074, "ax_mps2": 1.963656237147289}, {"id": 257, "s_m": 25.668190337615634, "d_m": 0.0, "x_m": 0.12317433878840021, "y_m": 17.86350937543057, "d_right": 1.165708492330626, "d_left": 0.504041184595238, "psi_rad": -2.8327919337417926, "kappa_radpm": 0.7224297058360165, "vx_mps": 3.671842496992628, "ax_mps2": 2.207773184720087}, {"id": 258, "s_m": 25.768066564610248, "d_m": 0.0, "x_m": 0.029188089811759722, "y_m": 17.829814143044608, "d_right": 1.1986050210353851, "d_left": 0.5464925758887802, "psi_rad": -2.762563442375983, "kappa_radpm": 0.6838606023854975, "vx_mps": 3.731411989344048, "ax_mps2": 2.4244853824585406}, {"id": 259, "s_m": 25.86794279160486, "d_m": 0.0, "x_m": -0.062308311350599346, "y_m": 17.789767282670017, "d_right": 1.1174459286544978, "d_left": 0.5857883448952349, "psi_rad": -2.6960875740273194, "kappa_radpm": 0.6477341754696152, "vx_mps": 3.7957518805933046, "ax_mps2": 2.611921487884794}, {"id": 260, "s_m": 25.967819018599474, "d_m": 0.0, "x_m": -0.15099275426578432, "y_m": 17.743900975174622, "d_right": 1.0405416015523268, "d_left": 0.6231774130941242, "psi_rad": -2.633026149328625, "kappa_radpm": 0.6156961849711549, "vx_mps": 3.863867242266456, "ax_mps2": 2.7502674008523695}, {"id": 261, "s_m": 26.067695245594088, "d_m": 0.0, "x_m": -0.23672053635131005, "y_m": 17.692652082782068, "d_right": 0.9696133702364842, "d_left": 0.6682463020430871, "psi_rad": -2.573047555372427, "kappa_radpm": 0.5854939912772529, "vx_mps": 3.934316043266812, "ax_mps2": 2.8773919718035312}, {"id": 262, "s_m": 26.1675714725887, "d_m": 0.0, "x_m": -0.31927035888767286, "y_m": 17.636502773786628, "d_right": 0.9088727839843845, "d_left": 0.7196158203784246, "psi_rad": -2.5159898598909045, "kappa_radpm": 0.5577315349117484, "vx_mps": 4.006695500754116, "ax_mps2": 2.9843355346048113}, {"id": 263, "s_m": 26.267447699583315, "d_m": 0.0, "x_m": -0.39860930877883083, "y_m": 17.575809626311294, "d_right": 0.8589901966938417, "d_left": 0.7761458474533063, "psi_rad": -2.4615804470962086, "kappa_radpm": 0.531851164606585, "vx_mps": 4.080408947927626, "ax_mps2": 3.0804527880825896}, {"id": 264, "s_m": 26.367323926577928, "d_m": 0.0, "x_m": -0.47457177280635704, "y_m": 17.51102278031225, "d_right": 0.8148429058657858, "d_left": 0.8367763907944874, "psi_rad": -2.4096715385284333, "kappa_radpm": 0.5081428382586658, "vx_mps": 4.155125170935924, "ax_mps2": 3.1601369172718754}, {"id": 265, "s_m": 26.46720015357254, "d_m": 0.0, "x_m": -0.5471910687683172, "y_m": 17.44242538558034, "d_right": 0.7859148190871142, "d_left": 0.8960891864597769, "psi_rad": -2.360035684685443, "kappa_radpm": 0.48575437231711444, "vx_mps": 4.230403088396223, "ax_mps2": 3.237604883751511}, {"id": 266, "s_m": 26.567076380567155, "d_m": 0.0, "x_m": -0.6163559604118737, "y_m": 17.37042874555087, "d_right": 0.7505976371613051, "d_left": 0.9369137532147249, "psi_rad": -2.312584026587639, "kappa_radpm": 0.46493525153572546, "vx_mps": 4.306161842161668, "ax_mps2": 3.30700751668071}, {"id": 267, "s_m": 26.666952607561768, "d_m": 0.0, "x_m": -0.6821460652744125, "y_m": 17.29524997874477, "d_right": 0.7081863909966568, "d_left": 0.9739911085870899, "psi_rad": -2.2671278760121876, "kappa_radpm": 0.44521854647008097, "vx_mps": 4.382192679208316, "ax_mps2": 3.3759575197447966}, {"id": 268, "s_m": 26.76682883455638, "d_m": 0.0, "x_m": -0.7444883309194583, "y_m": 17.21727078589948, "d_right": 0.6555632731899735, "d_left": 1.0156081126387526, "psi_rad": -2.223615642958473, "kappa_radpm": 0.42649379477746774, "vx_mps": 4.458471540431694, "ax_mps2": 3.445324888126457}, {"id": 269, "s_m": 26.866705061550995, "d_m": 0.0, "x_m": -0.8034924870535959, "y_m": 17.136652959312475, "d_right": 0.6070832678821491, "d_left": 1.0544820890681115, "psi_rad": -2.181907046137317, "kappa_radpm": 0.40858410567229775, "vx_mps": 4.534995102316295, "ax_mps2": 3.517480084754874}, {"id": 270, "s_m": 26.96658128854561, "d_m": 0.0, "x_m": -0.8591209639989181, "y_m": 17.053749861984294, "d_right": 0.5760600970754852, "d_left": 1.0713194083759008, "psi_rad": -2.1419722032736264, "kappa_radpm": 0.39145873888873234, "vx_mps": 4.611811559118695, "ax_mps2": 3.5919184330543126}, {"id": 271, "s_m": 27.066457515540222, "d_m": 0.0, "x_m": -0.9115015773243873, "y_m": 16.96867756385312, "d_right": 0.5480238765867553, "d_left": 1.0850954449413999, "psi_rad": -2.1036888643881024, "kappa_radpm": 0.37502330265105926, "vx_mps": 4.688955147829049, "ax_mps2": 3.669629656568757}, {"id": 272, "s_m": 27.166333742534835, "d_m": 0.0, "x_m": -0.9606266198689409, "y_m": 16.881761166427655, "d_right": 0.5254420193344814, "d_left": 1.1041087065479822, "psi_rad": -2.0670434290303596, "kappa_radpm": 0.3590970989791419, "vx_mps": 4.766478564672645, "ax_mps2": 3.7537297629237347}, {"id": 273, "s_m": 27.26620996952945, "d_m": 0.0, "x_m": -1.0066337891772064, "y_m": 16.79307970471921, "d_right": 0.5031109096193013, "d_left": 1.128245566129675, "psi_rad": -2.031940472960633, "kappa_radpm": 0.3436961953190321, "vx_mps": 4.8444952925191505, "ax_mps2": 3.8430199651887427}, {"id": 274, "s_m": 27.366086196524062, "d_m": 0.0, "x_m": -1.0495418442385727, "y_m": 16.702930396901554, "d_right": 0.48938888402183844, "d_left": 1.1416822748590694, "psi_rad": -1.9983747889372783, "kappa_radpm": 0.3287214422868865, "vx_mps": 4.923087172498193, "ax_mps2": 3.93915295092245}, {"id": 275, "s_m": 27.465962423518675, "d_m": 0.0, "x_m": -1.0894933866010705, "y_m": 16.611361118864465, "d_right": 0.47159167124684837, "d_left": 1.1419702219925283, "psi_rad": -1.9662632296161888, "kappa_radpm": 0.3141755815634323, "vx_mps": 5.002363718943467, "ax_mps2": 4.041445257313356}, {"id": 276, "s_m": 27.56583865051329, "d_m": 0.0, "x_m": -1.1265292211618727, "y_m": 16.51864053103422, "d_right": 0.46692589642373244, "d_left": 1.1418738818013436, "psi_rad": -1.935603296163043, "kappa_radpm": 0.30001523418380444, "vx_mps": 5.08241393280923, "ax_mps2": 4.1504690081800515}, {"id": 277, "s_m": 27.665714877507902, "d_m": 0.0, "x_m": -1.160790430353102, "y_m": 16.4247965326643, "d_right": 0.4526896313671956, "d_left": 1.147227752415786, "psi_rad": -1.9063217366659444, "kappa_radpm": 0.28623965913793037, "vx_mps": 5.163332039875373, "ax_mps2": 4.265788234922306}, {"id": 278, "s_m": 27.765591104502516, "d_m": 0.0, "x_m": -1.1923376050842087, "y_m": 16.330064221125056, "d_right": 0.4569289362743651, "d_left": 1.1380537301097495, "psi_rad": -1.878424295022703, "kappa_radpm": 0.27258094866388066, "vx_mps": 5.2451977486199395, "ax_mps2": 4.3943686617993665}, {"id": 279, "s_m": 27.86546733149713, "d_m": 0.0, "x_m": -1.221309195295625, "y_m": 16.234458745731636, "d_right": 0.4603313107828067, "d_left": 1.1281784418222147, "psi_rad": -1.8518652563713411, "kappa_radpm": 0.25916503573654753, "vx_mps": 5.3282159627829895, "ax_mps2": 4.532583798082584}, {"id": 280, "s_m": 27.965343558491742, "d_m": 0.0, "x_m": -1.2477843503954598, "y_m": 16.13818261478056, "d_right": 0.47291881700369404, "d_left": 1.119536910020477, "psi_rad": -1.826672947322142, "kappa_radpm": 0.2454536948195228, "vx_mps": 5.412511439492231, "ax_mps2": 4.696114606570611}, {"id": 281, "s_m": 28.065219785486356, "d_m": 0.0, "x_m": -1.2719027973811654, "y_m": 16.04124072285203, "d_right": 0.48082131165071856, "d_left": 1.104387866742657, "psi_rad": -1.8028289799235067, "kappa_radpm": 0.2319393745129347, "vx_mps": 5.498485291379017, "ax_mps2": 4.870820873948905}, {"id": 282, "s_m": 28.16509601248097, "d_m": 0.0, "x_m": -1.2937602498972929, "y_m": 15.943807266111966, "d_right": 0.4816378638118949, "d_left": 1.083964537428473, "psi_rad": -1.7803466918130724, "kappa_radpm": 0.21837679803457483, "vx_mps": 5.586259833021074, "ax_mps2": 5.064630027099791}, {"id": 283, "s_m": 28.264972239475583, "d_m": 0.0, "x_m": -1.3134950277458892, "y_m": 15.84588266103886, "d_right": 0.49645366729466056, "d_left": 1.064814438047735, "psi_rad": -1.759201936711026, "kappa_radpm": 0.2049919380122644, "vx_mps": 5.676087666560952, "ax_mps2": 5.271026353471086}, {"id": 284, "s_m": 28.364848466470196, "d_m": 0.0, "x_m": -1.3312148285897654, "y_m": 15.7476085745098, "d_right": 0.5044048683374031, "d_left": 1.034781430716348, "psi_rad": -1.7393996749102012, "kappa_radpm": 0.19162026568965754, "vx_mps": 5.768090814787254, "ax_mps2": 5.496007106271765}, {"id": 285, "s_m": 28.46472469346481, "d_m": 0.0, "x_m": -1.3470556321535827, "y_m": 15.648982217540631, "d_right": 0.5019587693297787, "d_left": 0.9946029500321825, "psi_rad": -1.7209223239790292, "kappa_radpm": 0.1783377806365674, "vx_mps": 5.862483480083599, "ax_mps2": 5.737896381404685}, {"id": 286, "s_m": 28.564600920459423, "d_m": 0.0, "x_m": -1.3611332959486577, "y_m": 15.550119167602805, "d_right": 0.4878955961317872, "d_left": 0.9511728336917543, "psi_rad": -1.7037827897794626, "kappa_radpm": 0.16493849401457214, "vx_mps": 5.95943549651933, "ax_mps2": 5.887492959954627}, {"id": 287, "s_m": 28.664477147454036, "d_m": 0.0, "x_m": -1.3735841365710042, "y_m": 15.451008343112548, "d_right": 0.47545803446547114, "d_left": 0.9049328487125647, "psi_rad": -1.6879732509453236, "kappa_radpm": 0.15160823711061244, "vx_mps": 6.057302419705477, "ax_mps2": 5.8322912460387}, {"id": 288, "s_m": 28.76435337444865, "d_m": 0.0, "x_m": -1.3845299318232291, "y_m": 15.351747391545583, "d_right": 0.4733895435325935, "d_left": 0.8663561412721538, "psi_rad": -1.673499862322955, "kappa_radpm": 0.13826434555650643, "vx_mps": 6.152717049608729, "ax_mps2": 5.77840145178315}, {"id": 289, "s_m": 28.864229601443263, "d_m": 0.0, "x_m": -1.3941064136917873, "y_m": 15.252319246260765, "d_right": 0.49051120645312524, "d_left": 0.8236267987444014, "psi_rad": -1.6603527802762361, "kappa_radpm": 0.1249749982498316, "vx_mps": 6.245812754371887, "ax_mps2": 5.725753533556303}, {"id": 290, "s_m": 28.964105828437877, "d_m": 0.0, "x_m": -1.4024392067770122, "y_m": 15.152803402033811, "d_right": 0.5070161508386143, "d_left": 0.7794776640430036, "psi_rad": -1.648538988736603, "kappa_radpm": 0.1116252576670308, "vx_mps": 6.336711314391708, "ax_mps2": 5.6742834995629945}, {"id": 291, "s_m": 29.06398205543249, "d_m": 0.0, "x_m": -1.4096636889208314, "y_m": 15.053177744270236, "d_right": 0.5127036939235738, "d_left": 0.7368166875811715, "psi_rad": -1.6380545540981144, "kappa_radpm": 0.09830169579535444, "vx_mps": 6.425524284881988, "ax_mps2": 5.623932699916868}, {"id": 292, "s_m": 29.163858282427103, "d_m": 0.0, "x_m": -1.4159083931364436, "y_m": 14.95350779619024, "d_right": 0.5381490956599165, "d_left": 0.704387607171031, "psi_rad": -1.628904363838588, "kappa_radpm": 0.08495315851493654, "vx_mps": 6.512354159095375, "ax_mps2": 5.574647220438516}, {"id": 293, "s_m": 29.263734509421717, "d_m": 0.0, "x_m": -1.4213083391774206, "y_m": 14.85376710204296, "d_right": 0.5806532125744825, "d_left": 0.6711680368341271, "psi_rad": -1.6210841182375182, "kappa_radpm": 0.07162882053448252, "vx_mps": 6.597295366731252, "ax_mps2": 5.526377362228859}, {"id": 294, "s_m": 29.36361073641633, "d_m": 0.0, "x_m": -1.4259938157407797, "y_m": 14.754008643516178, "d_right": 0.6366877515226135, "d_left": 0.6372985182557586, "psi_rad": -1.6145985356771053, "kappa_radpm": 0.05825783987219798, "vx_mps": 6.680435135204096, "ax_mps2": 5.479077192626055}, {"id": 295, "s_m": 29.463486963410944, "d_m": 0.0, "x_m": -1.4300993864513463, "y_m": 14.654209105891097, "d_right": 0.6753872957289921, "d_left": 0.5916333002470275, "psi_rad": -1.609446141856468, "kappa_radpm": 0.04495280767649341, "vx_mps": 6.761854236116957, "ax_mps2": 5.432704155927737}, {"id": 296, "s_m": 29.563363190405557, "d_m": 0.0, "x_m": -1.4337555636218746, "y_m": 14.554406830767059, "d_right": 0.6927472569417598, "d_left": 0.5584436077470696, "psi_rad": -1.605594863088057, "kappa_radpm": 0.03217487663566112, "vx_mps": 6.841627635105324, "ax_mps2": 5.387218734427445}, {"id": 297, "s_m": 29.66323941740017, "d_m": 0.0, "x_m": -1.4370914678686735, "y_m": 14.454579434351984, "d_right": 0.7239032005538308, "d_left": 0.5348619131773145, "psi_rad": -1.6030185683488307, "kappa_radpm": 0.019507036008670924, "vx_mps": 6.919825059914122, "ax_mps2": 5.342584152035511}, {"id": 298, "s_m": 29.763115644394784, "d_m": 0.0, "x_m": -1.4402308101280035, "y_m": 14.354758176386728, "d_right": 0.7670595198916954, "d_left": 0.5109290402044602, "psi_rad": -1.6016436978361703, "kappa_radpm": 0.00802819698672924, "vx_mps": 6.9965114989420645, "ax_mps2": 5.2987661141186475}, {"id": 299, "s_m": 29.862991871389394, "d_m": 0.0, "x_m": -1.4432904788168388, "y_m": 14.254922318008978, "d_right": 0.8069120929952514, "d_left": 0.49597479450707366, "psi_rad": -1.6014147106434278, "kappa_radpm": -0.003445912238444374, "vx_mps": 7.071747640381312, "ax_mps2": 5.255732578287248}, {"id": 300, "s_m": 29.962868098384007, "d_m": 0.0, "x_m": -1.4463843720450065, "y_m": 14.155094006665486, "d_right": 0.8038263890489243, "d_left": 0.49906975915394913, "psi_rad": -1.6023341492420489, "kappa_radpm": -0.0149656834919045, "vx_mps": 7.145590260381759, "ax_mps2": 5.213453551744863}, {"id": 301, "s_m": 30.06274432537862, "d_m": 0.0, "x_m": -1.4496275155471348, "y_m": 14.055269406701886, "d_right": 0.8005919404363764, "d_left": 0.502313806680206, "psi_rad": -1.60440439138209, "kappa_radpm": -0.026503364922801382, "vx_mps": 7.218092567291067, "ax_mps2": 5.171900911529174}, {"id": 302, "s_m": 30.162620552373234, "d_m": 0.0, "x_m": -1.4531352279610121, "y_m": 13.955450088536665, "d_right": 0.7970937090382568, "d_left": 0.5075890409760809, "psi_rad": -1.6076351444396604, "kappa_radpm": -0.038190710512689324, "vx_mps": 7.2893045078971435, "ax_mps2": 5.13104824455831}, {"id": 303, "s_m": 30.262496779367847, "d_m": 0.0, "x_m": -1.4570233293944264, "y_m": 13.855653570395386, "d_right": 0.7932170669772785, "d_left": 0.5322646277903955, "psi_rad": -1.6120333065263068, "kappa_radpm": -0.049856100548459376, "vx_mps": 7.359273040677133, "ax_mps2": 5.090870704878595}, {"id": 304, "s_m": 30.36237300636246, "d_m": 0.0, "x_m": -1.4614084380625416, "y_m": 13.755864397256694, "d_right": 0.7888447604106211, "d_left": 0.5739502372305167, "psi_rad": -1.6175789846781479, "kappa_radpm": -0.06118997408700369, "vx_mps": 7.428042380296347, "ax_mps2": -6.968977408851772}, {"id": 305, "s_m": 30.462249233357074, "d_m": 0.0, "x_m": -1.4664024634134756, "y_m": 13.656121429496583, "d_right": 0.7838673408960948, "d_left": 0.6254342503423882, "psi_rad": -1.6242572112941556, "kappa_radpm": -0.07255667755306584, "vx_mps": 7.3337400597692985, "ax_mps2": -7.817130596319348}, {"id": 306, "s_m": 30.562125460351687, "d_m": 0.0, "x_m": -1.4721205124908527, "y_m": 13.55639468767727, "d_right": 0.7781682949228694, "d_left": 0.6480840066775314, "psi_rad": -1.6320742645761008, "kappa_radpm": -0.0839632860314016, "vx_mps": 7.226496540128967, "ax_mps2": -7.354329134158869}, {"id": 307, "s_m": 30.6620016873463, "d_m": 0.0, "x_m": -1.4786728397483146, "y_m": 13.456747484186138, "d_right": 0.7716413942588916, "d_left": 0.677891903593725, "psi_rad": -1.6410303760172962, "kappa_radpm": -0.09540036131191285, "vx_mps": 7.124128504771881, "ax_mps2": -6.919796466237891}, {"id": 308, "s_m": 30.761877914340914, "d_m": 0.0, "x_m": -1.4861766005551242, "y_m": 13.357135611366806, "d_right": 0.7473845621029114, "d_left": 0.7212681670850338, "psi_rad": -1.6511274367570081, "kappa_radpm": -0.10676444915582506, "vx_mps": 7.0264472265339215, "ax_mps2": -6.504456414100329}, {"id": 309, "s_m": 30.861754141335528, "d_m": 0.0, "x_m": -1.4947390869891535, "y_m": 13.257644899545586, "d_right": 0.7152868532903454, "d_left": 0.7468228570091497, "psi_rad": -1.6623585347680603, "kappa_radpm": -0.11818560790048956, "vx_mps": 6.93337432255635, "ax_mps2": -6.104361623347674}, {"id": 310, "s_m": 30.96163036833014, "d_m": 0.0, "x_m": -1.5044792188798897, "y_m": 13.158223781545507, "d_right": 0.6949796870053181, "d_left": 0.76822785608885, "psi_rad": -1.6747394486679017, "kappa_radpm": -0.1297003399402937, "vx_mps": 6.844875329937162, "ax_mps2": -5.71850069719983}, {"id": 311, "s_m": 31.061506595324754, "d_m": 0.0, "x_m": -1.5155017922454426, "y_m": 13.05897914014192, "d_right": 0.6605336966094049, "d_left": 0.8027719080005943, "psi_rad": -1.6882687614797458, "kappa_radpm": -0.14128641187773688, "vx_mps": 6.760919592405873, "ax_mps2": -5.345558235922226}, {"id": 312, "s_m": 31.161382822319368, "d_m": 0.0, "x_m": -1.5279290240917256, "y_m": 12.959857733467537, "d_right": 0.6300987349310756, "d_left": 0.8489738139483174, "psi_rad": -1.7029638589965197, "kappa_radpm": -0.15292737110667307, "vx_mps": 6.681485265972665, "ax_mps2": -4.9829563421583085}, {"id": 313, "s_m": 31.26125904931398, "d_m": 0.0, "x_m": -1.5418626186434965, "y_m": 12.860981189552048, "d_right": 0.60716382142162, "d_left": 0.905097760500368, "psi_rad": -1.7188180855833863, "kappa_radpm": -0.164634310141094, "vx_mps": 6.606579114938571, "ax_mps2": -4.625239150413198}, {"id": 314, "s_m": 31.361135276308595, "d_m": 0.0, "x_m": -1.5574268647145249, "y_m": 12.762305147568854, "d_right": 0.5916174967633655, "d_left": 0.9600866192751188, "psi_rad": -1.7358556166624588, "kappa_radpm": -0.1764839421971844, "vx_mps": 6.536282179600298, "ax_mps2": -4.271898198260514}, {"id": 315, "s_m": 31.461011503303208, "d_m": 0.0, "x_m": -1.574720704165305, "y_m": 12.66396013261149, "d_right": 0.5743511996609094, "d_left": 0.9878861892714192, "psi_rad": -1.754073745637303, "kappa_radpm": -0.18844104376336093, "vx_mps": 6.470677134818715, "ax_mps2": -3.9141741139345103}, {"id": 316, "s_m": 31.56088773029782, "d_m": 0.0, "x_m": -1.5938699379488221, "y_m": 12.565920349053817, "d_right": 0.5552425147284475, "d_left": 1.026424733909466, "psi_rad": -1.7735074521299214, "kappa_radpm": -0.20065968738055734, "vx_mps": 6.409976341490365, "ax_mps2": -3.5570609363463315}, {"id": 317, "s_m": 31.660763957292435, "d_m": 0.0, "x_m": -1.6149722362534185, "y_m": 12.468320126659561, "d_right": 0.5342024081636256, "d_left": 1.0746116345111212, "psi_rad": -1.7941575499245772, "kappa_radpm": -0.21296714404877243, "vx_mps": 6.354310745269058, "ax_mps2": -3.19094666371908}, {"id": 318, "s_m": 31.76064018428705, "d_m": 0.0, "x_m": -1.638152802516469, "y_m": 12.3711615597646, "d_right": 0.5111151119571005, "d_left": 1.1216612103895258, "psi_rad": -1.8160573612942335, "kappa_radpm": -0.22553375243268545, "vx_mps": 6.303956346677473, "ax_mps2": -2.8202397676398396}, {"id": 319, "s_m": 31.86051641128166, "d_m": 0.0, "x_m": -1.663509366274894, "y_m": 12.274574397431367, "d_right": 0.4859015047993091, "d_left": 1.1646206728585322, "psi_rad": -1.8392091791641327, "kappa_radpm": -0.23818376653510512, "vx_mps": 6.259114618409789, "ax_mps2": -2.432648835631659}, {"id": 320, "s_m": 31.960392638276275, "d_m": 0.0, "x_m": -1.6911611807425504, "y_m": 12.17860141653557, "d_right": 0.4584673564967187, "d_left": 1.1923258886197656, "psi_rad": -1.8636455604307738, "kappa_radpm": -0.2511443468758126, "vx_mps": 6.2201759003889645, "ax_mps2": -2.0212397210681616}, {"id": 321, "s_m": 32.06026886527089, "d_m": 0.0, "x_m": -1.7212077293475836, "y_m": 12.083363595068034, "d_right": 0.42875625445463567, "d_left": 1.2224498777674304, "psi_rad": -1.8893785920959223, "kappa_radpm": -0.2644974261905051, "vx_mps": 6.187636110615732, "ax_mps2": -1.5303928836689566}, {"id": 322, "s_m": 32.1601450922655, "d_m": 0.0, "x_m": -1.7537606292878796, "y_m": 11.98895414601241, "d_right": 0.3967234966873465, "d_left": 1.2551125060322714, "psi_rad": -1.9165436286628905, "kappa_radpm": -0.2795186138801009, "vx_mps": 6.162884138397806, "ax_mps2": -1.0198372357908472}, {"id": 323, "s_m": 32.26002131926012, "d_m": 0.0, "x_m": -1.788940888839563, "y_m": 11.895477185970979, "d_right": 0.3648349963023311, "d_left": 1.2904451985091692, "psi_rad": -1.9452092630110762, "kappa_radpm": -0.2945199073207447, "vx_mps": 6.146334347625132, "ax_mps2": -0.4595240379901405}, {"id": 324, "s_m": 32.35989754625473, "d_m": 0.0, "x_m": -1.8268500878731648, "y_m": 11.803089303354643, "d_right": 0.34430684055378996, "d_left": 1.3285638897372094, "psi_rad": -1.975396150843613, "kappa_radpm": -0.31009593898168464, "vx_mps": 6.138862668161008, "ax_mps2": -0.1455739519669615}, {"id": 325, "s_m": 32.459773773249346, "d_m": 0.0, "x_m": -1.8676059287637519, "y_m": 11.711910011944022, "d_right": 0.33398489484445, "d_left": 1.3694764587134742, "psi_rad": -2.007083954827235, "kappa_radpm": -0.3186696087324435, "vx_mps": 6.136493795678325, "ax_mps2": -0.14557395196697187}, {"id": 326, "s_m": 32.559650000243956, "d_m": 0.0, "x_m": -1.9112018424513009, "y_m": 11.622091360219958, "d_right": 0.34983439309447295, "d_left": 1.3696473657602795, "psi_rad": -2.037953503976352, "kappa_radpm": -0.2996159817588094, "vx_mps": 6.134124008385897, "ax_mps2": 0.5807448942319265}, {"id": 327, "s_m": 32.65952622723857, "d_m": 0.0, "x_m": -1.9574885402538842, "y_m": 11.533572429409961, "d_right": 0.37984209043954126, "d_left": 1.2938315711529766, "psi_rad": -2.0669196640008636, "kappa_radpm": -0.28042540271535965, "vx_mps": 6.143572459735525, "ax_mps2": 1.269858705836181}, {"id": 328, "s_m": 32.75940245423318, "d_m": 0.0, "x_m": -2.0062082763863436, "y_m": 11.446434922761329, "d_right": 0.4146084793675916, "d_left": 1.21905172306238, "psi_rad": -2.0939920138521186, "kappa_radpm": -0.26197529652895224, "vx_mps": 6.164182018786528, "ax_mps2": 1.8987973993051188}, {"id": 329, "s_m": 32.8592786812278, "d_m": 0.0, "x_m": -2.0572383244146515, "y_m": 11.36052315647673, "d_right": 0.4664351213088372, "d_left": 1.1439886435396136, "psi_rad": -2.1192692659921333, "kappa_radpm": -0.24429715210129158, "vx_mps": 6.19487121745648, "ax_mps2": 2.476390727739776}, {"id": 330, "s_m": 32.95915490822241, "d_m": 0.0, "x_m": -2.110315751662563, "y_m": 11.275939419219442, "d_right": 0.5303783480023637, "d_left": 1.069403445666858, "psi_rad": -2.1428699344151356, "kappa_radpm": -0.2285094230658805, "vx_mps": 6.234668758304077, "ax_mps2": 2.967319461470785}, {"id": 331, "s_m": 33.059031135217026, "d_m": 0.0, "x_m": -2.165335858791645, "y_m": 11.192550449083852, "d_right": 0.6027197332489632, "d_left": 1.0009051041510106, "psi_rad": -2.1649301339365357, "kappa_radpm": -0.21237824707227113, "vx_mps": 6.282023867351326, "ax_mps2": 3.4661817166454147}, {"id": 332, "s_m": 33.158907362211636, "d_m": 0.0, "x_m": -2.222087509368961, "y_m": 11.110377589564521, "d_right": 0.6756854769606073, "d_left": 0.939796406120067, "psi_rad": -2.185167840494845, "kappa_radpm": -0.19291334591602702, "vx_mps": 6.336892154190743, "ax_mps2": 4.098095513483712}, {"id": 333, "s_m": 33.25878358920625, "d_m": 0.0, "x_m": -2.2804221721467526, "y_m": 11.02929902272282, "d_right": 0.7364382882466839, "d_left": 0.8874256169579459, "psi_rad": -2.2034694101914276, "kappa_radpm": -0.1737745840265289, "vx_mps": 6.401156677456414, "ax_mps2": 4.721218236560229}, {"id": 334, "s_m": 33.35865981620086, "d_m": 0.0, "x_m": -2.340147821667842, "y_m": 10.949256662934063, "d_right": 0.797992774579779, "d_left": 0.8321257902769087, "psi_rad": -2.219920147922668, "kappa_radpm": -0.15569243632730262, "vx_mps": 6.474402037093186, "ax_mps2": 5.311655341917668}, {"id": 335, "s_m": 33.45853604319548, "d_m": 0.0, "x_m": -2.4011216078390096, "y_m": 10.870138998149967, "d_right": 0.8222402618445463, "d_left": 0.7626365239990023, "psi_rad": -2.2345745091330684, "kappa_radpm": -0.13768815413272628, "vx_mps": 6.555829308883009, "ax_mps2": 5.549948403336413}, {"id": 336, "s_m": 33.55841227019009, "d_m": 0.0, "x_m": -2.4631716810611493, "y_m": 10.791874640492573, "d_right": 0.8495607419564412, "d_left": 0.7016679097501741, "psi_rad": -2.247419247260278, "kappa_radpm": -0.11953382168969871, "vx_mps": 6.639842900271773, "ax_mps2": 5.50217774642344}, {"id": 337, "s_m": 33.65828849718471, "d_m": 0.0, "x_m": -2.5261525741478765, "y_m": 10.714355685489613, "d_right": 0.8862628198994283, "d_left": 0.6514576111904931, "psi_rad": -2.258455077322221, "kappa_radpm": -0.10146354957315555, "vx_mps": 6.722096938264317, "ax_mps2": 5.455354712806589}, {"id": 338, "s_m": 33.758164724179316, "d_m": 0.0, "x_m": -2.5899187860387975, "y_m": 10.637475435100512, "d_right": 0.9313918382632275, "d_left": 0.6125080915791159, "psi_rad": -2.267689036896172, "kappa_radpm": -0.08343206330170079, "vx_mps": 6.802669162813026, "ax_mps2": 5.4094383329864435}, {"id": 339, "s_m": 33.85804095117393, "d_m": 0.0, "x_m": -2.6543150986900406, "y_m": 10.5611390952158, "d_right": 0.9791510440822765, "d_left": 0.5639240018892506, "psi_rad": -2.2751216993365215, "kappa_radpm": -0.06542626631777892, "vx_mps": 6.881631806512519, "ax_mps2": 5.364390519676519}, {"id": 340, "s_m": 33.95791717816854, "d_m": 0.0, "x_m": -2.719218041657842, "y_m": 10.485214472242058, "d_right": 1.016385916534, "d_left": 0.5133479078349904, "psi_rad": -2.2807590162854483, "kappa_radpm": -0.04744334927271115, "vx_mps": 6.959052125890899, "ax_mps2": 5.320175790583912}, {"id": 341, "s_m": 34.05779340516316, "d_m": 0.0, "x_m": -2.7844703473924395, "y_m": 10.409609479823843, "d_right": 1.0420958394652022, "d_left": 0.4697084734213198, "psi_rad": -2.28460240194324, "kappa_radpm": -0.029813755013456716, "vx_mps": 7.034992868559988, "ax_mps2": 5.276761024603562}, {"id": 342, "s_m": 34.15766963215777, "d_m": 0.0, "x_m": -2.8499617086897167, "y_m": 10.33418452395117, "d_right": 1.0675898235639247, "d_left": 0.4237313010724885, "psi_rad": -2.2867601709076184, "kappa_radpm": -0.013384121203227082, "vx_mps": 7.109512685442591, "ax_mps2": 5.234115246628767}, {"id": 343, "s_m": 34.25754585915238, "d_m": 0.0, "x_m": -2.9155370128697458, "y_m": 10.258866411664405, "d_right": 1.0933000596576983, "d_left": 0.3908093074532807, "psi_rad": -2.2872698981141752, "kappa_radpm": 0.0035000945942115502, "vx_mps": 7.182666495769214, "ax_mps2": 5.1922094369735055}, {"id": 344, "s_m": 34.357422086147, "d_m": 0.0, "x_m": -2.98110038213412, "y_m": 10.18350684586653, "d_right": 1.1273435553363687, "d_left": 0.37292195075962764, "psi_rad": -2.286009499104028, "kappa_radpm": 0.021745012407376276, "vx_mps": 7.2545058112946, "ax_mps2": 5.151016362050484}, {"id": 345, "s_m": 34.45729831314161, "d_m": 0.0, "x_m": -3.046478633728879, "y_m": 10.108029238978919, "d_right": 1.1359293557800918, "d_left": 0.33992704192531165, "psi_rad": -2.28289345279517, "kappa_radpm": 0.04262940968595963, "vx_mps": 7.325079025168625, "ax_mps2": 5.110510423473584}, {"id": 346, "s_m": 34.557174540136224, "d_m": 0.0, "x_m": -3.1115415558849633, "y_m": 10.03225489412764, "d_right": 1.118396323153261, "d_left": 0.3341938042088524, "psi_rad": -2.277197983280349, "kappa_radpm": 0.07141524255719557, "vx_mps": 7.394431670060366, "ax_mps2": 5.070667523191569}, {"id": 347, "s_m": 34.65705076713083, "d_m": 0.0, "x_m": -3.1760595052989187, "y_m": 9.956022698651596, "d_right": 1.0972067654318, "d_left": 0.33740458167863874, "psi_rad": -2.268689141968018, "kappa_radpm": 0.09561165330322025, "vx_mps": 7.462606649443122, "ax_mps2": 5.031464942618295}, {"id": 348, "s_m": 34.75692699412545, "d_m": 0.0, "x_m": -3.239857440352239, "y_m": 9.879183912757735, "d_right": 1.067706937268044, "d_left": 0.35997573400446586, "psi_rad": -2.2585911055918224, "kappa_radpm": 0.10661284496367082, "vx_mps": 7.529644445374662, "ax_mps2": 4.99288123402131}, {"id": 349, "s_m": 34.85680322112006, "d_m": 0.0, "x_m": -3.3028406629710623, "y_m": 9.801661875879189, "d_right": 1.0392437329387585, "d_left": 0.4056607012286561, "psi_rad": -2.2474269320818596, "kappa_radpm": 0.11492068511241287, "vx_mps": 7.595583305627947, "ax_mps2": 4.954896122682669}, {"id": 350, "s_m": 34.95667944811468, "d_m": 0.0, "x_m": -3.364930426361002, "y_m": 9.723432695311095, "d_right": 1.0191663874836139, "d_left": 0.42618001357974244, "psi_rad": -2.2359194199177264, "kappa_radpm": 0.11552444068486276, "vx_mps": 7.660459412626738, "ax_mps2": 4.917490418553273}, {"id": 351, "s_m": 35.05655567510929, "d_m": 0.0, "x_m": -3.426115819816131, "y_m": 9.644489198025695, "d_right": 0.9864832445432629, "d_left": 0.435979750453165, "psi_rad": -2.224347995759091, "kappa_radpm": 0.1162453783001734, "vx_mps": 7.7243070363027435, "ax_mps2": 4.833574292211106}, {"id": 352, "s_m": 35.156431902103904, "d_m": 0.0, "x_m": -3.4863786560407033, "y_m": 9.564842822471581, "d_right": 0.9606650324800563, "d_left": 0.4589820209470277, "psi_rad": -2.212690433157883, "kappa_radpm": 0.11719788560006028, "vx_mps": 7.786554919698731, "ax_mps2": 4.659853782298479}, {"id": 353, "s_m": 35.256308129098514, "d_m": 0.0, "x_m": -3.5457054164074533, "y_m": 9.484496094884529, "d_right": 0.9367365325424851, "d_left": 0.5001873241924423, "psi_rad": -2.2009385154032763, "kappa_radpm": 0.11803832589347618, "vx_mps": 7.846098058635871, "ax_mps2": 4.4954270284393365}, {"id": 354, "s_m": 35.35618435609313, "d_m": 0.0, "x_m": -3.604081256562958, "y_m": 9.403455464745662, "d_right": 0.903801196681667, "d_left": 0.54241755571765, "psi_rad": -2.189123728661712, "kappa_radpm": 0.11855286904923523, "vx_mps": 7.903115039425269, "ax_mps2": 4.353822468475796}, {"id": 355, "s_m": 35.45606058308774, "d_m": 0.0, "x_m": -3.66149287127983, "y_m": 9.321730119621495, "d_right": 0.8629948112756262, "d_left": 0.5806280203624055, "psi_rad": -2.177256875879177, "kappa_radpm": 0.1190506685051954, "vx_mps": 7.957946597502481, "ax_mps2": 4.21583144990302}, {"id": 356, "s_m": 35.55593681008236, "d_m": 0.0, "x_m": -3.7179295304381355, "y_m": 9.239326863034412, "d_right": 0.8333843074191407, "d_left": 0.625863413158679, "psi_rad": -2.165346456030015, "kappa_radpm": 0.11945301515491714, "vx_mps": 8.010682662946051, "ax_mps2": 4.086501675001319}, {"id": 357, "s_m": 35.65581303707697, "d_m": 0.0, "x_m": -3.773378186508529, "y_m": 9.15625748144527, "d_right": 0.81619840678258, "d_left": 0.6744680750451305, "psi_rad": -2.1533955435129, "kappa_radpm": 0.11984429447958539, "vx_mps": 8.061471668637, "ax_mps2": 3.9604096913875217}, {"id": 358, "s_m": 35.755689264071584, "d_m": 0.0, "x_m": -3.82783021533007, "y_m": 9.072527905472567, "d_right": 0.8122319910349997, "d_left": 0.7091758856106484, "psi_rad": -2.141408576158626, "kappa_radpm": 0.120192263429258, "vx_mps": 8.110390065767145, "ax_mps2": 3.8396535671618146}, {"id": 359, "s_m": 35.855565491066194, "d_m": 0.0, "x_m": -3.8812713002331787, "y_m": 8.988153694674484, "d_right": 0.794456034504755, "d_left": 0.7421867199100479, "psi_rad": -2.1293862743086756, "kappa_radpm": 0.12051506857261873, "vx_mps": 8.157536836656236, "ax_mps2": 3.7230222611414265}, {"id": 360, "s_m": 35.95544171806081, "d_m": 0.0, "x_m": -3.9336953913286012, "y_m": 8.90313859683423, "d_right": 0.7716213111699445, "d_left": 0.7855306033201777, "psi_rad": -2.1173396686097377, "kappa_radpm": 0.12071137314657432, "vx_mps": 8.202992751083167, "ax_mps2": 3.6173131638443468}, {"id": 361, "s_m": 36.05531794505542, "d_m": 0.0, "x_m": -3.985087476362368, "y_m": 8.817503063053431, "d_right": 0.7315932747203894, "d_left": 0.8375929310867603, "psi_rad": -2.105274024615337, "kappa_radpm": 0.12085826817642208, "vx_mps": 8.24691804589135, "ax_mps2": 3.517307188820589}, {"id": 362, "s_m": 36.15519417205004, "d_m": 0.0, "x_m": -4.035445619869208, "y_m": 8.731247732383967, "d_right": 0.6996908523128893, "d_left": 0.8872024127617275, "psi_rad": -2.0932033816150755, "kappa_radpm": 0.1208479930484182, "vx_mps": 8.289405768693513, "ax_mps2": 3.4303832377723302}, {"id": 363, "s_m": 36.25507039904465, "d_m": 0.0, "x_m": -4.084755683532531, "y_m": 8.644396727226566, "d_right": 0.6822699912597624, "d_left": 0.9360591520222492, "psi_rad": -2.0811332552027277, "kappa_radpm": 0.12087377535286851, "vx_mps": 8.330634757803141, "ax_mps2": 3.3431366199826194}, {"id": 364, "s_m": 36.354946626039265, "d_m": 0.0, "x_m": -4.133017363053288, "y_m": 8.556949961775153, "d_right": 0.6747422055114426, "d_left": 0.9840935928210405, "psi_rad": -2.069056147732261, "kappa_radpm": 0.12096155831930984, "vx_mps": 8.370619762704587, "ax_mps2": 3.2536848283001656}, {"id": 365, "s_m": 36.454822853033875, "d_m": 0.0, "x_m": -4.1802151149710385, "y_m": 8.468933848631337, "d_right": 0.6615848306462331, "d_left": 1.0312362434266982, "psi_rad": -2.056969129049415, "kappa_radpm": 0.12111047345007263, "vx_mps": 8.409352337769006, "ax_mps2": 3.1620247090060896}, {"id": 366, "s_m": 36.55469908002849, "d_m": 0.0, "x_m": -4.226348792170726, "y_m": 8.380345424285485, "d_right": 0.6526990775306768, "d_left": 1.068063876950168, "psi_rad": -2.044860843660066, "kappa_radpm": 0.12134628581325434, "vx_mps": 8.446823600380181, "ax_mps2": 3.0662619641054327}, {"id": 367, "s_m": 36.6545753070231, "d_m": 0.0, "x_m": -4.27140087670385, "y_m": 8.29121338820567, "d_right": 0.6364484501361019, "d_left": 1.083620997828068, "psi_rad": -2.0327289072265167, "kappa_radpm": 0.12161212216320097, "vx_mps": 8.483001962032278, "ax_mps2": -3.437554856706542}, {"id": 368, "s_m": 36.75445153401772, "d_m": 0.0, "x_m": -4.315371474189639, "y_m": 8.201531638555199, "d_right": 0.6149782290848017, "d_left": 1.1057600096342497, "psi_rad": -2.020567281785439, "kappa_radpm": 0.12191214916764466, "vx_mps": 8.442432248439648, "ax_mps2": -3.584824038953864}, {"id": 369, "s_m": 36.85432776101233, "d_m": 0.0, "x_m": -4.358242465478053, "y_m": 8.11133035139196, "d_right": 0.5959413943284281, "d_left": 1.1275456294982693, "psi_rad": -2.008375569518469, "kappa_radpm": 0.12225061456719666, "vx_mps": 8.399915765684389, "ax_mps2": -3.645520417298618}, {"id": 370, "s_m": 36.954203988006945, "d_m": 0.0, "x_m": -4.400013182800687, "y_m": 8.020603004634719, "d_right": 0.5916359379100057, "d_left": 1.156421108643266, "psi_rad": -1.9961453587873557, "kappa_radpm": 0.12264739183585151, "vx_mps": 8.356457576100647, "ax_mps2": -3.7040283574342507}, {"id": 371, "s_m": 37.054080215001555, "d_m": 0.0, "x_m": -4.440665167534997, "y_m": 7.929380289319023, "d_right": 0.5927469577758606, "d_left": 1.1803083161958565, "psi_rad": -1.983875348259149, "kappa_radpm": 0.12307979160211345, "vx_mps": 8.312069204904802, "ax_mps2": -3.762052863388945}, {"id": 372, "s_m": 37.15395644199617, "d_m": 0.0, "x_m": -4.480196672632746, "y_m": 7.8376555243511445, "d_right": 0.5817445650726227, "d_left": 1.1993461932892036, "psi_rad": -1.971558469304326, "kappa_radpm": 0.12355344639650236, "vx_mps": 8.266741508939758, "ax_mps2": -3.8192675029732457}, {"id": 373, "s_m": 37.25383266899078, "d_m": 0.0, "x_m": -4.518589378511442, "y_m": 7.745459320017761, "d_right": 0.5720523801008285, "d_left": 1.22507100099439, "psi_rad": -1.959194351726219, "kappa_radpm": 0.12405952996248117, "vx_mps": 8.220468789519694, "ax_mps2": -3.8763920855162244}, {"id": 374, "s_m": 37.3537088959854, "d_m": 0.0, "x_m": -4.555840371785143, "y_m": 7.652785526973592, "d_right": 0.5579987566703694, "d_left": 1.24408919967284, "psi_rad": -1.9467758685260437, "kappa_radpm": 0.12460944716019474, "vx_mps": 8.173236096416222, "ax_mps2": -3.9327135714890877}, {"id": 375, "s_m": 37.45358512298001, "d_m": 0.0, "x_m": -4.591931741966756, "y_m": 7.55966402212141, "d_right": 0.5531316730302918, "d_left": 1.2545168022195503, "psi_rad": -1.934302466378674, "kappa_radpm": 0.12518998833769673, "vx_mps": 8.12503655998048, "ax_mps2": -3.989238442573688}, {"id": 376, "s_m": 37.553461349974626, "d_m": 0.0, "x_m": -4.62685897174876, "y_m": 7.4660904460693995, "d_right": 0.5233363316049765, "d_left": 1.2627255716137058, "psi_rad": -1.9217677202516956, "kappa_radpm": 0.12580835155308018, "vx_mps": 8.075850353527308, "ax_mps2": -4.04555680740839}, {"id": 377, "s_m": 37.653337576969236, "d_m": 0.0, "x_m": -4.660604841307187, "y_m": 7.372093322334913, "d_right": 0.5052895805529851, "d_left": 1.2774736048286774, "psi_rad": -1.9091713484121655, "kappa_radpm": 0.1264488332004321, "vx_mps": 8.025661906194063, "ax_mps2": -4.1028133451736215}, {"id": 378, "s_m": 37.75321380396385, "d_m": 0.0, "x_m": -4.693163367560077, "y_m": 7.277670455359611, "d_right": 0.5078137881352169, "d_left": 1.298531846836461, "psi_rad": -1.8965086911341578, "kappa_radpm": 0.12711240938562476, "vx_mps": 7.974440544550841, "ax_mps2": -4.161040490317093}, {"id": 379, "s_m": 37.85309003095846, "d_m": 0.0, "x_m": -4.724518358052408, "y_m": 7.1828484880910555, "d_right": 0.49463349256929706, "d_left": 1.3012545450692128, "psi_rad": -1.8837798643049526, "kappa_radpm": 0.12779776186264422, "vx_mps": 7.922153996829838, "ax_mps2": -4.220435810906512}, {"id": 380, "s_m": 37.95296625795308, "d_m": 0.0, "x_m": -4.754662355568512, "y_m": 7.087628226751605, "d_right": 0.4974754818538395, "d_left": 1.292085822040905, "psi_rad": -1.8709801188429047, "kappa_radpm": 0.12851082625707883, "vx_mps": 7.868766201848569, "ax_mps2": -4.280711534738108}, {"id": 381, "s_m": 38.05284248494769, "d_m": 0.0, "x_m": -4.783580022773557, "y_m": 6.992034572092865, "d_right": 0.48945570217339057, "d_left": 1.282487660616946, "psi_rad": -1.8581092278689413, "kappa_radpm": 0.12924010300656605, "vx_mps": 7.814243335440128, "ax_mps2": -4.342696945773314}, {"id": 382, "s_m": 38.152718711942306, "d_m": 0.0, "x_m": -4.811262706425452, "y_m": 6.8960711031761885, "d_right": 0.48872964061537166, "d_left": 1.2790358725517126, "psi_rad": -1.8451641364700375, "kappa_radpm": 0.12998016830028006, "vx_mps": 7.758539458791241, "ax_mps2": -4.4068631220486925}, {"id": 383, "s_m": 38.252594938936916, "d_m": 0.0, "x_m": -4.837696153054446, "y_m": 6.7997605666467456, "d_right": 0.465822561617089, "d_left": 1.28207802630671, "psi_rad": -1.8321450915613635, "kappa_radpm": 0.1307475244246504, "vx_mps": 7.701600665484862, "ax_mps2": -4.4723333134981695}, {"id": 384, "s_m": 38.35247116593153, "d_m": 0.0, "x_m": -4.862870613996507, "y_m": 6.703109566057086, "d_right": 0.4508831532584191, "d_left": 1.2827572051810565, "psi_rad": -1.8190462780484564, "kappa_radpm": 0.13155346538631366, "vx_mps": 7.643382317807203, "ax_mps2": -4.538373891921204}, {"id": 385, "s_m": 38.45234739292614, "d_m": 0.0, "x_m": -4.886772459939479, "y_m": 6.606138657200698, "d_right": 0.45243647057788544, "d_left": 1.269784274933091, "psi_rad": -1.8058692049320246, "kappa_radpm": 0.1322710604978292, "vx_mps": 7.583847436106289, "ax_mps2": -4.612607936262108}, {"id": 386, "s_m": 38.55222361992076, "d_m": 0.0, "x_m": -4.9093917616903475, "y_m": 6.508858323909744, "d_right": 0.4401938186013561, "d_left": 1.2632707055753092, "psi_rad": -1.7926278593803282, "kappa_radpm": 0.1328858541980948, "vx_mps": 7.522855985566743, "ax_mps2": -4.696402603088124}, {"id": 387, "s_m": 38.65209984691537, "d_m": 0.0, "x_m": -4.9307169492765155, "y_m": 6.411290806019118, "d_right": 0.4248432145001137, "d_left": 1.2633114874026141, "psi_rad": -1.779319392879863, "kappa_radpm": 0.13375610491962653, "vx_mps": 7.460244247656316, "ax_mps2": -4.7692521281547755}, {"id": 388, "s_m": 38.75197607390999, "d_m": 0.0, "x_m": -4.950737399213929, "y_m": 6.313444238034339, "d_right": 0.4339295860835828, "d_left": 1.2529284837687347, "psi_rad": -1.7659045609141462, "kappa_radpm": 0.13487000303384636, "vx_mps": 7.39611887535597, "ax_mps2": -4.833078723962715}, {"id": 389, "s_m": 38.851852300904596, "d_m": 0.0, "x_m": -4.969436731638336, "y_m": 6.215342534433923, "d_right": 0.42962789293403947, "d_left": 1.2366292659711136, "psi_rad": -1.7523611146844233, "kappa_radpm": 0.13676934037548674, "vx_mps": 7.330563080893733, "ax_mps2": -4.843737143822354}, {"id": 390, "s_m": 38.95172852789921, "d_m": 0.0, "x_m": -4.986795077829621, "y_m": 6.116988558477868, "d_right": 0.4123077903349705, "d_left": 1.2268963927564145, "psi_rad": -1.7385655786022323, "kappa_radpm": 0.1394791774234198, "vx_mps": 7.264269178795958, "ax_mps2": -4.800142145068117}, {"id": 391, "s_m": 39.05160475489382, "d_m": 0.0, "x_m": -5.002780883870959, "y_m": 6.018405714439768, "d_right": 0.4059660910894788, "d_left": 1.2238625990738459, "psi_rad": -1.7244847996139878, "kappa_radpm": 0.142830344239623, "vx_mps": 7.1979696115662, "ax_mps2": -4.727566764781233}, {"id": 392, "s_m": 39.15148098188844, "d_m": 0.0, "x_m": -5.017359366103214, "y_m": 5.919599349423892, "d_right": 0.425115635565797, "d_left": 1.20196519668827, "psi_rad": -1.7100192975870385, "kappa_radpm": 0.1468370256352408, "vx_mps": 7.132070068806635, "ax_mps2": -4.656220818503989}, {"id": 393, "s_m": 39.25135720888305, "d_m": 0.0, "x_m": -5.030486813113656, "y_m": 5.82059318944128, "d_right": 0.4320186330626747, "d_left": 1.1766012095357996, "psi_rad": -1.695151817739644, "kappa_radpm": 0.15092868063866696, "vx_mps": 7.066564365485934, "ax_mps2": -4.586202230588864}, {"id": 394, "s_m": 39.35123343587767, "d_m": 0.0, "x_m": -5.04212085258297, "y_m": 5.721396160165727, "d_right": 0.45624194606592866, "d_left": 1.1555070022925038, "psi_rad": -1.6798688824441088, "kappa_radpm": 0.15510539775298499, "vx_mps": 7.0014446210410455, "ax_mps2": -4.53350722657769}, {"id": 395, "s_m": 39.45110966287228, "d_m": 0.0, "x_m": -5.052216533418855, "y_m": 5.622035277012585, "d_right": 0.48581035982412524, "d_left": 1.1412430669921034, "psi_rad": -1.664175710344428, "kappa_radpm": 0.15904711647586256, "vx_mps": 6.936472272547324, "ax_mps2": -4.495004953212321}, {"id": 396, "s_m": 39.550985889866894, "d_m": 0.0, "x_m": -5.060733163462212, "y_m": 5.522521140829257, "d_right": 0.5099174130918904, "d_left": 1.129974342763045, "psi_rad": -1.64810240969606, "kappa_radpm": 0.16281352760259488, "vx_mps": 6.8714452131789505, "ax_mps2": -4.465709706829479}, {"id": 397, "s_m": 39.650862116861504, "d_m": 0.0, "x_m": -5.067630206564514, "y_m": 5.422886576438224, "d_right": 0.5323277725141791, "d_left": 1.097407380274208, "psi_rad": -1.6316551625377924, "kappa_radpm": 0.16650663954899816, "vx_mps": 6.806226770022965, "ax_mps2": -4.443751835025171}, {"id": 398, "s_m": 39.75073834385612, "d_m": 0.0, "x_m": -5.0728697037270525, "y_m": 5.323145592036332, "d_right": 0.5304209708697578, "d_left": 1.071552901973531, "psi_rad": -1.6148421420870127, "kappa_radpm": 0.1701672195332757, "vx_mps": 6.740702671903858, "ax_mps2": -4.423965353218773}, {"id": 399, "s_m": 39.85061457085073, "d_m": 0.0, "x_m": -5.07641308662606, "y_m": 5.223335894405626, "d_right": 0.5486931414001338, "d_left": 1.0528796844697568, "psi_rad": -1.5976611558005924, "kappa_radpm": 0.1739098467865129, "vx_mps": 6.67483142673604, "ax_mps2": -4.406889625159907}, {"id": 400, "s_m": 39.95049079784535, "d_m": 0.0, "x_m": -5.078222428100066, "y_m": 5.123473794089091, "d_right": 0.5708795555331557, "d_left": 1.0315668623802199, "psi_rad": -1.580100765583917, "kappa_radpm": 0.1777282913979396, "vx_mps": 6.608561686044679, "ax_mps2": -4.395764655588371}, {"id": 401, "s_m": 40.05036702483996, "d_m": 0.0, "x_m": -5.078258917131045, "y_m": 5.023601355477032, "d_right": 0.5774758576122881, "d_left": 0.9929510952717587, "psi_rad": -1.5621589548770127, "kappa_radpm": 0.1815555465279245, "vx_mps": 6.541790487408232, "ax_mps2": -4.389306270306467}, {"id": 402, "s_m": 40.150243251834574, "d_m": 0.0, "x_m": -5.076484323712166, "y_m": 4.923738359934899, "d_right": 0.5918992006956266, "d_left": 0.9614330213145795, "psi_rad": -1.5438324408787785, "kappa_radpm": 0.1854262290560852, "vx_mps": 6.474430328788841, "ax_mps2": -4.389276645602768}, {"id": 403, "s_m": 40.250119478829184, "d_m": 0.0, "x_m": -5.072860866287294, "y_m": 4.8239305646776725, "d_right": 0.6189714324403687, "d_left": 0.9377054512333542, "psi_rad": -1.525119249898502, "kappa_radpm": 0.18928572114978162, "vx_mps": 6.406362407883592, "ax_mps2": -4.389854349032865}, {"id": 404, "s_m": 40.3499957058238, "d_m": 0.0, "x_m": -5.067350928498191, "y_m": 4.724204181690389, "d_right": 0.6316876740008298, "d_left": 0.914843922756643, "psi_rad": -1.5060197172250476, "kappa_radpm": 0.19317905585537842, "vx_mps": 6.337554348663957, "ax_mps2": -4.395858613434737}, {"id": 405, "s_m": 40.44987193281841, "d_m": 0.0, "x_m": -5.0599183111565775, "y_m": 4.6246075923733745, "d_right": 0.6391157062451625, "d_left": 0.8879103716364147, "psi_rad": -1.4865291381372039, "kappa_radpm": 0.19711733146709967, "vx_mps": 6.2678953067872945, "ax_mps2": -4.407158136840368}, {"id": 406, "s_m": 40.54974815981303, "d_m": 0.0, "x_m": -5.050525989289203, "y_m": 4.52517248091112, "d_right": 0.6485015553439656, "d_left": 0.8546988714066105, "psi_rad": -1.4666422037950166, "kappa_radpm": 0.20111602708158424, "vx_mps": 6.1972712482102725, "ax_mps2": -4.42336788823715}, {"id": 407, "s_m": 40.64962438680764, "d_m": 0.0, "x_m": -5.039138699615623, "y_m": 4.425949294595272, "d_right": 0.6684736968563821, "d_left": 0.8042198068049004, "psi_rad": -1.4463551860173909, "kappa_radpm": 0.20510628408769843, "vx_mps": 6.12556873549887, "ax_mps2": -4.447666092586949}, {"id": 408, "s_m": 40.749500613802255, "d_m": 0.0, "x_m": -5.025720814181026, "y_m": 4.326977296740267, "d_right": 0.7040854013506364, "d_left": 0.7616227216515523, "psi_rad": -1.4256680453988952, "kappa_radpm": 0.20915860258651836, "vx_mps": 6.0526159730154925, "ax_mps2": -4.477558879039861}, {"id": 409, "s_m": 40.849376840796864, "d_m": 0.0, "x_m": -5.01023844077363, "y_m": 4.22830732385094, "d_right": 0.7391905092650798, "d_left": 0.7282742673169866, "psi_rad": -1.4045747470255123, "kappa_radpm": 0.2131753259685841, "vx_mps": 5.978273725987532, "ax_mps2": -4.517274611836966}, {"id": 410, "s_m": 40.94925306779148, "d_m": 0.0, "x_m": -4.992658952540226, "y_m": 4.129990337191656, "d_right": 0.7664311999177448, "d_left": 0.6988176002331254, "psi_rad": -1.3830813468326064, "kappa_radpm": 0.2172448392782149, "vx_mps": 5.902323275946104, "ax_mps2": -4.565298942792456}, {"id": 411, "s_m": 41.04912929478609, "d_m": 0.0, "x_m": -4.972949862921699, "y_m": 4.032077782964958, "d_right": 0.8071570517082821, "d_left": 0.6741016338306963, "psi_rad": -1.361150643108613, "kappa_radpm": 0.22223439017847174, "vx_mps": 5.8245592439907385, "ax_mps2": -4.591082645807179}, {"id": 412, "s_m": 41.14900552178071, "d_m": 0.0, "x_m": -4.951072779997037, "y_m": 3.934629041485702, "d_right": 0.8594472294008099, "d_left": 0.6113281975409042, "psi_rad": -1.3386744239320065, "kappa_radpm": 0.2278649932174941, "vx_mps": 5.745294627936029, "ax_mps2": -4.606078505267751}, {"id": 413, "s_m": 41.24888174877532, "d_m": 0.0, "x_m": -4.926982388238436, "y_m": 3.837699849790881, "d_right": 0.9037086877460252, "d_left": 0.555287097196747, "psi_rad": -1.3156107205336798, "kappa_radpm": 0.23424432925367325, "vx_mps": 5.664656642471489, "ax_mps2": -4.60013957142443}, {"id": 414, "s_m": 41.348757975769935, "d_m": 0.0, "x_m": -4.900631755052976, "y_m": 3.741364535110839, "d_right": 0.9583004269259894, "d_left": 0.5085048303039295, "psi_rad": -1.2918661497980048, "kappa_radpm": 0.24127334076517742, "vx_mps": 5.582960299788218, "ax_mps2": -4.565168458746927}, {"id": 415, "s_m": 41.448634202764545, "d_m": 0.0, "x_m": -4.871963847956206, "y_m": 3.645682995345152, "d_right": 1.0085540310316534, "d_left": 0.4449135022061818, "psi_rad": -1.2673743214921975, "kappa_radpm": 0.24958412402426775, "vx_mps": 5.500685603313688, "ax_mps2": -4.512904658324526}, {"id": 416, "s_m": 41.54851042975916, "d_m": 0.0, "x_m": -4.840923279458513, "y_m": 3.550757599554891, "d_right": 1.0655132111701533, "d_left": 0.3942987166822959, "psi_rad": -1.2419842363271973, "kappa_radpm": 0.25890995893231755, "vx_mps": 5.418124982536182, "ax_mps2": -4.47944768911615}, {"id": 417, "s_m": 41.64838665675377, "d_m": 0.0, "x_m": -4.807448469764492, "y_m": 3.4566526692718074, "d_right": 1.1303749520338546, "d_left": 0.3620884218152816, "psi_rad": -1.216352035228697, "kappa_radpm": 0.24502960723745149, "vx_mps": 5.334913088136058, "ax_mps2": -5.083180680734192}, {"id": 418, "s_m": 41.74826288374839, "d_m": 0.0, "x_m": -4.771688544263138, "y_m": 3.363404015451043, "d_right": 1.1418605798845651, "d_left": 0.3413584609387595, "psi_rad": -1.193340878940095, "kappa_radpm": 0.21580710976441514, "vx_mps": 5.238885362643288, "ax_mps2": -6.084842832579798}, {"id": 419, "s_m": 41.848139110743, "d_m": 0.0, "x_m": -4.733958500931385, "y_m": 3.270950039291387, "d_right": 1.0765113794564962, "d_left": 0.3322095585191331, "psi_rad": -1.1746305235103245, "kappa_radpm": 0.1409128783461314, "vx_mps": 5.121567880539275, "ax_mps2": -8.326275134255281}, {"id": 420, "s_m": 41.948015337737615, "d_m": 0.0, "x_m": -4.6949333554465955, "y_m": 3.1790206583464173, "d_right": 0.9987460839253987, "d_left": 0.3318013958630172, "psi_rad": -1.1657927720380346, "kappa_radpm": 0.036059926270572314, "vx_mps": 4.956537467256203, "ax_mps2": -10.815240195956678}, {"id": 421, "s_m": 42.047891564732225, "d_m": 0.0, "x_m": -4.6555861755233146, "y_m": 3.0872722129718753, "d_right": 0.9255214151895352, "d_left": 0.34675846751648265, "psi_rad": -1.1670568798536323, "kappa_radpm": -0.05674062498771377, "vx_mps": 4.733591965377808, "ax_mps2": -9.170252638744069}, {"id": 422, "s_m": 42.14776779172684, "d_m": 0.0, "x_m": -4.616736781318179, "y_m": 2.9952545031586086, "d_right": 0.8572194212676881, "d_left": 0.3690570486523344, "psi_rad": -1.176960928169728, "kappa_radpm": -0.1413983674388103, "vx_mps": 4.535979764769565, "ax_mps2": -7.876055461167536}, {"id": 423, "s_m": 42.24764401872145, "d_m": 0.0, "x_m": -4.579201913741401, "y_m": 2.9027352794965244, "d_right": 0.7945027379984404, "d_left": 0.39354036348817856, "psi_rad": -1.195130584751106, "kappa_radpm": -0.22089440204647767, "vx_mps": 4.359111264957061, "ax_mps2": -6.822142910057262}, {"id": 424, "s_m": 42.34752024571607, "d_m": 0.0, "x_m": -4.543697478996239, "y_m": 2.809361355493854, "d_right": 0.7329904394682966, "d_left": 0.4347726941765724, "psi_rad": -1.2210239726615555, "kappa_radpm": -0.2974099361698591, "vx_mps": 4.1998941930156235, "ax_mps2": -5.90849758791033}, {"id": 425, "s_m": 42.44739647271068, "d_m": 0.0, "x_m": -4.5109858631132695, "y_m": 2.714984897487491, "d_right": 0.6713460804156124, "d_left": 0.48288205706355564, "psi_rad": -1.2545434778749067, "kappa_radpm": -0.37397026930355437, "vx_mps": 4.056953825218113, "ax_mps2": -5.0803532040575705}, {"id": 426, "s_m": 42.547272699705296, "d_m": 0.0, "x_m": -4.481822644056201, "y_m": 2.619451275784332, "d_right": 0.5998797374700061, "d_left": 0.5479260369600844, "psi_rad": -1.295784155093659, "kappa_radpm": -0.45191163198125117, "vx_mps": 3.929893296300717, "ax_mps2": -4.302874594766736}, {"id": 427, "s_m": 42.647148926699906, "d_m": 0.0, "x_m": -4.4569969886221825, "y_m": 2.5226799043724384, "d_right": 0.5293414639000644, "d_left": 0.6138067344810278, "psi_rad": -1.344887196373807, "kappa_radpm": -0.531624631143313, "vx_mps": 3.8189725792150946, "ax_mps2": -3.5147045466396154}, {"id": 428, "s_m": 42.747025153694516, "d_m": 0.0, "x_m": -4.437354067635832, "y_m": 2.424764895727009, "d_right": 0.4651922069307732, "d_left": 0.6812014896657727, "psi_rad": -1.40212769115207, "kappa_radpm": -0.6150891174557426, "vx_mps": 3.725920114892221, "ax_mps2": -2.714846887012745}, {"id": 429, "s_m": 42.84690138068913, "d_m": 0.0, "x_m": -4.423756299610563, "y_m": 2.325785352999851, "d_right": 0.4098595806806674, "d_left": 0.7595871513391147, "psi_rad": -1.4678215372749541, "kappa_radpm": -0.6998947293300465, "vx_mps": 3.6524215767997856, "ax_mps2": -1.7902914573388982}, {"id": 430, "s_m": 42.94677760768374, "d_m": 0.0, "x_m": -4.417116642642074, "y_m": 2.2261605298151586, "d_right": 0.3668544637769836, "d_left": 0.8279439963768135, "psi_rad": -1.5421804238568013, "kappa_radpm": -0.790282536862912, "vx_mps": 3.603133117539963, "ax_mps2": -0.9725215153068767}, {"id": 431, "s_m": 43.04665383467836, "d_m": 0.0, "x_m": -4.418348298831514, "y_m": 2.126259744309647, "d_right": 0.3401707771263366, "d_left": 0.8995961321786407, "psi_rad": -1.6253038856493438, "kappa_radpm": -0.8661754775224816, "vx_mps": 3.576073923099657, "ax_mps2": -0.04939930192580934}, {"id": 432, "s_m": 43.14653006167297, "d_m": 0.0, "x_m": -4.428207558864256, "y_m": 2.026918164037206, "d_right": 0.3331883134136816, "d_left": 0.9775849074724554, "psi_rad": -1.715347713128308, "kappa_radpm": -0.9390819810496991, "vx_mps": 3.574693982942923, "ax_mps2": -0.04939930192579693}, {"id": 433, "s_m": 43.246406288667586, "d_m": 0.0, "x_m": -4.447267058906531, "y_m": 1.9289659364210967, "d_right": 0.33755375591462744, "d_left": 0.9679746734004195, "psi_rad": -1.810117784520454, "kappa_radpm": -0.9166859820421036, "vx_mps": 3.5733135098817326, "ax_mps2": 0.24587022839883602}, {"id": 434, "s_m": 43.346282515662196, "d_m": 0.0, "x_m": -4.475188275672755, "y_m": 1.8331246409168467, "d_right": 0.3453034273067104, "d_left": 0.8781959566732559, "psi_rad": -1.896841046337097, "kappa_radpm": -0.8208592162799084, "vx_mps": 3.580179132583852, "ax_mps2": 1.428936070220725}, {"id": 435, "s_m": 43.44615874265681, "d_m": 0.0, "x_m": -4.510858850878537, "y_m": 1.7399178234549784, "d_right": 0.372678289391443, "d_left": 0.7953374089654597, "psi_rad": -1.9743111962084932, "kappa_radpm": -0.7328430351840742, "vx_mps": 3.61982266250837, "ax_mps2": 2.3468181642239947}, {"id": 436, "s_m": 43.54603496965142, "d_m": 0.0, "x_m": -4.553269103023706, "y_m": 1.6495220037599614, "d_right": 0.41643574427919455, "d_left": 0.7217344962867327, "psi_rad": -2.043196409320939, "kappa_radpm": -0.6468285585080067, "vx_mps": 3.6840058082716705, "ax_mps2": 3.1688415736381317}, {"id": 437, "s_m": 43.64591119664604, "d_m": 0.0, "x_m": -4.601415085258773, "y_m": 1.5620760033926449, "d_right": 0.47248669832742196, "d_left": 0.6603080006401854, "psi_rad": -2.103584468468723, "kappa_radpm": -0.5633158491148833, "vx_mps": 3.7689365444401854, "ax_mps2": 3.9432507515669286}, {"id": 438, "s_m": 43.74578742364065, "d_m": 0.0, "x_m": -4.654433816194981, "y_m": 1.4774265365528396, "d_right": 0.5374426151533437, "d_left": 0.6094965587027446, "psi_rad": -2.1557656914803704, "kappa_radpm": -0.48185986340314885, "vx_mps": 3.872022299824351, "ax_mps2": 4.717729962827614}, {"id": 439, "s_m": 43.84566365063527, "d_m": 0.0, "x_m": -4.711455429261681, "y_m": 1.3954405262165583, "d_right": 0.6039999932793182, "d_left": 0.5506839980363578, "psi_rad": -2.1998886258749053, "kappa_radpm": -0.401258404026138, "vx_mps": 3.9918585680946173, "ax_mps2": 5.544371688116381}, {"id": 440, "s_m": 43.94553987762988, "d_m": 0.0, "x_m": -4.771728571102804, "y_m": 1.3157895602836773, "d_right": 0.6699708813456853, "d_left": 0.4967181185278635, "psi_rad": -2.2359322766916483, "kappa_radpm": -0.3206352561653831, "vx_mps": 4.128248621170969, "ax_mps2": 6.469710738285143}, {"id": 441, "s_m": 44.04541610462449, "d_m": 0.0, "x_m": -4.834523453843737, "y_m": 1.238108644481398, "d_right": 0.7414600102578262, "d_left": 0.4500501913984442, "psi_rad": -2.2639790516416873, "kappa_radpm": -0.24086356384976554, "vx_mps": 4.281912805601366, "ax_mps2": 6.82218406515059}, {"id": 442, "s_m": 44.1452923316191, "d_m": 0.0, "x_m": -4.899167205996139, "y_m": 1.1619636376061862, "d_right": 0.8174474875578592, "d_left": 0.41759593058516253, "psi_rad": -2.2840669590283986, "kappa_radpm": -0.1614619823571183, "vx_mps": 4.438189414992666, "ax_mps2": 6.736028068823833}, {"id": 443, "s_m": 44.24516855861372, "d_m": 0.0, "x_m": -4.965057841746912, "y_m": 1.086840141823495, "d_right": 0.891979020881225, "d_left": 0.3895192708961214, "psi_rad": -2.2962297228912, "kappa_radpm": -0.08169236629012107, "vx_mps": 4.587271892992704, "ax_mps2": 6.653662242455069}, {"id": 444, "s_m": 44.34504478560833, "d_m": 0.0, "x_m": -5.031525725136546, "y_m": 1.0122945307925764, "d_right": 0.9671982126799173, "d_left": 0.36740165628922017, "psi_rad": -2.3003805819744496, "kappa_radpm": -0.0013591920126513923, "vx_mps": 4.729920589310848, "ax_mps2": 6.5746901067671875}, {"id": 445, "s_m": 44.44492101260295, "d_m": 0.0, "x_m": -5.098038990067745, "y_m": 0.9377229637610265, "d_right": 1.0218087566503167, "d_left": 0.36176772492431697, "psi_rad": -2.2966591348848397, "kappa_radpm": 0.07361400551659483, "vx_mps": 4.866770927856803, "ax_mps2": 6.4987801494964454}, {"id": 446, "s_m": 44.54479723959756, "d_m": 0.0, "x_m": -5.163954108291266, "y_m": 0.8627195614336699, "d_right": 1.0680105822528823, "d_left": 0.35542743035789015, "psi_rad": -2.2857246866493934, "kappa_radpm": 0.14554959595153935, "vx_mps": 4.998360385869601, "ax_mps2": 6.425651810988307}, {"id": 447, "s_m": 44.644673466592174, "d_m": 0.0, "x_m": -5.2287808835682466, "y_m": 0.7867599923959784, "d_right": 1.1160770448854245, "d_left": 0.3476681418512339, "psi_rad": -2.267726661040932, "kappa_radpm": 0.2129607777156799, "vx_mps": 5.12514841392479, "ax_mps2": 6.3045837059284}, {"id": 448, "s_m": 44.744549693586784, "d_m": 0.0, "x_m": -5.291969563215432, "y_m": 0.7094506541842703, "d_right": 1.1724195694646098, "d_left": 0.33946688648293455, "psi_rad": -2.2432604102571503, "kappa_radpm": 0.2769975227305467, "vx_mps": 5.246570530488982, "ax_mps2": 4.268814187544844}, {"id": 449, "s_m": 44.8444259205814, "d_m": 0.0, "x_m": -5.3530070364978695, "y_m": 0.630440190936667, "d_right": 1.1422213847933105, "d_left": 0.35732379617118903, "psi_rad": -2.2132964567316, "kappa_radpm": 0.31322885172994414, "vx_mps": 5.327213947363253, "ax_mps2": 3.0011038505066097}, {"id": 450, "s_m": 44.94430214757601, "d_m": 0.0, "x_m": -5.411565427667272, "y_m": 0.5495349373290315, "d_right": 1.0909386329870647, "d_left": 0.37283159422187395, "psi_rad": -2.1809806409166494, "kappa_radpm": 0.3339160878620595, "vx_mps": 5.383185516011571, "ax_mps2": -0.6762608407858497}, {"id": 451, "s_m": 45.04417837457063, "d_m": 0.0, "x_m": -5.467396019864155, "y_m": 0.46673188389455855, "d_right": 1.0455661034618666, "d_left": 0.37583781869830024, "psi_rad": -2.1469439619866435, "kappa_radpm": 0.34389720711874816, "vx_mps": 5.370623943017512, "ax_mps2": -2.1906934229586073}, {"id": 452, "s_m": 45.14405460156524, "d_m": 0.0, "x_m": -5.520355265942215, "y_m": 0.3820539022131647, "d_right": 1.0113265626992125, "d_left": 0.38876878811833254, "psi_rad": -2.1123757507238476, "kappa_radpm": 0.34837352288217394, "vx_mps": 5.329728431180987, "ax_mps2": -2.212775066347164}, {"id": 453, "s_m": 45.243930828559854, "d_m": 0.0, "x_m": -5.570333277479992, "y_m": 0.29559012583372885, "d_right": 0.9894692065354805, "d_left": 0.42231754770901403, "psi_rad": -2.077341140851942, "kappa_radpm": 0.35326838596550914, "vx_mps": 5.288099649260584, "ax_mps2": -2.2286013400621485}, {"id": 454, "s_m": 45.343807055554464, "d_m": 0.0, "x_m": -5.617232188081661, "y_m": 0.20741244461029662, "d_right": 0.9592376041048705, "d_left": 0.44187366522530985, "psi_rad": -2.041795119428384, "kappa_radpm": 0.35857850466208374, "vx_mps": 5.2458392382791175, "ax_mps2": -2.237864261538634}, {"id": 455, "s_m": 45.44368328254908, "d_m": 0.0, "x_m": -5.660940983875419, "y_m": 0.1176174952931813, "d_right": 0.935706765629369, "d_left": 0.46946603268585835, "psi_rad": -2.005710530800334, "kappa_radpm": 0.3640199016106377, "vx_mps": 5.203057796712591, "ax_mps2": -2.2494546318101047}, {"id": 456, "s_m": 45.54355950954369, "d_m": 0.0, "x_m": -5.7013591435750355, "y_m": 0.026287078835391053, "d_right": 0.8991805050462223, "d_left": 0.5020088131835044, "psi_rad": -1.9690655191419069, "kappa_radpm": 0.3698453064203313, "vx_mps": 5.159697312157972, "ax_mps2": -2.2566613555550195}, {"id": 457, "s_m": 45.64343573653831, "d_m": 0.0, "x_m": -5.738374250907094, "y_m": -0.06646816950224871, "d_right": 0.8728509885488067, "d_left": 0.5050765085352151, "psi_rad": -1.931818052875295, "kappa_radpm": 0.37612036011396666, "vx_mps": 5.115828643484398, "ax_mps2": -2.2498249426669585}, {"id": 458, "s_m": 45.74331196353292, "d_m": 0.0, "x_m": -5.77188096791497, "y_m": -0.16055321783366525, "d_right": 0.8611542458746061, "d_left": 0.5179071251247845, "psi_rad": -1.8939160428447481, "kappa_radpm": 0.38292124714787773, "vx_mps": 5.0717151592091145, "ax_mps2": -2.2472253219933855}, {"id": 459, "s_m": 45.843188190527535, "d_m": 0.0, "x_m": -5.8017645538198135, "y_m": -0.25584679004213606, "d_right": 0.8490713426964096, "d_left": 0.516168423010797, "psi_rad": -1.8553281944690134, "kappa_radpm": 0.38975662743609657, "vx_mps": 5.027266243537993, "ax_mps2": -2.2382538618992442}, {"id": 460, "s_m": 45.943064417522145, "d_m": 0.0, "x_m": -5.827917153970784, "y_m": -0.35223437442591854, "d_right": 0.8351044039013128, "d_left": 0.5296922768075163, "psi_rad": -1.8160401289665407, "kappa_radpm": 0.397067499148219, "vx_mps": 4.982600644427706, "ax_mps2": -2.2281106012800134}, {"id": 461, "s_m": 46.04294064451676, "d_m": 0.0, "x_m": -5.850227000251492, "y_m": -0.4495812983494541, "d_right": 0.8369158502430134, "d_left": 0.5272329777477307, "psi_rad": -1.7760034672313783, "kappa_radpm": 0.40466127850639, "vx_mps": 4.937736183868704, "ax_mps2": -2.209676584980938}, {"id": 462, "s_m": 46.14281687151137, "d_m": 0.0, "x_m": -5.868584599253377, "y_m": -0.5477496973576872, "d_right": 0.8387414745486125, "d_left": 0.5295252211606456, "psi_rad": -1.7351852301665645, "kappa_radpm": 0.4128209136924666, "vx_mps": 4.892836631353413, "ax_mps2": -2.1842800057053195}, {"id": 463, "s_m": 46.24269309850599, "d_m": 0.0, "x_m": -5.882879927366148, "y_m": -0.6465928424243297, "d_right": 0.8388404320593463, "d_left": 0.5066898898577281, "psi_rad": -1.6935245591089219, "kappa_radpm": 0.4214932233866803, "vx_mps": 4.84804445212444, "ax_mps2": -2.1449521562288525}, {"id": 464, "s_m": 46.3425693255006, "d_m": 0.0, "x_m": -5.893001707051557, "y_m": -0.7459467935507154, "d_right": 0.8548669230392754, "d_left": 0.47275604192774845, "psi_rad": -1.6509619895906091, "kappa_radpm": 0.4309520983492708, "vx_mps": 4.803652313904325, "ax_mps2": -2.0918725659285506}, {"id": 465, "s_m": 46.442445552495215, "d_m": 0.0, "x_m": -5.898838627584052, "y_m": -0.8456483324470631, "d_right": 0.8546820834035874, "d_left": 0.4541938553516772, "psi_rad": -1.607415146959788, "kappa_radpm": 0.4411713772424203, "vx_mps": 4.7599599656301095, "ax_mps2": -2.0208720050097018}, {"id": 466, "s_m": 46.542321779489825, "d_m": 0.0, "x_m": -5.9002772919801, "y_m": -0.9455034691183438, "d_right": 0.8692409310032485, "d_left": 0.45283220587584166, "psi_rad": -1.5628053302442826, "kappa_radpm": 0.45229452658359043, "vx_mps": 4.717366291926311, "ax_mps2": -1.9376613342528293}, {"id": 467, "s_m": 46.64219800648444, "d_m": 0.0, "x_m": -5.8972044155718955, "y_m": -1.0453308716924736, "d_right": 0.8990404293585155, "d_left": 0.4497581867174863, "psi_rad": -1.5170483078991621, "kappa_radpm": 0.46403743276276077, "vx_mps": 4.676162114991902, "ax_mps2": -1.8295654237181698}, {"id": 468, "s_m": 46.74207423347905, "d_m": 0.0, "x_m": -5.88950971929769, "y_m": -1.1448965797540633, "d_right": 0.9272749654521258, "d_left": 0.44205659105456274, "psi_rad": -1.4700718232356147, "kappa_radpm": 0.47688659779078735, "vx_mps": 4.636920523641095, "ax_mps2": -1.691807566799602}, {"id": 469, "s_m": 46.84195046047367, "d_m": 0.0, "x_m": -5.8770806520626016, "y_m": -1.24399527752691, "d_right": 0.9565814959875678, "d_left": 0.42959829030166347, "psi_rad": -1.4217474828295424, "kappa_radpm": 0.49094937352108003, "vx_mps": 4.60033577355156, "ax_mps2": -1.5202410572917913}, {"id": 470, "s_m": 46.94182668746828, "d_m": 0.0, "x_m": -5.859811099067672, "y_m": -1.3423489793471817, "d_right": 0.9895306945312422, "d_left": 0.4122542932988327, "psi_rad": -1.3719613490353249, "kappa_radpm": 0.5062652416297206, "vx_mps": 4.567211112656063, "ax_mps2": -1.3144839386390315}, {"id": 471, "s_m": 47.041702914462896, "d_m": 0.0, "x_m": -5.837587921312444, "y_m": -1.4397208812726277, "d_right": 1.018980919570082, "d_left": 0.389893005925396, "psi_rad": -1.3205858443597522, "kappa_radpm": 0.5226596367583197, "vx_mps": 4.538374814302632, "ax_mps2": -1.0565138992206735}, {"id": 472, "s_m": 47.141579141457505, "d_m": 0.0, "x_m": -5.810318443652128, "y_m": -1.5357809541901635, "d_right": 1.0617445324012271, "d_left": 0.36240028760188486, "psi_rad": -1.2675017485649556, "kappa_radpm": 0.5406847740734009, "vx_mps": 4.515064197888376, "ax_mps2": -0.7872432848525607}, {"id": 473, "s_m": 47.24145536845212, "d_m": 0.0, "x_m": -5.777897557137803, "y_m": -1.6302500304238035, "d_right": 1.116345810234584, "d_left": 0.35088054070138847, "psi_rad": -1.2126132146155761, "kappa_radpm": 0.5581693394367926, "vx_mps": 4.497616138913764, "ax_mps2": -0.45915153782751106}, {"id": 474, "s_m": 47.34133159544673, "d_m": 0.0, "x_m": -5.740272012452082, "y_m": -1.7227402383206993, "d_right": 1.1657768980774805, "d_left": 0.3412598481678044, "psi_rad": -1.1559469410907477, "kappa_radpm": 0.5769871238194875, "vx_mps": 4.487408415397866, "ax_mps2": -0.4458522795129866}, {"id": 475, "s_m": 47.44120782244135, "d_m": 0.0, "x_m": -5.697388271446698, "y_m": -1.8129366204673483, "d_right": 1.2212753646175034, "d_left": 0.34907694595666533, "psi_rad": -1.0979984110524708, "kappa_radpm": 0.5801965319901508, "vx_mps": 4.477474086986342, "ax_mps2": -0.44170109344279346}, {"id": 476, "s_m": 47.54108404943596, "d_m": 0.0, "x_m": -5.649361241483825, "y_m": -1.9004796022726744, "d_right": 1.2011465430501906, "d_left": 0.37730972928514117, "psi_rad": -1.0400263192700914, "kappa_radpm": 0.5811455914760271, "vx_mps": 4.467610471190304, "ax_mps2": -0.4588973331679482}, {"id": 477, "s_m": 47.640960276430576, "d_m": 0.0, "x_m": -5.596328185626421, "y_m": -1.9851151959258935, "d_right": 1.1403323212346588, "d_left": 0.399809138910739, "psi_rad": -0.9821531662280174, "kappa_radpm": 0.5765252844879155, "vx_mps": 4.457339728342438, "ax_mps2": -0.6028916737000611}, {"id": 478, "s_m": 47.740836503425186, "d_m": 0.0, "x_m": -5.538528236203125, "y_m": -2.0665330618016156, "d_right": 1.0786589385415255, "d_left": 0.41661518669452646, "psi_rad": -0.9248073940807293, "kappa_radpm": 0.572341059339658, "vx_mps": 4.443810117742272, "ax_mps2": -0.7576581462605578}, {"id": 479, "s_m": 47.8407127304198, "d_m": 0.0, "x_m": -5.476146161106553, "y_m": -2.144543769035677, "d_right": 1.0184147961420136, "d_left": 0.4501626716290822, "psi_rad": -0.8677533785597147, "kappa_radpm": 0.5701956835065193, "vx_mps": 4.426748726610548, "ax_mps2": -0.8887537322160267}, {"id": 480, "s_m": 47.94058895741441, "d_m": 0.0, "x_m": -5.409453669749331, "y_m": -2.2188429076479563, "d_right": 0.9526316366877624, "d_left": 0.4963420945492983, "psi_rad": -0.8108443451102327, "kappa_radpm": 0.5699684319469527, "vx_mps": 4.406651058291986, "ax_mps2": -0.9970302802465199}, {"id": 481, "s_m": 48.04046518440903, "d_m": 0.0, "x_m": -5.338607163257599, "y_m": -2.2892592114551724, "d_right": 0.8831973641668113, "d_left": 0.531260651357655, "psi_rad": -0.7538318272572204, "kappa_radpm": 0.5717272756863031, "vx_mps": 4.383995244564604, "ax_mps2": -1.0792832072130392}, {"id": 482, "s_m": 48.14034141140364, "d_m": 0.0, "x_m": -5.263894975062501, "y_m": -2.3554820645678607, "d_right": 0.824788497003153, "d_left": 0.5672296821531877, "psi_rad": -0.6965772719781991, "kappa_radpm": 0.5753922530655609, "vx_mps": 4.359337660146883, "ax_mps2": -1.1366729861739455}, {"id": 483, "s_m": 48.240217638398256, "d_m": 0.0, "x_m": -5.1854603997388375, "y_m": -2.4173348500419056, "d_right": 0.770077015725822, "d_left": 0.6126118404545883, "psi_rad": -0.6388122950023849, "kappa_radpm": 0.5814193488536991, "vx_mps": 4.333217236281073, "ax_mps2": -1.138170516383986}, {"id": 484, "s_m": 48.340093865392866, "d_m": 0.0, "x_m": -5.103611890550172, "y_m": -2.474498873020227, "d_right": 0.7299639957208675, "d_left": 0.6590498863190934, "psi_rad": -0.580373854755988, "kappa_radpm": 0.5894275331778626, "vx_mps": 4.30690367469456, "ax_mps2": -1.0651574687711727}, {"id": 485, "s_m": 48.43997009238748, "d_m": 0.0, "x_m": -5.018496832206401, "y_m": -2.526772859886916, "d_right": 0.7000314765891662, "d_left": 0.6659070936914798, "psi_rad": -0.5209734552893397, "kappa_radpm": 0.6002038591416086, "vx_mps": 4.282131647302019, "ax_mps2": -0.9437304560075818}, {"id": 486, "s_m": 48.53984631938209, "d_m": 0.0, "x_m": -4.930446812929206, "y_m": -2.573828389255741, "d_right": 0.6710046864891437, "d_left": 0.6815660930161171, "psi_rad": -0.4604150536051841, "kappa_radpm": 0.6130891566431335, "vx_mps": 4.260063258959146, "ax_mps2": -0.7404305697001606}, {"id": 487, "s_m": 48.63972254637671, "d_m": 0.0, "x_m": -4.839641445363823, "y_m": -2.615422512490522, "d_right": 0.6558651506600116, "d_left": 0.6952869063941493, "psi_rad": -0.39838166639007033, "kappa_radpm": 0.6293892614596674, "vx_mps": 4.242668517222076, "ax_mps2": -0.46547529864304593}, {"id": 488, "s_m": 48.73959877337132, "d_m": 0.0, "x_m": -4.746438106767547, "y_m": -2.6512145387737145, "d_right": 0.6202400834217449, "d_left": 0.7005452123495828, "psi_rad": -0.3346201636204371, "kappa_radpm": 0.647991571565544, "vx_mps": 4.231696623560349, "ax_mps2": -0.0691730437944798}, {"id": 489, "s_m": 48.83947500036594, "d_m": 0.0, "x_m": -4.651086528101142, "y_m": -2.68090837501776, "d_right": 0.5952874950761171, "d_left": 0.7134619170081329, "psi_rad": -0.26879256280892294, "kappa_radpm": 0.6706368806434774, "vx_mps": 4.230063690844879, "ax_mps2": -20.287338531892335}, {"id": 490, "s_m": 48.93935122736053, "d_m": 0.0, "x_m": -4.553981875574665, "y_m": -2.7041464914434448, "d_right": 0.5931872982370089, "d_left": 0.7290256277137677, "psi_rad": -0.20056960039514404, "kappa_radpm": 0.696017390927075, "vx_mps": 3.720348528289955, "ax_mps2": -2.339119263100952}]}, "global_traj_markers_sp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.527677389680503, "y": -2.3921702987522657, "z": 0.23599045946879596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4719809189375919}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.431332208094452, "y": -2.411328241974916, "z": 0.22346565451928976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4469313090385795}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -4.332147080650172, "y": -2.428316962294303, "z": 0.21157815201732305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4231563040346461}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -4.232843322471115, "y": -2.441566660659218, "z": 0.20215403388618594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4043080677723719}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -4.132883972305862, "y": -2.449371671051701, "z": 0.19272278368920068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38544556737840135}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -4.03257735925045, "y": -2.450823162458948, "z": 0.18289418530433235}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3657883706086647}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -3.9324558926864186, "y": -2.4454497969807365, "z": 0.17281928742345462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34563857484690924}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -3.833586010580563, "y": -2.4320373993353805, "z": 0.16385694261094372}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32771388522188744}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -3.7355675875871945, "y": -2.4084442967707593, "z": 0.157160229738095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31432045947619}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -3.642716274960876, "y": -2.373088138208881, "z": 0.15348180483963142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30696360967926284}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -3.5554402127896276, "y": -2.323773017774319, "z": 0.15043065305967568}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30086130611935136}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -3.477058042100958, "y": -2.2623178800445842, "z": 0.14527994623907314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2905598924781463}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -3.409784438437706, "y": -2.189000492707376, "z": 0.1441193003681101}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2882386007362202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -3.3579313067202365, "y": -2.104769623872268, "z": 0.14406363739572442}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28812727479144884}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -3.3235312750162964, "y": -2.0110201312568177, "z": 0.14400795290809462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28801590581618924}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -3.306661485881725, "y": -1.9139233588031108, "z": 0.1462974054671022}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2925948109342044}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -3.3020442385224373, "y": -1.8135120352343823, "z": 0.15622656530241694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3124531306048339}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -3.306061327178295, "y": -1.714042581432132, "z": 0.16924136458709144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3384827291741829}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -3.316626331219509, "y": -1.6139249109586624, "z": 0.18254981710523116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3650996342104623}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -3.3317361976437687, "y": -1.5154194029349803, "z": 0.1963419766297918}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3926839532595836}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -3.350043217076221, "y": -1.4161722987910326, "z": 0.20901547598557474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4180309519711495}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -3.369653978888756, "y": -1.3184541110809738, "z": 0.22077871692109646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4415574338421929}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -3.389652366683647, "y": -1.2197700294524194, "z": 0.2317824906216817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4635649812433634}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -3.4086149299044215, "y": -1.1214653066987779, "z": 0.24214008069226844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4842801613845369}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -3.4259872153793975, "y": -1.0231079881044618, "z": 0.24098156719870342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48196313439740684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -3.4412935314606967, "y": -0.9233824405331233, "z": 0.2308581066715027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4617162133430054}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -3.452992342394642, "y": -0.8245252736371902, "z": 0.22325920662573037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44651841325146074}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -3.459844022038555, "y": -0.7238035065373228, "z": 0.21742585405080964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43485170810161927}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -3.4604001589138003, "y": -0.6242611769826999, "z": 0.2136442338435682}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4272884676871364}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -3.4534863710234425, "y": -0.5241637972830434, "z": 0.21198853691531738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42397707383063477}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -3.4382090752567223, "y": -0.42609544859664633, "z": 0.21190666091365584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4238133218273117}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -3.4138644636974425, "y": -0.3294152193429933, "z": 0.21182475326470548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42364950652941097}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -3.381123496674879, "y": -0.23557244345860248, "z": 0.2124902006291798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4249804012583596}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -3.3411289832019473, "y": -0.14437293418578354, "z": 0.21579334864792746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4315866972958549}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -3.2945656717413896, "y": -0.05578062440261276, "z": 0.21981774232888154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4396354846577631}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -3.242810988568933, "y": 0.029079749558933426, "z": 0.22463850019144946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4492770003828989}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -3.186009645561649, "y": 0.11171452227942986, "z": 0.230869162818589}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.461738325637178}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -3.1260792535093644, "y": 0.19126914725957586, "z": 0.23870727368692274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4774145473738455}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -3.063434467325655, "y": 0.26955961379753646, "z": 0.24868647852964132}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49737295705928264}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -2.999911256671328, "y": 0.3465150010784446, "z": 0.2581548774657322}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5163097549314644}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -2.9359832338196785, "y": 0.42372843284506084, "z": 0.2671727285957225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.534345457191445}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -2.872696752288335, "y": 0.5010174009804647, "z": 0.27578931772312115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5515786354462423}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -2.8095039861115154, "y": 0.5788256987345235, "z": 0.28404556732316333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5680911346463267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -2.746858982142785, "y": 0.6567357855893563, "z": 0.29197589823595954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5839517964719191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -2.6848909180452227, "y": 0.7353522548137728, "z": 0.2996095901502233}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5992191803004466}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -2.624267295476174, "y": 0.8148803085038939, "z": 0.30697179655724066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6139435931144813}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -2.565662242316516, "y": 0.8958406880624392, "z": 0.312843348681548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.625686697363096}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -2.5093489760995116, "y": 0.9784917663089648, "z": 0.3169693030284888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6339386060569776}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -2.4550889153858466, "y": 1.0624093327661657, "z": 0.32239791224295505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6447958244859101}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -2.402534040486109, "y": 1.1475148667377248, "z": 0.3286190457124497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6572380914248994}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -2.351780479823793, "y": 1.233564261579412, "z": 0.33453046415180926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6690609283036185}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -2.302706824072104, "y": 1.3207229119408914, "z": 0.34016659846465863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6803331969293173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -2.255432049628693, "y": 1.4087280928125603, "z": 0.34557213288298744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6911442657659749}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -2.209854678189102, "y": 1.4977527316522585, "z": 0.3507144692533349}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7014289385066698}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -2.1661168591692856, "y": 1.5875716341157626, "z": 0.3554880663896337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7109761327792674}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -2.124192535496952, "y": 1.6783539021459273, "z": 0.35983958749414835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7196791749882967}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -2.084255197116114, "y": 1.769940724200235, "z": 0.3636237125596994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7272474251193988}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -2.0463388705978205, "y": 1.8624514610072096, "z": 0.3669150664769729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7338301329539458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -2.010564079766566, "y": 1.9557141028432763, "z": 0.36982557789834275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7396511557966855}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -1.976493308994374, "y": 2.049658695238799, "z": 0.37402268445403564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7480453689080713}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -1.9431452345749778, "y": 2.1438251271804365, "z": 0.3792949240536335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.758589848107267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -1.9099541542564171, "y": 2.238070591720435, "z": 0.38444892730744185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7688978546148837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -1.8770112843255398, "y": 2.3324564951641205, "z": 0.3894903518890536}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7789807037781072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -1.844356018922268, "y": 2.4269113809523795, "z": 0.39442442187942756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7888488437588551}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -1.8118141350638535, "y": 2.521504690368936, "z": 0.39925597291577164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7985119458315433}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -1.779356812053347, "y": 2.616042871450029, "z": 0.40398949146950863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8079789829390173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -1.746904559845166, "y": 2.710692312024067, "z": 0.4086291491603167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8172582983206333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -1.7145007982573612, "y": 2.8052718686559186, "z": 0.41317883285214546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8263576657042909}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -1.68207501964714, "y": 2.8999301642777287, "z": 0.41764217114815383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8352843422963077}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -1.6496515435970145, "y": 2.9945365381902245, "z": 0.42197952100866754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8439590420173351}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -1.6171902540744214, "y": 3.089144550684869, "z": 0.41198726719936385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8239745343987277}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -1.5846690088105588, "y": 3.183757069130916, "z": 0.4018195639754063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8036391279508126}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -1.5521018513538751, "y": 3.2782750981087965, "z": 0.39142518983212815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7828503796642563}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -1.5194239452945237, "y": 3.3728536830351956, "z": 0.38074717148917253}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7614943429783451}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -1.4867100961238555, "y": 3.4672787230953817, "z": 0.36975029960914385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7395005992182877}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -1.4538790845406626, "y": 3.56176964021267, "z": 0.3584548659204122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7169097318408244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -1.420991522723056, "y": 3.6561184933364355, "z": 0.34679197458435845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6935839491687169}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -1.38805284182033, "y": 3.75047588642874, "z": 0.3346336654120729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6692673308241458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -1.3551992171607237, "y": 3.8448017047698024, "z": 0.32201666828270165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6440333365654033}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -1.3222731765140114, "y": 3.939083765896645, "z": 0.3100764921310193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6201529842620386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -1.288803620094114, "y": 4.03321094423885, "z": 0.302270365389709}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.604540730779418}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -1.253430090916872, "y": 4.126661616735528, "z": 0.30044296241897805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6008859248379561}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -1.2145671907810374, "y": 4.218515428055911, "z": 0.29862091914553934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5972418382910787}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -1.1718409858597019, "y": 4.309084230056629, "z": 0.2967289662472089}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5934579324944178}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -1.1261540481928975, "y": 4.397376176013605, "z": 0.29378812923341735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5875762584668347}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -1.0765550710320106, "y": 4.484738414671292, "z": 0.29155952621123504}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5831190524224701}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -1.0240905515608667, "y": 4.568707458898355, "z": 0.2902363487649764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5804726975299528}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -0.9668496258015635, "y": 4.651669108311997, "z": 0.289524734814899}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.579049469629798}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -0.9069634490872412, "y": 4.730157487822055, "z": 0.2892146096128493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5784292192256986}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -0.8415715068391946, "y": 4.8076015086727, "z": 0.2891029067056932}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5782058134113864}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -0.7742361035223548, "y": 4.879890034075487, "z": 0.2889911606223427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5779823212446854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -0.70247056273017, "y": 4.9507268320175495, "z": 0.2912729157354766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5825458314709532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -0.6288979791482301, "y": 5.018338874977349, "z": 0.2951863110540747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5903726221081494}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -0.5531808449250755, "y": 5.083905979152817, "z": 0.2953194750337124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5906389500674248}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -0.47572228287207763, "y": 5.147814242430867, "z": 0.2881581188044414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5763162376088828}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -0.3976366356435115, "y": 5.210408399351092, "z": 0.27748212148227946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5549642429645589}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -0.3193778696919846, "y": 5.273023454451551, "z": 0.2635741882016591}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5271483764033182}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -0.24120584977576226, "y": 5.336320511017972, "z": 0.24890569681275904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4978113936255181}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -0.16413993703399532, "y": 5.399032786680298, "z": 0.23199455356578733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46398910713157465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -0.08558812660893299, "y": 5.462955949073225, "z": 0.21361311705568903}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42722623411137806}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -0.009146513288175716, "y": 5.525496773815543, "z": 0.19491418909412225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3898283781882445}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": 0.068531262208678, "y": 5.590734960154776, "z": 0.1795353875697543}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3590707751395086}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": 0.14164906921576206, "y": 5.657573517411743, "z": 0.16765142222325455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3353028444465091}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": 0.21004863603646348, "y": 5.730285780405274, "z": 0.15771734713615318}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31543469427230636}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": 0.27011355970382495, "y": 5.809312096166573, "z": 0.15301570690618518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30603141381237037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": 0.31790430424326893, "y": 5.895949285140404, "z": 0.15295660788859114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3059132157771823}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": 0.35006476311333296, "y": 5.9898598576600035, "z": 0.15289748602762857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30579497205525713}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": 0.3657752458854523, "y": 6.087987157085168, "z": 0.15381894563780646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3076378912756129}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": 0.3663382110470108, "y": 6.188835757665353, "z": 0.15751484548730238}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31502969097460476}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": 0.35404927537037334, "y": 6.2868775208112755, "z": 0.1636070669888756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3272141339777512}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": 0.32992335911417514, "y": 6.385059583262684, "z": 0.1700824910653267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3401649821306534}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": 0.2962759770950077, "y": 6.478152849927467, "z": 0.17651249053449877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35302498106899755}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": 0.25319621531071995, "y": 6.569252966030551, "z": 0.18336128279084013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36672256558168026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": 0.20349959609063814, "y": 6.655345069252014, "z": 0.19079599730190241}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38159199460380483}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": 0.14810641885289827, "y": 6.739366557018631, "z": 0.20115842790446264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4023168558089253}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": 0.08959319188776864, "y": 6.820051072567378, "z": 0.21298871369914457}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42597742739828914}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": 0.02715648870062923, "y": 6.898630484487095, "z": 0.22301386176296664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4460277235259333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -0.03824666816602639, "y": 6.9739145810694465, "z": 0.23165745548889935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4633149109777987}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -0.1069411290891321, "y": 7.046924175435891, "z": 0.2403294679850724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4806589359701448}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -0.1776799760428187, "y": 7.117134731792685, "z": 0.2491759050383208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4983518100766416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -0.2506748678961932, "y": 7.18592885955629, "z": 0.25862023216049185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5172404643209837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -0.3244853057422562, "y": 7.253276457040827, "z": 0.2555419405639484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5110838811278968}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -0.3985172997292499, "y": 7.320554835934716, "z": 0.2416723591194807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4833447182389614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -0.4720133899399149, "y": 7.389077423490429, "z": 0.2292750626428206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4585501252856412}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -0.543230201454864, "y": 7.458847314323293, "z": 0.21819561806106105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4363912361221221}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -0.61242408625569, "y": 7.531812655449855, "z": 0.20895865413388334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4179173082677667}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -0.6771229488011402, "y": 7.6074800425742986, "z": 0.20209315805825306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40418631611650613}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -0.7370359718367114, "y": 7.687978237134763, "z": 0.19502699289604972}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39005398579209943}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -0.7904106792670598, "y": 7.771968495304549, "z": 0.18787900564491733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37575801128983466}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -0.8378014887978864, "y": 7.860502561209778, "z": 0.1795389072284711}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3590778144569422}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -0.8772369849529416, "y": 7.951632031773327, "z": 0.17186439838498288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34372879676996576}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -0.9080289469061265, "y": 8.047329208132918, "z": 0.16546935749151892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33093871498303784}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -0.9274216609018614, "y": 8.144470084316081, "z": 0.16116453134048328}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32232906268096656}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -0.9337053383683203, "y": 8.244792370528517, "z": 0.15967187062022684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31934374124045367}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -0.9245037123444024, "y": 8.343553957490974, "z": 0.15961020080291294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3192204016058259}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -0.8995093860621769, "y": 8.44014030704771, "z": 0.15954850714854696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3190970142970939}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -0.8619942224146172, "y": 8.532276455750862, "z": 0.16443801496847513}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32887602993695025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -0.8141987759331005, "y": 8.62028775882352, "z": 0.17150315978163375}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3430063195632675}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -0.7588219529111813, "y": 8.702597323950235, "z": 0.17940893711028222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35881787422056444}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -0.696117641132617, "y": 8.781676133603748, "z": 0.18849110415616038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37698220831232077}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -0.629909093142394, "y": 8.855144521676113, "z": 0.19868413734438908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39736827468877817}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -0.5585094742555484, "y": 8.92643404828387, "z": 0.20898772178607924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4179754435721585}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -0.4853799271099516, "y": 8.993372390654566, "z": 0.21951534721531082}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43903069443062165}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -0.40892476610680667, "y": 9.059073324561423, "z": 0.23059711568955207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46119423137910415}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -0.33225306542187094, "y": 9.122255733519035, "z": 0.24102158177775163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48204316355550325}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -0.25375686580202406, "y": 9.185299061517316, "z": 0.2508788247406168}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5017576494812336}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -0.1757703849198029, "y": 9.247063496034547, "z": 0.260240078637466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.520480157274932}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -0.09669537551004657, "y": 9.308949424358515, "z": 0.2691628299587038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5383256599174076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -0.01782932302739531, "y": 9.369930805188973, "z": 0.27769426842082173}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5553885368416435}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": 0.061790401498374774, "y": 9.430741518093628, "z": 0.28587369798159784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5717473959631957}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": 0.1416244910515292, "y": 9.4909722828256, "z": 0.29373426715713885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5874685343142777}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": 0.22175391423706395, "y": 9.550858930817045, "z": 0.3013042397643798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6026084795287596}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": 0.30224589405541513, "y": 9.610692569301477, "z": 0.30860794702222283}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6172158940444457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": 0.3825610380809265, "y": 9.670268537128111, "z": 0.29968656765154894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5993731353030979}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": 0.46305768562531996, "y": 9.730018499938856, "z": 0.2855811727686713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5711623455373426}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": 0.5434110469855483, "y": 9.789810376724578, "z": 0.2708132200851558}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5416264401703116}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": 0.6234883588990093, "y": 9.849592775866277, "z": 0.2552852234943112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5105704469886224}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": 0.7037399608344639, "y": 9.909767927736755, "z": 0.23887379529683136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47774759059366273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": 0.783319279307644, "y": 9.969816650202844, "z": 0.2230228838778769}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4460457677557538}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": 0.8625149612863702, "y": 10.031096906482068, "z": 0.21048025940596846}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4209605188119369}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": 0.9393247442283398, "y": 10.09480642690631, "z": 0.2013398724783161}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4026797449566322}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": 1.0122599037056534, "y": 10.16273922393911, "z": 0.19596382843729063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39192765687458125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": 1.0795028303252228, "y": 10.236425690721267, "z": 0.1936497566383952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3872995132767904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": 1.1389514965103336, "y": 10.316249664486604, "z": 0.19357496359520998}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38714992719041996}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": 1.189320288582732, "y": 10.401853918790499, "z": 0.1935001416424909}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3870002832849818}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": 1.2311500588524897, "y": 10.492777488059264, "z": 0.19552738490212004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3910547698042401}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": 1.264611763654432, "y": 10.586422441511957, "z": 0.19970446461045208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39940892922090415}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": 1.290862803346273, "y": 10.683052272412178, "z": 0.20499594655605127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40999189311210255}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": 1.3102242722500426, "y": 10.781008302370937, "z": 0.2109586933778106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4219173867556212}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": 1.3232842423171638, "y": 10.880197983966665, "z": 0.21713989232740585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4342797846548117}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": 1.3304122282908188, "y": 10.979968932856403, "z": 0.2233778914859555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.446755782971911}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": 1.3319793935866429, "y": 11.080029780014279, "z": 0.22949781058376953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45899562116753906}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": 1.3290306069274251, "y": 11.180009341650017, "z": 0.23718209030068832}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47436418060137664}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": 1.3231567107894084, "y": 11.280026037342136, "z": 0.24724287702111125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4944857540422225}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": 1.3156471369773481, "y": 11.379717223422553, "z": 0.25678279479068794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5135655895813759}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": 1.3074270498246428, "y": 11.479584068541236, "z": 0.2658640108138756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5317280216277512}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": 1.2991064599340845, "y": 11.57926098823649, "z": 0.2745372485550743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5490744971101486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": 1.290813491142359, "y": 11.678990511657174, "z": 0.28284453655930886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5656890731186177}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": 1.2826305858141662, "y": 11.778768616200711, "z": 0.29082116241788447}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5816423248357689}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": 1.2746031127190267, "y": 11.878267129612407, "z": 0.29849709596412616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5969941919282523}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": 1.2666029919348005, "y": 11.9781061270311, "z": 0.3058980479563314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6117960959126628}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": 1.2584344950681288, "y": 12.077498894893646, "z": 0.3130462722523264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6260925445046528}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": 1.250131560938342, "y": 12.177308729689852, "z": 0.3199611835808826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6399223671617652}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": 1.2427337823350058, "y": 12.276791522112577, "z": 0.326659840218531}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.653319680437062}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": 1.2369207644790354, "y": 12.376775529932358, "z": 0.3331573260163184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6663146520326368}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": 1.2325997229662768, "y": 12.476470670409705, "z": 0.3394670562992748}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6789341125985496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": 1.2295774056614144, "y": 12.576574844876939, "z": 0.34560102539808024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6912020507961605}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": 1.2279519026997758, "y": 12.676344481319928, "z": 0.3515700088742443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7031400177484886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": 1.2278114796480535, "y": 12.776438091149638, "z": 0.35738373018021985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7147674603604397}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": 1.2292343791258975, "y": 12.876233244818668, "z": 0.36305099911319566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7261019982263913}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": 1.2323408285123763, "y": 12.976189502034252, "z": 0.36834709938504395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7366941987700879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": 1.2373052851392452, "y": 13.075860215439144, "z": 0.3726732912982907}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7453465825965814}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": 1.2443460850265637, "y": 13.175504845803959, "z": 0.37601919519367105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7520383903873421}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": 1.253660236921091, "y": 13.27488647387601, "z": 0.37838150320145997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7567630064029199}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": 1.2653959749871118, "y": 13.374102161684519, "z": 0.38009944096170334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7601988819234067}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": 1.279572688321558, "y": 13.472992426167169, "z": 0.3814959711799871}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7629919423599743}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": 1.2955241190398843, "y": 13.5716700377606, "z": 0.38539547931916734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7707909586383347}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": 1.311940428666437, "y": 13.670292767252718, "z": 0.3904165422319398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7808330844638796}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": 1.3282632979831066, "y": 13.768915733305096, "z": 0.3953311786132892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7906623572265784}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": 1.3446793490103524, "y": 13.867619899930208, "z": 0.4001441563074012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8002883126148024}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": 1.3612199563822784, "y": 13.966193211304782, "z": 0.4048599007299987}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8097198014599974}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": 1.377865854920928, "y": 14.064940639000536, "z": 0.40948252834518595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8189650566903719}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": 1.394494597092062, "y": 14.163502966268213, "z": 0.4140158760480115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.828031752096023}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": 1.4111240914742122, "y": 14.262250408788, "z": 0.41846352704864453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8369270540972891}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": 1.4277151337763605, "y": 14.36090130478088, "z": 0.42282883375419633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8456576675083927}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": 1.4443626290369502, "y": 14.459507222912563, "z": 0.41847149190969773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8369429838193955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": 1.4609651846365386, "y": 14.5583023958492, "z": 0.4109483911252253}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8218967822504506}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": 1.476835778822808, "y": 14.656814880637436, "z": 0.40545558946415017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8109111789283003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": 1.4916435967588444, "y": 14.756060636828611, "z": 0.3998935156430725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.799787031286145}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": 1.5051601361993154, "y": 14.85472911990099, "z": 0.393994540993288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.787989081986576}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": 1.5176115078167338, "y": 14.954353177667972, "z": 0.3877865398245585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.775573079649117}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": 1.5287871158880901, "y": 15.053267659719051, "z": 0.3813589254140325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.762717850828065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": 1.5388709369728804, "y": 15.153103403329466, "z": 0.37467969411890606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7493593882378121}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": 1.5477159254137303, "y": 15.252345363797609, "z": 0.36768849497028305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7353769899405661}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": 1.555442750693092, "y": 15.35225036425294, "z": 0.3603711187246197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7207422374492394}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": 1.561970092115697, "y": 15.451773841949166, "z": 0.3527334387530485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.705466877506097}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": 1.567366770331704, "y": 15.551641976214478, "z": 0.34469143928201135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6893828785640227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": 1.5716461084899405, "y": 15.651366858174905, "z": 0.3361044818033864}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6722089636067728}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": 1.574800300752739, "y": 15.751217959665635, "z": 0.32726564061939617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6545312812387923}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": 1.5767644788778663, "y": 15.850960013874692, "z": 0.31820802728954434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6364160545790887}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": 1.577799842181755, "y": 15.95098175153314, "z": 0.30774760230385956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6154952046077191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": 1.5781747502929002, "y": 16.050479379015684, "z": 0.2983873889292301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5967747778584602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": 1.576987118507884, "y": 16.150950019139053, "z": 0.29227455789510215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5845491157902043}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": 1.5733275615564204, "y": 16.250133441283083, "z": 0.2861803991754886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5723607983509772}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": 1.5675276248210828, "y": 16.35059051468323, "z": 0.2772963757291006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5545927514582012}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": 1.560050392885601, "y": 16.44999389049159, "z": 0.268727065875352}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.537454131750704}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": 1.5499147505807074, "y": 16.54980400388544, "z": 0.26202300601743694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5240460120348739}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": 1.5364237914531063, "y": 16.648953773130106, "z": 0.2552358499922312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5104716999844624}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": 1.5197137282863118, "y": 16.747508076417162, "z": 0.24698055115261616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4939611023052323}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": 1.4999830790543918, "y": 16.84578827580937, "z": 0.23724057434486304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4744811486897261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": 1.4776611296995967, "y": 16.943072855256553, "z": 0.22570360341161003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45140720682322005}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": 1.4523432808901735, "y": 17.04013846541107, "z": 0.21560293668521066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4312058733704213}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": 1.423051013916125, "y": 17.13552719689675, "z": 0.20705884129384175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4141176825876835}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": 1.3883575797482672, "y": 17.229481194367953, "z": 0.1990268359988165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.398053671997633}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": 1.3477415877428531, "y": 17.320682487718646, "z": 0.19167861669795483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38335723339590966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": 1.3003900850855, "y": 17.408519802346042, "z": 0.18510214334764066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3702042866952813}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": 1.2456116585180217, "y": 17.491889785013033, "z": 0.1803755259636965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.360751051927393}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": 1.1826085870068046, "y": 17.56920474731795, "z": 0.17791143397977968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35582286795955936}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": 1.1113050031193143, "y": 17.63848516946483, "z": 0.17572111873617444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3514422374723489}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": 1.0318087847680903, "y": 17.699534256394113, "z": 0.17250895443768374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3450179088753675}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": 0.946255619812182, "y": 17.750620835425007, "z": 0.1700431380531968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3400862761063936}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": 0.8543658198893676, "y": 17.790280428885247, "z": 0.16944076799418978}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33888153598837956}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": 0.7580120775413641, "y": 17.816423548057628, "z": 0.16937532515089412}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33875065030178825}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": 0.6588204951233807, "y": 17.828273488945566, "z": 0.16930985701216975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3386197140243395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": 0.5588910064740229, "y": 17.825942956357537, "z": 0.16992463510073724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3398492702014745}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": 0.46011155740923987, "y": 17.810491951137397, "z": 0.17222236695446733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34444473390893465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": 0.3640807622992432, "y": 17.782726679730878, "z": 0.1748049088346567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3496098176693134}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": 0.2720762357611476, "y": 17.743247898638874, "z": 0.17694594584495124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3538918916899025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": 0.18544443505967292, "y": 17.69364405186991, "z": 0.18032637311769648}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36065274623539295}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": 0.10398129919296255, "y": 17.634759996929546, "z": 0.18471614875105316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3694322975021063}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": 0.03029350490334406, "y": 17.568262602337008, "z": 0.18737330842501876}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3747466168500375}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -0.036324504875822505, "y": 17.49289307856773, "z": 0.18783900082136626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3756780016427325}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -0.0942690276284899, "y": 17.411966742261068, "z": 0.19086095942528475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3817219188505695}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -0.1455363816481704, "y": 17.325907443535918, "z": 0.196391193874402}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.392782387748804}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -0.1916259095154239, "y": 17.23731562233585, "z": 0.20618190547854062}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41236381095708124}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -0.23428025288503465, "y": 17.147164588438994, "z": 0.21813986302136712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43627972604273424}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -0.2745534234373548, "y": 17.055593830137706, "z": 0.22930748864460637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45861497728921274}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -0.31300925461582635, "y": 16.963574590506717, "z": 0.23980543700279774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4796108740055955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -0.35069339772030717, "y": 16.87093110133692, "z": 0.24972649732294888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49945299464589776}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -0.3882615334800721, "y": 16.778375375355253, "z": 0.25914384942506097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5182876988501219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -0.4261018300651992, "y": 16.68586371251537, "z": 0.268116417846538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.536232835693076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -0.4640374151317915, "y": 16.593374784863126, "z": 0.27669248119116363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5533849623823273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -0.502030964615063, "y": 16.500857850295393, "z": 0.284912185095319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.569824370190638}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -0.5400394122358659, "y": 16.408357030160193, "z": 0.29280934032256695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5856186806451339}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -0.577942030476547, "y": 16.3159868342908, "z": 0.3004127398721464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6008254797442928}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -0.6158018078063846, "y": 16.223437328776377, "z": 0.30774714359542105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6154942871908421}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -0.6533327393379811, "y": 16.13126757282785, "z": 0.3148340274950495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.629668054990099}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -0.690813042708457, "y": 16.038561247363802, "z": 0.3216921630001758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6433843260003516}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -0.7279289760198955, "y": 15.945845285470789, "z": 0.32833807112205143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6566761422441029}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -0.764589871702206, "y": 15.853117391846148, "z": 0.3347863830170726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6695727660341452}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -0.8010622812370609, "y": 15.759502259280072, "z": 0.3410501295047847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6821002590095694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -0.83661211841686, "y": 15.666747409134114, "z": 0.3471409759367058}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6942819518734116}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -0.8721545096642372, "y": 15.572364045594163, "z": 0.35306941451912016}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7061388290382403}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -0.9065298152308604, "y": 15.47940787235711, "z": 0.35884492314713895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7176898462942779}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -0.9409293576502407, "y": 15.384779607308873, "z": 0.3644760976130929}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7289521952261858}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": -0.9743787050009276, "y": 15.291220084643939, "z": 0.3699707624495339}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7399415248990678}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": -1.007689117408846, "y": 15.196305458958417, "z": 0.37533606448130086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7506721289626017}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": -1.0399889981240236, "y": 15.10212882596341, "z": 0.3805785522734521}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7611571045469042}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": -1.0716117683574908, "y": 15.006791578441977, "z": 0.3857042439901388}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7714084879802776}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": -1.101834248959744, "y": 14.911793816676747, "z": 0.39071868566602136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7814373713320427}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": -1.1311772370168347, "y": 14.815887582199764, "z": 0.3956270014956601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7912540029913202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": -1.159449475840981, "y": 14.720180415347524, "z": 0.40043393743794553}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8008678748758911}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": -1.1869376580544013, "y": 14.623894582550605, "z": 0.4051438991906564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8102877983813128}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": -1.2135287566496609, "y": 14.527530831527333, "z": 0.40976098539890404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8195219707978081}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": -1.2393163807039045, "y": 14.430929096845924, "z": 0.4142890168088321}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8285780336176642}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": -1.2643631796187236, "y": 14.33402626398302, "z": 0.41873156195576566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8374631239115313}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": -1.2886300417364371, "y": 14.23711580030969, "z": 0.4230919598774154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8461839197548308}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": -1.3122425727379778, "y": 14.139803632891393, "z": 0.4273733402627107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8547466805254214}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": -1.3350890931567818, "y": 14.042581001537402, "z": 0.43157864138150326}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8631572827630065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": -1.3572872440571326, "y": 13.944961863079426, "z": 0.43571062608676153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8714212521735231}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": -1.3788061232151219, "y": 13.847437133053335, "z": 0.43977189613663353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8795437922732671}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": -1.399876586841849, "y": 13.749631425930614, "z": 0.4437649050470939}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8875298100941879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": -1.420765433232799, "y": 13.651953552567596, "z": 0.44769196965534563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8953839393106913}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": -1.4419970568939924, "y": 13.554220163314552, "z": 0.4515552805486099}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9031105610972198}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": -1.4636611283111316, "y": 13.456696495422369, "z": 0.4553569114914861}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9107138229829722}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": -1.4856907284816716, "y": 13.359169612004926, "z": 0.45909882796696655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9181976559339331}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": -1.5079484479041738, "y": 13.261778229695109, "z": 0.4533141610758749}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9066283221517498}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": -1.5303773263775138, "y": 13.164366114588978, "z": 0.44452175782056547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8890435156411309}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": -1.5529102509173436, "y": 13.067022484890375, "z": 0.4353352440971825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.870670488194365}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": -1.5755421187813008, "y": 12.969672905988254, "z": 0.42588119966693827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8517623993338765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": -1.598143667204966, "y": 12.872325748986112, "z": 0.4166753705101676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8333507410203352}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": -1.6205771238381492, "y": 12.774944678330987, "z": 0.40726213824985374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8145242764997075}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": -1.643204596002936, "y": 12.677570453672448, "z": 0.40008396192474704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8001679238494941}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": -1.6666232477961913, "y": 12.580416176377703, "z": 0.3940944972428168}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7881889944856336}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": -1.6912252659807456, "y": 12.483502368215792, "z": 0.388879847002146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.777759694004292}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": -1.7171963354098863, "y": 12.387010352930417, "z": 0.38360389193422667}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7672077838684533}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": -1.7445512911682994, "y": 12.290824698921528, "z": 0.37793151765650185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7558630353130037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": -1.7732208193595416, "y": 12.195077468119122, "z": 0.37423802719914456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7484760543982891}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": -1.8038545688834968, "y": 12.099892903194213, "z": 0.3740934858301506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7481869716603012}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": -1.837194387624857, "y": 12.005678519100385, "z": 0.37394888859200864}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7478977771840173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": -1.8732974280569372, "y": 11.912436024323306, "z": 0.374063751711258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.748127503422516}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": -1.9118963207661592, "y": 11.820249160002323, "z": 0.37510347942619177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7502069588523835}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -1.9529567245694437, "y": 11.729082325373886, "z": 0.3761438090304013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7522876180608026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -1.9964423778301228, "y": 11.639098588770105, "z": 0.37599965908158556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7519993181631711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -2.042468599133903, "y": 11.550334944422996, "z": 0.3758544373202598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7517088746405196}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -2.0909987451095207, "y": 11.462965125136312, "z": 0.37570915942679606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7514183188535921}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -2.1416282520502286, "y": 11.376744657124036, "z": 0.3777307963365837}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7554615926731674}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -2.1938023166386023, "y": 11.291475947316167, "z": 0.38201368127085034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7640273625417007}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -2.2472435081886744, "y": 11.206991600402226, "z": 0.3871079359294528}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7742158718589056}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -2.301778075857813, "y": 11.123211680127406, "z": 0.39209240412612134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7841848082522427}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -2.357457729779335, "y": 11.04018846101837, "z": 0.396972100885097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.793944201770194}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -2.414256480859745, "y": 10.95792411508954, "z": 0.4013337734365671}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8026675468731342}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -2.4715699829844158, "y": 10.87602176452446, "z": 0.40602582975749774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8120516595149955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -2.528804555798458, "y": 10.794092035874877, "z": 0.4106257550633493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8212515101266986}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -2.5860704437107356, "y": 10.712127388382026, "z": 0.41513732043151147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8302746408630229}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": -2.6434543847494623, "y": 10.630369520626095, "z": 0.4195640492475616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8391280984951232}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": -2.7010456147630757, "y": 10.548566997868653, "z": 0.42390923940317377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8478184788063475}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": -2.7585753612718618, "y": 10.466930602175449, "z": 0.42194465122514874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8438893024502975}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": -2.8162844278477124, "y": 10.38518904234141, "z": 0.41231056185390347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8246211237078069}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": -2.87395684613136, "y": 10.30365312923799, "z": 0.40245598093850965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8049119618770193}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": -2.931615379563907, "y": 10.221877346809348, "z": 0.3936153415022049}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7872306830044098}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": -2.9886417287031173, "y": 10.139946577127098, "z": 0.3891606367612616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7783212735225232}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": -3.0444605233757307, "y": 10.056849199127857, "z": 0.38901033185607325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7780206637121465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": -3.0979556120148777, "y": 9.972655417613884, "z": 0.3888599688539744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7777199377079488}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": -3.1495917880765933, "y": 9.886799112588031, "z": 0.3899464179394592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7798928358789184}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": -3.1991032873431084, "y": 9.800199517490764, "z": 0.39216664973831344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7843332994766269}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": -3.246883731204307, "y": 9.712173004071712, "z": 0.3940487615123683}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7880975230247366}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": -3.292502267815885, "y": 9.623410614722909, "z": 0.395605515907245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.79121103181449}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": -3.3362472790123516, "y": 9.533360517704885, "z": 0.3971426958021584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7942853916043168}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": -3.377865150485222, "y": 9.442565338415257, "z": 0.3986534925126068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7973069850252136}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": -3.417506389904065, "y": 9.350704935811981, "z": 0.4000924309238226}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8001848618476451}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": -3.4550294697772643, "y": 9.258064699303828, "z": 0.401432016808297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.802864033616594}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": -3.4904038490850016, "y": 9.164536983071665, "z": 0.4023948932630449}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8047897865260898}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": -3.5235382952545393, "y": 9.070134844999101, "z": 0.40291793890178246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8058358778035649}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": -3.554454151589211, "y": 8.97508273092903, "z": 0.40387089488984146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8077417897796829}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": -3.583458484298004, "y": 8.879102997997473, "z": 0.40547039095731763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8109407819146353}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": -3.610995006734544, "y": 8.783060896287646, "z": 0.40984759689867056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8196951937973411}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": -3.638157701537875, "y": 8.686565633435892, "z": 0.41437397613813026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8287479522762605}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": -3.6649900359252925, "y": 8.590418154972722, "z": 0.41881493444707274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8376298688941455}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": -3.6914232129157973, "y": 8.493856308028386, "z": 0.42317380671678484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8463476134335697}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": -3.7171951972296764, "y": 8.397443866301261, "z": 0.4274537188491252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8549074376982504}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": -3.74253141085703, "y": 8.300486065133462, "z": 0.4316576056471483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8633152112942966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": -3.767158502637398, "y": 8.203926336261965, "z": 0.4357882267832911}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8715764535665822}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": -3.7912800921675847, "y": 8.106679199417886, "z": 0.439848181091743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.879696362183486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": -3.8146207070977614, "y": 8.009962718649103, "z": 0.4438399193950751}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8876798387901502}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": -3.837583128291281, "y": 7.912552652230186, "z": 0.44776575604478125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8955315120895625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": -3.8601401632277526, "y": 7.815383973014443, "z": 0.45162787932991916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9032557586598383}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": -3.882602872751764, "y": 7.717941726145167, "z": 0.4554283608866557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9108567217733115}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": -3.9049660645094275, "y": 7.620544448414057, "z": 0.4591691642234975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.918338328446995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": -3.9272940911324907, "y": 7.523116140389594, "z": 0.4628521524617119}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9257043049234238}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": -3.949620257362944, "y": 7.425723642058867, "z": 0.466479095377483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.932958190754966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": -3.971989247827016, "y": 7.328280928560531, "z": 0.47005167582128116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9401033516425623}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": -3.9943723432554683, "y": 7.230915699710204, "z": 0.4735714955804776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9471429911609552}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": -4.016816199204249, "y": 7.133423655590912, "z": 0.47704008074310894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9540801614862179}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": -4.039247064887503, "y": 7.0361212580027175, "z": 0.48045888661371317}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9609177732274263}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": -4.061755043403851, "y": 6.9385989860495485, "z": 0.48382930222613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.96765860445226}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": -4.084226692661099, "y": 6.8413240498377155, "z": 0.48715265449293416}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9743053089858683}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": -4.106759782671361, "y": 6.7438471066627805, "z": 0.4904302120266312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9808604240532623}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": -4.129267376713846, "y": 6.6465183230659015, "z": 0.49366318866381326}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9873263773276265}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": -4.151802199495414, "y": 6.5490841724113915, "z": 0.4968527467200142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9937054934400285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": -4.174323195439559, "y": 6.451699810613727, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": -4.19684130658411, "y": 6.354299580129029, "z": 0.4954940964102693}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9909881928205386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": -4.219356093779614, "y": 6.2568696507861485, "z": 0.4868298060812154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9736596121624308}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": -4.241847092168352, "y": 6.159486132464822, "z": 0.47801136318779847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9560227263755969}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": -4.264342512297197, "y": 6.0620274447571605, "z": 0.46902714663102607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9380542932620521}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": -4.286806820520849, "y": 5.964653833169524, "z": 0.45988385200114684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9197677040022937}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": -4.309278513624942, "y": 5.867185395244263, "z": 0.4505818570862923}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9011637141725846}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": -4.331721380140197, "y": 5.769779448860835, "z": 0.4410837264132774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8821674528265548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": -4.354182959707231, "y": 5.672347483145238, "z": 0.43150692120255396}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8630138424051079}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": -4.376680020600083, "y": 5.574970422288959, "z": 0.4218447500752808}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8436895001505617}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": -4.39926659972751, "y": 5.477557741609531, "z": 0.4121510871405033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8243021742810066}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": -4.422000217749059, "y": 5.380146460695379, "z": 0.4028887922114564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8057775844229128}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": -4.445031663542093, "y": 5.282771087151218, "z": 0.39395549704045496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7879109940809099}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": -4.468525887390225, "y": 5.185366386729989, "z": 0.3850774779793332}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7701549559586665}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": -4.492477009407566, "y": 5.088348336356714, "z": 0.3759903655920935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.751980731184187}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": -4.516962744255936, "y": 4.991400555849163, "z": 0.36663524745889886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7332704949177977}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": -4.541785522502111, "y": 4.894736835266288, "z": 0.3563705369391944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7127410738783888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": -4.5668613932229505, "y": 4.798101091836412, "z": 0.3451915495984068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6903830991968136}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": -4.59201880459806, "y": 4.701564618750336, "z": 0.33313471874216477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6662694374843295}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": -4.617122875635131, "y": 4.604702112491296, "z": 0.3214956665238709}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6429913330477418}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": -4.641722120437817, "y": 4.50840397945494, "z": 0.3094227223745476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6188454447490952}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": -4.666272016280022, "y": 4.411140731874257, "z": 0.29664655382242094}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5932931076448419}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": -4.690011408448772, "y": 4.31467096739196, "z": 0.28800999938611066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5760199987722213}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": -4.712016314566291, "y": 4.216681636126213, "z": 0.282865673347151}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.565731346694302}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": -4.730506201106104, "y": 4.118821637723888, "z": 0.280428804572852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.560857609145704}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": -4.744669671850963, "y": 4.019642466108321, "z": 0.2800626499266045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.560125299853209}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": -4.753598162219792, "y": 3.9206190502330522, "z": 0.27995448176655024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5599089635331005}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": -4.75726809983527, "y": 3.820286235736017, "z": 0.2798462717965769}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5596925435931538}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": -4.755836090062031, "y": 3.7209760311076847, "z": 0.2803588394982107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5607176789964214}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": -4.74981104988681, "y": 3.620138207771099, "z": 0.28256363169622695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5651272633924539}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": -4.739918373256575, "y": 3.521118327321853, "z": 0.2860295371882501}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5720590743765002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": -4.726465484189496, "y": 3.421475011802621, "z": 0.29067697855672986}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5813539571134597}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": -4.710031962375008, "y": 3.3226559780302076, "z": 0.2889105366600077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5778210733200154}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": -4.691001223706817, "y": 3.2245557600496353, "z": 0.2819963712657406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5639927425314812}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": -4.669480186999049, "y": 3.1263609928883356, "z": 0.2742137335483708}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5484274670967416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": -4.645416799033019, "y": 3.0294235122198674, "z": 0.26790477215659336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5358095443131867}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": -4.617963503178302, "y": 2.933118738958413, "z": 0.2616355614465315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.523271122893063}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": -4.588036154418436, "y": 2.8376432052300427, "z": 0.2527467864897238}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5054935729794476}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": -4.558072714003307, "y": 2.7423737363746037, "z": 0.2403202560887702}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4806405121775404}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": -4.529863004444529, "y": 2.646167074598669, "z": 0.22946304466842035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4589260893368407}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": -4.504852546284856, "y": 2.5496035308323814, "z": 0.22051863880262795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4410372776052559}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": -4.484172280689199, "y": 2.4515888358029083, "z": 0.21408663659097338}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42817327318194676}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": -4.469630994023036, "y": 2.3529849421902425, "z": 0.21057992628680122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42115985257360244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": -4.462810553822681, "y": 2.2535005218769824, "z": 0.21024687496504005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4204937499300801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": -4.465200066494235, "y": 2.153896198825989, "z": 0.21016567164275454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4203313432855091}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": -4.476964195183124, "y": 2.0549020660452655, "z": 0.21008443693318893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42016887386637786}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": -4.497222626171344, "y": 1.9573442465257689, "z": 0.21183535934915837}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42367071869831674}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": -4.52531487298638, "y": 1.8612939318101656, "z": 0.21459710691347061}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42919421382694123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": -4.560375009788673, "y": 1.7681019616849292, "z": 0.21811210779887638}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43622421559775276}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": -4.602701352034185, "y": 1.6774569591418107, "z": 0.22038032155580523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44076064311161045}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": -4.650980365367405, "y": 1.590145181551324, "z": 0.22390540567414127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44781081134828254}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": -4.703035869849247, "y": 1.5047346230675056, "z": 0.23303956924117133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46607913848234267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": -4.757439773992098, "y": 1.4208505671526501, "z": 0.2433269248772878}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4866538497545756}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": -4.813990121605013, "y": 1.338507054640824, "z": 0.2530648214826047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5061296429652093}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": -4.8723664166467575, "y": 1.2571911788906098, "z": 0.26232096614106387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5246419322821277}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": -4.931601618761535, "y": 1.176722185359186, "z": 0.27115022692316954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5423004538463391}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": -4.991332062853321, "y": 1.0964055904506786, "z": 0.27959780331937684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5591956066387537}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": -5.050906789825491, "y": 1.0161401137110342, "z": 0.28770145586931484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5754029117386297}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": -5.109680473859316, "y": 0.9351902751443323, "z": 0.295493115257572}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.590986230515144}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": -5.166625795782127, "y": 0.8529434600870882, "z": 0.30273403495857526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6054680699171505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": -5.221384036932508, "y": 0.7692681235645725, "z": 0.3084507945297095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.616901589059419}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": -5.274281797714293, "y": 0.6842294496736008, "z": 0.31480809417572964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6296161883514593}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": -5.325235654741696, "y": 0.5981791604151235, "z": 0.3211167750757266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6422335501514532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": -5.374240572860904, "y": 0.510895096501723, "z": 0.3266214107047193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6532428214094386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": -5.421128425733148, "y": 0.4224592484392843, "z": 0.32368773363547826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6473754672709565}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": -5.465754657325926, "y": 0.3330282484639767, "z": 0.31856697512210314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6371339502442063}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": -5.508200685643565, "y": 0.2422237159571666, "z": 0.31351773217955603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6270354643591121}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": -5.548000763925564, "y": 0.15075256093013342, "z": 0.30859808081789564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6171961616357913}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": -5.585397725958824, "y": 0.05766908378512204, "z": 0.30378930209215693}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6075786041843139}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": -5.619767032879975, "y": -0.035875943312141806, "z": 0.29936248551691974}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5987249710338395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": -5.651262898822437, "y": -0.1310276308119568, "z": 0.295891839417017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.591783678834034}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": -5.679090230665509, "y": -0.22662119483384813, "z": 0.2923997905935746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5847995811871493}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": -5.703562054936614, "y": -0.32349466902217644, "z": 0.28879547488323537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5775909497664707}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": -5.725211946282992, "y": -0.4206857835138089, "z": 0.2823144634525432}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5646289269050864}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": -5.744592097401557, "y": -0.5187356158195336, "z": 0.27400263594648516}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5480052718929703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": -5.761598437921644, "y": -0.6168796101668201, "z": 0.26509882630938875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5301976526187775}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": -5.776842693921803, "y": -0.7159300034737816, "z": 0.2540412382010778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5080824764021556}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": -5.790658030994016, "y": -0.8146417211768299, "z": 0.24321534148604476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4864306829720895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": -5.801995403282215, "y": -0.9143268723074747, "z": 0.23631144104704802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47262288209409603}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": -5.808856975448671, "y": -1.0138490906556816, "z": 0.23014523013574784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46029046027149567}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": -5.810495730650624, "y": -1.114069677534253, "z": 0.2240854107379501}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4481708214759002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": -5.806459871699911, "y": -1.2139057633908235, "z": 0.21848322547474824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4369664509494965}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": -5.7961937538412505, "y": -1.3134372798528284, "z": 0.21354891129007791}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42709782258015583}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": -5.779035605920328, "y": -1.4120443236154854, "z": 0.21033302749454966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4206660549890993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": -5.754105951033362, "y": -1.5087681989722603, "z": 0.20973855290846666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4194771058169333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": -5.720409818856825, "y": -1.603014750511511, "z": 0.20934318381620057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41868636763240114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": -5.678572934070302, "y": -1.6936433880702844, "z": 0.20822932173979453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41645864347958905}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": -5.629176693275618, "y": -1.7808796175198172, "z": 0.20502041019631628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41004082039263257}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": -5.57298953936464, "y": -1.8632024432657295, "z": 0.2020858575515962}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4041717151031924}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": -5.509307695084084, "y": -1.9407344028501712, "z": 0.2001871253614152}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4003742507228304}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": -5.439093732868252, "y": -2.0112423781792876, "z": 0.20010980740051407}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40021961480102813}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": -5.361217743462455, "y": -2.074982274814015, "z": 0.2000324595541301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4000649191082602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": -5.279162026700632, "y": -2.1306363258657672, "z": 0.20295029961507077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40590059923014155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": -5.19133324549053, "y": -2.180918729234656, "z": 0.208507991026033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.417015982052066}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": -5.101835571982722, "y": -2.2239535942770696, "z": 0.2135783971860655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.427156794372131}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": -5.008549130857892, "y": -2.2611992904878093, "z": 0.21839229508932434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4367845901786487}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": -4.913560717551836, "y": -2.2924754130499387, "z": 0.22383302604698127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44766605209396254}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": -4.818515391119118, "y": -2.3195756583348945, "z": 0.23299270849582865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4659854169916573}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": -4.7216983598927635, "y": -2.3459863804234304, "z": 0.24328266972569237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48656533945138475}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": -4.62585895133147, "y": -2.3701822473954604, "z": 0.2530228376052646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5060456752105292}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": -4.527677389680503, "y": -2.3921702987522657, "z": 0.23599045946879596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4719809189375919}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_sp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.527677389680503, "y_m": -2.3921702987522657, "d_right": 0.9015879285029742, "d_left": 0.4238856718172862, "psi_rad": -0.20806838446255926, "kappa_radpm": 0.22282881024445642, "vx_mps": 3.9907833960277355, "ax_mps2": -8.231132539227255}, {"id": 1, "s_m": 0.09996612030509547, "d_m": 0.0, "x_m": -4.431332208094452, "y_m": -2.411328241974916, "d_right": 0.9096489148376747, "d_left": 0.4119916862830917, "psi_rad": -0.18377066464365455, "kappa_radpm": 0.26777949653616234, "vx_mps": 3.7789791402816064, "ax_mps2": -7.397214292263048}, {"id": 2, "s_m": 0.19993224061019094, "d_m": 0.0, "x_m": -4.332147080650172, "y_m": -2.428316962294303, "d_right": 0.8930331573725395, "d_left": 0.40848307351290447, "psi_rad": -0.15407114077859907, "kappa_radpm": 0.36340954263143277, "vx_mps": 3.577952167785035, "ax_mps2": -5.577051020914785}, {"id": 3, "s_m": 0.29989836091528643, "d_m": 0.0, "x_m": -4.232843322471115, "y_m": -2.441566660659218, "d_right": 0.8797746785032429, "d_left": 0.38727085752105683, "psi_rad": -0.10804900066659617, "kappa_radpm": 0.553460141630256, "vx_mps": 3.41858295326423, "ax_mps2": -5.3269116354617685}, {"id": 4, "s_m": 0.3998644812203819, "d_m": 0.0, "x_m": -4.132883972305862, "y_m": -2.449371671051701, "d_right": 0.8719723607298777, "d_left": 0.37841538204106645, "psi_rad": -0.046685679030395555, "kappa_radpm": 0.6321170435881078, "vx_mps": 3.2590931299271606, "ax_mps2": -5.280577023532589}, {"id": 5, "s_m": 0.4998306015254773, "d_m": 0.0, "x_m": -4.03257735925045, "y_m": -2.450823162458948, "d_right": 0.8705291710959311, "d_left": 0.37985441966588745, "psi_rad": 0.01834253133453667, "kappa_radpm": 0.6677363687983017, "vx_mps": 3.0928838377004806, "ax_mps2": -5.126082078916103}, {"id": 6, "s_m": 0.5997967218305729, "d_m": 0.0, "x_m": -3.9324558926864186, "y_m": -2.4454497969807365, "d_right": 0.875906023026497, "d_left": 0.37447893958356365, "psi_rad": 0.09139338939985042, "kappa_radpm": 0.8086742323110472, "vx_mps": 2.92250942820026, "ax_mps2": -4.315972737157474}, {"id": 7, "s_m": 0.6997628421356683, "d_m": 0.0, "x_m": -3.833586010580563, "y_m": -2.4320373993353805, "d_right": 0.8892965820020009, "d_left": 0.3611147070063566, "psi_rad": 0.18153371459557843, "kappa_radpm": 1.004630079142862, "vx_mps": 2.7709491619600346, "ax_mps2": -3.074925032938234}, {"id": 8, "s_m": 0.7997289624407637, "d_m": 0.0, "x_m": -3.7355675875871945, "y_m": -2.4084442967707593, "d_right": 0.9128543953699556, "d_left": 0.3376250993189422, "psi_rad": 0.29529332341479075, "kappa_radpm": 1.267435352468039, "vx_mps": 2.657702505289731, "ax_mps2": -1.6344314259718686}, {"id": 9, "s_m": 0.8996950827458592, "d_m": 0.0, "x_m": -3.642716274960876, "y_m": -2.373088138208881, "d_right": 0.9481256127183977, "d_left": 0.3116007131822051, "psi_rad": 0.43764047037439857, "kappa_radpm": 1.5425586001653198, "vx_mps": 2.595497460893585, "ax_mps2": -1.3263462188986568}, {"id": 10, "s_m": 0.9996612030509546, "d_m": 0.0, "x_m": -3.5554402127896276, "y_m": -2.323773017774319, "d_right": 0.9974261353001497, "d_left": 0.30138220488572476, "psi_rad": 0.590258392353385, "kappa_radpm": 1.4984646267876933, "vx_mps": 2.5439000959424063, "ax_mps2": -2.1786040687581374}, {"id": 11, "s_m": 1.09962732335605, "d_m": 0.0, "x_m": -3.477058042100958, "y_m": -2.2623178800445842, "d_right": 1.0592058202988444, "d_left": 0.3044202689449849, "psi_rad": 0.7417651954002883, "kappa_radpm": 1.6310415579656694, "vx_mps": 2.4567976117837813, "ax_mps2": -0.4804428288313087}, {"id": 12, "s_m": 1.1995934436611457, "d_m": 0.0, "x_m": -3.409784438437706, "y_m": -2.189000492707376, "d_right": 1.1329088943835235, "d_left": 0.3004569270559643, "psi_rad": 0.9201785990515821, "kappa_radpm": 1.943251012807939, "vx_mps": 2.4371701815862488, "ax_mps2": -0.022944534260780934}, {"id": 13, "s_m": 1.2995595639662412, "d_m": 0.0, "x_m": -3.3579313067202365, "y_m": -2.104769623872268, "d_right": 1.2164389934797142, "d_left": 0.3101766153536424, "psi_rad": 1.1188214540679438, "kappa_radpm": 2.0218320314417557, "vx_mps": 2.4362288771518643, "ax_mps2": -0.02294453426077205}, {"id": 14, "s_m": 1.3995256842713366, "d_m": 0.0, "x_m": -3.3235312750162964, "y_m": -2.0110201312568177, "d_right": 1.3104404596436567, "d_left": 0.33140622388003005, "psi_rad": 1.3174841008654246, "kappa_radpm": 1.859231053457122, "vx_mps": 2.4352872088778605, "ax_mps2": 0.9506732834492311}, {"id": 15, "s_m": 1.499491804576432, "d_m": 0.0, "x_m": -3.306661485881725, "y_m": -1.9139233588031108, "d_right": 1.3439469497570296, "d_left": 0.36269184484515643, "psi_rad": 1.4700809053828794, "kappa_radpm": 1.2547299278486248, "vx_mps": 2.474003643766996, "ax_mps2": 4.2965204420399115}, {"id": 16, "s_m": 1.5994579248815275, "d_m": 0.0, "x_m": -3.3020442385224373, "y_m": -1.8135120352343823, "d_right": 1.2704344250787363, "d_left": 0.4064660566103582, "psi_rad": 1.5726413985868524, "kappa_radpm": 0.8473373930893524, "vx_mps": 2.6419135088372783, "ax_mps2": 6.058850895485518}, {"id": 17, "s_m": 1.699424045186623, "d_m": 0.0, "x_m": -3.306061327178295, "y_m": -1.714042581432132, "d_right": 1.190399903567772, "d_left": 0.46089525574889634, "psi_rad": 1.6463032655178467, "kappa_radpm": 0.6435904778455489, "vx_mps": 2.8620039523442977, "ax_mps2": 6.696642223380761}, {"id": 18, "s_m": 1.7993901654917184, "d_m": 0.0, "x_m": -3.316626331219509, "y_m": -1.6139249109586624, "d_right": 1.0966579156288065, "d_left": 0.5248825842701744, "psi_rad": 1.702660161986704, "kappa_radpm": 0.46760641996891206, "vx_mps": 3.087060301892353, "ax_mps2": 7.4746706138893275}, {"id": 19, "s_m": 1.8993562857968138, "d_m": 0.0, "x_m": -3.3317361976437687, "y_m": -1.5154194029349803, "d_right": 1.0072357335813238, "d_left": 0.5824902147728115, "psi_rad": 1.7405503425958002, "kappa_radpm": 0.2992601351452401, "vx_mps": 3.3202965155506443, "ax_mps2": 7.3481717342613075}, {"id": 20, "s_m": 1.9993224061019093, "d_m": 0.0, "x_m": -3.350043217076221, "y_m": -1.4161722987910326, "d_right": 0.9204105846818962, "d_left": 0.6482609991101036, "psi_rad": 1.763460788850484, "kappa_radpm": 0.1548601085163004, "vx_mps": 3.534615310100533, "ax_mps2": 7.2315621694257946}, {"id": 21, "s_m": 2.0992885264070047, "d_m": 0.0, "x_m": -3.369653978888756, "y_m": -1.3184541110809738, "d_right": 0.838695222664178, "d_left": 0.7202175784140613, "psi_rad": 1.77198135830366, "kappa_radpm": 0.018487418615716556, "vx_mps": 3.73354092224021, "ax_mps2": 7.123010152004804}, {"id": 22, "s_m": 2.1992546467121, "d_m": 0.0, "x_m": -3.389652366683647, "y_m": -1.2197700294524194, "d_right": 0.7593273301455518, "d_left": 0.7988678720190813, "psi_rad": 1.7673806098026916, "kappa_radpm": -0.10257511641946744, "vx_mps": 3.919623348948434, "ax_mps2": 7.0211895910659115}, {"id": 23, "s_m": 2.2992207670171956, "d_m": 0.0, "x_m": -3.4086149299044215, "y_m": -1.1214653066987779, "d_right": 0.6786302339620262, "d_left": 0.8820285262060443, "psi_rad": 1.754416281999817, "kappa_radpm": -0.1569558173443377, "vx_mps": 4.094778304659789, "ax_mps2": -0.8005752930027328}, {"id": 24, "s_m": 2.3991868873222915, "d_m": 0.0, "x_m": -3.4259872153793975, "y_m": -1.0231079881044618, "d_right": 0.6028510649572254, "d_left": 0.9689442131880679, "psi_rad": 1.7358304379561902, "kappa_radpm": -0.21639459290541582, "vx_mps": 4.075186934633219, "ax_mps2": -6.832317459206483}, {"id": 25, "s_m": 2.499153007627387, "d_m": 0.0, "x_m": -3.4412935314606967, "y_m": -0.9233824405331233, "d_right": 0.5326556254360805, "d_left": 1.0600218820619416, "psi_rad": 1.708138917464224, "kappa_radpm": -0.34292707260594596, "vx_mps": 3.9039912927702614, "ax_mps2": -4.93586621988957}, {"id": 26, "s_m": 2.5991191279324823, "d_m": 0.0, "x_m": -3.452992342394642, "y_m": -0.8245252736371902, "d_right": 0.4714684920430866, "d_left": 1.1527387704360716, "psi_rad": 1.6664451797018143, "kappa_radpm": -0.49944465540533073, "vx_mps": 3.775487944800161, "ax_mps2": -3.6769789455329254}, {"id": 27, "s_m": 2.699085248237578, "d_m": 0.0, "x_m": -3.459844022038555, "y_m": -0.7238035065373228, "d_right": 0.4198980352035686, "d_left": 1.2491940890920878, "psi_rad": 1.6091099839293932, "kappa_radpm": -0.6195120316487608, "vx_mps": 3.6768413865809397, "ax_mps2": -2.331687725704772}, {"id": 28, "s_m": 2.7990513685426732, "d_m": 0.0, "x_m": -3.4604001589138003, "y_m": -0.6242611769826999, "d_right": 0.3681549610134653, "d_left": 1.3447598964618417, "psi_rad": 1.541586197790606, "kappa_radpm": -0.7445633616602585, "vx_mps": 3.6128912287350987, "ax_mps2": -1.0079999017732153}, {"id": 29, "s_m": 2.8990174888477687, "d_m": 0.0, "x_m": -3.4534863710234425, "y_m": -0.5241637972830434, "d_right": 0.32754280935568847, "d_left": 1.304508232753717, "psi_rad": 1.4602170503827674, "kappa_radpm": -0.8591777970377666, "vx_mps": 3.5848920976473813, "ax_mps2": -0.049643193475104895}, {"id": 30, "s_m": 2.998983609152864, "d_m": 0.0, "x_m": -3.4382090752567223, "y_m": -0.42609544859664633, "d_right": 0.3063831237205704, "d_left": 1.2649945180743132, "psi_rad": 1.3710463719283725, "kappa_radpm": -0.9344683745658761, "vx_mps": 3.583507510369152, "ax_mps2": -0.04964319347511378}, {"id": 31, "s_m": 3.0989497294579595, "d_m": 0.0, "x_m": -3.4138644636974425, "y_m": -0.3294152193429933, "d_right": 0.3076286708450168, "d_left": 1.1913723399582141, "psi_rad": 1.2779050348050913, "kappa_radpm": -0.8998503511912668, "vx_mps": 3.5821223879104958, "ax_mps2": 0.4038746879802604}, {"id": 32, "s_m": 3.198915849763055, "d_m": 0.0, "x_m": -3.381123496674879, "y_m": -0.23557244345860248, "d_right": 0.33134668795662453, "d_left": 1.1179804133263123, "psi_rad": 1.194492723472881, "kappa_radpm": -0.7687663751001792, "vx_mps": 3.593375623736437, "ax_mps2": 2.023503766420046}, {"id": 33, "s_m": 3.2988819700681504, "d_m": 0.0, "x_m": -3.3411289832019473, "y_m": -0.14437293418578354, "d_right": 0.3741426461694902, "d_left": 1.0546888695820302, "psi_rad": 1.1213653077364485, "kappa_radpm": -0.7089482543852459, "vx_mps": 3.649234442340852, "ax_mps2": 2.5075175169892674}, {"id": 34, "s_m": 3.398848090373246, "d_m": 0.0, "x_m": -3.2945656717413896, "y_m": -0.05578062440261276, "d_right": 0.4309932731865818, "d_left": 1.003147358437414, "psi_rad": 1.053485986410749, "kappa_radpm": -0.6427642500291223, "vx_mps": 3.717290089663129, "ax_mps2": 3.064706695371643}, {"id": 35, "s_m": 3.4988142106783413, "d_m": 0.0, "x_m": -3.242810988568933, "y_m": 0.029079749558933426, "d_right": 0.4853248680446905, "d_left": 0.9588920836156344, "psi_rad": 0.9943995234962157, "kappa_radpm": -0.5463727519154324, "vx_mps": 3.798812878667021, "ax_mps2": 4.059518380134062}, {"id": 36, "s_m": 3.5987803309834367, "d_m": 0.0, "x_m": -3.186009645561649, "y_m": 0.11171452227942986, "d_right": 0.5296860984862999, "d_left": 0.9221022766701255, "psi_rad": 0.9444894435391327, "kappa_radpm": -0.4380163923561182, "vx_mps": 3.904178260871918, "ax_mps2": 5.2645625062989065}, {"id": 37, "s_m": 3.698746451288532, "d_m": 0.0, "x_m": -3.1260792535093644, "y_m": 0.19126914725957586, "d_right": 0.5841515674068419, "d_left": 0.8839719055094105, "psi_rad": 0.9082855728432587, "kappa_radpm": -0.2914992394647471, "vx_mps": 4.036726851098749, "ax_mps2": 6.95697565712008}, {"id": 38, "s_m": 3.7987125715936276, "d_m": 0.0, "x_m": -3.063434467325655, "y_m": 0.26955961379753646, "d_right": 0.6477613495264632, "d_left": 0.847017244539009, "psi_rad": 0.8859383844519579, "kappa_radpm": -0.15192871578757833, "vx_mps": 4.205483016417994, "ax_mps2": 6.86425139449474}, {"id": 39, "s_m": 3.898678691898723, "d_m": 0.0, "x_m": -2.999911256671328, "y_m": 0.3465150010784446, "d_right": 0.7183937898235555, "d_left": 0.8003559810526939, "psi_rad": 0.8778273176820888, "kappa_radpm": -0.012706388035954343, "vx_mps": 4.3656010540122825, "ax_mps2": 6.776069842235294}, {"id": 40, "s_m": 3.9986448122038185, "d_m": 0.0, "x_m": -2.9359832338196785, "y_m": 0.42372843284506084, "d_right": 0.7846691015096403, "d_left": 0.7536336821056863, "psi_rad": 0.8820284601167581, "kappa_radpm": 0.06016698525399627, "vx_mps": 4.518099975529802, "ax_mps2": 6.691900054912677}, {"id": 41, "s_m": 4.098610932508914, "d_m": 0.0, "x_m": -2.872696752288335, "y_m": 0.5010174009804647, "d_right": 0.8423890278627619, "d_left": 0.7083202561837991, "psi_rad": 0.8869825774281674, "kappa_radpm": 0.03931299039252112, "vx_mps": 4.66381324248737, "ax_mps2": 6.611307537108602}, {"id": 42, "s_m": 4.198577052814009, "d_m": 0.0, "x_m": -2.8095039861115154, "y_m": 0.5788256987345235, "d_right": 0.907990922833559, "d_left": 0.6708831997238008, "psi_rad": 0.8904338106737136, "kappa_radpm": 0.04614049700437333, "vx_mps": 4.803432885974125, "ax_mps2": 6.533931332773483}, {"id": 43, "s_m": 4.298543173119105, "d_m": 0.0, "x_m": -2.746858982142785, "y_m": 0.6567357855893563, "d_right": 0.979608291815145, "d_left": 0.6116074627687006, "psi_rad": 0.8975650966758181, "kappa_radpm": 0.09653498955860686, "vx_mps": 4.937540989339962, "ax_mps2": 6.459467673135926}, {"id": 44, "s_m": 4.3985092934242, "d_m": 0.0, "x_m": -2.6848909180452227, "y_m": 0.7353522548137728, "d_right": 1.0432877944305754, "d_left": 0.5630059987582089, "psi_rad": 0.9100014542520621, "kappa_radpm": 0.16024159176610347, "vx_mps": 5.066632695040307, "ax_mps2": 6.387658024297025}, {"id": 45, "s_m": 4.498475413729296, "d_m": 0.0, "x_m": -2.624267295476174, "y_m": 0.8148803085038939, "d_right": 1.0956912829902594, "d_left": 0.5136973312913593, "psi_rad": 0.9304145325114569, "kappa_radpm": 0.24827038978527707, "vx_mps": 5.191133368302223, "ax_mps2": 5.2054669472980715}, {"id": 46, "s_m": 4.598441534034391, "d_m": 0.0, "x_m": -2.565662242316516, "y_m": 0.8958406880624392, "d_right": 1.1467844445910507, "d_left": 0.4476603797685835, "psi_rad": 0.9589505883271885, "kappa_radpm": 0.29207974215748256, "vx_mps": 5.290425910803059, "ax_mps2": 3.716895809383171}, {"id": 47, "s_m": 4.698407654339487, "d_m": 0.0, "x_m": -2.5093489760995116, "y_m": 0.9784917663089648, "d_right": 1.2014636745078109, "d_left": 0.38940855342331976, "psi_rad": 0.9856094018368914, "kappa_radpm": 0.24099959905771648, "vx_mps": 5.360199028485881, "ax_mps2": 4.964591636186315}, {"id": 48, "s_m": 4.798373774644583, "d_m": 0.0, "x_m": -2.4550889153858466, "y_m": 1.0624093327661657, "d_right": 1.2581635882705, "d_left": 0.3471857661952799, "psi_rad": 1.0073698500576, "kappa_radpm": 0.20495181236566612, "vx_mps": 5.452001059658585, "ax_mps2": 5.7930384199733265}, {"id": 49, "s_m": 4.898339894949678, "d_m": 0.0, "x_m": -2.402534040486109, "y_m": 1.1475148667377248, "d_right": 1.3024387572637888, "d_left": 0.3033732025148413, "psi_rad": 1.027779252012278, "kappa_radpm": 0.2031372187336908, "vx_mps": 5.557205296348562, "ax_mps2": 5.607221902983895}, {"id": 50, "s_m": 4.998306015254774, "d_m": 0.0, "x_m": -2.351780479823793, "y_m": 1.233564261579412, "d_right": 1.351206384759058, "d_left": 0.2870057279161435, "psi_rad": 1.0479817374315126, "kappa_radpm": 0.20113624751408885, "vx_mps": 5.657172009443113, "ax_mps2": 5.43919641595591}, {"id": 51, "s_m": 5.098272135559869, "d_m": 0.0, "x_m": -2.302706824072104, "y_m": 1.3207229119408914, "d_right": 1.304148646755391, "d_left": 0.2814264563702871, "psi_rad": 1.067971184093511, "kappa_radpm": 0.1985444911618802, "vx_mps": 5.752483452474036, "ax_mps2": 5.3020266348379455}, {"id": 52, "s_m": 5.198238255864965, "d_m": 0.0, "x_m": -2.255432049628693, "y_m": 1.4087280928125603, "d_right": 1.2572594793588372, "d_left": 0.297477836923119, "psi_rad": 1.0877001560657158, "kappa_radpm": 0.19754921895146782, "vx_mps": 5.843895270781782, "ax_mps2": 5.121452020032701}, {"id": 53, "s_m": 5.29820437617006, "d_m": 0.0, "x_m": -2.209854678189102, "y_m": 1.4977527316522585, "d_right": 1.2116731613450316, "d_left": 0.34157425660524565, "psi_rad": 1.1075915348134056, "kappa_radpm": 0.20020162641829364, "vx_mps": 5.93085620407445, "ax_mps2": 4.8219158322341515}, {"id": 54, "s_m": 5.398170496475156, "d_m": 0.0, "x_m": -2.1661168591692856, "y_m": 1.5875716341157626, "d_right": 1.167629366538768, "d_left": 0.36450424366641243, "psi_rad": 1.127756034474427, "kappa_radpm": 0.20498367331256767, "vx_mps": 6.011581468281098, "ax_mps2": 4.452364357558257}, {"id": 55, "s_m": 5.498136616780251, "d_m": 0.0, "x_m": -2.124192535496952, "y_m": 1.6783539021459273, "d_right": 1.1254858595263983, "d_left": 0.3792124178482342, "psi_rad": 1.1487282393508171, "kappa_radpm": 0.21445179586725263, "vx_mps": 6.085169096401537, "ax_mps2": 3.915854756874399}, {"id": 56, "s_m": 5.5981027370853464, "d_m": 0.0, "x_m": -2.084255197116114, "y_m": 1.769940724200235, "d_right": 1.0854006370942708, "d_left": 0.41610171606919677, "psi_rad": 1.1706010861708613, "kappa_radpm": 0.22253630396692087, "vx_mps": 6.149161613362123, "ax_mps2": 3.439239714816934}, {"id": 57, "s_m": 5.698068857390441, "d_m": 0.0, "x_m": -2.0463388705978205, "y_m": 1.8624514610072096, "d_right": 1.0530158406853583, "d_left": 0.4534083060563486, "psi_rad": 1.1931328195472248, "kappa_radpm": 0.22815862007255405, "vx_mps": 6.204820984478535, "ax_mps2": 3.0671041666524954}, {"id": 58, "s_m": 5.798034977695537, "d_m": 0.0, "x_m": -2.010564079766566, "y_m": 1.9557141028432763, "d_right": 1.0316073141024584, "d_left": 0.47690111305073324, "psi_rad": 1.2153561117576512, "kappa_radpm": 0.18876592398293587, "vx_mps": 6.254040010876878, "ax_mps2": 4.465590924352856}, {"id": 59, "s_m": 5.898001098000632, "d_m": 0.0, "x_m": -1.976493308994374, "y_m": 2.049658695238799, "d_right": 1.0154561151148536, "d_left": 0.48705478326702834, "psi_rad": 1.2284936562000988, "kappa_radpm": 0.07409516917810102, "vx_mps": 6.325016368105561, "ax_mps2": 5.68090917962884}, {"id": 60, "s_m": 5.997967218305728, "d_m": 0.0, "x_m": -1.9431452345749778, "y_m": 2.1438251271804365, "d_right": 0.9942321409858118, "d_left": 0.5108518748204108, "psi_rad": 1.2312720353606048, "kappa_radpm": 0.013027091697622737, "vx_mps": 6.414174066689292, "ax_mps2": 5.630370885991184}, {"id": 61, "s_m": 6.097933338610823, "d_m": 0.0, "x_m": -1.9099541542564171, "y_m": 2.238070591720435, "d_right": 0.9667772134371401, "d_left": 0.5395087391898453, "psi_rad": 1.2333535369999438, "kappa_radpm": 0.028557083949929167, "vx_mps": 6.5013322961137785, "ax_mps2": 5.580906566937613}, {"id": 62, "s_m": 6.197899458915919, "d_m": 0.0, "x_m": -1.8770112843255398, "y_m": 2.3324564951641205, "d_right": 0.9493699766733601, "d_left": 0.5465251607201158, "psi_rad": 1.236676945210722, "kappa_radpm": 0.03035776657852252, "vx_mps": 6.586586732068137, "ax_mps2": 5.532465871222492}, {"id": 63, "s_m": 6.297865579221014, "d_m": 0.0, "x_m": -1.844356018922268, "y_m": 2.4269113809523795, "d_right": 0.9425985222296018, "d_left": 0.558719684011489, "psi_rad": 1.2389405306765513, "kappa_radpm": 0.015021373907162025, "vx_mps": 6.67002571785064, "ax_mps2": 5.485002281718808}, {"id": 64, "s_m": 6.39783169952611, "d_m": 0.0, "x_m": -1.8118141350638535, "y_m": 2.521504690368936, "d_right": 0.9128929163458857, "d_left": 0.5877891767165835, "psi_rad": 1.2398189175525074, "kappa_radpm": 0.005809223783395446, "vx_mps": 6.751731027871667, "ax_mps2": 5.43847271726982}, {"id": 65, "s_m": 6.497797819831206, "d_m": 0.0, "x_m": -1.779356812053347, "y_m": 2.616042871450029, "d_right": 0.88039112232328, "d_left": 0.6200006559047985, "psi_rad": 1.2403131710191695, "kappa_radpm": 0.004089283865047349, "vx_mps": 6.831778531874855, "ax_mps2": 5.392837186236664}, {"id": 66, "s_m": 6.597763940136301, "d_m": 0.0, "x_m": -1.746904559845166, "y_m": 2.710692312024067, "d_right": 0.8537592848646148, "d_left": 0.652279417657482, "psi_rad": 1.240636260382276, "kappa_radpm": 0.0023238614226629172, "vx_mps": 6.910238775214385, "ax_mps2": 5.3480584837626095}, {"id": 67, "s_m": 6.697730060441397, "d_m": 0.0, "x_m": -1.7145007982573612, "y_m": 2.8052718686559186, "d_right": 0.8383296322334649, "d_left": 0.6845663012995902, "psi_rad": 1.2407757991173132, "kappa_radpm": 0.0004709513721058876, "vx_mps": 6.9871774878021675, "ax_mps2": 5.304101926190822}, {"id": 68, "s_m": 6.797696180746492, "d_m": 0.0, "x_m": -1.68207501964714, "y_m": 2.8999301642777287, "d_right": 0.8331541945839255, "d_left": 0.716926864522457, "psi_rad": 1.240728935828974, "kappa_radpm": -0.0014557532423348039, "vx_mps": 7.062656032157984, "ax_mps2": 5.2089800434977604}, {"id": 69, "s_m": 6.897662301051588, "d_m": 0.0, "x_m": -1.6496515435970145, "y_m": 2.9945365381902245, "d_right": 0.8006850946479831, "d_left": 0.7493283705375952, "psi_rad": 1.2404804296039051, "kappa_radpm": -0.003520729752705658, "vx_mps": 7.136004013449533, "ax_mps2": -11.919466051873266}, {"id": 70, "s_m": 6.997628421356683, "d_m": 0.0, "x_m": -1.6171902540744214, "y_m": 3.089144550684869, "d_right": 0.7682106830517775, "d_left": 0.7818062740489108, "psi_rad": 1.240025029866626, "kappa_radpm": -0.005524976478181307, "vx_mps": 6.967027179890985, "ax_mps2": -11.835559172471294}, {"id": 71, "s_m": 7.0975945416617785, "d_m": 0.0, "x_m": -1.5846690088105588, "y_m": 3.183757069130916, "d_right": 0.7357130615832423, "d_left": 0.8143780276207416, "psi_rad": 1.2393779401758231, "kappa_radpm": -0.00742722729621755, "vx_mps": 6.795083359393984, "ax_mps2": -11.793701788281616}, {"id": 72, "s_m": 7.1975606619668735, "d_m": 0.0, "x_m": -1.5521018513538751, "y_m": 3.2782750981087965, "d_right": 0.7032128554048136, "d_left": 0.8470274374684025, "psi_rad": 1.2385524716042358, "kappa_radpm": -0.008574201950283454, "vx_mps": 6.619306356219924, "ax_mps2": -11.793684452125976}, {"id": 73, "s_m": 7.297526782271969, "d_m": 0.0, "x_m": -1.5194239452945237, "y_m": 3.3728536830351956, "d_right": 0.6706499721768643, "d_left": 0.8798137626517187, "psi_rad": 1.23770353332853, "kappa_radpm": -0.008398194287920466, "vx_mps": 6.438732707600957, "ax_mps2": -11.804918333574953}, {"id": 74, "s_m": 7.397492902577064, "d_m": 0.0, "x_m": -1.4867100961238555, "y_m": 3.4672787230953817, "d_right": 0.6381124541502582, "d_left": 0.9126645692079642, "psi_rad": 1.2368595470749217, "kappa_radpm": -0.008855504493492601, "vx_mps": 6.252766996080887, "ax_mps2": -11.765252551430814}, {"id": 75, "s_m": 7.49745902288216, "d_m": 0.0, "x_m": -1.4538790845406626, "y_m": 3.56176964021267, "d_right": 0.6092175937949277, "d_left": 0.9456532141724182, "psi_rad": 1.2359044953493032, "kappa_radpm": -0.010254415230557291, "vx_mps": 6.061752370670223, "ax_mps2": -11.76500096138041}, {"id": 76, "s_m": 7.597425143187255, "d_m": 0.0, "x_m": -1.420991522723056, "y_m": 3.6561184933364355, "d_right": 0.5835962274875321, "d_left": 0.9530594745630787, "psi_rad": 1.2349641692859419, "kappa_radpm": -0.0049714850545421125, "vx_mps": 5.864523748808273, "ax_mps2": -11.850488196703234}, {"id": 77, "s_m": 7.697391263492351, "d_m": 0.0, "x_m": -1.38805284182033, "y_m": 3.75047588642874, "d_right": 0.570613293654401, "d_left": 0.9687425328689614, "psi_rad": 1.2351359137693592, "kappa_radpm": 0.008534670774499436, "vx_mps": 5.658917223537091, "ax_mps2": -11.850447812317297}, {"id": 78, "s_m": 7.797357383797446, "d_m": 0.0, "x_m": -1.3551992171607237, "y_m": 3.8448017047698024, "d_right": 0.5614523681246806, "d_left": 0.9941886704109604, "psi_rad": 1.2358463995618034, "kappa_radpm": -0.007450120339607429, "vx_mps": 5.445553925864109, "ax_mps2": -10.795342198992966}, {"id": 79, "s_m": 7.897323504102542, "d_m": 0.0, "x_m": -1.3222731765140114, "y_m": 3.939083765896645, "d_right": 0.5504495067366979, "d_left": 1.0195943419563211, "psi_rad": 1.2331005097976322, "kappa_radpm": -0.04767838894025675, "vx_mps": 5.243636200719458, "ax_mps2": -6.837190495236334}, {"id": 80, "s_m": 7.997289624407637, "d_m": 0.0, "x_m": -1.288803620094114, "y_m": 4.03321094423885, "d_right": 0.540007280372031, "d_left": 1.033691935747813, "psi_rad": 1.222442569505838, "kappa_radpm": -0.20145700490425913, "vx_mps": 5.111628487116831, "ax_mps2": -1.5753958976712303}, {"id": 81, "s_m": 8.097255744712733, "d_m": 0.0, "x_m": -1.253430090916872, "y_m": 4.126661616735528, "d_right": 0.5048673234301595, "d_left": 1.0530885287745697, "psi_rad": 1.191996389313791, "kappa_radpm": -0.40770466562138097, "vx_mps": 5.08072567244432, "ax_mps2": -1.5612642376722843}, {"id": 82, "s_m": 8.197221865017829, "d_m": 0.0, "x_m": -1.2145671907810374, "y_m": 4.218515428055911, "d_right": 0.4664621737928695, "d_left": 1.0807658413298156, "psi_rad": 1.1494985784418381, "kappa_radpm": -0.40633859131852057, "vx_mps": 5.049913494448435, "ax_mps2": -1.6111173811667587}, {"id": 83, "s_m": 8.297187985322925, "d_m": 0.0, "x_m": -1.1718409858597019, "y_m": 4.309084230056629, "d_right": 0.42455417134078594, "d_left": 1.0998899838640155, "psi_rad": 1.1113638104829284, "kappa_radpm": -0.35467920563490046, "vx_mps": 5.017919089972427, "ax_mps2": -2.483979568454287}, {"id": 84, "s_m": 8.397154105628019, "d_m": 0.0, "x_m": -1.1261540481928975, "y_m": 4.397376176013605, "d_right": 0.38052858162209324, "d_left": 1.1308244039516333, "psi_rad": 1.0745538445527572, "kappa_radpm": -0.3893969677190654, "vx_mps": 4.968187234068249, "ax_mps2": -1.8659121248976545}, {"id": 85, "s_m": 8.497120225933115, "d_m": 0.0, "x_m": -1.0765550710320106, "y_m": 4.484738414671292, "d_right": 0.34305701977094927, "d_left": 1.168834290923273, "psi_rad": 1.0338027328800723, "kappa_radpm": -0.4207378776967854, "vx_mps": 4.930499812478062, "ax_mps2": -1.1011166150528908}, {"id": 86, "s_m": 8.59708634623821, "d_m": 0.0, "x_m": -1.0240905515608667, "y_m": 4.568707458898355, "d_right": 0.3146912735623565, "d_left": 1.1995784953303832, "psi_rad": 0.990280557744007, "kappa_radpm": -0.456295401277741, "vx_mps": 4.90812384611733, "ax_mps2": -0.590116967077391}, {"id": 87, "s_m": 8.697052466543306, "d_m": 0.0, "x_m": -0.9668496258015635, "y_m": 4.651669108311997, "d_right": 0.3119767294998219, "d_left": 1.2423676360666869, "psi_rad": 0.9429950761554585, "kappa_radpm": -0.4798389512820447, "vx_mps": 4.896089897190992, "ax_mps2": -0.25672292762548543}, {"id": 88, "s_m": 8.7970185868484, "d_m": 0.0, "x_m": -0.9069634490872412, "y_m": 4.730157487822055, "d_right": 0.3353125676273292, "d_left": 1.2945325764346947, "psi_rad": 0.8948201374148005, "kappa_radpm": -0.4947979346002379, "vx_mps": 4.890845437267418, "ax_mps2": -0.09240073189310084}, {"id": 89, "s_m": 8.896984707153496, "d_m": 0.0, "x_m": -0.8415715068391946, "y_m": 4.8076015086727, "d_right": 0.37964280936931466, "d_left": 1.3574122014216867, "psi_rad": 0.844197579141482, "kappa_radpm": -0.502052238813635, "vx_mps": 4.88895645366965, "ax_mps2": -0.09240073189311862}, {"id": 90, "s_m": 8.996950827458592, "d_m": 0.0, "x_m": -0.7742361035223548, "y_m": 4.879890034075487, "d_right": 0.4193583551719631, "d_left": 1.2759813067671542, "psi_rad": 0.798879181263512, "kappa_radpm": -0.41928029926895727, "vx_mps": 4.887066739928636, "ax_mps2": 1.8938226462271297}, {"id": 91, "s_m": 9.096916947763688, "d_m": 0.0, "x_m": -0.70247056273017, "y_m": 4.9507268320175495, "d_right": 0.47462865851598013, "d_left": 1.1932484416749596, "psi_rad": 0.7599631993150319, "kappa_radpm": -0.3554302683135763, "vx_mps": 4.925653004982712, "ax_mps2": 3.2827373246507516}, {"id": 92, "s_m": 9.196883068068782, "d_m": 0.0, "x_m": -0.6288979791482301, "y_m": 5.018338874977349, "d_right": 0.5400082274336998, "d_left": 1.1165216920672167, "psi_rad": 0.7274852776236894, "kappa_radpm": -0.2943900473624102, "vx_mps": 4.991831583111287, "ax_mps2": 0.11247487303651367}, {"id": 93, "s_m": 9.296849188373878, "d_m": 0.0, "x_m": -0.5531808449250755, "y_m": 5.083905979152817, "d_right": 0.6050925413699135, "d_left": 1.0456863819990843, "psi_rad": 0.7007795666591694, "kappa_radpm": -0.2401572428518396, "vx_mps": 4.994083490243818, "ax_mps2": -5.976735675346483}, {"id": 94, "s_m": 9.396815308678974, "d_m": 0.0, "x_m": -0.47572228287207763, "y_m": 5.147814242430867, "d_right": 0.6694206050833437, "d_left": 0.9817035268056874, "psi_rad": 0.6806041858835713, "kappa_radpm": -0.1416801362559701, "vx_mps": 4.872979350707222, "ax_mps2": -8.637605060000555}, {"id": 95, "s_m": 9.49678142898407, "d_m": 0.0, "x_m": -0.3976366356435115, "y_m": 5.210408399351092, "d_right": 0.7330101421010635, "d_left": 0.9185332523929562, "psi_rad": 0.6730585298101885, "kappa_radpm": -0.008446964548484205, "vx_mps": 4.692439879131872, "ax_mps2": -10.763404285609637}, {"id": 96, "s_m": 9.596747549289166, "d_m": 0.0, "x_m": -0.3193778696919846, "y_m": 5.273023454451551, "d_right": 0.7948818710941254, "d_left": 0.8558157293763545, "psi_rad": 0.6779932202569711, "kappa_radpm": 0.06610941238997219, "vx_mps": 4.457245840634311, "ax_mps2": -10.752435909999896}, {"id": 97, "s_m": 9.69671366959426, "d_m": 0.0, "x_m": -0.24120584977576226, "y_m": 5.336320511017972, "d_right": 0.8575760744635893, "d_left": 0.7929975604352706, "psi_rad": 0.682584300817496, "kappa_radpm": 0.024533821457215756, "vx_mps": 4.209190169183158, "ax_mps2": -11.632486574539579}, {"id": 98, "s_m": 9.796679789899356, "d_m": 0.0, "x_m": -0.16413993703399532, "y_m": 5.399032786680298, "d_right": 0.9202940367473684, "d_left": 0.7314132566954596, "psi_rad": 0.6829092717619586, "kappa_radpm": -0.00678705034098419, "vx_mps": 3.923209499329913, "ax_mps2": -11.715928028486932}, {"id": 99, "s_m": 9.896645910204452, "d_m": 0.0, "x_m": -0.08558812660893299, "y_m": 5.462955949073225, "d_right": 0.984700089107347, "d_left": 0.6664226238336369, "psi_rad": 0.6838000108751872, "kappa_radpm": 0.02563516618183172, "vx_mps": 3.612365019494753, "ax_mps2": -10.926533139243325}, {"id": 100, "s_m": 9.996612030509548, "d_m": 0.0, "x_m": -0.009146513288175716, "y_m": 5.525496773815543, "d_right": 1.0475757895102746, "d_left": 0.6033305710937183, "psi_rad": 0.6885734231699657, "kappa_radpm": 0.10266978333101114, "vx_mps": 3.2961515106922645, "ax_mps2": -8.236836103712884}, {"id": 101, "s_m": 10.096578150814642, "d_m": 0.0, "x_m": 0.068531262208678, "y_m": 5.590734960154776, "d_right": 1.118478370464264, "d_left": 0.5442254280761164, "psi_rad": 0.7137941570171619, "kappa_radpm": 0.4121152606977001, "vx_mps": 3.036083938840408, "ax_mps2": -5.901592010232473}, {"id": 102, "s_m": 10.196544271119738, "d_m": 0.0, "x_m": 0.14164906921576206, "y_m": 5.657573517411743, "d_right": 1.194626353112216, "d_left": 0.4959760907543474, "psi_rad": 0.7734158432138475, "kappa_radpm": 0.7625736699881919, "vx_mps": 2.8351167824115646, "ax_mps2": -4.6232554628259}, {"id": 103, "s_m": 10.296510391424833, "d_m": 0.0, "x_m": 0.21004863603646348, "y_m": 5.730285780405274, "d_right": 1.278696860440235, "d_left": 0.4444924099741949, "psi_rad": 0.8631292959243699, "kappa_radpm": 1.0408649704272144, "vx_mps": 2.667123796586055, "ax_mps2": -2.089687937640341}, {"id": 104, "s_m": 10.39647651172993, "d_m": 0.0, "x_m": 0.27011355970382495, "y_m": 5.809312096166573, "d_right": 1.3690311837056666, "d_left": 0.39556998139802096, "psi_rad": 0.9863355526001643, "kappa_radpm": 1.483955008382137, "vx_mps": 2.5876153799912167, "ax_mps2": -0.025864672413547795}, {"id": 105, "s_m": 10.496442632035023, "d_m": 0.0, "x_m": 0.31790430424326893, "y_m": 5.895949285140404, "d_right": 1.3635814676068088, "d_left": 0.3535756900052867, "psi_rad": 1.1525682483736908, "kappa_radpm": 1.793565894561393, "vx_mps": 2.586615969342724, "ax_mps2": -0.02586467241355622}, {"id": 106, "s_m": 10.59640875234012, "d_m": 0.0, "x_m": 0.35006476311333296, "y_m": 5.9898598576600035, "d_right": 1.3530331492585344, "d_left": 0.3192076817589005, "psi_rad": 1.328099876750212, "kappa_radpm": 1.7306188018041375, "vx_mps": 2.585616172394988, "ax_mps2": 0.4042573597844149}, {"id": 107, "s_m": 10.696374872645215, "d_m": 0.0, "x_m": 0.3657752458854523, "y_m": 6.087987157085168, "d_right": 1.3464160856693754, "d_left": 0.296836093059559, "psi_rad": 1.4924432424657788, "kappa_radpm": 1.5264012793155801, "vx_mps": 2.601198775694654, "ax_mps2": 1.6458529980993206}, {"id": 108, "s_m": 10.796340992950311, "d_m": 0.0, "x_m": 0.3663382110470108, "y_m": 6.188835757665353, "d_right": 1.3625027333386017, "d_left": 0.2806722747017301, "psi_rad": 1.6340601088421038, "kappa_radpm": 1.2930114987564092, "vx_mps": 2.6636993351916365, "ax_mps2": 2.7982738579216897}, {"id": 109, "s_m": 10.896307113255405, "d_m": 0.0, "x_m": 0.35404927537037334, "y_m": 6.2868775208112755, "d_right": 1.3973881814534732, "d_left": 0.26797616422882853, "psi_rad": 1.7547792230692392, "kappa_radpm": 1.1600257832916423, "vx_mps": 2.766723569595554, "ax_mps2": 3.090689814788877}, {"id": 110, "s_m": 10.996273233560501, "d_m": 0.0, "x_m": 0.32992335911417514, "y_m": 6.385059583262684, "d_right": 1.3681276143790435, "d_left": 0.28035594333158226, "psi_rad": 1.867135912432385, "kappa_radpm": 1.0613620067409544, "vx_mps": 2.876228059500394, "ax_mps2": 3.18770259358072}, {"id": 111, "s_m": 11.096239353865597, "d_m": 0.0, "x_m": 0.2962759770950077, "y_m": 6.478152849927467, "d_right": 1.2860265212662267, "d_left": 0.3152199501839041, "psi_rad": 1.9662310691944844, "kappa_radpm": 0.9472660590438171, "vx_mps": 2.9849643837390953, "ax_mps2": 3.525403075555373}, {"id": 112, "s_m": 11.196205474170693, "d_m": 0.0, "x_m": 0.25319621531071995, "y_m": 6.569252966030551, "d_right": 1.2091130536131205, "d_left": 0.34879412913520386, "psi_rad": 2.0571683216194656, "kappa_radpm": 0.8303745368193519, "vx_mps": 3.1007828218275404, "ax_mps2": 3.9789005544156475}, {"id": 113, "s_m": 11.296171594475789, "d_m": 0.0, "x_m": 0.20349959609063814, "y_m": 6.655345069252014, "d_right": 1.129171159696928, "d_left": 0.3910488175521824, "psi_rad": 2.1275005216088276, "kappa_radpm": 0.5907780216862518, "vx_mps": 3.226509663886073, "ax_mps2": 5.809540660398122}, {"id": 114, "s_m": 11.396137714780883, "d_m": 0.0, "x_m": 0.14810641885289827, "y_m": 6.739366557018631, "d_right": 1.053052422109451, "d_left": 0.447957857057068, "psi_rad": 2.1767647191199067, "kappa_radpm": 0.42752422105381266, "vx_mps": 3.401746476782126, "ax_mps2": 7.008006454493617}, {"id": 115, "s_m": 11.496103835085979, "d_m": 0.0, "x_m": 0.08959319188776864, "y_m": 6.820051072567378, "d_right": 0.9853238831065873, "d_left": 0.4992583649988919, "psi_rad": 2.2199138830497196, "kappa_radpm": 0.4392019861594804, "vx_mps": 3.6018058699709514, "ax_mps2": 6.252078735935002}, {"id": 116, "s_m": 11.596069955391075, "d_m": 0.0, "x_m": 0.02715648870062923, "y_m": 6.898630484487095, "d_right": 0.9260875158212317, "d_left": 0.549801144344432, "psi_rad": 2.2647183573241962, "kappa_radpm": 0.4446123065425938, "vx_mps": 3.7713389711220633, "ax_mps2": 5.62129648388705}, {"id": 117, "s_m": 11.69603607569617, "d_m": 0.0, "x_m": -0.03824666816602639, "y_m": 6.9739145810694465, "d_right": 0.867895135421098, "d_left": 0.6058615575339401, "psi_rad": 2.3066355180297635, "kappa_radpm": 0.39656989356193856, "vx_mps": 3.9175089069792493, "ax_mps2": 5.854562546118553}, {"id": 118, "s_m": 11.796002196001265, "d_m": 0.0, "x_m": -0.1069411290891321, "y_m": 7.046924175435891, "d_right": 0.8050385748602911, "d_left": 0.6696224979481974, "psi_rad": 2.3441046662799656, "kappa_radpm": 0.34764310156572503, "vx_mps": 4.0641594264865795, "ax_mps2": 6.193989193465608}, {"id": 119, "s_m": 11.89596831630636, "d_m": 0.0, "x_m": -0.1776799760428187, "y_m": 7.117134731792685, "d_right": 0.7536259532124574, "d_left": 0.7387686383965459, "psi_rad": 2.3743021778717495, "kappa_radpm": 0.25867931011571826, "vx_mps": 4.213759601788481, "ax_mps2": 6.859698102096561}, {"id": 120, "s_m": 11.995934436611456, "d_m": 0.0, "x_m": -0.2506748678961932, "y_m": 7.18592885955629, "d_right": 0.7147333924165792, "d_left": 0.807114904488253, "psi_rad": 2.3958734697999726, "kappa_radpm": 0.1719688975747212, "vx_mps": 4.3734705661666755, "ax_mps2": -2.2638855496317563}, {"id": 121, "s_m": 12.095900556916552, "d_m": 0.0, "x_m": -0.3244853057422562, "y_m": 7.253276457040827, "d_right": 0.6835116694893666, "d_left": 0.8748902289049932, "psi_rad": 2.4054726148772523, "kappa_radpm": 0.01996582811452755, "vx_mps": 4.321414245672746, "ax_mps2": -9.863965712017695}, {"id": 122, "s_m": 12.195866677221646, "d_m": 0.0, "x_m": -0.3985172997292499, "y_m": 7.320554835934716, "d_right": 0.6338059173790593, "d_left": 0.9428945769723429, "psi_rad": 2.3999019775429384, "kappa_radpm": -0.13175296107644688, "vx_mps": 4.086868766745218, "ax_mps2": -8.351106063408208}, {"id": 123, "s_m": 12.295832797526742, "d_m": 0.0, "x_m": -0.4720133899399149, "y_m": 7.389077423490429, "d_right": 0.5945385955681035, "d_left": 0.9945823907687046, "psi_rad": 2.380650909141197, "kappa_radpm": -0.24659400007229698, "vx_mps": 3.87722077908481, "ax_mps2": -7.09132129078654}, {"id": 124, "s_m": 12.395798917831838, "d_m": 0.0, "x_m": -0.543230201454864, "y_m": 7.458847314323293, "d_right": 0.5398429775207118, "d_left": 1.0470128210131504, "psi_rad": 2.3503069188162513, "kappa_radpm": -0.36439892733152696, "vx_mps": 3.689858698542982, "ax_mps2": -5.643630741168674}, {"id": 125, "s_m": 12.495765038136934, "d_m": 0.0, "x_m": -0.61242408625569, "y_m": 7.531812655449855, "d_right": 0.49550849700687394, "d_left": 1.109356397942212, "psi_rad": 2.306520444171996, "kappa_radpm": -0.5129164546321857, "vx_mps": 3.533654408109953, "ax_mps2": -4.036575490927889}, {"id": 126, "s_m": 12.595731158442028, "d_m": 0.0, "x_m": -0.6771229488011402, "y_m": 7.6074800425742986, "d_right": 0.4550505077632511, "d_left": 1.1767929025952597, "psi_rad": 2.2470337721525087, "kappa_radpm": -0.6856850296294716, "vx_mps": 3.417553495362072, "ax_mps2": -4.013749806933257}, {"id": 127, "s_m": 12.695697278747124, "d_m": 0.0, "x_m": -0.7370359718367114, "y_m": 7.687978237134763, "d_right": 0.3984890818647564, "d_left": 1.2396402150794512, "psi_rad": 2.1736167618291824, "kappa_radpm": -0.7380855466366906, "vx_mps": 3.2980591112823654, "ax_mps2": -3.9148986890814568}, {"id": 128, "s_m": 12.79566339905222, "d_m": 0.0, "x_m": -0.7904106792670598, "y_m": 7.771968495304549, "d_right": 0.3546499884038014, "d_left": 1.311702815491339, "psi_rad": 2.1001861858168924, "kappa_radpm": -0.7380990324154284, "vx_mps": 3.1771810516309373, "ax_mps2": -4.383046618151983}, {"id": 129, "s_m": 12.895629519357316, "d_m": 0.0, "x_m": -0.8378014887978864, "y_m": 7.860502561209778, "d_right": 0.327999610249108, "d_left": 1.3810979701555146, "psi_rad": 2.022644973072388, "kappa_radpm": -0.8301638697792392, "vx_mps": 3.036143459024395, "ax_mps2": -3.8574563635506682}, {"id": 130, "s_m": 12.995595639662412, "d_m": 0.0, "x_m": -0.8772369849529416, "y_m": 7.951632031773327, "d_right": 0.32262948947460396, "d_left": 1.3294120121075135, "psi_rad": 1.9334853010728104, "kappa_radpm": -0.9678298631417198, "vx_mps": 2.906361507100569, "ax_mps2": -3.0856574814912463}, {"id": 131, "s_m": 13.095561759967506, "d_m": 0.0, "x_m": -0.9080289469061265, "y_m": 8.047329208132918, "d_right": 0.3219486399214717, "d_left": 1.291802331106013, "psi_rad": 1.827769559050231, "kappa_radpm": -1.1423493160769125, "vx_mps": 2.79821635974164, "ax_mps2": -2.0112286520212628}, {"id": 132, "s_m": 13.195527880272602, "d_m": 0.0, "x_m": -0.9274216609018614, "y_m": 8.144470084316081, "d_right": 0.3285147354043916, "d_left": 1.2725299220005475, "psi_rad": 1.7044811751528648, "kappa_radpm": -1.3486287079686288, "vx_mps": 2.725418379835971, "ax_mps2": -0.6849980421182855}, {"id": 133, "s_m": 13.295494000577698, "d_m": 0.0, "x_m": -0.9337053383683203, "y_m": 8.244792370528517, "d_right": 0.33480623094110096, "d_left": 1.2662372075602255, "psi_rad": 1.5587363891551567, "kappa_radpm": -1.5557896039035986, "vx_mps": 2.7001763186454, "ax_mps2": -0.028163834448029505}, {"id": 134, "s_m": 13.395460120882793, "d_m": 0.0, "x_m": -0.9245037123444024, "y_m": 8.343553957490974, "d_right": 0.3255833360822047, "d_left": 1.2754330100000302, "psi_rad": 1.3947807325145334, "kappa_radpm": -1.6471476709093733, "vx_mps": 2.699133433761298, "ax_mps2": -0.028163834448025563}, {"id": 135, "s_m": 13.495426241187888, "d_m": 0.0, "x_m": -0.8995093860621769, "y_m": 8.44014030704771, "d_right": 0.31762818709504226, "d_left": 1.3002848836998597, "psi_rad": 1.24562163894837, "kappa_radpm": -1.3332955863424434, "vx_mps": 2.698090145773986, "ax_mps2": 2.265878806954817}, {"id": 136, "s_m": 13.595392361492983, "d_m": 0.0, "x_m": -0.8619942224146172, "y_m": 8.532276455750862, "d_right": 0.32432650374999183, "d_left": 1.2578169250147826, "psi_rad": 1.126251069241587, "kappa_radpm": -1.1089500018094998, "vx_mps": 2.78077555037229, "ax_mps2": 3.394914905282962}, {"id": 137, "s_m": 13.69535848179808, "d_m": 0.0, "x_m": -0.8141987759331005, "y_m": 8.62028775882352, "d_right": 0.3253785437393601, "d_left": 1.1999008313941357, "psi_rad": 1.0229873835899164, "kappa_radpm": -0.9510040583164258, "vx_mps": 2.900252679550951, "ax_mps2": 3.968144752891413}, {"id": 138, "s_m": 13.795324602103175, "d_m": 0.0, "x_m": -0.7588219529111813, "y_m": 8.702597323950235, "d_right": 0.3445896870710148, "d_left": 1.1566896978578378, "psi_rad": 0.9370072768361389, "kappa_radpm": -0.7805818530691733, "vx_mps": 3.033945562589024, "ax_mps2": 4.779295798493048}, {"id": 139, "s_m": 13.89529072240827, "d_m": 0.0, "x_m": -0.696117641132617, "y_m": 8.781676133603748, "d_right": 0.3560399767943145, "d_left": 1.1053878967406134, "psi_rad": 0.8664253297529642, "kappa_radpm": -0.6216147408210566, "vx_mps": 3.18753211658882, "ax_mps2": 5.644891576492133}, {"id": 140, "s_m": 13.995256842713365, "d_m": 0.0, "x_m": -0.629909093142394, "y_m": 8.855144521676113, "d_right": 0.3631486136789828, "d_left": 1.0628121295509139, "psi_rad": 0.8097787873660345, "kappa_radpm": -0.5269015456315691, "vx_mps": 3.3599042866091993, "ax_mps2": 6.008189985309847}, {"id": 141, "s_m": 14.095222963018461, "d_m": 0.0, "x_m": -0.5585094742555484, "y_m": 8.92643404828387, "d_right": 0.39173199036844514, "d_left": 1.0292036582782738, "psi_rad": 0.7608660569634665, "kappa_radpm": -0.4402817027217916, "vx_mps": 3.534145964861891, "ax_mps2": 6.45251391367449}, {"id": 142, "s_m": 14.195189083323557, "d_m": 0.0, "x_m": -0.4853799271099516, "y_m": 8.993372390654566, "d_right": 0.4369168579397248, "d_left": 1.0056914298775241, "psi_rad": 0.7236925006099215, "kappa_radpm": -0.3126759636893207, "vx_mps": 3.712176351586622, "ax_mps2": 7.134683281895477}, {"id": 143, "s_m": 14.295155203628651, "d_m": 0.0, "x_m": -0.40892476610680667, "y_m": 9.059073324561423, "d_right": 0.460584454423405, "d_left": 0.9890131837191675, "psi_rad": 0.6979758796749244, "kappa_radpm": -0.20192632451012174, "vx_mps": 3.89957773096939, "ax_mps2": 7.032171016708258}, {"id": 144, "s_m": 14.395121323933747, "d_m": 0.0, "x_m": -0.33225306542187094, "y_m": 9.122255733519035, "d_right": 0.5011725186092214, "d_left": 0.9682566238295873, "psi_rad": 0.6817730893543587, "kappa_radpm": -0.12561654987529536, "vx_mps": 4.075863612487163, "ax_mps2": 6.935491299077838}, {"id": 145, "s_m": 14.495087444238843, "d_m": 0.0, "x_m": -0.25375686580202406, "y_m": 9.185299061517316, "d_right": 0.5565601317959817, "d_left": 0.9401230902985893, "psi_rad": 0.6727028802325592, "kappa_radpm": -0.05756435970066429, "vx_mps": 4.242557306949905, "ax_mps2": 6.8438511644178615}, {"id": 146, "s_m": 14.595053564543939, "d_m": 0.0, "x_m": -0.1757703849198029, "y_m": 9.247063496034547, "d_right": 0.619030380359669, "d_left": 0.9129762846799759, "psi_rad": 0.6669670611406222, "kappa_radpm": -0.05781570321506596, "vx_mps": 4.400863438060623, "ax_mps2": 6.7566232115722675}, {"id": 147, "s_m": 14.695019684849035, "d_m": 0.0, "x_m": -0.09669537551004657, "y_m": 9.308949424358515, "d_right": 0.6818243110273551, "d_left": 0.8938351991830124, "psi_rad": 0.6611322361748706, "kappa_radpm": -0.05846583450451727, "vx_mps": 4.551754147370795, "ax_mps2": 6.673300855680456}, {"id": 148, "s_m": 14.794985805154129, "d_m": 0.0, "x_m": -0.01782932302739531, "y_m": 9.369930805188973, "d_right": 0.741605661462512, "d_left": 0.8813394047409985, "psi_rad": 0.6552534245004878, "kappa_radpm": -0.059511806810176704, "vx_mps": 4.696027449925023, "ax_mps2": 6.593468030264352}, {"id": 149, "s_m": 14.894951925459225, "d_m": 0.0, "x_m": 0.061790401498374774, "y_m": 9.430741518093628, "d_right": 0.8019543907440276, "d_left": 0.8691066370606669, "psi_rad": 0.6492303984137651, "kappa_radpm": -0.06075566383851958, "vx_mps": 4.834348006415316, "ax_mps2": 6.516778013842447}, {"id": 150, "s_m": 14.99491804576432, "d_m": 0.0, "x_m": 0.1416244910515292, "y_m": 9.4909722828256, "d_right": 0.8622611907745646, "d_left": 0.8327855593228767, "psi_rad": 0.6437496446020116, "kappa_radpm": -0.04519986067350675, "vx_mps": 4.967276384196725, "ax_mps2": 6.442938231005819}, {"id": 151, "s_m": 15.094884166069416, "d_m": 0.0, "x_m": 0.22175391423706395, "y_m": 9.550858930817045, "d_right": 0.9226394685603292, "d_left": 0.8077296704556471, "psi_rad": 0.6402139973566657, "kappa_radpm": -0.02557934095515564, "vx_mps": 5.09529054653771, "ax_mps2": 6.371699087860785}, {"id": 152, "s_m": 15.19485028637451, "d_m": 0.0, "x_m": 0.30224589405541513, "y_m": 9.610692569301477, "d_right": 0.9728160421947947, "d_left": 0.7948080181866956, "psi_rad": 0.6385011128548188, "kappa_radpm": -0.010064759142314314, "vx_mps": 5.218801953395669, "ax_mps2": -7.7623013016771605}, {"id": 153, "s_m": 15.294816406679606, "d_m": 0.0, "x_m": 0.3825610380809265, "y_m": 9.670268537128111, "d_right": 0.9977372964978468, "d_left": 0.774463203445137, "psi_rad": 0.6381567631058072, "kappa_radpm": 0.0032684627219126032, "vx_mps": 5.067934444843454, "ax_mps2": -11.808219677118677}, {"id": 154, "s_m": 15.394782526984702, "d_m": 0.0, "x_m": 0.46305768562531996, "y_m": 9.730018499938856, "d_right": 1.0319135864214233, "d_left": 0.7492346004375825, "psi_rad": 0.6390596585960634, "kappa_radpm": 0.012088590281326398, "vx_mps": 4.829401176084571, "ax_mps2": -11.752969940251187}, {"id": 155, "s_m": 15.494748647289798, "d_m": 0.0, "x_m": 0.5434110469855483, "y_m": 9.789810376724578, "d_right": 1.0744527082363515, "d_left": 0.6911751426931096, "psi_rad": 0.6404435033804036, "kappa_radpm": 0.015644134151962478, "vx_mps": 4.579663536286087, "ax_mps2": -11.684954685074008}, {"id": 156, "s_m": 15.594714767594892, "d_m": 0.0, "x_m": 0.6234883588990093, "y_m": 9.849592775866277, "d_right": 1.11075887396906, "d_left": 0.6435017897886482, "psi_rad": 0.6422296252390025, "kappa_radpm": 0.02077001832098673, "vx_mps": 4.317072959074588, "ax_mps2": -11.599992047333641}, {"id": 157, "s_m": 15.694680887899988, "d_m": 0.0, "x_m": 0.7037399608344639, "y_m": 9.909767927736755, "d_right": 1.1532393294432284, "d_left": 0.6083308669419888, "psi_rad": 0.6446835583722434, "kappa_radpm": 0.028379268566550125, "vx_mps": 4.039542861870536, "ax_mps2": -10.472338398296195}, {"id": 158, "s_m": 15.794647008205084, "d_m": 0.0, "x_m": 0.783319279307644, "y_m": 9.969816650202844, "d_right": 1.2025413971351795, "d_left": 0.5592117224394794, "psi_rad": 0.6493643130419907, "kappa_radpm": 0.11126499329483232, "vx_mps": 3.7714915421474426, "ax_mps2": -7.777235662732588}, {"id": 159, "s_m": 15.89461312851018, "d_m": 0.0, "x_m": 0.8625149612863702, "y_m": 10.031096906482068, "d_right": 1.2589477226200196, "d_left": 0.506636706316255, "psi_rad": 0.6715038512883628, "kappa_radpm": 0.3371745583040956, "vx_mps": 3.559385944328892, "ax_mps2": -5.384144938685857}, {"id": 160, "s_m": 15.994579248815274, "d_m": 0.0, "x_m": 0.9393247442283398, "y_m": 10.09480642690631, "d_right": 1.3170411058335196, "d_left": 0.4524009810944887, "psi_rad": 0.7173268238626355, "kappa_radpm": 0.5745541503137601, "vx_mps": 3.404814846555479, "ax_mps2": -3.055132265926042}, {"id": 161, "s_m": 16.09454536912037, "d_m": 0.0, "x_m": 1.0122599037056534, "y_m": 10.16273922393911, "d_right": 1.3812562828661057, "d_left": 0.4064045379882212, "psi_rad": 0.786532884492455, "kappa_radpm": 0.8183725507857129, "vx_mps": 3.313901733612135, "ax_mps2": -1.2896014408947258}, {"id": 162, "s_m": 16.194511489425466, "d_m": 0.0, "x_m": 1.0795028303252228, "y_m": 10.236425690721267, "d_right": 1.3873782114077846, "d_left": 0.37349526262124666, "psi_rad": 0.8785861167108082, "kappa_radpm": 1.0025871036162772, "vx_mps": 3.2747689681052776, "ax_mps2": -0.041425605722569425}, {"id": 163, "s_m": 16.29447760973056, "d_m": 0.0, "x_m": 1.1389514965103336, "y_m": 10.316249664486604, "d_right": 1.343521687642415, "d_left": 0.35577901679257856, "psi_rad": 0.9847001699092114, "kappa_radpm": 1.1198386482415492, "vx_mps": 3.2735041591992147, "ax_mps2": -0.041425605722567954}, {"id": 164, "s_m": 16.394443730035658, "d_m": 0.0, "x_m": 1.189320288582732, "y_m": 10.401853918790499, "d_right": 1.3161389772189356, "d_left": 0.3306057273293432, "psi_rad": 1.0912946261350045, "kappa_radpm": 1.0114874973472054, "vx_mps": 3.272238861410305, "ax_mps2": 1.1280563265299681}, {"id": 165, "s_m": 16.49440985034075, "d_m": 0.0, "x_m": 1.2311500588524897, "y_m": 10.492777488059264, "d_right": 1.3017804480545438, "d_left": 0.29884967200520685, "psi_rad": 1.1856239807371722, "kappa_radpm": 0.8777338376595853, "vx_mps": 3.306521131797201, "ax_mps2": 2.3613985154300865}, {"id": 166, "s_m": 16.59437597064585, "d_m": 0.0, "x_m": 1.264611763654432, "y_m": 10.586422441511957, "d_right": 1.288430965609264, "d_left": 0.2808781018659973, "psi_rad": 1.2679712468619453, "kappa_radpm": 0.7797187014211061, "vx_mps": 3.3771588193605835, "ax_mps2": 3.063060344435547}, {"id": 167, "s_m": 16.694342090950943, "d_m": 0.0, "x_m": 1.290862803346273, "y_m": 10.683052272412178, "d_right": 1.2685765733538947, "d_left": 0.2898428793508156, "psi_rad": 1.3417398386511163, "kappa_radpm": 0.6994673590598566, "vx_mps": 3.466641921077541, "ax_mps2": 3.5476186658127653}, {"id": 168, "s_m": 16.794308211256038, "d_m": 0.0, "x_m": 1.3102242722500426, "y_m": 10.781008302370937, "d_right": 1.2608835061903503, "d_left": 0.32423319958966923, "psi_rad": 1.4086114476501785, "kappa_radpm": 0.6416211592872691, "vx_mps": 3.5674766372968243, "ax_mps2": 3.7849583400417823}, {"id": 169, "s_m": 16.894274331561135, "d_m": 0.0, "x_m": 1.3232842423171638, "y_m": 10.880197983966665, "d_right": 1.1942100990554272, "d_left": 0.37758268532573197, "psi_rad": 1.4703684011945404, "kappa_radpm": 0.5945971143130924, "vx_mps": 3.6720055499957316, "ax_mps2": 3.9305501880390783}, {"id": 170, "s_m": 16.99424045186623, "d_m": 0.0, "x_m": 1.3304122282908188, "y_m": 10.979968932856403, "d_right": 1.1126230404247204, "d_left": 0.42496805694974654, "psi_rad": 1.5279912131709266, "kappa_radpm": 0.5592717967747556, "vx_mps": 3.7774949986895954, "ax_mps2": 3.964325352407683}, {"id": 171, "s_m": 17.094206572171323, "d_m": 0.0, "x_m": 1.3319793935866429, "y_m": 11.080029780014279, "d_right": 1.0379575025080396, "d_left": 0.48404775478226114, "psi_rad": 1.5804522840236876, "kappa_radpm": 0.4522865401672287, "vx_mps": 3.8809876211268115, "ax_mps2": 5.129403346184053}, {"id": 172, "s_m": 17.19417269247642, "d_m": 0.0, "x_m": 1.3290306069274251, "y_m": 11.180009341650017, "d_right": 0.9700072008576058, "d_left": 0.5519394765118641, "psi_rad": 1.617396565092291, "kappa_radpm": 0.28937599229092387, "vx_mps": 4.010934806168701, "ax_mps2": 6.971127879752356}, {"id": 173, "s_m": 17.294138812781515, "d_m": 0.0, "x_m": 1.3231567107894084, "y_m": 11.280026037342136, "d_right": 0.9035208692924884, "d_left": 0.6268177361812247, "psi_rad": 1.6394175446723065, "kappa_radpm": 0.16350359329303335, "vx_mps": 4.181070584899829, "ax_mps2": 6.8776785991408}, {"id": 174, "s_m": 17.394104933086613, "d_m": 0.0, "x_m": 1.3156471369773481, "y_m": 11.379717223422553, "d_right": 0.8376596503982136, "d_left": 0.7068822462627522, "psi_rad": 1.650960215502149, "kappa_radpm": 0.06817967423507698, "vx_mps": 4.342398061951208, "ax_mps2": 6.78886067028824}, {"id": 175, "s_m": 17.494071053391707, "d_m": 0.0, "x_m": 1.3074270498246428, "y_m": 11.479584068541236, "d_right": 0.7728047451936072, "d_left": 0.7913364604737383, "psi_rad": 1.6538378654870436, "kappa_radpm": 0.008847739377488843, "vx_mps": 4.495968533412875, "ax_mps2": 6.704126369019872}, {"id": 176, "s_m": 17.5940371736968, "d_m": 0.0, "x_m": 1.2991064599340845, "y_m": 11.57926098823649, "d_right": 0.7089257811358028, "d_left": 0.8788913973700544, "psi_rad": 1.654118562009442, "kappa_radpm": -0.0032312578511733683, "vx_mps": 4.642639772772674, "ax_mps2": 6.623028560643217}, {"id": 177, "s_m": 17.6940032940019, "d_m": 0.0, "x_m": 1.290813491142359, "y_m": 11.678990511657174, "d_right": 0.6449317986872416, "d_left": 0.9689222188786709, "psi_rad": 1.6532427841571966, "kappa_radpm": -0.011900345988657001, "vx_mps": 4.783122515625689, "ax_mps2": 6.545196561994133}, {"id": 178, "s_m": 17.793969414306993, "d_m": 0.0, "x_m": 1.2826305858141662, "y_m": 11.778768616200711, "d_right": 0.579052105721047, "d_left": 1.060833957083271, "psi_rad": 1.6519823304811756, "kappa_radpm": -0.013300359671858754, "vx_mps": 4.918013502762982, "ax_mps2": 6.4703189794413225}, {"id": 179, "s_m": 17.89393553461209, "d_m": 0.0, "x_m": 1.2746031127190267, "y_m": 11.878267129612407, "d_right": 0.5228547326957773, "d_left": 1.1448664514609082, "psi_rad": 1.6506705211592438, "kappa_radpm": -0.00757240176645263, "vx_mps": 5.047819547525584, "ax_mps2": 6.398131205942413}, {"id": 180, "s_m": 17.993901654917185, "d_m": 0.0, "x_m": 1.2666029919348005, "y_m": 11.9781061270311, "d_right": 0.47166623723067524, "d_left": 1.1749760518387584, "psi_rad": 1.6513104818386823, "kappa_radpm": 0.02055725701121326, "vx_mps": 5.1729754389619345, "ax_mps2": 6.328406118315165}, {"id": 181, "s_m": 18.09386777522228, "d_m": 0.0, "x_m": 1.2584344950681288, "y_m": 12.077498894893646, "d_right": 0.42593195302349773, "d_left": 1.2053639367556075, "psi_rad": 1.6545172100695815, "kappa_radpm": 0.02163280288059804, "vx_mps": 5.293857507227541, "ax_mps2": 6.26094702689583}, {"id": 182, "s_m": 18.193833895527376, "d_m": 0.0, "x_m": 1.250131560938342, "y_m": 12.177308729689852, "d_right": 0.38290565917281466, "d_left": 1.2369658632225944, "psi_rad": 1.651242842351521, "kappa_radpm": -0.08772079419699501, "vx_mps": 5.41079407058321, "ax_mps2": 6.195582244713199}, {"id": 183, "s_m": 18.29380001583247, "d_m": 0.0, "x_m": 1.2427337823350058, "y_m": 12.276791522112577, "d_right": 0.3623023499053586, "d_left": 1.2762939382756768, "psi_rad": 1.6371449638110285, "kappa_radpm": -0.17395439058007597, "vx_mps": 5.5240735978377975, "ax_mps2": 6.132160843332256}, {"id": 184, "s_m": 18.393766136137565, "d_m": 0.0, "x_m": 1.2369207644790354, "y_m": 12.376775529932358, "d_right": 0.3557133496882217, "d_left": 1.3235936447013463, "psi_rad": 1.6210356044921403, "kappa_radpm": -0.14761177865573838, "vx_mps": 5.633951168719703, "ax_mps2": 6.07054929295996}, {"id": 185, "s_m": 18.493732256442662, "d_m": 0.0, "x_m": 1.2325997229662768, "y_m": 12.476470670409705, "d_right": 0.33422610067834796, "d_left": 1.3318174230327684, "psi_rad": 1.6075730192581343, "kappa_radpm": -0.12809888043175427, "vx_mps": 5.740653646876305, "ax_mps2": 6.010628771484251}, {"id": 186, "s_m": 18.593698376747756, "d_m": 0.0, "x_m": 1.2295774056614144, "y_m": 12.576574844876939, "d_right": 0.32312965589702314, "d_left": 1.3287982317402645, "psi_rad": 1.5942036089429317, "kappa_radpm": -0.1389502098472888, "vx_mps": 5.844383865828214, "ax_mps2": 5.952292986481445}, {"id": 187, "s_m": 18.693664497052854, "d_m": 0.0, "x_m": 1.2279519026997758, "y_m": 12.676344481319928, "d_right": 0.3247590935326479, "d_left": 1.327169255056563, "psi_rad": 1.5797937942618145, "kappa_radpm": -0.14925755254969036, "vx_mps": 5.945324048755351, "ax_mps2": 5.895446395470909}, {"id": 188, "s_m": 18.793630617357948, "d_m": 0.0, "x_m": 1.2278114796480535, "y_m": 12.776438091149638, "d_right": 0.32487824165580864, "d_left": 1.3270312382563048, "psi_rad": 1.564481168069719, "kappa_radpm": -0.15666046070124545, "vx_mps": 6.043638626849928, "ax_mps2": 5.840002738844187}, {"id": 189, "s_m": 18.893596737663042, "d_m": 0.0, "x_m": 1.2292343791258975, "y_m": 12.876233244818668, "d_right": 0.3286668492395899, "d_left": 1.3263556696784842, "psi_rad": 1.5484357233109634, "kappa_radpm": -0.16750281011567658, "vx_mps": 6.139476580678457, "ax_mps2": 5.540572147591099}, {"id": 190, "s_m": 18.99356285796814, "d_m": 0.0, "x_m": 1.2323408285123763, "y_m": 12.976189502034252, "d_right": 0.3485397054860106, "d_left": 1.3053584336154374, "psi_rad": 1.5306918864508068, "kappa_radpm": -0.18722671670119237, "vx_mps": 6.229037781907376, "ax_mps2": 4.585434860175656}, {"id": 191, "s_m": 19.093528978273234, "d_m": 0.0, "x_m": 1.2373052851392452, "y_m": 13.075860215439144, "d_right": 0.3639274100513902, "d_left": 1.280529774029908, "psi_rad": 1.5110252716942634, "kappa_radpm": -0.20805180405169732, "vx_mps": 6.302197073576528, "ax_mps2": 3.58312142516718}, {"id": 192, "s_m": 19.19349509857833, "d_m": 0.0, "x_m": 1.2443460850265637, "y_m": 13.175504845803959, "d_right": 0.36718107707662195, "d_left": 1.244904791085105, "psi_rad": 1.4891201318716472, "kappa_radpm": -0.22987075936857368, "vx_mps": 6.358778927522848, "ax_mps2": 2.5490783970488664}, {"id": 193, "s_m": 19.293461218883426, "d_m": 0.0, "x_m": 1.253660236921091, "y_m": 13.27488647387601, "d_right": 0.3943034989931158, "d_left": 1.2178469302236927, "psi_rad": 1.4653423620584671, "kappa_radpm": -0.24369870501074925, "vx_mps": 6.398727405079984, "ax_mps2": 1.863788759878965}, {"id": 194, "s_m": 19.39342733918852, "d_m": 0.0, "x_m": 1.2653959749871118, "y_m": 13.374102161684519, "d_right": 0.38568493827817546, "d_left": 1.182760184226602, "psi_rad": 1.4406733637571778, "kappa_radpm": -0.2497549785844809, "vx_mps": 6.427779077356993, "ax_mps2": 1.52131534247145}, {"id": 195, "s_m": 19.493393459493618, "d_m": 0.0, "x_m": 1.279572688321558, "y_m": 13.472992426167169, "d_right": 0.38620320972440003, "d_left": 1.1313206171163603, "psi_rad": 1.417263392949333, "kappa_radpm": -0.18168013733430707, "vx_mps": 6.4513954965110685, "ax_mps2": 4.277483232747447}, {"id": 196, "s_m": 19.59335957979871, "d_m": 0.0, "x_m": 1.2955241190398843, "y_m": 13.5716700377606, "d_right": 0.4100750560864235, "d_left": 1.088264390353995, "psi_rad": 1.406109515492555, "kappa_radpm": -0.042934797714845825, "vx_mps": 6.51733923156521, "ax_mps2": 5.571815875505788}, {"id": 197, "s_m": 19.693325700103806, "d_m": 0.0, "x_m": 1.311940428666437, "y_m": 13.670292767252718, "d_right": 0.448880304035436, "d_left": 1.0534034486952104, "psi_rad": 1.4065111712742142, "kappa_radpm": 0.012305147141594945, "vx_mps": 6.6022493357609795, "ax_mps2": 5.523560430091276}, {"id": 198, "s_m": 19.793291820408903, "d_m": 0.0, "x_m": 1.3282632979831066, "y_m": 13.768915733305096, "d_right": 0.4853417191771187, "d_left": 1.0270404151381762, "psi_rad": 1.406694015185905, "kappa_radpm": -0.00844401310086803, "vx_mps": 6.685359684002818, "ax_mps2": 5.476273824473802}, {"id": 199, "s_m": 19.893257940713998, "d_m": 0.0, "x_m": 1.3446793490103524, "y_m": 13.867619899930208, "d_right": 0.5287784747146668, "d_left": 0.9937364837876689, "psi_rad": 1.4051691632802938, "kappa_radpm": -0.015066854585977028, "vx_mps": 6.766750904268032, "ax_mps2": 5.429913577272763}, {"id": 200, "s_m": 19.993224061019095, "d_m": 0.0, "x_m": 1.3612199563822784, "y_m": 13.966193211304782, "d_right": 0.5860623968418652, "d_left": 0.9354100685979523, "psi_rad": 1.4040481720373543, "kappa_radpm": -0.007431732047953449, "vx_mps": 6.846497833800584, "ax_mps2": 5.384440237190567}, {"id": 201, "s_m": 20.09319018132419, "d_m": 0.0, "x_m": 1.377865854920928, "y_m": 14.064940639000536, "d_right": 0.6537748139792272, "d_left": 0.8541613381744292, "psi_rad": 1.4036481514708574, "kappa_radpm": -0.001277898516169881, "vx_mps": 6.924670085230722, "ax_mps2": 5.339817087650766}, {"id": 202, "s_m": 20.193156301629283, "d_m": 0.0, "x_m": 1.394494597092062, "y_m": 14.163502966268213, "d_right": 0.7272728324938578, "d_left": 0.7748163444418948, "psi_rad": 1.4037391513343944, "kappa_radpm": 0.00308511634907904, "vx_mps": 7.001332543457127, "ax_mps2": 5.296009887500786}, {"id": 203, "s_m": 20.29312242193438, "d_m": 0.0, "x_m": 1.4111240914742122, "y_m": 14.262250408788, "d_right": 0.8000258598678102, "d_left": 0.6962789213170959, "psi_rad": 1.4041887415692167, "kappa_radpm": 0.0028551828575577895, "vx_mps": 7.0765458033685915, "ax_mps2": 5.252986642536827}, {"id": 204, "s_m": 20.393088542239475, "d_m": 0.0, "x_m": 1.4277151337763605, "y_m": 14.36090130478088, "d_right": 0.8745770086906072, "d_left": 0.6195939882332993, "psi_rad": 1.40400809793141, "kappa_radpm": -0.006482069168266205, "vx_mps": 7.150366556793533, "ax_mps2": -5.243451777888901}, {"id": 205, "s_m": 20.49305466254457, "d_m": 0.0, "x_m": 1.4443626290369502, "y_m": 14.459507222912563, "d_right": 0.9504370603299135, "d_left": 0.5505284733929348, "psi_rad": 1.4031115060927144, "kappa_radpm": 0.0022094969537405098, "vx_mps": 7.076680495403661, "ax_mps2": -8.925157949708122}, {"id": 206, "s_m": 20.593020782849667, "d_m": 0.0, "x_m": 1.4609651846365386, "y_m": 14.5583023958492, "d_right": 1.0306156401813256, "d_left": 0.49204889141692093, "psi_rad": 1.4065822818411964, "kappa_radpm": 0.06753377619083477, "vx_mps": 6.94945897227558, "ax_mps2": -6.414216571528834}, {"id": 207, "s_m": 20.69298690315476, "d_m": 0.0, "x_m": 1.476835778822808, "y_m": 14.656814880637436, "d_right": 1.1140581517497214, "d_left": 0.4347641356866924, "psi_rad": 1.4165832573191004, "kappa_radpm": 0.12268050885068965, "vx_mps": 6.856571396582756, "ax_mps2": -6.407159235909482}, {"id": 208, "s_m": 20.79295302345986, "d_m": 0.0, "x_m": 1.4916435967588444, "y_m": 14.756060636828611, "d_right": 1.1969706455875908, "d_left": 0.389358553397066, "psi_rad": 1.4287371486319147, "kappa_radpm": 0.11966659087315168, "vx_mps": 6.762512374440073, "ax_mps2": -6.698543573267254}, {"id": 209, "s_m": 20.892919143764953, "d_m": 0.0, "x_m": 1.5051601361993154, "y_m": 14.85472911990099, "d_right": 1.2821664164792415, "d_left": 0.365384121636779, "psi_rad": 1.440535157984364, "kappa_radpm": 0.11773736782520525, "vx_mps": 6.66275609556787, "ax_mps2": -6.9419508546677315}, {"id": 210, "s_m": 20.992885264070047, "d_m": 0.0, "x_m": 1.5176115078167338, "y_m": 14.954353177667972, "d_right": 1.3699492497539678, "d_left": 0.36671902941537754, "psi_rad": 1.4523907719623217, "kappa_radpm": 0.11839044212241831, "vx_mps": 6.557773936363412, "ax_mps2": -7.071359032175605}, {"id": 211, "s_m": 21.092851384375145, "d_m": 0.0, "x_m": 1.5287871158880901, "y_m": 15.053267659719051, "d_right": 1.4566246730095562, "d_left": 0.3732788533777315, "psi_rad": 1.4641962773209307, "kappa_radpm": 0.11861132144965432, "vx_mps": 6.449077945333369, "ax_mps2": -7.2229573735478345}, {"id": 212, "s_m": 21.19281750468024, "d_m": 0.0, "x_m": 1.5388709369728804, "y_m": 15.153103403329466, "d_right": 1.546094696144437, "d_left": 0.34890286843468854, "psi_rad": 1.4760564207161184, "kappa_radpm": 0.11774413005138451, "vx_mps": 6.336126915826416, "ax_mps2": -7.4236179943752}, {"id": 213, "s_m": 21.292783624985336, "d_m": 0.0, "x_m": 1.5477159254137303, "y_m": 15.252345363797609, "d_right": 1.6366627920006218, "d_left": 0.3512341026506266, "psi_rad": 1.4877409767641152, "kappa_radpm": 0.1170463365175976, "vx_mps": 6.2179002657175495, "ax_mps2": -7.6202095736580615}, {"id": 214, "s_m": 21.39274974529043, "d_m": 0.0, "x_m": 1.555442750693092, "y_m": 15.35225036425294, "d_right": 1.7291973600942976, "d_left": 0.3555596124139451, "psi_rad": 1.4994759218392502, "kappa_radpm": 0.1170679127207981, "vx_mps": 6.094157705575866, "ax_mps2": -7.7903910361166915}, {"id": 215, "s_m": 21.492715865595525, "d_m": 0.0, "x_m": 1.561970092115697, "y_m": 15.451773841949166, "d_right": 1.7391006846855173, "d_left": 0.36203183801996536, "psi_rad": 1.5111087208347043, "kappa_radpm": 0.11543998217954768, "vx_mps": 5.9649985587047185, "ax_mps2": -8.022432355802382}, {"id": 216, "s_m": 21.592681985900622, "d_m": 0.0, "x_m": 1.567366770331704, "y_m": 15.551641976214478, "d_right": 1.7337043413610476, "d_left": 0.3674050308549947, "psi_rad": 1.5224367116377648, "kappa_radpm": 0.11087169256849894, "vx_mps": 5.829002052608154, "ax_mps2": -8.361820604422133}, {"id": 217, "s_m": 21.692648106205716, "d_m": 0.0, "x_m": 1.5716461084899405, "y_m": 15.651366858174905, "d_right": 1.72942641563487, "d_left": 0.3716540271041483, "psi_rad": 1.53342070078961, "kappa_radpm": 0.11299264358974602, "vx_mps": 5.683789880026136, "ax_mps2": -8.386791116186066}, {"id": 218, "s_m": 21.79261422651081, "d_m": 0.0, "x_m": 1.574800300752739, "y_m": 15.751217959665635, "d_right": 1.7262726327933948, "d_left": 0.37479096395621275, "psi_rad": 1.5451623479387642, "kappa_radpm": 0.12183399810037038, "vx_mps": 5.5343181568192135, "ax_mps2": -8.36251471762284}, {"id": 219, "s_m": 21.892580346815908, "d_m": 0.0, "x_m": 1.5767644788778663, "y_m": 15.850960013874692, "d_right": 1.7243096890473855, "d_left": 0.3767334370078931, "psi_rad": 1.556521202813435, "kappa_radpm": 0.0939380547148125, "vx_mps": 5.381146825377352, "ax_mps2": -9.365640158670022}, {"id": 220, "s_m": 21.992546467121002, "d_m": 0.0, "x_m": 1.577799842181755, "y_m": 15.95098175153314, "d_right": 1.7232733307805512, "d_left": 0.3777699687567995, "psi_rad": 1.5635945168776264, "kappa_radpm": 0.04749260016248432, "vx_mps": 5.204252850755533, "ax_mps2": -8.115208704848994}, {"id": 221, "s_m": 22.0925125874261, "d_m": 0.0, "x_m": 1.5781747502929002, "y_m": 16.050479379015684, "d_right": 1.7229015662837255, "d_left": 0.37811017813204223, "psi_rad": 1.5725573294260615, "kappa_radpm": 0.15643941475193826, "vx_mps": 5.045964315690042, "ax_mps2": -5.164472539633622}, {"id": 222, "s_m": 22.192478707731194, "d_m": 0.0, "x_m": 1.576987118507884, "y_m": 16.150950019139053, "d_right": 1.7193577741603572, "d_left": 0.37696171091939584, "psi_rad": 1.5948081327471868, "kappa_radpm": 0.2836754171298844, "vx_mps": 4.942591557958085, "ax_mps2": -5.042290891461854}, {"id": 223, "s_m": 22.292444828036288, "d_m": 0.0, "x_m": 1.5733275615564204, "y_m": 16.250133441283083, "d_right": 1.7030851510611575, "d_left": 0.3732552028064698, "psi_rad": 1.6192467343065096, "kappa_radpm": 0.20768505190783504, "vx_mps": 4.839534563680708, "ax_mps2": -7.160284933382815}, {"id": 224, "s_m": 22.392410948341386, "d_m": 0.0, "x_m": 1.5675276248210828, "y_m": 16.35059051468323, "d_right": 1.6944669855059336, "d_left": 0.36750592465921195, "psi_rad": 1.6365428788925431, "kappa_radpm": 0.15025191639474653, "vx_mps": 4.689298773049289, "ax_mps2": -6.692705623111059}, {"id": 225, "s_m": 22.49237706864648, "d_m": 0.0, "x_m": 1.560050392885601, "y_m": 16.44999389049159, "d_right": 1.6837380196116243, "d_left": 0.36000740985518026, "psi_rad": 1.6570449777623444, "kappa_radpm": 0.2608598038083548, "vx_mps": 4.544385035617974, "ax_mps2": -5.089469703606443}, {"id": 226, "s_m": 22.592343188951578, "d_m": 0.0, "x_m": 1.5499147505807074, "y_m": 16.54980400388544, "d_right": 1.6635097718192564, "d_left": 0.349888144398097, "psi_rad": 1.6887400508880006, "kappa_radpm": 0.3558353920774712, "vx_mps": 4.4310141356791934, "ax_mps2": -5.021579659466393}, {"id": 227, "s_m": 22.69230930925667, "d_m": 0.0, "x_m": 1.5364237914531063, "y_m": 16.648953773130106, "d_right": 1.6478394815838413, "d_left": 0.33637392997479204, "psi_rad": 1.7228382051037563, "kappa_radpm": 0.32666195314570495, "vx_mps": 4.316238014506286, "ax_mps2": -5.930185510116593}, {"id": 228, "s_m": 22.792275429561766, "d_m": 0.0, "x_m": 1.5197137282863118, "y_m": 16.747508076417162, "d_right": 1.6294158864199073, "d_left": 0.34199821555750176, "psi_rad": 1.7542631808753906, "kappa_radpm": 0.3019435903612904, "vx_mps": 4.176634449122581, "ax_mps2": -6.745998559230411}, {"id": 229, "s_m": 22.892241549866863, "d_m": 0.0, "x_m": 1.4999830790543918, "y_m": 16.84578827580937, "d_right": 1.619961504258477, "d_left": 0.372592678348314, "psi_rad": 1.7831090327563262, "kappa_radpm": 0.2737344574029738, "vx_mps": 4.0119238171352904, "ax_mps2": -7.639501376742019}, {"id": 230, "s_m": 22.992207670171958, "d_m": 0.0, "x_m": 1.4776611296995967, "y_m": 16.943072855256553, "d_right": 1.6194164735515215, "d_left": 0.3806953774035107, "psi_rad": 1.8094490586422314, "kappa_radpm": 0.2817852630371517, "vx_mps": 3.816824607851499, "ax_mps2": -6.375804529077404}, {"id": 231, "s_m": 23.09217379047705, "d_m": 0.0, "x_m": 1.4523432808901735, "y_m": 17.04013846541107, "d_right": 1.604503138991544, "d_left": 0.3584022756826386, "psi_rad": 1.8448645317367902, "kappa_radpm": 0.42694694836014385, "vx_mps": 3.646014427002411, "ax_mps2": -5.165396364773552}, {"id": 232, "s_m": 23.19213991078215, "d_m": 0.0, "x_m": 1.423051013916125, "y_m": 17.13552719689675, "d_right": 1.5377100890314195, "d_left": 0.35914756550479715, "psi_rad": 1.8949635028989036, "kappa_radpm": 0.5613061202871464, "vx_mps": 3.501527085867077, "ax_mps2": -4.665371658311112}, {"id": 233, "s_m": 23.292106031087243, "d_m": 0.0, "x_m": 1.3883575797482672, "y_m": 17.229481194367953, "d_right": 1.4789399619076855, "d_left": 0.3815288585358163, "psi_rad": 1.9555897750922515, "kappa_radpm": 0.6513474054310927, "vx_mps": 3.3656995891100223, "ax_mps2": -4.106541061808477}, {"id": 234, "s_m": 23.39207215139234, "d_m": 0.0, "x_m": 1.3477415877428531, "y_m": 17.320682487718646, "d_right": 1.4306470020719473, "d_left": 0.39962144514826287, "psi_rad": 2.0256835043776467, "kappa_radpm": 0.7551298695459662, "vx_mps": 3.241435448761896, "ax_mps2": -3.54426650878016}, {"id": 235, "s_m": 23.492038271697435, "d_m": 0.0, "x_m": 1.3003900850855, "y_m": 17.408519802346042, "d_right": 1.38231225785192, "d_left": 0.3971558237280731, "psi_rad": 2.1066146168683426, "kappa_radpm": 0.8668463072749578, "vx_mps": 3.130222136537624, "ax_mps2": -2.470904060833854}, {"id": 236, "s_m": 23.59200439200253, "d_m": 0.0, "x_m": 1.2456116585180217, "y_m": 17.491889785013033, "d_right": 1.319674361695507, "d_left": 0.37215332301124315, "psi_rad": 2.200398933318823, "kappa_radpm": 1.0280287736813059, "vx_mps": 3.0502913367176654, "ax_mps2": -1.262793990498334}, {"id": 237, "s_m": 23.691970512307627, "d_m": 0.0, "x_m": 1.1826085870068046, "y_m": 17.56920474731795, "d_right": 1.2577600688713033, "d_left": 0.34428076741183794, "psi_rad": 2.3114068194054167, "kappa_radpm": 1.190060982612099, "vx_mps": 3.0086216124506953, "ax_mps2": -1.1079073669538704}, {"id": 238, "s_m": 23.79193663261272, "d_m": 0.0, "x_m": 1.1113050031193143, "y_m": 17.63848516946483, "d_right": 1.2111686386208316, "d_left": 0.33264061502608866, "psi_rad": 2.4291524115704317, "kappa_radpm": 1.1633963755459322, "vx_mps": 2.971581667166797, "ax_mps2": -1.599958114833019}, {"id": 239, "s_m": 23.891902752917815, "d_m": 0.0, "x_m": 1.0318087847680903, "y_m": 17.699534256394113, "d_right": 1.1819426301360212, "d_left": 0.31958329874706337, "psi_rad": 2.543630997051781, "kappa_radpm": 1.1442778052130955, "vx_mps": 2.9172614544913147, "ax_mps2": -1.2081808486177237}, {"id": 240, "s_m": 23.991868873222913, "d_m": 0.0, "x_m": 0.946255619812182, "y_m": 17.750620835425007, "d_right": 1.1631083992115712, "d_left": 0.30074185828270594, "psi_rad": 2.66568115611122, "kappa_radpm": 1.3089815361449861, "vx_mps": 2.875562569260894, "ax_mps2": -0.2925008658144188}, {"id": 241, "s_m": 24.091834993528007, "d_m": 0.0, "x_m": 0.8543658198893676, "y_m": 17.790280428885247, "d_right": 1.1512300743851986, "d_left": 0.28413182392756053, "psi_rad": 2.8048347003809604, "kappa_radpm": 1.429804645712899, "vx_mps": 2.8653760200454697, "ax_mps2": -0.03171544276161497}, {"id": 242, "s_m": 24.191801113833105, "d_m": 0.0, "x_m": 0.7580120775413641, "y_m": 17.816423548057628, "d_right": 1.1500809231297215, "d_left": 0.2654254041044164, "psi_rad": 2.9490107017461877, "kappa_radpm": 1.4626942043228837, "vx_mps": 2.8642693303386015, "ax_mps2": -0.03171544276161609}, {"id": 243, "s_m": 24.2917672341382, "d_m": 0.0, "x_m": 0.6588204951233807, "y_m": 17.828273488945566, "d_right": 1.1506078593719231, "d_left": 0.2585709512761959, "psi_rad": 3.095720332637555, "kappa_radpm": 1.423570689972134, "vx_mps": 2.8631622128662335, "ax_mps2": 0.2983066755147672}, {"id": 244, "s_m": 24.391733354443293, "d_m": 0.0, "x_m": 0.5588910064740229, "y_m": 17.825942956357537, "d_right": 1.1583266630552413, "d_left": 0.27381382451203545, "psi_rad": -3.0509286007799856, "kappa_radpm": 1.3132058344677995, "vx_mps": 2.873558591574167, "ax_mps2": 1.1244927829649114}, {"id": 245, "s_m": 24.49169947474839, "d_m": 0.0, "x_m": 0.46011155740923987, "y_m": 17.810491951137397, "d_right": 1.1872339793673397, "d_left": 0.2822504354612584, "psi_rad": -2.9227920230213345, "kappa_radpm": 1.2597384966398528, "vx_mps": 2.9124150358178484, "ax_mps2": 1.2819042061792685}, {"id": 246, "s_m": 24.591665595053485, "d_m": 0.0, "x_m": 0.3640807622992432, "y_m": 17.782726679730878, "d_right": 1.2348810281412277, "d_left": 0.293588403688815, "psi_rad": -2.7977134898477, "kappa_radpm": 1.2461012148760742, "vx_mps": 2.9560878405498925, "ax_mps2": 1.0772188005810623}, {"id": 247, "s_m": 24.691631715358582, "d_m": 0.0, "x_m": 0.2720762357611476, "y_m": 17.743247898638874, "d_right": 1.2857264804650748, "d_left": 0.3135737222543459, "psi_rad": -2.6767725205947848, "kappa_radpm": 1.1434101862109207, "vx_mps": 2.992294452334951, "ax_mps2": 1.7274900486180849}, {"id": 248, "s_m": 24.791597835663676, "d_m": 0.0, "x_m": 0.18544443505967292, "y_m": 17.69364405186991, "d_right": 1.3351892653696467, "d_left": 0.3398363996207063, "psi_rad": -2.5681038901458955, "kappa_radpm": 1.0400852056228351, "vx_mps": 3.0494601236163987, "ax_mps2": 2.2920831477595716}, {"id": 249, "s_m": 24.89156395596877, "d_m": 0.0, "x_m": 0.10398129919296255, "y_m": 17.634759996929546, "d_right": 1.313669123885218, "d_left": 0.3587145611886266, "psi_rad": -2.4624472053791724, "kappa_radpm": 1.0810266411679088, "vx_mps": 3.12369466576408, "ax_mps2": 1.4141960053337745}, {"id": 250, "s_m": 24.991530076273868, "d_m": 0.0, "x_m": 0.03029350490334406, "y_m": 17.568262602337008, "d_right": 1.2613605871292066, "d_left": 0.37462585050342867, "psi_rad": -2.3509785452654777, "kappa_radpm": 1.1664350440891784, "vx_mps": 3.1686293157975003, "ax_mps2": 0.24993139483685028}, {"id": 251, "s_m": 25.091496196578962, "d_m": 0.0, "x_m": -0.036324504875822505, "y_m": 17.49289307856773, "d_right": 1.224823066643703, "d_left": 0.4049853155274759, "psi_rad": -2.2407041833392523, "kappa_radpm": 1.0231798173473068, "vx_mps": 3.176504538750086, "ax_mps2": 1.6369234071591603}, {"id": 252, "s_m": 25.191462316884056, "d_m": 0.0, "x_m": -0.0942690276284899, "y_m": 17.411966742261068, "d_right": 1.2022136265250092, "d_left": 0.44684860817058253, "psi_rad": -2.146302373463163, "kappa_radpm": 0.8539975741355551, "vx_mps": 3.227608224242913, "ax_mps2": 3.0632466908468854}, {"id": 253, "s_m": 25.291428437189154, "d_m": 0.0, "x_m": -0.1455363816481704, "y_m": 17.325907443535918, "d_right": 1.1920332463288676, "d_left": 0.47787777655315694, "psi_rad": -2.0745239153486175, "kappa_radpm": 0.5729554176935137, "vx_mps": 3.321128817682818, "ax_mps2": 5.63772123607874}, {"id": 254, "s_m": 25.391394557494248, "d_m": 0.0, "x_m": -0.1916259095154239, "y_m": 17.23731562233585, "d_right": 1.1947027450974788, "d_left": 0.4947930835394801, "psi_rad": -2.029812386592953, "kappa_radpm": 0.37484490487524263, "vx_mps": 3.486697414790698, "ax_mps2": 7.257664832087623}, {"id": 255, "s_m": 25.491360677799346, "d_m": 0.0, "x_m": -0.23428025288503465, "y_m": 17.147164588438994, "d_right": 1.169657189992418, "d_left": 0.5026567382537956, "psi_rad": -1.997307803487077, "kappa_radpm": 0.27485187272938905, "vx_mps": 3.688915837178348, "ax_mps2": 7.147388300866466}, {"id": 256, "s_m": 25.59132679810444, "d_m": 0.0, "x_m": -0.2745534234373548, "y_m": 17.055593830137706, "d_right": 1.1419258162094197, "d_left": 0.5270466239976271, "psi_rad": -1.9744141426009998, "kappa_radpm": 0.1856378019763629, "vx_mps": 3.8777691281571305, "ax_mps2": 7.044114715134812}, {"id": 257, "s_m": 25.691292918409534, "d_m": 0.0, "x_m": -0.31300925461582635, "y_m": 16.963574590506717, "d_right": 1.124326588508832, "d_left": 0.5355733347693242, "psi_rad": -1.960390643937182, "kappa_radpm": 0.09524177279585991, "vx_mps": 4.055297652380231, "ax_mps2": 6.946782581717007}, {"id": 258, "s_m": 25.79125903871463, "d_m": 0.0, "x_m": -0.35069339772030717, "y_m": 16.87093110133692, "d_right": 1.1163399438934487, "d_left": 0.5381041534652835, "psi_rad": -1.9553539987990378, "kappa_radpm": 0.005126757979311057, "vx_mps": 4.2230705483090345, "ax_mps2": 6.854575131734704}, {"id": 259, "s_m": 25.891225159019726, "d_m": 0.0, "x_m": -0.3882615334800721, "y_m": 16.778375375355253, "d_right": 1.1015930019445748, "d_left": 0.5285293949750383, "psi_rad": -1.9579682892340262, "kappa_radpm": -0.02924489576192268, "vx_mps": 4.382325343982777, "ax_mps2": 6.766847867169412}, {"id": 260, "s_m": 25.991191279324823, "d_m": 0.0, "x_m": -0.4261018300651992, "y_m": 16.68586371251537, "d_right": 1.0933782491991064, "d_left": 0.5379430508090202, "psi_rad": -1.9597966830732831, "kappa_radpm": -0.0073187060859146655, "vx_mps": 4.534058499453361, "ax_mps2": 6.6830815634894565}, {"id": 261, "s_m": 26.091157399629918, "d_m": 0.0, "x_m": -0.4640374151317915, "y_m": 16.593374784863126, "d_right": 1.078447904030307, "d_left": 0.550414291482118, "psi_rad": -1.9602509957310321, "kappa_radpm": -0.004302567336433281, "vx_mps": 4.679086443701842, "ax_mps2": 6.6028505804821}, {"id": 262, "s_m": 26.19112351993501, "d_m": 0.0, "x_m": -0.502030964615063, "y_m": 16.500857850295393, "d_right": 1.069133704682174, "d_left": 0.5623015047247261, "psi_rad": -1.9606586883228685, "kappa_radpm": -0.002559130045836279, "vx_mps": 4.8180880708642535, "ax_mps2": 6.525800794128779}, {"id": 263, "s_m": 26.29108964024011, "d_m": 0.0, "x_m": -0.5400394122358659, "y_m": 16.408357030160193, "d_right": 1.0552468899051375, "d_left": 0.5592192255284921, "psi_rad": -1.9605416579350567, "kappa_radpm": 0.004922817334276854, "vx_mps": 4.951635147418515, "ax_mps2": 6.451633802751396}, {"id": 264, "s_m": 26.391055760545203, "d_m": 0.0, "x_m": -0.577942030476547, "y_m": 16.3159868342908, "d_right": 1.0449926817964807, "d_left": 0.5572175029226725, "psi_rad": -1.959720461013947, "kappa_radpm": 0.010837193966968207, "vx_mps": 5.080214585520074, "ax_mps2": 6.3800953553988515}, {"id": 265, "s_m": 26.491021880850298, "d_m": 0.0, "x_m": -0.6158018078063846, "y_m": 16.223437328776377, "d_right": 1.032411897597101, "d_left": 0.5665391688763285, "psi_rad": -1.9584096320659041, "kappa_radpm": 0.015294448962069414, "vx_mps": 5.204245093636775, "ax_mps2": 6.310966699453388}, {"id": 266, "s_m": 26.590988001155395, "d_m": 0.0, "x_m": -0.6533327393379811, "y_m": 16.13126757282785, "d_right": 1.0295867760404378, "d_left": 0.5651230715274714, "psi_rad": -1.9564015420592522, "kappa_radpm": 0.02508641828734805, "vx_mps": 5.32408984778436, "ax_mps2": 6.244057994637896}, {"id": 267, "s_m": 26.69095412146049, "d_m": 0.0, "x_m": -0.690813042708457, "y_m": 16.038561247363802, "d_right": 1.025288270374487, "d_left": 0.5638381983075996, "psi_rad": -1.9534404390298477, "kappa_radpm": 0.03424434244865711, "vx_mps": 5.440066287523379, "ax_mps2": 6.179203220319972}, {"id": 268, "s_m": 26.790920241765587, "d_m": 0.0, "x_m": -0.7279289760198955, "y_m": 15.945845285470789, "d_right": 1.024494565709379, "d_left": 0.5662891747161958, "psi_rad": -1.9495677065878887, "kappa_radpm": 0.04305686850179603, "vx_mps": 5.552453796086259, "ax_mps2": 6.116256181913631}, {"id": 269, "s_m": 26.89088636207068, "d_m": 0.0, "x_m": -0.764589871702206, "y_m": 15.853117391846148, "d_right": 1.0151519214651081, "d_left": 0.5642910080586917, "psi_rad": -1.944910862527026, "kappa_radpm": 0.04996061823771062, "vx_mps": 5.661499797780498, "ax_mps2": 6.0550873395761045}, {"id": 270, "s_m": 26.990852482375775, "d_m": 0.0, "x_m": -0.8010622812370609, "y_m": 15.759502259280072, "d_right": 1.0075994188265893, "d_left": 0.5582127631533507, "psi_rad": -1.939607012443199, "kappa_radpm": 0.055432382341602325, "vx_mps": 5.767424653964753, "ax_mps2": 5.995581261207343}, {"id": 271, "s_m": 27.090818602680873, "d_m": 0.0, "x_m": -0.83661211841686, "y_m": 15.666747409134114, "d_right": 1.0007845346917097, "d_left": 0.5555362500480436, "psi_rad": -1.933935310851787, "kappa_radpm": 0.05844413432427016, "vx_mps": 5.870425634864489, "ax_mps2": 5.937634555758177}, {"id": 272, "s_m": 27.190784722985967, "d_m": 0.0, "x_m": -0.8721545096642372, "y_m": 15.572364045594163, "d_right": 0.9772605417334554, "d_left": 0.5523387796653186, "psi_rad": -1.9279188034648325, "kappa_radpm": 0.06071721287025418, "vx_mps": 5.970680171900966, "ax_mps2": 5.881154180537417}, {"id": 273, "s_m": 27.290750843291065, "d_m": 0.0, "x_m": -0.9065298152308604, "y_m": 15.47940787235711, "d_right": 0.9431410625833144, "d_left": 0.5325851387838296, "psi_rad": -1.9221722877084533, "kappa_radpm": 0.05536784134457134, "vx_mps": 6.06834854369953, "ax_mps2": 5.826056042951643}, {"id": 274, "s_m": 27.39071696359616, "d_m": 0.0, "x_m": -0.9409293576502407, "y_m": 15.384779607308873, "d_right": 0.9099349758371096, "d_left": 0.5104055226393633, "psi_rad": -1.9168363340476233, "kappa_radpm": 0.051756609421522284, "vx_mps": 6.1635761118370285, "ax_mps2": 5.7722638363785554}, {"id": 275, "s_m": 27.490683083901253, "d_m": 0.0, "x_m": -0.9743787050009276, "y_m": 15.291220084643939, "d_right": 0.8877268029602979, "d_left": 0.4875937629345188, "psi_rad": -1.9113627363257502, "kappa_radpm": 0.05836148419960959, "vx_mps": 6.256495195283729, "ax_mps2": 5.719708063948638}, {"id": 276, "s_m": 27.59064920420635, "d_m": 0.0, "x_m": -1.007689117408846, "y_m": 15.196305458958417, "d_right": 0.8768021039283269, "d_left": 0.4602213681609306, "psi_rad": -1.9051467854473856, "kappa_radpm": 0.06824662749111719, "vx_mps": 6.347226652441981, "ax_mps2": 5.668325214428564}, {"id": 277, "s_m": 27.690615324511445, "d_m": 0.0, "x_m": -1.0399889981240236, "y_m": 15.10212882596341, "d_right": 0.8711598699255764, "d_left": 0.44493661578014704, "psi_rad": -1.8966976422621133, "kappa_radpm": 0.10124020419842193, "vx_mps": 6.435881224672948, "ax_mps2": 5.618057062193145}, {"id": 278, "s_m": 27.79058144481654, "d_m": 0.0, "x_m": -1.0716117683574908, "y_m": 15.006791578441977, "d_right": 0.8530811432919604, "d_left": 0.42114765520094055, "psi_rad": -1.8849245836302533, "kappa_radpm": 0.12869244568190552, "vx_mps": 6.522560683843266, "ax_mps2": 5.56885006917698}, {"id": 279, "s_m": 27.890547565121636, "d_m": 0.0, "x_m": -1.101834248959744, "y_m": 14.911793816676747, "d_right": 0.847228954223249, "d_left": 0.3982320994770381, "psi_rad": -1.8729900611087942, "kappa_radpm": 0.11096715010195084, "vx_mps": 6.607358817740318, "ax_mps2": 5.520654871206266}, {"id": 280, "s_m": 27.99051368542673, "d_m": 0.0, "x_m": -1.1311772370168347, "y_m": 14.815887582199764, "d_right": 0.8542424081119844, "d_left": 0.38814438263769285, "psi_rad": -1.8627014433540987, "kappa_radpm": 0.09476245249036351, "vx_mps": 6.690362280505186, "ax_mps2": 5.473425834593627}, {"id": 281, "s_m": 28.090479805731828, "d_m": 0.0, "x_m": -1.159449475840981, "y_m": 14.720180415347524, "d_right": 0.8736173159467391, "d_left": 0.37729279735458454, "psi_rad": -1.853415437740443, "kappa_radpm": 0.09144931707233936, "vx_mps": 6.771651330017707, "ax_mps2": 5.427120671588941}, {"id": 282, "s_m": 28.190445926036922, "d_m": 0.0, "x_m": -1.1869376580544013, "y_m": 14.623894582550605, "d_right": 0.9046351434179302, "d_left": 0.36559751094962045, "psi_rad": -1.844397672917741, "kappa_radpm": 0.08876886275400679, "vx_mps": 6.851300470075971, "ax_mps2": 5.381700105404657}, {"id": 283, "s_m": 28.290412046342016, "d_m": 0.0, "x_m": -1.2135287566496609, "y_m": 14.527530831527333, "d_right": 0.9124215565644206, "d_left": 0.34189366318487796, "psi_rad": -1.8357696363959963, "kappa_radpm": 0.08377837158873178, "vx_mps": 6.92937901197711, "ax_mps2": 5.3371275772183076}, {"id": 284, "s_m": 28.390378166647114, "d_m": 0.0, "x_m": -1.2393163807039045, "y_m": 14.430929096845924, "d_right": 0.9161804662821975, "d_left": 0.3400415848562615, "psi_rad": -1.8276307250571957, "kappa_radpm": 0.07909931055557635, "vx_mps": 7.005951567529181, "ax_mps2": 5.293368988891052}, {"id": 285, "s_m": 28.490344286952208, "d_m": 0.0, "x_m": -1.2643631796187236, "y_m": 14.33402626398302, "d_right": 0.9315251440283373, "d_left": 0.3373345695462792, "psi_rad": -1.819891182044998, "kappa_radpm": 0.07575207943265642, "vx_mps": 7.0810784834578735, "ax_mps2": 5.250392476219946}, {"id": 286, "s_m": 28.590310407257302, "d_m": 0.0, "x_m": -1.2886300417364371, "y_m": 14.23711580030969, "d_right": 0.9578088385562912, "d_left": 0.3404138556298183, "psi_rad": -1.8124685918273986, "kappa_radpm": 0.07289509327295346, "vx_mps": 7.154816225504579, "ax_mps2": 5.2081682084044765}, {"id": 287, "s_m": 28.6902765275624, "d_m": 0.0, "x_m": -1.3122425727379778, "y_m": 14.139803632891393, "d_right": 0.9371915752145841, "d_left": 0.3641527851727743, "psi_rad": -1.805221271135296, "kappa_radpm": 0.07239178756184224, "vx_mps": 7.227217719158921, "ax_mps2": 5.166668210113468}, {"id": 288, "s_m": 28.790242647867494, "d_m": 0.0, "x_m": -1.3350890931567818, "y_m": 14.042581001537402, "d_right": 0.9144454529183347, "d_left": 0.3871369854279373, "psi_rad": -1.7979727193438828, "kappa_radpm": 0.0728142622267755, "vx_mps": 7.298332652864084, "ax_mps2": 5.125866203114051}, {"id": 289, "s_m": 28.89020876817259, "d_m": 0.0, "x_m": -1.3572872440571326, "y_m": 13.944961863079426, "d_right": 0.8923450868676864, "d_left": 0.41416818265097477, "psi_rad": -1.7909657902544396, "kappa_radpm": 0.06432107626289332, "vx_mps": 7.3682077486264435, "ax_mps2": 5.0857374648938185}, {"id": 290, "s_m": 28.990174888477686, "d_m": 0.0, "x_m": -1.3788061232151219, "y_m": 13.847437133053335, "d_right": 0.8709382587596672, "d_left": 0.4611118065104851, "psi_rad": -1.7851830808521578, "kappa_radpm": 0.0514118770849132, "vx_mps": 7.4368870042128625, "ax_mps2": 5.046258702098878}, {"id": 291, "s_m": 29.09014100878278, "d_m": 0.0, "x_m": -1.399876586841849, "y_m": 13.749631425930614, "d_right": 0.8499788353508254, "d_left": 0.5228817335328365, "psi_rad": -1.781423208800189, "kappa_radpm": 0.015481479614561058, "vx_mps": 7.504411910499013, "ax_mps2": 5.007407936930431}, {"id": 292, "s_m": 29.190107129087878, "d_m": 0.0, "x_m": -1.420765433232799, "y_m": 13.651953552567596, "d_right": 0.8292179644928526, "d_left": 0.5811585295567262, "psi_rad": -1.782366112833019, "kappa_radpm": -0.03465983707293795, "vx_mps": 7.570821647015549, "ax_mps2": 4.969164404915033}, {"id": 293, "s_m": 29.29007324939297, "d_m": 0.0, "x_m": -1.4419970568939924, "y_m": 13.554220163314552, "d_right": 0.8081245028267016, "d_left": 0.6187651290387615, "psi_rad": -1.7872158756976884, "kappa_radpm": -0.04741215780537082, "vx_mps": 7.636153258307109, "ax_mps2": 4.931508462684126}, {"id": 294, "s_m": 29.39003936969807, "d_m": 0.0, "x_m": -1.4636611283111316, "y_m": 13.456696495422369, "d_right": 0.7866247030015043, "d_left": 0.6636208309469159, "psi_rad": -1.7913636968927857, "kappa_radpm": -0.03555276666150905, "vx_mps": 7.700441813356352, "ax_mps2": 4.894421504590802}, {"id": 295, "s_m": 29.490005490003163, "d_m": 0.0, "x_m": -1.4856907284816716, "y_m": 13.359169612004926, "d_right": 0.7484616525402413, "d_left": 0.7199683607871122, "psi_rad": -1.794368737641535, "kappa_radpm": -0.025271394601567066, "vx_mps": 7.7637205500191975, "ax_mps2": -7.549434178736819}, {"id": 296, "s_m": 29.589971610308258, "d_m": 0.0, "x_m": -1.5079484479041738, "y_m": 13.261778229695109, "d_right": 0.7030340455842664, "d_left": 0.7598082531962342, "psi_rad": -1.7964285692405397, "kappa_radpm": -0.015912156949529264, "vx_mps": 7.665897304823252, "ax_mps2": -11.29143562135097}, {"id": 297, "s_m": 29.689937730613355, "d_m": 0.0, "x_m": -1.5303773263775138, "y_m": 13.164366114588978, "d_right": 0.6693651014631565, "d_left": 0.7926560813055884, "psi_rad": -1.7977076962270964, "kappa_radpm": -0.011626585185261114, "vx_mps": 7.517210883340571, "ax_mps2": -11.561319712285297}, {"id": 298, "s_m": 29.78990385091845, "d_m": 0.0, "x_m": -1.5529102509173436, "y_m": 13.067022484890375, "d_right": 0.6252124936945055, "d_left": 0.8363126229329475, "psi_rad": -1.798808002862713, "kappa_radpm": -0.01038879239796524, "vx_mps": 7.36185974534465, "ax_mps2": -11.645939804225506}, {"id": 299, "s_m": 29.889869971223543, "d_m": 0.0, "x_m": -1.5755421187813008, "y_m": 12.969672905988254, "d_right": 0.5850949152060757, "d_left": 0.8891953831891167, "psi_rad": -1.7993895410376233, "kappa_radpm": 0.002775607177841959, "vx_mps": 7.201984453680514, "ax_mps2": -11.094470225408312}, {"id": 300, "s_m": 29.98983609152864, "d_m": 0.0, "x_m": -1.598143667204966, "y_m": 12.872325748986112, "d_right": 0.5511591399670034, "d_left": 0.9496540353888083, "psi_rad": -1.7981468403055736, "kappa_radpm": 0.022103935383355908, "vx_mps": 7.046306676586453, "ax_mps2": -11.093731156810854}, {"id": 301, "s_m": 30.089802211833735, "d_m": 0.0, "x_m": -1.6205771238381492, "y_m": 12.774944678330987, "d_right": 0.528834898047401, "d_left": 1.016235277369045, "psi_rad": -1.797081243788968, "kappa_radpm": -0.018699214594953596, "vx_mps": 6.887121550662409, "ax_mps2": -8.289311545327665}, {"id": 302, "s_m": 30.189768332138833, "d_m": 0.0, "x_m": -1.643204596002936, "y_m": 12.677570453672448, "d_right": 0.5063392704438255, "d_left": 1.0536772573955926, "psi_rad": -1.802263443440168, "kappa_radpm": -0.0849292275761107, "vx_mps": 6.765732970138953, "ax_mps2": -6.803786860731745}, {"id": 303, "s_m": 30.289734452443927, "d_m": 0.0, "x_m": -1.6666232477961913, "y_m": 12.580416176377703, "d_right": 0.48309110831984464, "d_left": 1.093843891935876, "psi_rad": -1.8129327939850972, "kappa_radpm": -0.12085854082713159, "vx_mps": 6.664446433990223, "ax_mps2": -5.840059943265892}, {"id": 304, "s_m": 30.38970057274902, "d_m": 0.0, "x_m": -1.6912252659807456, "y_m": 12.483502368215792, "d_right": 0.4587110510530366, "d_left": 1.142431820678946, "psi_rad": -1.8262903523167298, "kappa_radpm": -0.14630131500449853, "vx_mps": 6.576262616545209, "ax_mps2": -5.829549883504267}, {"id": 305, "s_m": 30.48966669305412, "d_m": 0.0, "x_m": -1.7171963354098863, "y_m": 12.387010352930417, "d_right": 0.43304319774049066, "d_left": 1.1951200831831448, "psi_rad": -1.841008396089971, "kappa_radpm": -0.1417258037834358, "vx_mps": 6.487042086483803, "ax_mps2": -6.178735002130257}, {"id": 306, "s_m": 30.589632813359213, "d_m": 0.0, "x_m": -1.7445512911682994, "y_m": 12.290824698921528, "d_right": 0.40609138870735606, "d_left": 1.2452840765611928, "psi_rad": -1.8545311139835219, "kappa_radpm": -0.12872298068271693, "vx_mps": 6.3911177972792546, "ax_mps2": -3.9737204812434195}, {"id": 307, "s_m": 30.68959893366431, "d_m": 0.0, "x_m": -1.7732208193595416, "y_m": 12.195077468119122, "d_right": 0.37797361135251506, "d_left": 1.2747227083402002, "psi_rad": -1.8703577557672846, "kappa_radpm": -0.20426274641883962, "vx_mps": 6.328657982489338, "ax_mps2": -0.15471441746584152}, {"id": 308, "s_m": 30.789565053969405, "d_m": 0.0, "x_m": -1.8038545688834968, "y_m": 12.099892903194213, "d_right": 0.34811982075335524, "d_left": 1.3054823220720027, "psi_rad": -1.8955616179767638, "kappa_radpm": -0.29984273653865395, "vx_mps": 6.3262136747969056, "ax_mps2": -0.15471441746587705}, {"id": 309, "s_m": 30.8895311742745, "d_m": 0.0, "x_m": -1.837194387624857, "y_m": 12.005678519100385, "d_right": 0.3155585424660967, "d_left": 1.338990514578146, "psi_rad": -1.925977717449891, "kappa_radpm": -0.2931356936914709, "vx_mps": 6.323768422313448, "ax_mps2": 0.1228949766142035}, {"id": 310, "s_m": 30.989497294579596, "d_m": 0.0, "x_m": -1.8732974280569372, "y_m": 11.912436024323306, "d_right": 0.2788638852645312, "d_left": 1.3751438668578915, "psi_rad": -1.9540374128331797, "kappa_radpm": -0.2681810432404908, "vx_mps": 6.325710847571435, "ax_mps2": 1.1141482490086125}, {"id": 311, "s_m": 31.08946341488469, "d_m": 0.0, "x_m": -1.9118963207661592, "y_m": 11.820249160002323, "d_right": 0.2575927041437076, "d_left": 1.4134792493106725, "psi_rad": -1.9806142968638216, "kappa_radpm": -0.2665820382588894, "vx_mps": 6.343293457099327, "ax_mps2": 1.117888434873254}, {"id": 312, "s_m": 31.189429535189785, "d_m": 0.0, "x_m": -1.9529567245694437, "y_m": 11.729082325373886, "d_right": 0.2510427737796951, "d_left": 1.4543090520028334, "psi_rad": -2.007361562320309, "kappa_radpm": -0.2684381296407246, "vx_mps": 6.360886245046013, "ax_mps2": -0.15508142012447934}, {"id": 313, "s_m": 31.289395655494882, "d_m": 0.0, "x_m": -1.9964423778301228, "y_m": 11.639098588770105, "d_right": 0.27987253262516615, "d_left": 1.4049080185257476, "psi_rad": -2.034806453802359, "kappa_radpm": -0.2819786288798496, "vx_mps": 6.358448556575186, "ax_mps2": -0.1561744044834615}, {"id": 314, "s_m": 31.389361775799976, "d_m": 0.0, "x_m": -2.042468599133903, "y_m": 11.550334944422996, "d_right": 0.309328891199387, "d_left": 1.3286449851102686, "psi_rad": -2.063753243682979, "kappa_radpm": -0.2970396747686476, "vx_mps": 6.3559927429158325, "ax_mps2": -0.15617440448345596}, {"id": 315, "s_m": 31.489327896105074, "d_m": 0.0, "x_m": -2.0909987451095207, "y_m": 11.462965125136312, "d_right": 0.3589864527059989, "d_left": 1.250241205263705, "psi_rad": -2.0908449874795334, "kappa_radpm": -0.2394319886864265, "vx_mps": 6.353535980018086, "ax_mps2": 2.1786947865309636}, {"id": 316, "s_m": 31.589294016410168, "d_m": 0.0, "x_m": -2.1416282520502286, "y_m": 11.376744657124036, "d_right": 0.4250623357759531, "d_left": 1.1744440551316573, "psi_rad": -2.111617101296133, "kappa_radpm": -0.17616407901249898, "vx_mps": 6.387723442640676, "ax_mps2": 4.6542375652221395}, {"id": 317, "s_m": 31.689260136715262, "d_m": 0.0, "x_m": -2.1938023166386023, "y_m": 11.291475947316167, "d_right": 0.5013904771891762, "d_left": 1.1038377217661521, "psi_rad": -2.1277711956164875, "kappa_radpm": -0.14912130259112993, "vx_mps": 6.460150379395841, "ax_mps2": 5.604285580478166}, {"id": 318, "s_m": 31.78922625702036, "d_m": 0.0, "x_m": -2.2472435081886744, "y_m": 11.206991600402226, "d_right": 0.5759719280793183, "d_left": 1.0392284577267015, "psi_rad": -2.1414391060769447, "kappa_radpm": -0.12433227128080905, "vx_mps": 6.546298213305947, "ax_mps2": 5.555364397565698}, {"id": 319, "s_m": 31.889192377325454, "d_m": 0.0, "x_m": -2.301778075857813, "y_m": 11.123211680127406, "d_right": 0.6406211609750301, "d_left": 0.9816613647646468, "psi_rad": -2.154445293719397, "kappa_radpm": -0.1373451853615989, "vx_mps": 6.630589472207129, "ax_mps2": 5.507441978205541}, {"id": 320, "s_m": 31.989158497630548, "d_m": 0.0, "x_m": -2.357457729779335, "y_m": 11.04018846101837, "d_right": 0.7054669476341138, "d_left": 0.9243728649423537, "psi_rad": -2.1689024638755408, "kappa_radpm": -0.1518967080401509, "vx_mps": 6.713108964084916, "ax_mps2": 4.980431505577346}, {"id": 321, "s_m": 32.089124617935646, "d_m": 0.0, "x_m": -2.414256480859745, "y_m": 10.95792411508954, "d_right": 0.7471442129648159, "d_left": 0.8513275928513154, "psi_rad": -2.179741203329031, "kappa_radpm": -0.0629678025216402, "vx_mps": 6.7868682611196265, "ax_mps2": 5.418446883875882}, {"id": 322, "s_m": 32.18909073824074, "d_m": 0.0, "x_m": -2.4715699829844158, "y_m": 10.87602176452446, "d_right": 0.7749806304392143, "d_left": 0.7847334836537786, "psi_rad": -2.1814909830756957, "kappa_radpm": 0.027943200899531815, "vx_mps": 6.86621460631064, "ax_mps2": 5.373189746518403}, {"id": 323, "s_m": 32.289056858545834, "d_m": 0.0, "x_m": -2.528804555798458, "y_m": 10.794092035874877, "d_right": 0.8142799693530481, "d_left": 0.7257826377386742, "psi_rad": -2.180122990784847, "kappa_radpm": -0.0005707115254707036, "vx_mps": 6.94400294391921, "ax_mps2": 5.328774004037539}, {"id": 324, "s_m": 32.38902297885093, "d_m": 0.0, "x_m": -2.5860704437107356, "y_m": 10.712127388382026, "d_right": 0.8634350563702498, "d_left": 0.6765132457235313, "psi_rad": -2.181602659855553, "kappa_radpm": -0.02819302614895259, "vx_mps": 7.020297045815885, "ax_mps2": 5.285165998175685}, {"id": 325, "s_m": 32.48898909915603, "d_m": 0.0, "x_m": -2.6434543847494623, "y_m": 10.630369520626095, "d_right": 0.9206275575431762, "d_left": 0.6288158408556812, "psi_rad": -2.1837290671022327, "kappa_radpm": -0.014397935863801791, "vx_mps": 7.095156495208779, "ax_mps2": 5.242334264716685}, {"id": 326, "s_m": 32.58895521946112, "d_m": 0.0, "x_m": -2.7010456147630757, "y_m": 10.548566997868653, "d_right": 0.9708008146207622, "d_left": 0.5655867586665051, "psi_rad": -2.1844841116798577, "kappa_radpm": -0.001405148887785244, "vx_mps": 7.168637062027597, "ax_mps2": -2.376903039977429}, {"id": 327, "s_m": 32.68892133976622, "d_m": 0.0, "x_m": -2.7585753612718618, "y_m": 10.466930602175449, "d_right": 1.0082033732729636, "d_left": 0.5140765704467377, "psi_rad": -2.1849845223168316, "kappa_radpm": -0.008601147329611931, "vx_mps": 7.135414338115186, "ax_mps2": -11.496196764621013}, {"id": 328, "s_m": 32.788887460071315, "d_m": 0.0, "x_m": -2.8162844278477124, "y_m": 10.38518904234141, "d_right": 1.0469750266712676, "d_left": 0.46019301090585835, "psi_rad": -2.1861991080369565, "kappa_radpm": -0.014228811683139072, "vx_mps": 6.972494345564823, "ax_mps2": -11.48460163168135}, {"id": 329, "s_m": 32.888853580376406, "d_m": 0.0, "x_m": -2.87395684613136, "y_m": 10.30365312923799, "d_right": 1.0784378900026212, "d_left": 0.4065461689031548, "psi_rad": -2.186157957486124, "kappa_radpm": 0.014992852278102962, "vx_mps": 6.805845668408595, "ax_mps2": -10.066540521389404}, {"id": 330, "s_m": 32.9888197006815, "d_m": 0.0, "x_m": -2.931615379563907, "y_m": 10.221877346809348, "d_right": 1.1169304462610454, "d_left": 0.3722773915030287, "psi_rad": -2.183201107925199, "kappa_radpm": 0.0475037103572006, "vx_mps": 6.656343535347415, "ax_mps2": -4.987707793761645}, {"id": 331, "s_m": 33.0887858209866, "d_m": 0.0, "x_m": -2.9886417287031173, "y_m": 10.139946577127098, "d_right": 1.1631928596837748, "d_left": 0.3363388664428158, "psi_rad": -2.1725378651238527, "kappa_radpm": 0.16577624297276347, "vx_mps": 6.581010991165843, "ax_mps2": -0.16729877730290432}, {"id": 332, "s_m": 33.1887519412917, "d_m": 0.0, "x_m": -3.0444605233757307, "y_m": 10.056849199127857, "d_right": 1.1626185658169754, "d_left": 0.29960807150544255, "psi_rad": -2.1501257929147553, "kappa_radpm": 0.2772883045699359, "vx_mps": 6.5784692175648365, "ax_mps2": -0.1672987773029162}, {"id": 333, "s_m": 33.28871806159679, "d_m": 0.0, "x_m": -3.0979556120148777, "y_m": 9.972655417613884, "d_right": 1.162138671481448, "d_left": 0.28868910105068046, "psi_rad": -2.124051248805735, "kappa_radpm": 0.2456491024341162, "vx_mps": 6.575926461499596, "ax_mps2": 1.210273353600821}, {"id": 334, "s_m": 33.38868418190189, "d_m": 0.0, "x_m": -3.1495917880765933, "y_m": 9.886799112588031, "d_right": 1.1479712196325877, "d_left": 0.2793052048992049, "psi_rad": -2.1009889536724966, "kappa_radpm": 0.21497449571052385, "vx_mps": 6.594299165975625, "ax_mps2": 2.4837761308445856}, {"id": 335, "s_m": 33.488650302206985, "d_m": 0.0, "x_m": -3.1991032873431084, "y_m": 9.800199517490764, "d_right": 1.1352572470060665, "d_left": 0.302360098297689, "psi_rad": -2.079251069990514, "kappa_radpm": 0.22085285227205625, "vx_mps": 6.631845023626585, "ax_mps2": 2.1165647189516346}, {"id": 336, "s_m": 33.588616422512075, "d_m": 0.0, "x_m": -3.246883731204307, "y_m": 9.712173004071712, "d_right": 1.128428255869317, "d_left": 0.3230694958726118, "psi_rad": -2.056833708225062, "kappa_radpm": 0.22677871903037175, "vx_mps": 6.66367300698775, "ax_mps2": 1.758335244012605}, {"id": 337, "s_m": 33.68858254281717, "d_m": 0.0, "x_m": -3.292502267815885, "y_m": 9.623410614722909, "d_right": 1.1198140882795455, "d_left": 0.3136444834199596, "psi_rad": -2.0342628533852993, "kappa_radpm": 0.22530906116893004, "vx_mps": 6.689998942386798, "ax_mps2": 1.7430287683932768}, {"id": 338, "s_m": 33.78854866312227, "d_m": 0.0, "x_m": -3.3362472790123516, "y_m": 9.533360517704885, "d_right": 1.110589415499974, "d_left": 0.3067614327741983, "psi_rad": -2.011773308061235, "kappa_radpm": 0.22405564083289484, "vx_mps": 6.715993857669122, "ax_mps2": 1.7196991384643383}, {"id": 339, "s_m": 33.88851478342736, "d_m": 0.0, "x_m": -3.377865150485222, "y_m": 9.442565338415257, "d_right": 1.1090219147423155, "d_left": 0.3293148583792614, "psi_rad": -1.9894062509972787, "kappa_radpm": 0.2239975203204055, "vx_mps": 6.74154261265016, "ax_mps2": 1.6439759089126913}, {"id": 340, "s_m": 33.98848090373246, "d_m": 0.0, "x_m": -3.417506389904065, "y_m": 9.350704935811981, "d_right": 1.0962349047931643, "d_left": 0.348647016228004, "psi_rad": -1.9669646633484614, "kappa_radpm": 0.22472475331680014, "vx_mps": 6.765876187542604, "ax_mps2": 1.5357903155958004}, {"id": 341, "s_m": 34.088447024037556, "d_m": 0.0, "x_m": -3.4550294697772643, "y_m": 9.258064699303828, "d_right": 1.0787864640527147, "d_left": 0.3689515632840877, "psi_rad": -1.9441750213884337, "kappa_radpm": 0.23250452395756352, "vx_mps": 6.788529633437609, "ax_mps2": 1.1070766647564263}, {"id": 342, "s_m": 34.18841314434265, "d_m": 0.0, "x_m": -3.4904038490850016, "y_m": 9.164536983071665, "d_right": 1.0727476046590367, "d_left": 0.3918367279293756, "psi_rad": -1.920442341873854, "kappa_radpm": 0.24227161591048782, "vx_mps": 6.804812627998845, "ax_mps2": 0.6024885434929126}, {"id": 343, "s_m": 34.288379264647745, "d_m": 0.0, "x_m": -3.5235382952545393, "y_m": 9.070134844999101, "d_right": 1.078406448080114, "d_left": 0.4176760842122608, "psi_rad": -1.8965033736377936, "kappa_radpm": 0.23092303980738887, "vx_mps": 6.813657739174683, "ax_mps2": 1.0997078133070557}, {"id": 344, "s_m": 34.38834538495284, "d_m": 0.0, "x_m": -3.554454151589211, "y_m": 8.97508273092903, "d_right": 1.0954724417775683, "d_left": 0.4195389564583969, "psi_rad": -1.8742951824648353, "kappa_radpm": 0.2136960454461016, "vx_mps": 6.82977297087876, "ax_mps2": 1.8516523906612876}, {"id": 345, "s_m": 34.48831150525794, "d_m": 0.0, "x_m": -3.583458484298004, "y_m": 8.879102997997473, "d_right": 1.1106728513016073, "d_left": 0.4346371880170047, "psi_rad": -1.8555179144252953, "kappa_radpm": 0.14279314731179588, "vx_mps": 6.856821701418392, "ax_mps2": 5.104680824352665}, {"id": 346, "s_m": 34.58827762556303, "d_m": 0.0, "x_m": -3.610995006734544, "y_m": 8.783060896287646, "d_right": 1.1070044953498477, "d_left": 0.46228065104744526, "psi_rad": -1.8461675106928475, "kappa_radpm": 0.043791807572735625, "vx_mps": 6.930843680235103, "ax_mps2": 5.3362909948340285}, {"id": 347, "s_m": 34.68824374586813, "d_m": 0.0, "x_m": -3.638157701537875, "y_m": 8.686565633435892, "d_right": 1.0962990186483137, "d_left": 0.48955207553987684, "psi_rad": -1.8444780740105635, "kappa_radpm": 0.020984544633332564, "vx_mps": 7.007388296291283, "ax_mps2": 5.292547514421518}, {"id": 348, "s_m": 34.788209866173226, "d_m": 0.0, "x_m": -3.6649900359252925, "y_m": 8.590418154972722, "d_right": 1.094917613326799, "d_left": 0.5165206819720113, "psi_rad": -1.8409219894365476, "kappa_radpm": 0.05065769855288209, "vx_mps": 7.082488377547418, "ax_mps2": 5.249585526138264}, {"id": 349, "s_m": 34.888175986478316, "d_m": 0.0, "x_m": -3.6914232129157973, "y_m": 8.493856308028386, "d_right": 1.10313661920202, "d_left": 0.5430837095769642, "psi_rad": -1.8349323719671817, "kappa_radpm": 0.060376594890946926, "vx_mps": 7.156200319625622, "ax_mps2": 5.207375235927866}, {"id": 350, "s_m": 34.988142106783414, "d_m": 0.0, "x_m": -3.7171951972296764, "y_m": 8.397443866301261, "d_right": 1.1192495311958284, "d_left": 0.5690025733116797, "psi_rad": -1.8291463508632138, "kappa_radpm": 0.05552212678307716, "vx_mps": 7.228576983973191, "ax_mps2": 5.165888702029949}, {"id": 351, "s_m": 35.08810822708851, "d_m": 0.0, "x_m": -3.74253141085703, "y_m": 8.300486065133462, "d_right": 1.1299441860348567, "d_left": 0.5834885321483726, "psi_rad": -1.823573426939503, "kappa_radpm": 0.058640690109458736, "vx_mps": 7.299668000407053, "ax_mps2": 5.1250996769527974}, {"id": 352, "s_m": 35.1880743473936, "d_m": 0.0, "x_m": -3.767158502637398, "y_m": 8.203926336261965, "d_right": 1.1440723737363787, "d_left": 0.57674942656669, "psi_rad": -1.8173242480583003, "kappa_radpm": 0.06693743870463041, "vx_mps": 7.369520037148307, "ax_mps2": 5.084983466395989}, {"id": 353, "s_m": 35.2880404676987, "d_m": 0.0, "x_m": -3.7912800921675847, "y_m": 8.106679199417886, "d_right": 1.1451379697925586, "d_left": 0.5736617156116406, "psi_rad": -1.8106215359995899, "kappa_radpm": 0.06362984567995336, "vx_mps": 7.438177042517389, "ax_mps2": 5.045516802949554}, {"id": 354, "s_m": 35.3880065880038, "d_m": 0.0, "x_m": -3.8146207070977614, "y_m": 8.009962718649103, "d_right": 1.1457405488396866, "d_left": 0.5745625371165991, "psi_rad": -1.8047262062080511, "kappa_radpm": 0.054573942552449003, "vx_mps": 7.505680461842406, "ax_mps2": 5.006677732721283}, {"id": 355, "s_m": 35.48797270830889, "d_m": 0.0, "x_m": -3.837583128291281, "y_m": 7.912552652230186, "d_right": 1.1531158505777774, "d_left": 0.5886133507068799, "psi_rad": -1.8002262931876496, "kappa_radpm": 0.03412365180680429, "vx_mps": 7.5720694326187274, "ax_mps2": 4.968445513307238}, {"id": 356, "s_m": 35.587938828613986, "d_m": 0.0, "x_m": -3.8601401632277526, "y_m": 7.815383973014443, "d_right": 1.1691537252496593, "d_left": 0.5910172936890296, "psi_rad": -1.7979433857606058, "kappa_radpm": 0.013099839093735566, "vx_mps": 7.6373809605272465, "ax_mps2": 4.930800521750252}, {"id": 357, "s_m": 35.68790494891908, "d_m": 0.0, "x_m": -3.882602872751764, "y_m": 7.717941726145167, "d_right": 1.1860627825131915, "d_left": 0.5902248488843583, "psi_rad": -1.79685331511579, "kappa_radpm": 0.008698941963675447, "vx_mps": 7.7016500785571615, "ax_mps2": 4.893724171312865}, {"id": 358, "s_m": 35.78787106922418, "d_m": 0.0, "x_m": -3.9049660645094275, "y_m": 7.620544448414057, "d_right": 1.193248854198634, "d_left": 0.6060585496442232, "psi_rad": -1.7962064726894464, "kappa_radpm": 0.0041543507983905995, "vx_mps": 7.764909991174295, "ax_mps2": 4.857198836056667}, {"id": 359, "s_m": 35.88783718952927, "d_m": 0.0, "x_m": -3.9272940911324907, "y_m": 7.523116140389594, "d_right": 1.1996653642878619, "d_left": 0.6034641329930552, "psi_rad": -1.7960347274027066, "kappa_radpm": -0.000719880707085377, "vx_mps": 7.827192205217677, "ax_mps2": 4.82120778234731}, {"id": 360, "s_m": 35.98780330983437, "d_m": 0.0, "x_m": -3.949620257362944, "y_m": 7.425723642058867, "d_right": 1.2017660057406743, "d_left": 0.6053056499931836, "psi_rad": -1.796289961646501, "kappa_radpm": -0.0031609296287710637, "vx_mps": 7.888526648987907, "ax_mps2": 4.785735106526644}, {"id": 361, "s_m": 36.08776943013947, "d_m": 0.0, "x_m": -3.971989247827016, "y_m": 7.328280928560531, "d_right": 1.1897032630053852, "d_left": 0.594073062040394, "psi_rad": -1.7966035843705797, "kappa_radpm": -0.0031117981092077265, "vx_mps": 7.948941780803726, "ax_mps2": 4.750765678081966}, {"id": 362, "s_m": 36.18773555044456, "d_m": 0.0, "x_m": -3.9943723432554683, "y_m": 7.230915699710204, "d_right": 1.185943732748951, "d_left": 0.5983506254245392, "psi_rad": -1.7969125709425775, "kappa_radpm": -0.0030802292844137407, "vx_mps": 8.008464688143414, "ax_mps2": 4.7162850877339055}, {"id": 363, "s_m": 36.287701670749655, "d_m": 0.0, "x_m": -4.016816199204249, "y_m": 7.133423655590912, "d_right": 1.1905666784702627, "d_left": 0.616911588510843, "psi_rad": -1.7972194307118956, "kappa_radpm": -0.0030534080113320088, "vx_mps": 8.067121178350247, "ax_mps2": 4.682279599930471}, {"id": 364, "s_m": 36.38766779105475, "d_m": 0.0, "x_m": -4.039247064887503, "y_m": 7.0361212580027175, "d_right": 1.1946076024518293, "d_left": 0.6075365172550201, "psi_rad": -1.7975029623146472, "kappa_radpm": -0.0025734681414953634, "vx_mps": 8.12493586176313, "ax_mps2": 4.6487361092981025}, {"id": 365, "s_m": 36.48763391135984, "d_m": 0.0, "x_m": -4.061755043403851, "y_m": 6.9385989860495485, "d_right": 1.200327765415948, "d_left": 0.6003039492359052, "psi_rad": -1.7977337509185478, "kappa_radpm": -0.0020353713807792742, "vx_mps": 8.181932228031592, "ax_mps2": 4.615642100654727}, {"id": 366, "s_m": 36.58760003166494, "d_m": 0.0, "x_m": -4.084226692661099, "y_m": 6.8413240498377155, "d_right": 1.2033354985640445, "d_left": 0.5778894891116507, "psi_rad": -1.7979070888812112, "kappa_radpm": -0.001439104473434452, "vx_mps": 8.238132716285934, "ax_mps2": 4.582985612233622}, {"id": 367, "s_m": 36.68756615197004, "d_m": 0.0, "x_m": -4.106759782671361, "y_m": 6.7438471066627805, "d_right": 1.1983226510880363, "d_left": 0.5616043740320507, "psi_rad": -1.7980216820819042, "kappa_radpm": -0.0008529238649597622, "vx_mps": 8.293558779756662, "ax_mps2": 4.550755201809539}, {"id": 368, "s_m": 36.78753227227513, "d_m": 0.0, "x_m": -4.129267376713846, "y_m": 6.6465183230659015, "d_right": 1.1859935086957014, "d_left": 0.5574421759182026, "psi_rad": -1.7980780021299667, "kappa_radpm": -0.0002767579899316869, "vx_mps": 8.348230945370704, "ax_mps2": 4.518939915449495}, {"id": 369, "s_m": 36.88749839258023, "d_m": 0.0, "x_m": -4.151802199495414, "y_m": 6.5490841724113915, "d_right": 1.1778180665023323, "d_left": 0.5608402764828635, "psi_rad": -1.7980784416192712, "kappa_radpm": 0.0002317252001910883, "vx_mps": 8.402168868793563, "ax_mps2": 4.487529258647629}, {"id": 370, "s_m": 36.987464512885325, "d_m": 0.0, "x_m": -4.174323195439559, "y_m": 6.451699810613727, "d_right": 1.175150843236941, "d_left": 0.5528718671372669, "psi_rad": -1.7980347084885482, "kappa_radpm": 0.0006419990254035295, "vx_mps": 8.455391385335686, "ax_mps2": -6.416012073344577}, {"id": 371, "s_m": 37.08743063319042, "d_m": 0.0, "x_m": -4.19684130658411, "y_m": 6.354299580129029, "d_right": 1.1596159173857963, "d_left": 0.535577428673237, "psi_rad": -1.7979516605747676, "kappa_radpm": 0.000994989749938308, "vx_mps": 8.379193028544162, "ax_mps2": -12.173971948200432}, {"id": 372, "s_m": 37.18739675349551, "d_m": 0.0, "x_m": -4.219356093779614, "y_m": 6.2568696507861485, "d_right": 1.1525829657652005, "d_left": 0.536655710471881, "psi_rad": -1.7978369288515221, "kappa_radpm": 0.0012990006206472899, "vx_mps": 8.232673096927503, "ax_mps2": -12.170048855360086}, {"id": 373, "s_m": 37.28736287380061, "d_m": 0.0, "x_m": -4.241847092168352, "y_m": 6.159486132464822, "d_right": 1.1542128525038875, "d_left": 0.5420477467696517, "psi_rad": -1.7977032406720062, "kappa_radpm": 0.0012634580288136495, "vx_mps": 8.083546324781357, "ax_mps2": -12.170052155765319}, {"id": 374, "s_m": 37.38732899410571, "d_m": 0.0, "x_m": -4.264342512297197, "y_m": 6.0620274447571605, "d_right": 1.135525158316186, "d_left": 0.5233842197911687, "psi_rad": -1.7975869854391808, "kappa_radpm": 0.0010619233632262375, "vx_mps": 7.93161619022511, "ax_mps2": -12.148465037210977}, {"id": 375, "s_m": 37.4872951144108, "d_m": 0.0, "x_m": -4.286806820520849, "y_m": 5.964653833169524, "d_right": 1.1212353366352283, "d_left": 0.5107897408264602, "psi_rad": -1.7974691814264165, "kappa_radpm": 0.0014111214052944313, "vx_mps": 7.776995920930977, "ax_mps2": -12.113908245319726}, {"id": 376, "s_m": 37.587261234715896, "d_m": 0.0, "x_m": -4.309278513624942, "y_m": 5.867185395244263, "d_right": 1.1157606680986507, "d_left": 0.5175474245374304, "psi_rad": -1.7973033579268733, "kappa_radpm": 0.0019039171757605938, "vx_mps": 7.619691905591981, "ax_mps2": -12.113920879135378}, {"id": 377, "s_m": 37.687227355020994, "d_m": 0.0, "x_m": -4.331721380140197, "y_m": 5.769779448860835, "d_right": 1.1192428658830686, "d_left": 0.5113928828955683, "psi_rad": -1.7972532566252255, "kappa_radpm": -0.0012393882613759594, "vx_mps": 7.459071081053176, "ax_mps2": -11.952969092640018}, {"id": 378, "s_m": 37.787193475326085, "d_m": 0.0, "x_m": -4.354182959707231, "y_m": 5.672347483145238, "d_right": 1.1242157069228098, "d_left": 0.4944836420592151, "psi_rad": -1.7975528498117512, "kappa_radpm": -0.0047490762658862744, "vx_mps": 7.297119808497599, "ax_mps2": -11.793626152927699}, {"id": 379, "s_m": 37.88715959563118, "d_m": 0.0, "x_m": -4.376680020600083, "y_m": 5.574970422288959, "d_right": 1.128871003286374, "d_left": 0.4782998714364269, "psi_rad": -1.7981862380118336, "kappa_radpm": -0.007921123088400797, "vx_mps": 7.13372493147123, "ax_mps2": -11.563688544806817}, {"id": 380, "s_m": 37.98712571593628, "d_m": 0.0, "x_m": -4.39926659972751, "y_m": 5.477557741609531, "d_right": 1.1422169146748433, "d_left": 0.47271647425052316, "psi_rad": -1.799147009985906, "kappa_radpm": -0.012847486313256136, "vx_mps": 6.969797503329098, "ax_mps2": -10.797968423818471}, {"id": 381, "s_m": 38.08709183624137, "d_m": 0.0, "x_m": -4.422000217749059, "y_m": 5.380146460695379, "d_right": 1.1592852903591992, "d_left": 0.4797656255270985, "psi_rad": -1.8012754321898177, "kappa_radpm": -0.029760962076618592, "vx_mps": 6.813164845826095, "ax_mps2": -10.18192132791381}, {"id": 382, "s_m": 38.18705795654647, "d_m": 0.0, "x_m": -4.445031663542093, "y_m": 5.282771087151218, "d_right": 1.1589782586401953, "d_left": 0.47334967689770957, "psi_rad": -1.805092246799842, "kappa_radpm": -0.04482875415070614, "vx_mps": 6.662095831763002, "ax_mps2": -9.892737891284026}, {"id": 383, "s_m": 38.287024076851566, "d_m": 0.0, "x_m": -4.468525887390225, "y_m": 5.185366386729989, "d_right": 1.1489388100923767, "d_left": 0.4532158064516378, "psi_rad": -1.8100087451792604, "kappa_radpm": -0.05355879655181972, "vx_mps": 6.511961579986493, "ax_mps2": -9.892222143542938}, {"id": 384, "s_m": 38.38699019715666, "d_m": 0.0, "x_m": -4.492477009407566, "y_m": 5.088348336356714, "d_right": 1.147050238816938, "d_left": 0.45528093645989415, "psi_rad": -1.8156949434449698, "kappa_radpm": -0.05471854555763735, "vx_mps": 6.358291396393205, "ax_mps2": -9.937194456151111}, {"id": 385, "s_m": 38.486956317461754, "d_m": 0.0, "x_m": -4.516962744255936, "y_m": 4.991400555849163, "d_right": 1.138388059639248, "d_left": 0.46297604337442777, "psi_rad": -1.820433518562675, "kappa_radpm": -0.039773702367403865, "vx_mps": 6.200089025848781, "ax_mps2": -10.615319412143684}, {"id": 386, "s_m": 38.58692243776685, "d_m": 0.0, "x_m": -4.541785522502111, "y_m": 4.894736835266288, "d_right": 1.1258743881861664, "d_left": 0.4494381714744395, "psi_rad": -1.8236480533257469, "kappa_radpm": -0.02533713227263147, "vx_mps": 6.026504736046235, "ax_mps2": -11.217941320134498}, {"id": 387, "s_m": 38.68688855807195, "d_m": 0.0, "x_m": -4.5668613932229505, "y_m": 4.798101091836412, "d_right": 1.1158017681686334, "d_left": 0.436644486356585, "psi_rad": -1.82549124247521, "kappa_radpm": -0.01145054326303127, "vx_mps": 5.83745930953009, "ax_mps2": -11.698128626923374}, {"id": 388, "s_m": 38.78685467837704, "d_m": 0.0, "x_m": -4.59201880459806, "y_m": 4.701564618750336, "d_right": 1.1074021205536537, "d_left": 0.4464676056550688, "psi_rad": -1.8255264973220342, "kappa_radpm": 0.013377457769539027, "vx_mps": 5.633568862017453, "ax_mps2": -10.89829011560159}, {"id": 389, "s_m": 38.88682079868214, "d_m": 0.0, "x_m": -4.617122875635131, "y_m": 4.604702112491296, "d_right": 1.082225061833081, "d_left": 0.44905589127249973, "psi_rad": -1.8227879050434872, "kappa_radpm": 0.041138423324096896, "vx_mps": 5.436743378297384, "ax_mps2": -10.89509360158559}, {"id": 390, "s_m": 38.986786918987235, "d_m": 0.0, "x_m": -4.641722120437817, "y_m": 4.50840397945494, "d_right": 1.057544599338892, "d_left": 0.45491963174519545, "psi_rad": -1.8192396252877927, "kappa_radpm": 0.02855397580606203, "vx_mps": 5.23258044238573, "ax_mps2": -11.075605794270992}, {"id": 391, "s_m": 39.086753039292326, "d_m": 0.0, "x_m": -4.666272016280022, "y_m": 4.411140731874257, "d_right": 1.039876448764584, "d_left": 0.45707811014354227, "psi_rad": -1.8169113277603595, "kappa_radpm": 0.04059839128798728, "vx_mps": 5.016525431359233, "ax_mps2": -7.222472969290864}, {"id": 392, "s_m": 39.18671915959742, "d_m": 0.0, "x_m": -4.690011408448772, "y_m": 4.31467096739196, "d_right": 1.0323269244377347, "d_left": 0.4387772573891251, "psi_rad": -1.804529212334689, "kappa_radpm": 0.20526635810554092, "vx_mps": 4.870474535399713, "ax_mps2": -4.200631749552661}, {"id": 393, "s_m": 39.28668527990252, "d_m": 0.0, "x_m": -4.712016314566291, "y_m": 4.216681636126213, "d_right": 1.0364239187799411, "d_left": 0.4315161107785274, "psi_rad": -1.7764867950373215, "kappa_radpm": 0.34472227723116133, "vx_mps": 4.783479955253357, "ax_mps2": -1.9634155457772202}, {"id": 394, "s_m": 39.38665140020761, "d_m": 0.0, "x_m": -4.730506201106104, "y_m": 4.118821637723888, "d_right": 1.027414432789454, "d_left": 0.43772775259677316, "psi_rad": -1.7368378205595087, "kappa_radpm": 0.4501518505894428, "vx_mps": 4.742270596770555, "ax_mps2": -0.2935473292560875}, {"id": 395, "s_m": 39.48661752051271, "d_m": 0.0, "x_m": -4.744669671850963, "y_m": 4.019642466108321, "d_right": 1.0313072369182787, "d_left": 0.44643348902338775, "psi_rad": -1.687078772106653, "kappa_radpm": 0.5257660824102687, "vx_mps": 4.736078635087392, "ax_mps2": -0.08664536664070133}, {"id": 396, "s_m": 39.58658364081781, "d_m": 0.0, "x_m": -4.753598162219792, "y_m": 3.9206190502330522, "d_right": 1.0497491826388101, "d_left": 0.4307985966503996, "psi_rad": -1.634198972211209, "kappa_radpm": 0.5354007503634945, "vx_mps": 4.734249426830011, "ax_mps2": -0.08664536664068971}, {"id": 397, "s_m": 39.6865497611229, "d_m": 0.0, "x_m": -4.75726809983527, "y_m": 3.820286235736017, "d_right": 1.0723995671617748, "d_left": 0.3885165809105879, "psi_rad": -1.580787838430572, "kappa_radpm": 0.5136100188324773, "vx_mps": 4.732419511534171, "ax_mps2": 0.4107172013858591}, {"id": 398, "s_m": 39.786515881427995, "d_m": 0.0, "x_m": -4.755836090062031, "y_m": 3.7209760311076847, "d_right": 1.1015804723040377, "d_left": 0.36443173700521314, "psi_rad": -1.5330029672528842, "kappa_radpm": 0.4510138512538713, "vx_mps": 4.741087432591762, "ax_mps2": 1.7752553798914728}, {"id": 399, "s_m": 39.88648200173309, "d_m": 0.0, "x_m": -4.74981104988681, "y_m": 3.620138207771099, "d_right": 1.1332388555493835, "d_left": 0.321148360708218, "psi_rad": -1.490093164459115, "kappa_radpm": 0.3982395660401632, "vx_mps": 4.778372194506885, "ax_mps2": 2.81879143034553}, {"id": 400, "s_m": 39.98644812203819, "d_m": 0.0, "x_m": -4.739918373256575, "y_m": 3.521118327321853, "d_right": 1.1706823681431215, "d_left": 0.2912466223877558, "psi_rad": -1.4532272032307718, "kappa_radpm": 0.34517671958471063, "vx_mps": 4.836983369386166, "ax_mps2": 3.8336579932613724}, {"id": 401, "s_m": 40.08641424234328, "d_m": 0.0, "x_m": -4.726465484189496, "y_m": 3.421475011802621, "d_right": 1.2137234832051722, "d_left": 0.2905807747983498, "psi_rad": -1.4206422533160747, "kappa_radpm": 0.30485879535588184, "vx_mps": 4.915575240807959, "ax_mps2": -1.464410948531887}, {"id": 402, "s_m": 40.18638036264838, "d_m": 0.0, "x_m": -4.710031962375008, "y_m": 3.3226559780302076, "d_right": 1.1325486889580567, "d_left": 0.29064460225395305, "psi_rad": -1.3919948985723813, "kappa_radpm": 0.2676283673996597, "vx_mps": 4.885703325615478, "ax_mps2": -5.646114102811224}, {"id": 403, "s_m": 40.286346482953476, "d_m": 0.0, "x_m": -4.691001223706817, "y_m": 3.2245557600496353, "d_right": 1.043382860388429, "d_left": 0.310210289959927, "psi_rad": -1.3669147480045076, "kappa_radpm": 0.23502764523274142, "vx_mps": 4.7687793765925335, "ax_mps2": -6.191705299969807}, {"id": 404, "s_m": 40.38631260325857, "d_m": 0.0, "x_m": -4.669480186999049, "y_m": 3.1263609928883356, "d_right": 0.9571088003299429, "d_left": 0.3379178554953505, "psi_rad": -1.3423813495981873, "kappa_radpm": 0.2739771731810193, "vx_mps": 4.637168880771259, "ax_mps2": -4.892115374547419}, {"id": 405, "s_m": 40.486278723563665, "d_m": 0.0, "x_m": -4.645416799033019, "y_m": 3.0294235122198674, "d_right": 0.8760571209511359, "d_left": 0.36904573025352533, "psi_rad": -1.3113082384197345, "kappa_radpm": 0.3501654797675535, "vx_mps": 4.530479405166359, "ax_mps2": -4.748500631073885}, {"id": 406, "s_m": 40.58624484386876, "d_m": 0.0, "x_m": -4.617963503178302, "y_m": 2.933118738958413, "d_right": 0.8014362895291958, "d_left": 0.4038692342826318, "psi_rad": -1.276277854151548, "kappa_radpm": 0.268336125655353, "vx_mps": 4.424462144704935, "ax_mps2": -6.53992180975142}, {"id": 407, "s_m": 40.68621096417385, "d_m": 0.0, "x_m": -4.588036154418436, "y_m": 2.8376432052300427, "d_right": 0.7349908792810277, "d_left": 0.4465184601442315, "psi_rad": -1.2621118703616716, "kappa_radpm": 0.009936982815119866, "vx_mps": 4.274146002312977, "ax_mps2": -8.763961270831233}, {"id": 408, "s_m": 40.78617708447895, "d_m": 0.0, "x_m": -4.558072714003307, "y_m": 2.7423737363746037, "d_right": 0.6683905883054957, "d_left": 0.4920969938643113, "psi_rad": -1.2736873318372588, "kappa_radpm": -0.19979790558464908, "vx_mps": 4.064003646109307, "ax_mps2": -7.295590654354835}, {"id": 409, "s_m": 40.88614320478405, "d_m": 0.0, "x_m": -4.529863004444529, "y_m": 2.646167074598669, "d_right": 0.6022987594315505, "d_left": 0.5499335153874735, "psi_rad": -1.2994004987747525, "kappa_radpm": -0.3162954372301112, "vx_mps": 3.8803997022845182, "ax_mps2": -5.75692965037964}, {"id": 410, "s_m": 40.98610932508914, "d_m": 0.0, "x_m": -4.504852546284856, "y_m": 2.5496035308323814, "d_right": 0.5273556422924183, "d_left": 0.6204761667791163, "psi_rad": -1.337590754878505, "kappa_radpm": -0.4527974586160577, "vx_mps": 3.729142797675384, "ax_mps2": -3.998395658477865}, {"id": 411, "s_m": 41.086075445394236, "d_m": 0.0, "x_m": -4.484172280689199, "y_m": 2.4515888358029083, "d_right": 0.4556787336968247, "d_left": 0.6863516517386699, "psi_rad": -1.3908156403391327, "kappa_radpm": -0.6143445568322982, "vx_mps": 3.620372605493616, "ax_mps2": -2.1300634735910386}, {"id": 412, "s_m": 41.186041565699334, "d_m": 0.0, "x_m": -4.469630994023036, "y_m": 2.3529849421902425, "d_right": 0.3916390082698612, "d_left": 0.7590697147393796, "psi_rad": -1.4607499095234409, "kappa_radpm": -0.7821765300477036, "vx_mps": 3.5610713893000856, "ax_mps2": -0.2004745009583688}, {"id": 413, "s_m": 41.28600768600443, "d_m": 0.0, "x_m": -4.462810553822681, "y_m": 2.2535005218769824, "d_right": 0.33779104194275944, "d_left": 0.8417466329029111, "psi_rad": -1.5465259450726792, "kappa_radpm": -0.9372878119184556, "vx_mps": 3.5554392307462974, "ax_mps2": -0.04883082422884398}, {"id": 414, "s_m": 41.38597380630952, "d_m": 0.0, "x_m": -4.465200066494235, "y_m": 2.153896198825989, "d_right": 0.29875055142428597, "d_left": 0.9133974309333475, "psi_rad": -1.643034534928848, "kappa_radpm": -0.9500145665686494, "vx_mps": 3.55406601900287, "ax_mps2": -0.04883082422884051}, {"id": 415, "s_m": 41.48593992661462, "d_m": 0.0, "x_m": -4.476964195183124, "y_m": 2.0549020660452655, "d_right": 0.28088126163690047, "d_left": 0.991345957935559, "psi_rad": -1.7336743181668473, "kappa_radpm": -0.8631641524331114, "vx_mps": 3.552692276475968, "ax_mps2": 1.0566749063329286}, {"id": 416, "s_m": 41.58590604691972, "d_m": 0.0, "x_m": -4.497222626171344, "y_m": 1.9573442465257689, "d_right": 0.2832273122689308, "d_left": 1.0043373751833702, "psi_rad": -1.8164254148897498, "kappa_radpm": -0.7999650321718024, "vx_mps": 3.5823017451007257, "ax_mps2": 1.684530312202709}, {"id": 417, "s_m": 41.68587216722481, "d_m": 0.0, "x_m": -4.52531487298638, "y_m": 1.8612939318101656, "d_right": 0.2878049800135419, "d_left": 0.9165148415588912, "psi_rad": -1.8931368228405718, "kappa_radpm": -0.7421254306615831, "vx_mps": 3.629005058228241, "ax_mps2": 2.1755354829765876}, {"id": 418, "s_m": 41.785838287529906, "d_m": 0.0, "x_m": -4.560375009788673, "y_m": 1.7681019616849292, "d_right": 0.31791294385463026, "d_left": 0.8362841725202534, "psi_rad": -1.9686488310018344, "kappa_radpm": -0.7736171629918616, "vx_mps": 3.6884464746400556, "ax_mps2": 1.4226257596640743}, {"id": 419, "s_m": 41.885804407835, "d_m": 0.0, "x_m": -4.602701352034185, "y_m": 1.6774569591418107, "d_right": 0.3672779256639985, "d_left": 0.7657761588625622, "psi_rad": -2.045839049323262, "kappa_radpm": -0.6988346453929946, "vx_mps": 3.7268037447609275, "ax_mps2": 2.240146572533202}, {"id": 420, "s_m": 41.985770528140094, "d_m": 0.0, "x_m": -4.650980365367405, "y_m": 1.590145181551324, "d_right": 0.42947473994055857, "d_left": 0.7082733733349506, "psi_rad": -2.101269842556615, "kappa_radpm": -0.4167230750773087, "vx_mps": 3.7864156765344523, "ax_mps2": 5.970040516366329}, {"id": 421, "s_m": 42.08573664844519, "d_m": 0.0, "x_m": -4.703035869849247, "y_m": 1.5047346230675056, "d_right": 0.501447159275505, "d_left": 0.6547118089574637, "psi_rad": -2.132588767126987, "kappa_radpm": -0.27358830588269406, "vx_mps": 3.9408815324082784, "ax_mps2": 7.009540501302092}, {"id": 422, "s_m": 42.18570276875029, "d_m": 0.0, "x_m": -4.757439773992098, "y_m": 1.4208505671526501, "d_right": 0.5688027155399813, "d_left": 0.5887731444894452, "psi_rad": -2.1596216555058785, "kappa_radpm": -0.26712282714703295, "vx_mps": 4.1148487688552855, "ax_mps2": 6.914078391751684}, {"id": 423, "s_m": 42.28566888905538, "d_m": 0.0, "x_m": -4.813990121605013, "y_m": 1.338507054640824, "d_right": 0.6425773575493224, "d_left": 0.5358949034180109, "psi_rad": -2.1845255503595986, "kappa_radpm": -0.20914726634682815, "vx_mps": 4.279524222991057, "ax_mps2": 6.8234994363743136}, {"id": 424, "s_m": 42.38563500936048, "d_m": 0.0, "x_m": -4.8723664166467575, "y_m": 1.2571911788906098, "d_right": 0.7216371588821086, "d_left": 0.48386617372451984, "psi_rad": -2.2008130528119754, "kappa_radpm": -0.11769264498121099, "vx_mps": 4.436052874604171, "ax_mps2": 6.73720722625267}, {"id": 425, "s_m": 42.485601129665575, "d_m": 0.0, "x_m": -4.931601618761535, "y_m": 1.176722185359186, "d_right": 0.8029108809001253, "d_left": 0.4475955462415361, "psi_rad": -2.2087676817766173, "kappa_radpm": -0.048287745196886354, "vx_mps": 4.585362585715968, "ax_mps2": 6.654718192297159}, {"id": 426, "s_m": 42.58556724997067, "d_m": 0.0, "x_m": -4.991332062853321, "y_m": 1.0964055904506786, "d_right": 0.8827218611091986, "d_left": 0.4134352030837355, "psi_rad": -2.2107994858402167, "kappa_radpm": 0.007065742925084259, "vx_mps": 4.728217715090881, "ax_mps2": 6.575633767480875}, {"id": 427, "s_m": 42.68553337027576, "d_m": 0.0, "x_m": -5.050906789825491, "y_m": 1.0161401137110342, "d_right": 0.9594092399272284, "d_left": 0.3826444700899877, "psi_rad": -2.2061159411029267, "kappa_radpm": 0.1046570629691285, "vx_mps": 4.86525682301188, "ax_mps2": 6.499620805374415}, {"id": 428, "s_m": 42.78549949058086, "d_m": 0.0, "x_m": -5.109680473859316, "y_m": 0.9351902751443323, "d_right": 1.0215017700161109, "d_left": 0.36712418143927095, "psi_rad": -2.1894040441522815, "kappa_radpm": 0.22857514262925513, "vx_mps": 4.9970198823497585, "ax_mps2": 6.195900562984247}, {"id": 429, "s_m": 42.88546561088596, "d_m": 0.0, "x_m": -5.166625795782127, "y_m": 0.8529434600870882, "d_right": 1.0759761332301705, "d_left": 0.3494597376444917, "psi_rad": -2.1628448748587505, "kappa_radpm": 0.2633074373152913, "vx_mps": 5.119469502473299, "ax_mps2": 4.997664315070382}, {"id": 430, "s_m": 42.98543173119105, "d_m": 0.0, "x_m": -5.221384036932508, "y_m": 0.7692681235645725, "d_right": 1.1350124127080155, "d_left": 0.32934490208232026, "psi_rad": -2.138264102066209, "kappa_radpm": 0.228879596377058, "vx_mps": 5.216144381732907, "ax_mps2": 5.667424607441239}, {"id": 431, "s_m": 43.08539785149615, "d_m": 0.0, "x_m": -5.274281797714293, "y_m": 0.6842294496736008, "d_right": 1.2012864575722209, "d_left": 0.31057197098977896, "psi_rad": -2.1164782024944415, "kappa_radpm": 0.2170708466289898, "vx_mps": 5.32365129505482, "ax_mps2": 5.738375435668893}, {"id": 432, "s_m": 43.185363971801245, "d_m": 0.0, "x_m": -5.325235654741696, "y_m": 0.5981791604151235, "d_right": 1.1743911318694271, "d_left": 0.3211220615296758, "psi_rad": -2.09413774378627, "kappa_radpm": 0.23012230523997668, "vx_mps": 5.430336027324151, "ax_mps2": 5.100029237737669}, {"id": 433, "s_m": 43.285330092106335, "d_m": 0.0, "x_m": -5.374240572860904, "y_m": 0.510895096501723, "d_right": 1.131803649074782, "d_left": 0.3207043403379975, "psi_rad": -2.0704346262371587, "kappa_radpm": 0.24081554844563025, "vx_mps": 5.523423724677745, "ax_mps2": -2.72883172611024}, {"id": 434, "s_m": 43.38529621241143, "d_m": 0.0, "x_m": -5.421128425733148, "y_m": 0.4224592484392843, "d_right": 1.099025461279404, "d_left": 0.3133862283152174, "psi_rad": -2.046081997351754, "kappa_radpm": 0.24625815825769035, "vx_mps": 5.47381294904051, "ax_mps2": -4.704204372306972}, {"id": 435, "s_m": 43.48526233271653, "d_m": 0.0, "x_m": -5.465754657325926, "y_m": 0.3330282484639767, "d_right": 1.0770542657879918, "d_left": 0.32356893515354396, "psi_rad": -2.0210599718725177, "kappa_radpm": 0.25525336508831603, "vx_mps": 5.387216914199757, "ax_mps2": -4.565056307998486}, {"id": 436, "s_m": 43.58522845302162, "d_m": 0.0, "x_m": -5.508200685643565, "y_m": 0.2422237159571666, "d_right": 1.0623928231085316, "d_left": 0.3525100006370423, "psi_rad": -1.994844243342956, "kappa_radpm": 0.2683660568340706, "vx_mps": 5.301830263641998, "ax_mps2": -4.37774192748821}, {"id": 437, "s_m": 43.68519457332672, "d_m": 0.0, "x_m": -5.548000763925564, "y_m": 0.15075256093013342, "d_right": 1.0377584197469216, "d_left": 0.3614001793525143, "psi_rad": -1.96729243635198, "kappa_radpm": 0.2837444926677855, "vx_mps": 5.218635108157521, "ax_mps2": -4.212167340245938}, {"id": 438, "s_m": 43.785160693631816, "d_m": 0.0, "x_m": -5.585397725958824, "y_m": 0.05766908378512204, "d_right": 1.0138114116925452, "d_left": 0.39267017978413676, "psi_rad": -1.9380867793314653, "kappa_radpm": 0.29894886482772876, "vx_mps": 5.1373148957343275, "ax_mps2": -3.8191149939198064}, {"id": 439, "s_m": 43.885126813936914, "d_m": 0.0, "x_m": -5.619767032879975, "y_m": -0.035875943312141806, "d_right": 0.9859545098725355, "d_left": 0.40206374851056453, "psi_rad": -1.9073327038584313, "kappa_radpm": 0.32307702822528006, "vx_mps": 5.062453962264884, "ax_mps2": -2.954999958904036}, {"id": 440, "s_m": 43.985092934242005, "d_m": 0.0, "x_m": -5.651262898822437, "y_m": -0.1310276308119568, "d_right": 0.9707595205107471, "d_left": 0.4067805110044187, "psi_rad": -1.8728680863844085, "kappa_radpm": 0.365121922172793, "vx_mps": 5.003762619995552, "ax_mps2": -2.938444991726113}, {"id": 441, "s_m": 44.0850590545471, "d_m": 0.0, "x_m": -5.679090230665509, "y_m": -0.22662119483384813, "d_right": 0.9694015666479089, "d_left": 0.40692273108837523, "psi_rad": -1.8351566783547106, "kappa_radpm": 0.3651047844930007, "vx_mps": 4.944709340917739, "ax_mps2": -2.996328886232691}, {"id": 442, "s_m": 44.1850251748522, "d_m": 0.0, "x_m": -5.703562054936614, "y_m": -0.32349466902217644, "d_right": 0.9534835008668269, "d_left": 0.4077612562993374, "psi_rad": -1.8027027586015762, "kappa_radpm": 0.2819044333698491, "vx_mps": 4.883757540903273, "ax_mps2": -5.294282285080297}, {"id": 443, "s_m": 44.28499129515729, "d_m": 0.0, "x_m": -5.725211946282992, "y_m": -0.4206857835138089, "d_right": 0.9498238838394307, "d_left": 0.41410688999007733, "psi_rad": -1.7779378184144026, "kappa_radpm": 0.2395132235909381, "vx_mps": 4.7741585644646, "ax_mps2": -6.613989776509872}, {"id": 444, "s_m": 44.38495741546239, "d_m": 0.0, "x_m": -5.744592097401557, "y_m": -0.5187356158195336, "d_right": 0.9589979748004935, "d_left": 0.41242596033551493, "psi_rad": -1.7539301128318474, "kappa_radpm": 0.23990036207801996, "vx_mps": 4.633599055082361, "ax_mps2": -6.865797094751434}, {"id": 445, "s_m": 44.484923535767486, "d_m": 0.0, "x_m": -5.761598437921644, "y_m": -0.6168796101668201, "d_right": 0.9530907711107375, "d_left": 0.41170346085887793, "psi_rad": -1.7317414039537633, "kappa_radpm": 0.18922945715192468, "vx_mps": 4.483028664478014, "ax_mps2": -8.210876951463819}, {"id": 446, "s_m": 44.584889656072576, "d_m": 0.0, "x_m": -5.776842693921803, "y_m": -0.7159300034737816, "d_right": 0.9578587521367362, "d_left": 0.38010746540830637, "psi_rad": -1.7164875686315169, "kappa_radpm": 0.11593998307006767, "vx_mps": 4.296036194010808, "ax_mps2": -7.699969524343993}, {"id": 447, "s_m": 44.684855776377674, "d_m": 0.0, "x_m": -5.790658030994016, "y_m": -0.8146417211768299, "d_right": 0.9600142282461991, "d_left": 0.3542693698940502, "psi_rad": -1.7003964935197713, "kappa_radpm": 0.25805800972248494, "vx_mps": 4.11296180636516, "ax_mps2": -4.735348828274915}, {"id": 448, "s_m": 44.78482189668277, "d_m": 0.0, "x_m": -5.801995403282215, "y_m": -0.9143268723074747, "d_right": 0.9598556767994203, "d_left": 0.3530677564724702, "psi_rad": -1.6643304357797621, "kappa_radpm": 0.45876783346187305, "vx_mps": 3.996211445770943, "ax_mps2": -4.114094589426118}, {"id": 449, "s_m": 44.88478801698786, "d_m": 0.0, "x_m": -5.808856975448671, "y_m": -1.0138490906556816, "d_right": 0.9744033644168566, "d_left": 0.35992108292716746, "psi_rad": -1.6140956758208471, "kappa_radpm": 0.5244850384809525, "vx_mps": 3.8919359925318022, "ax_mps2": -3.937138534535145}, {"id": 450, "s_m": 44.98475413729296, "d_m": 0.0, "x_m": -5.810495730650624, "y_m": -1.114069677534253, "d_right": 1.0027589927411136, "d_left": 0.36156365819105674, "psi_rad": -1.5595141274575304, "kappa_radpm": 0.5653462470132786, "vx_mps": 3.7894597030661443, "ax_mps2": -3.546358927795727}, {"id": 451, "s_m": 45.08472025759806, "d_m": 0.0, "x_m": -5.806459871699911, "y_m": -1.2139057633908235, "d_right": 1.0197755629970873, "d_left": 0.35752619234193506, "psi_rad": -1.5002891148787363, "kappa_radpm": 0.6231360381802381, "vx_mps": 3.6947223650390812, "ax_mps2": -3.0492107388860656}, {"id": 452, "s_m": 45.184686377903155, "d_m": 0.0, "x_m": -5.7961937538412505, "y_m": -1.3134372798528284, "d_right": 1.0520203799762304, "d_left": 0.3472544875088225, "psi_rad": -1.4346224054520933, "kappa_radpm": 0.6902056382482727, "vx_mps": 3.6112792497398787, "ax_mps2": -1.9497990206512235}, {"id": 453, "s_m": 45.284652498208246, "d_m": 0.0, "x_m": -5.779035605920328, "y_m": -1.4120443236154854, "d_right": 1.074283098304811, "d_left": 0.33007935108170317, "psi_rad": -1.3605473208515342, "kappa_radpm": 0.7982532912706866, "vx_mps": 3.5568961374579784, "ax_mps2": -0.3571915549687388}, {"id": 454, "s_m": 45.38461861851334, "d_m": 0.0, "x_m": -5.754105951033362, "y_m": -1.5087681989722603, "d_right": 1.1117853194732676, "d_left": 0.305126856607338, "psi_rad": -1.2743593255682089, "kappa_radpm": 0.9293602346609515, "vx_mps": 3.546843106870044, "ax_mps2": -0.23699874110470373}, {"id": 455, "s_m": 45.48458473881844, "d_m": 0.0, "x_m": -5.720409818856825, "y_m": -1.603014750511511, "d_right": 1.1645956829666806, "d_left": 0.28755964045357113, "psi_rad": -1.1815050960283826, "kappa_radpm": 0.8906201979327582, "vx_mps": 3.5401571060364945, "ax_mps2": -0.6652852606159807}, {"id": 456, "s_m": 45.58455085912353, "d_m": 0.0, "x_m": -5.678572934070302, "y_m": -1.6936433880702844, "d_right": 1.2244231162194874, "d_left": 0.2732188232168459, "psi_rad": -1.096342402707255, "kappa_radpm": 0.8173218261144212, "vx_mps": 3.521320826425903, "ax_mps2": -1.896771059175911}, {"id": 457, "s_m": 45.68451697942863, "d_m": 0.0, "x_m": -5.629176693275618, "y_m": -1.7808796175198172, "d_right": 1.2834007666337879, "d_left": 0.2761577166434952, "psi_rad": -1.014336537161869, "kappa_radpm": 0.8358668901977389, "vx_mps": 3.4670556203838427, "ax_mps2": -1.708811988610843}, {"id": 458, "s_m": 45.78448309973373, "d_m": 0.0, "x_m": -5.57298953936464, "y_m": -1.8632024432657295, "d_right": 1.2621949770438117, "d_left": 0.2947262989630374, "psi_rad": -0.9286398800023314, "kappa_radpm": 0.8850491120346593, "vx_mps": 3.417430038079882, "ax_mps2": -1.0925194254481696}, {"id": 459, "s_m": 45.88444922003882, "d_m": 0.0, "x_m": -5.509307695084084, "y_m": -1.9407344028501712, "d_right": 1.2077902997490795, "d_left": 0.30450890584320706, "psi_rad": -0.8364982064905533, "kappa_radpm": 0.9556198972543761, "vx_mps": 3.3853209904720503, "ax_mps2": -0.04426976767019486}, {"id": 460, "s_m": 45.984415340343915, "d_m": 0.0, "x_m": -5.439093732868252, "y_m": -2.0112423781792876, "d_right": 1.156753766231672, "d_left": 0.31487462001125444, "psi_rad": -0.7369448419069915, "kappa_radpm": 1.0478933311903644, "vx_mps": 3.3840134832309796, "ax_mps2": -0.04426976767020374}, {"id": 461, "s_m": 46.08438146064901, "d_m": 0.0, "x_m": -5.361217743462455, "y_m": -2.074982274814015, "d_right": 1.0964825884778726, "d_left": 0.34567422141750986, "psi_rad": -0.6377491193018976, "kappa_radpm": 0.8978560419432434, "vx_mps": 3.382705470603001, "ax_mps2": 1.6818704388004868}, {"id": 462, "s_m": 46.1843475809541, "d_m": 0.0, "x_m": -5.279162026700632, "y_m": -2.1306363258657672, "d_right": 1.0460171214670408, "d_left": 0.36274965438906925, "psi_rad": -0.5568878401006412, "kappa_radpm": 0.7372115596335296, "vx_mps": 3.4320484300331313, "ax_mps2": 3.2708816854611427}, {"id": 463, "s_m": 46.2843137012592, "d_m": 0.0, "x_m": -5.19133324549053, "y_m": -2.180918729234656, "d_right": 1.004228457133429, "d_left": 0.38024707895993765, "psi_rad": -0.4834005267798287, "kappa_radpm": 0.7150986310343445, "vx_mps": 3.52603334219034, "ax_mps2": 3.0611787146076557}, {"id": 464, "s_m": 46.3842798215643, "d_m": 0.0, "x_m": -5.101835571982722, "y_m": -2.2239535942770696, "d_right": 0.9746570766551121, "d_left": 0.4118445058700591, "psi_rad": -0.413401236150833, "kappa_radpm": 0.6880212295991965, "vx_mps": 3.6117778793217235, "ax_mps2": 2.9743751642929084}, {"id": 465, "s_m": 46.484245941869396, "d_m": 0.0, "x_m": -5.008549130857892, "y_m": -2.2611992904878093, "d_right": 0.9611905040565499, "d_left": 0.42622656563062233, "psi_rad": -0.3474167893314961, "kappa_radpm": 0.6236093374775475, "vx_mps": 3.693184661043924, "ax_mps2": 3.441481546783287}, {"id": 466, "s_m": 46.58421206217449, "d_m": 0.0, "x_m": -4.913560717551836, "y_m": -2.2924754130499387, "d_right": 0.9486446060849015, "d_left": 0.40922534637611513, "psi_rad": -0.29225537528508294, "kappa_radpm": 0.4159400516981166, "vx_mps": 3.785191680382527, "ax_mps2": 5.98515727913547}, {"id": 467, "s_m": 46.684178182479585, "d_m": 0.0, "x_m": -4.818515391119118, "y_m": -2.3195756583348945, "d_right": 0.946642474857992, "d_left": 0.40929334133394624, "psi_rad": -0.2697528832849414, "kappa_radpm": 0.02185849002482728, "vx_mps": 3.9400890805233164, "ax_mps2": 7.009974812915384}, {"id": 468, "s_m": 46.78414430278468, "d_m": 0.0, "x_m": -4.7216983598927635, "y_m": -2.3459863804234304, "d_right": 0.9252214446182843, "d_left": 0.401353292757368, "psi_rad": -0.2597057040545945, "kappa_radpm": 0.19630690697562111, "vx_mps": 4.114100379600172, "ax_mps2": 6.914489561129356}, {"id": 469, "s_m": 46.88411042308977, "d_m": 0.0, "x_m": -4.62585895133147, "y_m": -2.3701822473954604, "d_right": 0.9067921701595887, "d_left": 0.40184022669719904, "psi_rad": -0.23350542495257676, "kappa_radpm": 0.27830003971289496, "vx_mps": 4.27881424276149, "ax_mps2": -11.913532318638685}, {"id": 470, "s_m": 46.98407654339489, "d_m": 0.0, "x_m": -4.527677389680503, "y_m": -2.3921702987522657, "d_right": 0.9015879285029742, "d_left": 0.4238856718172862, "psi_rad": -0.20806838446255926, "kappa_radpm": 0.22282881024445642, "vx_mps": 3.9907833960277355, "ax_mps2": -8.231132539227255}]}, "trackbounds_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": -3.2211852565407755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": -3.2211852565407755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": -3.2211852565407755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -3.2211852565407755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": -3.0711852543056013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": -3.0711852543056013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": -3.0711852543056013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -6.048979924619198, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": -2.971185252815485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": -2.971185252815485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": -2.921185252070427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": -2.921185252070427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": -2.921185252070427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -6.448979930579663, "y": -2.871185251325369, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": -2.871185251325369, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": -2.821185250580311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": -2.821185250580311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -2.821185250580311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.721185249090195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.671185248345137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.6211852476000788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.5711852468550207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.5211852461099626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.4711852453649046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.4211852446198465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.3711852438747885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.3211852431297304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.2711852423846723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.2211852416396143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.1711852408945562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.121185240149498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -6.998979938775301, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -1.7211852341890337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -6.948979938030243, "y": -1.6711852334439756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.6211852326989176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.5711852319538595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.5211852312088014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.4711852304637434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.4211852297186853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -6.898979937285185, "y": -1.3711852289736273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.3211852282285692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.2711852274835111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.221185226738453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.171185225993395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.121185225248337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -6.848979936540127, "y": -1.071185224503279, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -1.0211852237582209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -0.9711852230131628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -0.9211852222681047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -0.8711852215230467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -6.798979935795069, "y": -0.8211852207779886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.7711852200329306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.7211852192878725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.6711852185428144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -6.748979935050011, "y": -0.5211852163076403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -0.4711852155625822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -0.42118521481752413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -6.698979934304953, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -0.2211852118372919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -0.17118521109223384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -0.12118521034717578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -0.07118520960211772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": -0.021185208857059656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -6.648979933559895, "y": 0.028814791887998403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -6.598979932814837, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -6.548979932069779, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -6.498979931324721, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -6.448979930579663, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -6.448979930579663, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -6.448979930579663, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -6.448979930579663, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -6.048979924619198, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 17.178815047442914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.228815048187972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.27881504893303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.328815049678088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.378815050423146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.428815051168204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.478815051913262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 17.57881505340338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 17.628815054148436, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 17.678815054893494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 17.728815055638552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 17.77881505638361, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 17.82881505712867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 17.878815057873727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 17.928815058618785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 17.978815059363843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.0288150601089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.07881506085396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.128815061599017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.178815062344075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.228815063089133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.27881506383419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.32881506457925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.378815065324307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 18.428815066069365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 18.478815066814423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 18.52881506755948, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 18.57881506830454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 18.628815069049597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 18.628815069049597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 18.678815069794656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 18.728815070539714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 18.77881507128477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 18.82881507202983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 18.878815072774888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 19.028815075010062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 18.978815074265004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 18.928815073519946, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 18.878815072774888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 18.878815072774888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 18.878815072774888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 18.878815072774888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 18.82881507202983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 18.82881507202983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 18.77881507128477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 18.77881507128477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 18.77881507128477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 18.77881507128477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 18.728815070539714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 18.728815070539714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 18.678815069794656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 18.678815069794656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 18.678815069794656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 18.628815069049597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 18.628815069049597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 18.57881506830454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 18.57881506830454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 18.52881506755948, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 18.478815066814423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 18.428815066069365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 18.428815066069365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 18.378815065324307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 18.378815065324307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 18.32881506457925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 18.27881506383419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 18.228815063089133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 18.178815062344075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 2.651020205020904, "y": 18.178815062344075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 2.7010202057659622, "y": 18.128815061599017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 2.7010202057659622, "y": 18.07881506085396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 2.7510202065110203, "y": 18.0288150601089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 2.7510202065110203, "y": 17.978815059363843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 2.8010202072560784, "y": 17.928815058618785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 2.8510202080011364, "y": 17.878815057873727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 2.9010202087461945, "y": 17.82881505712867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 2.9010202087461945, "y": 17.77881505638361, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 2.9510202094912525, "y": 17.728815055638552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 3.0010202102363106, "y": 17.678815054893494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 3.0010202102363106, "y": 17.628815054148436, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.57881505340338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.478815051913262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.428815051168204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.378815050423146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.328815049678088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 17.27881504893303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 17.228815048187972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 17.178815047442914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 3.0010202102363106, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 2.9510202094912525, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 2.9010202087461945, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 2.8510202080011364, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 2.8010202072560784, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 2.7510202065110203, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 2.7010202057659622, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 2.651020205020904, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 864, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 865, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 866, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 867, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 868, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 869, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 870, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 871, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 872, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 873, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 874, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 875, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 876, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 877, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 878, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 879, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 880, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 881, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 882, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 883, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 884, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 885, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 886, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 887, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 888, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 889, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 890, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 891, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 892, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 893, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 894, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 895, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 896, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 897, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 898, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 899, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 900, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 901, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 902, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 903, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 904, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 905, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 906, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 907, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 908, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 909, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 910, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 911, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 912, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 913, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 914, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 915, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 916, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 917, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 918, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 919, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 920, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 921, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 922, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 923, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 924, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 925, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 926, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 927, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 928, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 929, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 930, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 931, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 932, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 933, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 934, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 935, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 936, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 937, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 938, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 939, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 940, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 941, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 942, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 943, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 944, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 945, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 946, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 947, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 948, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 949, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 950, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 951, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 952, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 953, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 954, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 955, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 956, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 957, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 958, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 959, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 960, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 961, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 962, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 963, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 964, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 965, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 966, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 967, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 968, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 969, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 970, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 971, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 972, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 973, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 974, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 975, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 976, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 977, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 978, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 979, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 980, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 981, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 982, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 983, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 984, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 985, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 986, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 987, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 988, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 989, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 990, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 991, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 992, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 993, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 994, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 995, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 996, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 997, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 998, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 999, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1000, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1001, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1002, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1003, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1004, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1005, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1006, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1007, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1008, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1009, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1010, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1011, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1012, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1013, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1014, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1015, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1016, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1017, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1018, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1019, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1020, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1021, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1022, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1023, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1024, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1025, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1026, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1027, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1028, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1029, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1030, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1031, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1032, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1033, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1034, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1035, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1036, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1037, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1038, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1039, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1040, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1041, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1042, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1043, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1044, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1045, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1046, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1047, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1048, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1049, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1050, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1051, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1052, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1053, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1054, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1055, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1056, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1057, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1058, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1059, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1060, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1061, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1062, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1063, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1064, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1065, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1066, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1067, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1068, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1069, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1070, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1071, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1072, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1073, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1074, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1075, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1076, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1077, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1078, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1079, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1080, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1081, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1082, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1083, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1084, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1085, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1086, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1087, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1088, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1089, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1090, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1091, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1092, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1093, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1094, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1095, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1096, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1097, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1098, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1099, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1100, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1101, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1102, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1103, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1104, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1105, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1106, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1107, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1108, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1109, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1110, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1111, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1112, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1113, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 0.028814791887998403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1114, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 0.028814791887998403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1115, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": -0.021185208857059656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1116, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": -0.021185208857059656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1117, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": -0.07118520960211772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1118, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -0.07118520960211772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1119, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -0.12118521034717578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1120, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": -0.12118521034717578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1121, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": -0.17118521109223384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1122, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": -0.17118521109223384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1123, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": -0.2211852118372919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1124, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": -0.2211852118372919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1125, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1126, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1127, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1128, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1129, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1130, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1131, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1132, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1133, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1134, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1135, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1136, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1137, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1138, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1139, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1140, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": -0.42118521481752413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1141, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": -0.42118521481752413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1142, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": -0.4711852155625822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1143, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": -0.5211852163076403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1144, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": -0.5211852163076403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1145, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1146, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1147, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1148, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1149, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1150, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1151, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": -0.6711852185428144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1152, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": -0.6711852185428144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1153, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": -0.7211852192878725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1154, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": -0.7711852200329306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1155, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": -0.8211852207779886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1156, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": -0.8711852215230467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1157, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": -0.9211852222681047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1158, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": -0.9711852230131628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1159, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": -1.0211852237582209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1160, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": -1.071185224503279, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1161, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": -1.121185225248337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1162, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": -1.171185225993395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1163, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": -1.221185226738453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1164, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": -1.2711852274835111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1165, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": -1.3211852282285692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1166, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -1.3711852289736273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1167, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -1.4211852297186853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1168, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -1.4711852304637434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1169, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.5211852312088014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1170, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.5711852319538595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1171, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.6211852326989176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1172, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.6711852334439756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1173, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.7211852341890337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1174, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1175, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1176, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1177, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1178, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1179, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1180, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1181, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.121185240149498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1182, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.1711852408945562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1183, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.2211852416396143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1184, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.2711852423846723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1185, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": -2.3211852431297304, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1186, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.3711852438747885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1187, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.4211852446198465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1188, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.4711852453649046, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1189, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.5211852461099626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1190, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.5711852468550207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1191, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": -2.6211852476000788, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1192, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": -2.671185248345137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1193, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": -2.721185249090195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1194, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": -2.771185249835253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1195, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": -2.821185250580311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1196, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": -2.871185251325369, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1197, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": -2.921185252070427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1198, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": -2.971185252815485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1199, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": -2.971185252815485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1200, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1201, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1202, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": -3.0211852535605432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1203, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": -3.0711852543056013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1204, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1205, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": -3.1211852550506594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1206, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1207, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": -3.1711852557957174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1208, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": -3.2211852565407755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1209, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1210, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": -3.2711852572858335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1211, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1212, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1213, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1214, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1215, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1216, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1217, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1218, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1219, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1220, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1221, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1222, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1223, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1224, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1225, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1226, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1227, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1228, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1229, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1230, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1231, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1232, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1233, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1234, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1235, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1236, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1237, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1238, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1239, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1240, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1241, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1242, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1243, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1244, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1245, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1246, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": -3.3211852580308916, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1247, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1248, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1249, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1250, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1251, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1252, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1253, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1254, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1255, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1256, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1257, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": -2.07118523940444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1258, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1259, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1260, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1261, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1262, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1263, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1264, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1265, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1266, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1267, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1268, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1269, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1270, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1271, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1272, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1273, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1274, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1275, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1276, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1277, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": -1.7211852341890337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1278, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": -1.6711852334439756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1279, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": -1.6211852326989176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1280, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -1.5711852319538595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1281, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -1.5211852312088014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1282, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -1.4711852304637434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1283, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.4211852297186853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1284, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.3711852289736273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1285, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.3211852282285692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1286, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.2711852274835111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1287, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.221185226738453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1288, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.171185225993395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1289, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.121185225248337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1290, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.071185224503279, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1291, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.0211852237582209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1292, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.9711852230131628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1293, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.9211852222681047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1294, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.8711852215230467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1295, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.8211852207779886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1296, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.7711852200329306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1297, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.7211852192878725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1298, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.6711852185428144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1299, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1300, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1301, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.5211852163076403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1302, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -0.4711852155625822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1303, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -0.42118521481752413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1304, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1305, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1306, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1307, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -0.2211852118372919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1308, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -0.17118521109223384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1309, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -0.12118521034717578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1310, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": -0.07118520960211772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1311, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": -0.021185208857059656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1312, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 0.028814791887998403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1313, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1314, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1315, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1316, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1317, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1318, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1319, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1320, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1321, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1322, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1323, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1324, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1325, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1326, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1327, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1328, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1329, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1330, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1331, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1332, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1333, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1334, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1335, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1336, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1337, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1338, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1339, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1340, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1341, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1342, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1343, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1344, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1345, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1346, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1347, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1348, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1349, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1350, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1351, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1352, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1353, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1354, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1355, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1356, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1357, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1358, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1359, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1360, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1361, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1362, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1363, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1364, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1365, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1366, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1367, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1368, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1369, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1370, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1371, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1372, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1373, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1374, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1375, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1376, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1377, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1378, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1379, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1380, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1381, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1382, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1383, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1384, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1385, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1386, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1387, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1388, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1389, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1390, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1391, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1392, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1393, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1394, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1395, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1396, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1397, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1398, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1399, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1400, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1401, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1402, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1403, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1404, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1405, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1406, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1407, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1408, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1409, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1410, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1411, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1412, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1413, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1414, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1415, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1416, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1417, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1418, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1419, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1420, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1421, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1422, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1423, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1424, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1425, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1426, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1427, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1428, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1429, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1430, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1431, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1432, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1433, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1434, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1435, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1436, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1437, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1438, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1439, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1440, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1441, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1442, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1443, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1444, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1445, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1446, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1447, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1448, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1449, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1450, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1451, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1452, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1453, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1454, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1455, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1456, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1457, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1458, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1459, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1460, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1461, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1462, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1463, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1464, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1465, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1466, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1467, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1468, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1469, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1470, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1471, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1472, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1473, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1474, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1475, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1476, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1477, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1478, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1479, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1480, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1481, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1482, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1483, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1484, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1485, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1486, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1487, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1488, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1489, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1490, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1491, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1492, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1493, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1494, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1495, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1496, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1497, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1498, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1499, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1500, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1501, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1502, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1503, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1504, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1505, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1506, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1507, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1508, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1509, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1510, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1511, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1512, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1513, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1514, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1515, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1516, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1517, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1518, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1519, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1520, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1521, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1522, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1523, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1524, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1525, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1526, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1527, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1528, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1529, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1530, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1531, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1532, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1533, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1534, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1535, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1536, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1537, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1538, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1539, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1540, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1541, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1542, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1543, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1544, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1545, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1546, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1547, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1548, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1549, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1550, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1551, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1552, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1553, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1554, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1555, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1556, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1557, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1558, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1559, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1560, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1561, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1562, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1563, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1564, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1565, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1566, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1567, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1568, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1569, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1570, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1571, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1572, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1573, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1574, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1575, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1576, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1577, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1578, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1579, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1580, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1581, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1582, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1583, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1584, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1585, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1586, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1587, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1588, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1589, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1590, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1591, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1592, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1593, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1594, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1595, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1596, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1597, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1598, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1599, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1600, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1601, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1602, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1603, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1604, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1605, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1606, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1607, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1608, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1609, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1610, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1611, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1612, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1613, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1614, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1615, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1616, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1617, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1618, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1619, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1620, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1621, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1622, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1623, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1624, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1625, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1626, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1627, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1628, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1629, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1630, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1631, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1632, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1633, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1634, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1635, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1636, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1637, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1638, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1639, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1640, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1641, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1642, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1643, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1644, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1645, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1646, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1647, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1648, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1649, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1650, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1651, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1652, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1653, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1654, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1655, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1656, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1657, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1658, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1659, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1660, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1661, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1662, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1663, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1664, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1665, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1666, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1667, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1668, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1669, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1670, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1671, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1672, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1673, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1674, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1675, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1676, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1677, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1678, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1679, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1680, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1681, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1682, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1683, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1684, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1685, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1686, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1687, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1688, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1689, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1690, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1691, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1692, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1693, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1694, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1695, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1696, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1697, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1698, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1699, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1700, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1701, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1702, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1703, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1704, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1705, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1706, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1707, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1708, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1709, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1710, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1711, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1712, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1713, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1714, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1715, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1716, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1717, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1718, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1719, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1720, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1721, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1722, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1723, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1724, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1725, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1726, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1727, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1728, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1729, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1730, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1731, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1732, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1733, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1734, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1735, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1736, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1737, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1738, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1739, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1740, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1741, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1742, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1743, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1744, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1745, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1746, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1747, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1748, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1749, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1750, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1751, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1752, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1753, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1754, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1755, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1756, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1757, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1758, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1759, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1760, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1761, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1762, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1763, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1764, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1765, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1766, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1767, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1768, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1769, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1770, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1771, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1772, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1773, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1774, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1775, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1776, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1777, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1778, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1779, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1780, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1781, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1782, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1783, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1784, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1785, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1786, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1787, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1788, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1789, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1790, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1791, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1792, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1793, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1794, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 17.178815047442914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1795, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 17.228815048187972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1796, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 17.27881504893303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1797, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 17.328815049678088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1798, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 17.378815050423146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1799, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 17.428815051168204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1800, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 17.478815051913262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1801, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1802, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1803, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 17.57881505340338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1804, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 17.57881505340338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1805, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1806, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 17.52881505265832, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1807, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 17.478815051913262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1808, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 17.428815051168204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1809, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 17.378815050423146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1810, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 17.328815049678088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1811, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 17.27881504893303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1812, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 17.228815048187972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1813, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 17.178815047442914, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1814, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1815, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1816, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1817, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1818, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1819, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1820, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1821, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1822, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1823, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1824, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1825, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1826, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1827, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1828, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1829, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1830, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1831, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1832, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1833, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1834, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1835, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1836, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1837, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1838, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1839, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1840, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1841, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1842, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1843, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1844, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1845, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1846, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1847, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1848, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1849, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1850, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1851, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1852, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1853, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1854, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1855, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1856, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1857, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1858, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1859, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1860, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1861, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1862, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1863, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1864, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1865, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1866, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1867, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1868, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1869, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1870, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1871, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1872, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1873, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1874, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1875, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1876, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1877, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1878, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1879, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1880, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1881, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1882, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1883, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1884, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1885, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1886, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1887, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1888, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1889, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1890, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1891, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1892, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1893, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1894, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1895, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1896, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1897, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1898, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1899, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1900, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1901, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1902, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1903, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1904, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1905, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1906, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1907, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1908, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1909, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1910, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1911, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1912, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1913, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1914, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1915, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1916, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1917, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1918, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1919, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1920, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1921, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1922, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1923, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1924, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1925, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1926, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1927, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1928, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1929, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1930, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1931, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1932, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1933, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1934, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1935, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1936, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1937, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1938, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1939, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1940, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1941, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1942, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1943, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1944, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1945, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1946, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1947, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1948, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1949, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1950, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1951, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1952, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1953, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1954, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1955, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1956, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1957, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1958, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1959, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1960, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1961, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1962, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1963, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1964, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1965, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1966, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1967, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1968, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1969, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1970, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1971, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1972, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1973, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1974, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1975, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1976, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1977, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1978, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1979, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1980, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1981, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1982, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1983, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1984, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1985, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1986, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1987, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1988, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1989, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1990, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1991, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1992, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1993, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1994, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1995, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1996, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1997, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1998, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1999, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2000, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2001, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2002, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2003, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2004, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2005, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2006, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2007, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2008, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2009, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2010, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2011, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2012, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2013, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2014, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2015, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2016, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2017, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2018, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2019, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2020, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2021, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2022, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2023, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2024, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2025, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2026, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2027, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2028, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2029, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2030, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2031, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2032, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2033, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2034, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2035, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2036, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2037, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2038, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2039, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2040, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2041, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2042, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2043, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2044, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2045, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2046, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2047, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2048, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2049, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2050, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2051, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2052, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2053, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2054, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2055, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2056, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2057, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2058, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2059, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2060, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2061, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2062, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2063, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2064, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2065, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2066, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2067, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2068, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2069, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2070, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2071, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2072, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2073, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2074, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2075, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2076, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2077, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2078, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2079, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2080, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2081, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2082, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2083, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2084, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2085, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2086, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2087, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2088, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2089, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2090, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2091, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2092, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2093, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2094, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2095, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2096, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2097, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2098, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2099, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2100, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2101, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2102, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2103, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2104, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2105, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2106, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2107, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2108, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2109, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2110, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2111, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2112, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2113, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2114, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2115, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2116, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2117, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2118, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2119, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2120, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2121, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2122, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2123, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2124, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2125, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2126, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2127, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2128, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2129, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2130, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2131, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2132, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2133, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2134, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2135, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2136, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2137, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2138, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2139, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2140, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2141, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2142, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2143, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2144, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2145, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2146, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2147, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2148, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2149, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2150, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2151, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2152, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2153, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2154, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2155, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2156, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2157, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2158, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2159, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2160, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2161, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2162, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2163, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2164, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2165, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2166, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2167, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2168, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2169, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2170, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2171, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2172, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2173, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2174, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2175, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2176, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2177, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2178, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2179, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2180, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2181, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2182, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2183, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2184, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2185, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2186, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2187, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2188, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2189, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2190, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2191, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2192, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2193, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2194, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2195, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2196, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2197, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2198, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2199, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2200, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2201, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2202, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2203, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2204, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2205, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2206, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2207, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2208, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2209, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 0.07881479263305646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2210, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 0.028814791887998403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2211, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": -0.021185208857059656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2212, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": -0.07118520960211772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2213, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": -0.12118521034717578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2214, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -0.17118521109223384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2215, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -0.2211852118372919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2216, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -0.27118521258234995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2217, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -0.321185213327408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2218, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -0.3711852140724661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2219, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -0.42118521481752413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2220, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -0.4711852155625822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2221, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -0.5211852163076403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2222, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -0.5711852170526983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2223, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -0.6211852177977564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2224, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -0.6711852185428144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2225, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -0.7211852192878725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2226, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": -0.7711852200329306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2227, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": -0.8211852207779886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2228, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -0.8711852215230467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2229, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -0.9211852222681047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2230, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -0.9711852230131628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2231, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.0211852237582209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2232, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.071185224503279, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2233, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.121185225248337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2234, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.171185225993395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2235, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.221185226738453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2236, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.2711852274835111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2237, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.3211852282285692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2238, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.3711852289736273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2239, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.4211852297186853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2240, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.4711852304637434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2241, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.5211852312088014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2242, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": -1.5711852319538595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2243, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": -1.6211852326989176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2244, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": -1.6711852334439756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2245, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": -1.7211852341890337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2246, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2247, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2248, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": -1.7711852349340917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2249, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2250, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2251, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2252, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2253, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": -1.8211852356791498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2254, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2255, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": -1.8711852364242079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2256, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2257, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2258, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": -1.921185237169266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2259, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2260, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2261, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2262, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2263, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": -1.971185237914324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2264, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2265, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2266, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": -2.021185238659382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}} \ No newline at end of file diff --git a/stack_master/maps/JFR_racingv5/ot_sectors.yaml b/stack_master/maps/JFR_racingv5/ot_sectors.yaml new file mode 100644 index 0000000..b6e3b14 --- /dev/null +++ b/stack_master/maps/JFR_racingv5/ot_sectors.yaml @@ -0,0 +1,8 @@ +n_sectors: 1 +yeet_factor: 1.25 +spline_len: 30 +ot_sector_begin: 0.5 +Overtaking_sector0: + start: 0 + end: 491 + ot_flag: false diff --git a/stack_master/maps/JFR_racingv5/pf_map.png b/stack_master/maps/JFR_racingv5/pf_map.png new file mode 100644 index 0000000..4e1b651 Binary files /dev/null and b/stack_master/maps/JFR_racingv5/pf_map.png differ diff --git a/stack_master/maps/JFR_racingv5/pf_map.yaml b/stack_master/maps/JFR_racingv5/pf_map.yaml new file mode 100644 index 0000000..7bb6f63 --- /dev/null +++ b/stack_master/maps/JFR_racingv5/pf_map.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: pf_map.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -7.748979949951172 +- -6.321185302734375 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/maps/JFR_racingv5/speed_scaling.yaml b/stack_master/maps/JFR_racingv5/speed_scaling.yaml new file mode 100644 index 0000000..69cced7 --- /dev/null +++ b/stack_master/maps/JFR_racingv5/speed_scaling.yaml @@ -0,0 +1,8 @@ +global_limit: 0.5 +n_sectors: 1 +Sector0: + start: 0 + end: 491 + scaling: 0.5 + only_FTG: false + no_FTG: false diff --git a/stack_master/maps/JFR_racingv6/JFR_racingv5_backup.png b/stack_master/maps/JFR_racingv6/JFR_racingv5_backup.png new file mode 100644 index 0000000..4e1b651 Binary files /dev/null and b/stack_master/maps/JFR_racingv6/JFR_racingv5_backup.png differ diff --git a/stack_master/maps/JFR_racingv6/JFR_racingv6.pbstream b/stack_master/maps/JFR_racingv6/JFR_racingv6.pbstream new file mode 100644 index 0000000..645c2c8 Binary files /dev/null and b/stack_master/maps/JFR_racingv6/JFR_racingv6.pbstream differ diff --git a/stack_master/maps/JFR_racingv6/JFR_racingv6.png b/stack_master/maps/JFR_racingv6/JFR_racingv6.png new file mode 100644 index 0000000..15c10fc Binary files /dev/null and b/stack_master/maps/JFR_racingv6/JFR_racingv6.png differ diff --git a/stack_master/maps/JFR_racingv6/JFR_racingv6.yaml b/stack_master/maps/JFR_racingv6/JFR_racingv6.yaml new file mode 100644 index 0000000..d37761d --- /dev/null +++ b/stack_master/maps/JFR_racingv6/JFR_racingv6.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: JFR_racingv6.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -7.748979949951172 +- -6.321185302734375 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/maps/JFR_racingv6/global_waypoints.json b/stack_master/maps/JFR_racingv6/global_waypoints.json new file mode 100644 index 0000000..cbf5b95 --- /dev/null +++ b/stack_master/maps/JFR_racingv6/global_waypoints.json @@ -0,0 +1 @@ +{"map_info_str": {"data": "IQP estimated lap time: 6.3666s; IQP maximum speed: 9.8644m/s; SP estimated lap time: 6.3153s; SP maximum speed: 9.9069m/s; "}, "est_lap_time": {"data": 6.3153185376436465}, "centerline_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -3.998979894071599, "y": 0.9144140895213733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -3.8994493195843285, "y": 0.9076351803851264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -3.7998315283760955, "y": 0.9023280234366006, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -3.700092509393037, "y": 0.9007110723655987, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -3.6004279495034504, "y": 0.9045797813286165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -3.5013024856016877, "y": 0.9154921755418782, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -3.403603332998116, "y": 0.9353472938178993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -3.308508529872, "y": 0.9652435978714773, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -3.2179721054066452, "y": 1.006856736805388, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -3.1321712089597704, "y": 1.0576540410513975, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -3.053533826760579, "y": 1.1188352559433732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -2.9829728870411687, "y": 1.1892421602016692, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -2.9205991946875764, "y": 1.2670149554327954, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -2.865730186078526, "y": 1.3502758089507418, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -2.8196413929353734, "y": 1.4386708302891065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -2.7828327214773445, "y": 1.5313155717158264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -2.7531415403888655, "y": 1.6265223573832812, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -2.7266651302481195, "y": 1.7227045278334008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -2.7019411401834126, "y": 1.8193508587800113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -2.678601020724875, "y": 1.916342196957312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -2.6556758975607035, "y": 2.0134334382245114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -2.6338160016576855, "y": 2.110762275342252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -2.6095446490097873, "y": 2.2075122940156113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -2.583189420340557, "y": 2.303724482279826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -2.556581748576547, "y": 2.399867717963646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -2.5307852490884017, "y": 2.49622188876498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -2.5086437111861617, "y": 2.593492371359831, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -2.4869280098115563, "y": 2.6908497657986876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -2.468826801102703, "y": 2.788945187713158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -2.4526687156414355, "y": 2.8873749354049885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -2.437320340125621, "y": 2.9859319558118496, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -2.421539502483224, "y": 3.084421319995459, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -2.4061122800856785, "y": 3.182967018470381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -2.391858172460179, "y": 3.281704029426188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -2.3761337198922567, "y": 3.3802177516364234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -2.3581872552007637, "y": 3.4783340672237144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -2.33911888029555, "y": 3.5762290922334143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -2.31718551232191, "y": 3.6735122312913644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -2.291225685859993, "y": 3.7698336843981064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -2.263574577294615, "y": 3.865679999320737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -2.2335593353895162, "y": 3.960816630561877, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -2.2046451857637055, "y": 4.05629100751491, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -2.1725529959425662, "y": 4.15073141253441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -2.1392550438585247, "y": 4.244765540560127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -2.1082803656394096, "y": 4.339591668996922, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -2.0796383524852105, "y": 4.435152695530469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -2.0530535506092926, "y": 4.531288716590463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -2.0273725957009834, "y": 4.627687114617879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -2.002713638101983, "y": 4.724337988599339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -1.9762036530979017, "y": 4.820508852035056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -1.9474383576066174, "y": 4.916020892514725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -1.9186296135837733, "y": 5.01151603240659, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -1.8875001593490746, "y": 5.106295921171755, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -1.8572310187749823, "y": 5.201353154805348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -1.826997948841092, "y": 5.296415256428254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -1.7945913596156358, "y": 5.390765847057294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -1.7637036710700562, "y": 5.485614966983609, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -1.7358791076694566, "y": 5.5814087627091205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -1.7064891366715638, "y": 5.676734237284699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -1.6796703785811764, "y": 5.772820894812706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -1.6543454129620232, "y": 5.869304728209545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -1.633906216015466, "y": 5.966930975011092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -1.6167000799368285, "y": 6.06519192405183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -1.5987698425492152, "y": 6.163328214400159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -1.5811007287428849, "y": 6.261512158303033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -1.560869631278441, "y": 6.359176583991359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -1.5345305216939253, "y": 6.45535474359846, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -1.5008369277343723, "y": 6.549219836667177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -1.45371114353509, "y": 6.636984656928103, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -1.3932173176674525, "y": 6.716063019634213, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -1.3188650564877547, "y": 6.782340368073958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -1.233308715389768, "y": 6.833253396446391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -1.1401513223005113, "y": 6.8686288554508765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -1.043069077234803, "y": 6.891220455653434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -0.9440564810984838, "y": 6.902932378412613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -0.8443948595161033, "y": 6.906662960866134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -0.7446710381403612, "y": 6.9045681802104575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -0.6450927936567943, "y": 6.898603201796349, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -0.5456531921644606, "y": 6.890607845666526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -0.44621055570353657, "y": 6.882656741599803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -0.3465881799501728, "y": 6.8775260683621795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -0.24686877712120772, "y": 6.8759739282125425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -0.1471152046734734, "y": 6.874812138228968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -0.04737315084419329, "y": 6.873373140845233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": 0.05226694034360786, "y": 6.868484425370584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": 0.15189211888952717, "y": 6.863283653602502, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": 0.2515935288714115, "y": 6.859935786419253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": 0.35134251116092424, "y": 6.8603697593094735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": 0.45090251021222744, "y": 6.8663208893013605, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": 0.5497678120381553, "y": 6.879361536588486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": 0.6470566803353341, "y": 6.901155319586297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": 0.7413481110842577, "y": 6.933463049540089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": 0.8299799660822994, "y": 6.978947774505015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": 0.910757704084172, "y": 7.037294693259836, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": 0.9814740424739846, "y": 7.107517501011332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": 1.0405807977000452, "y": 7.187770306539362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": 1.0881276822361519, "y": 7.27537802437022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": 1.124570532398736, "y": 7.368149049116141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": 1.1493652974507953, "y": 7.46474986069962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": 1.167489141085467, "y": 7.562834844807919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": 1.1817165554477902, "y": 7.661575954687514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": 1.1921273199865572, "y": 7.7607801306622095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": 1.2008874396312814, "y": 7.8601500514900415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": 1.2073844167580516, "y": 7.959694784750378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": 1.214398564384885, "y": 8.05920325208268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": 1.2241286149990536, "y": 8.158483731320578, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": 1.2312237262503831, "y": 8.25798684885795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": 1.2352220350461773, "y": 8.357640837646688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": 1.2348690719653375, "y": 8.457389074490548, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": 1.2277339865570716, "y": 8.556848870548794, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": 1.2117071136896589, "y": 8.655254755357003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": 1.1853630342412196, "y": 8.751412304627667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": 1.1489175083120204, "y": 8.844224802761929, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": 1.1041137490098796, "y": 8.933314621051945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": 1.048660146097451, "y": 9.016201005043444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": 0.9842997009324224, "y": 9.09232630463281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": 0.9116787393109093, "y": 9.160613874256695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": 0.8325029273089541, "y": 9.221197527055166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": 0.7483884831528284, "y": 9.274754353650065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": 0.6603565328477194, "y": 9.321627997770747, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": 0.5688597021117184, "y": 9.361335813285365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": 0.47564152793575, "y": 9.396847759026405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": 0.38125183981089705, "y": 9.429127310464462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": 0.28675780168363446, "y": 9.461114210910736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": 0.19243679941128883, "y": 9.493598603900677, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": 0.09983355889097875, "y": 9.530672727695029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": 0.00982818099913112, "y": 9.573611207383214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -0.07588178656933556, "y": 9.624488605024917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -0.15630101846272676, "y": 9.683442552635052, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -0.22948718905293528, "y": 9.751092181133323, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -0.2940864411768514, "y": 9.82702975017009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -0.35062588701758934, "y": 9.909142107077862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -0.3996132544538727, "y": 9.995978912360618, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -0.44063069074685096, "y": 10.08687818627479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -0.4753521588037122, "y": 10.180382105149418, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -0.5048476427686907, "y": 10.27564525352947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -0.5270236347705195, "y": 10.372891674770232, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -0.543266882876146, "y": 10.471308027440646, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -0.5560376808942464, "y": 10.570247573013145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -0.5662926907709155, "y": 10.669472888259676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -0.5740348073158331, "y": 10.76893183448348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -0.5825213655349484, "y": 10.868311272240756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -0.5849361606885009, "y": 10.968034144778066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -0.5835091306607969, "y": 11.06777856541944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -0.5798650001349629, "y": 11.167458039595948, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -0.5697237071720808, "y": 11.266677712476374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -0.5580617434020072, "y": 11.365753529477415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -0.5432710564194908, "y": 11.464391947444884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -0.5243081682876245, "y": 11.562329186002867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -0.5062662703178612, "y": 11.660439793937892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -0.4859131225512746, "y": 11.758097138983224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -0.46674109279273657, "y": 11.855992476753622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -0.4490493685287789, "y": 11.954167498724878, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -0.4316302346783924, "y": 12.05239283190862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -0.4154053777644205, "y": 12.150812854175726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -0.4012742447445751, "y": 12.24954097591141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -0.3828901179715017, "y": 12.347588040559168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -0.36309378767629874, "y": 12.445364327753383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -0.34205860950315103, "y": 12.542873062245352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -0.31832752473596954, "y": 12.639754289459132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -0.2904440366469472, "y": 12.735519702141943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -0.26039199165080074, "y": 12.83064436495642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -0.2241491931032661, "y": 12.92356412347875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -0.18473704301762867, "y": 13.015208422531105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -0.14279516478933155, "y": 13.10569971503207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -0.09510142681050081, "y": 13.193299751770395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -0.044075969721986, "y": 13.279008844348033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": 0.009179834983560498, "y": 13.363357014369294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": 0.06662788564657432, "y": 13.44489873803944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": 0.12520918389142152, "y": 13.52564462411339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": 0.1836939778825261, "y": 13.606463026806829, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": 0.24414040736214473, "y": 13.685815797135897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": 0.303926867504364, "y": 13.765677329201429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": 0.36284919500794177, "y": 13.846166137418722, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": 0.4202841014172296, "y": 13.92773218106057, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": 0.4756829928560063, "y": 14.010694358550154, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": 0.5299377622356019, "y": 14.094386340501774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": 0.5808616953268939, "y": 14.180170863118645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": 0.6315114373278137, "y": 14.26611187375038, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": 0.6796117713518601, "y": 14.353508084873168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": 0.7237312929892765, "y": 14.442936108919413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": 0.7663282144333207, "y": 14.533129188654634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": 0.8083675871309833, "y": 14.623593969802434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": 0.8509037299305087, "y": 14.713829133025698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": 0.8905562110797274, "y": 14.80535309859831, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": 0.9297490849245009, "y": 14.897092883590705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": 0.9658939791287753, "y": 14.990048533668613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": 0.9973721510247946, "y": 15.08469824543575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": 1.0238442997365702, "y": 15.18087403200234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": 1.042485275944517, "y": 15.278855222446149, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": 1.0520809963705697, "y": 15.378094966613622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": 1.049813567805727, "y": 15.477680393387187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": 1.033991344139566, "y": 15.576051366165512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": 1.0041377038936132, "y": 15.671087374102804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": 0.9580689779683815, "y": 15.759386779485693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": 0.8967926754705634, "y": 15.837735024301221, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": 0.8223602161385138, "y": 15.903958463438505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": 0.7395862261629209, "y": 15.959463130648436, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": 0.6504657678976258, "y": 16.004134373665316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": 0.5573077785248324, "y": 16.03963307071272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": 0.46143387281224846, "y": 16.067088002517107, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": 0.3637854387468576, "y": 16.087414738905103, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": 0.26549298496570356, "y": 16.10438399196553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": 0.16624533618560466, "y": 16.11428547910188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": 0.06657880575505344, "y": 16.118271382703416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -0.0331745899049918, "y": 16.119126302078733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -0.13292646099527955, "y": 16.12001827004038, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -0.23268170917901193, "y": 16.12098963583586, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -0.33243574832655814, "y": 16.121203891823313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -0.4321926850535518, "y": 16.1203180234994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -0.5318869056005625, "y": 16.11715110154953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -0.6316161446768047, "y": 16.114710947749213, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -0.7311217181385182, "y": 16.1081692902311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -0.8300374582356527, "y": 16.0952992252303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -0.9281298940228776, "y": 16.077251277235614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -1.0242489553374499, "y": 16.050747135068548, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -1.1187078191847466, "y": 16.018684873582416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -1.2122097037271287, "y": 15.983951708212267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -1.3038036853875445, "y": 15.9444527707845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -1.393232521656114, "y": 15.9002615024518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -1.4804281702274453, "y": 15.851816063457274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -1.5662483827375653, "y": 15.800956254984836, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -1.6510835446308496, "y": 15.748469448675559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -1.733566848557831, "y": 15.692389932792382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -1.8137891080927546, "y": 15.633094094421956, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -1.892224645672618, "y": 15.571455335481394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -1.9690968571737926, "y": 15.507877436957541, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -2.0430084687172427, "y": 15.440881786933229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -2.1144527590114706, "y": 15.371276631826262, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -2.182614025264501, "y": 15.298457434940381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -2.246611319424576, "y": 15.221953753657248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -2.309685726833546, "y": 15.144662754179558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -2.3719428766071617, "y": 15.06672076618233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -2.429575721160957, "y": 14.985342112203265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -2.4796148002201344, "y": 14.89909664801124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -2.5191834297702727, "y": 14.807671416001208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -2.5467263252021732, "y": 14.71185273211101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -2.5647970206253348, "y": 14.61380791589421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -2.572824412383945, "y": 14.514451894225282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -2.570586236655161, "y": 14.41473670701022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -2.5631072993659183, "y": 14.315266493940392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -2.550471728620575, "y": 14.216331588812023, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -2.5369531939333014, "y": 14.117492621483919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -2.5264136281481466, "y": 14.018300594058063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -2.520922308908165, "y": 13.91870540860685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -2.5148001387416725, "y": 13.81913406516048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -2.512849863958358, "y": 13.719423966400525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -2.5149134097202896, "y": 13.619687105043653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -2.5172787653021693, "y": 13.519962498743531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -2.5259912652188277, "y": 13.420633309358683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -2.5411208609951856, "y": 13.322037577500069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -2.561047267526432, "y": 13.224304769779819, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -2.587112141869492, "y": 13.128010060537813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -2.609670084264906, "y": 13.03084293106874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -2.626648518011958, "y": 12.932540367978492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -2.6398025988003697, "y": 12.833678049580575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -2.650978550028473, "y": 12.734555637892903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -2.6631066454197887, "y": 12.635535027399023, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -2.671028285711444, "y": 12.536094366083866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -2.6781784205793797, "y": 12.436589853142625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -2.68631348107636, "y": 12.337161617020397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -2.69504613809879, "y": 12.237783427417678, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -2.70613240825855, "y": 12.13865166371405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -2.7171490352995473, "y": 12.039502172961706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -2.7292862992249702, "y": 11.940482358915522, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -2.7418674196975545, "y": 11.841518153946797, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -2.7562558245960767, "y": 11.74280262929382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -2.772190201323192, "y": 11.644322995763888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -2.7889720666065108, "y": 11.545984384211925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -2.8078517796913838, "y": 11.448029964551239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -2.828676775420317, "y": 11.350468115018575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -2.848359193674374, "y": 11.2526735504455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -2.868028706836792, "y": 11.15487691683233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -2.885961979795207, "y": 11.056745979011325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -2.9024622392250694, "y": 10.9583634394178, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -2.918284639606866, "y": 10.859867304052733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -2.936076332635154, "y": 10.761709872031899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -2.954498803848269, "y": 10.663668776746032, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -2.9730411997412696, "y": 10.56566285681804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -2.9949608743172735, "y": 10.468342662614965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -3.019975349516035, "y": 10.371781430702368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -3.0497479011853676, "y": 10.276574238928205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -3.08144197981934, "y": 10.181984816579932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -3.115797790318838, "y": 10.088356795814367, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -3.1507947991526732, "y": 9.994943573389529, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -3.1835546494585296, "y": 9.90071742327001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -3.2156541364208664, "y": 9.80626674265514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -3.2507687306975277, "y": 9.712897966419911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -3.291512457231446, "y": 9.62185230256474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -3.3369625946344845, "y": 9.533054181599281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -3.3859065703587286, "y": 9.446135554573488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -3.4358747918038857, "y": 9.359793384473035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -3.487907234447455, "y": 9.274692524449733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -3.5405916461707374, "y": 9.189984742375675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": -3.5943730095593507, "y": 9.105969644618291, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": -3.649334475149379, "y": 9.02271862706226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": -3.702876209772067, "y": 8.938547578224428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": -3.7542451802993804, "y": 8.853032480668215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": -3.804127565897353, "y": 8.766644643047607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": -3.8514925075212787, "y": 8.678855038176293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": -3.894599126595992, "y": 8.58892345946594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": -3.9313879124354973, "y": 8.496220058189992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": -3.9623319349715804, "y": 8.40140455547456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": -3.9862003167255478, "y": 8.304574986205358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": -4.003134165118263, "y": 8.206292320822115, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": -4.014563536348321, "y": 8.107196412159684, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": -4.026740052888392, "y": 8.008182734962602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": -4.040997149004488, "y": 7.90947044999583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": -4.061007567496384, "y": 7.81175197346206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": -4.080311459168404, "y": 7.713876936096577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": -4.098522484746064, "y": 7.615808382410869, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": -4.118217884454882, "y": 7.518025249164287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": -4.1422927714263285, "y": 7.421216251732138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": -4.16828589835948, "y": 7.324901804686937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": -4.19628446392199, "y": 7.229153072290118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": -4.2249609254445755, "y": 7.133609063914422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": -4.2524868544605745, "y": 7.037727338231759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": -4.28335787678263, "y": 6.942877256578104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": -4.315382609212923, "y": 6.848402353488778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": -4.345883143369292, "y": 6.753424484087029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": -4.3751660306340705, "y": 6.658058242031938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": -4.404379247930507, "y": 6.562670440437245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": -4.433540877449247, "y": 6.467266826987203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": -4.461777101070127, "y": 6.371593734084772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": -4.4867018447265705, "y": 6.275004108389138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": -4.515121419623888, "y": 6.179378837873549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": -4.5444447129060075, "y": 6.084067250102363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": -4.577959759620001, "y": 5.99010734402804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": -4.61474489770465, "y": 5.897390002453222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": -4.653117766957912, "y": 5.805309805158198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": -4.693717640504181, "y": 5.714188263795499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": -4.734953612550535, "y": 5.623356594668741, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": -4.7796024902733825, "y": 5.5341460531418045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": -4.827859423039755, "y": 5.446838120142505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": -4.876499676005404, "y": 5.359738369633237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": -4.924272996291581, "y": 5.27216180498376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": -4.9712248251276465, "y": 5.184162282229888, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": -5.015811702092651, "y": 5.094922071081168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": -5.060125040284112, "y": 5.0055456809581065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": -5.103290654332717, "y": 4.915618313047305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": -5.142075095034618, "y": 4.823722496852442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": -5.175734068088336, "y": 4.729821276320588, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": -5.207107569113888, "y": 4.63513418962837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": -5.231895685078077, "y": 4.538533471327591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": -5.251445061051705, "y": 4.440734011426911, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": -5.266917044377074, "y": 4.3421815859824635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": -5.28165277278561, "y": 4.243514805610251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": -5.291444860970604, "y": 4.144259785878842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": -5.302021946710007, "y": 4.045064691858439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": -5.310677151100198, "y": 3.9456840453929405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": -5.319488794177883, "y": 3.8463178789675823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": -5.3279295565482885, "y": 3.746919148233049, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": -5.336766359731242, "y": 3.647554093883116, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": -5.347583938480621, "y": 3.5483871967020777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": -5.355732407445152, "y": 3.4489701477785917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": -5.36321634299099, "y": 3.349490132132238, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": -5.37015450136757, "y": 3.2499710188104016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": -5.377026164667483, "y": 3.150456526610565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": -5.385901380495117, "y": 3.051091023898135, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": -5.394163365250117, "y": 2.95167304884101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": -5.4012985038158, "y": 2.852168587127104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": -5.407865614297196, "y": 2.752632065531726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": -5.414027822270867, "y": 2.653071273405713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -5.420155289086437, "y": 2.5534987748643148, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -5.426711893048203, "y": 2.4539533320047076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -5.433183099734968, "y": 2.3544023572025283, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -5.439825280826932, "y": 2.254868820537625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -5.450500812846791, "y": 2.1557062931848217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -5.465960435306841, "y": 2.057151315133616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -5.481160949942576, "y": 1.9585580481693416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -5.493033110226477, "y": 1.859516779271824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -5.499709414052472, "y": 1.7600020801463545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -5.499044483409799, "y": 1.6602742564654909, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -5.489146324846336, "y": 1.5610468503396728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -5.467943614753581, "y": 1.4636191459603316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -5.4373437153035225, "y": 1.3687499373747796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -5.392865372371785, "y": 1.279599536919753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -5.333858490645871, "y": 1.1993803748838292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -5.261463920989482, "y": 1.1310096511662027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -5.177248697175001, "y": 1.077883090053779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -5.08617041270097, "y": 1.0373759745955689, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -4.991128517366684, "y": 1.007233227384821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -4.893390864161314, "y": 0.9874969129466866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -4.79465589021313, "y": 0.9733377079755021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -4.695401757117087, "y": 0.9633765496778894, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -4.596026638671481, "y": 0.9546466841133363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -4.496519015369401, "y": 0.947568125286432, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -4.396914462424114, "y": 0.9420120304692118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -4.297222156479223, "y": 0.9386791339815628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -4.1977061990907565, "y": 0.9319571268189503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -4.098388665243814, "y": 0.9225668864240298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "centerline_waypoints": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -3.998979894071599, "y_m": 0.9144140895213733, "d_right": 0.73261626650944, "d_left": 0.6931141159570807, "psi_rad": -0.068003789036444, "kappa_radpm": 0.073893793534483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 1, "s_m": 0.1, "d_m": 0.0, "x_m": -3.8994493195843285, "y_m": 0.9076351803851264, "d_right": 0.729135654212972, "d_left": 0.7500334440483345, "psi_rad": -0.060614409682995696, "kappa_radpm": 0.16642753947031852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 2, "s_m": 0.2, "d_m": 0.0, "x_m": -3.7998315283760955, "y_m": 0.9023280234366006, "d_right": 0.7238415202761209, "d_left": 0.8020033363806692, "psi_rad": -0.03471828114238029, "kappa_radpm": 0.3595319724927204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 3, "s_m": 0.30000000000000004, "d_m": 0.0, "x_m": -3.700092509393037, "y_m": 0.9007110723655987, "d_right": 0.7222325087065958, "d_left": 0.8525734143745048, "psi_rad": 0.011291984815548384, "kappa_radpm": 0.5446853045002065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 4, "s_m": 0.4, "d_m": 0.0, "x_m": -3.6004279495034504, "y_m": 0.9045797813286165, "d_right": 0.7261089577043797, "d_left": 0.9069134415087606, "psi_rad": 0.074218779757661, "kappa_radpm": 0.7188626741501647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 5, "s_m": 0.5, "d_m": 0.0, "x_m": -3.5013024856016877, "y_m": 0.9154921755418782, "d_right": 0.737042552300078, "d_left": 0.962972381767012, "psi_rad": 0.15506451964558132, "kappa_radpm": 0.8916323373454371, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 6, "s_m": 0.6000000000000001, "d_m": 0.0, "x_m": -3.403603332998116, "y_m": 0.9353472938178993, "d_right": 0.7569613111315056, "d_left": 1.018602160564984, "psi_rad": 0.2525452472267484, "kappa_radpm": 1.06319318110077, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 7, "s_m": 0.7000000000000001, "d_m": 0.0, "x_m": -3.308508529872, "y_m": 0.9652435978714773, "d_right": 0.787014498859348, "d_left": 1.0641837226403301, "psi_rad": 0.3677031558657353, "kappa_radpm": 1.1508030080686316, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 8, "s_m": 0.8, "d_m": 0.0, "x_m": -3.2179721054066452, "y_m": 1.006856736805388, "d_right": 0.8289977530170347, "d_left": 1.105906020851627, "psi_rad": 0.48270584884047474, "kappa_radpm": 1.1507029335627328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 9, "s_m": 0.9, "d_m": 0.0, "x_m": -3.1321712089597704, "y_m": 1.0576540410513975, "d_right": 0.8800424783597405, "d_left": 1.1457083598102766, "psi_rad": 0.5978437425782819, "kappa_radpm": 1.2002846388211224, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 10, "s_m": 1.0, "d_m": 0.0, "x_m": -3.053533826760579, "y_m": 1.1188352559433732, "d_right": 0.9403439872542428, "d_left": 1.1812316951120585, "psi_rad": 0.7227627766046992, "kappa_radpm": 1.2086609712695366, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 11, "s_m": 1.1, "d_m": 0.0, "x_m": -2.9829728870411687, "y_m": 1.1892421602016692, "d_right": 1.0104385347316418, "d_left": 1.2126769316589068, "psi_rad": 0.8395759368321892, "kappa_radpm": 1.0936016763444538, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 12, "s_m": 1.2000000000000002, "d_m": 0.0, "x_m": -2.9205991946875764, "y_m": 1.2670149554327954, "d_right": 1.0890240656561914, "d_left": 1.2220143874647234, "psi_rad": 0.94148311187359, "kappa_radpm": 0.9978331128887769, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 13, "s_m": 1.3, "d_m": 0.0, "x_m": -2.865730186078526, "y_m": 1.3502758089507418, "d_right": 1.1715278680334404, "d_left": 1.2268106744654315, "psi_rad": 1.0391425594099446, "kappa_radpm": 0.9995601790145636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 14, "s_m": 1.4000000000000001, "d_m": 0.0, "x_m": -2.8196413929353734, "y_m": 1.4386708302891065, "d_right": 1.1513102773050132, "d_left": 1.2189169362814267, "psi_rad": 1.1413951476765027, "kappa_radpm": 0.9570898937726369, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 15, "s_m": 1.5, "d_m": 0.0, "x_m": -2.7828327214773445, "y_m": 1.5313155717158264, "d_right": 1.1409853179561484, "d_left": 1.204369655718337, "psi_rad": 1.230560538164472, "kappa_radpm": 0.7197134047419929, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 16, "s_m": 1.6, "d_m": 0.0, "x_m": -2.7531415403888655, "y_m": 1.6265223573832812, "d_right": 1.1363065070200975, "d_left": 1.1904161905261474, "psi_rad": 1.2853378286249013, "kappa_radpm": 0.4035072435909848, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 17, "s_m": 1.7000000000000002, "d_m": 0.0, "x_m": -2.7266651302481195, "y_m": 1.7227045278334008, "d_right": 1.1297511396031141, "d_left": 1.1813637032418138, "psi_rad": 1.311261986882669, "kappa_radpm": 0.2107945369109554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 18, "s_m": 1.8, "d_m": 0.0, "x_m": -2.7019411401834126, "y_m": 1.8193508587800113, "d_right": 1.1218606468928964, "d_left": 1.1737439644136667, "psi_rad": 1.3274967360070924, "kappa_radpm": 0.12761242209893608, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 19, "s_m": 1.9000000000000001, "d_m": 0.0, "x_m": -2.678601020724875, "y_m": 1.916342196957312, "d_right": 1.1194832259470977, "d_left": 1.1548175194499997, "psi_rad": 1.3367844713024561, "kappa_radpm": 0.08448541938461673, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 20, "s_m": 2.0, "d_m": 0.0, "x_m": -2.6556758975607035, "y_m": 2.0134334382245114, "d_right": 1.124790284061711, "d_left": 1.1438799972247156, "psi_rad": 1.3443938198840157, "kappa_radpm": 0.0032453012939526182, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 21, "s_m": 2.1, "d_m": 0.0, "x_m": -2.6338160016576855, "y_m": 2.110762275342252, "d_right": 1.1250928929921042, "d_left": 1.1404969723925442, "psi_rad": 1.3374335315612467, "kappa_radpm": -0.15089886812132858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 22, "s_m": 2.2, "d_m": 0.0, "x_m": -2.6095446490097873, "y_m": 2.2075122940156113, "d_right": 1.1260513448954457, "d_left": 1.148285996325782, "psi_rad": 1.31421404625975, "kappa_radpm": -0.1765915703293397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 23, "s_m": 2.3000000000000003, "d_m": 0.0, "x_m": -2.583189420340557, "y_m": 2.303724482279826, "d_right": 1.1144207829367045, "d_left": 1.1558173552388415, "psi_rad": 1.3021152174953787, "kappa_radpm": -0.046048884898302056, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 24, "s_m": 2.4000000000000004, "d_m": 0.0, "x_m": -2.556581748576547, "y_m": 2.399867717963646, "d_right": 1.1113940972784433, "d_left": 1.1438719134056887, "psi_rad": 1.3050042692800896, "kappa_radpm": 0.1298960900147883, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 25, "s_m": 2.5, "d_m": 0.0, "x_m": -2.5307852490884017, "y_m": 2.49622188876498, "d_right": 1.1050106868951608, "d_left": 1.1310502457625518, "psi_rad": 1.3280944354983364, "kappa_radpm": 0.22077515869427633, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 26, "s_m": 2.6, "d_m": 0.0, "x_m": -2.5086437111861617, "y_m": 2.593492371359831, "d_right": 1.1076635829330082, "d_left": 1.1146969980865382, "psi_rad": 1.3491593010189449, "kappa_radpm": 0.20867802188835438, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 27, "s_m": 2.7, "d_m": 0.0, "x_m": -2.4869280098115563, "y_m": 2.6908497657986876, "d_right": 1.1142465737452423, "d_left": 1.1066918940776471, "psi_rad": 1.3698300398760073, "kappa_radpm": 0.2452307975672674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 28, "s_m": 2.8000000000000003, "d_m": 0.0, "x_m": -2.468826801102703, "y_m": 2.788945187713158, "d_right": 1.1221958416304587, "d_left": 1.1039616222528388, "psi_rad": 1.3982054605323984, "kappa_radpm": 0.21183780551592646, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 29, "s_m": 2.9000000000000004, "d_m": 0.0, "x_m": -2.4526687156414355, "y_m": 2.8873749354049885, "d_right": 1.1334286369671385, "d_left": 1.1058260457425526, "psi_rad": 1.4121976009791926, "kappa_radpm": 0.0795333304350665, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 30, "s_m": 3.0, "d_m": 0.0, "x_m": -2.437320340125621, "y_m": 2.9859319558118496, "d_right": 1.1409603472585694, "d_left": 1.0896315549497113, "psi_rad": 1.4141121266194117, "kappa_radpm": 0.0075763567505360285, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 31, "s_m": 3.1, "d_m": 0.0, "x_m": -2.421539502483224, "y_m": 3.084421319995459, "d_right": 1.1362364784111647, "d_left": 1.0528352791400901, "psi_rad": 1.4137128723292998, "kappa_radpm": 0.03676729121327327, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 32, "s_m": 3.2, "d_m": 0.0, "x_m": -2.4061122800856785, "y_m": 3.182967018470381, "d_right": 1.1406087457368326, "d_left": 1.0241160625778813, "psi_rad": 1.4214655848620663, "kappa_radpm": 0.031278450256221335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 33, "s_m": 3.3000000000000003, "d_m": 0.0, "x_m": -2.391858172460179, "y_m": 3.281704029426188, "d_right": 1.153327842695185, "d_left": 1.0033451948550993, "psi_rad": 1.419968562380544, "kappa_radpm": -0.10132143444842479, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 34, "s_m": 3.4000000000000004, "d_m": 0.0, "x_m": -2.3761337198922567, "y_m": 3.3802177516364234, "d_right": 1.1502100883887636, "d_left": 0.9937016005833011, "psi_rad": 1.4012012979723814, "kappa_radpm": -0.17907323603914227, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 35, "s_m": 3.5, "d_m": 0.0, "x_m": -2.3581872552007637, "y_m": 3.4783340672237144, "d_right": 1.1534773185627072, "d_left": 0.9962778608918935, "psi_rad": 1.3841539151727156, "kappa_radpm": -0.18733737828871555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 36, "s_m": 3.6, "d_m": 0.0, "x_m": -2.33911888029555, "y_m": 3.5762290922334143, "d_right": 1.140175812633238, "d_left": 1.0098819602441562, "psi_rad": 1.3637338223146382, "kappa_radpm": -0.2793269968098677, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 37, "s_m": 3.7, "d_m": 0.0, "x_m": -2.31718551232191, "y_m": 3.6735122312913644, "d_right": 1.1232603216018686, "d_left": 1.031834708746844, "psi_rad": 1.328288515810742, "kappa_radpm": -0.3249998155617029, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 38, "s_m": 3.8000000000000003, "d_m": 0.0, "x_m": -2.291225685859993, "y_m": 3.7698336843981064, "d_right": 1.1109067866761702, "d_left": 1.0578304738241873, "psi_rad": 1.2987338592022977, "kappa_radpm": -0.2536622677249323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 39, "s_m": 3.9000000000000004, "d_m": 0.0, "x_m": -2.263574577294615, "y_m": 3.865679999320737, "d_right": 1.1056806000470887, "d_left": 1.0855346598216908, "psi_rad": 1.2775560622657556, "kappa_radpm": -0.13888554373903128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 40, "s_m": 4.0, "d_m": 0.0, "x_m": -2.2335593353895162, "y_m": 3.960816630561877, "d_right": 1.1069736938105637, "d_left": 1.1156281598891546, "psi_rad": 1.2709567504544914, "kappa_radpm": -0.08789047885691237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 41, "s_m": 4.1000000000000005, "d_m": 0.0, "x_m": -2.2046451857637055, "y_m": 4.05629100751491, "d_right": 1.1060931223213435, "d_left": 1.144628856771757, "psi_rad": 1.259977966494373, "kappa_radpm": -0.17055158699473494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 42, "s_m": 4.2, "d_m": 0.0, "x_m": -2.1725529959425662, "y_m": 4.15073141253441, "d_right": 1.0738694214151592, "d_left": 1.1768460982534503, "psi_rad": 1.2368464330555444, "kappa_radpm": -0.08602786594963052, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 43, "s_m": 4.3, "d_m": 0.0, "x_m": -2.1392550438585247, "y_m": 4.244765540560127, "d_right": 1.0404538675333965, "d_left": 1.2102989960381823, "psi_rad": 1.242772393304447, "kappa_radpm": 0.15243767705941935, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 44, "s_m": 4.4, "d_m": 0.0, "x_m": -2.1082803656394096, "y_m": 4.339591668996922, "d_right": 1.0093994341701897, "d_left": 1.1988061824803782, "psi_rad": 1.2673339684674283, "kappa_radpm": 0.2376266316985276, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 45, "s_m": 4.5, "d_m": 0.0, "x_m": -2.0796383524852105, "y_m": 4.435152695530469, "d_right": 0.9807066288858951, "d_left": 1.188607984998909, "psi_rad": 1.2902977196441525, "kappa_radpm": 0.19194234425745083, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 46, "s_m": 4.6000000000000005, "d_m": 0.0, "x_m": -2.0530535506092926, "y_m": 4.531288716590463, "d_right": 0.9599277132635538, "d_left": 1.176059523477242, "psi_rad": 1.3057224373189185, "kappa_radpm": 0.12708469608864625, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 47, "s_m": 4.7, "d_m": 0.0, "x_m": -2.0273725957009834, "y_m": 4.627687114617879, "d_right": 0.9501674618831166, "d_left": 1.1463141949902993, "psi_rad": 1.3157146588618818, "kappa_radpm": 0.02841626579225487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 48, "s_m": 4.800000000000001, "d_m": 0.0, "x_m": -2.002713638101983, "y_m": 4.724337988599339, "d_right": 0.95188054457254, "d_left": 1.119964287767791, "psi_rad": 1.3114056904773694, "kappa_radpm": -0.12835006952655492, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 49, "s_m": 4.9, "d_m": 0.0, "x_m": -1.9762036530979017, "y_m": 4.820508852035056, "d_right": 0.9620828359728125, "d_left": 1.101735020808986, "psi_rad": 1.2900446449565708, "kappa_radpm": -0.1668577266960447, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 50, "s_m": 5.0, "d_m": 0.0, "x_m": -1.9474383576066174, "y_m": 4.916020892514725, "d_right": 0.9800787789115054, "d_left": 1.0885929193194253, "psi_rad": 1.2780341451381605, "kappa_radpm": -0.12208310783909271, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 51, "s_m": 5.1000000000000005, "d_m": 0.0, "x_m": -1.9186296135837733, "y_m": 5.01151603240659, "d_right": 0.980168549290145, "d_left": 1.0809665840183937, "psi_rad": 1.2656280233887522, "kappa_radpm": -0.10023510700001292, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 52, "s_m": 5.2, "d_m": 0.0, "x_m": -1.8875001593490746, "y_m": 5.106295921171755, "d_right": 0.9694958852338391, "d_left": 1.0689592917028854, "psi_rad": 1.257987123738158, "kappa_radpm": -0.01465390986197801, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 53, "s_m": 5.300000000000001, "d_m": 0.0, "x_m": -1.8572310187749823, "y_m": 5.201353154805348, "d_right": 0.959129128406117, "d_left": 1.0592545005196856, "psi_rad": 1.2626972414163566, "kappa_radpm": -0.03286839327601099, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 54, "s_m": 5.4, "d_m": 0.0, "x_m": -1.826997948841092, "y_m": 5.296415256428254, "d_right": 0.9291546614084917, "d_left": 1.0552202921050347, "psi_rad": 1.2514134450829557, "kappa_radpm": -0.07367127461144207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 55, "s_m": 5.5, "d_m": 0.0, "x_m": -1.7945913596156358, "y_m": 5.390765847057294, "d_right": 0.8969187495712457, "d_left": 1.0433015053536423, "psi_rad": 1.2479629864940682, "kappa_radpm": 0.10315259205817551, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 56, "s_m": 5.6000000000000005, "d_m": 0.0, "x_m": -1.7637036710700562, "y_m": 5.485614966983609, "d_right": 0.8658062397716573, "d_left": 1.0274362335256875, "psi_rad": 1.2720439634945908, "kappa_radpm": 0.15979334378428134, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 57, "s_m": 5.7, "d_m": 0.0, "x_m": -1.7358791076694566, "y_m": 5.5814087627091205, "d_right": 0.837812014322964, "d_left": 1.0140004264458524, "psi_rad": 1.2799216552509245, "kappa_radpm": 0.06564356771954549, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 58, "s_m": 5.800000000000001, "d_m": 0.0, "x_m": -1.7064891366715638, "y_m": 5.676734237284699, "d_right": 0.8082436534271176, "d_left": 0.9886324520694686, "psi_rad": 1.2851726770385, "kappa_radpm": 0.13219232130563863, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 59, "s_m": 5.9, "d_m": 0.0, "x_m": -1.6796703785811764, "y_m": 5.772820894812706, "d_right": 0.7812883013126233, "d_left": 0.9702162500674889, "psi_rad": 1.3063601195120522, "kappa_radpm": 0.2704391379443194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 60, "s_m": 6.0, "d_m": 0.0, "x_m": -1.6543454129620232, "y_m": 5.869304728209545, "d_right": 0.7654868961115279, "d_left": 0.9383780677025908, "psi_rad": 1.3392605046273638, "kappa_radpm": 0.37286190698100574, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 61, "s_m": 6.1000000000000005, "d_m": 0.0, "x_m": -1.633906216015466, "y_m": 5.966930975011092, "d_right": 0.7554500204592122, "d_left": 0.9048947228776765, "psi_rad": 1.3809325009082534, "kappa_radpm": 0.2725204488613431, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 62, "s_m": 6.2, "d_m": 0.0, "x_m": -1.6167000799368285, "y_m": 6.06519192405183, "d_right": 0.76178472841436, "d_left": 0.8782510728909629, "psi_rad": 1.3937645943996324, "kappa_radpm": 0.05239976177212169, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 63, "s_m": 6.300000000000001, "d_m": 0.0, "x_m": -1.5987698425492152, "y_m": 6.163328214400159, "d_right": 0.7802057310330724, "d_left": 0.8510446599955512, "psi_rad": 1.3914124532626777, "kappa_radpm": -0.07061783756462159, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 64, "s_m": 6.4, "d_m": 0.0, "x_m": -1.5811007287428849, "y_m": 6.261512158303033, "d_right": 0.8072204398259403, "d_left": 0.8257331326967748, "psi_rad": 1.379641026886708, "kappa_radpm": -0.2819758293152552, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 65, "s_m": 6.5, "d_m": 0.0, "x_m": -1.560869631278441, "y_m": 6.359176583991359, "d_right": 0.8356686988745008, "d_left": 0.8145817339336704, "psi_rad": 1.3350172873996267, "kappa_radpm": -0.5740734727429053, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 66, "s_m": 6.6000000000000005, "d_m": 0.0, "x_m": -1.5345305216939253, "y_m": 6.45535474359846, "d_right": 0.8688922161168641, "d_left": 0.8036910483802945, "psi_rad": 1.264826332338127, "kappa_radpm": -0.9144092223977263, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 67, "s_m": 6.7, "d_m": 0.0, "x_m": -1.5008369277343723, "y_m": 6.549219836667177, "d_right": 0.904953974920452, "d_left": 0.7968127705709412, "psi_rad": 1.1521354429200814, "kappa_radpm": -1.3345331044366775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 68, "s_m": 6.800000000000001, "d_m": 0.0, "x_m": -1.45371114353509, "y_m": 6.636984656928103, "d_right": 0.9285665720952921, "d_left": 0.8112164783491227, "psi_rad": 0.9979197114507915, "kappa_radpm": -1.6462375659677702, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 69, "s_m": 6.9, "d_m": 0.0, "x_m": -1.3932173176674525, "y_m": 6.716063019634213, "d_right": 0.9448250059562497, "d_left": 0.8370466241658653, "psi_rad": 0.8228879297265274, "kappa_radpm": -1.8273986587251934, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 70, "s_m": 7.0, "d_m": 0.0, "x_m": -1.3188650564877547, "y_m": 6.782340368073958, "d_right": 0.9526847613742897, "d_left": 0.8824484177746417, "psi_rad": 0.6324399797057528, "kappa_radpm": -1.8653490854838088, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 71, "s_m": 7.1000000000000005, "d_m": 0.0, "x_m": -1.233308715389768, "y_m": 6.833253396446391, "d_right": 0.9519156768697464, "d_left": 0.9487815145260555, "psi_rad": 0.44981811262976557, "kappa_radpm": -1.6833592323447526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 72, "s_m": 7.2, "d_m": 0.0, "x_m": -1.1401513223005113, "y_m": 6.8686288554508765, "d_right": 0.9442522671477598, "d_left": 0.9731626363399465, "psi_rad": 0.2957681332368023, "kappa_radpm": -1.3831856940418885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 73, "s_m": 7.300000000000001, "d_m": 0.0, "x_m": -1.043069077234803, "y_m": 6.891220455653434, "d_right": 0.9138494882936031, "d_left": 0.9148492433184771, "psi_rad": 0.17318097382138786, "kappa_radpm": -1.090981626016938, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 74, "s_m": 7.4, "d_m": 0.0, "x_m": -0.9440564810984838, "y_m": 6.902932378412613, "d_right": 0.8735824201424981, "d_left": 0.8660614724303282, "psi_rad": 0.07757180803341468, "kappa_radpm": -0.8248846954786326, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 75, "s_m": 7.5, "d_m": 0.0, "x_m": -0.8443948595161033, "y_m": 6.906662960866134, "d_right": 0.8355693506737802, "d_left": 0.8160993237240083, "psi_rad": 0.008204034725661336, "kappa_radpm": -0.5899485100629476, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 76, "s_m": 7.6000000000000005, "d_m": 0.0, "x_m": -0.7446710381403612, "y_m": 6.9045681802104575, "d_right": 0.8024968296090067, "d_left": 0.7766419007338297, "psi_rad": -0.040417893979174835, "kappa_radpm": -0.3911773328633239, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 77, "s_m": 7.7, "d_m": 0.0, "x_m": -0.6450927936567943, "y_m": 6.898603201796349, "d_right": 0.7770341039223099, "d_left": 0.752273499241974, "psi_rad": -0.07003143184700344, "kappa_radpm": -0.1979567797718773, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 78, "s_m": 7.800000000000001, "d_m": 0.0, "x_m": -0.5456531921644606, "y_m": 6.890607845666526, "d_right": 0.761820081834702, "d_left": 0.7426823810555121, "psi_rad": -0.0800092499335503, "kappa_radpm": 0.022048414202799904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 79, "s_m": 7.9, "d_m": 0.0, "x_m": -0.44621055570353657, "y_m": 6.882656741599803, "d_right": 0.7538740042379225, "d_left": 0.7463760514286019, "psi_rad": -0.06562174900644346, "kappa_radpm": 0.23248700670246203, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 80, "s_m": 8.0, "d_m": 0.0, "x_m": -0.3465881799501728, "y_m": 6.8775260683621795, "d_right": 0.7487469269610871, "d_left": 0.7514986054482291, "psi_rad": -0.03351184859305789, "kappa_radpm": 0.26008542784421107, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 81, "s_m": 8.1, "d_m": 0.0, "x_m": -0.24686877712120772, "y_m": 6.8759739282125425, "d_right": 0.7471974218399942, "d_left": 0.7530460562158895, "psi_rad": -0.01360466343760125, "kappa_radpm": 0.10237886560873877, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 82, "s_m": 8.200000000000001, "d_m": 0.0, "x_m": -0.1471152046734734, "y_m": 6.874812138228968, "d_right": 0.7460379870972389, "d_left": 0.7542041122014544, "psi_rad": -0.013036075471310138, "kappa_radpm": -0.0906064761371772, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 83, "s_m": 8.3, "d_m": 0.0, "x_m": -0.04737315084419329, "y_m": 6.873373140845233, "d_right": 0.7446015591714178, "d_left": 0.7644740969397521, "psi_rad": -0.03172595866503669, "kappa_radpm": -0.1877708318918947, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 84, "s_m": 8.4, "d_m": 0.0, "x_m": 0.05226694034360786, "y_m": 6.868484425370584, "d_right": 0.7397168575282137, "d_left": 0.7906378886274692, "psi_rad": -0.05059024184968908, "kappa_radpm": -0.055676875166827955, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 85, "s_m": 8.5, "d_m": 0.0, "x_m": 0.15189211888952717, "y_m": 6.863283653602502, "d_right": 0.7345205056573474, "d_left": 0.821673618971447, "psi_rad": -0.04286133369840228, "kappa_radpm": 0.17990830941808644, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 86, "s_m": 8.6, "d_m": 0.0, "x_m": 0.2515935288714115, "y_m": 6.859935786419253, "d_right": 0.7311762061167882, "d_left": 0.8403030546250889, "psi_rad": -0.014608579966071789, "kappa_radpm": 0.37443291570689374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 87, "s_m": 8.700000000000001, "d_m": 0.0, "x_m": 0.35134251116092424, "y_m": 6.8603697593094735, "d_right": 0.7316129772806724, "d_left": 0.8622556339667495, "psi_rad": 0.03202524944297647, "kappa_radpm": 0.5501519202209615, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 88, "s_m": 8.8, "d_m": 0.0, "x_m": 0.45090251021222744, "y_m": 6.8663208893013605, "d_right": 0.7375689617665802, "d_left": 0.8896803891753224, "psi_rad": 0.09542180407812051, "kappa_radpm": 0.7186471767216784, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 89, "s_m": 8.9, "d_m": 0.0, "x_m": 0.5497678120381553, "y_m": 6.879361536588486, "d_right": 0.750623602641884, "d_left": 0.9205116303120139, "psi_rad": 0.17575468478731215, "kappa_radpm": 0.8990366887383572, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 90, "s_m": 9.0, "d_m": 0.0, "x_m": 0.6470566803353341, "y_m": 6.901155319586297, "d_right": 0.7724572848585549, "d_left": 0.9526227097273198, "psi_rad": 0.27522914182579195, "kappa_radpm": 1.1317386543202146, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 91, "s_m": 9.1, "d_m": 0.0, "x_m": 0.7413481110842577, "y_m": 6.933463049540089, "d_right": 0.8048753053764354, "d_left": 0.9837400163091884, "psi_rad": 0.40210241565135507, "kappa_radpm": 1.3731192964496475, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 92, "s_m": 9.200000000000001, "d_m": 0.0, "x_m": 0.8299799660822994, "y_m": 6.978947774505015, "d_right": 0.8529699837869047, "d_left": 1.0103584486172505, "psi_rad": 0.5498530011157214, "kappa_radpm": 1.5081189980183485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 93, "s_m": 9.3, "d_m": 0.0, "x_m": 0.910757704084172, "y_m": 7.037294693259836, "d_right": 0.9166817246063803, "d_left": 1.0316047673067235, "psi_rad": 0.7037262152550248, "kappa_radpm": 1.5454632931662693, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 94, "s_m": 9.4, "d_m": 0.0, "x_m": 0.9814740424739846, "y_m": 7.107517501011332, "d_right": 0.9252488439491612, "d_left": 1.0286140079322355, "psi_rad": 0.8589456597489753, "kappa_radpm": 1.5052401366146329, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 95, "s_m": 9.5, "d_m": 0.0, "x_m": 1.0405807977000452, "y_m": 7.187770306539362, "d_right": 0.8796474219427963, "d_left": 1.0121387653437854, "psi_rad": 1.0047742425779513, "kappa_radpm": 1.380376051120732, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 96, "s_m": 9.600000000000001, "d_m": 0.0, "x_m": 1.0881276822361519, "y_m": 7.27537802437022, "d_right": 0.8566948675891682, "d_left": 0.991672970728993, "psi_rad": 1.1350208699731217, "kappa_radpm": 1.2663152250810061, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 97, "s_m": 9.700000000000001, "d_m": 0.0, "x_m": 1.124570532398736, "y_m": 7.368149049116141, "d_right": 0.8307056797200345, "d_left": 0.968799699309507, "psi_rad": 1.2580372875941526, "kappa_radpm": 1.0939767724018767, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 98, "s_m": 9.8, "d_m": 0.0, "x_m": 1.1493652974507953, "y_m": 7.46474986069962, "d_right": 0.8217423705268038, "d_left": 0.9389591410165483, "psi_rad": 1.353816224453497, "kappa_radpm": 0.7492548252117426, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 99, "s_m": 9.9, "d_m": 0.0, "x_m": 1.167489141085467, "y_m": 7.562834844807919, "d_right": 0.8316106900368403, "d_left": 0.9019109126260751, "psi_rad": 1.407888252636501, "kappa_radpm": 0.46573670153380875, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 100, "s_m": 10.0, "d_m": 0.0, "x_m": 1.1817165554477902, "y_m": 7.661575954687514, "d_right": 0.8251664542476155, "d_left": 0.8667928285116397, "psi_rad": 1.4469635647602588, "kappa_radpm": 0.33331813070910377, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 101, "s_m": 10.100000000000001, "d_m": 0.0, "x_m": 1.1921273199865572, "y_m": 7.7607801306622095, "d_right": 0.8326295920242789, "d_left": 0.8311736451247804, "psi_rad": 1.4745518787783218, "kappa_radpm": 0.23640462981309618, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 102, "s_m": 10.200000000000001, "d_m": 0.0, "x_m": 1.2008874396312814, "y_m": 7.8601500514900415, "d_right": 0.8533939272462033, "d_left": 0.8014920794746841, "psi_rad": 1.494244490722878, "kappa_radpm": 0.1423572523004646, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 103, "s_m": 10.3, "d_m": 0.0, "x_m": 1.2073844167580516, "y_m": 7.959694784750378, "d_right": 0.8711137348760403, "d_left": 0.7812235067160944, "psi_rad": 1.5030233292384148, "kappa_radpm": -0.037404187999176, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 104, "s_m": 10.4, "d_m": 0.0, "x_m": 1.214398564384885, "y_m": 8.05920325208268, "d_right": 0.8874082525611973, "d_left": 0.7739093338070957, "psi_rad": 1.4867636531230428, "kappa_radpm": -0.08333169512312333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 105, "s_m": 10.5, "d_m": 0.0, "x_m": 1.2241286149990536, "y_m": 8.158483731320578, "d_right": 0.8874730618043066, "d_left": 0.7821010431123868, "psi_rad": 1.48635699021379, "kappa_radpm": 0.14194160688094204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 106, "s_m": 10.600000000000001, "d_m": 0.0, "x_m": 1.2312237262503831, "y_m": 8.25798684885795, "d_right": 0.9012812635398405, "d_left": 0.8001443370502125, "psi_rad": 1.5151519744992312, "kappa_radpm": 0.3308000176223158, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 107, "s_m": 10.700000000000001, "d_m": 0.0, "x_m": 1.2352220350461773, "y_m": 8.357640837646688, "d_right": 0.9175440192159927, "d_left": 0.8254507731842505, "psi_rad": 1.5525169937382532, "kappa_radpm": 0.466078763195632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 108, "s_m": 10.8, "d_m": 0.0, "x_m": 1.2348690719653375, "y_m": 8.457389074490548, "d_right": 0.929392220951809, "d_left": 0.8491136648660319, "psi_rad": 1.6083677271383576, "kappa_radpm": 0.674040025453857, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 109, "s_m": 10.9, "d_m": 0.0, "x_m": 1.2277339865570716, "y_m": 8.556848870548794, "d_right": 0.9529290547170363, "d_left": 0.8771349467962812, "psi_rad": 1.6873249988290246, "kappa_radpm": 0.8842757322287842, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 110, "s_m": 11.0, "d_m": 0.0, "x_m": 1.2117071136896589, "y_m": 8.655254755357003, "d_right": 0.9899792036305974, "d_left": 0.9000440462476329, "psi_rad": 1.7852228735841145, "kappa_radpm": 1.021335461278129, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 111, "s_m": 11.100000000000001, "d_m": 0.0, "x_m": 1.1853630342412196, "y_m": 8.751412304627667, "d_right": 1.0442503662282945, "d_left": 0.9201310068621424, "psi_rad": 1.8915920910846504, "kappa_radpm": 1.02825007268173, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 112, "s_m": 11.200000000000001, "d_m": 0.0, "x_m": 1.1489175083120204, "y_m": 8.844224802761929, "d_right": 1.0518406047371989, "d_left": 0.9401643940774546, "psi_rad": 1.9908728881204605, "kappa_radpm": 1.0350463494895423, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 113, "s_m": 11.3, "d_m": 0.0, "x_m": 1.1041137490098796, "y_m": 8.933314621051945, "d_right": 1.021666785674487, "d_left": 0.9613720624702569, "psi_rad": 2.098601360982559, "kappa_radpm": 1.1282787528866856, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 114, "s_m": 11.4, "d_m": 0.0, "x_m": 1.048660146097451, "y_m": 9.016201005043444, "d_right": 1.0128228522395357, "d_left": 0.9804315338668902, "psi_rad": 2.2165286386977976, "kappa_radpm": 1.1559491824587775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 115, "s_m": 11.5, "d_m": 0.0, "x_m": 0.9842997009324224, "y_m": 9.09232630463281, "d_right": 1.0248642746497618, "d_left": 0.9887156448472165, "psi_rad": 2.3297911974743144, "kappa_radpm": 1.105835073971917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 116, "s_m": 11.600000000000001, "d_m": 0.0, "x_m": 0.9116787393109093, "y_m": 9.160613874256695, "d_right": 1.043747328533464, "d_left": 0.9894816060938938, "psi_rad": 2.437695653492181, "kappa_radpm": 1.008722596901448, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 117, "s_m": 11.700000000000001, "d_m": 0.0, "x_m": 0.8325029273089541, "y_m": 9.221197527055166, "d_right": 1.0684551293526277, "d_left": 0.9860133740640745, "psi_rad": 2.531535716854604, "kappa_radpm": 0.8788583360735158, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 118, "s_m": 11.8, "d_m": 0.0, "x_m": 0.7483884831528284, "y_m": 9.274754353650065, "d_right": 1.1037849758567226, "d_left": 0.9840333637907294, "psi_rad": 2.613467320706884, "kappa_radpm": 0.8034657527671674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 119, "s_m": 11.9, "d_m": 0.0, "x_m": 0.6603565328477194, "y_m": 9.321627997770747, "d_right": 1.1436653531212377, "d_left": 0.9844112362140213, "psi_rad": 2.6922288674080375, "kappa_radpm": 0.7070490599163382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 120, "s_m": 12.0, "d_m": 0.0, "x_m": 0.5688597021117184, "y_m": 9.361335813285365, "d_right": 1.197310934681028, "d_left": 0.9869323173895155, "psi_rad": 2.7548771326901518, "kappa_radpm": 0.5130822691504777, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 121, "s_m": 12.100000000000001, "d_m": 0.0, "x_m": 0.47564152793575, "y_m": 9.396847759026405, "d_right": 1.2549930910669997, "d_left": 0.9949705374976832, "psi_rad": 2.794845321238133, "kappa_radpm": 0.2937940058389876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 122, "s_m": 12.200000000000001, "d_m": 0.0, "x_m": 0.38125183981089705, "y_m": 9.429127310464462, "d_right": 1.290854445673721, "d_left": 1.0010502444878402, "psi_rad": 2.8136359338579493, "kappa_radpm": 0.08853882068951657, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 123, "s_m": 12.3, "d_m": 0.0, "x_m": 0.28675780168363446, "y_m": 9.461114210910736, "d_right": 1.3308438439435335, "d_left": 1.0066691988135892, "psi_rad": 2.8125530853760363, "kappa_radpm": -0.14143944340689218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 124, "s_m": 12.4, "d_m": 0.0, "x_m": 0.19243679941128883, "y_m": 9.493598603900677, "d_right": 1.3764520484725762, "d_left": 1.0225564516041303, "psi_rad": 2.785348045176571, "kappa_radpm": -0.4196421664348171, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 125, "s_m": 12.5, "d_m": 0.0, "x_m": 0.09983355889097875, "y_m": 9.530672727695029, "d_right": 1.4205670311488177, "d_left": 1.0523827966418462, "psi_rad": 2.728624652089073, "kappa_radpm": -0.6708011572236483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 126, "s_m": 12.600000000000001, "d_m": 0.0, "x_m": 0.00982818099913112, "y_m": 9.573611207383214, "d_right": 1.4612060658330301, "d_left": 1.096267104291043, "psi_rad": 2.651187813731841, "kappa_radpm": -0.8559240136518942, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 127, "s_m": 12.700000000000001, "d_m": 0.0, "x_m": -0.07588178656933556, "y_m": 9.624488605024917, "d_right": 1.4992736396573327, "d_left": 1.1544991448120119, "psi_rad": 2.557439849358694, "kappa_radpm": -0.994633855008602, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 128, "s_m": 12.8, "d_m": 0.0, "x_m": -0.15630101846272676, "y_m": 9.683442552635052, "d_right": 1.5237627717098694, "d_left": 1.2250759432778, "psi_rad": 2.452261042730121, "kappa_radpm": -1.1093099029798914, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 129, "s_m": 12.9, "d_m": 0.0, "x_m": -0.22948718905293528, "y_m": 9.751092181133323, "d_right": 1.5303400824428344, "d_left": 1.2197790259013264, "psi_rad": 2.335577868762716, "kappa_radpm": -1.1375657750353874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 130, "s_m": 13.0, "d_m": 0.0, "x_m": -0.2940864411768514, "y_m": 9.82702975017009, "d_right": 1.5301268723038663, "d_left": 1.1559540950879745, "psi_rad": 2.2247478877230433, "kappa_radpm": -1.032324758562575, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 131, "s_m": 13.100000000000001, "d_m": 0.0, "x_m": -0.35062588701758934, "y_m": 9.909142107077862, "d_right": 1.5262534492398414, "d_left": 1.0988118966568854, "psi_rad": 2.129112917050201, "kappa_radpm": -0.926002070552634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 132, "s_m": 13.200000000000001, "d_m": 0.0, "x_m": -0.3996132544538727, "y_m": 9.995978912360618, "d_right": 1.5087638108854982, "d_left": 1.0495324191402464, "psi_rad": 2.0395474736125165, "kappa_radpm": -0.8429965063751632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 133, "s_m": 13.3, "d_m": 0.0, "x_m": -0.44063069074685096, "y_m": 10.08687818627479, "d_right": 1.475001231134179, "d_left": 1.0083953788922857, "psi_rad": 1.9605136157751681, "kappa_radpm": -0.7042049615275825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 134, "s_m": 13.4, "d_m": 0.0, "x_m": -0.4753521588037122, "y_m": 10.180382105149418, "d_right": 1.4407879235707146, "d_left": 0.9736331452747692, "psi_rad": 1.898706481307, "kappa_radpm": -0.6374404838509284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 135, "s_m": 13.5, "d_m": 0.0, "x_m": -0.5048476427686907, "y_m": 10.27564525352947, "d_right": 1.4075052959642622, "d_left": 0.9441332227841756, "psi_rad": 1.8330255190049825, "kappa_radpm": -0.6701122798950432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 136, "s_m": 13.600000000000001, "d_m": 0.0, "x_m": -0.5270236347705195, "y_m": 10.372891674770232, "d_right": 1.373339086220532, "d_left": 0.9269269238648493, "psi_rad": 1.7646840253279914, "kappa_radpm": -0.5813048880202187, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 137, "s_m": 13.700000000000001, "d_m": 0.0, "x_m": -0.543266882876146, "y_m": 10.471308027440646, "d_right": 1.3293805839200232, "d_left": 0.9263161111228485, "psi_rad": 1.7167645414009387, "kappa_radpm": -0.391056106340536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 138, "s_m": 13.8, "d_m": 0.0, "x_m": -0.5560376808942464, "y_m": 10.570247573013145, "d_right": 1.286040107911627, "d_left": 0.9398535428789005, "psi_rad": 1.6864728040598842, "kappa_radpm": -0.27816601417611664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 139, "s_m": 13.9, "d_m": 0.0, "x_m": -0.5662926907709155, "y_m": 10.669472888259676, "d_right": 1.2468075463906005, "d_left": 0.9327856475259994, "psi_rad": 1.6611313385657154, "kappa_radpm": -0.17119785431159218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 140, "s_m": 14.0, "d_m": 0.0, "x_m": -0.5740348073158331, "y_m": 10.76893183448348, "d_right": 1.201624659355299, "d_left": 0.9250379852897014, "psi_rad": 1.6522332331975658, "kappa_radpm": -0.17818552953068556, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 141, "s_m": 14.100000000000001, "d_m": 0.0, "x_m": -0.5825213655349484, "y_m": 10.868311272240756, "d_right": 1.1584365276849722, "d_left": 0.916544976059858, "psi_rad": 1.6254942326595783, "kappa_radpm": -0.38242465694601435, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 142, "s_m": 14.200000000000001, "d_m": 0.0, "x_m": -0.5849361606885009, "y_m": 10.968034144778066, "d_right": 1.1045117903974917, "d_left": 0.9141279748436825, "psi_rad": 1.575748301808363, "kappa_radpm": -0.4006073934070409, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 143, "s_m": 14.3, "d_m": 0.0, "x_m": -0.5835091306607969, "y_m": 11.06777856541944, "d_right": 1.0501065548214754, "d_left": 0.91555276559136, "psi_rad": 1.54537275397817, "kappa_radpm": -0.3707496264561416, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 144, "s_m": 14.4, "d_m": 0.0, "x_m": -0.5798650001349629, "y_m": 11.167458039595948, "d_right": 0.9966912708574257, "d_left": 0.9191936453117496, "psi_rad": 1.5015983765171346, "kappa_radpm": -0.4204493901784023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 145, "s_m": 14.5, "d_m": 0.0, "x_m": -0.5697237071720808, "y_m": 11.266677712476374, "d_right": 0.9449561739237056, "d_left": 0.9293255064412709, "psi_rad": 1.4612828759424896, "kappa_radpm": -0.31902273479751386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 146, "s_m": 14.600000000000001, "d_m": 0.0, "x_m": -0.5580617434020072, "y_m": 11.365753529477415, "d_right": 0.8999153535512896, "d_left": 0.9409770173038791, "psi_rad": 1.4377938295576318, "kappa_radpm": -0.3026803766778219, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 147, "s_m": 14.700000000000001, "d_m": 0.0, "x_m": -0.5432710564194908, "y_m": 11.464391947444884, "d_right": 0.8611110423534274, "d_left": 0.9557537192988403, "psi_rad": 1.4007468006069252, "kappa_radpm": -0.26778222493929027, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 148, "s_m": 14.8, "d_m": 0.0, "x_m": -0.5243081682876245, "y_m": 11.562329186002867, "d_right": 0.8284134304595003, "d_left": 0.9637597845605979, "psi_rad": 1.3842373845697737, "kappa_radpm": -0.11808793013453833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 149, "s_m": 14.9, "d_m": 0.0, "x_m": -0.5062662703178612, "y_m": 11.660439793937892, "d_right": 0.8077272827506163, "d_left": 0.9469263023109414, "psi_rad": 1.3771292145800176, "kappa_radpm": -0.06437292981069653, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 150, "s_m": 15.0, "d_m": 0.0, "x_m": -0.4859131225512746, "y_m": 11.758097138983224, "d_right": 0.7797574930664144, "d_left": 0.9255137685244514, "psi_rad": 1.3713627986076344, "kappa_radpm": 0.03911870949740326, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 151, "s_m": 15.100000000000001, "d_m": 0.0, "x_m": -0.46674109279273657, "y_m": 11.855992476753622, "d_right": 0.7347227811283604, "d_left": 0.9133380962044565, "psi_rad": 1.3849529564794982, "kappa_radpm": 0.11265217361944635, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 152, "s_m": 15.200000000000001, "d_m": 0.0, "x_m": -0.4490493685287789, "y_m": 11.954167498724878, "d_right": 0.7025332673672428, "d_left": 0.9072004395799602, "psi_rad": 1.3938932333315237, "kappa_radpm": 0.08197166133438794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 153, "s_m": 15.3, "d_m": 0.0, "x_m": -0.4316302346783924, "y_m": 12.05239283190862, "d_right": 0.6837888140300156, "d_left": 0.8916338533672257, "psi_rad": 1.4013472887463758, "kappa_radpm": 0.1206369143242425, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 154, "s_m": 15.4, "d_m": 0.0, "x_m": -0.4154053777644205, "y_m": 12.150812854175726, "d_right": 0.6675014821084179, "d_left": 0.8648358663543998, "psi_rad": 1.4180206161963722, "kappa_radpm": 0.02844077945275636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 155, "s_m": 15.5, "d_m": 0.0, "x_m": -0.4012742447445751, "y_m": 12.24954097591141, "d_right": 0.653322429638199, "d_left": 0.8240665848111796, "psi_rad": 1.407035444636927, "kappa_radpm": -0.19891246958297026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 156, "s_m": 15.600000000000001, "d_m": 0.0, "x_m": -0.3828901179715017, "y_m": 12.347588040559168, "d_right": 0.634859670145081, "d_left": 0.7929065270958083, "psi_rad": 1.3782381222797782, "kappa_radpm": -0.21178232415364318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 157, "s_m": 15.700000000000001, "d_m": 0.0, "x_m": -0.36309378767629874, "y_m": 12.445364327753383, "d_right": 0.6282417282953006, "d_left": 0.7665054659596918, "psi_rad": 1.3646789798061985, "kappa_radpm": -0.16893283141547144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 158, "s_m": 15.8, "d_m": 0.0, "x_m": -0.34205860950315103, "y_m": 12.542873062245352, "d_right": 0.6361120866347474, "d_left": 0.7504983872156921, "psi_rad": 1.3444515559966839, "kappa_radpm": -0.2782906087636461, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 159, "s_m": 15.9, "d_m": 0.0, "x_m": -0.31832752473596954, "y_m": 12.639754289459132, "d_right": 0.6565079284562932, "d_left": 0.7417720046113522, "psi_rad": 1.3090208580534692, "kappa_radpm": -0.3416091360092166, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 160, "s_m": 16.0, "d_m": 0.0, "x_m": -0.2904440366469472, "y_m": 12.735519702141943, "d_right": 0.6839112454679428, "d_left": 0.7220817779310484, "psi_rad": 1.2761297287948405, "kappa_radpm": -0.3858411475709811, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 161, "s_m": 16.1, "d_m": 0.0, "x_m": -0.26039199165080074, "y_m": 12.83064436495642, "d_right": 0.6966908551534778, "d_left": 0.7133607190480302, "psi_rad": 1.231852628539273, "kappa_radpm": -0.4717747726452126, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 162, "s_m": 16.2, "d_m": 0.0, "x_m": -0.2241491931032661, "y_m": 12.92356412347875, "d_right": 0.706627367301139, "d_left": 0.7112705152788147, "psi_rad": 1.181774774265798, "kappa_radpm": -0.4056768429975477, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 163, "s_m": 16.3, "d_m": 0.0, "x_m": -0.18473704301762867, "y_m": 13.015208422531105, "d_right": 0.7269106623941164, "d_left": 0.7058684667391566, "psi_rad": 1.1507172599397635, "kappa_radpm": -0.3863632573967679, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 164, "s_m": 16.400000000000002, "d_m": 0.0, "x_m": -0.14279516478933155, "y_m": 13.10569971503207, "d_right": 0.7561098630354228, "d_left": 0.6933129902481915, "psi_rad": 1.1045021227864444, "kappa_radpm": -0.48848792757088977, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 165, "s_m": 16.5, "d_m": 0.0, "x_m": -0.09510142681050081, "y_m": 13.193299751770395, "d_right": 0.7600211483136589, "d_left": 0.6929055757534378, "psi_rad": 1.0530196744255855, "kappa_radpm": -0.4189193242120859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 166, "s_m": 16.6, "d_m": 0.0, "x_m": -0.044075969721986, "y_m": 13.279008844348033, "d_right": 0.756697835598601, "d_left": 0.7040022451103723, "psi_rad": 1.0207182579440273, "kappa_radpm": -0.3534367307948283, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 167, "s_m": 16.7, "d_m": 0.0, "x_m": 0.009179834983560498, "y_m": 13.363357014369294, "d_right": 0.7638706012378407, "d_left": 0.7311846772634232, "psi_rad": 0.9823323282666199, "kappa_radpm": -0.35309287246780674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 168, "s_m": 16.8, "d_m": 0.0, "x_m": 0.06662788564657432, "y_m": 13.44489873803944, "d_right": 0.7788740853554382, "d_left": 0.7450483854673169, "psi_rad": 0.9500996834504659, "kappa_radpm": -0.19284095960889924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 169, "s_m": 16.900000000000002, "d_m": 0.0, "x_m": 0.12520918389142152, "y_m": 13.52564462411339, "d_right": 0.7944725375788033, "d_left": 0.7643110956673489, "psi_rad": 0.94376413634484, "kappa_radpm": -0.09001885720767877, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 170, "s_m": 17.0, "d_m": 0.0, "x_m": 0.1836939778825261, "y_m": 13.606463026806829, "d_right": 0.8101952694781166, "d_left": 0.7630452144766298, "psi_rad": 0.9320959120089302, "kappa_radpm": -0.09882807630425705, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 171, "s_m": 17.1, "d_m": 0.0, "x_m": 0.24414040736214473, "y_m": 13.685815797135897, "d_right": 0.823513805917359, "d_left": 0.7771329165414369, "psi_rad": 0.9239985210839886, "kappa_radpm": 0.007152505208996018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 172, "s_m": 17.2, "d_m": 0.0, "x_m": 0.303926867504364, "y_m": 13.765677329201429, "d_right": 0.8376577929857288, "d_left": 0.7939977788005285, "psi_rad": 0.9335264130507294, "kappa_radpm": 0.12042822285641408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 173, "s_m": 17.3, "d_m": 0.0, "x_m": 0.36284919500794177, "y_m": 13.846166137418722, "d_right": 0.8528540398157654, "d_left": 0.7959669505124256, "psi_rad": 0.9480841656552714, "kappa_radpm": 0.18068219728701262, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 174, "s_m": 17.400000000000002, "d_m": 0.0, "x_m": 0.4202841014172296, "y_m": 13.92773218106057, "d_right": 0.8698587057726658, "d_left": 0.8085057073812622, "psi_rad": 0.9696628525081319, "kappa_radpm": 0.20376790488317031, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 175, "s_m": 17.5, "d_m": 0.0, "x_m": 0.4756829928560063, "y_m": 14.010694358550154, "d_right": 0.8892830850169576, "d_left": 0.8278048607477567, "psi_rad": 0.9888377466319055, "kappa_radpm": 0.22848858092529123, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 176, "s_m": 17.6, "d_m": 0.0, "x_m": 0.5299377622356019, "y_m": 14.094386340501774, "d_right": 0.9177486702328808, "d_left": 0.8406100790306938, "psi_rad": 1.0153605686931901, "kappa_radpm": 0.23910527769727963, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 177, "s_m": 17.7, "d_m": 0.0, "x_m": 0.5808616953268939, "y_m": 14.180170863118645, "d_right": 0.9498361289047617, "d_left": 0.8381495018271482, "psi_rad": 1.0366588021713614, "kappa_radpm": 0.18797148687612397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 178, "s_m": 17.8, "d_m": 0.0, "x_m": 0.6315114373278137, "y_m": 14.26611187375038, "d_right": 0.9911717657089072, "d_left": 0.8410117373686893, "psi_rad": 1.052954866068415, "kappa_radpm": 0.26705737501768523, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 179, "s_m": 17.900000000000002, "d_m": 0.0, "x_m": 0.6796117713518601, "y_m": 14.353508084873168, "d_right": 1.022837238989627, "d_left": 0.8466393165005339, "psi_rad": 1.0900702771748985, "kappa_radpm": 0.34034587545674455, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 180, "s_m": 18.0, "d_m": 0.0, "x_m": 0.7237312929892765, "y_m": 14.442936108919413, "d_right": 1.054753178036821, "d_left": 0.8532816310726202, "psi_rad": 1.1210240411597638, "kappa_radpm": 0.213015798703049, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 181, "s_m": 18.1, "d_m": 0.0, "x_m": 0.7663282144333207, "y_m": 14.533129188654634, "d_right": 1.0940585292721416, "d_left": 0.8582869799966037, "psi_rad": 1.1326734369155083, "kappa_radpm": 0.06007371559538344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 182, "s_m": 18.2, "d_m": 0.0, "x_m": 0.8083675871309833, "y_m": 14.623593969802434, "d_right": 1.141295323028588, "d_left": 0.8639611033645533, "psi_rad": 1.1330387842788405, "kappa_radpm": 0.06726992896880946, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 183, "s_m": 18.3, "d_m": 0.0, "x_m": 0.8509037299305087, "y_m": 14.713829133025698, "d_right": 1.1916611962873722, "d_left": 0.8774494450639788, "psi_rad": 1.1461274227092701, "kappa_radpm": 0.15733175397986354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 184, "s_m": 18.400000000000002, "d_m": 0.0, "x_m": 0.8905562110797274, "y_m": 14.80535309859831, "d_right": 1.228270341768584, "d_left": 0.8988024044770954, "psi_rad": 1.1645051350748132, "kappa_radpm": 0.1868423355927895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 185, "s_m": 18.5, "d_m": 0.0, "x_m": 0.9297490849245009, "y_m": 14.897092883590705, "d_right": 1.2654022747551819, "d_left": 0.9299480470750434, "psi_rad": 1.183495889827828, "kappa_radpm": 0.3016696582914302, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 186, "s_m": 18.6, "d_m": 0.0, "x_m": 0.9658939791287753, "y_m": 14.990048533668613, "d_right": 1.3087854044426952, "d_left": 0.9674276367052648, "psi_rad": 1.2248390667330993, "kappa_radpm": 0.46234422863948965, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 187, "s_m": 18.7, "d_m": 0.0, "x_m": 0.9973721510247946, "y_m": 15.08469824543575, "d_right": 1.3622963202018026, "d_left": 1.0090189678311583, "psi_rad": 1.275964735555726, "kappa_radpm": 0.5882720933644603, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 188, "s_m": 18.8, "d_m": 0.0, "x_m": 1.0238442997365702, "y_m": 15.18087403200234, "d_right": 1.4248742560587506, "d_left": 1.053904178679818, "psi_rad": 1.3424934854059913, "kappa_radpm": 0.7631254550395827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 189, "s_m": 18.900000000000002, "d_m": 0.0, "x_m": 1.042485275944517, "y_m": 15.278855222446149, "d_right": 1.491404415344697, "d_left": 1.099129108214969, "psi_rad": 1.4285898265636425, "kappa_radpm": 0.9573077503370842, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 190, "s_m": 19.0, "d_m": 0.0, "x_m": 1.0520809963705697, "y_m": 15.378094966613622, "d_right": 1.5424670580422195, "d_left": 1.133506519500194, "psi_rad": 1.5339550354734082, "kappa_radpm": 1.166677014135089, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 191, "s_m": 19.1, "d_m": 0.0, "x_m": 1.049813567805727, "y_m": 15.477680393387187, "d_right": 1.4461477300125436, "d_left": 1.1590493671976245, "psi_rad": 1.6619252293906603, "kappa_radpm": 1.3437826312156997, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 192, "s_m": 19.200000000000003, "d_m": 0.0, "x_m": 1.033991344139566, "y_m": 15.576051366165512, "d_right": 1.355064300232172, "d_left": 1.179457373284862, "psi_rad": 1.8027115617165481, "kappa_radpm": 1.507440051796971, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 193, "s_m": 19.3, "d_m": 0.0, "x_m": 1.0041377038936132, "y_m": 15.671087374102804, "d_right": 1.2629220441938558, "d_left": 1.1938118255663528, "psi_rad": 1.9634132397500546, "kappa_radpm": 1.7016601613576066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 194, "s_m": 19.400000000000002, "d_m": 0.0, "x_m": 0.9580689779683815, "y_m": 15.759386779485693, "d_right": 1.1803901333854647, "d_left": 1.1989027053940933, "psi_rad": 2.1430435939880694, "kappa_radpm": 1.8058508128149642, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 195, "s_m": 19.5, "d_m": 0.0, "x_m": 0.8967926754705634, "y_m": 15.837735024301221, "d_right": 1.1133902205905064, "d_left": 1.1940619697985126, "psi_rad": 2.3245834023130474, "kappa_radpm": 1.6983196566729841, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 196, "s_m": 19.6, "d_m": 0.0, "x_m": 0.8223602161385138, "y_m": 15.903958463438505, "d_right": 1.0668023386705268, "d_left": 1.179600860123734, "psi_rad": 2.4827075253226663, "kappa_radpm": 1.4467547479115828, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 197, "s_m": 19.700000000000003, "d_m": 0.0, "x_m": 0.7395862261629209, "y_m": 15.959463130648436, "d_right": 1.0327746549681638, "d_left": 1.1524462862587035, "psi_rad": 2.613934351895364, "kappa_radpm": 1.2226399793717202, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 198, "s_m": 19.8, "d_m": 0.0, "x_m": 0.6504657678976258, "y_m": 16.004134373665316, "d_right": 1.0015702590384015, "d_left": 1.1210296271271074, "psi_rad": 2.7272355211970103, "kappa_radpm": 1.0308958407820246, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 199, "s_m": 19.900000000000002, "d_m": 0.0, "x_m": 0.5573077785248324, "y_m": 16.03963307071272, "d_right": 0.9895069014976744, "d_left": 1.0880681121011917, "psi_rad": 2.820113520051769, "kappa_radpm": 0.8614667755519334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 200, "s_m": 20.0, "d_m": 0.0, "x_m": 0.46143387281224846, "y_m": 16.067088002517107, "d_right": 0.982032634961309, "d_left": 1.0552240795021286, "psi_rad": 2.899528876307397, "kappa_radpm": 0.6669304727093017, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 201, "s_m": 20.1, "d_m": 0.0, "x_m": 0.3637854387468576, "y_m": 16.087414738905103, "d_right": 0.9869337818994355, "d_left": 1.023871224573572, "psi_rad": 2.953499614593629, "kappa_radpm": 0.5343340215878056, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 202, "s_m": 20.200000000000003, "d_m": 0.0, "x_m": 0.26549298496570356, "y_m": 16.10438399196553, "d_right": 0.9812394814643236, "d_left": 0.9981559641988388, "psi_rad": 3.006395680624958, "kappa_radpm": 0.5919507524837142, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 203, "s_m": 20.3, "d_m": 0.0, "x_m": 0.16624533618560466, "y_m": 16.11428547910188, "d_right": 0.9861477762306897, "d_left": 0.9748941401716188, "psi_rad": 3.071889765090372, "kappa_radpm": 0.554636096280825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 204, "s_m": 20.400000000000002, "d_m": 0.0, "x_m": 0.06657880575505344, "y_m": 16.118271382703416, "d_right": 0.9993320316311731, "d_left": 0.955573996484259, "psi_rad": 3.117322899881123, "kappa_radpm": 0.3047350795934123, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 205, "s_m": 20.5, "d_m": 0.0, "x_m": -0.0331745899049918, "y_m": 16.119126302078733, "d_right": 1.010290460162375, "d_left": 0.9432986314529822, "psi_rad": 3.1328367810090545, "kappa_radpm": 0.07465169859976806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 206, "s_m": 20.6, "d_m": 0.0, "x_m": -0.13292646099527955, "y_m": 16.12001827004038, "d_right": 1.0093912928353932, "d_left": 0.9415283101450446, "psi_rad": 3.1322532396010767, "kappa_radpm": 0.014066264277485807, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 207, "s_m": 20.700000000000003, "d_m": 0.0, "x_m": -0.23268170917901193, "y_m": 16.12098963583586, "d_right": 1.0084129263925776, "d_left": 0.9503639934679822, "psi_rad": 3.1356500338645517, "kappa_radpm": 0.06352846973609383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 208, "s_m": 20.8, "d_m": 0.0, "x_m": -0.33243574832655814, "y_m": 16.121203891823313, "d_right": 1.0081912277932994, "d_left": 0.9687021670029263, "psi_rad": 3.1449589335482955, "kappa_radpm": 0.13129768406526354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 209, "s_m": 20.900000000000002, "d_m": 0.0, "x_m": -0.4321926850535518, "y_m": 16.1203180234994, "d_right": 1.009069172559616, "d_left": 0.9956942360891015, "psi_rad": 3.1619095706776044, "kappa_radpm": 0.12371372297972805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 210, "s_m": 21.0, "d_m": 0.0, "x_m": -0.5318869056005625, "y_m": 16.11715110154953, "d_right": 1.0122248713246436, "d_left": 1.0295608068604574, "psi_rad": 3.169701678144241, "kappa_radpm": 0.12367057705947371, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 211, "s_m": 21.1, "d_m": 0.0, "x_m": -0.6316161446768047, "y_m": 16.114710947749213, "d_right": 1.0146554978246085, "d_left": 1.0489931563633612, "psi_rad": 3.186643686089499, "kappa_radpm": 0.34705740213524017, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 212, "s_m": 21.200000000000003, "d_m": 0.0, "x_m": -0.7311217181385182, "y_m": 16.1081692902311, "d_right": 1.021178309959975, "d_left": 1.0628563637802726, "psi_rad": 3.239113158571289, "kappa_radpm": 0.5530848215709172, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 213, "s_m": 21.3, "d_m": 0.0, "x_m": -0.8300374582356527, "y_m": 16.0952992252303, "d_right": 1.0340084647955243, "d_left": 1.079580523781223, "psi_rad": 3.2972606504036825, "kappa_radpm": 0.6398891013877783, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 214, "s_m": 21.400000000000002, "d_m": 0.0, "x_m": -0.9281298940228776, "y_m": 16.077251277235614, "d_right": 1.0519924943554495, "d_left": 1.100044131292041, "psi_rad": 3.367090978848845, "kappa_radpm": 0.7124059081203438, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 215, "s_m": 21.5, "d_m": 0.0, "x_m": -1.0242489553374499, "y_m": 16.050747135068548, "d_right": 1.0587518654774335, "d_left": 1.1206609122766096, "psi_rad": 3.4397418320277513, "kappa_radpm": 0.5797577739217274, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 216, "s_m": 21.6, "d_m": 0.0, "x_m": -1.1187078191847466, "y_m": 16.018684873582416, "d_right": 1.0651249158765212, "d_left": 1.141232754371907, "psi_rad": 3.4830425336331903, "kappa_radpm": 0.4162963856234869, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 217, "s_m": 21.700000000000003, "d_m": 0.0, "x_m": -1.2122097037271287, "y_m": 15.983951708212267, "d_right": 1.0730493501330205, "d_left": 1.1622220049426757, "psi_rad": 3.5230011091524487, "kappa_radpm": 0.4580039882367615, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 218, "s_m": 21.8, "d_m": 0.0, "x_m": -1.3038036853875445, "y_m": 15.9444527707845, "d_right": 1.08632988550837, "d_left": 1.1863328088533485, "psi_rad": 3.5746433312805426, "kappa_radpm": 0.5081695631924577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 219, "s_m": 21.900000000000002, "d_m": 0.0, "x_m": -1.393232521656114, "y_m": 15.9002615024518, "d_right": 1.1035939398375219, "d_left": 1.2132855189314455, "psi_rad": 3.62463502179094, "kappa_radpm": 0.44003144200228217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 220, "s_m": 22.0, "d_m": 0.0, "x_m": -1.4804281702274453, "y_m": 15.851816063457274, "d_right": 1.127776123073307, "d_left": 1.2431664627307983, "psi_rad": 3.662649619680999, "kappa_radpm": 0.30737416511300353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 221, "s_m": 22.1, "d_m": 0.0, "x_m": -1.5662483827375653, "y_m": 15.800956254984836, "d_right": 1.154968885951981, "d_left": 1.2775893315737599, "psi_rad": 3.686109854813541, "kappa_radpm": 0.2725834685772677, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 222, "s_m": 22.200000000000003, "d_m": 0.0, "x_m": -1.6510835446308496, "y_m": 15.748469448675559, "d_right": 1.179478485975479, "d_left": 1.3169647994349523, "psi_rad": 3.7171663133964525, "kappa_radpm": 0.3614675193935213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 223, "s_m": 22.3, "d_m": 0.0, "x_m": -1.733566848557831, "y_m": 15.692389932792382, "d_right": 1.2055653597803275, "d_left": 1.3542228567781682, "psi_rad": 3.758403358692245, "kappa_radpm": 0.3785612910625513, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 224, "s_m": 22.400000000000002, "d_m": 0.0, "x_m": -1.8137891080927546, "y_m": 15.633094094421956, "d_right": 1.2427804401981037, "d_left": 1.3904049436321506, "psi_rad": 3.792878571608963, "kappa_radpm": 0.3086438552552151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 225, "s_m": 22.5, "d_m": 0.0, "x_m": -1.892224645672618, "y_m": 15.571455335481394, "d_right": 1.2884378623031316, "d_left": 1.4255893671718296, "psi_rad": 3.820132129743288, "kappa_radpm": 0.3120203847383629, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 226, "s_m": 22.6, "d_m": 0.0, "x_m": -1.9690968571737926, "y_m": 15.507877436957541, "d_right": 1.3187287880883842, "d_left": 1.4644775349538683, "psi_rad": 3.8552826485566354, "kappa_radpm": 0.37908725927713993, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 227, "s_m": 22.700000000000003, "d_m": 0.0, "x_m": -2.0430084687172427, "y_m": 15.440881786933229, "d_right": 1.3583207112022715, "d_left": 1.5034233896629547, "psi_rad": 3.895949581598716, "kappa_radpm": 0.4085125207973106, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 228, "s_m": 22.8, "d_m": 0.0, "x_m": -2.1144527590114706, "y_m": 15.371276631826262, "d_right": 1.4070016603566415, "d_left": 1.5260667851455971, "psi_rad": 3.9369851527160975, "kappa_radpm": 0.4597216488176148, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 229, "s_m": 22.900000000000002, "d_m": 0.0, "x_m": -2.182614025264501, "y_m": 15.298457434940381, "d_right": 1.464612981000058, "d_left": 1.5473474634683972, "psi_rad": 3.987893911362239, "kappa_radpm": 0.4243246261606237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 230, "s_m": 23.0, "d_m": 0.0, "x_m": -2.246611319424576, "y_m": 15.221953753657248, "d_right": 1.5148241379004446, "d_left": 1.569327402342273, "psi_rad": 4.021850077948223, "kappa_radpm": 0.2263603120165003, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 231, "s_m": 23.1, "d_m": 0.0, "x_m": -2.309685726833546, "y_m": 15.144662754179558, "d_right": 1.530134106344453, "d_left": 1.5795282679446159, "psi_rad": 4.03316597376554, "kappa_radpm": 0.22717429384317978, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 232, "s_m": 23.200000000000003, "d_m": 0.0, "x_m": -2.3719428766071617, "y_m": 15.06672076618233, "d_right": 1.4432269728004323, "d_left": 1.594102088311944, "psi_rad": 4.067284936716858, "kappa_radpm": 0.5412524399939755, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 233, "s_m": 23.3, "d_m": 0.0, "x_m": -2.429575721160957, "y_m": 14.985342112203265, "d_right": 1.3613569951383333, "d_left": 1.6090762608605433, "psi_rad": 4.141416461764335, "kappa_radpm": 0.8899238417062794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 234, "s_m": 23.400000000000002, "d_m": 0.0, "x_m": -2.4796148002201344, "y_m": 14.89909664801124, "d_right": 1.2879845795846467, "d_left": 1.6149781010435282, "psi_rad": 4.245269705058114, "kappa_radpm": 1.1340922316092805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 235, "s_m": 23.5, "d_m": 0.0, "x_m": -2.5191834297702727, "y_m": 14.807671416001208, "d_right": 1.2274811522090627, "d_left": 1.6044114069058808, "psi_rad": 4.36823490808619, "kappa_radpm": 1.1801760409530138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 236, "s_m": 23.6, "d_m": 0.0, "x_m": -2.5467263252021732, "y_m": 14.71185273211101, "d_right": 1.1800433001962634, "d_left": 1.5872192505196445, "psi_rad": 4.481304913248717, "kappa_radpm": 1.0635389794228733, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 237, "s_m": 23.700000000000003, "d_m": 0.0, "x_m": -2.5647970206253348, "y_m": 14.61380791589421, "d_right": 1.1449348671909243, "d_left": 1.558108229538251, "psi_rad": 4.580942703970765, "kappa_radpm": 1.0100556471766753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 238, "s_m": 23.8, "d_m": 0.0, "x_m": -2.572824412383945, "y_m": 14.514451894225282, "d_right": 1.1276064363016203, "d_left": 1.5222236913358766, "psi_rad": 4.683316042684051, "kappa_radpm": 0.9009594714039615, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 239, "s_m": 23.900000000000002, "d_m": 0.0, "x_m": -2.570586236655161, "y_m": 14.41473670701022, "d_right": 1.1291948718940892, "d_left": 1.4820758284837934, "psi_rad": -1.5220507089280284, "kappa_radpm": 0.6505436144330012, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 240, "s_m": 24.0, "d_m": 0.0, "x_m": -2.5631072993659183, "y_m": 14.315266493940392, "d_right": 1.1447142327037414, "d_left": 1.427032226590374, "psi_rad": -1.4697605416089345, "kappa_radpm": 0.41366976441506775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 241, "s_m": 24.1, "d_m": 0.0, "x_m": -2.550471728620575, "y_m": 14.216331588812023, "d_right": 1.1735079252107847, "d_left": 1.3664949109184485, "psi_rad": -1.4393167560450149, "kappa_radpm": 0.0992916017899459, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 242, "s_m": 24.200000000000003, "d_m": 0.0, "x_m": -2.5369531939333014, "y_m": 14.117492621483919, "d_right": 1.2106827184777051, "d_left": 1.3099994368898789, "psi_rad": -1.4499022212509454, "kappa_radpm": -0.25505133949886405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 243, "s_m": 24.3, "d_m": 0.0, "x_m": -2.5264136281481466, "y_m": 14.018300594058063, "d_right": 1.223283779713069, "d_left": 1.261538251829314, "psi_rad": -1.4903270239447877, "kappa_radpm": -0.31324805464845396, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 244, "s_m": 24.400000000000002, "d_m": 0.0, "x_m": -2.520922308908165, "y_m": 13.91870540860685, "d_right": 1.1514922993565098, "d_left": 1.224042995884623, "psi_rad": -1.5125518321806362, "kappa_radpm": -0.19991838292347408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 245, "s_m": 24.5, "d_m": 0.0, "x_m": -2.5148001387416725, "y_m": 13.81913406516048, "d_right": 1.0846055817053946, "d_left": 1.175341355340771, "psi_rad": -1.5303107005294825, "kappa_radpm": -0.29406209936524874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 246, "s_m": 24.6, "d_m": 0.0, "x_m": -2.512849863958358, "y_m": 13.719423966400525, "d_right": 1.0197798263025764, "d_left": 1.126725575993169, "psi_rad": 4.711821055125901, "kappa_radpm": -0.3134313679314804, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 247, "s_m": 24.700000000000003, "d_m": 0.0, "x_m": -2.5149134097202896, "y_m": 13.619687105043653, "d_right": 0.9576453357636935, "d_left": 1.0888544573530246, "psi_rad": 4.690188333063808, "kappa_radpm": -0.2751364820457658, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 248, "s_m": 24.8, "d_m": 0.0, "x_m": -2.5172787653021693, "y_m": 13.519962498743531, "d_right": 0.9020314709337207, "d_left": 1.0522589002027798, "psi_rad": 4.656793758716748, "kappa_radpm": -0.4884101061944346, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 249, "s_m": 24.900000000000002, "d_m": 0.0, "x_m": -2.5259912652188277, "y_m": 13.420633309358683, "d_right": 0.8488595729533156, "d_left": 1.0224246063359392, "psi_rad": 4.592506311824921, "kappa_radpm": -0.605502386593002, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 250, "s_m": 25.0, "d_m": 0.0, "x_m": -2.5411208609951856, "y_m": 13.322037577500069, "d_right": 0.7987180247352228, "d_left": 0.9910532002227422, "psi_rad": 4.535693281398148, "kappa_radpm": -0.564283801398533, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 251, "s_m": 25.1, "d_m": 0.0, "x_m": -2.561047267526432, "y_m": 13.224304769779819, "d_right": 0.7539242722293887, "d_left": 0.9712509034665567, "psi_rad": 4.479649551545214, "kappa_radpm": -0.34767296683764437, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 252, "s_m": 25.200000000000003, "d_m": 0.0, "x_m": -2.587112141869492, "y_m": 13.128010060537813, "d_right": 0.7142399077770631, "d_left": 0.9676610245231932, "psi_rad": 4.466158688030618, "kappa_radpm": 0.16584208245716603, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 253, "s_m": 25.3, "d_m": 0.0, "x_m": -2.609670084264906, "y_m": 13.03084293106874, "d_right": 0.6904124143127854, "d_left": 0.9410507027026674, "psi_rad": 4.512817968036647, "kappa_radpm": 0.47287368600106294, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 254, "s_m": 25.400000000000002, "d_m": 0.0, "x_m": -2.626648518011958, "y_m": 12.932540367978492, "d_right": 0.673366909384781, "d_left": 0.9028982460373458, "psi_rad": 4.560733425230831, "kappa_radpm": 0.3864782134926781, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 255, "s_m": 25.5, "d_m": 0.0, "x_m": -2.6398025988003697, "y_m": 12.833678049580575, "d_right": 0.6601714048965504, "d_left": 0.8688634979167856, "psi_rad": 4.590113610735183, "kappa_radpm": 0.17290572274136107, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 256, "s_m": 25.6, "d_m": 0.0, "x_m": -2.650978550028473, "y_m": 12.734555637892903, "d_right": 0.6489654771436105, "d_left": 0.8373441429374693, "psi_rad": 4.595314569779103, "kappa_radpm": 0.10795521382764406, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 257, "s_m": 25.700000000000003, "d_m": 0.0, "x_m": -2.6631066454197887, "y_m": 12.635535027399023, "d_right": 0.6499180158530871, "d_left": 0.8132447695565483, "psi_rad": 4.611704653500712, "kappa_radpm": 0.20730206247116412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 258, "s_m": 25.8, "d_m": 0.0, "x_m": -2.671028285711444, "y_m": 12.536094366083866, "d_right": 0.670071990939997, "d_left": 0.7967205087262359, "psi_rad": 4.6367749822733355, "kappa_radpm": 0.11999503801658928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 259, "s_m": 25.900000000000002, "d_m": 0.0, "x_m": -2.6781784205793797, "y_m": 12.436589853142625, "d_right": 0.6882709766640951, "d_left": 0.7866105249287969, "psi_rad": 4.63570366110403, "kappa_radpm": -0.045141089835156745, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 260, "s_m": 26.0, "d_m": 0.0, "x_m": -2.68631348107636, "y_m": 12.337161617020397, "d_right": 0.7095040264745025, "d_left": 0.7502516968695467, "psi_rad": 4.627746764306305, "kappa_radpm": -0.11411692908546822, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 261, "s_m": 26.1, "d_m": 0.0, "x_m": -2.69504613809879, "y_m": 12.237783427417678, "d_right": 0.7381909444681238, "d_left": 0.7246092458533229, "psi_rad": 4.612880275286936, "kappa_radpm": -0.1318596156508023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 262, "s_m": 26.200000000000003, "d_m": 0.0, "x_m": -2.70613240825855, "y_m": 12.13865166371405, "d_right": 0.7579136715496075, "d_left": 0.7033194643624807, "psi_rad": 4.601374841176144, "kappa_radpm": -0.08401437838822856, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 263, "s_m": 26.3, "d_m": 0.0, "x_m": -2.7171490352995473, "y_m": 12.039502172961706, "d_right": 0.7881810218191525, "d_left": 0.6925604071946355, "psi_rad": 4.596077399609291, "kappa_radpm": -0.06596778153038274, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 264, "s_m": 26.400000000000002, "d_m": 0.0, "x_m": -2.7292862992249702, "y_m": 11.940482358915522, "d_right": 0.8193753854557977, "d_left": 0.6853704176232258, "psi_rad": 4.588181284870068, "kappa_radpm": -0.09640840679916662, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 265, "s_m": 26.5, "d_m": 0.0, "x_m": -2.7418674196975545, "y_m": 11.841518153946797, "d_right": 0.8606652733352969, "d_left": 0.6930677472301836, "psi_rad": 4.576795718249457, "kappa_radpm": -0.14183822972198445, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 266, "s_m": 26.6, "d_m": 0.0, "x_m": -2.7562558245960767, "y_m": 11.74280262929382, "d_right": 0.8794782053887619, "d_left": 0.7074270012442311, "psi_rad": 4.559813638925671, "kappa_radpm": -0.14563146848030506, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 267, "s_m": 26.700000000000003, "d_m": 0.0, "x_m": -2.772190201323192, "y_m": 11.644322995763888, "d_right": 0.8978478065242262, "d_left": 0.7233307255579556, "psi_rad": 4.547669424553396, "kappa_radpm": -0.13569880794669587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 268, "s_m": 26.8, "d_m": 0.0, "x_m": -2.7889720666065108, "y_m": 11.545984384211925, "d_right": 0.9115624511772653, "d_left": 0.7400836533616739, "psi_rad": 4.5326738773363315, "kappa_radpm": -0.17816084846189462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 269, "s_m": 26.900000000000002, "d_m": 0.0, "x_m": -2.8078517796913838, "y_m": 11.448029964551239, "d_right": 0.928210985222126, "d_left": 0.7589337493292624, "psi_rad": 4.512037254861017, "kappa_radpm": -0.12369477776493998, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 270, "s_m": 27.0, "d_m": 0.0, "x_m": -2.828676775420317, "y_m": 11.350468115018575, "d_right": 0.9518268082578776, "d_left": 0.7797315410228437, "psi_rad": 4.5079349217833435, "kappa_radpm": 0.009037934026752126, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 271, "s_m": 27.1, "d_m": 0.0, "x_m": -2.848359193674374, "y_m": 11.2526735504455, "d_right": 0.9779029403155, "d_left": 0.7993965186573769, "psi_rad": 4.5138448416663675, "kappa_radpm": 0.07418929384660489, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 272, "s_m": 27.200000000000003, "d_m": 0.0, "x_m": -2.868028706836792, "y_m": 11.15487691683233, "d_right": 0.9863273981502515, "d_left": 0.8190548537076972, "psi_rad": 4.522772780552664, "kappa_radpm": 0.12541420439361017, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 273, "s_m": 27.3, "d_m": 0.0, "x_m": -2.885961979795207, "y_m": 11.056745979011325, "d_right": 1.0063517343911705, "d_left": 0.8345153076926565, "psi_rad": 4.53892768254509, "kappa_radpm": 0.13446155386968917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 274, "s_m": 27.400000000000002, "d_m": 0.0, "x_m": -2.9024622392250694, "y_m": 10.9583634394178, "d_right": 1.0370053413309923, "d_left": 0.8232322508361312, "psi_rad": 4.549665091326602, "kappa_radpm": 0.020834560349143327, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 275, "s_m": 27.5, "d_m": 0.0, "x_m": -2.918284639606866, "y_m": 10.859867304052733, "d_right": 1.067981928539601, "d_left": 0.823274001090336, "psi_rad": 4.543094594614918, "kappa_radpm": -0.09900478609278007, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 276, "s_m": 27.6, "d_m": 0.0, "x_m": -2.936076332635154, "y_m": 10.761709872031899, "d_right": 1.081100224758758, "d_left": 0.8372775434438066, "psi_rad": 4.529864134108046, "kappa_radpm": -0.0853435376120526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 277, "s_m": 27.700000000000003, "d_m": 0.0, "x_m": -2.954498803848269, "y_m": 10.663668776746032, "d_right": 1.102500385924658, "d_left": 0.8632740881316977, "psi_rad": 4.526025887092508, "kappa_radpm": -0.1086873549608347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 278, "s_m": 27.8, "d_m": 0.0, "x_m": -2.9730411997412696, "y_m": 10.56566285681804, "d_right": 1.132194737006773, "d_left": 0.8997489181754517, "psi_rad": 4.508126663115879, "kappa_radpm": -0.25572214935405846, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 279, "s_m": 27.900000000000002, "d_m": 0.0, "x_m": -2.9949608743172735, "y_m": 10.468342662614965, "d_right": 1.1532875177789295, "d_left": 0.9465149339928753, "psi_rad": 4.474881457221696, "kappa_radpm": -0.3700914600870764, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 280, "s_m": 28.0, "d_m": 0.0, "x_m": -3.019975349516035, "y_m": 10.371781430702368, "d_right": 1.1615476585210833, "d_left": 0.9714121244419328, "psi_rad": 4.434108371098464, "kappa_radpm": -0.3784432119466197, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 281, "s_m": 28.1, "d_m": 0.0, "x_m": -3.0497479011853676, "y_m": 10.276574238928205, "d_right": 1.1733634805599507, "d_left": 1.001049911774374, "psi_rad": 4.399192814832372, "kappa_radpm": -0.2960826288767171, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 282, "s_m": 28.200000000000003, "d_m": 0.0, "x_m": -3.08144197981934, "y_m": 10.181984816579932, "d_right": 1.1914663277077087, "d_left": 1.0326268223899522, "psi_rad": 4.374891845323121, "kappa_radpm": -0.2093874582636146, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 283, "s_m": 28.3, "d_m": 0.0, "x_m": -3.115797790318838, "y_m": 10.088356795814367, "d_right": 1.2020164368527904, "d_left": 1.0668873381856818, "psi_rad": 4.357315323179649, "kappa_radpm": -0.04516614079390635, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 284, "s_m": 28.400000000000002, "d_m": 0.0, "x_m": -3.1507947991526732, "y_m": 9.994943573389529, "d_right": 1.2054797018351104, "d_left": 1.1018295861817857, "psi_rad": 4.365858617164339, "kappa_radpm": 0.1198481649698091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 285, "s_m": 28.5, "d_m": 0.0, "x_m": -3.1835546494585296, "y_m": 9.90071742327001, "d_right": 1.2164360426849004, "d_left": 1.134574784468823, "psi_rad": 4.3812849561736105, "kappa_radpm": 0.014328901361708724, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 286, "s_m": 28.6, "d_m": 0.0, "x_m": -3.2156541364208664, "y_m": 9.80626674265514, "d_right": 1.2360545686244382, "d_left": 1.1666869667997344, "psi_rad": 4.368724397436681, "kappa_radpm": -0.29572894412667194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 287, "s_m": 28.700000000000003, "d_m": 0.0, "x_m": -3.2507687306975277, "y_m": 9.712897966419911, "d_right": 1.2597026749749354, "d_left": 1.201848523580889, "psi_rad": 4.3221391673482765, "kappa_radpm": -0.5163126125389472, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 288, "s_m": 28.8, "d_m": 0.0, "x_m": -3.291512457231446, "y_m": 9.62185230256474, "d_right": 1.263607184362133, "d_left": 1.2144635534581285, "psi_rad": 4.265461874928892, "kappa_radpm": -0.5135448945768162, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 289, "s_m": 28.900000000000002, "d_m": 0.0, "x_m": -3.3369625946344845, "y_m": 9.533054181599281, "d_right": 1.2701550928319647, "d_left": 1.2130116842292729, "psi_rad": 4.219430188432913, "kappa_radpm": -0.359050223422559, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 290, "s_m": 29.0, "d_m": 0.0, "x_m": -3.3859065703587286, "y_m": 9.446135554573488, "d_right": 1.2733134340487104, "d_left": 1.2081241170696964, "psi_rad": 4.19365183024438, "kappa_radpm": -0.2187096358334828, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 291, "s_m": 29.1, "d_m": 0.0, "x_m": -3.4358747918038857, "y_m": 9.359793384473035, "d_right": 1.2829911772488982, "d_left": 1.2108201955632085, "psi_rad": 4.175688261266217, "kappa_radpm": -0.16926853439868772, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 292, "s_m": 29.200000000000003, "d_m": 0.0, "x_m": -3.487907234447455, "y_m": 9.274692524449733, "d_right": 1.2931544997371127, "d_left": 1.2240590186437417, "psi_rad": 4.159798123364642, "kappa_radpm": -0.13104258040794736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 293, "s_m": 29.3, "d_m": 0.0, "x_m": -3.5405916461707374, "y_m": 9.189984742375675, "d_right": 1.3075705391622416, "d_left": 1.2459107898248323, "psi_rad": 4.149479745184627, "kappa_radpm": -0.11933900869702363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 294, "s_m": 29.400000000000002, "d_m": 0.0, "x_m": -3.5943730095593507, "y_m": 9.105969644618291, "d_right": 1.3280792858709116, "d_left": 1.2764353589321682, "psi_rad": 4.135930321625238, "kappa_radpm": -0.06058178868765918, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 295, "s_m": 29.5, "d_m": 0.0, "x_m": -3.649334475149379, "y_m": 9.02271862706226, "d_right": 1.3542978574832185, "d_left": 1.3055594745569599, "psi_rad": 4.137363387447095, "kappa_radpm": 0.11359217756745199, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 296, "s_m": 29.6, "d_m": 0.0, "x_m": -3.702876209772067, "y_m": 8.938547578224428, "d_right": 1.3133806085234132, "d_left": 1.32347353908867, "psi_rad": 4.158648757138728, "kappa_radpm": 0.2136565737872087, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 297, "s_m": 29.700000000000003, "d_m": 0.0, "x_m": -3.7542451802993804, "y_m": 8.853032480668215, "d_right": 1.2798734152834137, "d_left": 1.338356167583315, "psi_rad": 4.180094702204537, "kappa_radpm": 0.22264608802561758, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 298, "s_m": 29.8, "d_m": 0.0, "x_m": -3.804127565897353, "y_m": 8.766644643047607, "d_right": 1.255112225664038, "d_left": 1.3587393248064108, "psi_rad": 4.203177974743852, "kappa_radpm": 0.30710662337958494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 299, "s_m": 29.900000000000002, "d_m": 0.0, "x_m": -3.8514925075212787, "y_m": 8.678855038176293, "d_right": 1.2327595597312275, "d_left": 1.3832638509849502, "psi_rad": 4.241516026880454, "kappa_radpm": 0.48417283851589055, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 300, "s_m": 30.0, "d_m": 0.0, "x_m": -3.894599126595992, "y_m": 8.58892345946594, "d_right": 1.2088191922094325, "d_left": 1.3939640301139784, "psi_rad": 4.30001254244703, "kappa_radpm": 0.6212541615136669, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 301, "s_m": 30.1, "d_m": 0.0, "x_m": -3.9313879124354973, "y_m": 8.496220058189992, "d_right": 1.1839611636385488, "d_left": 1.3813676026774209, "psi_rad": 4.3657668591831875, "kappa_radpm": 0.6690170866160172, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 302, "s_m": 30.200000000000003, "d_m": 0.0, "x_m": -3.9623319349715804, "y_m": 8.40140455547456, "d_right": 1.1733100410571735, "d_left": 1.3681883601308034, "psi_rad": 4.433815959770233, "kappa_radpm": 0.7023557056702767, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 303, "s_m": 30.3, "d_m": 0.0, "x_m": -3.9862003167255478, "y_m": 8.304574986205358, "d_right": 1.1678421445606744, "d_left": 1.3496913531618866, "psi_rad": 4.506238000317243, "kappa_radpm": 0.6792523402590778, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 304, "s_m": 30.400000000000002, "d_m": 0.0, "x_m": -4.003134165118263, "y_m": 8.206292320822115, "d_right": 1.1622325673027674, "d_left": 1.331348408474825, "psi_rad": 4.569666427822049, "kappa_radpm": 0.4377722237196324, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 305, "s_m": 30.5, "d_m": 0.0, "x_m": -4.014563536348321, "y_m": 8.107196412159684, "d_right": 1.1646407873769995, "d_left": 1.2919476235324165, "psi_rad": 4.593792445061169, "kappa_radpm": 0.0491122224040641, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 306, "s_m": 30.6, "d_m": 0.0, "x_m": -4.026740052888392, "y_m": 8.008182734962602, "d_right": 1.1747970604485816, "d_left": 1.2492906768880032, "psi_rad": 4.5794888723028615, "kappa_radpm": -0.27058127942070964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 307, "s_m": 30.700000000000003, "d_m": 0.0, "x_m": -4.040997149004488, "y_m": 7.90947044999583, "d_right": 1.1795457584641496, "d_left": 1.2151851371277897, "psi_rad": 4.539676189177028, "kappa_radpm": -0.32728436608624456, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 308, "s_m": 30.8, "d_m": 0.0, "x_m": -4.061007567496384, "y_m": 7.81175197346206, "d_right": 1.1827135551630297, "d_left": 1.194212857365093, "psi_rad": 4.514031999085613, "kappa_radpm": -0.08227864097918758, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 309, "s_m": 30.900000000000002, "d_m": 0.0, "x_m": -4.080311459168404, "y_m": 7.713876936096577, "d_right": 1.1771296095662738, "d_left": 1.1805962836612718, "psi_rad": 4.5232204609811895, "kappa_radpm": 0.03587129083232554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 310, "s_m": 31.0, "d_m": 0.0, "x_m": -4.098522484746064, "y_m": 7.615808382410869, "d_right": 1.175010800953757, "d_left": 1.1742098029731005, "psi_rad": 4.521206257252078, "kappa_radpm": -0.1604130745568888, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 311, "s_m": 31.1, "d_m": 0.0, "x_m": -4.118217884454882, "y_m": 7.518025249164287, "d_right": 1.1733615570303475, "d_left": 1.1777850576265705, "psi_rad": 4.491137846069812, "kappa_radpm": -0.3124319442136292, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 312, "s_m": 31.200000000000003, "d_m": 0.0, "x_m": -4.1422927714263285, "y_m": 7.421216251732138, "d_right": 1.1669368143469114, "d_left": 1.1789047898060965, "psi_rad": 4.458719868409352, "kappa_radpm": -0.2639524662732695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 313, "s_m": 31.3, "d_m": 0.0, "x_m": -4.16828589835948, "y_m": 7.324901804686937, "d_right": 1.1581404829024884, "d_left": 1.1898357382390947, "psi_rad": 4.438347352815159, "kappa_radpm": -0.17182826794420514, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 314, "s_m": 31.400000000000002, "d_m": 0.0, "x_m": -4.19628446392199, "y_m": 7.229153072290118, "d_right": 1.154650868886039, "d_left": 1.2045319731194422, "psi_rad": 4.424354214820511, "kappa_radpm": -0.05766164229832338, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 315, "s_m": 31.5, "d_m": 0.0, "x_m": -4.2249609254445755, "y_m": 7.133609063914422, "d_right": 1.135735260408948, "d_left": 1.2265156578020113, "psi_rad": 4.426815024355493, "kappa_radpm": -0.04537884912100054, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 316, "s_m": 31.6, "d_m": 0.0, "x_m": -4.2524868544605745, "y_m": 7.037727338231759, "d_right": 1.1265739465572056, "d_left": 1.254152338371251, "psi_rad": 4.415278444996311, "kappa_radpm": -0.17582870528024097, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 317, "s_m": 31.700000000000003, "d_m": 0.0, "x_m": -4.28335787678263, "y_m": 6.942877256578104, "d_right": 1.1180886504342473, "d_left": 1.2851758933866861, "psi_rad": 4.391649283299445, "kappa_radpm": -0.10832439340216604, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 318, "s_m": 31.8, "d_m": 0.0, "x_m": -4.315382609212923, "y_m": 6.848402353488778, "d_right": 1.0966510695225846, "d_left": 1.2885193857829407, "psi_rad": 4.393613566315878, "kappa_radpm": 0.08207681491380292, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 319, "s_m": 31.900000000000002, "d_m": 0.0, "x_m": -4.345883143369292, "y_m": 6.753424484087029, "d_right": 1.0856058275353797, "d_left": 1.275732890842378, "psi_rad": 4.408064646282206, "kappa_radpm": 0.10611162393831419, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 320, "s_m": 32.0, "d_m": 0.0, "x_m": -4.3751660306340705, "y_m": 6.658058242031938, "d_right": 1.0767770093099602, "d_left": 1.2559649775964297, "psi_rad": 4.41483589110354, "kappa_radpm": 0.03703597294426153, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 321, "s_m": 32.1, "d_m": 0.0, "x_m": -4.404379247930507, "y_m": 6.562670440437245, "d_right": 1.05919358053929, "d_left": 1.2347925895065122, "psi_rad": 4.415471840871058, "kappa_radpm": 0.028684963083041026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 322, "s_m": 32.2, "d_m": 0.0, "x_m": -4.433540877449247, "y_m": 6.467266826987203, "d_right": 1.050881138571734, "d_left": 1.215685289605229, "psi_rad": 4.420572883720149, "kappa_radpm": 0.13577676441920872, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 323, "s_m": 32.300000000000004, "d_m": 0.0, "x_m": -4.461777101070127, "y_m": 6.371593734084772, "d_right": 1.0408513330606644, "d_left": 1.203603044127174, "psi_rad": 4.4426271937549, "kappa_radpm": 0.10552257130982401, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 324, "s_m": 32.4, "d_m": 0.0, "x_m": -4.4867018447265705, "y_m": 6.275004108389138, "d_right": 1.0288046882655586, "d_left": 1.1962856401075468, "psi_rad": 4.441677397982113, "kappa_radpm": -0.11956239543345681, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 325, "s_m": 32.5, "d_m": 0.0, "x_m": -4.515121419623888, "y_m": 6.179378837873549, "d_right": 1.022731452342573, "d_left": 1.1800497509656378, "psi_rad": 4.418714714668209, "kappa_radpm": -0.24919731688058722, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 326, "s_m": 32.6, "d_m": 0.0, "x_m": -4.5444447129060075, "y_m": 6.084067250102363, "d_right": 1.0090533222241038, "d_left": 1.170444787794468, "psi_rad": 4.391837934605996, "kappa_radpm": -0.3324341677630249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 327, "s_m": 32.7, "d_m": 0.0, "x_m": -4.577959759620001, "y_m": 5.99010734402804, "d_right": 0.9893079977001082, "d_left": 1.1652551402624052, "psi_rad": 4.352227881115604, "kappa_radpm": -0.32860877478121386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 328, "s_m": 32.800000000000004, "d_m": 0.0, "x_m": -4.61474489770465, "y_m": 5.897390002453222, "d_right": 0.975885346011263, "d_left": 1.1548622888019255, "psi_rad": 4.326116179649754, "kappa_radpm": -0.23419748420910214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 329, "s_m": 32.9, "d_m": 0.0, "x_m": -4.653117766957912, "y_m": 5.805309805158198, "d_right": 0.9506130008523859, "d_left": 1.149095868300631, "psi_rad": 4.305388384273783, "kappa_radpm": -0.18192063620255938, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 330, "s_m": 33.0, "d_m": 0.0, "x_m": -4.693717640504181, "y_m": 5.714188263795499, "d_right": 0.9241814585213847, "d_left": 1.154387528184696, "psi_rad": 4.289732052409241, "kappa_radpm": -0.19049815370399736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 331, "s_m": 33.1, "d_m": 0.0, "x_m": -4.734953612550535, "y_m": 5.623356594668741, "d_right": 0.9034217847978326, "d_left": 1.123136197633782, "psi_rad": 4.267288753532984, "kappa_radpm": -0.30913495461582174, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 332, "s_m": 33.2, "d_m": 0.0, "x_m": -4.7796024902733825, "y_m": 5.5341460531418045, "d_right": 0.8737063133074221, "d_left": 1.0639704639537149, "psi_rad": 4.2279050614860765, "kappa_radpm": -0.31007963334170885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 333, "s_m": 33.300000000000004, "d_m": 0.0, "x_m": -4.827859423039755, "y_m": 5.446838120142505, "d_right": 0.8301517023408771, "d_left": 1.0042128863837987, "psi_rad": 4.2052728268646415, "kappa_radpm": -0.09929742604102954, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 334, "s_m": 33.4, "d_m": 0.0, "x_m": -4.876499676005404, "y_m": 5.359738369633237, "d_right": 0.7949917812768837, "d_left": 0.9515647007104628, "psi_rad": 4.208045576277871, "kappa_radpm": 0.06180963297311992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 335, "s_m": 33.5, "d_m": 0.0, "x_m": -4.924272996291581, "y_m": 5.27216180498376, "d_right": 0.7721924023930172, "d_left": 0.9059668370136289, "psi_rad": 4.217634753459266, "kappa_radpm": 0.1380405614225766, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 336, "s_m": 33.6, "d_m": 0.0, "x_m": -4.9712248251276465, "y_m": 5.184162282229888, "d_right": 0.7446307067299341, "d_left": 0.8686019941640059, "psi_rad": 4.235653688562387, "kappa_radpm": 0.16468024175229745, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 337, "s_m": 33.7, "d_m": 0.0, "x_m": -5.015811702092651, "y_m": 5.094922071081168, "d_right": 0.7264048596346321, "d_left": 0.8384413310127525, "psi_rad": 4.250570801809726, "kappa_radpm": 0.11414776063498833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 338, "s_m": 33.800000000000004, "d_m": 0.0, "x_m": -5.060125040284112, "y_m": 5.0055456809581065, "d_right": 0.6912114779509432, "d_left": 0.8079216323220171, "psi_rad": 4.258483240689384, "kappa_radpm": 0.19185780844439337, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 339, "s_m": 33.9, "d_m": 0.0, "x_m": -5.103290654332717, "y_m": 4.915618313047305, "d_right": 0.6591892723004151, "d_left": 0.7876596447643275, "psi_rad": 4.288942363498604, "kappa_radpm": 0.41065549041933824, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 340, "s_m": 34.0, "d_m": 0.0, "x_m": -5.142075095034618, "y_m": 4.823722496852442, "d_right": 0.6348323491517487, "d_left": 0.7716199615082473, "psi_rad": 4.340614338773252, "kappa_radpm": 0.4568878039473345, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 341, "s_m": 34.1, "d_m": 0.0, "x_m": -5.175734068088336, "y_m": 4.729821276320588, "d_right": 0.6255408254349182, "d_left": 0.7419638564098865, "psi_rad": 4.380319924288071, "kappa_radpm": 0.43101011111538856, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 342, "s_m": 34.2, "d_m": 0.0, "x_m": -5.207107569113888, "y_m": 4.63513418962837, "d_right": 0.610149561893296, "d_left": 0.7225302173293441, "psi_rad": 4.426816360996329, "kappa_radpm": 0.5391566312050244, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 343, "s_m": 34.300000000000004, "d_m": 0.0, "x_m": -5.231895685078077, "y_m": 4.538533471327591, "d_right": 0.6176750271772844, "d_left": 0.6948455861316273, "psi_rad": 4.488151250529076, "kappa_radpm": 0.5453424148738328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 344, "s_m": 34.4, "d_m": 0.0, "x_m": -5.251445061051705, "y_m": 4.440734011426911, "d_right": 0.6008892205253727, "d_left": 0.6609400637865935, "psi_rad": 4.535884843971096, "kappa_radpm": 0.36125371319417177, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 345, "s_m": 34.5, "d_m": 0.0, "x_m": -5.266917044377074, "y_m": 4.3421815859824635, "d_right": 0.6034767371933489, "d_left": 0.6268428659008549, "psi_rad": 4.56040199316791, "kappa_radpm": 0.2660298202220712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 346, "s_m": 34.6, "d_m": 0.0, "x_m": -5.28165277278561, "y_m": 4.243514805610251, "d_right": 0.6083781114616624, "d_left": 0.6066529762363515, "psi_rad": 4.58909080801551, "kappa_radpm": 0.24851947259954876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 347, "s_m": 34.7, "d_m": 0.0, "x_m": -5.291444860970604, "y_m": 4.144259785878842, "d_right": 0.6105444109584574, "d_left": 0.5975400592834428, "psi_rad": 4.61010588768782, "kappa_radpm": 0.13374074416832027, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 348, "s_m": 34.800000000000004, "d_m": 0.0, "x_m": -5.302021946710007, "y_m": 4.045064691858439, "d_right": 0.605143593957863, "d_left": 0.6057390661202271, "psi_rad": 4.615838956849174, "kappa_radpm": 0.07311699299974217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 349, "s_m": 34.9, "d_m": 0.0, "x_m": -5.310677151100198, "y_m": 3.9456840453929405, "d_right": 0.6179572659689304, "d_left": 0.6127310905904628, "psi_rad": 4.624729286287769, "kappa_radpm": 0.04984484818066015, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 350, "s_m": 35.0, "d_m": 0.0, "x_m": -5.319488794177883, "y_m": 3.8463178789675823, "d_right": 0.6372878877491598, "d_left": 0.6204763111980405, "psi_rad": 4.625807926485306, "kappa_radpm": 0.004762615829505545, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 351, "s_m": 35.1, "d_m": 0.0, "x_m": -5.3279295565482885, "y_m": 3.746919148233049, "d_right": 0.6520868912795431, "d_left": 0.5967219548918816, "psi_rad": 4.62568180945367, "kappa_radpm": -0.06047999435663476, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 352, "s_m": 35.2, "d_m": 0.0, "x_m": -5.336766359731242, "y_m": 3.647554093883116, "d_right": 0.6624839923160827, "d_left": 0.5895205666902598, "psi_rad": 4.613711927613979, "kappa_radpm": -0.042552356132907754, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 353, "s_m": 35.300000000000004, "d_m": 0.0, "x_m": -5.347583938480621, "y_m": 3.5483871967020777, "d_right": 0.6516478929456816, "d_left": 0.600362589331877, "psi_rad": 4.617171338227088, "kappa_radpm": 0.10121419475262572, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 354, "s_m": 35.4, "d_m": 0.0, "x_m": -5.355732407445152, "y_m": 3.4489701477785917, "d_right": 0.6434871075483266, "d_left": 0.608524211966287, "psi_rad": 4.6339547665645044, "kappa_radpm": 0.11435488877105993, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 355, "s_m": 35.5, "d_m": 0.0, "x_m": -5.36321634299099, "y_m": 3.349490132132238, "d_right": 0.6359924803508278, "d_left": 0.6160184691555408, "psi_rad": 4.6400423159813, "kappa_radpm": 0.045804323806772906, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 356, "s_m": 35.6, "d_m": 0.0, "x_m": -5.37015450136757, "y_m": 3.2499710188104016, "d_right": 0.6395408636885603, "d_left": 0.6229655918191838, "psi_rad": 4.643115631325859, "kappa_radpm": -0.033331450223814674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 357, "s_m": 35.7, "d_m": 0.0, "x_m": -5.377026164667483, "y_m": 3.150456526610565, "d_right": 0.6584251617191241, "d_left": 0.6298467923688772, "psi_rad": 4.633376025936537, "kappa_radpm": -0.0836220350431649, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 358, "s_m": 35.800000000000004, "d_m": 0.0, "x_m": -5.385901380495117, "y_m": 3.051091023898135, "d_right": 0.6894786953982122, "d_left": 0.638737104488036, "psi_rad": 4.626391224317226, "kappa_radpm": 0.0088216539354935, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 359, "s_m": 35.9, "d_m": 0.0, "x_m": -5.394163365250117, "y_m": 2.95167304884101, "d_right": 0.70706910709691, "d_left": 0.647012004886958, "psi_rad": 4.635140356723635, "kappa_radpm": 0.08632426016578876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 360, "s_m": 36.0, "d_m": 0.0, "x_m": -5.4012985038158, "y_m": 2.852168587127104, "d_right": 0.7148872987690637, "d_left": 0.6541567764101881, "psi_rad": 4.643656076350384, "kappa_radpm": 0.06700183702305074, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 361, "s_m": 36.1, "d_m": 0.0, "x_m": -5.407865614297196, "y_m": 2.752632065531726, "d_right": 0.7368081658974669, "d_left": 0.6607327417710368, "psi_rad": 4.648540724128246, "kappa_radpm": 0.035476291995606424, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 362, "s_m": 36.2, "d_m": 0.0, "x_m": -5.414027822270867, "y_m": 2.653071273405713, "d_right": 0.7353503762602955, "d_left": 0.6669031464385824, "psi_rad": 4.650751334749505, "kappa_radpm": 0.001164576781800264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 363, "s_m": 36.300000000000004, "d_m": 0.0, "x_m": -5.420155289086437, "y_m": 2.5534987748643148, "d_right": 0.7292397719489986, "d_left": 0.6730250173415838, "psi_rad": 4.648773639484606, "kappa_radpm": -0.01851942202795165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 364, "s_m": 36.4, "d_m": 0.0, "x_m": -5.426711893048203, "y_m": 2.4539533320047076, "d_right": 0.7261456633629196, "d_left": 0.6795377878846328, "psi_rad": 4.647047450343915, "kappa_radpm": -0.010790470755597248, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 365, "s_m": 36.5, "d_m": 0.0, "x_m": -5.433183099734968, "y_m": 2.3544023572025283, "d_right": 0.7367585424007264, "d_left": 0.685966796221458, "psi_rad": 4.6466155453334865, "kappa_radpm": -0.10797790214302161, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 366, "s_m": 36.6, "d_m": 0.0, "x_m": -5.439825280826932, "y_m": 2.254868820537625, "d_right": 0.760257351300996, "d_left": 0.6925660881017505, "psi_rad": 4.62545186991531, "kappa_radpm": -0.32824493449644443, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 367, "s_m": 36.7, "d_m": 0.0, "x_m": -5.450500812846791, "y_m": 2.1557062931848217, "d_right": 0.773198971605921, "d_left": 0.7031646561051708, "psi_rad": 4.580966558434198, "kappa_radpm": -0.336725884435507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 368, "s_m": 36.800000000000004, "d_m": 0.0, "x_m": -5.465960435306841, "y_m": 2.057151315133616, "d_right": 0.7892245080889857, "d_left": 0.7318159259572707, "psi_rad": 4.5581066930282095, "kappa_radpm": -0.023569056823109502, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 369, "s_m": 36.9, "d_m": 0.0, "x_m": -5.481160949942576, "y_m": 1.9585580481693416, "d_right": 0.7965098551699709, "d_left": 0.7721476628291412, "psi_rad": 4.576252747069576, "kappa_radpm": 0.30567904319225736, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 370, "s_m": 37.0, "d_m": 0.0, "x_m": -5.493033110226477, "y_m": 1.859516779271824, "d_right": 0.8065690680178191, "d_left": 0.814164920274779, "psi_rad": 4.61924250166666, "kappa_radpm": 0.529871237840529, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 371, "s_m": 37.1, "d_m": 0.0, "x_m": -5.499709414052472, "y_m": 1.7600020801463545, "d_right": 0.7998798060442749, "d_left": 0.8465019893507021, "psi_rad": 4.6822269946376815, "kappa_radpm": 0.7309473550838863, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 372, "s_m": 37.2, "d_m": 0.0, "x_m": -5.499044483409799, "y_m": 1.6602742564654909, "d_right": 0.8105816586583527, "d_left": 0.8823118082096313, "psi_rad": -1.517753334496148, "kappa_radpm": 0.9350611349209492, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 373, "s_m": 37.300000000000004, "d_m": 0.0, "x_m": -5.489146324846336, "y_m": 1.5610468503396728, "d_right": 0.8419077146795831, "d_left": 0.9135426606492782, "psi_rad": -1.4139460855577148, "kappa_radpm": 1.0504948099203593, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 374, "s_m": 37.4, "d_m": 0.0, "x_m": -5.467943614753581, "y_m": 1.4636191459603316, "d_right": 0.8823635892081226, "d_left": 0.9201985426944351, "psi_rad": -1.3076543725120762, "kappa_radpm": 1.152627080078159, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 375, "s_m": 37.5, "d_m": 0.0, "x_m": -5.4373437153035225, "y_m": 1.3687499373747796, "d_right": 0.9228220858921097, "d_left": 0.9278835436448871, "psi_rad": -1.183420669542083, "kappa_radpm": 1.4266417973409662, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 376, "s_m": 37.6, "d_m": 0.0, "x_m": -5.392865372371785, "y_m": 1.279599536919753, "d_right": 0.9007867961929716, "d_left": 0.9307607981846828, "psi_rad": -1.022326013043883, "kappa_radpm": 1.6835514249561179, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 377, "s_m": 37.7, "d_m": 0.0, "x_m": -5.333858490645871, "y_m": 1.1993803748838292, "d_right": 0.8214939822503858, "d_left": 0.9177919065669183, "psi_rad": -0.8467103845508595, "kappa_radpm": 1.8125934854532266, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 378, "s_m": 37.800000000000004, "d_m": 0.0, "x_m": -5.261463920989482, "y_m": 1.1310096511662027, "d_right": 0.7529337995099844, "d_left": 0.8976872976672485, "psi_rad": -0.6598073159532376, "kappa_radpm": 1.780572898689825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 379, "s_m": 37.9, "d_m": 0.0, "x_m": -5.177248697175001, "y_m": 1.077883090053779, "d_right": 0.6992895224142646, "d_left": 0.8692449938116923, "psi_rad": -0.49059580481289444, "kappa_radpm": 1.4850812801743773, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 380, "s_m": 38.0, "d_m": 0.0, "x_m": -5.08617041270097, "y_m": 1.0373759745955689, "d_right": 0.6586185147928822, "d_left": 0.8336069940764643, "psi_rad": -0.36279105991836214, "kappa_radpm": 1.1870590982945928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 381, "s_m": 38.1, "d_m": 0.0, "x_m": -4.991128517366684, "y_m": 1.007233227384821, "d_right": 0.6284296541667914, "d_left": 0.790694524919136, "psi_rad": -0.2531839851539759, "kappa_radpm": 0.9597620203909185, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 382, "s_m": 38.2, "d_m": 0.0, "x_m": -4.893390864161314, "y_m": 0.9874969129466866, "d_right": 0.6086840065083603, "d_left": 0.7483417408956178, "psi_rad": -0.17083865584017843, "kappa_radpm": 0.6597733133962203, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 383, "s_m": 38.300000000000004, "d_m": 0.0, "x_m": -4.79465589021313, "y_m": 0.9733377079755021, "d_right": 0.5973873214819728, "d_left": 0.7119823114554809, "psi_rad": -0.12122932247473184, "kappa_radpm": 0.3850743949994917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 384, "s_m": 38.400000000000006, "d_m": 0.0, "x_m": -4.695401757117087, "y_m": 0.9633765496778894, "d_right": 0.5959958173247463, "d_left": 0.678826084947511, "psi_rad": -0.0938237768402801, "kappa_radpm": 0.20954967554407622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 385, "s_m": 38.5, "d_m": 0.0, "x_m": -4.596026638671481, "y_m": 0.9546466841133363, "d_right": 0.6123100537604076, "d_left": 0.6371623746792109, "psi_rad": -0.0793193873659166, "kappa_radpm": 0.15226893579358802, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 386, "s_m": 38.6, "d_m": 0.0, "x_m": -4.496519015369401, "y_m": 0.947568125286432, "d_right": 0.6453711472200008, "d_left": 0.6075203426556286, "psi_rad": -0.06336998968156249, "kappa_radpm": 0.1737358230506214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 387, "s_m": 38.7, "d_m": 0.0, "x_m": -4.396914462424114, "y_m": 0.9420120304692118, "d_right": 0.6871596918725712, "d_left": 0.591849420943934, "psi_rad": -0.04457222275579231, "kappa_radpm": 0.0646922895773383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 388, "s_m": 38.800000000000004, "d_m": 0.0, "x_m": -4.297222156479223, "y_m": 0.9386791339815628, "d_right": 0.7109913877181319, "d_left": 0.5905670282250446, "psi_rad": -0.05043153176609483, "kappa_radpm": -0.18142487434937737, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 389, "s_m": 38.900000000000006, "d_m": 0.0, "x_m": -4.1977061990907565, "y_m": 0.9319571268189503, "d_right": 0.7056551886874501, "d_left": 0.6092154615261637, "psi_rad": -0.08085719762566779, "kappa_radpm": -0.21917950371054595, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 390, "s_m": 39.0, "d_m": 0.0, "x_m": -4.098388665243814, "y_m": 0.9225668864240298, "d_right": 0.7116983842446016, "d_left": 0.6454106949473445, "psi_rad": -0.09426743250820402, "kappa_radpm": -0.13410234882536232, "vx_mps": 0.0, "ax_mps2": 0.0}]}, "global_traj_markers_iqp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.007209469456436, "y": 1.1801281776747616, "z": 0.18784448703249595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3756889740649919}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -3.908643196047879, "y": 1.1956090921037232, "z": 0.18947858469914258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37895716939828517}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -3.811381528292685, "y": 1.2184587041137849, "z": 0.19145152788716577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38290305577433154}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -3.7160910950135473, "y": 1.2482361762050393, "z": 0.19360518549241165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3872103709848233}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -3.6230466581960963, "y": 1.2845022373110346, "z": 0.19610861754866657}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39221723509733314}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -3.532570012969888, "y": 1.3267961632241752, "z": 0.19885179273392564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3977035854678513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -3.4449597984269658, "y": 1.374660375953445, "z": 0.2017651646509043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4035303293018086}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -3.360324804168789, "y": 1.4277208323838215, "z": 0.20479165655929502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40958331311859003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -3.2788734866765368, "y": 1.4854263659013638, "z": 0.20817339280114347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41634678560228694}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -3.200516429975397, "y": 1.5474239489112906, "z": 0.21188207510868584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4237641502173717}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -3.1255252582904443, "y": 1.6132789410943766, "z": 0.21544405181353743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43088810362707486}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -3.0538450027656676, "y": 1.6828779334619257, "z": 0.21880708259400164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4376141651880033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -2.9856467051768587, "y": 1.755749158270549, "z": 0.22229916099642388}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44459832199284777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -2.9207477713658774, "y": 1.8317161953973693, "z": 0.22596443089491225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4519288617898245}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -2.8592245970821115, "y": 1.9103058723409647, "z": 0.22980114267574575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4596022853514915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -2.8008634995909243, "y": 1.9914032585181387, "z": 0.23380491953155774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4676098390631155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -2.745719664329014, "y": 2.0745932189214993, "z": 0.23786588383197635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4757317676639527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -2.6936011486484976, "y": 2.1598295378099275, "z": 0.24197571471526108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48395142943052216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -2.6444971306669878, "y": 2.2467289844961105, "z": 0.24622953200701495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4924590640140299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -2.59818173508952, "y": 2.335248369596426, "z": 0.25065339229056116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5013067845811223}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -2.5545992834604836, "y": 2.4250491080291763, "z": 0.2552248417028706}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5104496834057412}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -2.513530926740804, "y": 2.516113861847299, "z": 0.25995382222335106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5199076444467021}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -2.4748775527762716, "y": 2.608152795976133, "z": 0.26487435223414596}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5297487044682919}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -2.4384143979565667, "y": 2.701150338655394, "z": 0.2700062834958753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5400125669917506}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -2.4040056173426487, "y": 2.794867271042353, "z": 0.2753681400698406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5507362801396812}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -2.371428876950844, "y": 2.8892841925242356, "z": 0.2809801283884265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.561960256776853}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -2.3405207988302688, "y": 2.9842264102978184, "z": 0.2865153093746031}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5730306187492062}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -2.3110737031193214, "y": 3.0796503680402, "z": 0.2918917302878151}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5837834605756302}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -2.2829032328117855, "y": 3.1754577820068075, "z": 0.2971194504695832}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5942389009391664}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -2.255822773964416, "y": 3.2715623068650257, "z": 0.3022075151760897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6044150303521794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -2.22963204043126, "y": 3.367949801771381, "z": 0.30716409319672733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6143281863934547}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -2.2041693411475656, "y": 3.4644767662919302, "z": 0.3119965913516291}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6239931827032582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -2.1792235200359773, "y": 3.5612148355559783, "z": 0.31671175044593713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6334235008918743}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -2.154660112485551, "y": 3.657957603650565, "z": 0.32131572622446497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6426314524489299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -2.1302622536722637, "y": 3.7548537641183617, "z": 0.3258141580968271}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6516283161936542}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -2.105921955062988, "y": 3.8516411083349555, "z": 0.3302122278180827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6604244556361654}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -2.081421838281059, "y": 3.9485238038101547, "z": 0.3345147098630075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.669029419726015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -2.056675985733076, "y": 4.045204589045552, "z": 0.33872601488745147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6774520297749029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -2.0314722187830476, "y": 4.141909983507486, "z": 0.3428502274021162}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6857004548042324}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -2.0057389324294643, "y": 4.238338753555227, "z": 0.3468911385737855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.693782277147571}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -1.979275617781065, "y": 4.334700386647137, "z": 0.3497771345239315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.699554269047863}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -1.9520146682944328, "y": 4.430723860250527, "z": 0.3441633662844613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6883267325689226}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -1.923773825548121, "y": 4.526563930489054, "z": 0.3388023570216779}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6776047140433558}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -1.894478138090216, "y": 4.622008144703077, "z": 0.3336729648205276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6673459296410552}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -1.8639702225243073, "y": 4.717129250710078, "z": 0.32876993245757574}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6575398649151515}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -1.832158602529715, "y": 4.811788800489227, "z": 0.32407755202836996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6481551040567399}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -1.7989163142696365, "y": 4.905965506733566, "z": 0.31959458424630205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6391891684926041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -1.7641292453330957, "y": 4.999595372367436, "z": 0.31531947286288214}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6306389457257643}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -1.7277020339523743, "y": 5.0925639046167515, "z": 0.311255522918798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.622511045837596}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -1.6894937005744217, "y": 5.184867115192703, "z": 0.30741274397509916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6148254879501983}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -1.6494373093112487, "y": 5.27631288375347, "z": 0.3037981451865953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6075962903731906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -1.6073677097958312, "y": 5.366930154028029, "z": 0.3004329885326718}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6008659770653436}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -1.5632404635380348, "y": 5.4564715872576475, "z": 0.2973297033284091}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5946594066568182}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -1.5168745461674338, "y": 5.544966302652686, "z": 0.29452155071660274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5890431014332055}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -1.4682379834895798, "y": 5.632138126262273, "z": 0.29202573057978953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5840514611595791}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -1.4171494632574686, "y": 5.717981663877719, "z": 0.2898808566803335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.579761713360667}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -1.3635787546176577, "y": 5.80221875240386, "z": 0.2881115210738488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5762230421476976}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -1.3073671543770349, "y": 5.884776429060084, "z": 0.2867963104287058}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5735926208574116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -1.2484647899057753, "y": 5.965393389931108, "z": 0.28597268026574374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5719453605314875}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -1.186765509166594, "y": 6.043904683792001, "z": 0.28549815088914615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5709963017782923}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -1.1222359960798236, "y": 6.120120049049793, "z": 0.28538799315165475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5707759863033095}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -1.0549574380812543, "y": 6.19385561093398, "z": 0.28527779287763755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5705555857552751}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -0.9851500002549441, "y": 6.265319594530251, "z": 0.2862494992207321}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5724989984414642}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -0.9133182684004653, "y": 6.334599317206183, "z": 0.2883495725666636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5766991451333272}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -0.8396465887229931, "y": 6.40211052601173, "z": 0.29153859564215545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5830771912843109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -0.76461096615983, "y": 6.467955390238261, "z": 0.2957658834872245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.591531766974449}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -0.688271601363904, "y": 6.532404103111169, "z": 0.30037488830839926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6007497766167985}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -0.6108530182694077, "y": 6.59553986272508, "z": 0.30529334380681594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6105866876136319}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -0.5326139246028024, "y": 6.657571770601273, "z": 0.3066531379682029}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6133062759364059}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -0.4536596315191861, "y": 6.718859150885733, "z": 0.29954693354363665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5990938670872733}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -0.37437526141644606, "y": 6.7794632831984485, "z": 0.2912783508796387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5825567017592774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -0.29463066789368725, "y": 6.839832729878382, "z": 0.281847613364459}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.563695226728918}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -0.21504652682910347, "y": 6.899936755678244, "z": 0.271318027849491}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.542636055698982}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -0.13541736311772823, "y": 6.960377093936569, "z": 0.2608605054964216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5217210109928432}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -0.056254160679701126, "y": 7.021057011031723, "z": 0.2503477936174266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5006955872348532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": 0.022620525163734993, "y": 7.082444451067355, "z": 0.24095712105074518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48191424210149036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": 0.10051491593062296, "y": 7.1448001921583515, "z": 0.23273327746083303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46546655492166605}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": 0.17722852858043409, "y": 7.2087801497380815, "z": 0.22422543863267763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44845087726535526}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": 0.25252770786981515, "y": 7.274320695703579, "z": 0.21497002864125436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4299400572825087}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": 0.3261915636094835, "y": 7.341307748306701, "z": 0.20589995072022024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4117999014404405}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": 0.39837577288897197, "y": 7.410730509542324, "z": 0.1973628303093061}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3947256606186122}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": 0.46761760490210263, "y": 7.4825640525106945, "z": 0.19267992264956268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38535984529912537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": 0.5326233172832399, "y": 7.558476977290656, "z": 0.19260557826493888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38521115652987775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": 0.5915261238770252, "y": 7.63909119971398, "z": 0.19253120517282785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3850624103456557}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": 0.6446069827087005, "y": 7.723659715803054, "z": 0.1948562349724859}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3897124699449718}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": 0.6924498526914389, "y": 7.8112630335803805, "z": 0.19919259750801496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3983851950160299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": 0.7348413346516514, "y": 7.901707479900535, "z": 0.2022885148315029}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4045770296630058}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": 0.7712845946504082, "y": 7.994636745716809, "z": 0.2042638914805236}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4085277829610472}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": 0.801571803664725, "y": 8.089813484292396, "z": 0.2058496887634629}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4116993775269258}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": 0.8255357314151723, "y": 8.186737696691, "z": 0.20705784255348156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4141156851069631}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": 0.8433572141597705, "y": 8.284994855365811, "z": 0.20881164582170886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4176232916434177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": 0.8552951307661311, "y": 8.384158235544422, "z": 0.21097352137190775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4219470427438155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": 0.8617097991393701, "y": 8.483781404442452, "z": 0.2137603928932011}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4275207857864022}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": 0.8629807452825767, "y": 8.583675238373761, "z": 0.2170706851042362}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4341413702084724}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": 0.8594067053477963, "y": 8.683423722152305, "z": 0.22060841875166412}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44121683750332824}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": 0.8513253134446964, "y": 8.783006707099334, "z": 0.22436777497943433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44873554995886866}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": 0.839327405961364, "y": 8.882092688585502, "z": 0.2290876608803886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4581753217607772}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": 0.8239218555540645, "y": 8.980781019923567, "z": 0.23468006266745417}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46936012533490834}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": 0.8053098391683232, "y": 9.078867888482307, "z": 0.23998076278038977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47996152556077953}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": 0.7836274954552792, "y": 9.176342601706875, "z": 0.2450785222431857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4901570444863714}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": 0.759132119998, "y": 9.273162833236725, "z": 0.2504026177093185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.500805235418637}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": 0.7321401999492888, "y": 9.369310201706485, "z": 0.25598269419928893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5119653883985779}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": 0.703089781377215, "y": 9.464851599580248, "z": 0.2623159975041329}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5246319950082659}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": 0.6723994467345114, "y": 9.55984012431808, "z": 0.2684334251490892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5368668502981784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": 0.6402644540992137, "y": 9.654433143110865, "z": 0.27435153014106944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5487030602821389}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": 0.6068926873030891, "y": 9.748505224608486, "z": 0.2800848599304174}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5601697198608347}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": 0.5722388057925853, "y": 9.842225213326657, "z": 0.28564628100152956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5712925620030591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": 0.5363904419325273, "y": 9.935420766313241, "z": 0.2910472388860718}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5820944777721436}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": 0.4994557508599365, "y": 10.028224752311338, "z": 0.2962979686405334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5925959372810669}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": 0.46163510077841874, "y": 10.12065614012174, "z": 0.3014076668565581}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6028153337131162}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": 0.42317324434423226, "y": 10.212815652798556, "z": 0.3063846334631635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.612769266926327}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": 0.3843218780045163, "y": 10.304821776491968, "z": 0.31123638956261107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6224727791252221}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": 0.34534371618944926, "y": 10.396761589127168, "z": 0.3159697760724037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6319395521448073}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": 0.3064794223416243, "y": 10.488766462790835, "z": 0.31661337269285855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6332267453857171}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": 0.26798616178469814, "y": 10.580906076996651, "z": 0.3086489753597943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6172979507195886}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": 0.23008915085166545, "y": 10.673317074934218, "z": 0.30114152307175995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6022830461435199}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": 0.19304426760125998, "y": 10.766044225304006, "z": 0.29405927563233564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5881185512646713}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": 0.15706736933309573, "y": 10.859221267901807, "z": 0.2873389937742108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5746779875484216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": 0.12241078545943289, "y": 10.952864239325393, "z": 0.2809541187929031}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5619082375858062}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": 0.08928344691492765, "y": 11.047091344755382, "z": 0.27484457383612915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5496891476722583}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": 0.05793099215309485, "y": 11.14189014000863, "z": 0.26899303766000576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5379860753200115}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": 0.028564707653803614, "y": 11.237349638360058, "z": 0.26340425680695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5268085136139}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": 0.0014383116386875025, "y": 11.333446749844887, "z": 0.2580741690255878}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5161483380511755}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -0.023202073515936485, "y": 11.430224127628321, "z": 0.2531137923338973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5062275846677946}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -0.04505833613509199, "y": 11.527662319568964, "z": 0.24850766933181417}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49701533866362835}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -0.0638343995330908, "y": 11.625737683271039, "z": 0.24418518279406887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48837036558813773}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -0.07925049922570647, "y": 11.72440495077243, "z": 0.24014119303812698}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48028238607625395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -0.09102628217999133, "y": 11.823551618158133, "z": 0.23633622387860628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47267244775721257}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -0.0989017011409629, "y": 11.923113911536744, "z": 0.2328003466551316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4656006933102632}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -0.10258841011751516, "y": 12.022878557217604, "z": 0.22975257673222152}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45950515346444304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -0.10174633135148677, "y": 12.122763736638596, "z": 0.22730927418493407}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45461854836986815}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -0.09596938915363658, "y": 12.222456675962828, "z": 0.22608494036310475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4521698807262095}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -0.0847009278111252, "y": 12.321668414966979, "z": 0.22599770685411807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45199541370823615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -0.06757841566137807, "y": 12.420034707526819, "z": 0.2259104396606123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4518208793212246}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -0.0448492625966384, "y": 12.517268285899917, "z": 0.2265108887613636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4530217775227272}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -0.016970746031082288, "y": 12.613125453801706, "z": 0.22780862928198953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45561725856397906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": 0.015373552881316007, "y": 12.707628538122123, "z": 0.2305750897803868}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4611501795607736}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": 0.051414272064280134, "y": 12.800729827133546, "z": 0.23466533169429052}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46933066338858104}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": 0.09046095024139611, "y": 12.892674795832727, "z": 0.24006716835064207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48013433670128414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": 0.13176379274158437, "y": 12.983573916522975, "z": 0.24672782933007742}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49345565866015484}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": 0.174670334256717, "y": 13.07377767240666, "z": 0.25339544836455563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5067908967291113}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": 0.21846835278355356, "y": 13.163503433795812, "z": 0.2598198819344388}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5196397638688776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": 0.2625324179212557, "y": 13.253142202160896, "z": 0.262783900153855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.52556780030771}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": 0.30616489259876467, "y": 13.342921739200623, "z": 0.25366512177940254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5073302435588051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": 0.3487830265447762, "y": 13.43327346030184, "z": 0.24574799683515652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49149599367031305}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": 0.3896603019270733, "y": 13.524272964497067, "z": 0.2388482155035216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4776964310070432}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": 0.42832111357871083, "y": 13.616445128844076, "z": 0.23289046393931156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46578092787862313}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": 0.4639826689788607, "y": 13.709481533306597, "z": 0.22767232426315212}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45534464852630424}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": 0.4963627808749442, "y": 13.804183583445356, "z": 0.22310107072928256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4462021414585651}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": 0.5246398249509439, "y": 13.899594175162752, "z": 0.2188616426313093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4377232852626186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": 0.5487613147998924, "y": 13.9968910346884, "z": 0.2149154597144542}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4298309194289084}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": 0.5679847129445069, "y": 14.094426393331878, "z": 0.211133766612775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42226753322555}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": 0.5822910082552817, "y": 14.193621530539502, "z": 0.20748261315944722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41496522631889443}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": 0.5911696997181997, "y": 14.292849312158811, "z": 0.20377820349351003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40755640698702006}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": 0.5945258614909197, "y": 14.39285796153129, "z": 0.1998919929226179}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3997839858452358}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": 0.5920893931410455, "y": 14.492726708220335, "z": 0.19619184238846082}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39238368477692165}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": 0.5835295545851445, "y": 14.59224238870621, "z": 0.192864238282923}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.385728476565846}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": 0.5684396548879159, "y": 14.691112263255167, "z": 0.1894928039061688}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3789856078123376}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": 0.5467255818554014, "y": 14.78859377508758, "z": 0.1859864866074035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.371972973214807}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": 0.5183237542283325, "y": 14.884414408325139, "z": 0.18234484537127366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3646896907425473}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": 0.4830409659597653, "y": 14.977833443126952, "z": 0.17931009825764518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35862019651529037}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": 0.44047616053474364, "y": 15.068196454294227, "z": 0.17681836849305468}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35363673698610937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": 0.39030325924995013, "y": 15.154787446291733, "z": 0.17514946050171615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3502989210034323}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": 0.33270537054349403, "y": 15.236056209876837, "z": 0.1745949691013005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.349189938202601}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": 0.26720328344980204, "y": 15.311608559491642, "z": 0.17421497386190063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34842994772380126}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": 0.19491281278048944, "y": 15.379916887088198, "z": 0.17386486091154077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34772972182308154}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": 0.11576962675968938, "y": 15.440944078137415, "z": 0.17379777620487064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34759555240974127}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": 0.030937310463608023, "y": 15.493523557259055, "z": 0.17373066559397962}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34746133118795924}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -0.059039883509467976, "y": 15.537364544922575, "z": 0.17372416790485787}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34744833580971574}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -0.15234635586505216, "y": 15.57206598491837, "z": 0.17451367334085882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34902734668171764}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -0.2486923979567534, "y": 15.597950466746786, "z": 0.17563536130337765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3512707226067553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -0.3467188703085666, "y": 15.61543739545561, "z": 0.17793287335544603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35586574671089205}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -0.4461098397259865, "y": 15.6251961927419, "z": 0.18118628614016608}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36237257228033215}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -0.5459270776637807, "y": 15.62739684924395, "z": 0.18435204857418103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36870409714836205}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -0.6456274232546892, "y": 15.622362988029948, "z": 0.18756927088470113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37513854176940226}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -0.7446985422088288, "y": 15.61061936816417, "z": 0.1912179058569794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3824358117139588}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -0.8429553545817458, "y": 15.592528350032707, "z": 0.19496513673506302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38993027347012604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -0.9398002523726029, "y": 15.568389115603285, "z": 0.19851693812987076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3970338762597415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -1.0351368278317956, "y": 15.538472748796345, "z": 0.20205293564051593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40410587128103187}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -1.128505057093491, "y": 15.50320883098198, "z": 0.20566327666704917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41132655333409834}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -1.2199106352397024, "y": 15.462830283753396, "z": 0.20924934282285976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4184986856457195}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -1.3089484963849705, "y": 15.417712402001536, "z": 0.21275445060744197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42550890121488394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -1.395649612178475, "y": 15.368049804218275, "z": 0.21623438446167334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4324687689233467}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -1.4797223395885688, "y": 15.314221470998113, "z": 0.21969819550852063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43939639101704125}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -1.561211179056324, "y": 15.256425052230494, "z": 0.2231872187961624}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4463744375923248}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -1.63993447390786, "y": 15.195016316394497, "z": 0.22670365888850671}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45340731777701343}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -1.715935988726849, "y": 15.13019504072784, "z": 0.23026341779720197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46052683559440394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -1.7891237181593664, "y": 15.062275887568186, "z": 0.23386429064557093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46772858129114186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -1.859565713398055, "y": 14.9914660154672, "z": 0.23757467338837696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4751493467767539}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -1.9272570908698559, "y": 14.918064276040917, "z": 0.24141475480072427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48282950960144855}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -1.9923154343916112, "y": 14.842282793662156, "z": 0.24546227431233822}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49092454862467644}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -2.054809675345227, "y": 14.764395999599518, "z": 0.24974106225982753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49948212451965507}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -2.1148111656789776, "y": 14.68455766272279, "z": 0.25402132605718836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5080426521143767}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -2.172334449914774, "y": 14.602926238312168, "z": 0.2582305408208769}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5164610816417537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -2.227416009190583, "y": 14.519623051356637, "z": 0.262369580268704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.524739160537408}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -2.280089096703842, "y": 14.434778471404163, "z": 0.26644646238576947}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5328929247715389}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -2.330436645932364, "y": 14.348533786430052, "z": 0.2706237071530199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5412474143060398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -2.3785698340905395, "y": 14.26102798041603, "z": 0.27496332521117955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5499266504223591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -2.424576290505218, "y": 14.172395145178335, "z": 0.2793928700151677}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5587857400303354}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -2.4685522111478755, "y": 14.082727681471768, "z": 0.2838904646122601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5677809292245202}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -2.5105910652857037, "y": 13.992147097022345, "z": 0.28850119947233893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5770023989446779}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -2.550813157803765, "y": 13.900733331998937, "z": 0.29324903714309103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5864980742861821}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -2.5893249776755387, "y": 13.808598243313812, "z": 0.2981439995727463}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5962879991454926}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -2.626254634655975, "y": 13.715805303518653, "z": 0.3031966228816227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6063932457632454}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -2.6617194642762714, "y": 13.622455163838291, "z": 0.3081281302880548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6162562605761096}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -2.6958584955142055, "y": 13.5286001746847, "z": 0.3129369391733749}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6258738783467498}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -2.7287982242483495, "y": 13.434328851145036, "z": 0.31762966879911664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6352593375982333}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -2.760681815262259, "y": 13.339684668927864, "z": 0.3222123678324993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6444247356649986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -2.7916397294841353, "y": 13.244743329548616, "z": 0.32669058093044173}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6533811618608835}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -2.821814460366483, "y": 13.14954185343068, "z": 0.3310694056541187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6621388113082374}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -2.8513393415709385, "y": 13.054143979445291, "z": 0.33535354137693035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6707070827538607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -2.880356543673718, "y": 12.958584566273869, "z": 0.3395473315210015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.679094663042003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -2.9090018121951884, "y": 12.862917583503133, "z": 0.34365480020192407}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6873096004038481}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -2.93741577550147, "y": 12.76717832961016, "z": 0.3476796841608156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6953593683216313}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -2.9657308605247357, "y": 12.671411811539596, "z": 0.35162546070397194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7032509214079439}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -2.9940763724265027, "y": 12.57565398551212, "z": 0.3554953722437825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.710990744487565}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -3.0225555602294505, "y": 12.47993472497153, "z": 0.359292447932991}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.718584895865982}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -3.0512528970565103, "y": 12.38428144283038, "z": 0.36301952280233335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7260390456046667}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -3.0802253193147737, "y": 12.28870914337254, "z": 0.36667925474492696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7333585094898539}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -3.1095085004262755, "y": 12.193232459733114, "z": 0.3702741396363312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7405482792726624}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -3.139110203390741, "y": 12.097853560946156, "z": 0.37380652483447113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7476130496689423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -3.16902022087379, "y": 12.002571481879388, "z": 0.3772786212666887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7545572425333774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -3.199225133027966, "y": 11.907382000654216, "z": 0.38069251428056244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7613850285611249}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -3.229708944140087, "y": 11.812281892464322, "z": 0.38405017340961467}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7681003468192293}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -3.260456965443898, "y": 11.71726649531012, "z": 0.3873534611836637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7747069223673274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -3.291454626366489, "y": 11.62233250387918, "z": 0.390604141095632}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.781208282191264}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -3.3226880514158226, "y": 11.527475647694487, "z": 0.3938038848214784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7876077696429568}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -3.354143519250477, "y": 11.432692240878497, "z": 0.39695427877709133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7939085575541827}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -3.385808546857171, "y": 11.337978683000602, "z": 0.4000568300850862}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8001136601701724}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -3.417671407122982, "y": 11.243331369755705, "z": 0.40311297201514756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8062259440302951}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -3.449720372142649, "y": 11.148747136348659, "z": 0.40612406895360076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8122481379072015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -3.48194406288697, "y": 11.054222012901425, "z": 0.4090914209510703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8181828419021406}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -3.514330746874461, "y": 10.959752950196359, "z": 0.41201626789119816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8240325357823963}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -3.5468691081185533, "y": 10.865335618767, "z": 0.4148997933183153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8297995866366306}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -3.579547373994472, "y": 10.770967085818798, "z": 0.41774312795756585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8354862559151317}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -3.6123543758331125, "y": 10.676642709721097, "z": 0.42054735295715556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8410947059143111}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -3.6452783099494144, "y": 10.582359663385725, "z": 0.4233135028790771}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8466270057581542}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -3.6783081004903995, "y": 10.488113018701833, "z": 0.426042568461759}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.852085136923518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -3.71143188776679, "y": 10.393900050940216, "z": 0.42873549917554266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8574709983510853}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -3.7446386703702803, "y": 10.29971558145257, "z": 0.43139320558966815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8627864111793363}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -3.777916590040396, "y": 10.20555699491427, "z": 0.434016561567489}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.868033123134978}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -3.8112547773402174, "y": 10.111418912270237, "z": 0.4366064063049098}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8732128126098196}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -3.8446412301463444, "y": 10.017298795324757, "z": 0.43916354622551973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8783270924510395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -3.8780649964623697, "y": 9.923191008341375, "z": 0.4416887567445481}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8833775134890962}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -3.911514211496375, "y": 9.829093229382295, "z": 0.44418278391257054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8883655678251411}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -3.9449782991748052, "y": 9.734999814602189, "z": 0.4466463459488376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8932926918976752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -3.9784451216400076, "y": 9.640908321873992, "z": 0.44908013467315333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8981602693463067}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -4.011903531629032, "y": 9.546812770877217, "z": 0.4514848168443874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9029696336887748}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -4.045340859302369, "y": 9.452710804428193, "z": 0.4538610354129585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.907722070825917}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -4.078746091088804, "y": 9.358595925748126, "z": 0.45620941069395177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9124188213879035}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -4.112109156352443, "y": 9.264467818408207, "z": 0.4585305414669312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9170610829338623}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -4.145423938304044, "y": 9.17032066902138, "z": 0.46082500600797105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9216500120159421}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -4.178683778956887, "y": 9.076156336264413, "z": 0.46309336305894305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9261867261178861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -4.211885735986255, "y": 8.981969482990786, "z": 0.4653361527386584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9306723054773168}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -4.245023744831364, "y": 8.887762290443375, "z": 0.46755389740007564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9351077948001513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -4.278094108945892, "y": 8.79352927041097, "z": 0.4697471024374217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9394942048748434}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -4.311090011517355, "y": 8.699272165375593, "z": 0.4719162570467616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9438325140935232}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -4.344006881265291, "y": 8.604985464076673, "z": 0.4740618349432549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9481236698865098}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -4.376837924651146, "y": 8.510670768311986, "z": 0.47618429503807647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9523685900761529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -4.409578727070183, "y": 8.416323196158675, "z": 0.47828408207774087}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9565681641554817}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -4.442222643370007, "y": 8.321943415220096, "z": 0.4803616272483518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9607232544967036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -4.474763934437695, "y": 8.227527727187452, "z": 0.48241734874709874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9648346974941975}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -4.5071923957261655, "y": 8.133073177359382, "z": 0.48445165232314713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9689033046462943}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -4.539495258260793, "y": 8.038576129325799, "z": 0.4864649317899013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9729298635798026}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -4.571656347562111, "y": 7.94402956774196, "z": 0.48845756951047015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9769151390209403}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -4.60365605615147, "y": 7.849429268186196, "z": 0.49042993685802994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9808598737160599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -4.6354761243307845, "y": 7.754767161636277, "z": 0.49238239465265377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9847647893053075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -4.6670969270882185, "y": 7.660039467280604, "z": 0.4943152935760592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9886305871521184}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -4.698500570648899, "y": 7.565238403217473, "z": 0.4962289745656264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9924579491312528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -4.7296677488172865, "y": 7.470360604915833, "z": 0.49812376918893725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9962475383778745}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -4.7605792892556265, "y": 7.375397881837082, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -4.791213693461689, "y": 7.2803464618421865, "z": 0.4995321671274132}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9990643342548264}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -4.821549922395, "y": 7.185198441723641, "z": 0.4948076450341908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9896152900683816}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -4.851565940555471, "y": 7.0899494318164935, "z": 0.4900903892436818}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9801807784873636}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -4.881245303462925, "y": 6.994594815225942, "z": 0.485366648343839}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.970733296687678}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": -4.910574453811156, "y": 6.899132061326015, "z": 0.48060308267143553}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9612061653428711}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": -4.939544912128204, "y": 6.803559946504145, "z": 0.475791864932768}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.951583729865536}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": -4.968150603671732, "y": 6.707878162202245, "z": 0.4709298306162766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9418596612325532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": -4.996383772593205, "y": 6.612085595244069, "z": 0.46602332377285133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9320466475457027}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": -5.024235515029007, "y": 6.51618168276257, "z": 0.4610671545125575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.922134309025115}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": -5.051697515574381, "y": 6.420165126318107, "z": 0.4560573485853254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9121146971706507}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": -5.0787612940441, "y": 6.324035917587264, "z": 0.45099190750044155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9019838150008831}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": -5.105418751581303, "y": 6.2277928631724455, "z": 0.44586727717233576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8917345543446715}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": -5.1316613406110285, "y": 6.131436325083504, "z": 0.44067961807308437}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8813592361461687}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": -5.157480627954097, "y": 6.0349649743363205, "z": 0.4354268202595996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8708536405191992}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": -5.182867450181541, "y": 5.938379529452071, "z": 0.43010530356596455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8602106071319291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": -5.207813230515007, "y": 5.8416785577021715, "z": 0.42471050783777714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8494210156755543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": -5.232308753621887, "y": 5.7448633629653, "z": 0.41923766608858987}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8384753321771797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": -5.256346043070528, "y": 5.64793247706879, "z": 0.41367901381721844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8273580276344369}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": -5.27991635907088, "y": 5.550888116849407, "z": 0.40802818858834156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8160563771766831}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": -5.303010974743926, "y": 5.453728165628331, "z": 0.4022846123482625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.804569224696525}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": -5.3256190511282515, "y": 5.356455304842963, "z": 0.3964446910034787}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7928893820069574}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": -5.347727493627642, "y": 5.259066039226531, "z": 0.3905210218519536}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7810420437039072}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": -5.369319898145138, "y": 5.161562744133657, "z": 0.38450892800877956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7690178560175591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": -5.390380646185148, "y": 5.063941460784322, "z": 0.3784013266804702}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7568026533609404}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": -5.410891201211381, "y": 4.966204677811857, "z": 0.3722354772582288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7444709545164576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": -5.4308244666208525, "y": 4.868347021944678, "z": 0.36601667442229396}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7320333488445879}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": -5.450145507930942, "y": 4.7703676982848835, "z": 0.3597975958325301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7195951916650603}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": -5.468806230369056, "y": 4.672259767325229, "z": 0.3535870419340483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7071740838680965}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": -5.486750706225834, "y": 4.574018653142029, "z": 0.3473759181541377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6947518363082754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": -5.503922294904823, "y": 4.475639622202363, "z": 0.3411525052382532}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6823050104765064}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": -5.520263334741189, "y": 4.377118758994886, "z": 0.3349206801099465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.669841360219893}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": -5.535711493056641, "y": 4.278454921619906, "z": 0.32867162135402694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6573432427080539}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": -5.550199627027534, "y": 4.179641986218497, "z": 0.3225057969336661}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6450115938673322}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": -5.5636301067177865, "y": 4.0806848290588205, "z": 0.31644461805274454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6328892361054891}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": -5.575891522960277, "y": 3.981566401373439, "z": 0.3105394986352863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6210789972705726}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": -5.586850170326195, "y": 3.882308785960696, "z": 0.30479772458308474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6095954491661695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": -5.596368534546127, "y": 3.782885074010828, "z": 0.29921467829995313}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5984293565999063}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": -5.604298730423965, "y": 3.68334440945217, "z": 0.2937813688546946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5875627377093892}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": -5.610497791280242, "y": 3.583654685862036, "z": 0.28848672210439336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5769734442087867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": -5.6148142031644, "y": 3.4838969558997683, "z": 0.28332072079587767}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5666414415917553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": -5.617101031785913, "y": 3.38403739035468, "z": 0.2782744264411207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5565488528822414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -5.6172055009469, "y": 3.284191432925049, "z": 0.27333920855841076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5466784171168215}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -5.614974788615268, "y": 3.18432806384433, "z": 0.26850734295450285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5370146859090057}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -5.610256936903642, "y": 3.084598315540038, "z": 0.26377108568615215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5275421713723043}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -5.602892010735367, "y": 2.9849802816967985, "z": 0.25912515873498404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5182503174699681}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -5.59273117266368, "y": 2.885661582497924, "z": 0.25456309547140765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5091261909428153}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -5.579606586483814, "y": 2.786637617611234, "z": 0.2500789620560619}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5001579241121238}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -5.563375987677516, "y": 2.6881318660036158, "z": 0.2456661054205497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4913322108410994}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -5.543865314997151, "y": 2.590166311158799, "z": 0.2413262287933297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4826524575866594}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -5.520940813390666, "y": 2.493002336088356, "z": 0.23705623056314576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4741124611262915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -5.494423625628245, "y": 2.3967018183964552, "z": 0.2328427103807651}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4656854207615302}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -5.464195312664622, "y": 2.301555993024903, "z": 0.2286764684765036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4573529369530072}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -5.430084019665426, "y": 2.207677305119453, "z": 0.2245885685434187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4491771370868374}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -5.3919821907983625, "y": 2.1154021196467037, "z": 0.2205885749815348}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4411771499630696}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": -5.349727516111409, "y": 2.0249129035572992, "z": 0.21651509375786004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4330301875157201}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": -5.303276037636827, "y": 1.9365359610837025, "z": 0.21236322594338786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4247264518867757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": -5.252557476068897, "y": 1.8505276460554168, "z": 0.2083182486070386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4166364972140772}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": -5.197453326110882, "y": 1.7672486489491162, "z": 0.20445473270203732}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40890946540407463}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": -5.13790231691827, "y": 1.6871648072284422, "z": 0.20061584971732913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40123169943465825}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": -5.073773967338932, "y": 1.6105585105397895, "z": 0.19676032616099154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3935206523219831}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": -5.0051903786897824, "y": 1.5380658229054276, "z": 0.1937200925690466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3874401851380932}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": -4.931849486631677, "y": 1.4702259935418225, "z": 0.1916963461932189}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3833926923864378}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": -4.853870192546056, "y": 1.4079602586243247, "z": 0.189654394212651}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.379308788425302}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": -4.771349707024734, "y": 1.3516572376259686, "z": 0.18762188705201502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37524377410403004}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": -4.684810520597288, "y": 1.3019589504775058, "z": 0.18632004924983914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3726400984996783}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": -4.594410058945088, "y": 1.2594888206828316, "z": 0.18595867130981916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3719173426196383}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": -4.500822250061123, "y": 1.2250595737018302, "z": 0.18569727832738486}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3713945566547697}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": -4.40434549227606, "y": 1.1989585392685538, "z": 0.1856256281539069}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3712512563078138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": -4.306207115627404, "y": 1.181559364257412, "z": 0.1855539503132897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3711079006265794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": -4.206592385661789, "y": 1.172726984284554, "z": 0.18593600264623575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3718720052924715}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": -4.106893214897492, "y": 1.1723666880958923, "z": 0.18657727592053178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37315455184106355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": -4.007209469456436, "y": 1.1801281776747616, "z": 0.18784448703249595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3756889740649919}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_iqp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.007209469456436, "y_m": 1.1801281776747616, "d_right": 0.9836131930419754, "d_left": 0.4619761192372887, "psi_rad": 0.11730867700170533, "kappa_radpm": 0.7823880491034414, "vx_mps": 3.705947390137978, "ax_mps2": 1.2015529714686466}, {"id": 1, "s_m": 0.09986654975464529, "d_m": 0.0, "x_m": -3.908643196047879, "y_m": 1.1956090921037232, "d_right": 1.0172556416750904, "d_left": 0.49213128785574073, "psi_rad": 0.19372979029490955, "kappa_radpm": 0.7500627846732225, "vx_mps": 3.7381861855298917, "ax_mps2": 1.464574389067743}, {"id": 2, "s_m": 0.19973309950929058, "d_m": 0.0, "x_m": -3.811381528292685, "y_m": 1.2184587041137849, "d_right": 1.0401786143348015, "d_left": 0.530321001623771, "psi_rad": 0.26732547147751173, "kappa_radpm": 0.7239870661741569, "vx_mps": 3.777109998381957, "ax_mps2": 1.616042988522011}, {"id": 3, "s_m": 0.2995996492639359, "d_m": 0.0, "x_m": -3.7160910950135473, "y_m": 1.2482361762050393, "d_right": 1.0700975089471867, "d_left": 0.5773272922642768, "psi_rad": 0.33782877244517184, "kappa_radpm": 0.6883367302165829, "vx_mps": 3.8195990908621162, "ax_mps2": 1.9012233862535923}, {"id": 4, "s_m": 0.39946619901858116, "d_m": 0.0, "x_m": -3.6230466581960963, "y_m": 1.2845022373110346, "d_right": 1.106601402464671, "d_left": 0.6167180036051092, "psi_rad": 0.40496020370797625, "kappa_radpm": 0.6567399833256974, "vx_mps": 3.8689888155318677, "ax_mps2": 2.1113423523076835}, {"id": 5, "s_m": 0.4993327487732264, "d_m": 0.0, "x_m": -3.532570012969888, "y_m": 1.3267961632241752, "d_right": 1.1488831280270757, "d_left": 0.6632770273987962, "psi_rad": 0.46911251117796526, "kappa_radpm": 0.6280415951178762, "vx_mps": 3.9231083858163203, "ax_mps2": 2.2744521704412284}, {"id": 6, "s_m": 0.5991992985278718, "d_m": 0.0, "x_m": -3.4449597984269658, "y_m": 1.374660375953445, "d_right": 1.1963048140628114, "d_left": 0.7157095337037643, "psi_rad": 0.5305007595592857, "kappa_radpm": 0.6021401918477101, "vx_mps": 3.9805857343549573, "ax_mps2": 2.397796488273276}, {"id": 7, "s_m": 0.699065848282517, "d_m": 0.0, "x_m": -3.360324804168789, "y_m": 1.4277208323838215, "d_right": 1.2490329213409228, "d_left": 0.7678260136575776, "psi_rad": 0.5888312821501205, "kappa_radpm": 0.564532459300537, "vx_mps": 4.040294805227152, "ax_mps2": 2.7214764456358003}, {"id": 8, "s_m": 0.7989323980371623, "d_m": 0.0, "x_m": -3.2788734866765368, "y_m": 1.4854263659013638, "d_right": 1.306611771330124, "d_left": 0.802661759310977, "psi_rad": 0.6433248549447037, "kappa_radpm": 0.5275786751961408, "vx_mps": 4.107012422537077, "ax_mps2": 3.0358326360409165}, {"id": 9, "s_m": 0.8987989477918076, "d_m": 0.0, "x_m": -3.200516429975397, "y_m": 1.5474239489112906, "d_right": 1.368791496711405, "d_left": 0.8387054197993958, "psi_rad": 0.6951921589526213, "kappa_radpm": 0.5131215033353843, "vx_mps": 4.1801802952578235, "ax_mps2": 2.9662112116097257}, {"id": 10, "s_m": 0.9986654975464528, "d_m": 0.0, "x_m": -3.1255252582904443, "y_m": 1.6132789410943766, "d_right": 1.4352446522206799, "d_left": 0.8672413161922394, "psi_rad": 0.7458815675126331, "kappa_radpm": 0.5028259808077534, "vx_mps": 4.250453841645125, "ax_mps2": 2.845924369575935}, {"id": 11, "s_m": 1.0985320473010982, "d_m": 0.0, "x_m": -3.0538450027656676, "y_m": 1.6828779334619257, "d_right": 1.4421620252167917, "d_left": 0.8939984813687087, "psi_rad": 0.7950324877735396, "kappa_radpm": 0.47900647872681595, "vx_mps": 4.316802422541508, "ax_mps2": 3.001779181908285}, {"id": 12, "s_m": 1.1983985970557436, "d_m": 0.0, "x_m": -2.9856467051768587, "y_m": 1.755749158270549, "d_right": 1.3893074752261256, "d_left": 0.9263318687351325, "psi_rad": 0.8415660822520357, "kappa_radpm": 0.4535569203198813, "vx_mps": 4.38569695890006, "ax_mps2": 3.2017762409392656}, {"id": 13, "s_m": 1.2982651468103887, "d_m": 0.0, "x_m": -2.9207477713658774, "y_m": 1.8317161953973693, "d_right": 1.3398799290752879, "d_left": 0.9639068181585996, "psi_rad": 0.8856333910284744, "kappa_radpm": 0.4284800112442852, "vx_mps": 4.458008356636766, "ax_mps2": 3.407628514742607}, {"id": 14, "s_m": 1.398131696565034, "d_m": 0.0, "x_m": -2.8592245970821115, "y_m": 1.9103058723409647, "d_right": 1.2936822883470214, "d_left": 0.9923842895105457, "psi_rad": 0.9271717014318965, "kappa_radpm": 0.403968710997182, "vx_mps": 4.533702097962439, "ax_mps2": 3.617183337871036}, {"id": 15, "s_m": 1.4979982463196793, "d_m": 0.0, "x_m": -2.8008634995909243, "y_m": 1.9914032585181387, "d_right": 1.2574894138484183, "d_left": 1.0135968772301744, "psi_rad": 0.96653398120838, "kappa_radpm": 0.38469259829651264, "vx_mps": 4.612691833694872, "ax_mps2": 3.732671032019654}, {"id": 16, "s_m": 1.5978647960743246, "d_m": 0.0, "x_m": -2.745719664329014, "y_m": 2.0745932189214993, "d_right": 1.2251051741984123, "d_left": 1.040324104199303, "psi_rad": 1.0040222470201736, "kappa_radpm": 0.36652747895013227, "vx_mps": 4.692809809411542, "ax_mps2": 3.843026659161916}, {"id": 17, "s_m": 1.69773134582897, "d_m": 0.0, "x_m": -2.6936011486484976, "y_m": 2.1598295378099275, "d_right": 1.1961607617047554, "d_left": 1.072341407450107, "psi_rad": 1.0396018442593982, "kappa_radpm": 0.34510250148780797, "vx_mps": 4.773891864447752, "ax_mps2": 4.046996468430855}, {"id": 18, "s_m": 1.7975978955836152, "d_m": 0.0, "x_m": -2.6444971306669878, "y_m": 2.2467289844961105, "d_right": 1.165504890954268, "d_left": 1.10928240057615, "psi_rad": 1.0729502946585083, "kappa_radpm": 0.32312374234974534, "vx_mps": 4.857814599362895, "ax_mps2": 4.283581411048097}, {"id": 19, "s_m": 1.8974644453382605, "d_m": 0.0, "x_m": -2.59818173508952, "y_m": 2.335248369596426, "d_right": 1.1355793083477463, "d_left": 1.1299575410667526, "psi_rad": 1.1041962765138236, "kappa_radpm": 0.30256232961558066, "vx_mps": 4.945092079427066, "ax_mps2": 4.506625426126636}, {"id": 20, "s_m": 1.9973309950929057, "d_m": 0.0, "x_m": -2.5545992834604836, "y_m": 2.4250491080291763, "d_right": 1.1163062665731411, "d_left": 1.1371941180539002, "psi_rad": 1.1333811675422882, "kappa_radpm": 0.2821778906750377, "vx_mps": 5.035281316738912, "ax_mps2": 4.747630860501855}, {"id": 21, "s_m": 2.097197544847551, "d_m": 0.0, "x_m": -2.513530926740804, "y_m": 2.516113861847299, "d_right": 1.0924158712624938, "d_left": 1.138667670856703, "psi_rad": 1.1605215053901416, "kappa_radpm": 0.2610361971380173, "vx_mps": 5.12857845467864, "ax_mps2": 5.032462842120967}, {"id": 22, "s_m": 2.1970640946021964, "d_m": 0.0, "x_m": -2.4748775527762716, "y_m": 2.608152795976133, "d_right": 1.0798931632179793, "d_left": 1.141806397529373, "psi_rad": 1.1855149202889297, "kappa_radpm": 0.23968641498350912, "vx_mps": 5.225654635298443, "ax_mps2": 5.349205183316293}, {"id": 23, "s_m": 2.296930644356842, "d_m": 0.0, "x_m": -2.4384143979565667, "y_m": 2.701150338655394, "d_right": 1.0692998896430825, "d_left": 1.151253864872771, "psi_rad": 1.2083870112286326, "kappa_radpm": 0.2182061346204387, "vx_mps": 5.326901510126786, "ax_mps2": 5.698512566357587}, {"id": 24, "s_m": 2.396797194111487, "d_m": 0.0, "x_m": -2.4040056173426487, "y_m": 2.794867271042353, "d_right": 1.0624853292811687, "d_left": 1.1670508952335845, "psi_rad": 1.2290925671555568, "kappa_radpm": 0.1965687289059549, "vx_mps": 5.432684536770221, "ax_mps2": 6.08436206221132}, {"id": 25, "s_m": 2.496663743866132, "d_m": 0.0, "x_m": -2.371428876950844, "y_m": 2.8892841925242356, "d_right": 1.0549511632649213, "d_left": 1.182409615688215, "psi_rad": 1.2476666400451175, "kappa_radpm": 0.175401418590198, "vx_mps": 5.543402364007548, "ax_mps2": 6.121329407827797}, {"id": 26, "s_m": 2.5965302936207775, "d_m": 0.0, "x_m": -2.3405207988302688, "y_m": 2.9842264102978184, "d_right": 1.0442788457352226, "d_left": 1.1726901493269335, "psi_rad": 1.2641209556327655, "kappa_radpm": 0.15416771115146222, "vx_mps": 5.652604874305942, "ax_mps2": 6.060080348933332}, {"id": 27, "s_m": 2.696396843375423, "d_m": 0.0, "x_m": -2.3110737031193214, "y_m": 3.0796503680402, "d_right": 1.0264369262563706, "d_left": 1.1534051009004986, "psi_rad": 1.2784900307908986, "kappa_radpm": 0.13367020644631022, "vx_mps": 5.758675237968807, "ax_mps2": 6.0004997629720425}, {"id": 28, "s_m": 2.796263393130068, "d_m": 0.0, "x_m": -2.2829032328117855, "y_m": 3.1754577820068075, "d_right": 1.019454748962206, "d_left": 1.141224828746982, "psi_rad": 1.290815632343643, "kappa_radpm": 0.11316599771147841, "vx_mps": 5.861811913790672, "ax_mps2": 5.94248364057031}, {"id": 29, "s_m": 2.8961299428847136, "d_m": 0.0, "x_m": -2.255822773964416, "y_m": 3.2715623068650257, "d_right": 1.0169216716056988, "d_left": 1.1365829820730011, "psi_rad": 1.3011323070093734, "kappa_radpm": 0.09355488650550672, "vx_mps": 5.96219335387344, "ax_mps2": 5.885938408008607}, {"id": 30, "s_m": 2.9959964926393585, "d_m": 0.0, "x_m": -2.22963204043126, "y_m": 3.367949801771381, "d_right": 1.0038301685323294, "d_left": 1.1397685076355175, "psi_rad": 1.3094998669724371, "kappa_radpm": 0.07399159373213669, "vx_mps": 6.059980718676005, "ax_mps2": 5.830779513870042}, {"id": 31, "s_m": 3.095863042394004, "d_m": 0.0, "x_m": -2.2041693411475656, "y_m": 3.4644767662919302, "d_right": 1.0013245385481873, "d_left": 1.1509023309359143, "psi_rad": 1.3159592890038054, "kappa_radpm": 0.05549204130080172, "vx_mps": 6.155320135913769, "ax_mps2": 5.77693025288117}, {"id": 32, "s_m": 3.1957295921486493, "d_m": 0.0, "x_m": -2.1792235200359773, "y_m": 3.5612148355559783, "d_right": 0.9802611571928984, "d_left": 1.1699543011568845, "psi_rad": 1.320583788426667, "kappa_radpm": 0.03709897421642914, "vx_mps": 6.248344593621773, "ax_mps2": 5.724320780015489}, {"id": 33, "s_m": 3.2955961419032946, "d_m": 0.0, "x_m": -2.154660112485551, "y_m": 3.657957603650565, "d_right": 0.9599923091895196, "d_left": 1.194574707639679, "psi_rad": 1.3234229931344297, "kappa_radpm": 0.019860015333211425, "vx_mps": 6.339175537293503, "ax_mps2": 5.672887278526895}, {"id": 34, "s_m": 3.39546269165794, "d_m": 0.0, "x_m": -2.1302622536722637, "y_m": 3.7548537641183617, "d_right": 0.9500260432292162, "d_left": 1.2190319966630079, "psi_rad": 1.3245524002365785, "kappa_radpm": 0.0027664561561992233, "vx_mps": 6.427924225745616, "ax_mps2": 5.622571253507484}, {"id": 35, "s_m": 3.495329241412585, "d_m": 0.0, "x_m": -2.105921955062988, "y_m": 3.8516411083349555, "d_right": 0.9505390235795976, "d_left": 1.243439358892092, "psi_rad": 1.3240286725134665, "kappa_radpm": -0.01320478322866136, "vx_mps": 6.51469288881696, "ax_mps2": 5.573318928560418}, {"id": 36, "s_m": 3.5951957911672303, "d_m": 0.0, "x_m": -2.081421838281059, "y_m": 3.9485238038101547, "d_right": 0.9613586828569335, "d_left": 1.268009003354518, "psi_rad": 1.3219175532386076, "kappa_radpm": -0.029021997528019712, "vx_mps": 6.599575721192798, "ax_mps2": 5.525080727758984}, {"id": 37, "s_m": 3.6950623409218757, "d_m": 0.0, "x_m": -2.056675985733076, "y_m": 4.045204589045552, "d_right": 0.9578981818883755, "d_left": 1.29283446006931, "psi_rad": 1.3182795447069808, "kappa_radpm": -0.04384157396222435, "vx_mps": 6.682659739845489, "ax_mps2": 5.477810828597032}, {"id": 38, "s_m": 3.794928890676521, "d_m": 0.0, "x_m": -2.0314722187830476, "y_m": 4.141909983507486, "d_right": 0.9326366128439538, "d_left": 1.3181217407089354, "psi_rad": 1.3131631290345671, "kappa_radpm": -0.0585312602921839, "vx_mps": 6.764025527293124, "ax_mps2": 5.431466774384893}, {"id": 39, "s_m": 3.8947954404311664, "d_m": 0.0, "x_m": -2.0057389324294643, "y_m": 4.238338753555227, "d_right": 0.90685019363291, "d_left": 1.3344192768317622, "psi_rad": 1.3066272025378804, "kappa_radpm": -0.07241429251701315, "vx_mps": 6.843747878728632, "ax_mps2": 3.9180800138094733}, {"id": 40, "s_m": 3.9946619901858114, "d_m": 0.0, "x_m": -1.979275617781065, "y_m": 4.334700386647137, "d_right": 0.8803442575893405, "d_left": 1.3197221865569673, "psi_rad": 1.2987003772058392, "kappa_radpm": -0.08622202598892272, "vx_mps": 6.900685132136244, "ax_mps2": -7.591511686709692}, {"id": 41, "s_m": 4.094528539940457, "d_m": 0.0, "x_m": -1.9520146682944328, "y_m": 4.430723860250527, "d_right": 0.8530512006090957, "d_left": 1.308318170908651, "psi_rad": 1.2894310081006197, "kappa_radpm": -0.09948805232739197, "vx_mps": 6.789932189185595, "ax_mps2": -7.135049921727745}, {"id": 42, "s_m": 4.194395089695102, "d_m": 0.0, "x_m": -1.923773825548121, "y_m": 4.526563930489054, "d_right": 0.8309703729951515, "d_left": 1.288151279816464, "psi_rad": 1.27882797493301, "kappa_radpm": -0.11275481793456597, "vx_mps": 6.684165878979851, "ax_mps2": -6.721927270937089}, {"id": 43, "s_m": 4.294261639449747, "d_m": 0.0, "x_m": -1.894478138090216, "y_m": 4.622008144703077, "d_right": 0.819425254537482, "d_left": 1.2636774814305631, "psi_rad": 1.2669262739807465, "kappa_radpm": -0.12566147166947492, "vx_mps": 6.582969096784383, "ax_mps2": -6.329432291977115}, {"id": 44, "s_m": 4.394128189204393, "d_m": 0.0, "x_m": -1.8639702225243073, "y_m": 4.717129250710078, "d_right": 0.8187152432453056, "d_left": 1.2479779644712263, "psi_rad": 1.2537254089015109, "kappa_radpm": -0.13865058469453564, "vx_mps": 6.4862381238594224, "ax_mps2": -5.969754897053554}, {"id": 45, "s_m": 4.493994738959038, "d_m": 0.0, "x_m": -1.832158602529715, "y_m": 4.811788800489227, "d_right": 0.8287453234152672, "d_left": 1.2354631595776364, "psi_rad": 1.2392442573264264, "kappa_radpm": -0.15138059153319525, "vx_mps": 6.393663062009769, "ax_mps2": -5.623178604073983}, {"id": 46, "s_m": 4.593861288713684, "d_m": 0.0, "x_m": -1.7989163142696365, "y_m": 4.905965506733566, "d_right": 0.8340729222650858, "d_left": 1.2311257938080227, "psi_rad": 1.2234835247888611, "kappa_radpm": -0.16426563881316195, "vx_mps": 6.305219461590699, "ax_mps2": -5.289491547269992}, {"id": 47, "s_m": 4.6937278384683285, "d_m": 0.0, "x_m": -1.7641292453330957, "y_m": 4.999595372367436, "d_right": 0.8264839714806803, "d_left": 1.2261555321514932, "psi_rad": 1.2064283840200218, "kappa_radpm": -0.17726709403665766, "vx_mps": 6.220876619678105, "ax_mps2": -4.962185102551697}, {"id": 48, "s_m": 4.793594388222974, "d_m": 0.0, "x_m": -1.7277020339523743, "y_m": 5.0925639046167515, "d_right": 0.8118016749123642, "d_left": 1.220046375945321, "psi_rad": 1.1880690753462169, "kappa_radpm": -0.19050471105415848, "vx_mps": 6.14069974077761, "ax_mps2": -4.632919919801095}, {"id": 49, "s_m": 4.893460937977619, "d_m": 0.0, "x_m": -1.6894937005744217, "y_m": 5.184867115192703, "d_right": 0.7916534099774564, "d_left": 1.222866718179529, "psi_rad": 1.1683587525627164, "kappa_radpm": -0.20415158861747387, "vx_mps": 6.064886301574498, "ax_mps2": -4.305293190286496}, {"id": 50, "s_m": 4.993327487732264, "d_m": 0.0, "x_m": -1.6494373093112487, "y_m": 5.27631288375347, "d_right": 0.7512241317514049, "d_left": 1.2261251439124676, "psi_rad": 1.1472845808439027, "kappa_radpm": -0.21806621853845104, "vx_mps": 5.993574584322267, "ax_mps2": -3.9624147887578425}, {"id": 51, "s_m": 5.09319403748691, "d_m": 0.0, "x_m": -1.6073677097958312, "y_m": 5.366930154028029, "d_right": 0.708813886078287, "d_left": 1.2196479541129357, "psi_rad": 1.1247734397254165, "kappa_radpm": -0.23265147295660615, "vx_mps": 5.927184062481422, "ax_mps2": -3.6149479410181242}, {"id": 52, "s_m": 5.193060587241555, "d_m": 0.0, "x_m": -1.5632404635380348, "y_m": 5.4564715872576475, "d_right": 0.6644110235791296, "d_left": 1.2232851611030664, "psi_rad": 1.1008071709378329, "kappa_radpm": -0.24755014774662312, "vx_mps": 5.8659599515944105, "ax_mps2": -3.238805208704124}, {"id": 53, "s_m": 5.292927136996201, "d_m": 0.0, "x_m": -1.5168745461674338, "y_m": 5.544966302652686, "d_right": 0.6179004017207447, "d_left": 1.2186077144139027, "psi_rad": 1.075290162236285, "kappa_radpm": -0.2633599921611856, "vx_mps": 5.810558454285456, "ax_mps2": -2.8527772411718653}, {"id": 54, "s_m": 5.392793686750846, "d_m": 0.0, "x_m": -1.4682379834895798, "y_m": 5.632138126262273, "d_right": 0.5693486123421648, "d_left": 1.220934948042692, "psi_rad": 1.0481988602341903, "kappa_radpm": -0.27944439194932114, "vx_mps": 5.761318903695522, "ax_mps2": -2.4322409074896223}, {"id": 55, "s_m": 5.492660236505491, "d_m": 0.0, "x_m": -1.4171494632574686, "y_m": 5.717981663877719, "d_right": 0.5187382741568469, "d_left": 1.219626312920907, "psi_rad": 1.0194410532185012, "kappa_radpm": -0.2963952644143874, "vx_mps": 5.719003103240388, "ax_mps2": -1.9928925299820306}, {"id": 56, "s_m": 5.592526786260136, "d_m": 0.0, "x_m": -1.3635787546176577, "y_m": 5.80221875240386, "d_right": 0.46845136314009356, "d_left": 1.2211568784073037, "psi_rad": 0.9889935880948761, "kappa_radpm": -0.3135975791156232, "vx_mps": 5.684096224807507, "ax_mps2": -1.4734828678782155}, {"id": 57, "s_m": 5.692393336014781, "d_m": 0.0, "x_m": -1.3073671543770349, "y_m": 5.884776429060084, "d_right": 0.42045649099289, "d_left": 1.2339094971623485, "psi_rad": 0.9567275990204055, "kappa_radpm": -0.3326689980507367, "vx_mps": 5.658148689509299, "ax_mps2": -0.9193127663398345}, {"id": 58, "s_m": 5.792259885769427, "d_m": 0.0, "x_m": -1.2484647899057753, "y_m": 5.965393389931108, "d_right": 0.3808098343118134, "d_left": 1.253332834910768, "psi_rad": 0.9225471329001261, "kappa_radpm": -0.3519754429164798, "vx_mps": 5.641899450039524, "ax_mps2": -0.5284558649417275}, {"id": 59, "s_m": 5.892126435524072, "d_m": 0.0, "x_m": -1.186765509166594, "y_m": 6.043904683792001, "d_right": 0.35927770714718343, "d_left": 1.2737505374007638, "psi_rad": 0.8867031819008122, "kappa_radpm": -0.36545356602131157, "vx_mps": 5.632537552160448, "ax_mps2": -0.12255077455773154}, {"id": 60, "s_m": 5.991992985278717, "d_m": 0.0, "x_m": -1.1222359960798236, "y_m": 6.120120049049793, "d_right": 0.33781099452128693, "d_left": 1.30497260378393, "psi_rad": 0.8495525238043954, "kappa_radpm": -0.3785369328130928, "vx_mps": 5.630364271558984, "ax_mps2": -0.12255077455771266}, {"id": 61, "s_m": 6.091859535033363, "d_m": 0.0, "x_m": -1.0549574380812543, "y_m": 6.19385561093398, "d_right": 0.33692782153299344, "d_left": 1.346237225745423, "psi_rad": 0.8134443742798798, "kappa_radpm": -0.34079824440104245, "vx_mps": 5.628190151762666, "ax_mps2": 1.0822399522278017}, {"id": 62, "s_m": 6.191726084788008, "d_m": 0.0, "x_m": -0.9851500002549441, "y_m": 6.265319594530251, "d_right": 0.33780286266444054, "d_left": 1.381577449931288, "psi_rad": 0.7815045568403544, "kappa_radpm": -0.2986633592329417, "vx_mps": 5.647360757421957, "ax_mps2": 2.3515322196797896}, {"id": 63, "s_m": 6.291592634542654, "d_m": 0.0, "x_m": -0.9133182684004653, "y_m": 6.334599317206183, "d_right": 0.36419841724349167, "d_left": 1.3699130213570396, "psi_rad": 0.7538437179322174, "kappa_radpm": -0.2555793778937614, "vx_mps": 5.688792696460481, "ax_mps2": 3.603740081365991}, {"id": 64, "s_m": 6.3914591842972985, "d_m": 0.0, "x_m": -0.8396465887229931, "y_m": 6.40211052601173, "d_right": 0.3917012618474923, "d_left": 1.2828603731380481, "psi_rad": 0.7304540822720174, "kappa_radpm": -0.2126219038618947, "vx_mps": 5.751708313151772, "ax_mps2": 4.8381205411126205}, {"id": 65, "s_m": 6.4913257340519435, "d_m": 0.0, "x_m": -0.76461096615983, "y_m": 6.467955390238261, "d_right": 0.40720390117632255, "d_left": 1.1990892908191468, "psi_rad": 0.7103818095553316, "kappa_radpm": -0.1913158638936611, "vx_mps": 5.835107653767425, "ax_mps2": 5.354359641933615}, {"id": 66, "s_m": 6.591192283806589, "d_m": 0.0, "x_m": -0.688271601363904, "y_m": 6.532404103111169, "d_right": 0.4302314281230354, "d_left": 1.1190643469982957, "psi_rad": 0.6922115359153511, "kappa_radpm": -0.17253491242520552, "vx_mps": 5.926037814444491, "ax_mps2": 5.805172002106313}, {"id": 67, "s_m": 6.691058833561234, "d_m": 0.0, "x_m": -0.6108530182694077, "y_m": 6.59553986272508, "d_right": 0.47218931372132866, "d_left": 1.0436242222879681, "psi_rad": 0.6766434827936908, "kappa_radpm": -0.1377564091011649, "vx_mps": 6.023073067412622, "ax_mps2": 1.6215791998687905}, {"id": 68, "s_m": 6.79092538331588, "d_m": 0.0, "x_m": -0.5326139246028024, "y_m": 6.657571770601273, "d_right": 0.5287982182989112, "d_left": 0.9736465852128994, "psi_rad": 0.6646880608181718, "kappa_radpm": -0.10175889045049044, "vx_mps": 6.049900182241099, "ax_mps2": -8.39470096957204}, {"id": 69, "s_m": 6.890791933070525, "d_m": 0.0, "x_m": -0.4536596315191861, "y_m": 6.718859150885733, "d_right": 0.5902202221510782, "d_left": 0.9100173094851312, "psi_rad": 0.6559224282853564, "kappa_radpm": -0.0744597299259684, "vx_mps": 5.9097032557459785, "ax_mps2": -9.520104068980013}, {"id": 70, "s_m": 6.99065848282517, "d_m": 0.0, "x_m": -0.37437526141644606, "y_m": 6.7794632831984485, "d_right": 0.6515946244919995, "d_left": 0.8494108673931158, "psi_rad": 0.6498120166763095, "kappa_radpm": -0.047964822079795515, "vx_mps": 5.74657399479257, "ax_mps2": -10.532883766943437}, {"id": 71, "s_m": 7.090525032579816, "d_m": 0.0, "x_m": -0.29463066789368725, "y_m": 6.839832729878382, "d_right": 0.7124178966980851, "d_left": 0.7895595067239376, "psi_rad": 0.6467842490753108, "kappa_radpm": -0.011547661676234966, "vx_mps": 5.560516806564253, "ax_mps2": -11.350579205517311}, {"id": 72, "s_m": 7.190391582334461, "d_m": 0.0, "x_m": -0.21504652682910347, "y_m": 6.899936755678244, "d_right": 0.7715030630676601, "d_left": 0.7305499929845144, "psi_rad": 0.6475235010468863, "kappa_radpm": 0.026531436779611395, "vx_mps": 5.352780659632884, "ax_mps2": -10.845203473451049}, {"id": 73, "s_m": 7.2902581320891064, "d_m": 0.0, "x_m": -0.13541736311772823, "y_m": 6.960377093936569, "d_right": 0.831571366547637, "d_left": 0.6690719794958476, "psi_rad": 0.6513041316878034, "kappa_radpm": 0.04746590558665347, "vx_mps": 5.146466232822143, "ax_mps2": -10.4728337208933}, {"id": 74, "s_m": 7.390124681843751, "d_m": 0.0, "x_m": -0.056254160679701126, "y_m": 7.021057011031723, "d_right": 0.8924023759310242, "d_left": 0.6173295490045848, "psi_rad": 0.6569884307148393, "kappa_radpm": 0.06646912863087456, "vx_mps": 4.939062982576666, "ax_mps2": -8.990821118567037}, {"id": 75, "s_m": 7.489991231598396, "d_m": 0.0, "x_m": 0.022620525163734993, "y_m": 7.082444451067355, "d_right": 0.9543868867451765, "d_left": 0.5775380841278249, "psi_rad": 0.666964528740241, "kappa_radpm": 0.13702371583075643, "vx_mps": 4.753796227933433, "ax_mps2": -7.591384247368307}, {"id": 76, "s_m": 7.589857781353042, "d_m": 0.0, "x_m": 0.10051491593062296, "y_m": 7.1448001921583515, "d_right": 1.0167677644701807, "d_left": 0.5376474629131826, "psi_rad": 0.68440999589808, "kappa_radpm": 0.21298010996973948, "vx_mps": 4.591549615480732, "ax_mps2": -7.576136141359484}, {"id": 77, "s_m": 7.689724331107687, "d_m": 0.0, "x_m": 0.17722852858043409, "y_m": 7.2087801497380815, "d_right": 1.0800931256325053, "d_left": 0.4841496914982898, "psi_rad": 0.7057857263852807, "kappa_radpm": 0.21127363790319004, "vx_mps": 4.423700116147474, "ax_mps2": -7.921456864102421}, {"id": 78, "s_m": 7.789590880862333, "d_m": 0.0, "x_m": 0.25252770786981515, "y_m": 7.274320695703579, "d_right": 1.1455341580229084, "d_left": 0.4376706438939036, "psi_rad": 0.7265345465131707, "kappa_radpm": 0.20410476808626557, "vx_mps": 4.241101930572625, "ax_mps2": -7.438930776630862}, {"id": 79, "s_m": 7.889457430616978, "d_m": 0.0, "x_m": 0.3261915636094835, "y_m": 7.341307748306701, "d_right": 1.212979934401662, "d_left": 0.4085673398414689, "psi_rad": 0.750667207074478, "kappa_radpm": 0.2802750914478027, "vx_mps": 4.062160125408071, "ax_mps2": -6.7088965994779075}, {"id": 80, "s_m": 7.989323980371623, "d_m": 0.0, "x_m": 0.39837577288897197, "y_m": 7.410730509542324, "d_right": 1.2824731987734859, "d_left": 0.3998925020849511, "psi_rad": 0.7822931806332867, "kappa_radpm": 0.3528565919001239, "vx_mps": 3.893732935417407, "ax_mps2": -3.5594209960746075}, {"id": 81, "s_m": 8.089190530126269, "d_m": 0.0, "x_m": 0.46761760490210263, "y_m": 7.4825640525106945, "d_right": 1.353767675738273, "d_left": 0.4121322245460548, "psi_rad": 0.8291469199065717, "kappa_radpm": 0.5879799740171945, "vx_mps": 3.8013447599961023, "ax_mps2": -0.05581904315076402}, {"id": 82, "s_m": 8.189057079880914, "d_m": 0.0, "x_m": 0.5326233172832399, "y_m": 7.558476977290656, "d_right": 1.4299341522073963, "d_left": 0.39545295064955094, "psi_rad": 0.9003261162514985, "kappa_radpm": 0.8310782789605076, "vx_mps": 3.7998780340755256, "ax_mps2": -0.05581904315074722}, {"id": 83, "s_m": 8.288923629635558, "d_m": 0.0, "x_m": 0.5915261238770252, "y_m": 7.63909119971398, "d_right": 1.4050604553264532, "d_left": 0.3765504925627971, "psi_rad": 0.9771486924933133, "kappa_radpm": 0.7062019444503305, "vx_mps": 3.798410741790511, "ax_mps2": 1.7551959581344672}, {"id": 84, "s_m": 8.388790179390204, "d_m": 0.0, "x_m": 0.6446069827087005, "y_m": 7.723659715803054, "d_right": 1.365849331011433, "d_left": 0.37627275072513255, "psi_rad": 1.0412924936214292, "kappa_radpm": 0.5828062758527549, "vx_mps": 3.844280802999947, "ax_mps2": 3.3298692379317427}, {"id": 85, "s_m": 8.48865672914485, "d_m": 0.0, "x_m": 0.6924498526914389, "y_m": 7.8112630335803805, "d_right": 1.3318405510955176, "d_left": 0.3693643379846594, "psi_rad": 1.1011224905139994, "kappa_radpm": 0.6163156392013992, "vx_mps": 3.929832056992597, "ax_mps2": 2.4221778240858893}, {"id": 86, "s_m": 8.588523278899494, "d_m": 0.0, "x_m": 0.7348413346516514, "y_m": 7.901707479900535, "d_right": 1.3105991676711382, "d_left": 0.36064635817359625, "psi_rad": 1.1644735267005069, "kappa_radpm": 0.651294900656953, "vx_mps": 3.990910808391238, "ax_mps2": 1.5650131902088182}, {"id": 87, "s_m": 8.68838982865414, "d_m": 0.0, "x_m": 0.7712845946504082, "y_m": 7.994636745716809, "d_right": 1.3031602582280362, "d_left": 0.35172606329866785, "psi_rad": 1.2297530430890158, "kappa_radpm": 0.6570122793462638, "vx_mps": 4.029882630522549, "ax_mps2": 1.2673698477367565}, {"id": 88, "s_m": 8.788256378408786, "d_m": 0.0, "x_m": 0.801571803664725, "y_m": 8.089813484292396, "d_right": 1.2967878627381464, "d_left": 0.35996313166013544, "psi_rad": 1.29581327913972, "kappa_radpm": 0.6647696498331491, "vx_mps": 4.061168517028125, "ax_mps2": 0.9721349914990977}, {"id": 89, "s_m": 8.888122928163432, "d_m": 0.0, "x_m": 0.8255357314151723, "y_m": 8.186737696691, "d_right": 1.2860985789100747, "d_left": 0.3882481842111009, "psi_rad": 1.3604353651233894, "kappa_radpm": 0.6300722455367928, "vx_mps": 4.085003948430646, "ax_mps2": 1.4213121997176101}, {"id": 90, "s_m": 8.987989477918076, "d_m": 0.0, "x_m": 0.8433572141597705, "y_m": 8.284994855365811, "d_right": 1.284898034045207, "d_left": 0.4269098716211331, "psi_rad": 1.4217954904852095, "kappa_radpm": 0.5990095437999716, "vx_mps": 4.119604392379678, "ax_mps2": 1.7685173693241012}, {"id": 91, "s_m": 9.087856027672721, "d_m": 0.0, "x_m": 0.8552951307661311, "y_m": 8.384158235544422, "d_right": 1.297343575360947, "d_left": 0.4668059808325252, "psi_rad": 1.47945538235606, "kappa_radpm": 0.5556540310235641, "vx_mps": 4.1622556150992285, "ax_mps2": 2.3066698455676287}, {"id": 92, "s_m": 9.187722577427367, "d_m": 0.0, "x_m": 0.8617097991393701, "y_m": 8.483781404442452, "d_right": 1.3021929016848717, "d_left": 0.510828607304066, "psi_rad": 1.5328483339652779, "kappa_radpm": 0.5145890788409118, "vx_mps": 4.217237261907954, "ax_mps2": 2.7792326705781556}, {"id": 93, "s_m": 9.287589127182011, "d_m": 0.0, "x_m": 0.8629807452825767, "y_m": 8.583675238373761, "d_right": 1.317405034488294, "d_left": 0.5573002449155134, "psi_rad": 1.5828219906094887, "kappa_radpm": 0.48591100830141526, "vx_mps": 4.282545373814147, "ax_mps2": 3.01739728599558}, {"id": 94, "s_m": 9.387455676936657, "d_m": 0.0, "x_m": 0.8594067053477963, "y_m": 8.683423722152305, "d_right": 1.3388694626947482, "d_left": 0.612765686848626, "psi_rad": 1.6299431047743633, "kappa_radpm": 0.4575277683543021, "vx_mps": 4.352340633631491, "ax_mps2": 3.259881458846047}, {"id": 95, "s_m": 9.487322226691303, "d_m": 0.0, "x_m": 0.8513253134446964, "y_m": 8.783006707099334, "d_right": 1.3116182912028007, "d_left": 0.6752407171662714, "psi_rad": 1.6725694718378572, "kappa_radpm": 0.3957068038942256, "vx_mps": 4.426508242279456, "ax_mps2": 4.170783657268239}, {"id": 96, "s_m": 9.587188776445949, "d_m": 0.0, "x_m": 0.839327405961364, "y_m": 8.882092688585502, "d_right": 1.2610736078563056, "d_left": 0.7365123870136424, "psi_rad": 1.7090048028819513, "kappa_radpm": 0.33616533868227355, "vx_mps": 4.5196259542374575, "ax_mps2": 5.0541768778158955}, {"id": 97, "s_m": 9.687055326200593, "d_m": 0.0, "x_m": 0.8239218555540645, "y_m": 8.980781019923567, "d_right": 1.2197526907285523, "d_left": 0.7993881276687881, "psi_rad": 1.7421451680350832, "kappa_radpm": 0.3272016156895857, "vx_mps": 4.629957362599702, "ax_mps2": 4.903070924414899}, {"id": 98, "s_m": 9.786921875955239, "d_m": 0.0, "x_m": 0.8053098391683232, "y_m": 9.078867888482307, "d_right": 1.1776995395076517, "d_left": 0.8577562961750108, "psi_rad": 1.7743220392897854, "kappa_radpm": 0.3165038574327936, "vx_mps": 4.734533845304991, "ax_mps2": 4.818653658028298}, {"id": 99, "s_m": 9.886788425709884, "d_m": 0.0, "x_m": 0.7836274954552792, "y_m": 9.176342601706875, "d_right": 1.1343381779217403, "d_left": 0.9209652110017845, "psi_rad": 1.804576038125851, "kappa_radpm": 0.28953815419433554, "vx_mps": 4.835106551351092, "ax_mps2": 5.140726666155244}, {"id": 100, "s_m": 9.986654975464528, "d_m": 0.0, "x_m": 0.759132119998, "y_m": 9.273162833236725, "d_right": 1.096715436960926, "d_left": 0.9882047512587887, "psi_rad": 1.8321751107023303, "kappa_radpm": 0.2622078568767978, "vx_mps": 4.940144596434347, "ax_mps2": 5.5064639833149736}, {"id": 101, "s_m": 10.086521525219174, "d_m": 0.0, "x_m": 0.7321401999492888, "y_m": 9.369310201706485, "d_right": 1.057576387178913, "d_left": 1.0588519569419172, "psi_rad": 1.856014718576777, "kappa_radpm": 0.21517962393623766, "vx_mps": 5.050232841404767, "ax_mps2": 6.396787890757308}, {"id": 102, "s_m": 10.18638807497382, "d_m": 0.0, "x_m": 0.703089781377215, "y_m": 9.464851599580248, "d_right": 1.0287681915447142, "d_left": 1.1325143354798015, "psi_rad": 1.8751558522119887, "kappa_radpm": 0.16982444072500844, "vx_mps": 5.175181351868524, "ax_mps2": 6.327176105081149}, {"id": 103, "s_m": 10.286254624728464, "d_m": 0.0, "x_m": 0.6723994467345114, "y_m": 9.55984012431808, "d_right": 0.9998457547969433, "d_left": 1.2088428266292488, "psi_rad": 1.8911233539588659, "kappa_radpm": 0.15001537327740408, "vx_mps": 5.295870893378792, "ax_mps2": 6.259822485996758}, {"id": 104, "s_m": 10.38612117448311, "d_m": 0.0, "x_m": 0.6402644540992137, "y_m": 9.654433143110865, "d_right": 0.9528800880450228, "d_left": 1.2875678206355152, "psi_rad": 1.9051113095092815, "kappa_radpm": 0.1314306737926482, "vx_mps": 5.4126280369930075, "ax_mps2": 6.19455625866494}, {"id": 105, "s_m": 10.485987724237756, "d_m": 0.0, "x_m": 0.6068926873030891, "y_m": 9.748505224608486, "d_right": 0.9020089415336143, "d_left": 1.3682293627113284, "psi_rad": 1.918299804254307, "kappa_radpm": 0.13286605716395, "vx_mps": 5.525739786532714, "ax_mps2": 6.131227259872892}, {"id": 106, "s_m": 10.585854273992402, "d_m": 0.0, "x_m": 0.5722388057925853, "y_m": 9.842225213326657, "d_right": 0.8609521999166732, "d_left": 1.4506427282102599, "psi_rad": 1.9316528372636221, "kappa_radpm": 0.13307415935337508, "vx_mps": 5.6354599823688645, "ax_mps2": 6.069702607558064}, {"id": 107, "s_m": 10.685720823747046, "d_m": 0.0, "x_m": 0.5363904419325273, "y_m": 9.935420766313241, "d_right": 0.8252992417902504, "d_left": 1.5304923698726889, "psi_rad": 1.9440719623639635, "kappa_radpm": 0.11571924348960196, "vx_mps": 5.7420144311720485, "ax_mps2": 6.009864032336809}, {"id": 108, "s_m": 10.785587373501691, "d_m": 0.0, "x_m": 0.4994557508599365, "y_m": 10.028224752311338, "d_right": 0.7964109170626128, "d_left": 1.608737989489593, "psi_rad": 1.9547706992474392, "kappa_radpm": 0.09775777070657024, "vx_mps": 5.845605058383272, "ax_mps2": 5.951605716927246}, {"id": 109, "s_m": 10.885453923256337, "d_m": 0.0, "x_m": 0.46163510077841874, "y_m": 10.12065614012174, "d_right": 0.7771909558880433, "d_left": 1.6886971463412797, "psi_rad": 1.963139269881346, "kappa_radpm": 0.0698294972167659, "vx_mps": 5.946413301772355, "ax_mps2": 5.894832530049141}, {"id": 110, "s_m": 10.985320473010981, "d_m": 0.0, "x_m": 0.42317324434423226, "y_m": 10.212815652798556, "d_right": 0.7388894526508956, "d_left": 1.7702840123675114, "psi_rad": 1.9687180884816502, "kappa_radpm": 0.04192216403810697, "vx_mps": 6.0446029090263735, "ax_mps2": 5.839458570157473}, {"id": 111, "s_m": 11.085187022765627, "d_m": 0.0, "x_m": 0.3843218780045163, "y_m": 10.304821776491968, "d_right": 0.7037017280952369, "d_left": 1.8335124377365195, "psi_rad": 1.9715257687891743, "kappa_radpm": 0.014299933898672493, "vx_mps": 6.140322262510637, "ax_mps2": 5.785405955033826}, {"id": 112, "s_m": 11.185053572520273, "d_m": 0.0, "x_m": 0.34534371618944926, "y_m": 10.396761589127168, "d_right": 0.6764649106829236, "d_left": 1.798314132457326, "psi_rad": 1.9715742841082258, "kappa_radpm": -0.013231677799659423, "vx_mps": 6.233706325357504, "ax_mps2": 0.7933830616115061}, {"id": 113, "s_m": 11.284920122274917, "d_m": 0.0, "x_m": 0.3064794223416243, "y_m": 10.488766462790835, "d_right": 0.6613763568828127, "d_left": 1.7681830638335, "psi_rad": 1.9689398239840379, "kappa_radpm": -0.03952929864163651, "vx_mps": 6.246403718044167, "ax_mps2": -9.704356581785074}, {"id": 114, "s_m": 11.384786672029563, "d_m": 0.0, "x_m": 0.26798616178469814, "y_m": 10.580906076996651, "d_right": 0.6232002899067196, "d_left": 1.7436500431372735, "psi_rad": 1.9636783227535484, "kappa_radpm": -0.06577759409865724, "vx_mps": 6.089275670387462, "ax_mps2": -8.921230993017916}, {"id": 115, "s_m": 11.484653221784209, "d_m": 0.0, "x_m": 0.23008915085166545, "y_m": 10.673317074934218, "d_right": 0.584473848192922, "d_left": 1.7252012726609702, "psi_rad": 1.955844948955294, "kappa_radpm": -0.09108947728575473, "vx_mps": 5.941162602748627, "ax_mps2": -8.21459491513429}, {"id": 116, "s_m": 11.584519771538854, "d_m": 0.0, "x_m": 0.19304426760125998, "y_m": 10.766044225304006, "d_right": 0.5545725003044611, "d_left": 1.6920550167628512, "psi_rad": 1.9454837063001778, "kappa_radpm": -0.11633694843242078, "vx_mps": 5.801438318958998, "ax_mps2": -7.613998268321088}, {"id": 117, "s_m": 11.684386321293498, "d_m": 0.0, "x_m": 0.15706736933309573, "y_m": 10.859221267901807, "d_right": 0.5352195787913251, "d_left": 1.6560509262823158, "psi_rad": 1.9326653970215408, "kappa_radpm": -0.1403486799419191, "vx_mps": 5.668855183799961, "ax_mps2": -7.070926798928641}, {"id": 118, "s_m": 11.784252871048144, "d_m": 0.0, "x_m": 0.12241078545943289, "y_m": 10.952864239325393, "d_right": 0.508005354780814, "d_left": 1.621392986559482, "psi_rad": 1.917449930168989, "kappa_radpm": -0.16429852424234284, "vx_mps": 5.542889225750624, "ax_mps2": -6.617255999926384}, {"id": 119, "s_m": 11.88411942080279, "d_m": 0.0, "x_m": 0.08928344691492765, "y_m": 11.047091344755382, "d_right": 0.4921511621224939, "d_left": 1.5882856805164798, "psi_rad": 1.899909780107856, "kappa_radpm": -0.18694030846950535, "vx_mps": 5.422355200264051, "ax_mps2": -6.201413420821956}, {"id": 120, "s_m": 11.983985970557434, "d_m": 0.0, "x_m": 0.05793099215309485, "y_m": 11.14189014000863, "d_right": 0.4680496900670031, "d_left": 1.5569696640796917, "psi_rad": 1.8801089926386128, "kappa_radpm": -0.20975736016407395, "vx_mps": 5.306911379884851, "ax_mps2": -5.798350589747954}, {"id": 121, "s_m": 12.08385252031208, "d_m": 0.0, "x_m": 0.028564707653803614, "y_m": 11.237349638360058, "d_right": 0.44464186022246527, "d_left": 1.5276503122556104, "psi_rad": 1.8579737322095893, "kappa_radpm": -0.2335124438001452, "vx_mps": 5.196651408226209, "ax_mps2": -5.41654378309152}, {"id": 122, "s_m": 12.183719070066726, "d_m": 0.0, "x_m": 0.0014383116386875025, "y_m": 11.333446749844887, "d_right": 0.4136039006790477, "d_left": 1.5005762127724176, "psi_rad": 1.8334659596236764, "kappa_radpm": -0.2578246433380762, "vx_mps": 5.091495141919983, "ax_mps2": -4.9413637653090925}, {"id": 123, "s_m": 12.28358561982137, "d_m": 0.0, "x_m": -0.023202073515936485, "y_m": 11.430224127628321, "d_right": 0.3828129188635626, "d_left": 1.4759878593157434, "psi_rad": 1.806265671637479, "kappa_radpm": -0.28693175431699885, "vx_mps": 4.993632833874225, "ax_mps2": -4.502598176811999}, {"id": 124, "s_m": 12.383452169576016, "d_m": 0.0, "x_m": -0.04505833613509199, "y_m": 11.527662319568964, "d_right": 0.36197573562983426, "d_left": 1.4209247114289842, "psi_rad": 1.7761562446822843, "kappa_radpm": -0.31577605122849634, "vx_mps": 4.902759528046136, "ax_mps2": -4.150127713766875}, {"id": 125, "s_m": 12.483318719330661, "d_m": 0.0, "x_m": -0.0638343995330908, "y_m": 11.625737683271039, "d_right": 0.3649426911593492, "d_left": 1.3672158700426127, "psi_rad": 1.7433111037021236, "kappa_radpm": -0.3421038223716017, "vx_mps": 4.817482030917926, "ax_mps2": -3.8168027658445407}, {"id": 126, "s_m": 12.583185269085307, "d_m": 0.0, "x_m": -0.07925049922570647, "y_m": 11.72440495077243, "d_right": 0.3803850735086272, "d_left": 1.3219528745483045, "psi_rad": 1.707820961519588, "kappa_radpm": -0.3684418522631322, "vx_mps": 4.737698942691414, "ax_mps2": -3.5330111930198584}, {"id": 127, "s_m": 12.683051818839951, "d_m": 0.0, "x_m": -0.09102628217999133, "y_m": 11.823551618158133, "d_right": 0.39098380084210776, "d_left": 1.2863408889730852, "psi_rad": 1.669792487764212, "kappa_radpm": -0.3933293746988423, "vx_mps": 4.662631445374648, "ax_mps2": -3.2325705793056514}, {"id": 128, "s_m": 12.782918368594597, "d_m": 0.0, "x_m": -0.0989017011409629, "y_m": 11.923113911536744, "d_right": 0.3612702902706152, "d_left": 1.248545456529496, "psi_rad": 1.6292491351092029, "kappa_radpm": -0.41949253466912934, "vx_mps": 4.59287281058481, "ax_mps2": -2.7472308807091568}, {"id": 129, "s_m": 12.882784918349243, "d_m": 0.0, "x_m": -0.10258841011751516, "y_m": 12.022878557217604, "d_right": 0.35374787797495005, "d_left": 1.1980203177758777, "psi_rad": 1.5856400615629989, "kappa_radpm": -0.4542149873661563, "vx_mps": 4.532743949898067, "ax_mps2": -2.17622488647748}, {"id": 130, "s_m": 12.982651468103887, "d_m": 0.0, "x_m": -0.10174633135148677, "y_m": 12.122763736638596, "d_right": 0.3529035766757369, "d_left": 1.1463099153981577, "psi_rad": 1.5384888529602614, "kappa_radpm": -0.49234102158325926, "vx_mps": 4.484540508628742, "ax_mps2": -1.0817511651021476}, {"id": 131, "s_m": 13.082518017858533, "d_m": 0.0, "x_m": -0.09596938915363658, "y_m": 12.222456675962828, "d_right": 0.347120999232092, "d_left": 1.1058072801171783, "psi_rad": 1.4863342598536056, "kappa_radpm": -0.552658280834061, "vx_mps": 4.460385864522093, "ax_mps2": -0.07685156757174672}, {"id": 132, "s_m": 13.182384567613179, "d_m": 0.0, "x_m": -0.0847009278111252, "y_m": 12.321668414966979, "d_right": 0.33583607020005485, "d_left": 1.0710976033988597, "psi_rad": 1.4280882582362282, "kappa_radpm": -0.6036310745598941, "vx_mps": 4.458664851571067, "ax_mps2": -0.07685156757174672}, {"id": 133, "s_m": 13.282251117367824, "d_m": 0.0, "x_m": -0.06757841566137807, "y_m": 12.420034707526819, "d_right": 0.33613521428982146, "d_left": 1.049854901875971, "psi_rad": 1.369320650999466, "kappa_radpm": -0.5735817224332168, "vx_mps": 4.456943174064707, "ax_mps2": 0.5293840107977027}, {"id": 134, "s_m": 13.382117667122468, "d_m": 0.0, "x_m": -0.0448492625966384, "y_m": 12.517268285899917, "d_right": 0.3596007589418533, "d_left": 1.0396970452558902, "psi_rad": 1.3135080152129148, "kappa_radpm": -0.5394996392908392, "vx_mps": 4.468789317717862, "ax_mps2": 1.1489491570426473}, {"id": 135, "s_m": 13.481984216877114, "d_m": 0.0, "x_m": -0.016970746031082288, "y_m": 12.613125453801706, "d_right": 0.38723328489913483, "d_left": 1.0216909457003627, "psi_rad": 1.2632242179336404, "kappa_radpm": -0.4678679451252945, "vx_mps": 4.494392188323577, "ax_mps2": 2.4711847086289924}, {"id": 136, "s_m": 13.58185076663176, "d_m": 0.0, "x_m": 0.015373552881316007, "y_m": 12.707628538122123, "d_right": 0.39482695780110144, "d_left": 1.0152978443557448, "psi_rad": 1.220025350845711, "kappa_radpm": -0.3968309154528121, "vx_mps": 4.54897115002705, "ax_mps2": 3.7083266811441056}, {"id": 137, "s_m": 13.681717316386404, "d_m": 0.0, "x_m": 0.051414272064280134, "y_m": 12.800729827133546, "d_right": 0.40887799761160126, "d_left": 1.0129072154741865, "psi_rad": 1.184103219496994, "kappa_radpm": -0.3228433894522554, "vx_mps": 4.629666738092098, "ax_mps2": 4.997375262318847}, {"id": 138, "s_m": 13.78158386614105, "d_m": 0.0, "x_m": 0.09046095024139611, "y_m": 12.892674795832727, "d_right": 0.4425810640044925, "d_left": 1.0033062533844568, "psi_rad": 1.155520213641827, "kappa_radpm": -0.24941059398324597, "vx_mps": 4.736238524013579, "ax_mps2": 6.3185145002458185}, {"id": 139, "s_m": 13.881450415895696, "d_m": 0.0, "x_m": 0.13176379274158437, "y_m": 12.983573916522975, "d_right": 0.46002795947590397, "d_left": 0.9929926587578457, "psi_rad": 1.1343251263189427, "kappa_radpm": -0.17518857338823865, "vx_mps": 4.867645410440127, "ax_mps2": 6.498294614328637}, {"id": 140, "s_m": 13.98131696565034, "d_m": 0.0, "x_m": 0.174670334256717, "y_m": 13.07377767240666, "d_right": 0.46506315252482006, "d_left": 0.9873108635999641, "psi_rad": 1.1205205896701573, "kappa_radpm": -0.10128616437283819, "vx_mps": 4.999189570982801, "ax_mps2": 6.425190582665647}, {"id": 141, "s_m": 14.081183515404986, "d_m": 0.0, "x_m": 0.21846835278355356, "y_m": 13.163503433795812, "d_right": 0.47537720726646393, "d_left": 0.9904683456047089, "psi_rad": 1.114078764271741, "kappa_radpm": -0.02778340982719673, "vx_mps": 5.125935972740678, "ax_mps2": 3.018595830922543}, {"id": 142, "s_m": 14.181050065159631, "d_m": 0.0, "x_m": 0.2625324179212557, "y_m": 13.253142202160896, "d_right": 0.5053500675576892, "d_left": 1.003878322281731, "psi_rad": 1.1149652115630857, "kappa_radpm": 0.04532163765794588, "vx_mps": 5.184412512340517, "ax_mps2": -9.177315675015473}, {"id": 143, "s_m": 14.280916614914277, "d_m": 0.0, "x_m": 0.30616489259876467, "y_m": 13.342921739200623, "d_right": 0.5375489110132202, "d_left": 1.0050000709805298, "psi_rad": 1.1230497202021794, "kappa_radpm": 0.1165698004739044, "vx_mps": 5.0045099053920215, "ax_mps2": -7.705112705604358}, {"id": 144, "s_m": 14.380783164668921, "d_m": 0.0, "x_m": 0.3487830265447762, "y_m": 13.43327346030184, "d_right": 0.5709598104457173, "d_left": 0.9972678828540815, "psi_rad": 1.1382241793489474, "kappa_radpm": 0.18657915180936857, "vx_mps": 4.848314485510207, "ax_mps2": -6.515787215434195}, {"id": 145, "s_m": 14.480649714423567, "d_m": 0.0, "x_m": 0.3896603019270733, "y_m": 13.524272964497067, "d_right": 0.6061319525574715, "d_left": 0.9815746720737195, "psi_rad": 1.1600549610307436, "kappa_radpm": 0.25084976628441724, "vx_mps": 4.712190040111542, "ax_mps2": -5.476907762421846}, {"id": 146, "s_m": 14.580516264178213, "d_m": 0.0, "x_m": 0.42832111357871083, "y_m": 13.616445128844076, "d_right": 0.643787788936135, "d_left": 0.9733748627961428, "psi_rad": 1.188271806233923, "kappa_radpm": 0.3128587434779997, "vx_mps": 4.594650716976362, "ax_mps2": -4.683344404039292}, {"id": 147, "s_m": 14.680382813932857, "d_m": 0.0, "x_m": 0.4639826689788607, "y_m": 13.709481533306597, "d_right": 0.684272115543062, "d_left": 0.9557225550228714, "psi_rad": 1.2221442833164333, "kappa_radpm": 0.36651821801996615, "vx_mps": 4.491703053088345, "ax_mps2": -4.015550901515808}, {"id": 148, "s_m": 14.780249363687503, "d_m": 0.0, "x_m": 0.4963627808749442, "y_m": 13.804183583445356, "d_right": 0.7283874369763962, "d_left": 0.9323702646508047, "psi_rad": 1.2613739635981551, "kappa_radpm": 0.4160013616665535, "vx_mps": 4.401517680224183, "ax_mps2": -3.651274261374265}, {"id": 149, "s_m": 14.880115913442149, "d_m": 0.0, "x_m": 0.5246398249509439, "y_m": 13.899594175162752, "d_right": 0.7760923327339622, "d_left": 0.915329540232748, "psi_rad": 1.3045600050909563, "kappa_radpm": 0.45166088788400627, "vx_mps": 4.317878826917598, "ax_mps2": -3.335764527789493}, {"id": 150, "s_m": 14.979982463196793, "d_m": 0.0, "x_m": 0.5487613147998924, "y_m": 13.9968910346884, "d_right": 0.8300915262286979, "d_left": 0.9003479210746217, "psi_rad": 1.3515700866844658, "kappa_radpm": 0.48580624018839524, "vx_mps": 4.240025350817464, "ax_mps2": -3.1397683910053025}, {"id": 151, "s_m": 15.079849012951438, "d_m": 0.0, "x_m": 0.5679847129445069, "y_m": 14.094426393331878, "d_right": 0.8920888262380251, "d_left": 0.8728612124990198, "psi_rad": 1.4013035850818378, "kappa_radpm": 0.514521423981067, "vx_mps": 4.165417062323768, "ax_mps2": -2.978501714149666}, {"id": 152, "s_m": 15.179715562706084, "d_m": 0.0, "x_m": 0.5822910082552817, "y_m": 14.193621530539502, "d_right": 0.9596473430633028, "d_left": 0.8328732619082351, "psi_rad": 1.4542808997153713, "kappa_radpm": 0.5422765060187993, "vx_mps": 4.093384165191085, "ax_mps2": -2.9688475209486294}, {"id": 153, "s_m": 15.27958211246073, "d_m": 0.0, "x_m": 0.5911696997181997, "y_m": 14.292849312158811, "d_right": 1.03553611934655, "d_left": 0.7927759887112131, "psi_rad": 1.5090571402768787, "kappa_radpm": 0.5570725067416925, "vx_mps": 4.020300586586477, "ax_mps2": -3.0570642431392008}, {"id": 154, "s_m": 15.379448662215374, "d_m": 0.0, "x_m": 0.5945258614909197, "y_m": 14.39285796153129, "d_right": 1.1105665635204698, "d_left": 0.7530036766170876, "psi_rad": 1.5657922364707932, "kappa_radpm": 0.577985721098734, "vx_mps": 3.9436302932483875, "ax_mps2": -2.855999073531226}, {"id": 155, "s_m": 15.47931521197002, "d_m": 0.0, "x_m": 0.5920893931410455, "y_m": 14.492726708220335, "d_right": 1.183524537800127, "d_left": 0.712564749711515, "psi_rad": 1.6252050783337442, "kappa_radpm": 0.6142071605681579, "vx_mps": 3.8706307422272026, "ax_mps2": -2.52287311951143}, {"id": 156, "s_m": 15.579181761724666, "d_m": 0.0, "x_m": 0.5835295545851445, "y_m": 14.59224238870621, "d_right": 1.2595515112428093, "d_left": 0.666585373929249, "psi_rad": 1.6887323155782514, "kappa_radpm": 0.6584593352854581, "vx_mps": 3.8049810873177297, "ax_mps2": -2.5120909258902198}, {"id": 157, "s_m": 15.67904831147931, "d_m": 0.0, "x_m": 0.5684396548879159, "y_m": 14.691112263255167, "d_right": 1.342539695638735, "d_left": 0.6160548387570742, "psi_rad": 1.7560198447696465, "kappa_radpm": 0.6768302958697459, "vx_mps": 3.7384667135027967, "ax_mps2": -2.5655988576615476}, {"id": 158, "s_m": 15.778914861233956, "d_m": 0.0, "x_m": 0.5467255818554014, "y_m": 14.78859377508758, "d_right": 1.4308378796153056, "d_left": 0.5642306830499163, "psi_rad": 1.8241134511088344, "kappa_radpm": 0.6885919446425697, "vx_mps": 3.6692912607246324, "ax_mps2": -2.6138903914613665}, {"id": 159, "s_m": 15.878781410988601, "d_m": 0.0, "x_m": 0.5183237542283325, "y_m": 14.884414408325139, "d_right": 1.5233642049250804, "d_left": 0.5199148693354138, "psi_rad": 1.8944726279949315, "kappa_radpm": 0.7291313801769838, "vx_mps": 3.5974460282770093, "ax_mps2": -2.138791570198187}, {"id": 160, "s_m": 15.978647960743245, "d_m": 0.0, "x_m": 0.4830409659597653, "y_m": 14.977833443126952, "d_right": 1.618975186092595, "d_left": 0.4850930122318212, "psi_rad": 1.970406909080952, "kappa_radpm": 0.7918528262594522, "vx_mps": 3.537574092064505, "ax_mps2": -1.729255559481615}, {"id": 161, "s_m": 16.078514510497893, "d_m": 0.0, "x_m": 0.44047616053474364, "y_m": 15.068196454294227, "d_right": 1.7168973139917187, "d_left": 0.46145737410662513, "psi_rad": 2.052555708064814, "kappa_radpm": 0.8478719084683851, "vx_mps": 3.4884152396334733, "ax_mps2": -1.1446874311425475}, {"id": 162, "s_m": 16.178381060252537, "d_m": 0.0, "x_m": 0.39030325924995013, "y_m": 15.154787446291733, "d_right": 1.8164241831083834, "d_left": 0.4416802688149967, "psi_rad": 2.1404279791586682, "kappa_radpm": 0.9129898541275459, "vx_mps": 3.4554896781086812, "ax_mps2": -0.37791764697906355}, {"id": 163, "s_m": 16.27824761000718, "d_m": 0.0, "x_m": 0.33270537054349403, "y_m": 15.236056209876837, "d_right": 1.8224085901340081, "d_left": 0.40232993135772793, "psi_rad": 2.2355841164943095, "kappa_radpm": 0.9833984574763892, "vx_mps": 3.4445502249967634, "ax_mps2": -0.2582965245064556}, {"id": 164, "s_m": 16.37811415976183, "d_m": 0.0, "x_m": 0.26720328344980204, "y_m": 15.311608559491642, "d_right": 1.7615810642092415, "d_left": 0.37561914680080727, "psi_rad": 2.3347837108414766, "kappa_radpm": 0.9978021424435783, "vx_mps": 3.437053372744319, "ax_mps2": -0.23748631568421727}, {"id": 165, "s_m": 16.477980709516473, "d_m": 0.0, "x_m": 0.19491281278048944, "y_m": 15.379916887088198, "d_right": 1.7090465656602247, "d_left": 0.3637471691240231, "psi_rad": 2.434308745459802, "kappa_radpm": 1.0035778545259153, "vx_mps": 3.430146062366798, "ax_mps2": -0.045449917147899054}, {"id": 166, "s_m": 16.577847259271117, "d_m": 0.0, "x_m": 0.11576962675968938, "y_m": 15.440944078137415, "d_right": 1.6591886071024917, "d_left": 0.3447732841396883, "psi_rad": 2.5354256756540945, "kappa_radpm": 1.0206838037568742, "vx_mps": 3.4288225612221552, "ax_mps2": -0.04544991714789744}, {"id": 167, "s_m": 16.677713809025764, "d_m": 0.0, "x_m": 0.030937310463608023, "y_m": 15.493523557259055, "d_right": 1.6198481101734084, "d_left": 0.34408907083043816, "psi_rad": 2.6381321239101623, "kappa_radpm": 1.017981187472414, "vx_mps": 3.4274985490181713, "ax_mps2": -0.004399555869807363}, {"id": 168, "s_m": 16.77758035878041, "d_m": 0.0, "x_m": -0.059039883509467976, "y_m": 15.537364544922575, "d_right": 1.591934385827678, "d_left": 0.36190232230126845, "psi_rad": 2.737501141660631, "kappa_radpm": 0.972073045985122, "vx_mps": 3.4273703573718626, "ax_mps2": 0.5357752371236701}, {"id": 169, "s_m": 16.877446908535052, "d_m": 0.0, "x_m": -0.15234635586505216, "y_m": 15.57206598491837, "d_right": 1.5574261077896945, "d_left": 0.3957224944653704, "psi_rad": 2.833177183256138, "kappa_radpm": 0.9438931593599581, "vx_mps": 3.4429463567331924, "ax_mps2": 0.7653790018713972}, {"id": 170, "s_m": 16.9773134582897, "d_m": 0.0, "x_m": -0.2486923979567534, "y_m": 15.597950466746786, "d_right": 1.531666210499169, "d_left": 0.4420588638158638, "psi_rad": 2.9237424114211317, "kappa_radpm": 0.8637288878125933, "vx_mps": 3.465075920623597, "ax_mps2": 1.5830061022546702}, {"id": 171, "s_m": 17.077180008044344, "d_m": 0.0, "x_m": -0.3467188703085666, "y_m": 15.61543739545561, "d_right": 1.514153910251437, "d_left": 0.4975300245644145, "psi_rad": 3.0050044897392922, "kappa_radpm": 0.7851654270153546, "vx_mps": 3.5104030895369993, "ax_mps2": 2.2768231342906398}, {"id": 172, "s_m": 17.177046557798988, "d_m": 0.0, "x_m": -0.4461098397259865, "y_m": 15.6251961927419, "d_right": 1.5043813961019408, "d_left": 0.5467566804158372, "psi_rad": 3.08199708664197, "kappa_radpm": 0.7587851662387267, "vx_mps": 3.574589038291987, "ax_mps2": 2.255084401399475}, {"id": 173, "s_m": 17.276913107553636, "d_m": 0.0, "x_m": -0.5459270776637807, "y_m": 15.62739684924395, "d_right": 1.5021767896891984, "d_left": 0.5543206139462094, "psi_rad": -3.1266038494388866, "kappa_radpm": 0.727020651677818, "vx_mps": 3.6370457503066707, "ax_mps2": 2.331759185732831}, {"id": 174, "s_m": 17.37677965730828, "d_m": 0.0, "x_m": -0.6456274232546892, "y_m": 15.622362988029948, "d_right": 1.5071993988628607, "d_left": 0.5723439454315526, "psi_rad": -3.0565413430594397, "kappa_radpm": 0.6757647463997617, "vx_mps": 3.7005177042272726, "ax_mps2": 2.693253515370017}, {"id": 175, "s_m": 17.476646207062927, "d_m": 0.0, "x_m": -0.7446985422088288, "y_m": 15.61061936816417, "d_right": 1.5189092246981801, "d_left": 0.6002354539559435, "psi_rad": -2.9912281030655743, "kappa_radpm": 0.641167416356816, "vx_mps": 3.772500914736621, "ax_mps2": 2.820039572188113}, {"id": 176, "s_m": 17.57651275681757, "d_m": 0.0, "x_m": -0.8429553545817458, "y_m": 15.592528350032707, "d_right": 1.5369407215702495, "d_left": 0.6347452814415577, "psi_rad": -2.92809655748945, "kappa_radpm": 0.6231366868463853, "vx_mps": 3.8464293047163394, "ax_mps2": 2.723486186498648}, {"id": 177, "s_m": 17.676379306572215, "d_m": 0.0, "x_m": -0.9398002523726029, "y_m": 15.568389115603285, "d_right": 1.5476720062640126, "d_left": 0.6657124949736762, "psi_rad": -2.8669578368626203, "kappa_radpm": 0.5985071346318471, "vx_mps": 3.9165021043886505, "ax_mps2": 2.7602078381751927}, {"id": 178, "s_m": 17.776245856326863, "d_m": 0.0, "x_m": -1.0351368278317956, "y_m": 15.538472748796345, "d_right": 1.5487729743056704, "d_left": 0.7042710157795268, "psi_rad": -2.808556503825252, "kappa_radpm": 0.5707919456109328, "vx_mps": 3.9862631123007057, "ax_mps2": 2.8685191802985965}, {"id": 179, "s_m": 17.876112406081507, "d_m": 0.0, "x_m": -1.128505057093491, "y_m": 15.50320883098198, "d_right": 1.5603653700560647, "d_left": 0.7492790354282408, "psi_rad": -2.7527396584410617, "kappa_radpm": 0.5489100460038793, "vx_mps": 4.057490828994219, "ax_mps2": 2.8995225576914585}, {"id": 180, "s_m": 17.97597895583615, "d_m": 0.0, "x_m": -1.2199106352397024, "y_m": 15.462830283753396, "d_right": 1.571991066283911, "d_left": 0.7997967199736807, "psi_rad": -2.6987953614896814, "kappa_radpm": 0.5311245620224772, "vx_mps": 4.12823963147938, "ax_mps2": 2.882499780520805}, {"id": 181, "s_m": 18.0758455055908, "d_m": 0.0, "x_m": -1.3089484963849705, "y_m": 15.417712402001536, "d_right": 1.590475845038911, "d_left": 0.8485115649963924, "psi_rad": -2.646684598882265, "kappa_radpm": 0.5121283664617662, "vx_mps": 4.1973912219872105, "ax_mps2": 2.9091661725620948}, {"id": 182, "s_m": 18.175712055345443, "d_m": 0.0, "x_m": -1.395649612178475, "y_m": 15.368049804218275, "d_right": 1.6161250775655802, "d_left": 0.8954021902960533, "psi_rad": -2.5964435676911464, "kappa_radpm": 0.49381904849967845, "vx_mps": 4.266046160913954, "ax_mps2": 2.942558267532206}, {"id": 183, "s_m": 18.275578605100087, "d_m": 0.0, "x_m": -1.4797223395885688, "y_m": 15.314221470998113, "d_right": 1.6463133205964544, "d_left": 0.9402427701917696, "psi_rad": -2.5480740206835852, "kappa_radpm": 0.47459317499688247, "vx_mps": 4.334383016106165, "ax_mps2": 3.011249885969832}, {"id": 184, "s_m": 18.375445154854734, "d_m": 0.0, "x_m": -1.561211179056324, "y_m": 15.256425052230494, "d_right": 1.6731684838172918, "d_left": 0.9892049837825166, "psi_rad": -2.501598411946957, "kappa_radpm": 0.4560544172905308, "vx_mps": 4.403217278698763, "ax_mps2": 3.08291791022289}, {"id": 185, "s_m": 18.47531170460938, "d_m": 0.0, "x_m": -1.63993447390786, "y_m": 15.195016316394497, "d_right": 1.7096643281976611, "d_left": 1.0347135036194852, "psi_rad": -2.4569737461186065, "kappa_radpm": 0.4375448580176991, "vx_mps": 4.472592442104786, "ax_mps2": 3.169983834991425}, {"id": 186, "s_m": 18.575178254364022, "d_m": 0.0, "x_m": -1.715935988726849, "y_m": 15.13019504072784, "d_right": 1.755002103542763, "d_left": 1.0605146710820799, "psi_rad": -2.41416300883213, "kappa_radpm": 0.41979350970954893, "vx_mps": 4.542822234022594, "ax_mps2": 3.2568430746932906}, {"id": 187, "s_m": 18.67504480411867, "d_m": 0.0, "x_m": -1.7891237181593664, "y_m": 15.062275887568186, "d_right": 1.7992236799097094, "d_left": 1.0888133762084047, "psi_rad": -2.373207824057719, "kappa_radpm": 0.3997114444601721, "vx_mps": 4.613863154868587, "ax_mps2": 3.4087545900507457}, {"id": 188, "s_m": 18.774911353873314, "d_m": 0.0, "x_m": -1.859565713398055, "y_m": 14.9914660154672, "d_right": 1.8421788577322091, "d_left": 1.1216248006840672, "psi_rad": -2.3343137689583773, "kappa_radpm": 0.37920809683233553, "vx_mps": 4.687064575146288, "ax_mps2": 3.5844119010684063}, {"id": 189, "s_m": 18.874777903627958, "d_m": 0.0, "x_m": -1.9272570908698559, "y_m": 14.918064276040917, "d_right": 1.8294549857717155, "d_left": 1.1351804033508879, "psi_rad": -2.297571268315974, "kappa_radpm": 0.35584002071053955, "vx_mps": 4.762824795277444, "ax_mps2": 3.8402525537141434}, {"id": 190, "s_m": 18.974644453382606, "d_m": 0.0, "x_m": -1.9923154343916112, "y_m": 14.842282793662156, "d_right": 1.7495544439328603, "d_left": 1.1535232446425432, "psi_rad": -2.2632376454079592, "kappa_radpm": 0.33175819515026905, "vx_mps": 4.842677521367848, "ax_mps2": 4.129104523219858}, {"id": 191, "s_m": 19.07451100313725, "d_m": 0.0, "x_m": -2.054809675345227, "y_m": 14.764395999599518, "d_right": 1.6726099181724754, "d_left": 1.1768821164777061, "psi_rad": -2.2309480101885937, "kappa_radpm": 0.31735681667939175, "vx_mps": 4.9270928974986825, "ax_mps2": 4.201920446365016}, {"id": 192, "s_m": 19.174377552891897, "d_m": 0.0, "x_m": -2.1148111656789776, "y_m": 14.68455766272279, "d_right": 1.6003910796695657, "d_left": 1.191820629854975, "psi_rad": -2.199791815365769, "kappa_radpm": 0.30662728880626533, "vx_mps": 5.011537390384904, "ax_mps2": 4.201807824622095}, {"id": 193, "s_m": 19.27424410264654, "d_m": 0.0, "x_m": -2.172334449914774, "y_m": 14.602926238312168, "d_right": 1.5335784697580062, "d_left": 1.2022947021670112, "psi_rad": -2.16967320288032, "kappa_radpm": 0.29669221349201425, "vx_mps": 5.094580170689247, "ax_mps2": 4.199091913391597}, {"id": 194, "s_m": 19.374110652401185, "d_m": 0.0, "x_m": -2.227416009190583, "y_m": 14.519623051356637, "d_right": 1.4728844271850632, "d_left": 1.2174053754075462, "psi_rad": -2.1405192378536277, "kappa_radpm": 0.28720140214632, "vx_mps": 5.176238475820658, "ax_mps2": 4.201306117840829}, {"id": 195, "s_m": 19.473977202155833, "d_m": 0.0, "x_m": -2.280089096703842, "y_m": 14.434778471404163, "d_right": 1.4190689956582918, "d_left": 1.223245269690369, "psi_rad": -2.112508864294286, "kappa_radpm": 0.2721878583369295, "vx_mps": 5.256670491049433, "ax_mps2": 4.371923009661739}, {"id": 196, "s_m": 19.573843751910477, "d_m": 0.0, "x_m": -2.330436645932364, "y_m": 14.348533786430052, "d_right": 1.3728559697034932, "d_left": 1.2344681458194422, "psi_rad": -2.086174699057402, "kappa_radpm": 0.25524322052322834, "vx_mps": 5.3390825415051975, "ax_mps2": 4.613888528103825}, {"id": 197, "s_m": 19.67371030166512, "d_m": 0.0, "x_m": -2.3785698340905395, "y_m": 14.26102798041603, "d_right": 1.3349129009446334, "d_left": 1.2425652649187948, "psi_rad": -2.061418316246911, "kappa_radpm": 0.2413076630330621, "vx_mps": 5.4246980230713415, "ax_mps2": 4.785194058708402}, {"id": 198, "s_m": 19.77357685141977, "d_m": 0.0, "x_m": -2.424576290505218, "y_m": 14.172395145178335, "d_right": 1.3058546956552866, "d_left": 1.2350560960627441, "psi_rad": -2.0379564074673233, "kappa_radpm": 0.22860048100706548, "vx_mps": 5.51208765193492, "ax_mps2": 4.936950348797114}, {"id": 199, "s_m": 19.873443401174413, "d_m": 0.0, "x_m": -2.4685522111478755, "y_m": 14.082727681471768, "d_right": 1.2861694855490622, "d_left": 1.2333211535011188, "psi_rad": -2.015800060393797, "kappa_radpm": 0.21472507284572104, "vx_mps": 5.600819821945902, "ax_mps2": 5.142981947202369}, {"id": 200, "s_m": 19.973309950929057, "d_m": 0.0, "x_m": -2.5105910652857037, "y_m": 13.992147097022345, "d_right": 1.2133403291204192, "d_left": 1.2375227922796146, "psi_rad": -1.9950732228672985, "kappa_radpm": 0.20040067213717833, "vx_mps": 5.691784114224394, "ax_mps2": 5.382499289617496}, {"id": 201, "s_m": 20.073176500683704, "d_m": 0.0, "x_m": -2.550813157803765, "y_m": 13.900733331998937, "d_right": 1.118090276955997, "d_left": 1.2477414725095577, "psi_rad": -1.9757718211009472, "kappa_radpm": 0.1861087044073725, "vx_mps": 5.785453281218253, "ax_mps2": 5.641273037956713}, {"id": 202, "s_m": 20.17304305043835, "d_m": 0.0, "x_m": -2.5893249776755387, "y_m": 13.808598243313812, "d_right": 1.024384581359276, "d_left": 1.2353307443299024, "psi_rad": -1.9578997319843712, "kappa_radpm": 0.17183923741948526, "vx_mps": 5.882025043997035, "ax_mps2": 5.920917566157244}, {"id": 203, "s_m": 20.272909600192992, "d_m": 0.0, "x_m": -2.626254634655975, "y_m": 13.715805303518653, "d_right": 0.9326422894752895, "d_left": 1.228325063966562, "psi_rad": -1.9414646192636242, "kappa_radpm": 0.1571422100838727, "vx_mps": 5.981707267631533, "ax_mps2": 5.874937104364869}, {"id": 204, "s_m": 20.37277614994764, "d_m": 0.0, "x_m": -2.6617194642762714, "y_m": 13.622455163838291, "d_right": 0.843490864424953, "d_left": 1.2246227969393546, "psi_rad": -1.9265159651377397, "kappa_radpm": 0.14224984038705318, "vx_mps": 6.079000019157169, "ax_mps2": 5.820042713595536}, {"id": 205, "s_m": 20.472642699702284, "d_m": 0.0, "x_m": -2.6958584955142055, "y_m": 13.5286001746847, "d_right": 0.7577664952810881, "d_left": 1.2202348859349803, "psi_rad": -1.913054998244725, "kappa_radpm": 0.12728967175424827, "vx_mps": 6.173872075397719, "ax_mps2": 5.7664436461263735}, {"id": 206, "s_m": 20.572509249456928, "d_m": 0.0, "x_m": -2.7287982242483495, "y_m": 13.434328851145036, "d_right": 0.6767231970051525, "d_left": 1.2090557220781768, "psi_rad": -1.901092925678281, "kappa_radpm": 0.11228359069855984, "vx_mps": 6.266454026477989, "ax_mps2": 5.714071309123962}, {"id": 207, "s_m": 20.672375799211576, "d_m": 0.0, "x_m": -2.760681815262259, "y_m": 13.339684668927864, "d_right": 0.6021439049457676, "d_left": 1.1990396961036038, "psi_rad": -1.890621359372906, "kappa_radpm": 0.09747800976525912, "vx_mps": 6.356865205378408, "ax_mps2": 5.66286298934857}, {"id": 208, "s_m": 20.77224234896622, "d_m": 0.0, "x_m": -2.7916397294841353, "y_m": 13.244743329548616, "d_right": 0.5366403131455151, "d_left": 1.1963268113105192, "psi_rad": -1.8816228048059278, "kappa_radpm": 0.0827394385701887, "vx_mps": 6.4452150015581084, "ax_mps2": 5.6127611686909376}, {"id": 209, "s_m": 20.872108898720864, "d_m": 0.0, "x_m": -2.821814460366483, "y_m": 13.14954185343068, "d_right": 0.4837748873471926, "d_left": 1.1840957150893805, "psi_rad": -1.8740933777269735, "kappa_radpm": 0.06806840635665407, "vx_mps": 6.531603983811151, "ax_mps2": 5.563712938976992}, {"id": 210, "s_m": 20.97197544847551, "d_m": 0.0, "x_m": -2.8513393415709385, "y_m": 13.054143979445291, "d_right": 0.44791587791839393, "d_left": 1.1582492586665245, "psi_rad": -1.8680275465817697, "kappa_radpm": 0.05341194713450985, "vx_mps": 6.616124865162352, "ax_mps2": 5.51566949898422}, {"id": 211, "s_m": 21.071841998230155, "d_m": 0.0, "x_m": -2.880356543673718, "y_m": 12.958584566273869, "d_right": 0.41877544131728855, "d_left": 1.1396353398088832, "psi_rad": -1.8634231407579964, "kappa_radpm": 0.03882007706393236, "vx_mps": 6.698863336142969, "ax_mps2": 5.468585719972101}, {"id": 212, "s_m": 21.171708547984803, "d_m": 0.0, "x_m": -2.9090018121951884, "y_m": 12.862917583503133, "d_right": 0.39004046688954824, "d_left": 1.1253821240926363, "psi_rad": -1.8602739253663572, "kappa_radpm": 0.024247853540361495, "vx_mps": 6.7798987877477055, "ax_mps2": 5.4224197686478215}, {"id": 213, "s_m": 21.271575097739447, "d_m": 0.0, "x_m": -2.93741577550147, "y_m": 12.76717832961016, "d_right": 0.361574483912334, "d_left": 1.115316572658152, "psi_rad": -1.8585590895536228, "kappa_radpm": 0.01027911657240428, "vx_mps": 6.859304941416096, "ax_mps2": 5.377132778547676}, {"id": 214, "s_m": 21.37144164749409, "d_m": 0.0, "x_m": -2.9657308605247357, "y_m": 12.671411811539596, "d_right": 0.3475029273078804, "d_left": 1.1140446063245506, "psi_rad": -1.8582170828372897, "kappa_radpm": -0.003430694666980993, "vx_mps": 6.937150400248476, "ax_mps2": 5.332688562439947}, {"id": 215, "s_m": 21.47130819724874, "d_m": 0.0, "x_m": -2.9940763724265027, "y_m": 12.57565398551212, "d_right": 0.35522125995312454, "d_left": 1.1217291113241459, "psi_rad": -1.8591337168083157, "kappa_radpm": -0.013970659134069642, "vx_mps": 7.013499133168941, "ax_mps2": 5.289053359656074}, {"id": 216, "s_m": 21.571174747003383, "d_m": 0.0, "x_m": -3.0225555602294505, "y_m": 12.47993472497153, "d_right": 0.34469743326024366, "d_left": 1.1155354239924986, "psi_rad": -1.8609868254849857, "kappa_radpm": -0.023140609875487394, "vx_mps": 7.088410901743465, "ax_mps2": 5.24619561329888}, {"id": 217, "s_m": 21.671041296758027, "d_m": 0.0, "x_m": -3.0512528970565103, "y_m": 12.38428144283038, "d_right": 0.3614587247739396, "d_left": 1.1082830980271163, "psi_rad": -1.8636320769027837, "kappa_radpm": -0.02877471663623755, "vx_mps": 7.161941637742647, "ax_mps2": 5.204085773116693}, {"id": 218, "s_m": 21.770907846512674, "d_m": 0.0, "x_m": -3.0802253193147737, "y_m": 12.28870914337254, "d_right": 0.35486296226244024, "d_left": 1.104884036155812, "psi_rad": -1.8667113698206093, "kappa_radpm": -0.03289314688721897, "vx_mps": 7.234143778223422, "ax_mps2": 5.162696120517283}, {"id": 219, "s_m": 21.87077439626732, "d_m": 0.0, "x_m": -3.1095085004262755, "y_m": 12.193232459733114, "d_right": 0.3668020398044112, "d_left": 1.107893229865015, "psi_rad": -1.8700766972494094, "kappa_radpm": -0.03343117523981419, "vx_mps": 7.305066563829802, "ax_mps2": 5.122000612755454}, {"id": 220, "s_m": 21.970640946021962, "d_m": 0.0, "x_m": -3.139110203390741, "y_m": 12.097853560946156, "d_right": 0.388487053372952, "d_left": 1.116351168975991, "psi_rad": -1.873365835453729, "kappa_radpm": -0.0324394013382876, "vx_mps": 7.3747563051302425, "ax_mps2": 5.081974743783944}, {"id": 221, "s_m": 22.07050749577661, "d_m": 0.0, "x_m": -3.16902022087379, "y_m": 12.002571481879388, "d_right": 0.4141721472729557, "d_left": 1.1294193285432832, "psi_rad": -1.8765400588611145, "kappa_radpm": -0.030994558035579368, "vx_mps": 7.443256621080734, "ax_mps2": 5.0425954196400635}, {"id": 222, "s_m": 22.170374045531254, "d_m": 0.0, "x_m": -3.199225133027966, "y_m": 11.907382000654216, "d_right": 0.4091147759732863, "d_left": 1.1513341184324197, "psi_rad": -1.8795536107846367, "kappa_radpm": -0.0293569443523035, "vx_mps": 7.510608653098512, "ax_mps2": 5.00384084655206}, {"id": 223, "s_m": 22.270240595285898, "d_m": 0.0, "x_m": -3.229708944140087, "y_m": 11.812281892464322, "d_right": 0.4117350364789751, "d_left": 1.1815877897084062, "psi_rad": -1.8824071216005676, "kappa_radpm": -0.02781931529852454, "vx_mps": 7.576851257727794, "ax_mps2": 4.965690430212593}, {"id": 224, "s_m": 22.370107145040546, "d_m": 0.0, "x_m": -3.260456965443898, "y_m": 11.71726649531012, "d_right": 0.4110131411409739, "d_left": 1.2121423598576435, "psi_rad": -1.8851106950828935, "kappa_radpm": -0.026324378350087805, "vx_mps": 7.642021180457514, "ax_mps2": 4.928124684885333}, {"id": 225, "s_m": 22.46997369479519, "d_m": 0.0, "x_m": -3.291454626366489, "y_m": 11.62233250387918, "d_right": 0.4166108703006351, "d_left": 1.242972911212652, "psi_rad": -1.8876664767120932, "kappa_radpm": -0.024872187832056445, "vx_mps": 7.706153212896928, "ax_mps2": 4.891125151196319}, {"id": 226, "s_m": 22.569840244549834, "d_m": 0.0, "x_m": -3.3226880514158226, "y_m": 11.527475647694487, "d_right": 0.43015151179594596, "d_left": 1.2740648112164725, "psi_rad": -1.8900787748344028, "kappa_radpm": -0.023438248680589222, "vx_mps": 7.76928033521625, "ax_mps2": 4.85467432161446}, {"id": 227, "s_m": 22.66970679430448, "d_m": 0.0, "x_m": -3.354143519250477, "y_m": 11.432692240878497, "d_right": 0.4481284664137556, "d_left": 1.3054035544326892, "psi_rad": -1.892352907698685, "kappa_radpm": -0.022147549105324797, "vx_mps": 7.831433845506337, "ax_mps2": 4.818755572761247}, {"id": 228, "s_m": 22.769573344059125, "d_m": 0.0, "x_m": -3.385808546857171, "y_m": 11.337978683000602, "d_right": 0.43715098320168916, "d_left": 1.3369758702530983, "psi_rad": -1.8945032782931515, "kappa_radpm": -0.02091737223760258, "vx_mps": 7.892643477496461, "ax_mps2": 4.783353103797902}, {"id": 229, "s_m": 22.869439893813773, "d_m": 0.0, "x_m": -3.417671407122982, "y_m": 11.243331369755705, "d_right": 0.4484942868054758, "d_left": 1.3687692457006604, "psi_rad": -1.8965313546698637, "kappa_radpm": -0.019702875695912028, "vx_mps": 7.952937507885774, "ax_mps2": 4.748451880236002}, {"id": 230, "s_m": 22.969306443568417, "d_m": 0.0, "x_m": -3.449720372142649, "y_m": 11.148747136348659, "d_right": 0.4707345692455748, "d_left": 1.4004008331769315, "psi_rad": -1.898438697825834, "kappa_radpm": -0.018495012910483742, "vx_mps": 8.012342854387013, "ax_mps2": 4.714037582598975}, {"id": 231, "s_m": 23.06917299332306, "d_m": 0.0, "x_m": -3.48194406288697, "y_m": 11.054222012901425, "d_right": 0.4747763403973802, "d_left": 1.4100602348800182, "psi_rad": -1.9002252614239694, "kappa_radpm": -0.017282550531704417, "vx_mps": 8.070885165446377, "ax_mps2": 4.680096559431949}, {"id": 232, "s_m": 23.16903954307771, "d_m": 0.0, "x_m": -3.514330746874461, "y_m": 10.959752950196359, "d_right": 0.4703895498215963, "d_left": 1.4268306055623683, "psi_rad": -1.9018905710159961, "kappa_radpm": -0.016068206365761485, "vx_mps": 8.128588902487351, "ax_mps2": 4.64661578421615}, {"id": 233, "s_m": 23.268906092832353, "d_m": 0.0, "x_m": -3.5468691081185533, "y_m": 10.865335618767, "d_right": 0.4867404869680091, "d_left": 1.4504537249004106, "psi_rad": -1.9034347129819684, "kappa_radpm": -0.014856614665994113, "vx_mps": 8.185477415426103, "ax_mps2": 4.613582815801113}, {"id": 234, "s_m": 23.368772642586997, "d_m": 0.0, "x_m": -3.579547373994472, "y_m": 10.770967085818798, "d_right": 0.5095678413467347, "d_left": 1.4805899677736922, "psi_rad": -1.9048579480054242, "kappa_radpm": -0.013646182618593048, "vx_mps": 8.241573012119321, "ax_mps2": 4.580985762006129}, {"id": 235, "s_m": 23.468639192341644, "d_m": 0.0, "x_m": -3.6123543758331125, "y_m": 10.676642709721097, "d_right": 0.5024702627150668, "d_left": 1.516840287568523, "psi_rad": -1.906160288674128, "kappa_radpm": -0.01243518330432174, "vx_mps": 8.296897022329913, "ax_mps2": 4.548813246088247}, {"id": 236, "s_m": 23.56850574209629, "d_m": 0.0, "x_m": -3.6452783099494144, "y_m": 10.582359663385725, "d_right": 0.5039965790689014, "d_left": 1.5587669430093738, "psi_rad": -1.9073416630610014, "kappa_radpm": -0.01122393235756031, "vx_mps": 8.351469856730436, "ax_mps2": 4.517054375804909}, {"id": 237, "s_m": 23.668372291850932, "d_m": 0.0, "x_m": -3.6783081004903995, "y_m": 10.488113018701833, "d_right": 0.5247698364250813, "d_left": 1.6059153243223732, "psi_rad": -1.9084020297863313, "kappa_radpm": -0.010011248771059175, "vx_mps": 8.405311061406865, "ax_mps2": 4.485698714828234}, {"id": 238, "s_m": 23.76823884160558, "d_m": 0.0, "x_m": -3.71143188776679, "y_m": 10.393900050940216, "d_right": 0.5365846244462795, "d_left": 1.6578291961632328, "psi_rad": -1.909341232008984, "kappa_radpm": -0.008797942823619122, "vx_mps": 8.458439368275101, "ax_mps2": 4.4547362562985535}, {"id": 239, "s_m": 23.868105391360224, "d_m": 0.0, "x_m": -3.7446386703702803, "y_m": 10.29971558145257, "d_right": 0.5417034817209271, "d_left": 1.6956589161198115, "psi_rad": -1.910159453615437, "kappa_radpm": -0.0075898115005906845, "vx_mps": 8.510872741778778, "ax_mps2": 4.424157398321956}, {"id": 240, "s_m": 23.967971941114868, "d_m": 0.0, "x_m": -3.777916590040396, "y_m": 10.20555699491427, "d_right": 0.5485588356006553, "d_left": 1.728944333967971, "psi_rad": -1.910857198312371, "kappa_radpm": -0.0063837620014245795, "vx_mps": 8.562628422198221, "ax_mps2": 4.393952921240621}, {"id": 241, "s_m": 24.067838490869516, "d_m": 0.0, "x_m": -3.8112547773402174, "y_m": 10.111418912270237, "d_right": 0.5729474561026391, "d_left": 1.7623085731064878, "psi_rad": -1.9114339920704726, "kappa_radpm": -0.005163294957934459, "vx_mps": 8.613722965866392, "ax_mps2": 4.364113966523255}, {"id": 242, "s_m": 24.16770504062416, "d_m": 0.0, "x_m": -3.8446412301463444, "y_m": 10.017298795324757, "d_right": 0.5943701852481932, "d_left": 1.7957387689815965, "psi_rad": -1.9118883912990157, "kappa_radpm": -0.003936848824299866, "vx_mps": 8.664172282557612, "ax_mps2": 4.334632017132688}, {"id": 243, "s_m": 24.267571590378804, "d_m": 0.0, "x_m": -3.8780649964623697, "y_m": 9.923191008341375, "d_right": 0.6046014461414092, "d_left": 1.829223098112742, "psi_rad": -1.912221367854971, "kappa_radpm": -0.0027402186944120374, "vx_mps": 8.713991670288289, "ax_mps2": 4.305498879250907}, {"id": 244, "s_m": 24.36743814013345, "d_m": 0.0, "x_m": -3.911514211496375, "y_m": 9.829093229382295, "d_right": 0.6244438337706059, "d_left": 1.856704544784119, "psi_rad": -1.9124358777963772, "kappa_radpm": -0.0015557079805010186, "vx_mps": 8.763195847745289, "ax_mps2": 4.276706665243914}, {"id": 245, "s_m": 24.467304689888095, "d_m": 0.0, "x_m": -3.9449782991748052, "y_m": 9.734999814602189, "d_right": 0.6509659043538604, "d_left": 1.8366184658130018, "psi_rad": -1.91253039084671, "kappa_radpm": -0.0003232170458979326, "vx_mps": 8.811798984536669, "ax_mps2": 4.248247777768113}, {"id": 246, "s_m": 24.56717123964274, "d_m": 0.0, "x_m": -3.9784451216400076, "y_m": 9.640908321873992, "d_right": 0.6812761105723899, "d_left": 1.821796335330109, "psi_rad": -1.9125001498834093, "kappa_radpm": 0.0009288730918736787, "vx_mps": 8.859814729440934, "ax_mps2": 4.220114894923983}, {"id": 247, "s_m": 24.667037789397387, "d_m": 0.0, "x_m": -4.011903531629032, "y_m": 9.546812770877217, "d_right": 0.720894038171532, "d_left": 1.8123545548661708, "psi_rad": -1.912343935672709, "kappa_radpm": 0.0022070671442257807, "vx_mps": 8.90725623681429, "ax_mps2": 4.192300956375915}, {"id": 248, "s_m": 24.76690433915203, "d_m": 0.0, "x_m": -4.045340859302369, "y_m": 9.452710804428193, "d_right": 0.7715008464187668, "d_left": 1.808364865728073, "psi_rad": -1.912059168941334, "kappa_radpm": 0.0034959426320659236, "vx_mps": 8.95413619130063, "ax_mps2": 4.164799150359728}, {"id": 249, "s_m": 24.86677088890668, "d_m": 0.0, "x_m": -4.078746091088804, "y_m": 9.358595925748126, "d_right": 0.8311024257777919, "d_left": 1.8098507190491242, "psi_rad": -1.9116583131982026, "kappa_radpm": 0.0044300253415096285, "vx_mps": 9.000466830975757, "ax_mps2": 4.13760290151234}, {"id": 250, "s_m": 24.966637438661323, "d_m": 0.0, "x_m": -4.112109156352443, "y_m": 9.264467818408207, "d_right": 0.8531033080630616, "d_left": 1.816789067202225, "psi_rad": -1.911176381008536, "kappa_radpm": 0.0052216166411575985, "vx_mps": 9.046259969045355, "ax_mps2": 4.110705859457416}, {"id": 251, "s_m": 25.066503988415967, "d_m": 0.0, "x_m": -4.145423938304044, "y_m": 9.17032066902138, "d_right": 0.844502971788364, "d_left": 1.8225101538420252, "psi_rad": -1.9106240798788905, "kappa_radpm": 0.005769382346422469, "vx_mps": 9.091527014205749, "ax_mps2": 4.08410188809406}, {"id": 252, "s_m": 25.166370538170614, "d_m": 0.0, "x_m": -4.178683778956887, "y_m": 9.076156336264413, "d_right": 0.8236922560821147, "d_left": 1.8148982663179203, "psi_rad": -1.9100254280529771, "kappa_radpm": 0.0062197988145235176, "vx_mps": 9.136278989766769, "ax_mps2": 4.057785055532743}, {"id": 253, "s_m": 25.26623708792526, "d_m": 0.0, "x_m": -4.211885735986255, "y_m": 8.981969482990786, "d_right": 0.8050136760323494, "d_left": 1.812702245678348, "psi_rad": -1.9093798214500204, "kappa_radpm": 0.0067249737016251195, "vx_mps": 9.18052655162751, "ax_mps2": 4.031749624633921}, {"id": 254, "s_m": 25.366103637679903, "d_m": 0.0, "x_m": -4.245023744831364, "y_m": 8.887762290443375, "d_right": 0.7985482439460888, "d_left": 1.8159368376845646, "psi_rad": -1.908681918415903, "kappa_radpm": 0.007251901282580935, "vx_mps": 9.224280005188007, "ax_mps2": 4.005990044103677}, {"id": 255, "s_m": 25.46597018743455, "d_m": 0.0, "x_m": -4.278094108945892, "y_m": 8.79352927041097, "d_right": 0.791193109736555, "d_left": 1.8245680048520259, "psi_rad": -1.9079290322930387, "kappa_radpm": 0.00784425948188259, "vx_mps": 9.267549321272774, "ax_mps2": 3.9805009401095477}, {"id": 256, "s_m": 25.565836737189194, "d_m": 0.0, "x_m": -4.311090011517355, "y_m": 8.699272165375593, "d_right": 0.7865513122776342, "d_left": 1.8118707703011552, "psi_rad": -1.907114795185227, "kappa_radpm": 0.008462426130751814, "vx_mps": 9.310344151135938, "ax_mps2": 3.9552771083756344}, {"id": 257, "s_m": 25.665703286943838, "d_m": 0.0, "x_m": -4.344006881265291, "y_m": 8.604985464076673, "d_right": 0.7600187003794237, "d_left": 1.800653584540197, "psi_rad": -1.90623990110449, "kappa_radpm": 0.009050119092867463, "vx_mps": 9.352673840611848, "ax_mps2": 3.9303135067275203}, {"id": 258, "s_m": 25.765569836698486, "d_m": 0.0, "x_m": -4.376837924651146, "y_m": 8.510670768311986, "d_right": 0.7446613216526967, "d_left": 1.78991045164359, "psi_rad": -1.9053073518510457, "kappa_radpm": 0.009625982143059804, "vx_mps": 9.394547443469914, "ax_mps2": 3.9056052480557426}, {"id": 259, "s_m": 25.86543638645313, "d_m": 0.0, "x_m": -4.409578727070183, "y_m": 8.416323196158675, "d_right": 0.7391096622129588, "d_left": 1.7846033190697845, "psi_rad": -1.9043160340541485, "kappa_radpm": 0.010236339338064119, "vx_mps": 9.43597373402772, "ax_mps2": 3.8811475936667077}, {"id": 260, "s_m": 25.965302936207774, "d_m": 0.0, "x_m": -4.442222643370007, "y_m": 8.321943415220096, "d_right": 0.7126241479185973, "d_left": 1.7674395138160246, "psi_rad": -1.9032626431643296, "kappa_radpm": 0.01085975273985876, "vx_mps": 9.476961219072129, "ax_mps2": 3.85693594699799}, {"id": 261, "s_m": 26.06516948596242, "d_m": 0.0, "x_m": -4.474763934437695, "y_m": 8.227527727187452, "d_right": 0.6911614222131532, "d_left": 1.747126186864166, "psi_rad": -1.9021296435061643, "kappa_radpm": 0.01196319799894429, "vx_mps": 9.517518149134249, "ax_mps2": 3.832965847672877}, {"id": 262, "s_m": 26.165036035717065, "d_m": 0.0, "x_m": -4.5071923957261655, "y_m": 8.133073177359382, "d_right": 0.6784436262241329, "d_left": 1.7322221146227461, "psi_rad": -1.900870698063386, "kappa_radpm": 0.0132493019783725, "vx_mps": 9.557652529160535, "ax_mps2": 3.8092329658717308}, {"id": 263, "s_m": 26.26490258547171, "d_m": 0.0, "x_m": -4.539495258260793, "y_m": 8.038576129325799, "d_right": 0.6663495539780858, "d_left": 1.7228545196038099, "psi_rad": -1.8994645146939222, "kappa_radpm": 0.015054484220986632, "vx_mps": 9.59737212861913, "ax_mps2": 3.785733097000307}, {"id": 264, "s_m": 26.364769135226357, "d_m": 0.0, "x_m": -4.571656347562111, "y_m": 7.94402956774196, "d_right": 0.6554507341859664, "d_left": 1.7190962546626078, "psi_rad": -1.8978611598428445, "kappa_radpm": 0.017055256839258275, "vx_mps": 9.636684491077524, "ax_mps2": 3.7624621566355145}, {"id": 265, "s_m": 26.464635684981, "d_m": 0.0, "x_m": -4.60365605615147, "y_m": 7.849429268186196, "d_right": 0.6453458772536691, "d_left": 1.7209642678048165, "psi_rad": -1.8960583111350386, "kappa_radpm": 0.01904808411427763, "vx_mps": 9.675596943284962, "ax_mps2": 3.739416175732316}, {"id": 266, "s_m": 26.56450223473565, "d_m": 0.0, "x_m": -4.6354761243307845, "y_m": 7.754767161636277, "d_right": 0.6215991918553372, "d_left": 1.728420594359279, "psi_rad": -1.8940566689699159, "kappa_radpm": 0.021038011240043328, "vx_mps": 9.714116603790563, "ax_mps2": 3.716591296073113}, {"id": 267, "s_m": 26.664368784490293, "d_m": 0.0, "x_m": -4.6670969270882185, "y_m": 7.660039467280604, "d_right": 0.6074631855584061, "d_left": 1.7413737045549529, "psi_rad": -1.8918579593759706, "kappa_radpm": 0.022983139824878217, "vx_mps": 9.752250391125806, "ax_mps2": 3.6939837659471277}, {"id": 268, "s_m": 26.764235334244937, "d_m": 0.0, "x_m": -4.698500570648899, "y_m": 7.565238403217473, "d_right": 0.6005576519411067, "d_left": 1.7528157211991495, "psi_rad": -1.8894664032785897, "kappa_radpm": 0.024911589077952618, "vx_mps": 9.790005031578024, "ax_mps2": 3.6715899360450766}, {"id": 269, "s_m": 26.864101883999584, "d_m": 0.0, "x_m": -4.7296677488172865, "y_m": 7.470360604915833, "d_right": 0.5789468291167174, "d_left": 1.7658549680158497, "psi_rad": -1.886876131316436, "kappa_radpm": 0.027008547537666364, "vx_mps": 9.827387066579623, "ax_mps2": 3.6494062555554816}, {"id": 270, "s_m": 26.96396843375423, "d_m": 0.0, "x_m": -4.7605792892556265, "y_m": 7.375397881837082, "d_right": 0.5743977996071996, "d_left": 1.783400007202825, "psi_rad": -1.884071086207018, "kappa_radpm": 0.029166924085795232, "vx_mps": 9.864402859735968, "ax_mps2": -0.9112531873527766}, {"id": 271, "s_m": 27.063834983508873, "d_m": 0.0, "x_m": -4.791213693461689, "y_m": 7.2803464618421865, "d_right": 0.5579949942403821, "d_left": 1.8015470125478086, "psi_rad": -1.8810468218304957, "kappa_radpm": 0.031426412124683965, "vx_mps": 9.85517307588352, "ax_mps2": -9.154703082192306}, {"id": 272, "s_m": 27.16370153326352, "d_m": 0.0, "x_m": -4.821549922395, "y_m": 7.185198441723641, "d_right": 0.5390093795890315, "d_left": 1.824683593892077, "psi_rad": -1.8777936709051417, "kappa_radpm": 0.03372331622840062, "vx_mps": 9.761963897388982, "ax_mps2": -9.053828162846278}, {"id": 273, "s_m": 27.263568083018164, "d_m": 0.0, "x_m": -4.851565940555471, "y_m": 7.0899494318164935, "d_right": 0.5331246346203334, "d_left": 1.8526010413070764, "psi_rad": -1.8743346871309612, "kappa_radpm": 0.03537987486257922, "vx_mps": 9.668898074368977, "ax_mps2": -8.979367890747794}, {"id": 274, "s_m": 27.363434632772808, "d_m": 0.0, "x_m": -4.881245303462925, "y_m": 6.994594815225942, "d_right": 0.5182237144683273, "d_left": 1.860359880004691, "psi_rad": -1.8707300980276287, "kappa_radpm": 0.03680831968546118, "vx_mps": 9.575704307886856, "ax_mps2": -8.967001149832443}, {"id": 275, "s_m": 27.463301182527456, "d_m": 0.0, "x_m": -4.910574453811156, "y_m": 6.899132061326015, "d_right": 0.5024514044913704, "d_left": 1.8419362515453348, "psi_rad": -1.8670062265899139, "kappa_radpm": 0.037602140570378556, "vx_mps": 9.481724846204061, "ax_mps2": -8.966931162851564}, {"id": 276, "s_m": 27.5631677322821, "d_m": 0.0, "x_m": -4.939544912128204, "y_m": 6.803559946504145, "d_right": 0.5066377798850235, "d_left": 1.8194304909479972, "psi_rad": -1.8632226387607407, "kappa_radpm": 0.038170790713611985, "vx_mps": 9.386805266163812, "ax_mps2": -8.969988787269704}, {"id": 277, "s_m": 27.663034282036744, "d_m": 0.0, "x_m": -4.968150603671732, "y_m": 6.707878162202245, "d_right": 0.48176477302971105, "d_left": 1.8018086694447435, "psi_rad": -1.8593738292795639, "kappa_radpm": 0.038967701839769574, "vx_mps": 9.290883135732347, "ax_mps2": -8.9586348893305}, {"id": 278, "s_m": 27.76290083179139, "d_m": 0.0, "x_m": -4.996383772593205, "y_m": 6.612085595244069, "d_right": 0.4697541974662218, "d_left": 1.789207590935196, "psi_rad": -1.8554384502292915, "kappa_radpm": 0.0398450460153162, "vx_mps": 9.194083615457151, "ax_mps2": -8.954055893481991}, {"id": 279, "s_m": 27.862767381546035, "d_m": 0.0, "x_m": -5.024235515029007, "y_m": 6.51618168276257, "d_right": 0.4729624234721668, "d_left": 1.7817253371213173, "psi_rad": -1.8514171039993386, "kappa_radpm": 0.04067804934807936, "vx_mps": 9.096304315007995, "ax_mps2": -8.9536631107687}, {"id": 280, "s_m": 27.96263393130068, "d_m": 0.0, "x_m": -5.051697515574381, "y_m": 6.420165126318107, "d_right": 0.4489364861113891, "d_left": 1.7681476792996067, "psi_rad": -1.8473138783466823, "kappa_radpm": 0.04149611038666049, "vx_mps": 8.997466827177373, "ax_mps2": -8.95364127751629}, {"id": 281, "s_m": 28.062500481055327, "d_m": 0.0, "x_m": -5.0787612940441, "y_m": 6.324035917587264, "d_right": 0.4412587874123626, "d_left": 1.7554725535345235, "psi_rad": -1.84312912692603, "kappa_radpm": 0.04230974947606886, "vx_mps": 8.89753172413027, "ax_mps2": -8.956500472914536}, {"id": 282, "s_m": 28.16236703080997, "d_m": 0.0, "x_m": -5.105418751581303, "y_m": 6.2277928631724455, "d_right": 0.4461879210746452, "d_left": 1.743455415552537, "psi_rad": -1.8388632260471587, "kappa_radpm": 0.04312221565311646, "vx_mps": 8.796428888002957, "ax_mps2": -8.962407637464938}, {"id": 283, "s_m": 28.262233580564615, "d_m": 0.0, "x_m": -5.1316613406110285, "y_m": 6.131436325083504, "d_right": 0.42007140734549714, "d_left": 1.7213442562624446, "psi_rad": -1.8345146365545002, "kappa_radpm": 0.04397673229004738, "vx_mps": 8.694082569494975, "ax_mps2": -8.968072429572233}, {"id": 284, "s_m": 28.362100130319263, "d_m": 0.0, "x_m": -5.157480627954097, "y_m": 6.0349649743363205, "d_right": 0.41730954318561114, "d_left": 1.6779453834082771, "psi_rad": -1.8300794175117403, "kappa_radpm": 0.04484606934233154, "vx_mps": 8.590451141949067, "ax_mps2": -8.975738072911286}, {"id": 285, "s_m": 28.461966680073907, "d_m": 0.0, "x_m": -5.182867450181541, "y_m": 5.938379529452071, "d_right": 0.41785758602062795, "d_left": 1.6055476885879905, "psi_rad": -1.8255574505147987, "kappa_radpm": 0.045714089661802765, "vx_mps": 8.485463972967414, "ax_mps2": -8.98667637308468}, {"id": 286, "s_m": 28.561833229828554, "d_m": 0.0, "x_m": -5.207813230515007, "y_m": 5.8416785577021715, "d_right": 0.39552454334399806, "d_left": 1.535898064639062, "psi_rad": -1.820948789362867, "kappa_radpm": 0.04658211992483074, "vx_mps": 8.379031096149768, "ax_mps2": -9.000781496471998}, {"id": 287, "s_m": 28.6616997795832, "d_m": 0.0, "x_m": -5.232308753621887, "y_m": 5.7448633629653, "d_right": 0.39208524599443123, "d_left": 1.469383402472692, "psi_rad": -1.8162557994921746, "kappa_radpm": 0.047387860325573336, "vx_mps": 8.271058464546638, "ax_mps2": -9.022411212949446}, {"id": 288, "s_m": 28.761566329337843, "d_m": 0.0, "x_m": -5.256346043070528, "y_m": 5.64793247706879, "d_right": 0.39355571183059074, "d_left": 1.4064424960118087, "psi_rad": -1.811484114812071, "kappa_radpm": 0.048173061038513106, "vx_mps": 8.161392893822649, "ax_mps2": -9.048581861297706}, {"id": 289, "s_m": 28.86143287909249, "d_m": 0.0, "x_m": -5.27991635907088, "y_m": 5.550888116849407, "d_right": 0.37557830245725465, "d_left": 1.347572447604736, "psi_rad": -1.8066293242528575, "kappa_radpm": 0.04908474585534861, "vx_mps": 8.049908860727447, "ax_mps2": -9.069568820895919}, {"id": 290, "s_m": 28.961299428847134, "d_m": 0.0, "x_m": -5.303010974743926, "y_m": 5.453728165628331, "d_right": 0.35829229902744747, "d_left": 1.2933215706162637, "psi_rad": -1.8016797406107719, "kappa_radpm": 0.05003868125748258, "vx_mps": 7.936594960951952, "ax_mps2": -9.089880343981246}, {"id": 291, "s_m": 29.061165978601778, "d_m": 0.0, "x_m": -5.3256190511282515, "y_m": 5.356455304842963, "d_right": 0.3687708713113372, "d_left": 1.241666447995193, "psi_rad": -1.7966182836758797, "kappa_radpm": 0.051437025699839406, "vx_mps": 7.821380287323715, "ax_mps2": -9.084439899006215}, {"id": 292, "s_m": 29.161032528356426, "d_m": 0.0, "x_m": -5.347727493627642, "y_m": 5.259066039226531, "d_right": 0.3608628553485901, "d_left": 1.1912995677935168, "psi_rad": -1.7914042252777111, "kappa_radpm": 0.05298280337234062, "vx_mps": 7.704513369486847, "ax_mps2": -9.080207791175454}, {"id": 293, "s_m": 29.26089907811107, "d_m": 0.0, "x_m": -5.369319898145138, "y_m": 5.161562744133657, "d_right": 0.36729637396100506, "d_left": 1.146950052279553, "psi_rad": -1.7860330324394909, "kappa_radpm": 0.054604318000038087, "vx_mps": 7.585901938087633, "ax_mps2": -9.08020563800034}, {"id": 294, "s_m": 29.360765627865714, "d_m": 0.0, "x_m": -5.390380646185148, "y_m": 5.063941460784322, "d_right": 0.35860188016170863, "d_left": 1.1093244142932537, "psi_rad": -1.780497592235914, "kappa_radpm": 0.05625165557527526, "vx_mps": 7.465406258069429, "ax_mps2": -9.019330874331278}, {"id": 295, "s_m": 29.46063217762036, "d_m": 0.0, "x_m": -5.410891201211381, "y_m": 4.966204677811857, "d_right": 0.34955774665205075, "d_left": 1.070540883934219, "psi_rad": -1.7747511945485943, "kappa_radpm": 0.05913420222142798, "vx_mps": 7.34376141272251, "ax_mps2": -8.946703813726748}, {"id": 296, "s_m": 29.560498727375006, "d_m": 0.0, "x_m": -5.4308244666208525, "y_m": 4.868347021944678, "d_right": 0.3441688571248071, "d_left": 1.0314875275305335, "psi_rad": -1.768681511487138, "kappa_radpm": 0.062421050774165335, "vx_mps": 7.221071859764651, "ax_mps2": -8.796362090977672}, {"id": 297, "s_m": 29.66036527712965, "d_m": 0.0, "x_m": -5.450145507930942, "y_m": 4.7703676982848835, "d_right": 0.3490761164300596, "d_left": 1.0003088992641815, "psi_rad": -1.762218046702233, "kappa_radpm": 0.06744653472502413, "vx_mps": 7.098376866513072, "ax_mps2": -8.633872653546552}, {"id": 298, "s_m": 29.760231826884297, "d_m": 0.0, "x_m": -5.468806230369056, "y_m": 4.672259767325229, "d_right": 0.34836326640600446, "d_left": 0.9665208438738244, "psi_rad": -1.7552031537597017, "kappa_radpm": 0.07303877822185056, "vx_mps": 6.975850055239615, "ax_mps2": -8.484315398196598}, {"id": 299, "s_m": 29.86009837663894, "d_m": 0.0, "x_m": -5.486750706225834, "y_m": 4.574018653142029, "d_right": 0.3634772391706403, "d_left": 0.9310140227680741, "psi_rad": -1.7476264589358452, "kappa_radpm": 0.07871877914932021, "vx_mps": 6.8533120008861665, "ax_mps2": -8.35029927161362}, {"id": 300, "s_m": 29.959964926393585, "d_m": 0.0, "x_m": -5.503922294904823, "y_m": 4.475639622202363, "d_right": 0.3462323921155642, "d_left": 0.8982001428687261, "psi_rad": -1.7394797964811621, "kappa_radpm": 0.08443308141445229, "vx_mps": 6.730531496556629, "ax_mps2": -8.210328235241223}, {"id": 301, "s_m": 30.059831476148233, "d_m": 0.0, "x_m": -5.520263334741189, "y_m": 4.377118758994886, "d_right": 0.3478413531210593, "d_left": 0.8747769023519278, "psi_rad": -1.7307427898431982, "kappa_radpm": 0.09066510330981882, "vx_mps": 6.607585029322544, "ax_mps2": -8.081044488912767}, {"id": 302, "s_m": 30.159698025902877, "d_m": 0.0, "x_m": -5.535711493056641, "y_m": 4.278454921619906, "d_right": 0.35641699625151885, "d_left": 0.8614510672063113, "psi_rad": -1.721368573858853, "kappa_radpm": 0.09707193080147392, "vx_mps": 6.4842985631974415, "ax_mps2": -7.824237697188892}, {"id": 303, "s_m": 30.259564575657524, "d_m": 0.0, "x_m": -5.550199627027534, "y_m": 4.179641986218497, "d_right": 0.3517067691275292, "d_left": 0.858626556095664, "psi_rad": -1.711220294257254, "kappa_radpm": 0.1070134326313598, "vx_mps": 6.362654211107767, "ax_mps2": -7.54702534570197}, {"id": 304, "s_m": 30.35943112541217, "d_m": 0.0, "x_m": -5.5636301067177865, "y_m": 4.0806848290588205, "d_right": 0.3411218393816837, "d_left": 0.8663113029277953, "psi_rad": -1.6999794105240866, "kappa_radpm": 0.11811504225518116, "vx_mps": 6.2430743905350985, "ax_mps2": -7.21500729132767}, {"id": 305, "s_m": 30.459297675166813, "d_m": 0.0, "x_m": -5.575891522960277, "y_m": 3.981566401373439, "d_right": 0.35643554886102646, "d_left": 0.8769116709158061, "psi_rad": -1.6875475440486838, "kappa_radpm": 0.13134698890264834, "vx_mps": 6.126573436797783, "ax_mps2": -6.8851092580096065}, {"id": 306, "s_m": 30.55916422492146, "d_m": 0.0, "x_m": -5.586850170326195, "y_m": 3.882308785960696, "d_right": 0.3676362077038099, "d_left": 0.8833980880228883, "psi_rad": -1.6737340984899092, "kappa_radpm": 0.1453185610373788, "vx_mps": 6.0132950920367945, "ax_mps2": -6.571562389052827}, {"id": 307, "s_m": 30.659030774676104, "d_m": 0.0, "x_m": -5.596368534546127, "y_m": 3.782885074010828, "d_right": 0.3829420900200575, "d_left": 0.8664023901468911, "psi_rad": -1.6585085084962987, "kappa_radpm": 0.15964431563594797, "vx_mps": 5.90314825659407, "ax_mps2": -6.278671904017506}, {"id": 308, "s_m": 30.758897324430748, "d_m": 0.0, "x_m": -5.604298730423965, "y_m": 3.68334440945217, "d_right": 0.39504127901171215, "d_left": 0.8591432430564161, "psi_rad": -1.641842228564438, "kappa_radpm": 0.17417842592476843, "vx_mps": 5.795955550134793, "ax_mps2": -6.00774556522858}, {"id": 309, "s_m": 30.858763874185396, "d_m": 0.0, "x_m": -5.610497791280242, "y_m": 3.583654685862036, "d_right": 0.38886049790928423, "d_left": 0.8617211493080998, "psi_rad": -1.623713366580553, "kappa_radpm": 0.18885103781881285, "vx_mps": 5.691498493044866, "ax_mps2": -5.7564649742707505}, {"id": 310, "s_m": 30.95863042394004, "d_m": 0.0, "x_m": -5.6148142031644, "y_m": 3.4838969558997683, "d_right": 0.384558148675527, "d_left": 0.8660334662684078, "psi_rad": -1.604116084619025, "kappa_radpm": 0.20370116846717093, "vx_mps": 5.589579456882623, "ax_mps2": -5.522649442917647}, {"id": 311, "s_m": 31.058496973694684, "d_m": 0.0, "x_m": -5.617101031785913, "y_m": 3.38403739035468, "d_right": 0.38227899526891373, "d_left": 0.8683188875555975, "psi_rad": -1.583018524844249, "kappa_radpm": 0.21877216753606277, "vx_mps": 5.490022095954355, "ax_mps2": -5.305091443762291}, {"id": 312, "s_m": 31.15836352344933, "d_m": 0.0, "x_m": -5.6172055009469, "y_m": 3.284191432925049, "d_right": 0.39055724073284676, "d_left": 0.8684221625716957, "psi_rad": -1.5604119093468602, "kappa_radpm": 0.23408378801175098, "vx_mps": 5.392656141163107, "ax_mps2": -5.102026504984048}, {"id": 313, "s_m": 31.258230073203976, "d_m": 0.0, "x_m": -5.614974788615268, "y_m": 3.18432806384433, "d_right": 0.425047614087828, "d_left": 0.8661911570411938, "psi_rad": -1.5362531710361118, "kappa_radpm": 0.24968038824494435, "vx_mps": 5.297329203401008, "ax_mps2": -4.912761732651688}, {"id": 314, "s_m": 31.35809662295862, "d_m": 0.0, "x_m": -5.610256936903642, "y_m": 3.084598315540038, "d_right": 0.47680229937267904, "d_left": 0.8614707342713237, "psi_rad": -1.510532693196489, "kappa_radpm": 0.26557628493576013, "vx_mps": 5.20388850391628, "ax_mps2": -4.7341220503036405}, {"id": 315, "s_m": 31.457963172713267, "d_m": 0.0, "x_m": -5.602892010735367, "y_m": 2.9849802816967985, "d_right": 0.4966248489604683, "d_left": 0.8541014756377249, "psi_rad": -1.4831935382354358, "kappa_radpm": 0.28188026665415294, "vx_mps": 5.112229913709826, "ax_mps2": -4.5668052278815034}, {"id": 316, "s_m": 31.55782972246791, "d_m": 0.0, "x_m": -5.59273117266368, "y_m": 2.885661582497924, "d_right": 0.5208368443231775, "d_left": 0.8439307117272933, "psi_rad": -1.4542200152084797, "kappa_radpm": 0.2985677994265467, "vx_mps": 5.022225853902787, "ax_mps2": -4.409745427366841}, {"id": 317, "s_m": 31.657696272222555, "d_m": 0.0, "x_m": -5.579606586483814, "y_m": 2.786637617611234, "d_right": 0.5646059478283133, "d_left": 0.830791054592858, "psi_rad": -1.4235446149315711, "kappa_radpm": 0.31568329578727233, "vx_mps": 4.933759256931239, "ax_mps2": -4.263141725913316}, {"id": 318, "s_m": 31.757562821977203, "d_m": 0.0, "x_m": -5.563375987677516, "y_m": 2.6881318660036158, "d_right": 0.58701776091765, "d_left": 0.8145366214397664, "psi_rad": -1.391154482404287, "kappa_radpm": 0.33322713220831274, "vx_mps": 4.846698865701336, "ax_mps2": -4.118613695647025}, {"id": 319, "s_m": 31.857429371731847, "d_m": 0.0, "x_m": -5.543865314997151, "y_m": 2.590166311158799, "d_right": 0.6063512687904324, "d_left": 0.7949949208213649, "psi_rad": -1.3569597888489229, "kappa_radpm": 0.3515556489113463, "vx_mps": 4.761078282876436, "ax_mps2": -3.9806545742991464}, {"id": 320, "s_m": 31.95729592148649, "d_m": 0.0, "x_m": -5.520940813390666, "y_m": 2.493002336088356, "d_right": 0.6290639766294212, "d_left": 0.7720317457925175, "psi_rad": -1.3209195393158861, "kappa_radpm": 0.37050138848857095, "vx_mps": 4.676836317370648, "ax_mps2": -3.8583453302125594}, {"id": 321, "s_m": 32.057162471241135, "d_m": 0.0, "x_m": -5.494423625628245, "y_m": 2.3967018183964552, "d_right": 0.6677718687146189, "d_left": 0.7454752640931941, "psi_rad": -1.2829548216553732, "kappa_radpm": 0.3896867717501147, "vx_mps": 4.593708596297386, "ax_mps2": -3.7470180626914225}, {"id": 322, "s_m": 32.157029020995786, "d_m": 0.0, "x_m": -5.464195312664622, "y_m": 2.301555993024903, "d_right": 0.7215354973618261, "d_left": 0.7152184983836961, "psi_rad": -1.2430710234941733, "kappa_radpm": 0.40934294910253555, "vx_mps": 4.511513619187888, "ax_mps2": -3.6108049367120465}, {"id": 323, "s_m": 32.25689557075043, "d_m": 0.0, "x_m": -5.430084019665426, "y_m": 2.207677305119453, "d_right": 0.7818940230545842, "d_left": 0.6811153918346553, "psi_rad": -1.2011106378823242, "kappa_radpm": 0.43117617708291567, "vx_mps": 4.430864235607413, "ax_mps2": -3.4701136724603745}, {"id": 324, "s_m": 32.356762120505074, "d_m": 0.0, "x_m": -5.3919821907983625, "y_m": 2.1154021196467037, "d_right": 0.8403090099529373, "d_left": 0.6490444284114408, "psi_rad": -1.1569173268621427, "kappa_radpm": 0.45424222877181847, "vx_mps": 4.351949139745868, "ax_mps2": -3.4697782559991173}, {"id": 325, "s_m": 32.45662867025972, "d_m": 0.0, "x_m": -5.349727516111409, "y_m": 2.0249129035572992, "d_right": 0.9092229415933129, "d_left": 0.6268039551632626, "psi_rad": -1.110670582181791, "kappa_radpm": 0.4711622966445922, "vx_mps": 4.2715842200820715, "ax_mps2": -3.4699974967999845}, {"id": 326, "s_m": 32.55649522001436, "d_m": 0.0, "x_m": -5.303276037636827, "y_m": 1.9365359610837025, "d_right": 0.9741938747423519, "d_left": 0.6137670967674392, "psi_rad": -1.0628028459568242, "kappa_radpm": 0.48767077469121983, "vx_mps": 4.1896728265974215, "ax_mps2": -3.3160496983287304}, {"id": 327, "s_m": 32.656361769769006, "d_m": 0.0, "x_m": -5.252557476068897, "y_m": 1.8505276460554168, "d_right": 1.0465101554987695, "d_left": 0.5834836850632321, "psi_rad": -1.012656276120608, "kappa_radpm": 0.5179818161568258, "vx_mps": 4.10987025458892, "ax_mps2": -3.1077460076991765}, {"id": 328, "s_m": 32.75622831952366, "d_m": 0.0, "x_m": -5.197453326110882, "y_m": 1.7672486489491162, "d_right": 1.1017873298849943, "d_left": 0.5641804553328922, "psi_rad": -0.9593100851520133, "kappa_radpm": 0.5503982550162957, "vx_mps": 4.0336476999050594, "ax_mps2": -3.0303104910326697}, {"id": 329, "s_m": 32.8560948692783, "d_m": 0.0, "x_m": -5.13790231691827, "y_m": 1.6871648072284422, "d_right": 1.165730674228909, "d_left": 0.5447139396434582, "psi_rad": -0.9030585280390357, "kappa_radpm": 0.5764579101013998, "vx_mps": 3.957911123319965, "ax_mps2": -2.985635167345836}, {"id": 330, "s_m": 32.955961419032946, "d_m": 0.0, "x_m": -5.073773967338932, "y_m": 1.6105585105397895, "d_right": 1.231924198882489, "d_left": 0.4997113505236248, "psi_rad": -0.8441741250597663, "kappa_radpm": 0.6020824481088731, "vx_mps": 3.8818462481301332, "ax_mps2": -2.3134374638321877}, {"id": 331, "s_m": 33.05582796878759, "d_m": 0.0, "x_m": -5.0051903786897824, "y_m": 1.5380658229054276, "d_right": 1.15929683594965, "d_left": 0.46597939409691636, "psi_rad": -0.7809290266164552, "kappa_radpm": 0.6670264982302003, "vx_mps": 3.8218660702528395, "ax_mps2": -1.5199799837732935}, {"id": 332, "s_m": 33.155694518542234, "d_m": 0.0, "x_m": -4.931849486631677, "y_m": 1.4702259935418225, "d_right": 1.0920362058278645, "d_left": 0.43370857168334054, "psi_rad": -0.7108179681754514, "kappa_radpm": 0.7365770659086529, "vx_mps": 3.7819399711786494, "ax_mps2": -1.5174754348385238}, {"id": 333, "s_m": 33.255561068296885, "d_m": 0.0, "x_m": -4.853870192546056, "y_m": 1.4079602586243247, "d_right": 1.029963339507168, "d_left": 0.4074151824715905, "psi_rad": -0.6365814631740871, "kappa_radpm": 0.7513962473787739, "vx_mps": 3.7416546972655347, "ax_mps2": -1.4943183777805003}, {"id": 334, "s_m": 33.35542761805153, "d_m": 0.0, "x_m": -4.771349707024734, "y_m": 1.3516572376259686, "d_right": 0.9760193666073603, "d_left": 0.3889650111238334, "psi_rad": -0.5605860236195501, "kappa_radpm": 0.7706191150650078, "vx_mps": 3.7015557583699112, "ax_mps2": -0.9486643956860822}, {"id": 335, "s_m": 33.45529416780617, "d_m": 0.0, "x_m": -4.684810520597288, "y_m": 1.3019589504775058, "d_right": 0.9326723676663005, "d_left": 0.3710128320952556, "psi_rad": -0.48115817792781845, "kappa_radpm": 0.8217541314224908, "vx_mps": 3.6758720532925193, "ax_mps2": -0.2621690384569868}, {"id": 336, "s_m": 33.55516071756082, "d_m": 0.0, "x_m": -4.594410058945088, "y_m": 1.2594888206828316, "d_right": 0.9062686192392797, "d_left": 0.3713233594303465, "psi_rad": -0.39631521803197756, "kappa_radpm": 0.8759399355785832, "vx_mps": 3.6687424981225623, "ax_mps2": -0.18931567061126553}, {"id": 337, "s_m": 33.65502726731546, "d_m": 0.0, "x_m": -4.500822250061123, "y_m": 1.2250595737018302, "d_right": 0.8989897288831422, "d_left": 0.3536100009966586, "psi_rad": -0.3085843172251823, "kappa_radpm": 0.8838247421994729, "vx_mps": 3.6635855267556825, "ax_mps2": -0.051846630631379724}, {"id": 338, "s_m": 33.754893817070105, "d_m": 0.0, "x_m": -4.40434549227606, "y_m": 1.1989585392685538, "d_right": 0.9114958108459689, "d_left": 0.3405214314819235, "psi_rad": -0.21965058923118574, "kappa_radpm": 0.894754273325328, "vx_mps": 3.662171954403369, "ax_mps2": -0.05184663063137604}, {"id": 339, "s_m": 33.854760366824756, "d_m": 0.0, "x_m": -4.306207115627404, "y_m": 1.181559364257412, "d_right": 0.9411500133093226, "d_left": 0.34752098347499, "psi_rad": -0.13168333507314323, "kappa_radpm": 0.8709412811496169, "vx_mps": 3.6607578362114412, "ax_mps2": 0.2765804502368986}, {"id": 340, "s_m": 33.9546269165794, "d_m": 0.0, "x_m": -4.206592385661789, "y_m": 1.172726984284554, "d_right": 0.9452681403889613, "d_left": 0.37364712373007225, "psi_rad": -0.04546954070110387, "kappa_radpm": 0.8533092233340962, "vx_mps": 3.668295272462805, "ax_mps2": 0.4655179690311072}, {"id": 341, "s_m": 34.054493466334044, "d_m": 0.0, "x_m": -4.106893214897492, "y_m": 1.1723666880958923, "d_right": 0.9554495305905407, "d_left": 0.41518691826322285, "psi_rad": 0.03758040351206504, "kappa_radpm": 0.8135436802260689, "vx_mps": 3.6809468283044806, "ax_mps2": 0.9246164312243104}, {"id": 342, "s_m": 34.1543600160887, "d_m": 0.0, "x_m": -4.007209469456436, "y_m": 1.1801281776747616, "d_right": 0.9836131930419754, "d_left": 0.4619761192372887, "psi_rad": 0.11730867700170533, "kappa_radpm": 0.7823880491034414, "vx_mps": 3.705947390137978, "ax_mps2": 1.2015529714686466}]}, "global_traj_markers_sp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.02316025848506, "y": 1.3078465780354591, "z": 0.1310273669664842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2620547339329684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -3.9335257999112048, "y": 1.3518851236394338, "z": 0.1309767520170502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2619535040341004}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -3.851919923285942, "y": 1.408713992957559, "z": 0.13431564783770814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26863129567541627}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -3.7782549871091593, "y": 1.476213846801317, "z": 0.1390521338144551}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2781042676289102}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -3.7134821794511192, "y": 1.551993102884107, "z": 0.14313432781808086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2862686556361617}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -3.6538216000505868, "y": 1.6325686217402124, "z": 0.15409806885811944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3081961377162389}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -3.5966306669249777, "y": 1.7141967626071688, "z": 0.1660114649642321}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3320229299284642}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -3.542251005875188, "y": 1.7976986469837861, "z": 0.17694142789478648}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35388285578957296}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -3.4902492279545836, "y": 1.8833306655888344, "z": 0.18707427805058274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3741485561011655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -3.439733843692304, "y": 1.9693049310218462, "z": 0.19654404912155365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3930880982431073}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -3.3895221400538422, "y": 2.0561311714927024, "z": 0.20545098247018934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4109019649403787}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -3.3399631962301926, "y": 2.142498251746477, "z": 0.21387237437081696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42774474874163393}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -3.29002449058957, "y": 2.229293165605696, "z": 0.22186931874903668}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44373863749807335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -3.2399285453007587, "y": 2.3156430090783604, "z": 0.22949109779401589}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45898219558803177}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -3.1895582115281287, "y": 2.4020666282428027, "z": 0.236778151775053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.473556303550106}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -3.139163678544732, "y": 2.488378414780809, "z": 0.24376415261300485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4875283052260097}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -3.0886621568577106, "y": 2.574803895072689, "z": 0.25047749117099477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5009549823419895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -3.038316061646381, "y": 2.66101719353563, "z": 0.25694236897784944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5138847379556989}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -2.9879968710949654, "y": 2.747407753283268, "z": 0.2631796158459076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5263592316918152}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -2.9379935866458053, "y": 2.8337146489241904, "z": 0.2692073130833259}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5384146261666518}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -2.888374686833913, "y": 2.9200453023781816, "z": 0.27504127598002615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5500825519600523}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -2.8388965784780362, "y": 3.0069325157574838, "z": 0.28069543256193463}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5613908651238693}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -2.789977367737395, "y": 3.0936881811791723, "z": 0.28618212463585263}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5723642492717053}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -2.741203310165111, "y": 3.1810580318865296, "z": 0.29151234976699864}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5830246995339973}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -2.6929442689942884, "y": 3.268388756065952, "z": 0.2966959577657083}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5933919155314166}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -2.644970928359749, "y": 3.3560993491344164, "z": 0.3017418117190367}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6034836234380734}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -2.5974038317488946, "y": 3.4439530760092585, "z": 0.3066579210868601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6133158421737201}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -2.5501597015969724, "y": 3.532063907741204, "z": 0.31145155256692264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6229031051338453}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -2.5032637792379253, "y": 3.620313720847044, "z": 0.31612932310567166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6322586462113433}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -2.456621618370358, "y": 3.7087806758385717, "z": 0.3206972784483651}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6413945568967302}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -2.410258420957076, "y": 3.797299396527744, "z": 0.3251609598850215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.650321919770043}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -2.3640245448988897, "y": 3.8860220446248883, "z": 0.3295254612905692}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6590509225811384}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -2.3179803579561025, "y": 3.9746989178481837, "z": 0.33379547813045773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6675909562609155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -2.2719543921509113, "y": 4.063523806376, "z": 0.33797534977317406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6759506995463481}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -2.2259843668090813, "y": 4.152273548902624, "z": 0.3420690961941804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6841381923883608}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -2.179948288325184, "y": 4.241012582012617, "z": 0.3460804499540297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6921608999080594}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -2.133765932980224, "y": 4.329716371124917, "z": 0.3500128841737605}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.700025768347521}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -2.087438500119487, "y": 4.418193040409811, "z": 0.35386963710343955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7077392742068791}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -2.0407120567626738, "y": 4.506692570728611, "z": 0.3576537337776383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7153074675552766}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -1.9936980636756951, "y": 4.594703993873215, "z": 0.36136800516921097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7227360103384219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -1.9460199740371733, "y": 4.682724989783843, "z": 0.36501510518580194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7300302103716039}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -1.8980111224689418, "y": 4.770122660147185, "z": 0.3685975257988289}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7371950515976577}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -1.8493769564163307, "y": 4.8575428672869165, "z": 0.37211761054979114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7442352210995823}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -1.800546342923797, "y": 4.944503769021565, "z": 0.37557756664169156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7511551332833831}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -1.7513916874697752, "y": 5.0315149236441, "z": 0.3789794757926277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7579589515852554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -1.7021838608613389, "y": 5.118328637939336, "z": 0.3721231030592036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7442462061184072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -1.6528477991108181, "y": 5.205158228968078, "z": 0.3642087686218008}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7284175372436016}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -1.6034359520919859, "y": 5.291859050456153, "z": 0.35611933697546244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7122386739509249}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -1.5540232360490338, "y": 5.378670681900209, "z": 0.3487088903859336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6974177807718672}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -1.5049421376359458, "y": 5.465497868636234, "z": 0.34126580823919345}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6825316164783869}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -1.455322260827601, "y": 5.552343120831884, "z": 0.33803616774095774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6760723354819155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -1.4044580675442073, "y": 5.638039477757794, "z": 0.3363524705591646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6727049411183292}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -1.3514163483046067, "y": 5.723019500505974, "z": 0.33568318414727644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6713663682945529}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -1.2966288540530162, "y": 5.806116376563718, "z": 0.3350314405729773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6700628811459546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -1.2393751336488967, "y": 5.888485535219103, "z": 0.3340263896506614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6680527793013228}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -1.1807486054321126, "y": 5.96874827239499, "z": 0.332500060374921}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.665000120749842}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -1.1196406832008157, "y": 6.048426108625253, "z": 0.33096626879580016}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6619325375916003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -1.0573649384490091, "y": 6.125779242113801, "z": 0.3294765210303853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6589530420607707}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -0.9924839096827947, "y": 6.202526087306218, "z": 0.3280318056832736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6560636113665472}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -0.926605132087696, "y": 6.276711165948446, "z": 0.3266416945028184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6532833890056368}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -0.8580417588387482, "y": 6.350178492664167, "z": 0.3252649168122162}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6505298336244324}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -0.7884546000208955, "y": 6.421094051564814, "z": 0.32401561636277637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6480312327255527}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -0.716375435489993, "y": 6.49088160201345, "z": 0.3229521526415157}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6459043052830314}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -0.6430018562920338, "y": 6.558382878723246, "z": 0.3220276737658176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6440553475316352}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -0.568106347617937, "y": 6.624773417767992, "z": 0.31846162650909643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6369232530181929}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -0.49269322169485835, "y": 6.69043695723436, "z": 0.31143058704080523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6228611740816105}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -0.4171020744386838, "y": 6.755807699782986, "z": 0.30240477101227803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6048095420245561}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -0.3413432020832078, "y": 6.821200955267677, "z": 0.2922939020721647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5845878041443294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -0.26571040346855, "y": 6.886568555965461, "z": 0.28187011384113186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5637402276822637}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -0.19018708995492462, "y": 6.9519941183746665, "z": 0.2710458272722102}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5420916545444204}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -0.11451907046245624, "y": 7.017643374003545, "z": 0.2598828345792092}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5197656691584184}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -0.039228235177256675, "y": 7.082737760242336, "z": 0.24890057178344466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4978011435668893}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": 0.0369812445241191, "y": 7.14830200661368, "z": 0.2375441278787532}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4750882557575064}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": 0.11201003044930961, "y": 7.213582678292245, "z": 0.2279833336633055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.455966667326611}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": 0.186843070457263, "y": 7.280718870588938, "z": 0.21800494402013953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43600988804027907}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": 0.2596892500228607, "y": 7.348430942490529, "z": 0.20752058724657965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4150411744931593}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": 0.3320499815623269, "y": 7.418139372623169, "z": 0.19674772597337045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3934954519467409}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": 0.4020406461716414, "y": 7.48875378534282, "z": 0.18645577632203295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3729115526440659}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": 0.470434887925692, "y": 7.562382170289987, "z": 0.17828368570418665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3565673714083733}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": 0.5342778756092326, "y": 7.638367725591916, "z": 0.1733971004549943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3467942009099886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": 0.5932748354415962, "y": 7.71983954695429, "z": 0.16977795215162028}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33955590430324056}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": 0.6442668516335706, "y": 7.804526164003074, "z": 0.16730673040636637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33461346081273274}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": 0.6879040969363222, "y": 7.895349522906479, "z": 0.16569415012559488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33138830025118976}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": 0.721528978938005, "y": 7.98862188840808, "z": 0.1650256954725612}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3300513909451224}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": 0.7451201021787904, "y": 8.085819491226543, "z": 0.1649619964211637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3299239928423274}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": 0.757704876972398, "y": 8.184556066423776, "z": 0.16489827276326918}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32979654552653836}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": 0.7604402994541531, "y": 8.284308674265715, "z": 0.16681358468979704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3336271693795941}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": 0.7555638234821602, "y": 8.383876447175002, "z": 0.17262751467461693}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34525502934923386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": 0.7439007857537396, "y": 8.48305836061658, "z": 0.17835622005815469}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35671244011630937}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": 0.7261709604030833, "y": 8.581117283641898, "z": 0.18410504753779164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3682100950755833}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": 0.7036940238167033, "y": 8.67837391675838, "z": 0.1915354964424739}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3830709928849478}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": 0.6784432381347931, "y": 8.775233299290736, "z": 0.20073373791214505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4014674758242901}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": 0.6529644868984079, "y": 8.871341191429362, "z": 0.20940731164246806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4188146232849361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": 0.6274336648919406, "y": 8.968666263915555, "z": 0.21762534343811954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4352506868762391}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": 0.6024246165432474, "y": 9.064458095058473, "z": 0.22544301320022628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45088602640045256}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": 0.577018807559296, "y": 9.161926376121723, "z": 0.23290520264908648}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46581040529817297}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": 0.5520072891483244, "y": 9.25783038985091, "z": 0.24004900089114223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48009800178228446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": 0.5265511172844068, "y": 9.35519968277014, "z": 0.2469054767220408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4938109534440816}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": 0.5013481776691135, "y": 9.451226952691636, "z": 0.25350096405237216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5070019281047443}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": 0.47570208712028256, "y": 9.548510137692345, "z": 0.259858014594009}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.519716029188018}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": 0.45026160865896037, "y": 9.644562981567898, "z": 0.2659961173924506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5319922347849012}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": 0.42440505870052453, "y": 9.741751044146742, "z": 0.27193225137264093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5438645027452819}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": 0.3987384754610474, "y": 9.837824480300975, "z": 0.2776813159558036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5553626319116072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": 0.37276119916156597, "y": 9.934709903164592, "z": 0.2832564711044735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.566512942208947}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": 0.34686088878223004, "y": 10.03101656579914, "z": 0.28866940904563415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5773388180912683}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": 0.3208200165860182, "y": 10.127634126175948, "z": 0.29393057373678655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5878611474735731}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": 0.29477315720963876, "y": 10.224142660084738, "z": 0.29904933985762466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5980986797152493}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": 0.2687065910496028, "y": 10.320623958462328, "z": 0.30403416009324996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6080683201864999}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": 0.24259329828539267, "y": 10.417189482242907, "z": 0.3088926873157229}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6177853746314458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": 0.21651961643715098, "y": 10.513667248283651, "z": 0.31363187670294934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6272637534058987}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": 0.1905224096743039, "y": 10.610179407310332, "z": 0.3182580716803287}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6365161433606574}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": 0.1645336544552782, "y": 10.706786949093136, "z": 0.32277707671141503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6455541534228301}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": 0.13844515891997083, "y": 10.80307026533773, "z": 0.3160772519427085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.632154503885417}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": 0.1121672487851143, "y": 10.899751372923692, "z": 0.308369909221626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.616739818443252}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": 0.08674906356782798, "y": 10.99600554724315, "z": 0.302724538356808}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.605449076713616}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": 0.062426508055168584, "y": 11.09335947028686, "z": 0.2970128708846708}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5940257417693416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": 0.03937840816355104, "y": 11.190048837714274, "z": 0.2897700090308656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5795400180617312}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": 0.016951039927141046, "y": 11.287989018864327, "z": 0.28325704666092494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5665140933218499}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -0.0037401939941826725, "y": 11.385110889339657, "z": 0.27884517335759545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5576903467151909}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -0.022435788583964885, "y": 11.483846821924516, "z": 0.27496888950722537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5499377790144507}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -0.038315719212429024, "y": 11.581907716167827, "z": 0.2716817066827547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5433634133655094}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -0.051440613062118605, "y": 11.681444519492853, "z": 0.2687665069841598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5375330139683197}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -0.06130413439912669, "y": 11.78040152648612, "z": 0.266290386400376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.532580772800752}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -0.06781421271130643, "y": 11.880357010173208, "z": 0.2647520504329549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5295041008659098}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -0.07049774932954135, "y": 11.97992596257581, "z": 0.26408487681940573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5281697536388115}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -0.06904754878644051, "y": 12.079842645326325, "z": 0.2639829414444712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5279658828889424}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -0.06325182445090408, "y": 12.179388481495982, "z": 0.263880966692616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.527761933385232}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -0.05357620605490868, "y": 12.27873414746373, "z": 0.2648274566283229}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5296549132566458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -0.041471851132623, "y": 12.377841011440752, "z": 0.2698144319153966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5396288638307932}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -0.0275839864305273, "y": 12.476769103014362, "z": 0.27562933811504964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5512586762300993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -0.011630407228085598, "y": 12.575329590864563, "z": 0.28065552128614135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5613110425722827}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": 0.006052902369693304, "y": 12.673722454540503, "z": 0.2861433729029303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5722867458058606}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": 0.024492535500427043, "y": 12.771862110029096, "z": 0.291474683056857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.582949366113714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": 0.04322736985575617, "y": 12.87010295147237, "z": 0.2966593091734738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5933186183469475}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": 0.062028612762277835, "y": 12.968254018966375, "z": 0.30170612090815413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6034122418163083}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": 0.08084408200323796, "y": 13.06645425876249, "z": 0.30662313342026604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6132462668405321}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": 0.0996605726139236, "y": 13.164700242293394, "z": 0.3114176183806144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6228352367612288}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": 0.11840291601114734, "y": 13.262835450551698, "z": 0.3160961970971487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6321923941942974}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": 0.13706578294286015, "y": 13.36117979110782, "z": 0.3068899153631333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6137798307262666}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": 0.1555128643079231, "y": 13.459276363563621, "z": 0.2972701110337163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5945402220674326}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": 0.1738193436831413, "y": 13.557734702055603, "z": 0.2873632922226399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5747265844452798}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": 0.1918197824568466, "y": 13.65580043893291, "z": 0.2771123149435186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5542246298870372}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": 0.20966098273698677, "y": 13.754340421733732, "z": 0.26646794415711306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5329358883142261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": 0.22720553259952717, "y": 13.852384346808421, "z": 0.2552138465555119}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5104276931110238}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": 0.24469122213990907, "y": 13.950912262608037, "z": 0.24322313613717275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4864462722743455}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": 0.26199611461645894, "y": 14.049031315291442, "z": 0.23050194262374302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46100388524748603}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": 0.279367199280459, "y": 14.147682453578367, "z": 0.21738070100941043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43476140201882085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": 0.29694445076282294, "y": 14.245875010380555, "z": 0.20358988949033244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4071797789806649}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": 0.31475346097894147, "y": 14.34464511517976, "z": 0.19102667519811095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3820533503962219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": 0.33084704986764524, "y": 14.442985349508017, "z": 0.17965692721481072}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35931385442962144}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": 0.3442386798713963, "y": 14.542070042933481, "z": 0.1676412962912813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3352825925825626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": 0.3553079976589919, "y": 14.641426657084981, "z": 0.15493477449476656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3098695489895331}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": 0.3620179255489776, "y": 14.740890962600659, "z": 0.1481896922103325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.296379384420665}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": 0.35981004362921915, "y": 14.840435358449351, "z": 0.14284719583100472}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28569439166200944}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": 0.34657595853672013, "y": 14.939293818041987, "z": 0.13748247424452342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27496494848904685}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": 0.3216762812056632, "y": 15.035432818321901, "z": 0.13530559160497627}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27061118320995253}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": 0.2824201856304667, "y": 15.127368688853513, "z": 0.13525336435752042}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27050672871504083}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": 0.2286470886322828, "y": 15.211419505317226, "z": 0.13520111693504505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2704022338700901}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": 0.16201594175060138, "y": 15.286095339694912, "z": 0.13627107724109577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27254215448219155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": 0.08488446439149255, "y": 15.349627730011717, "z": 0.13782182814886335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2756436562977267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -0.0007899402427199743, "y": 15.401223998314538, "z": 0.13904657605096415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2780931521019283}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -0.0925174732391788, "y": 15.440515662706904, "z": 0.1367679172226777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2735358344453554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -0.1892522210651366, "y": 15.467685654574353, "z": 0.13326878899458044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2665375779891609}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -0.28765145622021254, "y": 15.480290959062508, "z": 0.13321734794223072}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26643469588446145}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -0.3879286465211004, "y": 15.476549462691263, "z": 0.13316588701856313}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26633177403712627}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -0.48562356419162556, "y": 15.457973050062652, "z": 0.1360509957386587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2721019914773174}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -0.5799009397822296, "y": 15.425579922082, "z": 0.13909473154329766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2781894630865953}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -0.6680808706730491, "y": 15.379473902090389, "z": 0.13957923124342234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27915846248684467}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -0.7501746032151235, "y": 15.322319210922716, "z": 0.14369846773464667}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28739693546929335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -0.8269005299505009, "y": 15.258166461524473, "z": 0.15247969140957432}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30495938281914864}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -0.898761966299052, "y": 15.189079553085815, "z": 0.16158504145385605}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3231700829077121}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -0.9663939918456573, "y": 15.115741012329996, "z": 0.17065773446147992}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34131546892295983}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -1.029460885258478, "y": 15.038384526941488, "z": 0.17785714479588544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35571428959177087}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -1.0881922477099901, "y": 14.957390282157808, "z": 0.1847370713449953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3694741426899906}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -1.1429357835790437, "y": 14.873831860012183, "z": 0.1923570168394115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.384714033678823}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -1.1942738990396047, "y": 14.78795940678688, "z": 0.20010155512954575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4002031102590915}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -1.2425848729475775, "y": 14.700297273335622, "z": 0.2078805003873306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4157610007746612}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -1.288711836387471, "y": 14.611569108478573, "z": 0.21617615942034793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43235231884069586}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -1.3335507788791428, "y": 14.522147474959338, "z": 0.2240623658667332}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4481247317334664}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -1.3776856520561276, "y": 14.43217931684467, "z": 0.23158564477489135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4631712895497827}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -1.4208329209884691, "y": 14.342697531887644, "z": 0.23878434060939033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47756868121878066}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -1.4638567094760433, "y": 14.251610310400546, "z": 0.2456904999025863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4913809998051726}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -1.505521110356006, "y": 14.161337816610835, "z": 0.2523312309419585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.504662461883917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -1.5465656925421494, "y": 14.070551849123042, "z": 0.2587297077976103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5174594155952206}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -1.5872817625830828, "y": 13.979544529109356, "z": 0.26490592619276826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5298118523855365}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -1.6278601255953729, "y": 13.888553254853463, "z": 0.27087728230534824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5417545646106965}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -1.668589391636016, "y": 13.797235395032105, "z": 0.2766590227058535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.553318045411707}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -1.7090850002073503, "y": 13.706455296820433, "z": 0.2822645988544443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5645291977088887}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -1.749800578725737, "y": 13.615078560279493, "z": 0.2877059497938248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5754118995876496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -1.7903445801616817, "y": 13.523771753799407, "z": 0.2929937300528805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.585987460105761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -1.830504708882704, "y": 13.432750065910586, "z": 0.2981374952067636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5962749904135272}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -1.870990286400526, "y": 13.34046463632911, "z": 0.30314585432981306}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6062917086596261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -1.9105646577890836, "y": 13.249691233156428, "z": 0.30802659628701184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6160531925740237}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -1.9500874970890871, "y": 13.157436437593818, "z": 0.31278679515053515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6255735903010703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -1.9884555118689016, "y": 13.065515027769981, "z": 0.317432898809964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.634865797619928}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -2.026129713427219, "y": 12.972822533615776, "z": 0.32197080393950017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6439416078790003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -2.0629369919323164, "y": 12.879931788579118, "z": 0.3264059198050307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6528118396100614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -2.0989875338139976, "y": 12.786828758439496, "z": 0.3307432228769165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.661486445753833}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -2.1344582043959814, "y": 12.69332323484694, "z": 0.33498730381776576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6699746076355315}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -2.1693627028747517, "y": 12.59966355350363, "z": 0.3391424081074087}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6782848162148174}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -2.2038785864992976, "y": 12.505760442633921, "z": 0.34321247132753585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6864249426550717}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -2.238168516811038, "y": 12.41160005945441, "z": 0.3472011499397783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6944022998795566}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -2.272146206788535, "y": 12.317580447533189, "z": 0.35111184824139186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7022236964827837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -2.3058838342626964, "y": 12.22342282467026, "z": 0.35494774206323776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7098954841264755}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -2.339241056552072, "y": 12.129259097994577, "z": 0.3587117996787314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7174235993574628}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -2.3721118258775724, "y": 12.034968713708716, "z": 0.36240680031477046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7248136006295409}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -2.4045621118779263, "y": 11.940470579617815, "z": 0.3660353505924676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7320707011849352}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -2.43681181725967, "y": 11.845919156612442, "z": 0.36959989917383246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7391997983476649}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -2.4690352782016114, "y": 11.751341895126544, "z": 0.37310274984804154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7462054996960831}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -2.5012462556502477, "y": 11.656787910954607, "z": 0.37654607325580036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7530921465116007}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -2.533471791121639, "y": 11.562207588755248, "z": 0.3799319174211376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7598638348422752}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -2.565689453444716, "y": 11.467655506655433, "z": 0.38326221723562665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7665244344712533}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -2.597916555719082, "y": 11.373071522396371, "z": 0.38653880301965204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7730776060393041}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -2.6301308292473125, "y": 11.278523168452816, "z": 0.3897634082681843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7795268165363686}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -2.662358767326997, "y": 11.183934771061132, "z": 0.392937676674044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.785875353348088}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -2.6945713558271267, "y": 11.08939039053351, "z": 0.3960631685093631}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7921263370187261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -2.7268000230641003, "y": 10.994796592395046, "z": 0.3991413664355069}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7982827328710138}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -2.75900933988695, "y": 10.900257032289929, "z": 0.4021736808028046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8043473616056092}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -2.7912383602784763, "y": 10.805656790639064, "z": 0.4051614544938036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8103229089876072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -2.8234436567155, "y": 10.711122785693249, "z": 0.4081059673572063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8162119347144126}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -2.8556727274408256, "y": 10.616515003259398, "z": 0.41100844027399086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8220168805479817}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -2.887872983091858, "y": 10.521987271027566, "z": 0.41387003889234003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8277400777846801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -2.9201017044185145, "y": 10.427370882479705, "z": 0.4166918770637637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8333837541275274}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -2.95229596035979, "y": 10.332850005494334, "z": 0.4194750200091265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.838950040018253}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -2.98452387439478, "y": 10.238224037197256, "z": 0.4222204872400867}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8444409744801734}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -3.0167132463366437, "y": 10.143704377649222, "z": 0.4249292552586519}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8498585105173038}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -3.0489377651001175, "y": 10.049074059126937, "z": 0.4276022600551095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.855204520110219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -3.0811215502583655, "y": 9.954555338941113, "z": 0.43024039942243925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8604807988448785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -3.113341939065174, "y": 9.859920526087826, "z": 0.4328445351034225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.865689070206845}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -3.1455193227845637, "y": 9.765402922082272, "z": 0.4354154947849978}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8708309895699956}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -3.177735054733089, "y": 9.67076306278695, "z": 0.43795407395294056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8759081479058811}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -3.209905256795944, "y": 9.576246923341174, "z": 0.4404610376186401}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8809220752372802}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -3.2421159872241825, "y": 9.481601270146925, "z": 0.44293712192859336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8858742438571867}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -3.274278278977901, "y": 9.387087249141123, "z": 0.44538303566620774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8907660713324155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -3.306483849757342, "y": 9.292435107277733, "z": 0.44779946165459084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8955989233091817}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -3.3386376388211643, "y": 9.197924042238812, "z": 0.45018705806819287}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9003741161363857}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -3.3708383355852662, "y": 9.103263894926712, "z": 0.45254645966043633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9050929193208727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -3.4029830925203925, "y": 9.008757450399347, "z": 0.4548782789138188}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9097565578276376}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -3.435179162468443, "y": 8.914089494387945, "z": 0.45718310711839155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9143662142367831}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -3.467314125739524, "y": 8.819588185277627, "z": 0.45946151538399005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9189230307679801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -3.499504670738639, "y": 8.724906563940703, "z": 0.46171405559112494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9234281111822499}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -3.5316231976180075, "y": 8.630413326543763, "z": 0.4639412612850169}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9278825225700338}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -3.5637985212350243, "y": 8.535720657063216, "z": 0.46614364851687484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9322872970337497}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -3.595890406949419, "y": 8.441226716686499, "z": 0.46832171663617567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9366434332723513}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -3.628027382116746, "y": 8.346541282162159, "z": 0.47047594903738793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9409518980747759}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -3.6600954180652217, "y": 8.252006431085812, "z": 0.47260681386430053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9452136277286011}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -3.6921944486137996, "y": 8.157339025538317, "z": 0.47471476467486406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9494295293497281}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -3.724250781058708, "y": 8.062770259135027, "z": 0.47680024106921576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9536004821384315}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -3.756332946054078, "y": 7.968110808958014, "z": 0.47886366928334967}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9577273385666993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -3.7883865407400292, "y": 7.873529032441691, "z": 0.4809054627507035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.961810925501407}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -3.8204622841253704, "y": 7.778880851398151, "z": 0.4829260226337547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9658520452675095}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -3.8525192372246617, "y": 7.684289124372996, "z": 0.48492573832756064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9698514766551213}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -3.8845922955508003, "y": 7.58965192362257, "z": 0.4869049879370336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9738099758740671}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -3.9166535207384134, "y": 7.495051713247833, "z": 0.4888641387296034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9777282774592068}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -3.9487249032676335, "y": 7.4004234904257515, "z": 0.49080354756480427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9816070951296085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -3.9807894587217034, "y": 7.30581723477608, "z": 0.4927235613022054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9854471226044108}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -4.0128597408588345, "y": 7.211195596906666, "z": 0.4946245171890063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9892490343780126}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -4.044926502565922, "y": 7.116585271580699, "z": 0.49650674322852295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9930134864570459}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -4.076995877372966, "y": 7.0219673864941115, "z": 0.4983705585307022}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9967411170614044}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -4.1090630389199125, "y": 6.927355181697462, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -4.141131237512552, "y": 6.832737847545896, "z": 0.49366970732498167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9873394146499633}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -4.17319644647542, "y": 6.738125803692299, "z": 0.4872646995482332}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9745293990964664}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -4.205262662695664, "y": 6.643505544115348, "z": 0.4807821998682538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9615643997365076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -4.237322956228018, "y": 6.548895564575143, "z": 0.4742192664100098}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9484385328200196}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -4.269385781891875, "y": 6.454268709003227, "z": 0.4675725962878783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9351451925757566}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -4.301437620098002, "y": 6.359662452556944, "z": 0.46083898685298863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9216779737059773}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -4.333494984309538, "y": 6.265025244451932, "z": 0.4540146442862266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9080292885724532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -4.365534170501871, "y": 6.170424010647282, "z": 0.4470951059146061}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8941902118292122}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -4.3975832858422566, "y": 6.075772715451315, "z": 0.4400755634108005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.880151126821601}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -4.429605316173376, "y": 5.981177472068112, "z": 0.4329536085270237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8659072170540474}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -4.46164257408163, "y": 5.886508475554002, "z": 0.425724438855774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.851448877711548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -4.493641405457027, "y": 5.791919318849054, "z": 0.4183742784472193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8367485568944386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -4.525662750273223, "y": 5.697229382233328, "z": 0.41089484257487896}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8217896851497579}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -4.557635661339121, "y": 5.602647013791054, "z": 0.4033106929623848}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8066213859247696}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -4.589634338665636, "y": 5.5079326973719756, "z": 0.3956185903541603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7912371807083206}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": -4.621563781638636, "y": 5.4133527886559225, "z": 0.38777391378596093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7755478275719219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": -4.653540934583037, "y": 5.318613696593999, "z": 0.37974081761978945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7594816352395789}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": -4.685462981971524, "y": 5.224046042437908, "z": 0.3717283507818522}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7434567015637044}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": -4.717380956397808, "y": 5.129272103243789, "z": 0.36388795186125594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7277759037225119}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": -4.749129610114859, "y": 5.034674126798395, "z": 0.3558749918025399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7117499836050798}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": -4.781105981044023, "y": 4.939895272878624, "z": 0.3488203586356582}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6976407172713164}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": -4.813274622093055, "y": 4.845405818652645, "z": 0.3421119393549201}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6842238787098402}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": -4.844870501536583, "y": 4.750527948520126, "z": 0.3394640852098437}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6789281704196874}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": -4.874820861409684, "y": 4.655314135063387, "z": 0.33683996433298874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6736799286659775}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": -4.90330129415331, "y": 4.559463185125747, "z": 0.3330356952703976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6660713905407952}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": -4.930579504841961, "y": 4.463270391072987, "z": 0.32772818033272144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6554563606654429}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": -4.95675940317074, "y": 4.366911756216084, "z": 0.32184998311339214}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6436999662267843}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": -4.981994318082603, "y": 4.269800098040994, "z": 0.3168083773260598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6336167546521196}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": -5.0055921323541055, "y": 4.173133326731162, "z": 0.3132274245858801}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6264548491717602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": -5.027529304893369, "y": 4.075092123569231, "z": 0.3096225687261347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6192451374522694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": -5.047219069976314, "y": 3.9777611822949157, "z": 0.30597812516578315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6119562503315663}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": -5.065106968694061, "y": 3.878803170164935, "z": 0.30222195255457374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6044439051091475}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": -5.080735463917009, "y": 3.780623810999988, "z": 0.2983862069033614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5967724138067227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": -5.09431263286324, "y": 3.6810703767064945, "z": 0.2959293527180057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5918587054360114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": -5.105109498948584, "y": 3.5820693356008686, "z": 0.29346750864101223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5869350172820245}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": -5.113483836413556, "y": 3.482289890203957, "z": 0.29097884675927627}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5819576935185525}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": -5.120933256812345, "y": 3.38266846222075, "z": 0.2828307057517819}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5656614115035637}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": -5.128173386699749, "y": 3.2833765329674134, "z": 0.2732818351074795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.546563670214959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": -5.134913760018205, "y": 3.1833889242173057, "z": 0.2638415079917736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5276830159835472}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": -5.140823744316332, "y": 3.0841711337869735, "z": 0.25405456206968374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5081091241393675}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": -5.146162480047755, "y": 2.9843752475332233, "z": 0.243612928789056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.487225857578112}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": -5.151802364204349, "y": 2.8849104786827375, "z": 0.2317334773944577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4634669547889154}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": -5.156940381583641, "y": 2.7850269328381954, "z": 0.22500988761967694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4500197752393539}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": -5.159320548442635, "y": 2.685747000033941, "z": 0.21882625221357804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4376525044271561}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": -5.15819835132115, "y": 2.5859260214054216, "z": 0.21246396310106733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42492792620213465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": -5.153355863072338, "y": 2.4864885461324984, "z": 0.20590513728066423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41181027456132846}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": -5.1446743483357045, "y": 2.387245320554832, "z": 0.19892746582381235}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3978549316476247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": -5.132058455326551, "y": 2.2875799447210228, "z": 0.19106616247685015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3821323249537003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": -5.115576776316193, "y": 2.189036052524277, "z": 0.1842280690509809}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3684561381019618}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": -5.093805553005832, "y": 2.091025117211461, "z": 0.18044445404947507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36088890809895013}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": -5.065258291398272, "y": 1.9952439127563462, "z": 0.17666730626900268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35333461253800535}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": -5.029751286919738, "y": 1.9017542600930086, "z": 0.1724372027803601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3448744055607202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": -4.987754809717897, "y": 1.8108423618834868, "z": 0.1666368878501882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3332737757003764}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": -4.939235677309958, "y": 1.72368164805624, "z": 0.16166636034910106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3233327206982021}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": -4.883458487772746, "y": 1.640622279583284, "z": 0.15704723236334187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31409446472668373}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": -4.8218199188763915, "y": 1.562294335974549, "z": 0.1498032719828352}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2996065439656704}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": -4.75448005581323, "y": 1.4876151338395325, "z": 0.14216493062665436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2843298612533087}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": -4.68128275585765, "y": 1.420746927365218, "z": 0.14086857874026656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28173715748053313}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": -4.59858970311297, "y": 1.3635711231028214, "z": 0.14014959916103722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28029919832207445}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": -4.50992375674191, "y": 1.3187121103628752, "z": 0.1378077753590595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.275615550718119}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": -4.415063666071819, "y": 1.2859075164648734, "z": 0.13650963880588068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27301927761176137}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": -4.317102945781185, "y": 1.2682804311356428, "z": 0.13645694680253143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27291389360506285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": -4.217228671534054, "y": 1.2666768095390264, "z": 0.13640423444463073}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27280846888926147}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": -4.1179394620963015, "y": 1.279857035463762, "z": 0.13885945018806184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2777189003761237}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": -4.02316025848506, "y": 1.3078465780354591, "z": 0.1310273669664842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2620547339329684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_sp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.02316025848506, "y_m": 1.3078465780354591, "d_right": 1.1041225141728355, "d_left": 0.3399638171010661, "psi_rad": 0.37162104183352174, "kappa_radpm": 1.780403116502875, "vx_mps": 2.5961599749858584, "ax_mps2": -0.026055893682144293}, {"id": 1, "s_m": 0.0999055993780877, "d_m": 0.0, "x_m": -3.9335257999112048, "y_m": 1.3518851236394338, "d_right": 1.1687836338107103, "d_left": 0.3495488602707337, "psi_rad": 0.5373442312429746, "kappa_radpm": 1.5194975842948337, "vx_mps": 2.5951570966643387, "ax_mps2": 1.7403905807348903}, {"id": 2, "s_m": 0.1998111987561754, "d_m": 0.0, "x_m": -3.851919923285942, "y_m": 1.408713992957559, "d_right": 1.2301758933131455, "d_left": 0.3671786432725035, "psi_rad": 0.6759192220265183, "kappa_radpm": 1.3312344329889896, "vx_mps": 2.661313563751531, "ax_mps2": 2.5440323621636356}, {"id": 3, "s_m": 0.2997167981342631, "d_m": 0.0, "x_m": -3.7782549871091593, "y_m": 1.476213846801317, "d_right": 1.2973990715816883, "d_left": 0.3760220844905743, "psi_rad": 0.8067097267976072, "kappa_radpm": 1.2788074087165384, "vx_mps": 2.7551617086055575, "ax_mps2": 2.2633351157146695}, {"id": 4, "s_m": 0.3996223975123508, "d_m": 0.0, "x_m": -3.7134821794511192, "y_m": 1.551993102884107, "d_right": 1.3736351790895378, "d_left": 0.3985494510856499, "psi_rad": 0.9094933648650382, "kappa_radpm": 0.6920228035805366, "vx_mps": 2.836045793569665, "ax_mps2": 6.4028593171722274}, {"id": 5, "s_m": 0.4995279968904385, "d_m": 0.0, "x_m": -3.6538216000505868, "y_m": 1.6325686217402124, "d_right": 1.4539558280296412, "d_left": 0.41005687739822844, "psi_rad": 0.9477061347089225, "kappa_radpm": 0.18179398051723591, "vx_mps": 3.0532799967994286, "ax_mps2": 7.492956959172007}, {"id": 6, "s_m": 0.5994335962685262, "d_m": 0.0, "x_m": -3.5966306669249777, "y_m": 1.7141967626071688, "d_right": 1.5354940222228521, "d_left": 0.41156526329363996, "psi_rad": 0.974392806775572, "kappa_radpm": 0.34987968247284756, "vx_mps": 3.2893305475576797, "ax_mps2": 7.364990768018542}, {"id": 7, "s_m": 0.6993391956466138, "d_m": 0.0, "x_m": -3.542251005875188, "y_m": 1.7976986469837861, "d_right": 1.6192803007616379, "d_left": 0.41632306243257866, "psi_rad": 1.0122170773129262, "kappa_radpm": 0.3209774420656403, "vx_mps": 3.50589547552149, "ax_mps2": 7.2472090647071665}, {"id": 8, "s_m": 0.7992447950247016, "d_m": 0.0, "x_m": -3.4902492279545836, "y_m": 1.8833306655888344, "d_right": 1.7045591387037677, "d_left": 0.41476893204430865, "psi_rad": 1.034735491401571, "kappa_radpm": 0.13247877959663845, "vx_mps": 3.706666509970625, "ax_mps2": 7.1376931653243005}, {"id": 9, "s_m": 0.8991503944027893, "d_m": 0.0, "x_m": -3.439733843692304, "y_m": 1.9693049310218462, "d_right": 1.7909012301008758, "d_left": 0.42710710869419155, "psi_rad": 1.043574372449924, "kappa_radpm": 0.06879418705423351, "vx_mps": 3.8942993777899284, "ax_mps2": 7.035062096674561}, {"id": 10, "s_m": 0.999055993780877, "d_m": 0.0, "x_m": -3.3895221400538422, "y_m": 2.0561311714927024, "d_right": 1.8431529364330075, "d_left": 0.4608191263907304, "psi_rad": 1.0488625127357594, "kappa_radpm": 0.036170349909626635, "vx_mps": 4.070780248885427, "ax_mps2": 6.938282510972986}, {"id": 11, "s_m": 1.0989615931589647, "d_m": 0.0, "x_m": -3.3399631962301926, "y_m": 2.142498251746477, "d_right": 1.8173092047975539, "d_left": 0.45855422410724617, "psi_rad": 1.0500410730861958, "kappa_radpm": -0.011978577802729531, "vx_mps": 4.237640662036155, "ax_mps2": 6.84655717298826}, {"id": 12, "s_m": 1.1988671925370524, "d_m": 0.0, "x_m": -3.29002449058957, "y_m": 2.229293165605696, "d_right": 1.7902398691361365, "d_left": 0.474514359827802, "psi_rad": 1.0467627617549828, "kappa_radpm": -0.04024408310714531, "vx_mps": 4.396091124695858, "ax_mps2": 6.759255627200748}, {"id": 13, "s_m": 1.2987727919151402, "d_m": 0.0, "x_m": -3.2399285453007587, "y_m": 2.3156430090783604, "d_right": 1.7642186350737532, "d_left": 0.5101965470568176, "psi_rad": 1.0437777040644984, "kappa_radpm": -0.019724427571490902, "vx_mps": 4.547108108039669, "ax_mps2": 6.675869040858668}, {"id": 14, "s_m": 1.3986783912932277, "d_m": 0.0, "x_m": -3.1895582115281287, "y_m": 2.4020666282428027, "d_right": 1.7284824736220246, "d_left": 0.5576006145194041, "psi_rad": 1.042628446334651, "kappa_radpm": -0.007294073713399223, "vx_mps": 4.6914928905406335, "ax_mps2": 6.595979652948521}, {"id": 15, "s_m": 1.4985839906713154, "d_m": 0.0, "x_m": -3.139163678544732, "y_m": 2.488378414780809, "d_right": 1.697220286443454, "d_left": 0.5710422804297146, "psi_rad": 1.0420803153624707, "kappa_radpm": -0.003693494282403473, "vx_mps": 4.8299126434564315, "ax_mps2": 6.519239438244751}, {"id": 16, "s_m": 1.5984895900494032, "d_m": 0.0, "x_m": -3.0886621568577106, "y_m": 2.574803895072689, "d_right": 1.6675979506633671, "d_left": 0.5846114307353022, "psi_rad": 1.0419788552300389, "kappa_radpm": 0.0026775412328874757, "vx_mps": 4.962929899822736, "ax_mps2": 6.4453548004687}, {"id": 17, "s_m": 1.698395189427491, "d_m": 0.0, "x_m": -3.038316061646381, "y_m": 2.66101719353563, "d_right": 1.636502068994957, "d_left": 0.6044431134910908, "psi_rad": 1.0426479737991965, "kappa_radpm": 0.01078814915652962, "vx_mps": 5.091024185725799, "ax_mps2": 6.374075334027682}, {"id": 18, "s_m": 1.7983007888055786, "d_m": 0.0, "x_m": -2.9879968710949654, "y_m": 2.747407753283268, "d_right": 1.6110809221929703, "d_left": 0.6117637388920357, "psi_rad": 1.0443113938709288, "kappa_radpm": 0.023198945477021643, "vx_mps": 5.214608220480161, "ax_mps2": 6.305185405537794}, {"id": 19, "s_m": 1.8982063881836662, "d_m": 0.0, "x_m": -2.9379935866458053, "y_m": 2.8337146489241904, "d_right": 1.5860800193084441, "d_left": 0.6346495272794319, "psi_rad": 1.0472791825104695, "kappa_radpm": 0.03602829221663007, "vx_mps": 5.334040264879871, "ax_mps2": 6.238497735583545}, {"id": 20, "s_m": 1.998111987561754, "d_m": 0.0, "x_m": -2.888374686833913, "y_m": 2.9200453023781816, "d_right": 1.56174752804145, "d_left": 0.671331810043981, "psi_rad": 1.051083012968082, "kappa_radpm": 0.04015196576719313, "vx_mps": 5.449633681115122, "ax_mps2": 6.173848428660177}, {"id": 21, "s_m": 2.0980175869398416, "d_m": 0.0, "x_m": -2.8388965784780362, "y_m": 3.0069325157574838, "d_right": 1.536995062606668, "d_left": 0.701791706951492, "psi_rad": 1.0552414856163204, "kappa_radpm": 0.042495005358536286, "vx_mps": 5.561664437361704, "ax_mps2": 6.111093070780679}, {"id": 22, "s_m": 2.1979231863179294, "d_m": 0.0, "x_m": -2.789977367737395, "y_m": 3.0936881811791723, "d_right": 1.5024347580783606, "d_left": 0.725023881564669, "psi_rad": 1.0594930115263552, "kappa_radpm": 0.04286308243771009, "vx_mps": 5.670377072646679, "ax_mps2": 6.050103627048321}, {"id": 23, "s_m": 2.297828785696017, "d_m": 0.0, "x_m": -2.741203310165111, "y_m": 3.1810580318865296, "d_right": 1.4677230442827678, "d_left": 0.7285167822272924, "psi_rad": 1.0637976892217114, "kappa_radpm": 0.04319873223491753, "vx_mps": 5.775989491361349, "ax_mps2": 5.990765947393911}, {"id": 24, "s_m": 2.397734385074105, "d_m": 0.0, "x_m": -2.6929442689942884, "y_m": 3.268388756065952, "d_right": 1.439633244385537, "d_left": 0.727458762729034, "psi_rad": 1.0681240712355178, "kappa_radpm": 0.04349507897631137, "vx_mps": 5.8786968564243205, "ax_mps2": 5.932977740772394}, {"id": 25, "s_m": 2.4976399844521926, "d_m": 0.0, "x_m": -2.644970928359749, "y_m": 3.3560993491344164, "d_right": 1.4127699613542901, "d_left": 0.7395892784642334, "psi_rad": 1.0724566774507824, "kappa_radpm": 0.0426107598404933, "vx_mps": 5.978674779941674, "ax_mps2": 5.876646914535884}, {"id": 26, "s_m": 2.5975455838302803, "d_m": 0.0, "x_m": -2.5974038317488946, "y_m": 3.4439530760092585, "d_right": 1.3793144564641644, "d_left": 0.7642819953588804, "psi_rad": 1.0766172004830532, "kappa_radpm": 0.040730997693779775, "vx_mps": 6.076081960356593, "ax_mps2": 5.821690201583266}, {"id": 27, "s_m": 2.6974511832083676, "d_m": 0.0, "x_m": -2.5501597015969724, "y_m": 3.532063907741204, "d_right": 1.3516332502758517, "d_left": 0.8004256604166934, "psi_rad": 1.0805610775826437, "kappa_radpm": 0.03732223525273869, "vx_mps": 6.171062379115629, "ax_mps2": 5.7680320165617065}, {"id": 28, "s_m": 2.7973567825864554, "d_m": 0.0, "x_m": -2.5032637792379253, "y_m": 3.620313720847044, "d_right": 1.305370218548893, "d_left": 0.8465505864046468, "psi_rad": 1.0840519608416392, "kappa_radpm": 0.03262182954883358, "vx_mps": 6.26374714357384, "ax_mps2": 5.71560349605611}, {"id": 29, "s_m": 2.897262381964543, "d_m": 0.0, "x_m": -2.456621618370358, "y_m": 3.7087806758385717, "d_right": 1.2656004894107389, "d_left": 0.8927411876813406, "psi_rad": 1.0870665671730337, "kappa_radpm": 0.027126249553260037, "vx_mps": 6.354256043376864, "ax_mps2": 5.664341687822746}, {"id": 30, "s_m": 2.997167981342631, "d_m": 0.0, "x_m": -2.410258420957076, "y_m": 3.797299396527744, "d_right": 1.2329643697371726, "d_left": 0.9388375380356907, "psi_rad": 1.0894622663989753, "kappa_radpm": 0.020894654543466, "vx_mps": 6.442698872956879, "ax_mps2": 5.614188861707526}, {"id": 31, "s_m": 3.0970735807207186, "d_m": 0.0, "x_m": -2.3640245448988897, "y_m": 3.8860220446248883, "d_right": 1.2079152508386712, "d_left": 0.9849618617305077, "psi_rad": 1.0912490068265457, "kappa_radpm": 0.01471314032219048, "vx_mps": 6.5291765617190345, "ax_mps2": 5.565091920634262}, {"id": 32, "s_m": 3.1969791800988063, "d_m": 0.0, "x_m": -2.3179803579561025, "y_m": 3.9746989178481837, "d_right": 1.190933707898591, "d_left": 1.031027830086298, "psi_rad": 1.0924046137878012, "kappa_radpm": 0.008449639804882919, "vx_mps": 6.613782145032555, "ax_mps2": 5.517001894446731}, {"id": 33, "s_m": 3.296884779476894, "d_m": 0.0, "x_m": -2.2719543921509113, "y_m": 4.063523806376, "d_right": 1.17358966788023, "d_left": 1.0771880908544649, "psi_rad": 1.0929266116130498, "kappa_radpm": 0.0015664886095460948, "vx_mps": 6.696601602605677, "ax_mps2": 5.469873502783032}, {"id": 34, "s_m": 3.396790378854982, "d_m": 0.0, "x_m": -2.2259843668090813, "y_m": 4.152273548902624, "d_right": 1.1273223099078533, "d_left": 1.123392608298867, "psi_rad": 1.092688504508996, "kappa_radpm": -0.006344930250418267, "vx_mps": 6.777714585732911, "ax_mps2": 5.423664775806851}, {"id": 35, "s_m": 3.4966959782330695, "d_m": 0.0, "x_m": -2.179948288325184, "y_m": 4.241012582012617, "d_right": 1.0810799674512526, "d_left": 1.1697513474400567, "psi_rad": 1.0916499157731447, "kappa_radpm": -0.014565013946792733, "vx_mps": 6.857195050905454, "ax_mps2": 5.378336723696876}, {"id": 36, "s_m": 3.5966015776111573, "d_m": 0.0, "x_m": -2.133765932980224, "y_m": 4.329716371124917, "d_right": 1.0347948336646218, "d_left": 1.179608604409797, "psi_rad": 1.089757408240905, "kappa_radpm": -0.023344212058196433, "vx_mps": 6.935111814112191, "ax_mps2": 5.333853047442515}, {"id": 37, "s_m": 3.696507176989245, "d_m": 0.0, "x_m": -2.087438500119487, "y_m": 4.418193040409811, "d_right": 0.9884851925851083, "d_left": 1.188334430190186, "psi_rad": 1.0869479438592335, "kappa_radpm": -0.033966136005525796, "vx_mps": 7.011529037637743, "ax_mps2": 5.29017988480127}, {"id": 38, "s_m": 3.7964127763673323, "d_m": 0.0, "x_m": -2.0407120567626738, "y_m": 4.506692570728611, "d_right": 0.9452311985216935, "d_left": 1.1974623972367384, "psi_rad": 1.0828360554240153, "kappa_radpm": -0.04835982164523354, "vx_mps": 7.086506659141385, "ax_mps2": 5.247285586327854}, {"id": 39, "s_m": 3.89631837574542, "d_m": 0.0, "x_m": -1.9936980636756951, "y_m": 4.594703993873215, "d_right": 0.9105888217663957, "d_left": 1.1924015577516218, "psi_rad": 1.0773253016403155, "kappa_radpm": -0.058949257111561806, "vx_mps": 7.160100771167635, "ax_mps2": 5.205140517232914}, {"id": 40, "s_m": 3.996223975123508, "d_m": 0.0, "x_m": -1.9460199740371733, "y_m": 4.682724989783843, "d_right": 0.8852536869413399, "d_left": 1.1894584400526453, "psi_rad": 1.071418977849437, "kappa_radpm": -0.05906839079061821, "vx_mps": 7.232363957912932, "ax_mps2": 5.163716881517875}, {"id": 41, "s_m": 4.096129574501596, "d_m": 0.0, "x_m": -1.8980111224689418, "y_m": 4.770122660147185, "d_right": 0.870206407179765, "d_left": 1.1943033498967472, "psi_rad": 1.0655955584648649, "kappa_radpm": -0.054585584754026896, "vx_mps": 7.303345594989437, "ax_mps2": 5.122988565398903}, {"id": 42, "s_m": 4.196035173879683, "d_m": 0.0, "x_m": -1.8493769564163307, "y_m": 4.8575428672869165, "d_right": 0.8659164589271854, "d_left": 1.2014733377182327, "psi_rad": 1.0608711019272237, "kappa_radpm": -0.039673339091359235, "vx_mps": 7.373092117037338, "ax_mps2": 5.082930997493078}, {"id": 43, "s_m": 4.295940773257771, "d_m": 0.0, "x_m": -1.800546342923797, "y_m": 4.944503769021565, "d_right": 0.8467665240637394, "d_left": 1.2165373615727495, "psi_rad": 1.057662814934082, "kappa_radpm": -0.02573021833498731, "vx_mps": 7.44164725730279, "ax_mps2": 5.043521023622652}, {"id": 44, "s_m": 4.395846372635859, "d_m": 0.0, "x_m": -1.7513916874697752, "y_m": 5.0315149236441, "d_right": 0.8198774387543284, "d_left": 1.2240877799193723, "psi_rad": 1.0556660155228654, "kappa_radpm": -0.014118935741176024, "vx_mps": 7.509052262689624, "ax_mps2": -10.118420398731715}, {"id": 45, "s_m": 4.495751972013946, "d_m": 0.0, "x_m": -1.7021838608613389, "y_m": 5.118328637939336, "d_right": 0.7948544530279238, "d_left": 1.23380484693517, "psi_rad": 1.0546657116379923, "kappa_radpm": -0.0100240503074254, "vx_mps": 7.373200944936646, "ax_mps2": -11.450041075533598}, {"id": 46, "s_m": 4.595657571392034, "d_m": 0.0, "x_m": -1.6528477991108181, "y_m": 5.205158228968078, "d_right": 0.7547863990423782, "d_left": 1.2504197627567613, "psi_rad": 1.0534447857184377, "kappa_radpm": -0.01442648132103525, "vx_mps": 7.216387305383825, "ax_mps2": -11.448996357793101}, {"id": 47, "s_m": 4.6955631707701215, "d_m": 0.0, "x_m": -1.6034359520919859, "y_m": 5.291859050456153, "d_right": 0.706191451704439, "d_left": 1.2583528427666761, "psi_rad": 1.0524977721194895, "kappa_radpm": 0.004988752824893588, "vx_mps": 7.056104311480883, "ax_mps2": -10.262347519232684}, {"id": 48, "s_m": 4.79546877014821, "d_m": 0.0, "x_m": -1.5540232360490338, "y_m": 5.378670681900209, "d_right": 0.6560490904152118, "d_left": 1.262621923681591, "psi_rad": 1.0547615120775498, "kappa_radpm": 0.0402655502952532, "vx_mps": 6.909274643161086, "ax_mps2": -10.090321983374599}, {"id": 49, "s_m": 4.895374369526297, "d_m": 0.0, "x_m": -1.5049421376359458, "y_m": 5.465497868636234, "d_right": 0.6064048272381992, "d_left": 1.2704089598426982, "psi_rad": 1.0561656193349733, "kappa_radpm": -0.0456330673023524, "vx_mps": 6.761798337964161, "ax_mps2": -4.310583948649154}, {"id": 50, "s_m": 4.995279968904385, "d_m": 0.0, "x_m": -1.455322260827601, "y_m": 5.552343120831884, "d_right": 0.5564328485809117, "d_left": 1.2686643693939512, "psi_rad": 1.0450768035366116, "kappa_radpm": -0.17527267278129915, "vx_mps": 6.697806642265524, "ax_mps2": -2.230967671869413}, {"id": 51, "s_m": 5.0951855682824725, "d_m": 0.0, "x_m": -1.4044580675442073, "y_m": 5.638039477757794, "d_right": 0.505496072628514, "d_left": 1.2761452251533272, "psi_rad": 1.0245394335691997, "kappa_radpm": -0.22381556137161265, "vx_mps": 6.66444607542695, "ax_mps2": -0.8837376753685767}, {"id": 52, "s_m": 5.195091167660561, "d_m": 0.0, "x_m": -1.3514163483046067, "y_m": 5.723019500505974, "d_right": 0.452845613325008, "d_left": 1.2720177197619653, "psi_rad": 1.0005299419491749, "kappa_radpm": -0.25514746377369696, "vx_mps": 6.651184917589668, "ax_mps2": -0.8588821586927815}, {"id": 53, "s_m": 5.294996767038648, "d_m": 0.0, "x_m": -1.2966288540530162, "y_m": 5.806116376563718, "d_right": 0.40274286940610254, "d_left": 1.2781865507701393, "psi_rad": 0.9754658037218237, "kappa_radpm": -0.2454561618725719, "vx_mps": 6.638271351357489, "ax_mps2": -1.3212067123481126}, {"id": 54, "s_m": 5.394902366416735, "d_m": 0.0, "x_m": -1.2393751336488967, "y_m": 5.888485535219103, "d_right": 0.3534684139795616, "d_left": 1.2945697250386692, "psi_rad": 0.9515068894294614, "kappa_radpm": -0.2321858445406943, "vx_mps": 6.618357397213798, "ax_mps2": -1.9988705519945764}, {"id": 55, "s_m": 5.4948079657948234, "d_m": 0.0, "x_m": -1.1807486054321126, "y_m": 5.96874827239499, "d_right": 0.31913676396693, "d_left": 1.311663470749993, "psi_rad": 0.9283284479286398, "kappa_radpm": -0.23423535458466033, "vx_mps": 6.588114898520073, "ax_mps2": -1.9994211585737598}, {"id": 56, "s_m": 5.594713565172911, "d_m": 0.0, "x_m": -1.1196406832008157, "y_m": 6.048426108625253, "d_right": 0.29894126060086873, "d_left": 1.3335216286537612, "psi_rad": 0.9047369656802536, "kappa_radpm": -0.2355123265090674, "vx_mps": 6.557724542674011, "ax_mps2": -1.933156406963938}, {"id": 57, "s_m": 5.694619164550999, "d_m": 0.0, "x_m": -1.0573649384490091, "y_m": 6.125779242113801, "d_right": 0.29180764685180993, "d_left": 1.3643009509520139, "psi_rad": 0.8811139594290681, "kappa_radpm": -0.2400797629337934, "vx_mps": 6.528206865482314, "ax_mps2": -1.8663908241086689}, {"id": 58, "s_m": 5.794524763929086, "d_m": 0.0, "x_m": -0.9924839096827947, "y_m": 6.202526087306218, "d_right": 0.2950163521117834, "d_left": 1.401537441769817, "psi_rad": 0.8567938408298201, "kappa_radpm": -0.2437454621901636, "vx_mps": 6.499581455033681, "ax_mps2": -1.7881063500560892}, {"id": 59, "s_m": 5.894430363307174, "d_m": 0.0, "x_m": -0.926605132087696, "y_m": 6.276711165948446, "d_right": 0.3165836581830052, "d_left": 1.4289724761097975, "psi_rad": 0.8324060599317763, "kappa_radpm": -0.24766048286261858, "vx_mps": 6.472037964761139, "ax_mps2": -1.7634707180532754}, {"id": 60, "s_m": 5.994335962685262, "d_m": 0.0, "x_m": -0.8580417588387482, "y_m": 6.350178492664167, "d_right": 0.35818433561007845, "d_left": 1.3379042378773722, "psi_rad": 0.8073731205410998, "kappa_radpm": -0.2503218440104028, "vx_mps": 6.444758662600475, "ax_mps2": -1.5937431289425958}, {"id": 61, "s_m": 6.09424156206335, "d_m": 0.0, "x_m": -0.7884546000208955, "y_m": 6.421094051564814, "d_right": 0.3821552870819001, "d_left": 1.2504807767249857, "psi_rad": 0.7822278677397444, "kappa_radpm": -0.25634397463713837, "vx_mps": 6.420005178663054, "ax_mps2": -1.3518371326087713}, {"id": 62, "s_m": 6.194147161441437, "d_m": 0.0, "x_m": -0.716375435489993, "y_m": 6.49088160201345, "d_right": 0.4030812660627099, "d_left": 1.1655309789274753, "psi_rad": 0.7561380279837251, "kappa_radpm": -0.26391738202553333, "vx_mps": 6.398933840576159, "ax_mps2": -1.1715536198937184}, {"id": 63, "s_m": 6.294052760819525, "d_m": 0.0, "x_m": -0.6430018562920338, "y_m": 6.558382878723246, "d_right": 0.4419256190877027, "d_left": 1.0852553128916584, "psi_rad": 0.7328407741703521, "kappa_radpm": -0.18461892385470874, "vx_mps": 6.380616330956803, "ax_mps2": -4.487640102521761}, {"id": 64, "s_m": 6.393958360197613, "d_m": 0.0, "x_m": -0.568106347617937, "y_m": 6.624773417767992, "d_right": 0.49679873972938, "d_left": 1.0093991754975988, "psi_rad": 0.7193547344023135, "kappa_radpm": -0.08580460118947214, "vx_mps": 6.30995911352851, "ax_mps2": -8.701714354176085}, {"id": 65, "s_m": 6.4938639595757, "d_m": 0.0, "x_m": -0.49269322169485835, "y_m": 6.69043695723436, "d_right": 0.5635464325411262, "d_left": 0.9388091026897328, "psi_rad": 0.714266825921468, "kappa_radpm": -0.03298770488352416, "vx_mps": 6.1706469707851355, "ax_mps2": -10.885726668246956}, {"id": 66, "s_m": 6.593769558953788, "d_m": 0.0, "x_m": -0.4171020744386838, "y_m": 6.755807699782986, "d_right": 0.6273838295907211, "d_left": 0.8742790983419857, "psi_rad": 0.7121720985261603, "kappa_radpm": -0.009038589856328284, "vx_mps": 5.991810573035939, "ax_mps2": -11.814204870058632}, {"id": 67, "s_m": 6.693675158331875, "d_m": 0.0, "x_m": -0.3413432020832078, "y_m": 6.821200955267677, "d_right": 0.6923891692941917, "d_left": 0.8079413889819825, "psi_rad": 0.7122984352820468, "kappa_radpm": 0.006985746074075182, "vx_mps": 5.7914750716641965, "ax_mps2": -11.759276379813866}, {"id": 68, "s_m": 6.793580757709964, "d_m": 0.0, "x_m": -0.26571040346855, "y_m": 6.886568555965461, "d_right": 0.7582139234544846, "d_left": 0.7422474325467007, "psi_rad": 0.713225663971416, "kappa_radpm": 0.011583424084349484, "vx_mps": 5.584939426327918, "ax_mps2": -11.759190878214186}, {"id": 69, "s_m": 6.893486357088051, "d_m": 0.0, "x_m": -0.19018708995492462, "y_m": 6.9519941183746665, "d_right": 0.8246427904875119, "d_left": 0.6773064901815549, "psi_rad": 0.7145617237865227, "kappa_radpm": 0.01029268466941027, "vx_mps": 5.3704683566681, "ax_mps2": -11.64490255717357}, {"id": 70, "s_m": 6.993391956466139, "d_m": 0.0, "x_m": -0.11451907046245624, "y_m": 7.017643374003545, "d_right": 0.8891744193041684, "d_left": 0.6132151893010983, "psi_rad": 0.7142205532820414, "kappa_radpm": -0.01725808083267328, "vx_mps": 5.149286205934338, "ax_mps2": -10.978520511993043}, {"id": 71, "s_m": 7.093297555844226, "d_m": 0.0, "x_m": -0.039228235177256675, "y_m": 7.082737760242336, "d_right": 0.9539228843686834, "d_left": 0.5602710269138582, "psi_rad": 0.711092214554598, "kappa_radpm": -0.04586483663766647, "vx_mps": 4.931685014937092, "ax_mps2": -10.854126603222621}, {"id": 72, "s_m": 7.193203155222315, "d_m": 0.0, "x_m": 0.0369812445241191, "y_m": 7.14830200661368, "d_right": 1.019761451769656, "d_left": 0.5170007706133748, "psi_rad": 0.7115170134538173, "kappa_radpm": 0.0555918650821893, "vx_mps": 4.706669845922258, "ax_mps2": -8.74496998138048}, {"id": 73, "s_m": 7.293108754600402, "d_m": 0.0, "x_m": 0.11201003044930961, "y_m": 7.213582678292245, "d_right": 1.0858559331482018, "d_left": 0.47473134892157426, "psi_rad": 0.7223366211708164, "kappa_radpm": 0.16338391734476623, "vx_mps": 4.517233456823707, "ax_mps2": -8.743855052977507}, {"id": 74, "s_m": 7.39301435397849, "d_m": 0.0, "x_m": 0.186843070457263, "y_m": 7.280718870588938, "d_right": 1.1522026652088082, "d_left": 0.41467767698482993, "psi_rad": 0.7401779180870245, "kappa_radpm": 0.1765058355619115, "vx_mps": 4.319522883787256, "ax_mps2": -8.765697131206345}, {"id": 75, "s_m": 7.492919953356577, "d_m": 0.0, "x_m": 0.2596892500228607, "y_m": 7.348430942490529, "d_right": 1.219616389551737, "d_left": 0.3711755557323778, "psi_rad": 0.7575336992200703, "kappa_radpm": 0.17264111509468005, "vx_mps": 4.111787140872186, "ax_mps2": -8.55696620775351}, {"id": 76, "s_m": 7.592825552734665, "d_m": 0.0, "x_m": 0.3320499815623269, "y_m": 7.418139372623169, "d_right": 1.2896397221596514, "d_left": 0.34938512217417195, "psi_rad": 0.7770159718226491, "kappa_radpm": 0.23042569394668835, "vx_mps": 3.898335005634401, "ax_mps2": -7.7490090810732015}, {"id": 77, "s_m": 7.692731152112753, "d_m": 0.0, "x_m": 0.4020406461716414, "y_m": 7.48875378534282, "d_right": 1.360571292495422, "d_left": 0.35328377270471434, "psi_rad": 0.8040590766830555, "kappa_radpm": 0.31532392597154574, "vx_mps": 3.694411593541363, "ax_mps2": -5.856457205903679}, {"id": 78, "s_m": 7.79263675149084, "d_m": 0.0, "x_m": 0.470434887925692, "y_m": 7.562382170289987, "d_right": 1.4336014420248548, "d_left": 0.35922161238007494, "psi_rad": 0.843598428034616, "kappa_radpm": 0.49619640812260607, "vx_mps": 3.532490805043515, "ax_mps2": -3.37654987046897}, {"id": 79, "s_m": 7.892542350868928, "d_m": 0.0, "x_m": 0.5342778756092326, "y_m": 7.638367725591916, "d_right": 1.4603480819855075, "d_left": 0.3350152023362361, "psi_rad": 0.904382901684225, "kappa_radpm": 0.7344302601875343, "vx_mps": 3.4356686118481456, "ax_mps2": -2.4402882898786604}, {"id": 80, "s_m": 7.992447950247016, "d_m": 0.0, "x_m": 0.5932748354415962, "y_m": 7.71983954695429, "d_right": 1.4164125952702213, "d_left": 0.33241279743275687, "psi_rad": 0.9853296793773682, "kappa_radpm": 0.8486452839755778, "vx_mps": 3.363959256876821, "ax_mps2": -1.636702637552087}, {"id": 81, "s_m": 8.092353549625104, "d_m": 0.0, "x_m": 0.6442668516335706, "y_m": 7.804526164003074, "d_right": 1.3780160033543511, "d_left": 0.3314478794904625, "psi_rad": 1.0739194709239746, "kappa_radpm": 0.9469104992433525, "vx_mps": 3.3149947761513254, "ax_mps2": -1.05508093099483}, {"id": 82, "s_m": 8.192259149003192, "d_m": 0.0, "x_m": 0.6879040969363222, "y_m": 7.895349522906479, "d_right": 1.3544273766358885, "d_left": 0.32048029333937117, "psi_rad": 1.1730753015152715, "kappa_radpm": 1.0193176717247816, "vx_mps": 3.283043310756609, "ax_mps2": -0.4343614302162952}, {"id": 83, "s_m": 8.292164748381278, "d_m": 0.0, "x_m": 0.721528978938005, "y_m": 7.98862188840808, "d_right": 1.3483038017059414, "d_left": 0.3083275462839668, "psi_rad": 1.277647244023692, "kappa_radpm": 1.0856175677698128, "vx_mps": 3.269798633285963, "ax_mps2": -0.04129997166382865}, {"id": 84, "s_m": 8.392070347759367, "d_m": 0.0, "x_m": 0.7451201021787904, "y_m": 8.085819491226543, "d_right": 1.3502426349775505, "d_left": 0.3041912994961036, "psi_rad": 1.3883572468834373, "kappa_radpm": 1.1232451850708336, "vx_mps": 3.268536508193232, "ax_mps2": -0.04129997166381976}, {"id": 85, "s_m": 8.491975947137455, "d_m": 0.0, "x_m": 0.757704876972398, "y_m": 8.184556066423776, "d_right": 1.3531335042336337, "d_left": 0.3211708861072882, "psi_rad": 1.4976620329925965, "kappa_radpm": 1.0033115950062537, "vx_mps": 3.267273895550427, "ax_mps2": 1.2483016840620762}, {"id": 86, "s_m": 8.591881546515541, "d_m": 0.0, "x_m": 0.7604402994541531, "y_m": 8.284308674265715, "d_right": 1.3660309578748873, "d_left": 0.345608457518678, "psi_rad": 1.5847062860852892, "kappa_radpm": 0.7396450309969533, "vx_mps": 3.3052236481737594, "ax_mps2": 3.877513066296369}, {"id": 87, "s_m": 8.69178714589363, "d_m": 0.0, "x_m": 0.7555638234821602, "y_m": 8.383876447175002, "d_right": 1.3933119371220584, "d_left": 0.3764171564652473, "psi_rad": 1.6542205813996411, "kappa_radpm": 0.6841601867151081, "vx_mps": 3.4204201347811747, "ax_mps2": 3.9505951477584755}, {"id": 88, "s_m": 8.791692745271718, "d_m": 0.0, "x_m": 0.7439007857537396, "y_m": 8.48305836061658, "d_right": 1.4188398037102168, "d_left": 0.4038037724544883, "psi_rad": 1.7207281646646282, "kappa_radpm": 0.6291800046909435, "vx_mps": 3.533927991724, "ax_mps2": 4.09411396792281}, {"id": 89, "s_m": 8.891598344649806, "d_m": 0.0, "x_m": 0.7261709604030833, "y_m": 8.581117283641898, "d_right": 1.4521102817673863, "d_left": 0.4449634384160626, "psi_rad": 1.77623165913792, "kappa_radpm": 0.48580376555469407, "vx_mps": 3.647834545379695, "ax_mps2": 5.484115087218702}, {"id": 90, "s_m": 8.991503944027892, "d_m": 0.0, "x_m": 0.7036940238167033, "y_m": 8.67837391675838, "d_right": 1.4903226321305623, "d_left": 0.4989708765535714, "psi_rad": 1.8162028409457622, "kappa_radpm": 0.28070302418851073, "vx_mps": 3.7950605370875796, "ax_mps2": 7.089377480291419}, {"id": 91, "s_m": 9.09140954340598, "d_m": 0.0, "x_m": 0.6784432381347931, "y_m": 8.775233299290736, "d_right": 1.4541298244192558, "d_left": 0.548457651112683, "psi_rad": 1.8310980785091082, "kappa_radpm": 0.021168739482792343, "vx_mps": 3.97731335111172, "ax_mps2": 6.9895684161838165}, {"id": 92, "s_m": 9.191315142784068, "d_m": 0.0, "x_m": 0.6529644868984079, "y_m": 8.871341191429362, "d_right": 1.4226845744822092, "d_left": 0.6014182636309077, "psi_rad": 1.828397579559399, "kappa_radpm": -0.026610183984691355, "vx_mps": 4.149170463714107, "ax_mps2": 6.895217201270066}, {"id": 93, "s_m": 9.291220742162157, "d_m": 0.0, "x_m": 0.6274336648919406, "y_m": 8.968666263915555, "d_right": 1.3848976266240995, "d_left": 0.6611879452034641, "psi_rad": 1.8265595104436307, "kappa_radpm": -0.010229222359068289, "vx_mps": 4.312001525002921, "ax_mps2": 6.805610696985813}, {"id": 94, "s_m": 9.391126341540243, "d_m": 0.0, "x_m": 0.6024246165432474, "y_m": 9.064458095058473, "d_right": 1.346787195296288, "d_left": 0.7289056970414464, "psi_rad": 1.8258850171541265, "kappa_radpm": -0.003906496544131538, "vx_mps": 4.466899862685539, "ax_mps2": 6.720179338446551}, {"id": 95, "s_m": 9.491031940918331, "d_m": 0.0, "x_m": 0.577018807559296, "y_m": 9.161926376121723, "d_right": 1.3075250925138628, "d_left": 0.8045077683714884, "psi_rad": 1.82576334359705, "kappa_radpm": 0.0013809218037030802, "vx_mps": 4.614754757593471, "ax_mps2": 6.6384596141656536}, {"id": 96, "s_m": 9.59093754029642, "d_m": 0.0, "x_m": 0.5520072891483244, "y_m": 9.25783038985091, "d_right": 1.2688620752939825, "d_left": 0.8837977015685297, "psi_rad": 1.8261359081706094, "kappa_radpm": 0.006040441630477034, "vx_mps": 4.756301088675157, "ax_mps2": 6.560068288183049}, {"id": 97, "s_m": 9.690843139674506, "d_m": 0.0, "x_m": 0.5265511172844068, "y_m": 9.35519968277014, "d_right": 1.236571584888069, "d_left": 0.9680253215105217, "psi_rad": 1.8269564934507734, "kappa_radpm": 0.009853937803205752, "vx_mps": 4.8921544491886895, "ax_mps2": 6.484684162125403}, {"id": 98, "s_m": 9.790748739052594, "d_m": 0.0, "x_m": 0.5013481776691135, "y_m": 9.451226952691636, "d_right": 1.1987891385839242, "d_left": 1.0538921565095105, "psi_rad": 1.8279882678351684, "kappa_radpm": 0.010920961352612226, "vx_mps": 5.02283661596773, "ax_mps2": 6.412034844546313}, {"id": 99, "s_m": 9.890654338430682, "d_m": 0.0, "x_m": 0.47570208712028256, "y_m": 9.548510137692345, "d_right": 1.1387292831229916, "d_left": 1.143076563392367, "psi_rad": 1.829138028967571, "kappa_radpm": 0.011755053485310878, "vx_mps": 5.1487944258303155, "ax_mps2": 6.341886942909148}, {"id": 100, "s_m": 9.99055993780877, "d_m": 0.0, "x_m": 0.45026160865896037, "y_m": 9.644562981567898, "d_right": 1.0854178460567259, "d_left": 1.2272601279569477, "psi_rad": 1.8302719044773597, "kappa_radpm": 0.01108851751202307, "vx_mps": 5.270414032303359, "ax_mps2": 6.274038654267687}, {"id": 101, "s_m": 10.090465537186857, "d_m": 0.0, "x_m": 0.42440505870052453, "y_m": 9.741751044146742, "d_right": 1.038479191935032, "d_left": 1.31264411956931, "psi_rad": 1.8313581172597226, "kappa_radpm": 0.01050361509564287, "vx_mps": 5.388031853696853, "ax_mps2": 6.2083140742071015}, {"id": 102, "s_m": 10.190371136564945, "d_m": 0.0, "x_m": 0.3987384754610474, "y_m": 9.837824480300975, "d_right": 0.9931306086782619, "d_left": 1.3990086655832645, "psi_rad": 1.8323283465079307, "kappa_radpm": 0.009035122717951953, "vx_mps": 5.501943105292357, "ax_mps2": 6.1445587606291046}, {"id": 103, "s_m": 10.290276735943033, "d_m": 0.0, "x_m": 0.37276119916156597, "y_m": 9.934709903164592, "d_right": 0.9538447028748477, "d_left": 1.4877388876470672, "psi_rad": 1.8331662045337211, "kappa_radpm": 0.0076907953399191105, "vx_mps": 5.612408536953023, "ax_mps2": 6.082636229827225}, {"id": 104, "s_m": 10.390182335321121, "d_m": 0.0, "x_m": 0.34686088878223004, "y_m": 10.03101656579914, "d_right": 0.9215212873982276, "d_left": 1.5773008758341651, "psi_rad": 1.8338279691504387, "kappa_radpm": 0.005495685557500179, "vx_mps": 5.719659817012083, "ax_mps2": 6.02242515594613}, {"id": 105, "s_m": 10.490087934699208, "d_m": 0.0, "x_m": 0.3208200165860182, "y_m": 10.127634126175948, "d_right": 0.8719350452735323, "d_left": 1.6683028353354794, "psi_rad": 1.8342663161462682, "kappa_radpm": 0.0032795238555019153, "vx_mps": 5.8239038807462835, "ax_mps2": 5.963817108529493}, {"id": 106, "s_m": 10.589993534077296, "d_m": 0.0, "x_m": 0.29477315720963876, "y_m": 10.224142660084738, "d_right": 0.8242257284414585, "d_left": 1.7443867779262612, "psi_rad": 1.8345401237420635, "kappa_radpm": 0.002606688807774046, "vx_mps": 5.925326476894711, "ax_mps2": 5.906714706902124}, {"id": 107, "s_m": 10.689899133455384, "d_m": 0.0, "x_m": 0.2687065910496028, "y_m": 10.320623958462328, "d_right": 0.7830651619900331, "d_left": 1.718239657898762, "psi_rad": 1.8347955762873005, "kappa_radpm": 0.0025083769722295704, "vx_mps": 6.024095085910111, "ax_mps2": 5.8510301011653265}, {"id": 108, "s_m": 10.78980473283347, "d_m": 0.0, "x_m": 0.24259329828539267, "y_m": 10.417189482242907, "d_right": 0.7530008210608307, "d_left": 1.6973701919152653, "psi_rad": 1.8349358660225688, "kappa_radpm": -0.0014249729329263838, "vx_mps": 6.120361340848973, "ax_mps2": 5.796683711796319}, {"id": 109, "s_m": 10.889710332211559, "d_m": 0.0, "x_m": 0.21651961643715098, "y_m": 10.513667248283651, "d_right": 0.7068979949777512, "d_left": 1.6822269835372092, "psi_rad": 1.8344387618878282, "kappa_radpm": -0.008548318978355264, "vx_mps": 6.214263050742466, "ax_mps2": 5.74360317597577}, {"id": 110, "s_m": 10.989615931589647, "d_m": 0.0, "x_m": 0.1905224096743039, "y_m": 10.610179407310332, "d_right": 0.6570223884454807, "d_left": 1.6730089490908688, "psi_rad": 1.8334375015371858, "kappa_radpm": -0.004506838186597261, "vx_mps": 6.305925903433576, "ax_mps2": 5.69172246063454}, {"id": 111, "s_m": 11.089521530967735, "d_m": 0.0, "x_m": 0.1645336544552782, "y_m": 10.706786949093136, "d_right": 0.6124220184413326, "d_left": 1.664235982974681, "psi_rad": 1.8341198065963364, "kappa_radpm": 0.018286572734852565, "vx_mps": 6.3954649078422285, "ax_mps2": -8.40977415665337}, {"id": 112, "s_m": 11.189427130345821, "d_m": 0.0, "x_m": 0.13844515891997083, "y_m": 10.80307026533773, "d_right": 0.582014493057174, "d_left": 1.6381066215927698, "psi_rad": 1.8368204320848267, "kappa_radpm": 0.01641936213696329, "vx_mps": 6.262715412018322, "ax_mps2": -9.456260201954333}, {"id": 113, "s_m": 11.28933272972391, "d_m": 0.0, "x_m": 0.1121672487851143, "y_m": 10.899751372923692, "d_right": 0.5473678505919207, "d_left": 1.611748650189659, "psi_rad": 1.8340732020385748, "kappa_radpm": -0.07200390258971541, "vx_mps": 6.110003080623527, "ax_mps2": -6.778285581739404}, {"id": 114, "s_m": 11.389238329101998, "d_m": 0.0, "x_m": 0.08674906356782798, "y_m": 10.99600554724315, "d_right": 0.5167229510576593, "d_left": 1.586243073239, "psi_rad": 1.822425669727615, "kappa_radpm": -0.14900311705865596, "vx_mps": 5.998146403484158, "ax_mps2": -6.730434494865013}, {"id": 115, "s_m": 11.489143928480086, "d_m": 0.0, "x_m": 0.062426508055168584, "y_m": 11.09335947028686, "d_right": 0.49218162374865215, "d_left": 1.561864747023472, "psi_rad": 1.8094957063644057, "kappa_radpm": -0.10837705002819514, "vx_mps": 5.8849761336016515, "ax_mps2": -8.350388536678516}, {"id": 116, "s_m": 11.589049527858172, "d_m": 0.0, "x_m": 0.03937840816355104, "y_m": 11.190048837714274, "d_right": 0.4602697903294348, "d_left": 1.5387478960159804, "psi_rad": 1.800801226614496, "kappa_radpm": -0.07088217179473268, "vx_mps": 5.741466968420832, "ax_mps2": -7.332849034167085}, {"id": 117, "s_m": 11.68895512723626, "d_m": 0.0, "x_m": 0.016951039927141046, "y_m": 11.287989018864327, "d_right": 0.4273472485671637, "d_left": 1.5162827845723086, "psi_rad": 1.7896513581317175, "kappa_radpm": -0.15203284765212458, "vx_mps": 5.612419940957065, "ax_mps2": -4.872562067986344}, {"id": 118, "s_m": 11.788860726614349, "d_m": 0.0, "x_m": -0.0037401939941826725, "y_m": 11.385110889339657, "d_right": 0.39312167728679914, "d_left": 1.49553830392903, "psi_rad": 1.7703281680461644, "kappa_radpm": -0.2373558453665144, "vx_mps": 5.525003631296027, "ax_mps2": -4.217922526820934}, {"id": 119, "s_m": 11.888766325992435, "d_m": 0.0, "x_m": -0.022435788583964885, "y_m": 11.483846821924516, "d_right": 0.3565064463252339, "d_left": 1.4594294871607056, "psi_rad": 1.745052051852855, "kappa_radpm": -0.2660397953490701, "vx_mps": 5.448199424533717, "ax_mps2": -3.530634270186858}, {"id": 120, "s_m": 11.988671925370523, "d_m": 0.0, "x_m": -0.038315719212429024, "y_m": 11.581907716167827, "d_right": 0.34327423949643043, "d_left": 1.406535018527012, "psi_rad": 1.7171284910823348, "kappa_radpm": -0.29614053134099116, "vx_mps": 5.383067592330033, "ax_mps2": -3.0955758033498695}, {"id": 121, "s_m": 12.088577524748612, "d_m": 0.0, "x_m": -0.051440613062118605, "y_m": 11.681444519492853, "d_right": 0.35567217254573513, "d_left": 1.3610328094892719, "psi_rad": 1.6863074105269324, "kappa_radpm": -0.3178564529186137, "vx_mps": 5.3253061875807575, "ax_mps2": -2.6030996950474257}, {"id": 122, "s_m": 12.1884831241267, "d_m": 0.0, "x_m": -0.06130413439912669, "y_m": 11.78040152648612, "d_right": 0.3653174017851783, "d_left": 1.3249110980151089, "psi_rad": 1.6536111282756758, "kappa_radpm": -0.3414132358959916, "vx_mps": 5.276244641877084, "ax_mps2": -1.6050902972675234}, {"id": 123, "s_m": 12.288388723504786, "d_m": 0.0, "x_m": -0.06781421271130643, "y_m": 11.880357010173208, "d_right": 0.3453068657201848, "d_left": 1.2917726148709796, "psi_rad": 1.6173857283548092, "kappa_radpm": -0.3816147116550892, "vx_mps": 5.245764244085671, "ax_mps2": -0.6932337245101773}, {"id": 124, "s_m": 12.388294322882874, "d_m": 0.0, "x_m": -0.07049774932954135, "y_m": 11.97992596257581, "d_right": 0.3232096848049697, "d_left": 1.2484730414671783, "psi_rad": 1.5774921466928846, "kappa_radpm": -0.4168301044086029, "vx_mps": 5.2325449489722615, "ax_mps2": -0.10576297857034589}, {"id": 125, "s_m": 12.488199922260963, "d_m": 0.0, "x_m": -0.06904754878644051, "y_m": 12.079842645326325, "d_right": 0.3217732472232721, "d_left": 1.1961104229966877, "psi_rad": 1.534711063169557, "kappa_radpm": -0.43862223759219315, "vx_mps": 5.230525214114063, "ax_mps2": -0.10576297857038146}, {"id": 126, "s_m": 12.58810552163905, "d_m": 0.0, "x_m": -0.06325182445090408, "y_m": 12.179388481495982, "d_right": 0.3160541776769197, "d_left": 1.1538942489261055, "psi_rad": 1.4910125749072265, "kappa_radpm": -0.3991291323737353, "vx_mps": 5.228504699046448, "ax_mps2": 0.9832212973887113}, {"id": 127, "s_m": 12.688011121017137, "d_m": 0.0, "x_m": -0.05357620605490868, "y_m": 12.27873414746373, "d_right": 0.30650446823661315, "d_left": 1.1176534533989093, "psi_rad": 1.4590266588763154, "kappa_radpm": -0.24170039153206413, "vx_mps": 5.247258333074962, "ax_mps2": 5.2386483326993485}, {"id": 128, "s_m": 12.787916720395225, "d_m": 0.0, "x_m": -0.041471851132623, "y_m": 12.377841011440752, "d_right": 0.2996186387067168, "d_left": 1.0889960869633653, "psi_rad": 1.4407038668036598, "kappa_radpm": -0.1742602339300118, "vx_mps": 5.346069642012095, "ax_mps2": 6.231774738629503}, {"id": 129, "s_m": 12.887822319773313, "d_m": 0.0, "x_m": -0.0275839864305273, "y_m": 12.476769103014362, "d_right": 0.3232328008394339, "d_left": 1.0706948527669384, "psi_rad": 1.4212783868132532, "kappa_radpm": -0.2142830829349475, "vx_mps": 5.4612854712189645, "ax_mps2": 5.493569189675191}, {"id": 130, "s_m": 12.9877279191514, "d_m": 0.0, "x_m": -0.011630407228085598, "y_m": 12.575329590864563, "d_right": 0.36236194116968284, "d_left": 1.0423701713027997, "psi_rad": 1.4000662331506917, "kappa_radpm": -0.1755554802381771, "vx_mps": 5.560873640300265, "ax_mps2": 6.1115363852116396}, {"id": 131, "s_m": 13.087633518529488, "d_m": 0.0, "x_m": 0.006052902369693304, "y_m": 12.673722454540503, "d_right": 0.3922481727332641, "d_left": 1.0202847849447256, "psi_rad": 1.3875419660910662, "kappa_radpm": -0.07581762101886914, "vx_mps": 5.669609250623666, "ax_mps2": 6.050534707304211}, {"id": 132, "s_m": 13.187539117907576, "d_m": 0.0, "x_m": 0.024492535500427043, "y_m": 12.771862110029096, "d_right": 0.4153686137891239, "d_left": 1.0000531168168854, "psi_rad": 1.3833531554858196, "kappa_radpm": -0.0263476855522925, "vx_mps": 5.775243167844948, "ax_mps2": 5.991185567168876}, {"id": 133, "s_m": 13.287444717285664, "d_m": 0.0, "x_m": 0.04322736985575617, "y_m": 12.87010295147237, "d_right": 0.45935797329830685, "d_left": 0.9758362417411901, "psi_rad": 1.3816750984046289, "kappa_radpm": -0.007352574632498022, "vx_mps": 5.877970705769677, "ax_mps2": 5.933386595064733}, {"id": 134, "s_m": 13.38735031666375, "d_m": 0.0, "x_m": 0.062028612762277835, "y_m": 12.968254018966375, "d_right": 0.5097227582564229, "d_left": 0.9393328822218027, "psi_rad": 1.381491153018428, "kappa_radpm": -0.00034472127578406836, "vx_mps": 5.977967606647778, "ax_mps2": 5.877045630445499}, {"id": 135, "s_m": 13.487255916041839, "d_m": 0.0, "x_m": 0.08084408200323796, "y_m": 13.06645425876249, "d_right": 0.5462027973858499, "d_left": 0.9084590545066936, "psi_rad": 1.3814976678305122, "kappa_radpm": 0.0004726317349585314, "vx_mps": 6.075392681851456, "ax_mps2": 5.822079347274309}, {"id": 136, "s_m": 13.587161515419927, "d_m": 0.0, "x_m": 0.0996605726139236, "y_m": 13.164700242293394, "d_right": 0.5743170947851849, "d_left": 0.8803593661786789, "psi_rad": 1.3817150143316612, "kappa_radpm": 0.0051659399910972455, "vx_mps": 6.17039001136287, "ax_mps2": 5.768412108757822}, {"id": 137, "s_m": 13.687067114798015, "d_m": 0.0, "x_m": 0.11840291601114734, "y_m": 13.262835450551698, "d_right": 0.6156051747204399, "d_left": 0.8629691722017123, "psi_rad": 1.3825643602411015, "kappa_radpm": 0.011861567325658828, "vx_mps": 6.26309078895534, "ax_mps2": -11.268903865046374}, {"id": 138, "s_m": 13.786972714176102, "d_m": 0.0, "x_m": 0.13706578294286015, "y_m": 13.36117979110782, "d_right": 0.6695822648345714, "d_left": 0.8466916680012213, "psi_rad": 1.3840223975444703, "kappa_radpm": 0.016618292716606756, "vx_mps": 6.0806786661321155, "ax_mps2": -11.41924189833551}, {"id": 139, "s_m": 13.88687831355419, "d_m": 0.0, "x_m": 0.1555128643079231, "y_m": 13.459276363563621, "d_right": 0.7254987502129967, "d_left": 0.8196971006204472, "psi_rad": 1.3858777182522581, "kappa_radpm": 0.02060577350313088, "vx_mps": 5.890073057964652, "ax_mps2": -11.379859304032857}, {"id": 140, "s_m": 13.986783912932278, "d_m": 0.0, "x_m": 0.1738193436831413, "y_m": 13.557734702055603, "d_right": 0.7822211142751058, "d_left": 0.7825700198235341, "psi_rad": 1.3880869688409387, "kappa_radpm": 0.02299467920266588, "vx_mps": 5.693780580505859, "ax_mps2": -11.369189296499261}, {"id": 141, "s_m": 14.086689512310365, "d_m": 0.0, "x_m": 0.1918197824568466, "y_m": 13.65580043893291, "d_right": 0.8392541047449941, "d_left": 0.7445040480948721, "psi_rad": 1.390467406168906, "kappa_radpm": 0.024790016765785145, "vx_mps": 5.490668989906992, "ax_mps2": -11.368488267227068}, {"id": 142, "s_m": 14.186595111688453, "d_m": 0.0, "x_m": 0.20966098273698677, "y_m": 13.754340421733732, "d_right": 0.8970274679983369, "d_left": 0.718034359284201, "psi_rad": 1.3928110756632355, "kappa_radpm": 0.020505188735210126, "vx_mps": 5.2797627492157355, "ax_mps2": -11.535472878574936}, {"id": 143, "s_m": 14.286500711066541, "d_m": 0.0, "x_m": 0.22720553259952717, "y_m": 13.852384346808421, "d_right": 0.9533965430526987, "d_left": 0.6802051219429759, "psi_rad": 1.3945288551210508, "kappa_radpm": 0.013913727567498474, "vx_mps": 5.0567754571385395, "ax_mps2": -11.742869113236942}, {"id": 144, "s_m": 14.38640631044463, "d_m": 0.0, "x_m": 0.24469122213990907, "y_m": 13.950912262608037, "d_right": 1.0101982899373054, "d_left": 0.6410956119527569, "psi_rad": 1.3957358411766878, "kappa_radpm": 0.01072538966589228, "vx_mps": 4.81919301020056, "ax_mps2": -11.84058835818562}, {"id": 145, "s_m": 14.486311909822716, "d_m": 0.0, "x_m": 0.26199611461645894, "y_m": 14.049031315291442, "d_right": 1.067194625751267, "d_left": 0.6158895890404098, "psi_rad": 1.3966690282427312, "kappa_radpm": 0.007974333842236546, "vx_mps": 4.5671368619451815, "ax_mps2": -11.54670878681479}, {"id": 146, "s_m": 14.586217509200804, "d_m": 0.0, "x_m": 0.279367199280459, "y_m": 14.147682453578367, "d_right": 1.124827934456972, "d_left": 0.5944945007659932, "psi_rad": 1.3957059060778236, "kappa_radpm": -0.028299939114952766, "vx_mps": 4.307154210305981, "ax_mps2": -11.40671594628487}, {"id": 147, "s_m": 14.686123108578892, "d_m": 0.0, "x_m": 0.29694445076282294, "y_m": 14.245875010380555, "d_right": 1.1833433367466468, "d_left": 0.5633288939027313, "psi_rad": 1.3911197380321851, "kappa_radpm": -0.04032539004638035, "vx_mps": 4.0339047837372375, "ax_mps2": -9.740811214162605}, {"id": 148, "s_m": 14.78602870795698, "d_m": 0.0, "x_m": 0.31475346097894147, "y_m": 14.34464511517976, "d_right": 1.2474126368017764, "d_left": 0.5257059932260677, "psi_rad": 1.3970644624801585, "kappa_radpm": 0.1615636265533565, "vx_mps": 3.7849788161492706, "ax_mps2": -8.2808184005592}, {"id": 149, "s_m": 14.885934307335067, "d_m": 0.0, "x_m": 0.33084704986764524, "y_m": 14.442985349508017, "d_right": 1.311204972421875, "d_left": 0.4923805543178481, "psi_rad": 1.4227872557513224, "kappa_radpm": 0.29737426138335077, "vx_mps": 3.559700041773299, "ax_mps2": -8.199137865182758}, {"id": 150, "s_m": 14.985839906713155, "d_m": 0.0, "x_m": 0.3442386798713963, "y_m": 14.542070042933481, "d_right": 1.3812942147191702, "d_left": 0.46657754842046706, "psi_rad": 1.4488715715380776, "kappa_radpm": 0.22212521304904118, "vx_mps": 3.321623823040698, "ax_mps2": -8.053374228317363}, {"id": 151, "s_m": 15.085745506091243, "d_m": 0.0, "x_m": 0.3553079976589919, "y_m": 14.641426657084981, "d_right": 1.455455438897801, "d_left": 0.438597771551634, "psi_rad": 1.4742140119115763, "kappa_radpm": 0.42264904744000814, "vx_mps": 3.069858378361991, "ax_mps2": -4.017235493632913}, {"id": 152, "s_m": 15.18565110546933, "d_m": 0.0, "x_m": 0.3620179255489776, "y_m": 14.740890962600659, "d_right": 1.5212695805732952, "d_left": 0.407866563120728, "psi_rad": 1.5410863980084504, "kappa_radpm": 0.9297964675293924, "vx_mps": 2.936212155742612, "ax_mps2": -3.055000753611445}, {"id": 153, "s_m": 15.285556704847417, "d_m": 0.0, "x_m": 0.35981004362921915, "y_m": 14.840435358449351, "d_right": 1.5935589507536574, "d_left": 0.3703080884077883, "psi_rad": 1.6473739164238035, "kappa_radpm": 1.1204667931882266, "vx_mps": 2.830356596040603, "ax_mps2": -2.954849061915795}, {"id": 154, "s_m": 15.385462304225506, "d_m": 0.0, "x_m": 0.34657595853672013, "y_m": 14.939293818041987, "d_right": 1.6754258864208444, "d_left": 0.3463504553123308, "psi_rad": 1.76067952131827, "kappa_radpm": 1.1623124094731367, "vx_mps": 2.724060668844509, "ax_mps2": -1.1667543525216721}, {"id": 155, "s_m": 15.485367903603594, "d_m": 0.0, "x_m": 0.3216762812056632, "y_m": 15.035432818321901, "d_right": 1.7645239638764347, "d_left": 0.33833280695201484, "psi_rad": 1.8935645157277377, "kappa_radpm": 1.511126025637875, "vx_mps": 2.680928186601471, "ax_mps2": -0.027763748351533474}, {"id": 156, "s_m": 15.58527350298168, "d_m": 0.0, "x_m": 0.2824201856304667, "y_m": 15.127368688853513, "d_right": 1.860405108001703, "d_left": 0.3319179872699357, "psi_rad": 2.058303478661109, "kappa_radpm": 1.6708836907604487, "vx_mps": 2.6798933624071997, "ax_mps2": -0.027763748351537425}, {"id": 157, "s_m": 15.685179102359768, "d_m": 0.0, "x_m": 0.2286470886322828, "y_m": 15.211419505317226, "d_right": 1.8679079878416656, "d_left": 0.2959741980562726, "psi_rad": 2.220225379339398, "kappa_radpm": 1.5887828672626099, "vx_mps": 2.6788581384675973, "ax_mps2": 0.5707055114401602}, {"id": 158, "s_m": 15.785084701737857, "d_m": 0.0, "x_m": 0.16201594175060138, "y_m": 15.286095339694912, "d_right": 1.8060307544797167, "d_left": 0.27557430920502046, "psi_rad": 2.377373869882806, "kappa_radpm": 1.5275991139017586, "vx_mps": 2.7000581990786228, "ax_mps2": 0.8351392317388107}, {"id": 159, "s_m": 15.884990301115945, "d_m": 0.0, "x_m": 0.08488446439149255, "y_m": 15.349627730011717, "d_right": 1.754338730799656, "d_left": 0.2577865783978004, "psi_rad": 2.5268501388140083, "kappa_radpm": 1.4723648228963502, "vx_mps": 2.730784584956078, "ax_mps2": 0.6662529561365808}, {"id": 160, "s_m": 15.984895900494031, "d_m": 0.0, "x_m": -0.0007899402427199743, "y_m": 15.401223998314538, "d_right": 1.7160821707510237, "d_left": 0.24698193478921066, "psi_rad": 2.670298414934533, "kappa_radpm": 1.3703679217456068, "vx_mps": 2.7550515877700428, "ax_mps2": -1.2348534971323621}, {"id": 161, "s_m": 16.084801499872118, "d_m": 0.0, "x_m": -0.0925174732391788, "y_m": 15.440515662706904, "d_right": 1.6883092445458239, "d_left": 0.26216939152867363, "psi_rad": 2.8018631885456196, "kappa_radpm": 1.273807597888572, "vx_mps": 2.7099025247643067, "ax_mps2": -1.8565288697250704}, {"id": 162, "s_m": 16.184707099250208, "d_m": 0.0, "x_m": -0.1892522210651366, "y_m": 15.467685654574353, "d_right": 1.6611538373869996, "d_left": 0.3000294473598151, "psi_rad": 2.937119851383943, "kappa_radpm": 1.4586240610246037, "vx_mps": 2.6405712326575745, "ax_mps2": -0.026934164793339394}, {"id": 163, "s_m": 16.284612698628294, "d_m": 0.0, "x_m": -0.28765145622021254, "y_m": 15.480290959062508, "d_right": 1.6485580960883714, "d_left": 0.3508488446932596, "psi_rad": 3.096109383699466, "kappa_radpm": 1.7223476083586313, "vx_mps": 2.639551986035488, "ax_mps2": -0.026934164793347325}, {"id": 164, "s_m": 16.384518298006384, "d_m": 0.0, "x_m": -0.3879286465211004, "y_m": 15.476549462691263, "d_right": 1.6522976153507216, "d_left": 0.391153851342992, "psi_rad": -3.025255537589824, "kappa_radpm": 1.5006040590779761, "vx_mps": 2.638532345685577, "ax_mps2": 1.5261018608329464}, {"id": 165, "s_m": 16.48442389738447, "d_m": 0.0, "x_m": -0.48562356419162556, "y_m": 15.457973050062652, "d_right": 1.6708892777593503, "d_left": 0.37964656093420923, "psi_rad": -2.883856718056176, "kappa_radpm": 1.4210468720347285, "vx_mps": 2.695697531524279, "ax_mps2": 1.6454654711912835}, {"id": 166, "s_m": 16.584329496762557, "d_m": 0.0, "x_m": -0.5799009397822296, "y_m": 15.425579922082, "d_right": 1.7033330978368604, "d_left": 0.3648769045752806, "psi_rad": -2.7354058687850724, "kappa_radpm": 1.5410769401022837, "vx_mps": 2.7560057347140465, "ax_mps2": 0.26528271473225384}, {"id": 167, "s_m": 16.684235096140647, "d_m": 0.0, "x_m": -0.6680808706730491, "y_m": 15.379473902090389, "d_right": 1.7495994879188121, "d_left": 0.36205387399371364, "psi_rad": -2.589392320530867, "kappa_radpm": 1.2652981987097343, "vx_mps": 2.765605551595646, "ax_mps2": 2.292704901348648}, {"id": 168, "s_m": 16.784140695518733, "d_m": 0.0, "x_m": -0.7501746032151235, "y_m": 15.322319210922716, "d_right": 1.8071320439524932, "d_left": 0.35523137723557396, "psi_rad": -2.484420694252865, "kappa_radpm": 0.8460412812753023, "vx_mps": 2.8472235918082167, "ax_mps2": 5.110073141700798}, {"id": 169, "s_m": 16.88404629489682, "d_m": 0.0, "x_m": -0.8269005299505009, "y_m": 15.258166461524473, "d_right": 1.8708699294539126, "d_left": 0.36067792752315847, "psi_rad": -2.4082120323326652, "kappa_radpm": 0.6952467899951265, "vx_mps": 3.0212136670424754, "ax_mps2": 5.618687325437657}, {"id": 170, "s_m": 16.98395189427491, "d_m": 0.0, "x_m": -0.898761966299052, "y_m": 15.189079553085815, "d_right": 1.9224304811663848, "d_left": 0.3815520053681523, "psi_rad": -2.3455992638809327, "kappa_radpm": 0.5890297200376338, "vx_mps": 3.2016259419014106, "ax_mps2": 5.92257828307749}, {"id": 171, "s_m": 17.083857493652996, "d_m": 0.0, "x_m": -0.9663939918456573, "y_m": 15.115741012329996, "d_right": 1.9748650070438727, "d_left": 0.39907517211809757, "psi_rad": -2.2854495942580457, "kappa_radpm": 0.614485495138112, "vx_mps": 3.381391154292133, "ax_mps2": 4.92989079029853}, {"id": 172, "s_m": 17.183763093031082, "d_m": 0.0, "x_m": -1.029460885258478, "y_m": 15.038384526941488, "d_right": 2.032951474328609, "d_left": 0.41453113996137647, "psi_rad": -2.224915483227507, "kappa_radpm": 0.567729575750008, "vx_mps": 3.5240393764644073, "ax_mps2": 4.901440343845186}, {"id": 173, "s_m": 17.283668692409172, "d_m": 0.0, "x_m": -1.0881922477099901, "y_m": 14.957390282157808, "d_right": 2.0942800246996476, "d_left": 0.4339905355930951, "psi_rad": -2.1730867829133675, "kappa_radpm": 0.47039603904332883, "vx_mps": 3.6603573865959125, "ax_mps2": 5.645736905962925}, {"id": 174, "s_m": 17.38357429178726, "d_m": 0.0, "x_m": -1.1429357835790437, "y_m": 14.873831860012183, "d_right": 2.1589197785754206, "d_left": 0.451889784446869, "psi_rad": -2.1294136615633033, "kappa_radpm": 0.4111164922609217, "vx_mps": 3.811338040196602, "ax_mps2": 5.971843223051045}, {"id": 175, "s_m": 17.48347989116535, "d_m": 0.0, "x_m": -1.1942738990396047, "y_m": 14.78795940678688, "d_right": 2.2289539904745026, "d_left": 0.43661049697494553, "psi_rad": -2.090601784079862, "kappa_radpm": 0.3628346846226972, "vx_mps": 3.9647873599767585, "ax_mps2": 6.235636983852068}, {"id": 176, "s_m": 17.583385490543435, "d_m": 0.0, "x_m": -1.2425848729475775, "y_m": 14.700297273335622, "d_right": 2.3008638077997596, "d_left": 0.44046996244764763, "psi_rad": -2.0603845976417334, "kappa_radpm": 0.24207916171066107, "vx_mps": 4.11891841514047, "ax_mps2": 6.911842428786049}, {"id": 177, "s_m": 17.68329108992152, "d_m": 0.0, "x_m": -1.288711836387471, "y_m": 14.611569108478573, "d_right": 2.3714981627726828, "d_left": 0.4402843154289799, "psi_rad": -2.0417830720241827, "kappa_radpm": 0.14272538894219022, "vx_mps": 4.283287572868859, "ax_mps2": 6.821426973028793}, {"id": 178, "s_m": 17.78319668929961, "d_m": 0.0, "x_m": -1.3335507788791428, "y_m": 14.522147474959338, "d_right": 2.366318735640289, "d_left": 0.4219692609762111, "psi_rad": -2.030355366857723, "kappa_radpm": 0.0851453640447507, "vx_mps": 4.439543887901259, "ax_mps2": 6.735280516446221}, {"id": 179, "s_m": 17.883102288677698, "d_m": 0.0, "x_m": -1.3776856520561276, "y_m": 14.43217931684467, "d_right": 2.321429802356135, "d_left": 0.4261086545140791, "psi_rad": -2.0236365819754534, "kappa_radpm": 0.06673037949976421, "vx_mps": 4.5886092017681825, "ax_mps2": 6.652922621832393}, {"id": 180, "s_m": 17.983007888055784, "d_m": 0.0, "x_m": -1.4208329209884691, "y_m": 14.342697531887644, "d_right": 2.2688289890827265, "d_left": 0.4233039186812676, "psi_rad": -2.0163118273810134, "kappa_radpm": 0.08136132709779327, "vx_mps": 4.731243266928052, "ax_mps2": 6.573957119425099}, {"id": 181, "s_m": 18.082913487433874, "d_m": 0.0, "x_m": -1.4638567094760433, "y_m": 14.251610310400546, "d_right": 2.1827143749979716, "d_left": 0.4115524766170943, "psi_rad": -2.007714326308225, "kappa_radpm": 0.08873380954385272, "vx_mps": 4.868081049392674, "ax_mps2": 6.498052734198096}, {"id": 182, "s_m": 18.18281908681196, "d_m": 0.0, "x_m": -1.505521110356006, "y_m": 14.161337816610835, "d_right": 2.099487317416397, "d_left": 0.41854709518677846, "psi_rad": -1.9987600205088771, "kappa_radpm": 0.08146708429526729, "vx_mps": 4.999659669403211, "ax_mps2": 6.424929091401085}, {"id": 183, "s_m": 18.282724686190047, "d_m": 0.0, "x_m": -1.5465656925421494, "y_m": 14.070551849123042, "d_right": 2.018010425868786, "d_left": 0.4042981251112922, "psi_rad": -1.992776402600855, "kappa_radpm": 0.03691820125793954, "vx_mps": 5.126438295106388, "ax_mps2": 6.354346380394373}, {"id": 184, "s_m": 18.382630285568137, "d_m": 0.0, "x_m": -1.5872817625830828, "y_m": 13.979544529109356, "d_right": 1.9384169839397198, "d_left": 0.40679179515595804, "psi_rad": -1.9905524387948343, "kappa_radpm": 0.011893160347661413, "vx_mps": 5.24881311927867, "ax_mps2": 6.2860975714525}, {"id": 185, "s_m": 18.482535884946223, "d_m": 0.0, "x_m": -1.6278601255953729, "y_m": 13.888553254853463, "d_right": 1.860892660480697, "d_left": 0.4093024333048413, "psi_rad": -1.9902634268884132, "kappa_radpm": -0.001476382961628714, "vx_mps": 5.367128827628611, "ax_mps2": 6.2200024545183625}, {"id": 186, "s_m": 18.582441484324313, "d_m": 0.0, "x_m": -1.668589391636016, "y_m": 13.797235395032105, "d_right": 1.785291941035103, "d_left": 0.39484526163129247, "psi_rad": -1.990396997162108, "kappa_radpm": -0.001192447357727287, "vx_mps": 5.481687513810484, "ax_mps2": 6.155903004128763}, {"id": 187, "s_m": 18.6823470837024, "d_m": 0.0, "x_m": -1.7090850002073503, "y_m": 13.706455296820433, "d_right": 1.7126109044225846, "d_left": 0.3867496324907433, "psi_rad": -1.9902818999722385, "kappa_radpm": 0.004247322836827737, "vx_mps": 5.59275570338518, "ax_mps2": 6.093659726718051}, {"id": 188, "s_m": 18.782252683080486, "d_m": 0.0, "x_m": -1.749800578725737, "y_m": 13.615078560279493, "d_right": 1.6423258458024732, "d_left": 0.4038889163788025, "psi_rad": -1.9895283395422982, "kappa_radpm": 0.012509525279316694, "vx_mps": 5.700569955061968, "ax_mps2": 6.03314874713413}, {"id": 189, "s_m": 18.882158282458576, "d_m": 0.0, "x_m": -1.7903445801616817, "y_m": 13.523771753799407, "d_right": 1.5754454406362348, "d_left": 0.40431791330009326, "psi_rad": -1.987629874642943, "kappa_radpm": 0.0251152778190858, "vx_mps": 5.805341376352851, "ax_mps2": 5.9742594592983}, {"id": 190, "s_m": 18.982063881836662, "d_m": 0.0, "x_m": -1.830504708882704, "y_m": 13.432750065910586, "d_right": 1.51265267472796, "d_left": 0.3896984859278791, "psi_rad": -1.985110371011909, "kappa_radpm": 0.021062503711592483, "vx_mps": 5.907259300237058, "ax_mps2": 5.916892612936297}, {"id": 191, "s_m": 19.08196948121475, "d_m": 0.0, "x_m": -1.870990286400526, "y_m": 13.34046463632911, "d_right": 1.4534057587237637, "d_left": 0.3886624615369427, "psi_rad": -1.9834706296437048, "kappa_radpm": 0.013733699455221685, "vx_mps": 6.006494305844264, "ax_mps2": 5.860958741319013}, {"id": 192, "s_m": 19.18187508059284, "d_m": 0.0, "x_m": -1.9105646577890836, "y_m": 13.249691233156428, "d_right": 1.4000145917355487, "d_left": 0.39055054968844155, "psi_rad": -1.9795348162027402, "kappa_radpm": 0.0644328730169452, "vx_mps": 6.1032007207778305, "ax_mps2": 5.806376858517875}, {"id": 193, "s_m": 19.281780679970925, "d_m": 0.0, "x_m": -1.9500874970890871, "y_m": 13.157436437593818, "d_right": 1.3517331888808717, "d_left": 0.3911873648408688, "psi_rad": -1.9709687120057868, "kappa_radpm": 0.09633511227210267, "vx_mps": 6.197518709825214, "ax_mps2": 5.753073371749571}, {"id": 194, "s_m": 19.38168627934901, "d_m": 0.0, "x_m": -1.9884555118689016, "y_m": 13.065515027769981, "d_right": 1.3105315308370669, "d_left": 0.3819590507410196, "psi_rad": -1.9614956554652903, "kappa_radpm": 0.09393907054216959, "vx_mps": 6.289576030669721, "ax_mps2": 5.700981166919726}, {"id": 195, "s_m": 19.4815918787271, "d_m": 0.0, "x_m": -2.026129713427219, "y_m": 12.972822533615776, "d_right": 1.2728535937224086, "d_left": 0.38604122501853905, "psi_rad": -1.9522890331872356, "kappa_radpm": 0.08799258824110266, "vx_mps": 6.379489519281595, "ax_mps2": 5.650038834788898}, {"id": 196, "s_m": 19.581497478105188, "d_m": 0.0, "x_m": -2.0629369919323164, "y_m": 12.879931788579118, "d_right": 1.2360836494637553, "d_left": 0.38775063279743516, "psi_rad": -1.943990329908261, "kappa_radpm": 0.07835197297986389, "vx_mps": 6.467366354183271, "ax_mps2": 5.6001900121896675}, {"id": 197, "s_m": 19.681403077483278, "d_m": 0.0, "x_m": -2.0989875338139976, "y_m": 12.786828758439496, "d_right": 1.200111507273302, "d_left": 0.38038427616822745, "psi_rad": -1.9366311135475396, "kappa_radpm": 0.06863346013765141, "vx_mps": 6.553305138540385, "ax_mps2": 5.551382818045106}, {"id": 198, "s_m": 19.781308676861364, "d_m": 0.0, "x_m": -2.1344582043959814, "y_m": 12.69332323484694, "d_right": 1.1670378848898206, "d_left": 0.36013195380528995, "psi_rad": -1.9302738364482925, "kappa_radpm": 0.05863567842635337, "vx_mps": 6.637396831171678, "ax_mps2": 5.5035693680214814}, {"id": 199, "s_m": 19.88121427623945, "d_m": 0.0, "x_m": -2.1693627028747517, "y_m": 12.59966355350363, "d_right": 1.1423753260480844, "d_left": 0.3442246858650655, "psi_rad": -1.9250141498789848, "kappa_radpm": 0.04481816619676094, "vx_mps": 6.7197255514872, "ax_mps2": 5.456705354809802}, {"id": 200, "s_m": 19.98111987561754, "d_m": 0.0, "x_m": -2.2038785864992976, "y_m": 12.505760442633921, "d_right": 1.126510456431177, "d_left": 0.3365984692851991, "psi_rad": -1.9213145815740047, "kappa_radpm": 0.029451603314498927, "vx_mps": 6.800369278613756, "ax_mps2": 5.410749683499609}, {"id": 201, "s_m": 20.081025474995627, "d_m": 0.0, "x_m": -2.238168516811038, "y_m": 12.41160005945441, "d_right": 1.1196928833388167, "d_left": 0.35101340341480675, "psi_rad": -1.9188361496216828, "kappa_radpm": 0.024203921854754607, "vx_mps": 6.879400461227956, "ax_mps2": 5.365664153451579}, {"id": 202, "s_m": 20.180931074373714, "d_m": 0.0, "x_m": -2.272146206788535, "y_m": 12.317580447533189, "d_right": 1.1109237520134063, "d_left": 0.3668870314202497, "psi_rad": -1.9162797429706595, "kappa_radpm": 0.027014610119640896, "vx_mps": 6.956886551652801, "ax_mps2": 5.321413179616997}, {"id": 203, "s_m": 20.280836673751804, "d_m": 0.0, "x_m": -2.3058838342626964, "y_m": 12.22342282467026, "d_right": 1.1058588385380161, "d_left": 0.359392481673904, "psi_rad": -1.9132863603720907, "kappa_radpm": 0.035790219792080094, "vx_mps": 7.032890475406524, "ax_mps2": 5.277963547481287}, {"id": 204, "s_m": 20.38074227312989, "d_m": 0.0, "x_m": -2.339241056552072, "y_m": 12.129259097994577, "d_right": 1.1098507869829937, "d_left": 0.352701280606844, "psi_rad": -1.9089642121391162, "kappa_radpm": 0.05073021214838769, "vx_mps": 7.107471045489909, "ax_mps2": 5.235284196800562}, {"id": 205, "s_m": 20.480647872507976, "d_m": 0.0, "x_m": -2.3721118258775724, "y_m": 12.034968713708716, "d_right": 1.1069940028409755, "d_left": 0.3538455866985213, "psi_rad": -1.903519130135388, "kappa_radpm": 0.04806528482105693, "vx_mps": 7.180683329159516, "ax_mps2": 5.1933460300977545}, {"id": 206, "s_m": 20.580553471886066, "d_m": 0.0, "x_m": -2.4045621118779263, "y_m": 11.940470579617815, "d_right": 1.1135929201617265, "d_left": 0.3651746707945447, "psi_rad": -1.9000906552932388, "kappa_radpm": 0.020552640460901606, "vx_mps": 7.2525789736823185, "ax_mps2": 5.152121742538119}, {"id": 207, "s_m": 20.680459071264153, "d_m": 0.0, "x_m": -2.43681181725967, "y_m": 11.845919156612442, "d_right": 1.1229076291749758, "d_left": 0.387999525278905, "psi_rad": -1.8992510124747293, "kappa_radpm": 0.0021746906009130563, "vx_mps": 7.323206496543243, "ax_mps2": 5.111585670334549}, {"id": 208, "s_m": 20.780364670642243, "d_m": 0.0, "x_m": -2.4690352782016114, "y_m": 11.751341895126544, "d_right": 1.139144279570017, "d_left": 0.4200993909945009, "psi_rad": -1.8991212241330313, "kappa_radpm": 0.0004219587694001965, "vx_mps": 7.392611544734892, "ax_mps2": 5.0717136552732205}, {"id": 209, "s_m": 20.88027027002033, "d_m": 0.0, "x_m": -2.5012462556502477, "y_m": 11.656787910954607, "d_right": 1.1484758579031789, "d_left": 0.45226698236335416, "psi_rad": -1.8991566506421833, "kappa_radpm": -0.0006575975106531816, "vx_mps": 7.460837127062606, "ax_mps2": 5.032482923311258}, {"id": 210, "s_m": 20.980175869398416, "d_m": 0.0, "x_m": -2.533471791121639, "y_m": 11.562207588755248, "d_right": 1.1498227423962213, "d_left": 0.48451365827216125, "psi_rad": -1.8991977320059537, "kappa_radpm": -0.00016440241457905667, "vx_mps": 7.527923822820114, "ax_mps2": 4.993871975497654}, {"id": 211, "s_m": 21.080081468776505, "d_m": 0.0, "x_m": -2.565689453444716, "y_m": 11.467655506655433, "d_right": 1.1480830892275224, "d_left": 0.5168051450879823, "psi_rad": -1.8991913502454167, "kappa_radpm": 0.0001784416432421025, "vx_mps": 7.593909969708732, "ax_mps2": 4.955860489723109}, {"id": 212, "s_m": 21.179987068154592, "d_m": 0.0, "x_m": -2.597916555719082, "y_m": 11.373071522396371, "d_right": 1.1507068690426974, "d_left": 0.5491486094849473, "psi_rad": -1.8991791777378655, "kappa_radpm": 6.512202894309788e-05, "vx_mps": 7.658831833469227, "ax_mps2": 4.918429232010122}, {"id": 213, "s_m": 21.27989266753268, "d_m": 0.0, "x_m": -2.6301308292473125, "y_m": 11.278523168452816, "d_right": 1.1619445388941132, "d_left": 0.5815162077668733, "psi_rad": -1.899178020997807, "kappa_radpm": -1.5883934381093904e-05, "vx_mps": 7.7227237613556365, "ax_mps2": 4.881559976235585}, {"id": 214, "s_m": 21.37979826691077, "d_m": 0.0, "x_m": -2.662358767326997, "y_m": 11.183934771061132, "d_right": 1.1744076154388088, "d_left": 0.6139263050161714, "psi_rad": -1.8991771459325069, "kappa_radpm": 3.3431510122817284e-05, "vx_mps": 7.785618321293356, "ax_mps2": 4.845235431324769}, {"id": 215, "s_m": 21.479703866288855, "d_m": 0.0, "x_m": -2.6945713558271267, "y_m": 11.08939039053351, "d_right": 1.1716761171940062, "d_left": 0.6463486467825895, "psi_rad": -1.899171387763758, "kappa_radpm": 7.626454857113726e-05, "vx_mps": 7.847546428320616, "ax_mps2": 4.809439175083776}, {"id": 216, "s_m": 21.57960946566694, "d_m": 0.0, "x_m": -2.7268000230641003, "y_m": 10.994796592395046, "d_right": 1.1768776100279277, "d_left": 0.663832497212167, "psi_rad": -1.899163448096477, "kappa_radpm": 8.26410903164234e-05, "vx_mps": 7.908537459705558, "ax_mps2": 4.774155593944266}, {"id": 217, "s_m": 21.67951506504503, "d_m": 0.0, "x_m": -2.75900933988695, "y_m": 10.900257032289929, "d_right": 1.1904654030769137, "d_left": 0.6710533132328981, "psi_rad": -1.8991548664830367, "kappa_radpm": 9.048003904689239e-05, "vx_mps": 7.968619359954431, "ax_mps2": 4.739369827987584}, {"id": 218, "s_m": 21.779420664423117, "d_m": 0.0, "x_m": -2.7912383602784763, "y_m": 10.805656790639064, "d_right": 1.2049424405448563, "d_left": 0.6927668486688656, "psi_rad": -1.8991448565624625, "kappa_radpm": 0.00010985775182315946, "vx_mps": 8.02781873677524, "ax_mps2": 4.705067720692236}, {"id": 219, "s_m": 21.879326263801207, "d_m": 0.0, "x_m": -2.8234436567155, "y_m": 10.711122785693249, "d_right": 1.2043371974600499, "d_left": 0.7276480657712769, "psi_rad": -1.899132914058466, "kappa_radpm": 0.00012918107305914881, "vx_mps": 8.086160948931212, "ax_mps2": 4.671235772917988}, {"id": 220, "s_m": 21.979231863179294, "d_m": 0.0, "x_m": -2.8556727274408256, "y_m": 10.616515003259398, "d_right": 1.2119995036967832, "d_left": 0.7739671790266403, "psi_rad": -1.8991191332186448, "kappa_radpm": 0.00014660242811889013, "vx_mps": 8.143670186806412, "ax_mps2": 4.637861100697866}, {"id": 221, "s_m": 22.07913746255738, "d_m": 0.0, "x_m": -2.887872983091858, "y_m": 10.521987271027566, "d_right": 1.2277615662381987, "d_left": 0.8297413651968042, "psi_rad": -1.8991036189789705, "kappa_radpm": 0.0001641806431935648, "vx_mps": 8.200369546409153, "ax_mps2": 4.604931396459613}, {"id": 222, "s_m": 22.17904306193547, "d_m": 0.0, "x_m": -2.9201017044185145, "y_m": 10.427370882479705, "d_right": 1.2369210773989625, "d_left": 0.871544560774541, "psi_rad": -1.8990862542547484, "kappa_radpm": 0.0001832959231504616, "vx_mps": 8.256281097454908, "ax_mps2": 4.5724348933404615}, {"id": 223, "s_m": 22.278948661313557, "d_m": 0.0, "x_m": -2.95229596035979, "y_m": 10.332850005494334, "d_right": 1.2388812282183932, "d_left": 0.9039013321028956, "psi_rad": -1.899066991797067, "kappa_radpm": 0.00020254549517147698, "vx_mps": 8.311425946097584, "ax_mps2": 4.540360332300615}, {"id": 224, "s_m": 22.378854260691643, "d_m": 0.0, "x_m": -2.98452387439478, "y_m": 10.238224037197256, "d_right": 1.2488652462611076, "d_left": 0.9363071958875147, "psi_rad": -1.8990457945105534, "kappa_radpm": 0.00022158356129793944, "vx_mps": 8.365824292814551, "ax_mps2": 4.50869693177004}, {"id": 225, "s_m": 22.478759860069733, "d_m": 0.0, "x_m": -3.0167132463366437, "y_m": 10.143704377649222, "d_right": 1.26666136650002, "d_left": 0.9686961386061728, "psi_rad": -1.8990227125064667, "kappa_radpm": 0.0002407784473392593, "vx_mps": 8.419495485895302, "ax_mps2": 4.477434359594389}, {"id": 226, "s_m": 22.57866545944782, "d_m": 0.0, "x_m": -3.0489377651001175, "y_m": 10.049074059126937, "d_right": 1.2789125714120448, "d_left": 1.001130877598276, "psi_rad": -1.8989977250200285, "kappa_radpm": 0.00025914303951221266, "vx_mps": 8.47245807093514, "ax_mps2": 4.446562707069198}, {"id": 227, "s_m": 22.678571058825906, "d_m": 0.0, "x_m": -3.0811215502583655, "y_m": 9.954555338941113, "d_right": 1.2854539142421306, "d_left": 1.0331693701388764, "psi_rad": -1.898970927600999, "kappa_radpm": 0.00027765644592153753, "vx_mps": 8.524729836692655, "ax_mps2": 4.416072464878898}, {"id": 228, "s_m": 22.778476658203996, "d_m": 0.0, "x_m": -3.113341939065174, "y_m": 9.859920526087826, "d_right": 1.2975772660289673, "d_left": 1.0651439453050675, "psi_rad": -1.8989423458137757, "kappa_radpm": 0.0002940723440079326, "vx_mps": 8.576327857632286, "ax_mps2": 4.385954500767233}, {"id": 229, "s_m": 22.878382257582082, "d_m": 0.0, "x_m": -3.1455193227845637, "y_m": 9.765402922082272, "d_right": 1.317171424005834, "d_left": 1.0971114066119207, "psi_rad": -1.8989121632063908, "kappa_radpm": 0.00031055440026422215, "vx_mps": 8.62726853344023, "ax_mps2": 4.356200038792992}, {"id": 230, "s_m": 22.978287856960172, "d_m": 0.0, "x_m": -3.177735054733089, "y_m": 9.67076306278695, "d_right": 1.3436011883066687, "d_left": 1.1249405159316341, "psi_rad": -1.8988804296589175, "kappa_radpm": 0.00032411038570189383, "vx_mps": 8.67756762577284, "ax_mps2": 4.326800640034701}, {"id": 231, "s_m": 23.07819345633826, "d_m": 0.0, "x_m": -3.209905256795944, "y_m": 9.576246923341174, "d_right": 1.3570884160920353, "d_left": 1.1219157728466247, "psi_rad": -1.8988473972709832, "kappa_radpm": 0.00033762422097187585, "vx_mps": 8.727240292470764, "ax_mps2": 4.2977481846207395}, {"id": 232, "s_m": 23.178099055716345, "d_m": 0.0, "x_m": -3.2421159872241825, "y_m": 9.481601270146925, "d_right": 1.3777334191840078, "d_left": 1.105237460537535, "psi_rad": -1.8988132273107015, "kappa_radpm": 0.0003454994577025783, "vx_mps": 8.776301119449265, "ax_mps2": 4.269034854976396}, {"id": 233, "s_m": 23.278004655094435, "d_m": 0.0, "x_m": -3.274278278977901, "y_m": 9.387087249141123, "d_right": 1.3990646069640893, "d_left": 1.082033228212369, "psi_rad": -1.8987783595546812, "kappa_radpm": 0.0003530259008549031, "vx_mps": 8.82476415045474, "ax_mps2": 4.240653120189453}, {"id": 234, "s_m": 23.37791025447252, "d_m": 0.0, "x_m": -3.306483849757342, "y_m": 9.292435107277733, "d_right": 1.4267332205523258, "d_left": 1.0649925862125535, "psi_rad": -1.8987427684170068, "kappa_radpm": 0.000358792410256212, "vx_mps": 8.872642914859435, "ax_mps2": 4.212595721401473}, {"id": 235, "s_m": 23.477815853850608, "d_m": 0.0, "x_m": -3.3386376388211643, "y_m": 9.197924042238812, "d_right": 1.458378370602842, "d_left": 1.057174223282887, "psi_rad": -1.8987066652403897, "kappa_radpm": 0.00036451906287920276, "vx_mps": 8.91995045365016, "ax_mps2": 4.184855658146323}, {"id": 236, "s_m": 23.577721453228698, "d_m": 0.0, "x_m": -3.3708383355852662, "y_m": 9.103263894926712, "d_right": 1.4922863914334838, "d_left": 1.0587592303022046, "psi_rad": -1.8986709998808298, "kappa_radpm": 0.00034692225546277934, "vx_mps": 8.966699343752387, "ax_mps2": 4.157426175560962}, {"id": 237, "s_m": 23.677627052606784, "d_m": 0.0, "x_m": -3.4029830925203925, "y_m": 9.008757450399347, "d_right": 1.5319143812274143, "d_left": 1.0671587404837855, "psi_rad": -1.8986373562963283, "kappa_radpm": 0.00032711538729270783, "vx_mps": 9.012901720818252, "ax_mps2": 4.130300752400434}, {"id": 238, "s_m": 23.77753265198487, "d_m": 0.0, "x_m": -3.435179162468443, "y_m": 8.914089494387945, "d_right": 1.5769584234983398, "d_left": 1.0700463316756226, "psi_rad": -1.8986004004369557, "kappa_radpm": 0.0004206176364218547, "vx_mps": 9.05856930059539, "ax_mps2": 4.10347308979683}, {"id": 239, "s_m": 23.87743825136296, "d_m": 0.0, "x_m": -3.467314125739524, "y_m": 8.819588185277627, "d_right": 1.5670840479504236, "d_left": 1.0598323116876536, "psi_rad": -1.898553253937675, "kappa_radpm": 0.0005242799021060058, "vx_mps": 9.103713398983148, "ax_mps2": 4.076937100707352}, {"id": 240, "s_m": 23.977343850741047, "d_m": 0.0, "x_m": -3.499504670738639, "y_m": 8.724906563940703, "d_right": 1.5588062366911055, "d_left": 1.0554683654755268, "psi_rad": -1.8984895939486943, "kappa_radpm": 0.0007566515328515289, "vx_mps": 9.148344950873417, "ax_mps2": 4.050686899997462}, {"id": 241, "s_m": 24.077249450119137, "d_m": 0.0, "x_m": -3.5316231976180075, "y_m": 8.630413326543763, "d_right": 1.555250321064728, "d_left": 1.0605311614954034, "psi_rad": -1.89840197336218, "kappa_radpm": 0.0009998755428229495, "vx_mps": 9.192474527864931, "ax_mps2": 4.024716795117552}, {"id": 242, "s_m": 24.177155049497223, "d_m": 0.0, "x_m": -3.5637985212350243, "y_m": 8.535720657063216, "d_right": 1.543157613669838, "d_left": 1.0749058918371233, "psi_rad": -1.8982768872617548, "kappa_radpm": 0.001511049472661224, "vx_mps": 9.23611235493225, "ax_mps2": 3.9990212773254594}, {"id": 243, "s_m": 24.27706064887531, "d_m": 0.0, "x_m": -3.595890406949419, "y_m": 8.441226716686499, "d_right": 1.5239338107609228, "d_left": 1.0621631365899549, "psi_rad": -1.8980999432528733, "kappa_radpm": 0.0020339220166189107, "vx_mps": 9.279268326123885, "ax_mps2": 3.9735950134198315}, {"id": 244, "s_m": 24.3769662482534, "d_m": 0.0, "x_m": -3.628027382116746, "y_m": 8.346541282162159, "d_right": 1.5110694440744177, "d_left": 1.0431144526845777, "psi_rad": -1.8979135417728088, "kappa_radpm": 0.0016932583773814286, "vx_mps": 9.3219520193578, "ax_mps2": 3.9484328379454934}, {"id": 245, "s_m": 24.476871847631486, "d_m": 0.0, "x_m": -3.6600954180652217, "y_m": 8.252006431085812, "d_right": 1.4975846060049716, "d_left": 1.0310492230873338, "psi_rad": -1.8977617742896813, "kappa_radpm": 0.0013416281930741624, "vx_mps": 9.36417271037688, "ax_mps2": 3.923529745841921}, {"id": 246, "s_m": 24.576777447009572, "d_m": 0.0, "x_m": -3.6921944486137996, "y_m": 8.157339025538317, "d_right": 1.4765553405244614, "d_left": 1.0220115232419869, "psi_rad": -1.8976507786721353, "kappa_radpm": 0.0008784545312630687, "vx_mps": 9.405939385922029, "ax_mps2": 3.8988808855000783}, {"id": 247, "s_m": 24.676683046387662, "d_m": 0.0, "x_m": -3.724250781058708, "y_m": 8.062770259135027, "d_right": 1.4582277692815981, "d_left": 1.0226959538373288, "psi_rad": -1.8975862188815826, "kappa_radpm": 0.0004349639845969439, "vx_mps": 9.44726075617576, "ax_mps2": 3.8744815522037306}, {"id": 248, "s_m": 24.77658864576575, "d_m": 0.0, "x_m": -3.756332946054078, "y_m": 7.968110808958014, "d_right": 1.4465729815699186, "d_left": 0.9988695582873616, "psi_rad": -1.897553819438671, "kappa_radpm": 0.00021308266868783757, "vx_mps": 9.488145266525123, "ax_mps2": 3.8503271819267675}, {"id": 249, "s_m": 24.876494245143835, "d_m": 0.0, "x_m": -3.7883865407400292, "y_m": 7.873529032441691, "d_right": 1.434436431841277, "d_left": 0.9755763937863193, "psi_rad": -1.8975434880039073, "kappa_radpm": 1.5558905664605196e-05, "vx_mps": 9.528601108688902, "ax_mps2": 3.8264133454664386}, {"id": 250, "s_m": 24.976399844521925, "d_m": 0.0, "x_m": -3.8204622841253704, "y_m": 7.778880851398151, "d_right": 1.4235187352677803, "d_left": 0.9599371255891995, "psi_rad": -1.897544331709934, "kappa_radpm": -3.2490487953093474e-05, "vx_mps": 9.568636231250599, "ax_mps2": 3.8027357428857713}, {"id": 251, "s_m": 25.07630544390001, "d_m": 0.0, "x_m": -3.8525192372246617, "y_m": 7.684289124372996, "d_right": 1.4068272423212158, "d_left": 0.9545597614012427, "psi_rad": -1.8975498788305885, "kappa_radpm": -7.02389331095051e-05, "vx_mps": 9.608258349635516, "ax_mps2": 3.77929019825115}, {"id": 252, "s_m": 25.1762110432781, "d_m": 0.0, "x_m": -3.8845922955508003, "y_m": 7.58965192362257, "d_right": 1.3899050682011524, "d_left": 0.9596096164035982, "psi_rad": -1.8975567227024692, "kappa_radpm": -6.67346345230619e-05, "vx_mps": 9.647474955567423, "ax_mps2": 3.756072654641128}, {"id": 253, "s_m": 25.276116642656188, "d_m": 0.0, "x_m": -3.9166535207384134, "y_m": 7.495051713247833, "d_right": 1.3754373392954273, "d_left": 0.9749218077403667, "psi_rad": -1.8975632094355221, "kappa_radpm": -6.301037287339588e-05, "vx_mps": 9.68629332603756, "ax_mps2": 3.7330791694121985}, {"id": 254, "s_m": 25.376022242034274, "d_m": 0.0, "x_m": -3.9487249032676335, "y_m": 7.4004234904257515, "d_right": 1.3615634489186472, "d_left": 0.9851410750589213, "psi_rad": -1.89756929228973, "kappa_radpm": -5.8742838259580545e-05, "vx_mps": 9.724720531816414, "ax_mps2": 3.7103059097044135}, {"id": 255, "s_m": 25.475927841412364, "d_m": 0.0, "x_m": -3.9807894587217034, "y_m": 7.30581723477608, "d_right": 1.345502669004391, "d_left": 1.0013830855253112, "psi_rad": -1.8975748650914834, "kappa_radpm": -4.9486570201587424e-05, "vx_mps": 9.762763445536407, "ax_mps2": 3.6877491481740896}, {"id": 256, "s_m": 25.57583344079045, "d_m": 0.0, "x_m": -4.0128597408588345, "y_m": 7.211195596906666, "d_right": 1.336732312786183, "d_left": 1.020246013054405, "psi_rad": -1.8975788313857747, "kappa_radpm": -2.9902458403438224e-05, "vx_mps": 9.800428749371664, "ax_mps2": 3.665405258936923}, {"id": 257, "s_m": 25.675739040168537, "d_m": 0.0, "x_m": -4.044926502565922, "y_m": 7.116585271580699, "d_right": 1.3163817942964342, "d_left": 1.0461225707744053, "psi_rad": -1.8975807420638136, "kappa_radpm": -5.311836323389765e-06, "vx_mps": 9.837722942339147, "ax_mps2": 3.64327071371006}, {"id": 258, "s_m": 25.775644639546627, "d_m": 0.0, "x_m": -4.076995877372966, "y_m": 7.0219673864941115, "d_right": 1.3012357626769955, "d_left": 1.0782936582881701, "psi_rad": -1.8975796535870213, "kappa_radpm": 2.710407889386688e-05, "vx_mps": 9.874652347243709, "ax_mps2": 3.1963150340271973}, {"id": 259, "s_m": 25.875550238924713, "d_m": 0.0, "x_m": -4.1090630389199125, "y_m": 6.927355181697462, "d_right": 1.2930353841872497, "d_left": 1.110481934984855, "psi_rad": -1.8975751761924426, "kappa_radpm": 6.61680551317137e-05, "vx_mps": 9.906937898133663, "ax_mps2": -12.359044249526805}, {"id": 260, "s_m": 25.9754558383028, "d_m": 0.0, "x_m": -4.141131237512552, "y_m": 6.832737847545896, "d_right": 1.2712884778763693, "d_left": 1.122054013189126, "psi_rad": -1.897566215711766, "kappa_radpm": 0.00011319941028085332, "vx_mps": 9.781510265316829, "ax_mps2": -12.344647026361223}, {"id": 261, "s_m": 26.07536143768089, "d_m": 0.0, "x_m": -4.17319644647542, "y_m": 6.738125803692299, "d_right": 1.2571293804723107, "d_left": 1.1157727434451374, "psi_rad": -1.8975523496253777, "kappa_radpm": 0.00016835345119576764, "vx_mps": 9.654602236754208, "ax_mps2": -12.329854438300572}, {"id": 262, "s_m": 26.175267037058976, "d_m": 0.0, "x_m": -4.205262662695664, "y_m": 6.643505544115348, "d_right": 1.2472931782133672, "d_left": 1.0989350672936613, "psi_rad": -1.8975323995782265, "kappa_radpm": 0.0002309811401634018, "vx_mps": 9.526158793245754, "ax_mps2": -12.314622026828378}, {"id": 263, "s_m": 26.275172636437066, "d_m": 0.0, "x_m": -4.237322956228018, "y_m": 6.548895564575143, "d_right": 1.2263074513569001, "d_left": 1.084665438485823, "psi_rad": -1.8975059514227475, "kappa_radpm": 0.0003022089572495206, "vx_mps": 9.39612164484494, "ax_mps2": -12.299235180480123}, {"id": 264, "s_m": 26.375078235815153, "d_m": 0.0, "x_m": -4.269385781891875, "y_m": 6.454268709003227, "d_right": 1.2132110607768578, "d_left": 1.0638432306327095, "psi_rad": -1.897471895036042, "kappa_radpm": 0.0003794451736379947, "vx_mps": 9.264425348586265, "ax_mps2": -12.283086778955994}, {"id": 265, "s_m": 26.47498383519324, "d_m": 0.0, "x_m": -4.301437620098002, "y_m": 6.359662452556944, "d_right": 1.201627864338323, "d_left": 1.0507038674611824, "psi_rad": -1.897429696453746, "kappa_radpm": 0.00047050053548898616, "vx_mps": 9.131006447582788, "ax_mps2": -12.266805598007604}, {"id": 266, "s_m": 26.57488943457133, "d_m": 0.0, "x_m": -4.333494984309538, "y_m": 6.265025244451932, "d_right": 1.1814619749203965, "d_left": 1.0469675144532617, "psi_rad": -1.8973777640934095, "kappa_radpm": 0.0005688526338597, "vx_mps": 8.995789771573785, "ax_mps2": -12.251065395299932}, {"id": 267, "s_m": 26.674795033949415, "d_m": 0.0, "x_m": -4.365534170501871, "y_m": 6.170424010647282, "d_right": 1.169522761981969, "d_left": 1.041988808735292, "psi_rad": -1.8973160632058832, "kappa_radpm": 0.0006665830483655035, "vx_mps": 8.85868689771099, "ax_mps2": -12.235874967478756}, {"id": 268, "s_m": 26.7747006333275, "d_m": 0.0, "x_m": -4.3975832858422566, "y_m": 6.075772715451315, "d_right": 1.1560548960721189, "d_left": 1.0308200239339478, "psi_rad": -1.897244600450863, "kappa_radpm": 0.000763499424609666, "vx_mps": 8.719602554393967, "ax_mps2": -12.216506239169133}, {"id": 269, "s_m": 26.87460623270559, "d_m": 0.0, "x_m": -4.429605316173376, "y_m": 5.981177472068112, "d_right": 1.1367985735982524, "d_left": 1.0242856260525963, "psi_rad": -1.8971611205461398, "kappa_radpm": 0.0009237912127801014, "vx_mps": 8.578489024900193, "ax_mps2": -12.196573159354164}, {"id": 270, "s_m": 26.974511832083678, "d_m": 0.0, "x_m": -4.46164257408163, "y_m": 5.886508475554002, "d_right": 1.1261067897668928, "d_left": 1.0169932666301025, "psi_rad": -1.897059813328629, "kappa_radpm": 0.0011031681388473744, "vx_mps": 8.43525115492391, "ax_mps2": -12.190151544714736}, {"id": 271, "s_m": 27.074417431461764, "d_m": 0.0, "x_m": -4.493641405457027, "y_m": 5.791919318849054, "d_right": 1.1106324593416008, "d_left": 0.9987810416222195, "psi_rad": -1.896948115780888, "kappa_radpm": 0.0010986934952336889, "vx_mps": 8.289615989506165, "ax_mps2": -12.186623227370166}, {"id": 272, "s_m": 27.174323030839854, "d_m": 0.0, "x_m": -4.525662750273223, "y_m": 5.697229382233328, "d_right": 1.0923456629958255, "d_left": 0.9903359064466013, "psi_rad": -1.8968407123227982, "kappa_radpm": 0.0010502686061318084, "vx_mps": 8.141419376105468, "ax_mps2": -12.13277069456554}, {"id": 273, "s_m": 27.27422863021794, "d_m": 0.0, "x_m": -4.557635661339121, "y_m": 5.602647013791054, "d_right": 1.0813379607064677, "d_left": 0.9886569354778562, "psi_rad": -1.8967048768900838, "kappa_radpm": 0.0017866921525979556, "vx_mps": 7.991147977663199, "ax_mps2": -12.074591747557442}, {"id": 274, "s_m": 27.37413422959603, "d_m": 0.0, "x_m": -4.589634338665636, "y_m": 5.5079326973719756, "d_right": 1.064957799478964, "d_left": 0.956357359553639, "psi_rad": -1.8964829143506403, "kappa_radpm": 0.002651889211093011, "vx_mps": 7.838737611971695, "ax_mps2": -12.074620820641897}, {"id": 275, "s_m": 27.474039828974117, "d_m": 0.0, "x_m": -4.621563781638636, "y_m": 5.4133527886559225, "d_right": 1.0387538263629774, "d_left": 0.8844970084997507, "psi_rad": -1.896305912018505, "kappa_radpm": 0.000571406626179805, "vx_mps": 7.683304164787504, "ax_mps2": -12.114032464117631}, {"id": 276, "s_m": 27.573945428352204, "d_m": 0.0, "x_m": -4.653540934583037, "y_m": 5.318613696593999, "d_right": 1.0216571040360918, "d_left": 0.8176372561971073, "psi_rad": -1.8963701791646494, "kappa_radpm": -0.001851574966177664, "vx_mps": 7.524137395091511, "ax_mps2": -11.830319103207435}, {"id": 277, "s_m": 27.673851027730294, "d_m": 0.0, "x_m": -4.685462981971524, "y_m": 5.224046042437908, "d_right": 1.0141780834257457, "d_left": 0.7418110823345374, "psi_rad": -1.896158041214771, "kappa_radpm": 0.006993659746010293, "vx_mps": 7.365379372342911, "ax_mps2": -11.332051847725412}, {"id": 278, "s_m": 27.77375662710838, "d_m": 0.0, "x_m": -4.717380956397808, "y_m": 5.129272103243789, "d_right": 1.0043413831485066, "d_left": 0.6720999123521626, "psi_rad": -1.8949714016448018, "kappa_radpm": 0.016714809132027626, "vx_mps": 7.210030681937029, "ax_mps2": -11.33186804845733}, {"id": 279, "s_m": 27.873662226486466, "d_m": 0.0, "x_m": -4.749129610114859, "y_m": 5.034674126798395, "d_right": 0.9982672747749136, "d_left": 0.6109014503678837, "psi_rad": -1.8948081204811036, "kappa_radpm": -0.015863776295480102, "vx_mps": 7.051262886573178, "ax_mps2": -9.767757951705278}, {"id": 280, "s_m": 27.973567825864556, "d_m": 0.0, "x_m": -4.781105981044023, "y_m": 4.939895272878624, "d_right": 0.9756178053621413, "d_left": 0.5609255776962534, "psi_rad": -1.8981375970740988, "kappa_radpm": -0.050596153774061466, "vx_mps": 6.911483261216356, "ax_mps2": -9.106987493837709}, {"id": 281, "s_m": 28.073473425242643, "d_m": 0.0, "x_m": -4.813274622093055, "y_m": 4.845405818652645, "d_right": 0.9549897838640833, "d_left": 0.5180239083152086, "psi_rad": -1.8976713734238198, "kappa_radpm": 0.06682731989804372, "vx_mps": 6.778563474798527, "ax_mps2": -3.5459075713412376}, {"id": 282, "s_m": 28.17337902462073, "d_m": 0.0, "x_m": -4.844870501536583, "y_m": 4.750527948520126, "d_right": 0.9408991852714912, "d_left": 0.4811278489936484, "psi_rad": -1.8847867806120533, "kappa_radpm": 0.1907362058401425, "vx_mps": 6.726099221641352, "ax_mps2": -3.48694318744939}, {"id": 283, "s_m": 28.27328462399882, "d_m": 0.0, "x_m": -4.874820861409684, "y_m": 4.655314135063387, "d_right": 0.9329869247485638, "d_left": 0.4613947404155069, "psi_rad": -1.866951250591132, "kappa_radpm": 0.1595306668788137, "vx_mps": 6.674105216512955, "ax_mps2": -5.007079308726677}, {"id": 284, "s_m": 28.373190223376906, "d_m": 0.0, "x_m": -4.90330129415331, "y_m": 4.559463185125747, "d_right": 0.9232378062728238, "d_left": 0.42080978154495524, "psi_rad": -1.852933723704341, "kappa_radpm": 0.12087312593295377, "vx_mps": 6.598727901811192, "ax_mps2": -6.890592453114039}, {"id": 285, "s_m": 28.473095822754996, "d_m": 0.0, "x_m": -4.930579504841961, "y_m": 4.463270391072987, "d_right": 0.9193092024229453, "d_left": 0.4000145288651773, "psi_rad": -1.8414622874435658, "kappa_radpm": 0.11029491033988698, "vx_mps": 6.4935654600492425, "ax_mps2": -7.502303292675027}, {"id": 286, "s_m": 28.573001422133082, "d_m": 0.0, "x_m": -4.95675940317074, "y_m": 4.366911756216084, "d_right": 0.9027116016493549, "d_left": 0.37066731009300413, "psi_rad": -1.8308296534498965, "kappa_radpm": 0.10293876225252203, "vx_mps": 6.377095590439487, "ax_mps2": -6.326398334789059}, {"id": 287, "s_m": 28.67290702151117, "d_m": 0.0, "x_m": -4.981994318082603, "y_m": 4.269800098040994, "d_right": 0.8956795878749038, "d_left": 0.3418826926722393, "psi_rad": -1.8184316865919197, "kappa_radpm": 0.14785395066189422, "vx_mps": 6.277201839555543, "ax_mps2": -4.432848263785957}, {"id": 288, "s_m": 28.77281262088926, "d_m": 0.0, "x_m": -5.0055921323541055, "y_m": 4.173133326731162, "d_right": 0.8931825201278318, "d_left": 0.3218972245274477, "psi_rad": -1.801155861957887, "kappa_radpm": 0.20032577447962227, "vx_mps": 6.206249286729318, "ax_mps2": -4.411541971491278}, {"id": 289, "s_m": 28.872718220267345, "d_m": 0.0, "x_m": -5.027529304893369, "y_m": 4.075092123569231, "d_right": 0.8756746153576713, "d_left": 0.3302543622004847, "psi_rad": -1.7806454664084654, "kappa_radpm": 0.20549318421447504, "vx_mps": 6.134823120460877, "ax_mps2": -4.408079077582206}, {"id": 290, "s_m": 28.97262381964543, "d_m": 0.0, "x_m": -5.047219069976314, "y_m": 3.9777611822949157, "d_right": 0.8672753636818652, "d_left": 0.34825677261874016, "psi_rad": -1.76011078795654, "kappa_radpm": 0.20808051907428785, "vx_mps": 6.062612568409565, "ax_mps2": -4.488601602256917}, {"id": 291, "s_m": 29.07252941902352, "d_m": 0.0, "x_m": -5.065106968694061, "y_m": 3.878803170164935, "d_right": 0.8723891166528519, "d_left": 0.36613600717887207, "psi_rad": -1.7391188358642786, "kappa_radpm": 0.20962710778427232, "vx_mps": 5.98818823082172, "ax_mps2": -4.526474483124791}, {"id": 292, "s_m": 29.172435018401607, "d_m": 0.0, "x_m": -5.080735463917009, "y_m": 3.780623810999988, "d_right": 0.8837977880141757, "d_left": 0.3766113294643731, "psi_rad": -1.7181153568431249, "kappa_radpm": 0.21767639811557896, "vx_mps": 5.912187242902526, "ax_mps2": -2.8689007866851277}, {"id": 293, "s_m": 29.272340617779694, "d_m": 0.0, "x_m": -5.09431263286324, "y_m": 3.6810703767064945, "d_right": 0.8946982284254692, "d_left": 0.35418696681030504, "psi_rad": -1.6936995656157743, "kappa_radpm": 0.26945362010799717, "vx_mps": 5.86350743922435, "ax_mps2": -2.8509356130638874}, {"id": 294, "s_m": 29.372246217157784, "d_m": 0.0, "x_m": -5.105109498948584, "y_m": 3.5820693356008686, "d_right": 0.8940059239993472, "d_left": 0.35670774228932317, "psi_rad": -1.6649036017133705, "kappa_radpm": 0.26444703564357924, "vx_mps": 5.814728766453024, "ax_mps2": -2.857785298961613}, {"id": 295, "s_m": 29.47215181653587, "d_m": 0.0, "x_m": -5.113483836413556, "y_m": 3.482289890203957, "d_right": 0.8856363516171403, "d_left": 0.3650620848686431, "psi_rad": -1.6471096641547103, "kappa_radpm": 0.08725515106518772, "vx_mps": 5.765418729029403, "ax_mps2": -9.18640011361949}, {"id": 296, "s_m": 29.57205741591396, "d_m": 0.0, "x_m": -5.120933256812345, "y_m": 3.38266846222075, "d_right": 0.878194564304275, "d_left": 0.3724853087357379, "psi_rad": -1.6449690714980694, "kappa_radpm": 0.013700260750256958, "vx_mps": 5.603972475136437, "ax_mps2": -10.433589511379122}, {"id": 297, "s_m": 29.671963015292047, "d_m": 0.0, "x_m": -5.128173386699749, "y_m": 3.2833765329674134, "d_right": 0.8747697803620131, "d_left": 0.3796838688342439, "psi_rad": -1.6414778056208847, "kappa_radpm": 0.0572909126247743, "vx_mps": 5.414772338195606, "ax_mps2": -9.962770301227282}, {"id": 298, "s_m": 29.771868614670133, "d_m": 0.0, "x_m": -5.134913760018205, "y_m": 3.1833889242173057, "d_right": 0.8832661066244579, "d_left": 0.38642002746564075, "psi_rad": -1.6344339366869391, "kappa_radpm": 0.07841020910140338, "vx_mps": 5.227722869248875, "ax_mps2": -9.958842209021903}, {"id": 299, "s_m": 29.871774214048223, "d_m": 0.0, "x_m": -5.140823744316332, "y_m": 3.0841711337869735, "d_right": 0.9034217905510634, "d_left": 0.39228954168398483, "psi_rad": -1.6260326711494368, "kappa_radpm": 0.07401151826398156, "vx_mps": 5.033805538323802, "ax_mps2": -10.210023831877782}, {"id": 300, "s_m": 29.97167981342631, "d_m": 0.0, "x_m": -5.146162480047755, "y_m": 2.9843752475332233, "d_right": 0.9345354965482512, "d_left": 0.3976173703526009, "psi_rad": -1.6243921039169038, "kappa_radpm": -0.04228893804339657, "vx_mps": 4.826916313391272, "ax_mps2": -11.094957602029318}, {"id": 301, "s_m": 30.071585412804396, "d_m": 0.0, "x_m": -5.151802364204349, "y_m": 2.8849104786827375, "d_right": 0.9551507705493354, "d_left": 0.4032313040997306, "psi_rad": -1.628864291854776, "kappa_radpm": 0.04679500315608413, "vx_mps": 4.591538338930907, "ax_mps2": -6.0338221149911}, {"id": 302, "s_m": 30.171491012182486, "d_m": 0.0, "x_m": -5.156940381583641, "y_m": 2.7850269328381954, "d_right": 0.9680834752997539, "d_left": 0.4083634069975215, "psi_rad": -1.6112277693642651, "kappa_radpm": 0.3040267335547225, "vx_mps": 4.458317966228348, "ax_mps2": -5.392443266740552}, {"id": 303, "s_m": 30.271396611560572, "d_m": 0.0, "x_m": -5.159320548442635, "y_m": 2.685747000033941, "d_right": 0.9905975266342594, "d_left": 0.4107142894026987, "psi_rad": -1.5776447221114447, "kappa_radpm": 0.35534790933367144, "vx_mps": 4.335796182322503, "ax_mps2": -5.391406189503258}, {"id": 304, "s_m": 30.37130221093866, "d_m": 0.0, "x_m": -5.15819835132115, "y_m": 2.5859260214054216, "d_right": 0.9917119180686422, "d_left": 0.4095897067597039, "psi_rad": -1.5411503119421108, "kappa_radpm": 0.3759387991029148, "vx_mps": 4.209734576067272, "ax_mps2": -5.391439624192446}, {"id": 305, "s_m": 30.47120781031675, "d_m": 0.0, "x_m": -5.153355863072338, "y_m": 2.4864885461324984, "d_right": 0.996526804623974, "d_left": 0.40473196298900554, "psi_rad": -1.502905798711586, "kappa_radpm": 0.38899879505448404, "vx_mps": 4.079778815892454, "ax_mps2": -5.55015414685766}, {"id": 306, "s_m": 30.571113409694835, "d_m": 0.0, "x_m": -5.1446743483357045, "y_m": 2.387245320554832, "d_right": 1.0142458411114708, "d_left": 0.3960306148382345, "psi_rad": -1.464238947368571, "kappa_radpm": 0.3860216342246913, "vx_mps": 3.941524100299231, "ax_mps2": -6.023807899868189}, {"id": 307, "s_m": 30.671019009072925, "d_m": 0.0, "x_m": -5.132058455326551, "y_m": 2.2875799447210228, "d_right": 1.0451615886501402, "d_left": 0.38341583465150625, "psi_rad": -1.4255436922963574, "kappa_radpm": 0.3850585832134569, "vx_mps": 3.7857612121857414, "ax_mps2": -5.042268480897804}, {"id": 308, "s_m": 30.77092460845101, "d_m": 0.0, "x_m": -5.115576776316193, "y_m": 2.189036052524277, "d_right": 1.0878542624422345, "d_left": 0.3668923500002612, "psi_rad": -1.3819795994611672, "kappa_radpm": 0.5260421772686273, "vx_mps": 3.650272078362296, "ax_mps2": -2.7109969425978724}, {"id": 309, "s_m": 30.870830207829098, "d_m": 0.0, "x_m": -5.093805553005832, "y_m": 2.091025117211461, "d_right": 1.1350327010385364, "d_left": 0.3627855991648313, "psi_rad": -1.3190312350648803, "kappa_radpm": 0.7305457468189333, "vx_mps": 3.5753040006615655, "ax_mps2": -2.6502520347306175}, {"id": 310, "s_m": 30.970735807207188, "d_m": 0.0, "x_m": -5.065258291398272, "y_m": 1.9952439127563462, "d_right": 1.1878262373089812, "d_left": 0.370480532846559, "psi_rad": -1.2436387727515492, "kappa_radpm": 0.7327656822645694, "vx_mps": 3.500464063675139, "ax_mps2": -2.901519528286986}, {"id": 311, "s_m": 31.070641406585274, "d_m": 0.0, "x_m": -5.029751286919738, "y_m": 1.9017542600930086, "d_right": 1.248477190277328, "d_left": 0.3560425894922387, "psi_rad": -1.1728128271560845, "kappa_radpm": 0.6850006631529758, "vx_mps": 3.4166493185458173, "ax_mps2": -3.8642501039677133}, {"id": 312, "s_m": 31.17054700596336, "d_m": 0.0, "x_m": -4.987754809717897, "y_m": 1.8108423618834868, "d_right": 1.3113719840130142, "d_left": 0.3624023908226325, "psi_rad": -1.102015752987655, "kappa_radpm": 0.7501709590595669, "vx_mps": 3.301722598940157, "ax_mps2": -3.206245019651382}, {"id": 313, "s_m": 31.27045260534145, "d_m": 0.0, "x_m": -4.939235677309958, "y_m": 1.72368164805624, "d_right": 1.3455971877940518, "d_left": 0.34292507249325255, "psi_rad": -1.021847077811342, "kappa_radpm": 0.8608961124429755, "vx_mps": 3.203237184391685, "ax_mps2": -2.8925417019598383}, {"id": 314, "s_m": 31.370358204719537, "d_m": 0.0, "x_m": -4.883458487772746, "y_m": 1.640622279583284, "d_right": 1.2618594270550356, "d_left": 0.31103767681063094, "psi_rad": -0.9391700810135761, "kappa_radpm": 0.7552577796729295, "vx_mps": 3.1117143561947898, "ax_mps2": -4.367389795359519}, {"id": 315, "s_m": 31.470263804097623, "d_m": 0.0, "x_m": -4.8218199188763915, "y_m": 1.562294335974549, "d_right": 1.185734238005709, "d_left": 0.2936601392927692, "psi_rad": -0.8715600606280725, "kappa_radpm": 0.6002702902134402, "vx_mps": 2.968183424942349, "ax_mps2": -4.3818112549527}, {"id": 316, "s_m": 31.570169403475713, "d_m": 0.0, "x_m": -4.75448005581323, "y_m": 1.4876151338395325, "d_right": 1.1124424456797655, "d_left": 0.2805144885264237, "psi_rad": -0.7957902503970891, "kappa_radpm": 0.9639911042874509, "vx_mps": 2.81683827802149, "ax_mps2": -0.7209079377664791}, {"id": 317, "s_m": 31.6700750028538, "d_m": 0.0, "x_m": -4.68128275585765, "y_m": 1.420746927365218, "d_right": 1.0510866021652547, "d_left": 0.2760459608666047, "psi_rad": -0.6766194541874055, "kappa_radpm": 1.4516606016196705, "vx_mps": 2.7911525227563456, "ax_mps2": -0.39698126955419416}, {"id": 318, "s_m": 31.76998060223189, "d_m": 0.0, "x_m": -4.59858970311297, "y_m": 1.3635711231028214, "d_right": 1.0071784019693397, "d_left": 0.2753812902750559, "psi_rad": -0.5348268200212027, "kappa_radpm": 1.363350312563085, "vx_mps": 2.776906750673443, "ax_mps2": -1.2789438087018503}, {"id": 319, "s_m": 31.869886201609976, "d_m": 0.0, "x_m": -4.50992375674191, "y_m": 1.3187121103628752, "d_right": 0.9852426259631927, "d_left": 0.2827754520697398, "psi_rad": -0.4029488988237666, "kappa_radpm": 1.3244311535530586, "vx_mps": 2.730506144724314, "ax_mps2": -0.6996692776448648}, {"id": 320, "s_m": 31.969791800988062, "d_m": 0.0, "x_m": -4.415063666071819, "y_m": 1.2859075164648734, "d_right": 0.9865194291884096, "d_left": 0.2609235237051634, "psi_rad": -0.259188241335919, "kappa_radpm": 1.5485000326624792, "vx_mps": 2.7047850282930344, "ax_mps2": -0.02826007079048217}, {"id": 321, "s_m": 32.06969740036615, "d_m": 0.0, "x_m": -4.317102945781185, "y_m": 1.2682804311356428, "d_right": 1.0127706816623832, "d_left": 0.260548236207851, "psi_rad": -0.09479959574249053, "kappa_radpm": 1.6415385035259522, "vx_mps": 2.7037409954832157, "ax_mps2": -0.028260070790479735}, {"id": 322, "s_m": 32.169602999744235, "d_m": 0.0, "x_m": -4.217228671534054, "y_m": 1.2666768095390264, "d_right": 1.0386316323331102, "d_left": 0.2814872939755964, "psi_rad": 0.0596007127837932, "kappa_radpm": 1.4571545407274362, "vx_mps": 2.7026965593708425, "ax_mps2": 1.32787632067102}, {"id": 323, "s_m": 32.269508599122325, "d_m": 0.0, "x_m": -4.1179394620963015, "y_m": 1.279857035463762, "d_right": 1.060228597659532, "d_left": 0.32050505674942187, "psi_rad": 0.2064030352088373, "kappa_radpm": 1.5559328871686837, "vx_mps": 2.751343899164227, "ax_mps2": -4.153153781747638}, {"id": 324, "s_m": 32.3694141985004, "d_m": 0.0, "x_m": -4.02316025848506, "y_m": 1.3078465780354591, "d_right": 1.1041225141728355, "d_left": 0.3399638171010661, "psi_rad": 0.37162104183352174, "kappa_radpm": 1.780403116502875, "vx_mps": 2.5961599749858584, "ax_mps2": -0.026055893682144293}]}, "trackbounds_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -6.048979924619198, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -6.398979929834605, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -6.348979929089547, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -6.2989799283444885, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -6.24897992759943, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -6.198979926854372, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -6.148979926109314, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -6.098979925364256, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -6.048979924619198, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -6.048979924619198, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -5.99897992387414, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -5.948979923129082, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -5.898979922384024, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -5.848979921638966, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -5.798979920893908, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -5.74897992014885, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -5.698979919403792, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -5.648979918658734, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -5.598979917913676, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -5.548979917168618, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -5.4989799164235595, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -5.4489799156785015, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -5.398979914933443, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -5.348979914188385, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -5.298979913443327, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -5.248979912698269, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -5.198979911953211, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -5.148979911208153, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -5.098979910463095, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -5.048979909718037, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -4.998979908972979, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -4.948979908227921, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -4.898979907482863, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -4.848979906737805, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -4.798979905992747, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 17.128815046697856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 17.078815045952798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 17.02881504520774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 16.97881504446268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 16.928815043717623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 16.878815042972565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 16.828815042227507, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 16.77881504148245, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 16.72881504073739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 16.678815039992333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 16.628815039247275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 16.578815038502217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 16.52881503775716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 16.4788150370121, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 16.428815036267043, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": 2.651020205020904, "y": 16.378815035521985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": 2.7010202057659622, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": 2.7510202065110203, "y": 16.328815034776927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": 2.8010202072560784, "y": 16.27881503403187, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": 2.8510202080011364, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": 2.9010202087461945, "y": 16.22881503328681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": 2.9510202094912525, "y": 16.178815032541753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": 3.0010202102363106, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 16.128815031796695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 16.078815031051636, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 16.02881503030658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 15.97881502956152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 15.928815028816462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.878815028071404, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.828815027326346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.778815026581288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.72881502583623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.678815025091172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.628815024346114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.578815023601056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.528815022855998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.47881502211094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.428815021365882, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.378815020620824, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.328815019875766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.278815019130707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.22881501838565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": 3.351020215451717, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": 3.301020214706659, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": 3.251020213961601, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": 3.201020213216543, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": 3.151020212471485, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": 3.1010202117264267, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": 3.0510202109813687, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": 3.0010202102363106, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": 2.9510202094912525, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": 2.9010202087461945, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": 2.8510202080011364, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": 2.8010202072560784, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": 2.7510202065110203, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": 2.7010202057659622, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": 2.651020205020904, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": 2.601020204275846, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": 2.551020203530788, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": 2.50102020278573, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": 2.451020202040672, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": 2.401020201295614, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": 2.351020200550556, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": 2.3010201998054978, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 2.2510201990604397, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 2.2010201983153816, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 2.1510201975703236, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 2.1010201968252655, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 2.0510201960802075, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 2.0010201953351494, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 1.9510201945900914, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 1.9010201938450333, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 1.8510201930999752, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 1.8010201923549172, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 1.7510201916098591, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 1.701020190864801, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 1.651020190119743, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 1.601020189374685, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 1.5510201886296269, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 1.5010201878845688, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 1.4510201871395108, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 1.4010201863944527, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 1.3510201856493946, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 1.3010201849043366, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 1.2510201841592785, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 1.2010201834142205, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 1.1510201826691624, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 1.1010201819241043, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": 1.0510201811790463, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": 1.0010201804339882, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": 0.9510201796889302, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": 0.9010201789438721, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": 0.851020178198814, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": 0.801020177453756, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": 0.7510201767086979, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": 0.7010201759636399, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": 0.6510201752185818, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": 0.6010201744735237, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": 0.5510201737284657, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": 0.5010201729834076, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 864, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 865, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 866, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 867, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 868, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 869, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 870, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 871, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 872, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 873, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 874, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 875, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 876, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 877, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 878, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 879, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 880, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 881, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 882, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 883, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 884, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 885, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 886, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 887, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 888, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 889, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 890, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 891, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 892, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 893, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 894, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 895, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 896, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 897, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 898, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 899, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 900, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 1.4788148134946821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 901, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 1.428814812749624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 902, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 1.378814812004566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 903, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 1.328814811259508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 904, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 1.27881481051445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 905, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 1.2288148097693918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 906, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 1.1788148090243338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 907, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 1.1288148082792757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 908, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 1.0788148075342177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 909, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 1.0288148067891596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 910, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 0.9788148060441015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 911, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 0.9288148052990435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 912, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 0.8788148045539854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 913, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 0.8288148038089274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 914, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 0.7788148030638693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 915, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 0.7288148023188112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 916, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 0.6788148015737532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 917, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 0.6288148008286951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 918, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 0.5788148000836371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 919, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 0.528814799338579, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 920, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 0.47881479859352094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 921, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 0.4288147978484629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 922, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 0.3788147971034048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 923, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 0.32881479635834676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 924, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 0.2788147956132887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 925, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 0.22881479486823064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 926, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 0.17881479412317258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 927, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 928, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 929, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 930, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 931, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 932, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 933, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 934, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 935, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 936, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 937, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 938, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 939, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 940, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 941, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 942, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 943, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 0.12881479337811452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 944, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 945, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 946, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 1.5288148142397402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 947, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 948, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 949, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 950, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 951, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 952, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 953, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 954, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 955, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 956, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 957, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 958, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 959, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 960, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 961, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 962, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 963, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 964, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 965, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 966, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 967, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 968, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 969, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 970, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 971, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 972, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 973, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 974, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 975, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 976, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 977, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 978, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 979, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 980, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 981, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 982, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 983, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 984, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 985, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 986, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 987, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 988, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 989, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 990, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 991, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 992, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 993, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 994, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 995, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 996, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 997, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 998, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 999, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1000, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1001, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1002, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1003, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1004, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1005, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1006, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1007, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1008, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1009, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1010, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1011, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1012, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1013, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1014, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1015, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1016, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1017, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1018, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1019, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1020, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1021, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1022, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1023, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1024, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1025, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1026, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1027, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1028, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1029, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1030, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1031, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1032, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1033, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1034, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1035, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1036, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1037, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1038, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1039, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1040, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1041, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1042, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1043, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1044, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1045, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1046, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1047, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1048, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1049, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1050, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1051, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1052, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1053, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1054, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1055, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1056, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1057, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1058, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1059, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1060, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1061, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1062, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1063, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1064, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1065, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1066, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1067, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1068, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1069, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1070, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1071, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1072, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1073, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1074, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1075, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1076, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1077, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1078, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1079, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1080, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1081, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1082, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1083, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1084, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1085, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1086, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1087, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1088, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1089, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1090, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1091, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1092, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1093, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1094, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1095, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1096, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1097, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1098, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1099, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1100, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1101, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1102, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1103, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1104, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1105, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1106, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1107, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1108, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1109, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1110, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1111, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1112, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1113, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1114, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1115, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1116, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1117, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1118, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1119, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1120, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1121, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1122, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1123, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1124, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1125, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1126, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1127, "type": 2, "action": 0, "pose": {"position": {"x": 0.45102017223834956, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1128, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1129, "type": 2, "action": 0, "pose": {"position": {"x": 0.4010201714932915, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1130, "type": 2, "action": 0, "pose": {"position": {"x": 0.35102017074823344, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1131, "type": 2, "action": 0, "pose": {"position": {"x": 0.3010201700031754, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1132, "type": 2, "action": 0, "pose": {"position": {"x": 0.2510201692581173, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1133, "type": 2, "action": 0, "pose": {"position": {"x": 0.20102016851305926, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1134, "type": 2, "action": 0, "pose": {"position": {"x": 0.1510201677680012, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1135, "type": 2, "action": 0, "pose": {"position": {"x": 0.10102016702294314, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1136, "type": 2, "action": 0, "pose": {"position": {"x": 0.05102016627788508, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1137, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1138, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1139, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1140, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1141, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1142, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1143, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1144, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1145, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1146, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1147, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1148, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1149, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1150, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1151, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1152, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1153, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1154, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1155, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1156, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1157, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1158, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1159, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1160, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1161, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1162, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1163, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1164, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1165, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1166, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1167, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1168, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1169, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1170, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1171, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1172, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1173, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1174, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1175, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1176, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1177, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1178, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1179, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1180, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1181, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1182, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1183, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1184, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1185, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1186, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1187, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1188, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1189, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1190, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1191, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1192, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1193, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1194, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1195, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1196, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1197, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1198, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1199, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1200, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1201, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1202, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1203, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1204, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1205, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1206, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1207, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1208, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1209, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1210, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1211, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1212, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1213, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1214, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1215, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1216, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1217, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1218, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1219, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1220, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1221, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1222, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1223, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1224, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1225, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1226, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1227, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1228, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1229, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1230, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1231, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1232, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1233, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1234, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1235, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1236, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1237, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1238, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1239, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1240, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1241, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1242, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1243, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1244, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1245, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1246, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1247, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1248, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1249, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1250, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1251, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1252, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1253, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1254, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1255, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1256, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1257, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1258, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1259, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1260, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1261, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1262, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1263, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1264, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1265, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1266, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1267, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1268, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1269, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1270, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1271, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1272, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1273, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1274, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1275, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1276, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1277, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1278, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1279, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1280, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1281, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1282, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1283, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1284, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1285, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1286, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1287, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1288, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1289, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1290, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1291, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1292, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1293, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1294, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1295, "type": 2, "action": 0, "pose": {"position": {"x": 0.001020165532827022, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1296, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1297, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1298, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1299, "type": 2, "action": 0, "pose": {"position": {"x": -0.04897983521223104, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1300, "type": 2, "action": 0, "pose": {"position": {"x": -0.0989798359572891, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1301, "type": 2, "action": 0, "pose": {"position": {"x": -0.14897983670234716, "y": 15.178815017640591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1302, "type": 2, "action": 0, "pose": {"position": {"x": -0.19897983744740522, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1303, "type": 2, "action": 0, "pose": {"position": {"x": -0.24897983819246328, "y": 15.128815016895533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1304, "type": 2, "action": 0, "pose": {"position": {"x": -0.29897983893752134, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1305, "type": 2, "action": 0, "pose": {"position": {"x": -0.3489798396825794, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1306, "type": 2, "action": 0, "pose": {"position": {"x": -0.39897984042763746, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1307, "type": 2, "action": 0, "pose": {"position": {"x": -0.4489798411726955, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1308, "type": 2, "action": 0, "pose": {"position": {"x": -0.4989798419177536, "y": 15.078815016150475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1309, "type": 2, "action": 0, "pose": {"position": {"x": -0.5489798426628116, "y": 15.028815015405417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1310, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 14.97881501466036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1311, "type": 2, "action": 0, "pose": {"position": {"x": -0.5989798434078697, "y": 14.928815013915301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1312, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 14.878815013170243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1313, "type": 2, "action": 0, "pose": {"position": {"x": -0.6489798441529278, "y": 14.828815012425185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1314, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 14.778815011680127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1315, "type": 2, "action": 0, "pose": {"position": {"x": -0.6989798448979858, "y": 14.728815010935069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1316, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 14.67881501019001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1317, "type": 2, "action": 0, "pose": {"position": {"x": -0.7489798456430439, "y": 14.628815009444953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1318, "type": 2, "action": 0, "pose": {"position": {"x": -0.7989798463881019, "y": 14.578815008699895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1319, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 14.528815007954837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1320, "type": 2, "action": 0, "pose": {"position": {"x": -0.84897984713316, "y": 14.478815007209779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1321, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 14.42881500646472, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1322, "type": 2, "action": 0, "pose": {"position": {"x": -0.898979847878218, "y": 14.378815005719662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1323, "type": 2, "action": 0, "pose": {"position": {"x": -0.9489798486232761, "y": 14.328815004974604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1324, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 14.278815004229546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1325, "type": 2, "action": 0, "pose": {"position": {"x": -0.9989798493683342, "y": 14.228815003484488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1326, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 14.17881500273943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1327, "type": 2, "action": 0, "pose": {"position": {"x": -1.0489798501133922, "y": 14.128815001994372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1328, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 14.078815001249314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1329, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 14.028815000504256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1330, "type": 2, "action": 0, "pose": {"position": {"x": -1.0989798508584503, "y": 13.978814999759198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1331, "type": 2, "action": 0, "pose": {"position": {"x": -1.1489798516035084, "y": 13.92881499901414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1332, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 13.878814998269082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1333, "type": 2, "action": 0, "pose": {"position": {"x": -1.1989798523485664, "y": 13.828814997524024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1334, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 13.778814996778966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1335, "type": 2, "action": 0, "pose": {"position": {"x": -1.2489798530936245, "y": 13.728814996033908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1336, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 13.67881499528885, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1337, "type": 2, "action": 0, "pose": {"position": {"x": -1.2989798538386825, "y": 13.628814994543792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1338, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 13.578814993798733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1339, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 13.528814993053675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1340, "type": 2, "action": 0, "pose": {"position": {"x": -1.3489798545837406, "y": 13.478814992308617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1341, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 13.42881499156356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1342, "type": 2, "action": 0, "pose": {"position": {"x": -1.3989798553287986, "y": 13.378814990818501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1343, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 13.328814990073443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1344, "type": 2, "action": 0, "pose": {"position": {"x": -1.4489798560738567, "y": 13.278814989328385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1345, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 13.228814988583327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1346, "type": 2, "action": 0, "pose": {"position": {"x": -1.4989798568189148, "y": 13.178814987838269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1347, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 13.128814987093211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1348, "type": 2, "action": 0, "pose": {"position": {"x": -1.5489798575639728, "y": 13.078814986348153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1349, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 13.028814985603095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1350, "type": 2, "action": 0, "pose": {"position": {"x": -1.5989798583090309, "y": 12.978814984858037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1351, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 12.928814984112979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1352, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 12.87881498336792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1353, "type": 2, "action": 0, "pose": {"position": {"x": -1.648979859054089, "y": 12.828814982622863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1354, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 12.778814981877805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1355, "type": 2, "action": 0, "pose": {"position": {"x": -1.698979859799147, "y": 12.728814981132746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1356, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 12.678814980387688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1357, "type": 2, "action": 0, "pose": {"position": {"x": -1.748979860544205, "y": 12.62881497964263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1358, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 12.578814978897572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1359, "type": 2, "action": 0, "pose": {"position": {"x": -1.7989798612892631, "y": 12.528814978152514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1360, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 12.478814977407456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1361, "type": 2, "action": 0, "pose": {"position": {"x": -1.8489798620343212, "y": 12.428814976662398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1362, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 12.37881497591734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1363, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 12.328814975172282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1364, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 12.278814974427224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1365, "type": 2, "action": 0, "pose": {"position": {"x": -1.8989798627793792, "y": 12.228814973682166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1366, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 12.178814972937108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1367, "type": 2, "action": 0, "pose": {"position": {"x": -1.9489798635244373, "y": 12.12881497219205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1368, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 12.078814971446992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1369, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 12.028814970701934, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1370, "type": 2, "action": 0, "pose": {"position": {"x": -1.9989798642694954, "y": 11.978814969956876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1371, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.928814969211817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1372, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.87881496846676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1373, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.828814967721701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1374, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.778814966976643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1375, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.728814966231585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1376, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.678814965486527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1377, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.62881496474147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1378, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.578814963996411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1379, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.528814963251353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1380, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.478814962506295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1381, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.428814961761237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1382, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.378814961016179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1383, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.32881496027112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1384, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.278814959526063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1385, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.228814958781005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1386, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.178814958035947, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1387, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.128814957290889, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1388, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.07881495654583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1389, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 11.028814955800772, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1390, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.978814955055714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1391, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.928814954310656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1392, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.878814953565598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1393, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 10.82881495282054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1394, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 10.778814952075482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1395, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 10.728814951330424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1396, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.678814950585366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1397, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.628814949840308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1398, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.57881494909525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1399, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.528814948350192, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1400, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.478814947605134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1401, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.428814946860076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1402, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.378814946115018, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1403, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.32881494536996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1404, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.278814944624902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1405, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.228814943879843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1406, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.178814943134785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1407, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.128814942389727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1408, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.07881494164467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1409, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 10.028814940899611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1410, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.978814940154553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1411, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.928814939409495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1412, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.878814938664437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1413, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.828814937919379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1414, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.778814937174321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1415, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.728814936429263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1416, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.678814935684205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1417, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.628814934939147, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1418, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.578814934194089, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1419, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.52881493344903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1420, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.478814932703973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1421, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.428814931958915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1422, "type": 2, "action": 0, "pose": {"position": {"x": -2.0489798650145534, "y": 9.378814931213856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1423, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 9.328814930468798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1424, "type": 2, "action": 0, "pose": {"position": {"x": -2.0989798657596115, "y": 9.27881492972374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1425, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.228814928978682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1426, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.178814928233624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1427, "type": 2, "action": 0, "pose": {"position": {"x": -2.1489798665046695, "y": 9.128814927488566, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1428, "type": 2, "action": 0, "pose": {"position": {"x": -2.1989798672497276, "y": 9.078814926743508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1429, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 9.02881492599845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1430, "type": 2, "action": 0, "pose": {"position": {"x": -2.2489798679947857, "y": 8.978814925253392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1431, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 8.928814924508334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1432, "type": 2, "action": 0, "pose": {"position": {"x": -2.2989798687398437, "y": 8.878814923763276, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1433, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 8.828814923018218, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1434, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 8.77881492227316, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1435, "type": 2, "action": 0, "pose": {"position": {"x": -2.348979869484902, "y": 8.728814921528102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1436, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 8.678814920783044, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1437, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 8.628814920037986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1438, "type": 2, "action": 0, "pose": {"position": {"x": -2.39897987022996, "y": 8.578814919292927, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1439, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 8.52881491854787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1440, "type": 2, "action": 0, "pose": {"position": {"x": -2.448979870975018, "y": 8.478814917802811, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1441, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.428814917057753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1442, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.378814916312695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1443, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.328814915567637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1444, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.27881491482258, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1445, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.228814914077521, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1446, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.178814913332463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1447, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.128814912587405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1448, "type": 2, "action": 0, "pose": {"position": {"x": -2.498979871720076, "y": 8.078814911842347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1449, "type": 2, "action": 0, "pose": {"position": {"x": -2.548979872465134, "y": 8.028814911097289, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1450, "type": 2, "action": 0, "pose": {"position": {"x": -2.598979873210192, "y": 7.97881491035223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1451, "type": 2, "action": 0, "pose": {"position": {"x": -2.64897987395525, "y": 7.928814909607172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1452, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 7.878814908862114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1453, "type": 2, "action": 0, "pose": {"position": {"x": -2.698979874700308, "y": 7.828814908117056, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1454, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 7.778814907371998, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1455, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 7.72881490662694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1456, "type": 2, "action": 0, "pose": {"position": {"x": -2.7489798754453663, "y": 7.6788149058818815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1457, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 7.6288149051368235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1458, "type": 2, "action": 0, "pose": {"position": {"x": -2.7989798761904243, "y": 7.578814904391765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1459, "type": 2, "action": 0, "pose": {"position": {"x": -2.8489798769354824, "y": 7.528814903646707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1460, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 7.478814902901649, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1461, "type": 2, "action": 0, "pose": {"position": {"x": -2.8989798776805404, "y": 7.428814902156591, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1462, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 7.378814901411533, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1463, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 7.328814900666475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1464, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 7.278814899921417, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1465, "type": 2, "action": 0, "pose": {"position": {"x": -2.9489798784255985, "y": 7.228814899176359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1466, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 7.178814898431301, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1467, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 7.128814897686243, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1468, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 7.078814896941185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1469, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 7.028814896196127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1470, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.978814895451069, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1471, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.928814894706011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1472, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.878814893960953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1473, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.8288148932158945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1474, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.7788148924708365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1475, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.728814891725778, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1476, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.67881489098072, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1477, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.628814890235662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1478, "type": 2, "action": 0, "pose": {"position": {"x": -2.9989798791706566, "y": 6.578814889490604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1479, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 6.528814888745546, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1480, "type": 2, "action": 0, "pose": {"position": {"x": -3.0489798799157146, "y": 6.478814888000488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1481, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 6.42881488725543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1482, "type": 2, "action": 0, "pose": {"position": {"x": -3.0989798806607727, "y": 6.378814886510372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1483, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 6.328814885765314, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1484, "type": 2, "action": 0, "pose": {"position": {"x": -3.1489798814058307, "y": 6.278814885020256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1485, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 6.228814884275198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1486, "type": 2, "action": 0, "pose": {"position": {"x": -3.198979882150889, "y": 6.17881488353014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1487, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 6.128814882785082, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1488, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 6.078814882040024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1489, "type": 2, "action": 0, "pose": {"position": {"x": -3.248979882895947, "y": 6.028814881294966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1490, "type": 2, "action": 0, "pose": {"position": {"x": -3.298979883641005, "y": 5.9788148805499075, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1491, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 5.9288148798048494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1492, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 5.878814879059791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1493, "type": 2, "action": 0, "pose": {"position": {"x": -3.348979884386063, "y": 5.828814878314733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1494, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 5.778814877569675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1495, "type": 2, "action": 0, "pose": {"position": {"x": -3.398979885131121, "y": 5.728814876824617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1496, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 5.678814876079559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1497, "type": 2, "action": 0, "pose": {"position": {"x": -3.448979885876179, "y": 5.628814875334501, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1498, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 5.578814874589443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1499, "type": 2, "action": 0, "pose": {"position": {"x": -3.498979886621237, "y": 5.528814873844385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1500, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 5.478814873099327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1501, "type": 2, "action": 0, "pose": {"position": {"x": -3.548979887366295, "y": 5.428814872354269, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1502, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 5.378814871609211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1503, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 5.328814870864153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1504, "type": 2, "action": 0, "pose": {"position": {"x": -3.5989798881113533, "y": 5.278814870119095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1505, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 5.228814869374037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1506, "type": 2, "action": 0, "pose": {"position": {"x": -3.6489798888564113, "y": 5.1788148686289786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1507, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 5.1288148678839205, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1508, "type": 2, "action": 0, "pose": {"position": {"x": -3.6989798896014694, "y": 5.078814867138862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1509, "type": 2, "action": 0, "pose": {"position": {"x": -3.7489798903465275, "y": 5.028814866393804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1510, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 4.978814865648746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1511, "type": 2, "action": 0, "pose": {"position": {"x": -3.7989798910915855, "y": 4.928814864903688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1512, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 4.87881486415863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1513, "type": 2, "action": 0, "pose": {"position": {"x": -3.8489798918366436, "y": 4.828814863413572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1514, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 4.778814862668514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1515, "type": 2, "action": 0, "pose": {"position": {"x": -3.8989798925817016, "y": 4.728814861923456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1516, "type": 2, "action": 0, "pose": {"position": {"x": -3.9489798933267597, "y": 4.678814861178398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1517, "type": 2, "action": 0, "pose": {"position": {"x": -3.9989798940718178, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1518, "type": 2, "action": 0, "pose": {"position": {"x": -4.048979894816876, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1519, "type": 2, "action": 0, "pose": {"position": {"x": -4.098979895561934, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1520, "type": 2, "action": 0, "pose": {"position": {"x": -4.148979896306992, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1521, "type": 2, "action": 0, "pose": {"position": {"x": -4.19897989705205, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1522, "type": 2, "action": 0, "pose": {"position": {"x": -4.248979897797108, "y": 4.62881486043334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1523, "type": 2, "action": 0, "pose": {"position": {"x": -4.298979898542166, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1524, "type": 2, "action": 0, "pose": {"position": {"x": -4.348979899287224, "y": 4.578814859688282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1525, "type": 2, "action": 0, "pose": {"position": {"x": -4.398979900032282, "y": 4.528814858943224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1526, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 4.478814858198166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1527, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 4.428814857453108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1528, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 4.37881485670805, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1529, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 4.3288148559629915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1530, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 4.2788148552179335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1531, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 4.228814854472875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1532, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 4.178814853727817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1533, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 4.128814852982759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1534, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 4.078814852237701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1535, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 4.028814851492643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1536, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.978814850747585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1537, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.928814850002527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1538, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.878814849257469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1539, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.828814848512411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1540, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.778814847767353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1541, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.728814847022295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1542, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 3.6788148462772368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1543, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.6288148455321787, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1544, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.5788148447871206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1545, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.5288148440420626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1546, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.4788148432970045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1547, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.4288148425519465, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1548, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.3788148418068884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1549, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.3288148410618303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1550, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.2788148403167723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1551, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.2288148395717142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1552, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.178814838826656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1553, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.128814838081598, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1554, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.07881483733654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1555, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 3.028814836591482, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1556, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.978814835846424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1557, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.928814835101366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1558, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.878814834356308, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1559, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.8288148336112497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1560, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.7788148328661917, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1561, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.7288148321211336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1562, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.6788148313760756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1563, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.6288148306310175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1564, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.5788148298859594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1565, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.5288148291409014, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1566, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.4788148283958433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1567, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.4288148276507853, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1568, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.378814826905727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1569, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.328814826160669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1570, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.278814825415611, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1571, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.228814824670553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1572, "type": 2, "action": 0, "pose": {"position": {"x": -4.748979905247689, "y": 2.178814823925495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1573, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 2.128814823180437, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1574, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 2.078814822435379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1575, "type": 2, "action": 0, "pose": {"position": {"x": -4.698979904502631, "y": 2.028814821690321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1576, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 1.9788148209452627, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1577, "type": 2, "action": 0, "pose": {"position": {"x": -4.6489799037575725, "y": 1.9288148202002047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1578, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 1.8788148194551466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1579, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 1.8288148187100886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1580, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 1.7788148179650305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1581, "type": 2, "action": 0, "pose": {"position": {"x": -4.5989799030125145, "y": 1.7288148172199724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1582, "type": 2, "action": 0, "pose": {"position": {"x": -4.548979902267456, "y": 1.6788148164749144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1583, "type": 2, "action": 0, "pose": {"position": {"x": -4.498979901522398, "y": 1.6288148157298563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1584, "type": 2, "action": 0, "pose": {"position": {"x": -4.44897990077734, "y": 1.5788148149847983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}} \ No newline at end of file diff --git a/stack_master/maps/JFR_racingv6/ot_sectors.yaml b/stack_master/maps/JFR_racingv6/ot_sectors.yaml new file mode 100644 index 0000000..ccfa4ab --- /dev/null +++ b/stack_master/maps/JFR_racingv6/ot_sectors.yaml @@ -0,0 +1,8 @@ +n_sectors: 1 +yeet_factor: 1.25 +spline_len: 30 +ot_sector_begin: 0.5 +Overtaking_sector0: + start: 0 + end: 343 + ot_flag: false diff --git a/stack_master/maps/JFR_racingv6/pf_map.png b/stack_master/maps/JFR_racingv6/pf_map.png new file mode 100644 index 0000000..4e1b651 Binary files /dev/null and b/stack_master/maps/JFR_racingv6/pf_map.png differ diff --git a/stack_master/maps/JFR_racingv6/pf_map.yaml b/stack_master/maps/JFR_racingv6/pf_map.yaml new file mode 100644 index 0000000..7bb6f63 --- /dev/null +++ b/stack_master/maps/JFR_racingv6/pf_map.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: pf_map.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -7.748979949951172 +- -6.321185302734375 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/maps/JFR_racingv6/speed_scaling.yaml b/stack_master/maps/JFR_racingv6/speed_scaling.yaml new file mode 100644 index 0000000..1f02401 --- /dev/null +++ b/stack_master/maps/JFR_racingv6/speed_scaling.yaml @@ -0,0 +1,8 @@ +global_limit: 0.5 +n_sectors: 1 +Sector0: + start: 0 + end: 343 + scaling: 0.5 + only_FTG: false + no_FTG: false diff --git a/stack_master/maps/f/.gitignore b/stack_master/maps/f/.gitignore new file mode 100644 index 0000000..a8a0dce --- /dev/null +++ b/stack_master/maps/f/.gitignore @@ -0,0 +1 @@ +*.bin diff --git a/stack_master/maps/f/f.png b/stack_master/maps/f/f.png new file mode 100644 index 0000000..0ba5b77 Binary files /dev/null and b/stack_master/maps/f/f.png differ diff --git a/stack_master/maps/f/f.yaml b/stack_master/maps/f/f.yaml new file mode 100644 index 0000000..15090c3 --- /dev/null +++ b/stack_master/maps/f/f.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: f.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -11.60654 +- -26.520793 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/maps/f/global_waypoints.json b/stack_master/maps/f/global_waypoints.json new file mode 100644 index 0000000..7308a15 --- /dev/null +++ b/stack_master/maps/f/global_waypoints.json @@ -0,0 +1 @@ +{"map_info_str": {"data": "IQP estimated lap time: 11.1778s; IQP maximum speed: 11.2723m/s; SP estimated lap time: 11.7476s; SP maximum speed: 11.1451m/s; "}, "est_lap_time": {"data": 11.747640856940562}, "centerline_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -5.024962436856354, "y": -22.778604316253958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -5.123670944512135, "y": -22.762890402810378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -5.2215329592390765, "y": -22.742583539187446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -5.318298747987133, "y": -22.717562504961297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -5.413733417838098, "y": -22.687855120824988, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -5.507602934557472, "y": -22.653532011028705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -5.599727916255872, "y": -22.61475657824462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -5.689134059622661, "y": -22.570150947527793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -5.77498809328744, "y": -22.518996839113235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -5.856474412812163, "y": -22.461169495719908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -5.933510124382924, "y": -22.397511286491206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -6.004983289752657, "y": -22.32767341607033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -6.070664505674698, "y": -22.252339578775025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -6.130337912423816, "y": -22.17217894936661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -6.183511172552238, "y": -22.08756873568825, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -6.230819167977402, "y": -21.99953337434628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -6.272117090253706, "y": -21.90852904729845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -6.307418255494868, "y": -21.81503046320148, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -6.33706943910823, "y": -21.71958508252596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -6.36130836255311, "y": -21.62262350575625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -6.380523840185805, "y": -21.52453625337537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -6.3954623147777445, "y": -21.42570514646261, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -6.406569552505966, "y": -21.326368767615993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -6.414171192529959, "y": -21.226701602547614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -6.418833762999835, "y": -21.126851676883923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -6.420981327303555, "y": -21.026914600033717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -6.420008742100002, "y": -20.926964835032653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -6.417098616914577, "y": -20.827044139341634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -6.413390332366062, "y": -20.727149502820133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -6.409296392802422, "y": -20.627269798346777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -6.405436785890795, "y": -20.527380849024997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -6.4024081012674685, "y": -20.42746384490367, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -6.401027527024368, "y": -20.32751160821659, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -6.402064786739443, "y": -20.22755693152622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -6.403542489147323, "y": -20.12760449413028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -6.406215877723583, "y": -20.02767743542419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -6.407908149758211, "y": -19.92773288286776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -6.408493110555328, "y": -19.82777101683875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -6.409862707236397, "y": -19.72782128214066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -6.412522828093151, "y": -19.62789314257895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -6.415430067983339, "y": -19.527971871483487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -6.418516805687103, "y": -19.428055972771066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -6.421715465045637, "y": -19.328143587127705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -6.424958500780659, "y": -19.228232628978752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -6.428178381002756, "y": -19.12832092312922, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -6.431307568350006, "y": -19.02840634125704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -6.4327669485225325, "y": -18.92845452991675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -6.435118437970913, "y": -18.82852379697062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -6.439040700109055, "y": -18.72863734499804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -6.443480089363815, "y": -18.62877250686392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -6.448368809587651, "y": -18.528928627301323, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -6.453639211010856, "y": -18.429104142841915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -6.459223791206269, "y": -18.32929672123356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -6.465055185009409, "y": -18.229503399516506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -6.471066145393919, "y": -18.12972072074969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -6.477189517268105, "y": -18.029944869518992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -6.483358206125797, "y": -17.930171806468593, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -6.488025773540878, "y": -17.83031847948358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -6.492854799704076, "y": -17.73047165759827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -6.497939620462056, "y": -17.630637511764334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -6.503190441294616, "y": -17.53081194346026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -6.5085175675455, "y": -17.43099041054766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -6.513831353650148, "y": -17.33116816737228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -6.519042148339443, "y": -17.231340504150854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -6.524060240326011, "y": -17.131502986433723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -6.528795808981897, "y": -17.031651695424195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -6.533158884548101, "y": -16.931783469834397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -6.538895601101595, "y": -16.831986082268386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -6.544746419320646, "y": -16.732193880291224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -6.550453489912237, "y": -16.632393364407807, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -6.555949584753737, "y": -16.532581022750676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -6.560506329837642, "y": -16.432725739402663, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -6.56392134718495, "y": -16.332820513808123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -6.5673471791841225, "y": -16.232915656937518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -6.570693809058754, "y": -16.133008122862584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -6.573871190642727, "y": -16.033095079101024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -6.576789217174213, "y": -15.933174149498353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -6.581166626517179, "y": -15.83330822009748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -6.585795666914642, "y": -15.73345187910641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -6.5903938785590395, "y": -15.633594115783321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -6.594893902186729, "y": -15.533731886580297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -6.59922834094991, "y": -15.433862345452715, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -6.603329736914142, "y": -15.333982979721668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -6.607130552210842, "y": -15.234091746580518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -6.610563156790991, "y": -15.134187210413932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -6.612135935886979, "y": -15.03423825731962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -6.614096599720036, "y": -14.934298083594355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -6.61743842524219, "y": -14.834390424020906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -6.621020291732224, "y": -14.734491063910319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -6.624774644150404, "y": -14.634598024013957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -6.628633981017918, "y": -14.534708976835804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -6.632530835871668, "y": -14.43482138315371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -6.636397755655501, "y": -14.334932628163838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -6.640167277979348, "y": -14.235040157477943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -6.6437719091734495, "y": -14.135141613220574, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -6.64573510491958, "y": -14.035199370936372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -6.6475529702689515, "y": -13.935252329200475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -6.650115709106744, "y": -13.835326030374285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -6.654187592897514, "y": -13.73544550567604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -6.658612418714436, "y": -13.635579966823352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -6.663322625176378, "y": -13.535727458891209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -6.668250755660997, "y": -13.435885452026696, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -6.673329441600393, "y": -13.336050978329542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -6.678491379514714, "y": -13.236220767821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -6.683669303720171, "y": -13.136391383718117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -6.687408563360043, "y": -13.036499696137616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -6.691159237241287, "y": -12.93660655155585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -6.6951379809314195, "y": -12.836722206659552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -6.699254815553709, "y": -12.736843443082275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -6.703419826871137, "y": -12.636966671426226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -6.707543124845461, "y": -12.537088173012704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -6.711534800638192, "y": -12.437204341280342, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -6.7170223451638735, "y": -12.337393944081226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -6.722957227967021, "y": -12.237606710600991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -6.7289874555994835, "y": -12.137825185680166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -6.7350459217684655, "y": -12.038045368878906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -6.741065535922017, "y": -11.938263203572793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -6.7469791879107275, "y": -11.838474710675644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -6.752719713697708, "y": -11.738676122573821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -6.758219864004426, "y": -11.638864017641058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -6.763412277796238, "y": -11.539035455657835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -6.767680050422482, "y": -11.439167380990634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -6.770568145039901, "y": -11.33924553360312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -6.773371433604454, "y": -11.239321279980173, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -6.775999795902592, "y": -11.139392290978508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -6.778979254968943, "y": -11.039476491424402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -6.78321774700482, "y": -10.939602814575526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -6.787497042587361, "y": -10.839730874207211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -6.7917497412527466, "y": -10.739857799790585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -6.795908433131743, "y": -10.639980774371223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -6.7999056746949815, "y": -10.540097170338425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -6.803673967146334, "y": -10.440204685556463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -6.807145739397918, "y": -10.340301480077908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -6.81025333757621, "y": -10.240386313588175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -6.812929023027763, "y": -10.140458683629108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -6.8157004102985965, "y": -10.040536350925384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -6.819535199632317, "y": -9.940646364750473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -6.821896177785987, "y": -9.84071317732979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -6.824111118924839, "y": -9.74077416916756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -6.826503089205051, "y": -9.640839226541516, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -6.829004456723364, "y": -9.540906953065406, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -6.831547612384157, "y": -9.440975730710127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -6.834064956397778, "y": -9.341043856821505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -6.83648888354935, "y": -9.24110968103745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -6.838751769183608, "y": -9.141171742263152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -6.841367432739153, "y": -9.041245753424342, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -6.845327930000088, "y": -8.941360675847157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -6.849410203052113, "y": -8.841480494283376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -6.853569284109944, "y": -8.74160347725511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -6.857760223775241, "y": -8.641727790149714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -6.861938080522986, "y": -8.54185155560182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -6.866057909777649, "y": -8.441972913818066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -6.870074753148475, "y": -8.342090082923702, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -6.873943628393635, "y": -8.24220141940936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -6.877619520684895, "y": -8.14230547874838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -6.8810573757476, "y": -8.04240107624185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -6.88421209545493, "y": -7.9424873481290925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -6.88703853645998, "y": -7.842563812976157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -6.889491512453713, "y": -7.742630433322995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -6.891525800640324, "y": -7.642687677532524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -6.893096153023255, "y": -7.54273658174063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -6.893669791408811, "y": -7.442779107762015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -6.894272619711892, "y": -7.342820686186375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -6.8955614514420684, "y": -7.2428654665283405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -6.89710849701573, "y": -7.14291389537445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -6.898868610840296, "y": -7.0429658372562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -6.900796663766962, "y": -6.943020868275656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -6.902847542660888, "y": -6.843078337324422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -6.90497614781105, "y": -6.743137427201992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -6.907137388760563, "y": -6.643197215642997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -6.909286179136704, "y": -6.543256736278706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -6.911377431058641, "y": -6.443315039568997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -6.913366049700316, "y": -6.343371253745307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -6.915206928586137, "y": -6.243424645803129, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -6.916854946198087, "y": -6.143474682575543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -6.918264964474219, "y": -6.043521091905348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -6.919391829780292, "y": -5.9435639239136515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -6.9207255213607155, "y": -5.843612244471613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -6.923364022442225, "y": -5.743683497810485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -6.926069683021702, "y": -5.643756545105633, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -6.928819971644149, "y": -5.543830809477894, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -6.931592360383841, "y": -5.443905683936532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -6.934364323103221, "y": -5.343980546582329, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -6.937113333640847, "y": -5.244054775804176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -6.939816864000299, "y": -5.144127765475737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -6.94245238261201, "y": -5.0441989401587835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -6.944997352739983, "y": -4.944267770319497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -6.947429231105538, "y": -4.844333787563196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -6.949725466800359, "y": -4.744396599891957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -6.951863500561362, "y": -4.644455906987795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -6.953820764480064, "y": -4.544511515522631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -6.955574682219432, "y": -4.444563354493712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -6.957102669811308, "y": -4.344611490580461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -6.958382137107644, "y": -4.244656143516042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -6.95939048995879, "y": -4.144697701463198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -6.960105133191953, "y": -4.0447367363802345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -6.960503474462581, "y": -3.94477401935899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -6.960562929050881, "y": -3.8448105359118583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -6.960712426138588, "y": -3.744849233969798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -6.961540344943577, "y": -3.644889520903695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -6.9615329490137565, "y": -3.5449263796404544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -6.961139694422489, "y": -3.4449650652777297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -6.962528734149241, "y": -3.3450125762162264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -6.963548798292498, "y": -3.2450545713591104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -6.965530839264143, "y": -3.1451146563367813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -6.968364638321775, "y": -3.0451922515853656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -6.972447110303119, "y": -2.9453131083580657, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -6.977437885310097, "y": -2.8454744368420477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -6.982635425137211, "y": -2.7456460884667973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -6.987399865470615, "y": -2.645796469954656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -6.9911779949025386, "y": -2.5459053191389076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -6.993454997712029, "y": -2.44596946493792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -6.993738481082044, "y": -2.346008787527806, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -6.991610488988302, "y": -2.2460705482706285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -6.98656101032693, "y": -2.1462377388030847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -6.978175584147581, "y": -2.0466318190519575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -6.966052444123763, "y": -1.9474128742330543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -6.949903978097487, "y": -1.8487714112123743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -6.92905337568326, "y": -1.7510197090677282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -6.903373689051094, "y": -1.6544252155140378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -6.872127605555509, "y": -1.5594897708145803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -6.835424326858935, "y": -1.466526510369531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -6.7931389960871424, "y": -1.3759664717896583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -6.744459099517511, "y": -1.288678953325753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -6.690039432316833, "y": -1.2048464852153795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -6.630029459574897, "y": -1.1249269975593856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -6.563930157285784, "y": -1.0499640656694216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -6.493056989141659, "y": -0.9794993394992022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -6.417260565718212, "y": -0.9143805306011735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -6.337383294707172, "y": -0.8543103354359359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -6.254234067220052, "y": -0.7988546249029734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -6.16812875570463, "y": -0.7481229538589216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -6.079048190618537, "y": -0.7027905483328307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -5.988076642960412, "y": -0.6613777128245287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -5.8955091151929455, "y": -0.6236599188143964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -5.801331141907567, "y": -0.5901897598518863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -5.705883353079074, "y": -0.5604956964439718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -5.609647316191437, "y": -0.5334669242998386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -5.512762595789084, "y": -0.5088636131321292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -5.415330243418716, "y": -0.4865291653256133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -5.317215814790724, "y": -0.4674365460716996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -5.21873813208228, "y": -0.4502692444969597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -5.12007505530256, "y": -0.43419908479183184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -5.021245226979732, "y": -0.4191877494084041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -4.922349343130322, "y": -0.4046167981989716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -4.823437933559386, "y": -0.39015142617078813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -4.72453372590836, "y": -0.37563794233950926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -4.625719670603837, "y": -0.3605236258660937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -4.526738207448544, "y": -0.3465757155000552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -4.427645650446014, "y": -0.3334162962554026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -4.328538415890607, "y": -0.32036749913017804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -4.229433776071717, "y": -0.30729883994068347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -4.130351949889623, "y": -0.29405847541693736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -4.031316840864777, "y": -0.28047366793175094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -3.932155630196503, "y": -0.26784481459029774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -3.832978148262672, "y": -0.25534186495289585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -3.7337382257742058, "y": -0.2433452532559748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -3.634509677692768, "y": -0.23125348767072892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -3.5351254502286666, "y": -0.22051934329252235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -3.4357268250114195, "y": -0.20991798769208977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -3.3361431500655265, "y": -0.201291431902826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -3.236536968568624, "y": -0.19286777691387272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -3.1369069758435004, "y": -0.18471384235816177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -3.0372032091962833, "y": -0.17752089360695655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -2.937519330856577, "y": -0.17007182388277303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -2.8378108475862973, "y": -0.16294240419796108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -2.7380355746362226, "y": -0.1568214210980421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -2.638274825265672, "y": -0.15048463421564223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -2.538493770251464, "y": -0.14445518461420745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -2.438677012169393, "y": -0.1390640228434551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -2.3388986185784018, "y": -0.13298735786969668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -2.239076053297519, "y": -0.12768753407192104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -2.1392103168374805, "y": -0.12327808089654874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -2.0393625592424782, "y": -0.1185114321824399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -1.9395093160638734, "y": -0.11382214420593435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -1.8396243412803495, "y": -0.10986795501940684, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -1.7397220771247643, "y": -0.10640890677427822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -1.6398543399315926, "y": -0.10203589385956634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -1.5399651091624147, "y": -0.0981860405759378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -1.440054895325883, "y": -0.0949272823114693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -1.3401254115664887, "y": -0.09232765386653642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -1.2402162895917561, "y": -0.08911154736656685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -1.1403132811656889, "y": -0.08563424844554551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -1.0403981692533977, "y": -0.08252471285408923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -0.9404710806946459, "y": -0.07982815995630375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -0.8405327019504957, "y": -0.07758985038243266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -0.7405843413162138, "y": -0.0758550714820803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -0.6406279910181392, "y": -0.07466911683257085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -0.5406663889418003, "y": -0.07407725921669504, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -0.44071402343450283, "y": -0.07279142213018164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -0.34076438116458013, "y": -0.0711240889131852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -0.24081110312337267, "y": -0.06969162173796704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -0.14085447376129645, "y": -0.0685166128173573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -0.04089495204085702, "y": -0.06762165720681929, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 0.059051585250455646, "y": -0.06592271385663118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 0.15900188558778608, "y": -0.064314625840092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 0.25896158613138565, "y": -0.06347393044749705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 0.35892479530165405, "y": -0.06340082168450986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 0.458885618961065, "y": -0.0640953124926577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 0.5588381649337282, "y": -0.06555723473790731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 0.6587816858886689, "y": -0.06748468832513374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 0.7587416919745783, "y": -0.06832374317792655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": 0.8586989141251837, "y": -0.06944715579577705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": 0.9586528583802032, "y": -0.07083233106680477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": 1.0586032082162267, "y": -0.07245667630991391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": 1.1585498091744229, "y": -0.07429760389326559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": 1.2584926534851686, "y": -0.07633253308457469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": 1.3584318647020408, "y": -0.07853889120651476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": 1.458367682353862, "y": -0.08089411417039251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": 1.5583004466203707, "y": -0.08337564646134624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": 1.6582351315876553, "y": -0.08570393336624961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": 1.7581924610245236, "y": -0.08680815933917718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": 1.8581432036539274, "y": -0.08840225591869394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": 1.9580858887912824, "y": -0.09044097690353668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": 2.0580196490272584, "y": -0.09287908808019597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": 2.1579441583668952, "y": -0.09567138190109427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": 2.257859570362109, "y": -0.09877268702525062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": 2.3577943935733643, "y": -0.10105123109704207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": 2.457732666459704, "y": -0.10329046647287421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": 2.5576559233038796, "y": -0.10612321353989485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": 2.657562936877034, "y": -0.10948155248520443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": 2.757453548254635, "y": -0.11329764753510571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": 2.8573285267623483, "y": -0.11750376778794379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": 2.957189430617206, "y": -0.1220322948445409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": 3.0570384685208465, "y": -0.1268157192530584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": 3.156878362286644, "y": -0.13178662776573793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": 3.256712210439719, "y": -0.1368776833802305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": 3.3565433526173054, "y": -0.1420216001128567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": 3.456375234515836, "y": -0.14715111442911508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": 3.556211273080025, "y": -0.1521989552417886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": 3.6560973050867025, "y": -0.15603797649649184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": 3.7560053307019086, "y": -0.1593696256065676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": 3.855908771430234, "y": -0.16283640760886833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": 3.9558106404285964, "y": -0.16634830339946494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": 4.055703516809618, "y": -0.1700560289401394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": 4.155527354166306, "y": -0.17531549146864298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": 4.255404305678489, "y": -0.1794705244683588, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": 4.355253648644433, "y": -0.184244473703178, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": 4.45507637064867, "y": -0.1895469596125402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": 4.5548748816943165, "y": -0.19528785273109753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": 4.654663286171616, "y": -0.2011829652336268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": 4.75451245538713, "y": -0.2059595177908744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": 4.85433120324924, "y": -0.21133575636047408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": 4.954122585248456, "y": -0.21719902871078284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": 5.053891287551807, "y": -0.22343703113990399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": 5.153643245573895, "y": -0.22993776431180618, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": 5.253385267645414, "y": -0.23658945999252995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": 5.353183979983961, "y": -0.24226677594197096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": 5.453009073614617, "y": -0.24752593319361743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": 5.552821587926268, "y": -0.25301922434407204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": 5.652628579211929, "y": -0.25861218845486866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": 5.752360474640539, "y": -0.26534687611569796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": 5.852093361882833, "y": -0.27209020382041466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": 5.951841045225911, "y": -0.278654242490355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": 6.05155518739911, "y": -0.2857104263079843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": 6.151243402549936, "y": -0.2931245247503468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": 6.250914724869798, "y": -0.3007627314007622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": 6.350636162807739, "y": -0.30765822060864223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": 6.450244327701633, "y": -0.3160769262366854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": 6.549789697342154, "y": -0.3252092200037561, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": 6.649280275375941, "y": -0.33492100377161027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": 6.748815327825967, "y": -0.3441369566643108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": 6.848363121086408, "y": -0.3532427456358569, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": 6.947854578275349, "y": -0.36294556739104966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": 7.047308362912056, "y": -0.3730238163940042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": 7.146879964888997, "y": -0.3818657658746374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": 7.246400292605322, "y": -0.39126812836268127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": 7.345887568843153, "y": -0.40101165877782097, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": 7.445498008255442, "y": -0.4094053980242461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": 7.545068876835464, "y": -0.4182569558831856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": 7.644616244410151, "y": -0.42736935599809683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": 7.744114896962762, "y": -0.4369967131625178, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": 7.843537504028627, "y": -0.4473810441924162, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": 7.942900252979392, "y": -0.45832396848825707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": 8.042391083605889, "y": -0.4680322217174669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": 8.14182400734843, "y": -0.4783178647963064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": 8.241206518784452, "y": -0.4890789223496207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": 8.340485506842265, "y": -0.5007551153755792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": 8.439759800521555, "y": -0.5124547854356233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": 8.539036074204752, "y": -0.5241538455747407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": 8.638307454095093, "y": -0.535877943069167, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": 8.737479045919406, "y": -0.5483785657401032, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": 8.836473975865788, "y": -0.5622492841556321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": 8.935531040257581, "y": -0.5756709008681613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": 9.034625993304966, "y": -0.5888112322904236, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": 9.133738750723156, "y": -0.6018175706991141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": 9.232761594689597, "y": -0.6154885807061898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": 9.331775030720719, "y": -0.6292309975503039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": 9.430628330409577, "y": -0.644084046622884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": 9.529375189940803, "y": -0.6596272495712736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": 9.628120597525696, "y": -0.6751719134315676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": 9.72670052477115, "y": -0.6917338364772398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": 9.825199748983866, "y": -0.7087800565523461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": 9.923480795591548, "y": -0.7270299380672158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": 10.021627821643026, "y": -0.7459992216921804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": 10.119372123970505, "y": -0.7669258421695972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": 10.216952624873851, "y": -0.7886219746922976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": 10.314357195699666, "y": -0.8110938431001622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": 10.411268434787381, "y": -0.8355758894766803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": 10.507674578498756, "y": -0.8619989800422381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": 10.603588732205331, "y": -0.890160653768225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": 10.698964986572093, "y": -0.9200925546242158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": 10.793633022506826, "y": -0.9521596210074986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": 10.88724418331632, "y": -0.9872190027820784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": 10.97999651003846, "y": -1.0244852661607005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": 11.071907968129057, "y": -1.0637870905445423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": 11.162609638342866, "y": -1.1057866489013903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": 11.251885355071884, "y": -1.1507498814311403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": 11.33991384012268, "y": -1.1981022953197233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": 11.426331594184528, "y": -1.2483417517507538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": 11.5108825379524, "y": -1.3016619546915826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": 11.593724984188453, "y": -1.3575944883226083, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": 11.674742111739244, "y": -1.416139426284319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": 11.753308035155408, "y": -1.4779249144538695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": 11.829362805658945, "y": -1.5427935869760814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": 11.903337475567469, "y": -1.6100122256954743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": 11.974530007447177, "y": -1.6801644482067701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": 12.042047372422088, "y": -1.7538712111049495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": 12.106568494278406, "y": -1.830221164350581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": 12.167905017255839, "y": -1.9091278563556193, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": 12.224935122234424, "y": -1.9912081091703433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": 12.278034823583333, "y": -2.0758876878191383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": 12.32729702468944, "y": -2.1628561630512504, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": 12.3719224583977, "y": -2.2522953656090903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": 12.411131989487874, "y": -2.344234448155817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": 12.446796562956273, "y": -2.437607189879372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": 12.477546113494292, "y": -2.532712489396045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": 12.504027250830505, "y": -2.629091048924469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": 12.526116553319653, "y": -2.726568242125796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": 12.54373661218389, "y": -2.824950618618142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": 12.558071613018573, "y": -2.9238749889939983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": 12.56912758520219, "y": -3.0232183381330104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": 12.576526538532148, "y": -3.1228996442471635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": 12.580126180266461, "y": -3.2227910200219, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": 12.579871851082586, "y": -3.322747737131153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": 12.575725361040515, "y": -3.422619721615542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": 12.567713025083782, "y": -3.5222567195532073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": 12.556061260067986, "y": -3.6215339331374503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": 12.541127022503673, "y": -3.7203704390927776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": 12.523075754181276, "y": -3.818683836025241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": 12.500734447553882, "y": -3.9161043511514104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": 12.474986758519988, "y": -4.012684138290381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": 12.4451595603083, "y": -4.1080832563609375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": 12.41164036990842, "y": -4.202257046878602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": 12.375364605420573, "y": -4.2953965163541294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": 12.33561352329416, "y": -4.38710125605391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": 12.291652336494788, "y": -4.476872530487803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": 12.24440962529041, "y": -4.5649510577621015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": 12.193491199253243, "y": -4.650962822613362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": 12.138877545154626, "y": -4.734675465464502, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": 12.080493615282757, "y": -4.81580789626265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": 12.017520443775663, "y": -4.893432214575302, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": 11.951491697738021, "y": -4.9684790448577525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": 11.882566679615858, "y": -5.0408513281291185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": 11.809915196247072, "y": -5.109493648886368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": 11.734296782385021, "y": -5.17485536011431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": 11.65543917537661, "y": -5.236259530870931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": 11.573726823317562, "y": -5.293832042332429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": 11.489226434834007, "y": -5.347222350618158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": 11.402464184339319, "y": -5.3968318273425195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": 11.313477680479307, "y": -5.442355980318139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": 11.222955372688228, "y": -5.484743058218879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": 11.1308435408486, "y": -5.523567075178117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": 11.036994191974342, "y": -5.557982190528637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": 10.942252082202538, "y": -5.589854017941675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": 10.846610066663084, "y": -5.618907863718197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": 10.750266341133374, "y": -5.645551845866499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": 10.653327155691697, "y": -5.6699375080364804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": 10.555550734769378, "y": -5.690724522842594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": 10.457422632695588, "y": -5.7097882673262985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": 10.358998776839792, "y": -5.727259827068332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": 10.26034520626487, "y": -5.7433850974633005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": 10.161525701761514, "y": -5.758462379125386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": 10.06241304040073, "y": -5.771449430215174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": 9.963234723064405, "y": -5.783954512174254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": 9.864093893521074, "y": -5.796752151900406, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": 9.764796511504754, "y": -5.8082297463924855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": 9.665436944923604, "y": -5.81918914249791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": 9.566099964273272, "y": -5.830354600916744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": 9.466756104660787, "y": -5.841458576215515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": 9.367394448167488, "y": -5.852404650381463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": 9.268079782135436, "y": -5.863762834275263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": 9.168763816013342, "y": -5.875109195719736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": 9.06956184494574, "y": -5.887411022799357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": 8.970399473762901, "y": -5.900007432385066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": 8.871182129473818, "y": -5.912175178647886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": 8.772001089949562, "y": -5.924658319598182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": 8.672772402559112, "y": -5.9367558968596015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": 8.573643684133902, "y": -5.94962915126896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": 8.474386748838542, "y": -5.96145927794469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": 8.375078290214494, "y": -5.972865929608852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": 8.275929943009007, "y": -5.985606442880021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": 8.176755901513284, "y": -5.998144936894986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": 8.077701762883557, "y": -6.011575294561758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": 7.9786984453375975, "y": -6.0253973916476555, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": 7.879509708581791, "y": -6.0377845036052875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": 7.780217227698769, "y": -6.049347903106614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": 7.680883716211683, "y": -6.060552560645215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": 7.581628767150379, "y": -6.07240944511977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": 7.482408093331667, "y": -6.084573046889011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": 7.383123802961198, "y": -6.09620501401247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": 7.283895878357061, "y": -6.108287890973278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": 7.184578645116349, "y": -6.1195942278243525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": 7.085148136299772, "y": -6.129903467796979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": 6.98579976257912, "y": -6.140945377041845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": 6.88651308857897, "y": -6.15255862728365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": 6.787189600714683, "y": -6.163852231070685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": 6.687811119008521, "y": -6.174650500416013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": 6.588372491386721, "y": -6.184875686773773, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": 6.489047790351872, "y": -6.196150378477735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": 6.389509617076299, "y": -6.205362623176288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": 6.289945582455503, "y": -6.214290568305007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": 6.1903412770464925, "y": -6.222756663691644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": 6.090689187031506, "y": -6.230636691568698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": 5.99113926667136, "y": -6.239720479827543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": 5.891475469400412, "y": -6.247389358846272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": 5.791723263065504, "y": -6.253885993021336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": 5.692015188839284, "y": -6.260977661993457, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": 5.592356138762659, "y": -6.26877429786812, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": 5.492675156604549, "y": -6.276284933581398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": 5.39296263020996, "y": -6.283363096462087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": 5.293364432643402, "y": -6.2919020099729455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": 5.1937427552879045, "y": -6.3001621986217495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": 5.093973919471563, "y": -6.306398017972424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": 4.9941974582819455, "y": -6.312511298082361, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": 4.894469444897446, "y": -6.319311895993703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": 4.7948037945614415, "y": -6.327023895944112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": 4.695130555793258, "y": -6.334637074250337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": 4.595439863139805, "y": -6.342017888025576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": 4.495722770592597, "y": -6.349032508584283, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": 4.396061132007931, "y": -6.356745053447792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": 4.2963433372579, "y": -6.36375037783407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": 4.196636105474587, "y": -6.370904690396435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": 4.096929967651576, "y": -6.378074262127756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": 3.9972153958952035, "y": -6.38512539416683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": 3.8974366341723656, "y": -6.3911264468204045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": 3.797717937780772, "y": -6.398106398071551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": 3.6979778890358665, "y": -6.404741916215391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": 3.5982097838110514, "y": -6.410987746624977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": 3.498476054558657, "y": -6.417761395946525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": 3.398670188223012, "y": -6.423363503509968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": 3.298813591240761, "y": -6.427973211149584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": 3.1989598271554565, "y": -6.432612004516543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": 3.0992198323577025, "y": -6.439251876309991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": 2.9994281440967883, "y": -6.445086765877134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": 2.8995617979082127, "y": -6.449481063072603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": 2.7996616905800025, "y": -6.453037627152708, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": 2.6997529171302217, "y": -6.456347160165498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": 2.599854244925924, "y": -6.459946063834001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": 2.4999846376714276, "y": -6.464269571676381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": 2.400216765227339, "y": -6.470385246595251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": 2.300670695943059, "y": -6.4794826116915765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": 2.2013589119179997, "y": -6.490845723224012, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": 2.1023787826593576, "y": -6.504797268048488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": 2.003850004863823, "y": -6.521636719412132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": 1.9058779516295126, "y": -6.541458528278769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": 1.8089397482818128, "y": -6.565784636849528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": 1.7132521941953363, "y": -6.594686316855616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": 1.6187479193814442, "y": -6.627252908532622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": 1.5254679944749623, "y": -6.663173944326892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": 1.4336918121305786, "y": -6.702779180419587, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": 1.343345575688173, "y": -6.745535074032427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": 1.254802438269059, "y": -6.791908044559894, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": 1.1682856282888143, "y": -6.8419676712003685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": 1.0844522039651678, "y": -6.8963688000879415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": 1.0037489484025557, "y": -6.955343764628901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": 0.926394541258816, "y": -7.018631837230786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": 0.8528553494149465, "y": -7.086306028380798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": 0.7831781407312971, "y": -7.157948839400953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": 0.7182703528112409, "y": -7.233950751718838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": 0.6584395989173074, "y": -7.313996278924511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": 0.6040508145050965, "y": -7.397853136034271, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": 0.5567839993213062, "y": -7.485908861980783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": 0.5157608921981622, "y": -7.5770448941749935, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": 0.48144897107734097, "y": -7.670906493139502, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": 0.4537413377134939, "y": -7.7669184121090105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": 0.43304378512195896, "y": -7.864680697341581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": 0.4195353572942525, "y": -7.963692367818851, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": 0.41305171036525956, "y": -8.063417043032537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": 0.4134584886702917, "y": -8.16336001934515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": 0.4209459821537932, "y": -8.263025703205937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": 0.43512274459817235, "y": -8.361951135799528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": 0.4558592077210276, "y": -8.459713096950727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": 0.4825521534553922, "y": -8.556019239541902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": 0.5152230763081064, "y": -8.650474438330553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": 0.5540445366873192, "y": -8.742574986494466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": 0.5986123324284414, "y": -8.83202715849653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": 0.6482068153053583, "y": -8.91879526030859, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": 0.7022715776100085, "y": -9.002862130764115, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 0.759808745002352, "y": -9.084597482742065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 0.8217209175059121, "y": -9.163072911780198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 0.8866922200644689, "y": -9.239023828972604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 0.9553182911901743, "y": -9.311690395112278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 1.0268425128410892, "y": -9.381511119684621, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 1.1015029115649349, "y": -9.447955296015856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 1.1789048926204329, "y": -9.511199305988173, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 1.25843802229952, "y": -9.571739943492254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 1.3405030005208871, "y": -9.628816098826704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 1.4242360966759025, "y": -9.683414131185039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 1.5100071737052005, "y": -9.734730265933027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 1.5971501513445665, "y": -9.78370221927017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 1.6853316111812717, "y": -9.830782336620226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 1.774953268683179, "y": -9.87503800847607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 1.8660740794721666, "y": -9.916130368599168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 1.9582878133500576, "y": -9.954714206596607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 2.0517556905568983, "y": -9.990111706668989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 2.1465369176309776, "y": -10.021867726683315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 2.242122449837287, "y": -10.05109572742571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 2.338720869838465, "y": -10.076805831866194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 2.4359736764087403, "y": -10.099885756342847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 2.533695525442962, "y": -10.120935800252765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 2.6316251570104123, "y": -10.140997818660004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 2.7300071449908447, "y": -10.15870443633455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 2.8284201604908956, "y": -10.17624272914422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 2.926829151226238, "y": -10.19380287849957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 3.0252580688196606, "y": -10.211239426156977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 3.1236891998939593, "y": -10.228667766097157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 3.2219358403147336, "y": -10.247111177600791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 3.32029794325169, "y": -10.264926381405362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 3.418472408743232, "y": -10.283730484297802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 3.516723052356566, "y": -10.302147072505834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 3.6150278684717083, "y": -10.320280053672334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 3.7133680896005803, "y": -10.338211587214419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 3.811453777582597, "y": -10.35748735546876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 3.9093749044402206, "y": -10.377577842328328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 4.007397444397877, "y": -10.397163391939952, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 4.105318733800375, "y": -10.417266390717383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 4.203113738059298, "y": -10.437958725934172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 4.301089486202822, "y": -10.457789131808237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 4.3989207461543955, "y": -10.47831005485282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 4.496863648273205, "y": -10.498307617759549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 4.594731823468718, "y": -10.518667174204866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 4.692512050718217, "y": -10.539445528339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 4.7905889811529345, "y": -10.558774344362686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 4.888625608348902, "y": -10.578307085612373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 4.986567401188439, "y": -10.598309700146068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 5.084874638990984, "y": -10.616409174871366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 5.183073062061672, "y": -10.635096589429638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 5.281364738479976, "y": -10.65329369541789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 5.379596640531188, "y": -10.671811131665141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 5.477901239212792, "y": -10.689938602329839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 5.575906386349934, "y": -10.70960361298589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 5.674012518193828, "y": -10.728781835792176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 5.772271614915685, "y": -10.74716011403979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 5.870372757768548, "y": -10.766353654699525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 5.968390707695093, "y": -10.785979809815686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 6.066338614459287, "y": -10.805951828632535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 6.163971139578638, "y": -10.827390192409903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 6.2612795500950575, "y": -10.85027505387518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 6.358033737848391, "y": -10.875373065161451, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 6.454147850978981, "y": -10.902840495272907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 6.5493002667274345, "y": -10.93344310339359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 6.643515691093814, "y": -10.966841796748112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 6.736875103949433, "y": -11.002558503961549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 6.82861769182344, "y": -11.042248972920378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 6.918797284070378, "y": -11.085367678358699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 7.007663486237212, "y": -11.131136516297008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 7.094990895420287, "y": -11.179748341202593, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 7.179834659588095, "y": -11.232589610831402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 7.262379293144455, "y": -11.288947837270827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 7.341944363791848, "y": -11.349457758744098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 7.418731849594219, "y": -11.413447530110355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 7.49129381536926, "y": -11.482181193726966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 7.560372399665011, "y": -11.554424551042176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 7.625120063902387, "y": -11.630547679849531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 7.685157125406976, "y": -11.710445929924456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 7.741207776815233, "y": -11.793199349738247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 7.7918098961899265, "y": -11.879371061584063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 7.83763589341285, "y": -11.96819772198219, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 7.878210892926216, "y": -12.05953196741411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 7.913511559997293, "y": -12.153041367180078, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 7.943157263830094, "y": -12.248487118352953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 7.967369086162853, "y": -12.345470961170111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 7.987633129843911, "y": -12.44334192433074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 8.003871222295137, "y": -12.541974078239164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 8.015266821605344, "y": -12.641277435892562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 8.023148557101752, "y": -12.740923756952713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 8.027546304798786, "y": -12.8407825757664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 8.028332959831944, "y": -12.940734215819312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 8.025443527617552, "y": -13.040647072885003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 8.018931196535686, "y": -13.140390536234541, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 8.008854340327526, "y": -13.239837960752514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 7.995213838414544, "y": -13.338861458475034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 7.978130799023368, "y": -13.437351520960005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 7.957949520359824, "y": -13.535252852752752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 7.934884196587897, "y": -13.632514755783625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 7.908883473729633, "y": -13.72902226218335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 7.878909059172425, "y": -13.82437475220814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 7.845373309037354, "y": -13.918534933575259, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 7.808372304692463, "y": -14.011389812687524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 7.766597454142467, "y": -14.102181332293464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 7.719828394810119, "y": -14.190516389017017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 7.669182654133927, "y": -14.276678749299734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 7.613625307205198, "y": -14.359769940386759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 7.554149129421942, "y": -14.440111266053165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 7.490361045696311, "y": -14.5170592258969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 7.422666840847379, "y": -14.590595811531932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 7.351656128387712, "y": -14.660944012013944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 7.277797090560115, "y": -14.72828505080995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 7.200107008163365, "y": -14.791155903694808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 7.118710240098129, "y": -14.849144621647559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 7.0346076683773076, "y": -14.903153152019101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 6.948137614346467, "y": -14.953275502056055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 6.859210070602529, "y": -14.998893263559967, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 6.768022598151631, "y": -15.03983329778346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 6.675432623951255, "y": -15.0774971071011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 6.581417729704037, "y": -15.111455167703712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 6.485931655206708, "y": -15.141022651361945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 6.389658309079223, "y": -15.167912890535483, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 6.292703122576372, "y": -15.19223846178348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 6.194987694158617, "y": -15.21327225905564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 6.096808575672359, "y": -15.23206886782341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 5.99838236607302, "y": -15.24952759529964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 5.899729317363885, "y": -15.265659085952837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 5.800835300149036, "y": -15.280209623811777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 5.70175164525027, "y": -15.293443553104295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 5.602681004362926, "y": -15.30677478702819, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 5.50366620036295, "y": -15.320511856303847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 5.404487584282567, "y": -15.332990747018638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 5.305314595369168, "y": -15.345528577271548, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 5.2061389687295625, "y": -15.358047288540336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 5.107007438164538, "y": -15.370864509492426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 5.00779358186143, "y": -15.383076888092976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 4.9085440314610365, "y": -15.394990464829103, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 4.809437782627827, "y": -15.408017731362621, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 4.710350066168057, "y": -15.421208082097143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 4.611253360919806, "y": -15.434343296877563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 4.512300736855016, "y": -15.448511749722156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 4.413233527485806, "y": -15.46183525720324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 4.31429450827105, "y": -15.476110643127216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 4.215344564992684, "y": -15.49030994671582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 4.116182028030822, "y": -15.502914267077355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 4.017143988345989, "y": -15.516463910675354, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 3.918157911964889, "y": -15.530409211309124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 3.8192952503647652, "y": -15.545178784090439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 3.7203274768946923, "y": -15.559253168176747, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 3.6214423567000034, "y": -15.57387601932951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 3.5227416847363013, "y": -15.589702341014156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 3.4238750949102794, "y": -15.604470424969863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 3.3250463655978333, "y": -15.619490317605813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 3.226057954299899, "y": -15.633395920992005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 3.127050640839644, "y": -15.647171459015903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 3.02812619277208, "y": -15.661529218667228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 2.929176919140478, "y": -15.675732883489777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 2.830114118542417, "y": -15.689099964655936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 2.731179801802461, "y": -15.703371283258235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 2.6322599821614996, "y": -15.717761953270793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 2.5333280328392127, "y": -15.732085359999095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 2.4346075188775873, "y": -15.747770351310114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 2.33585110184057, "y": -15.763256695086923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 2.2371807946104543, "y": -15.779280312610735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 2.13849823626006, "y": -15.795194952772265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 2.0398403128972404, "y": -15.811295166330153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 1.9413478862165925, "y": -15.828379783190886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 1.8427174447504515, "y": -15.84464900594954, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 1.7442416329189552, "y": -15.86182914094617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 1.6459847612895555, "y": -15.880219646279663, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 1.5477681463276545, "y": -15.898815990750647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 1.4494241849365737, "y": -15.916727442897413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 1.3513117099187604, "y": -15.935863872150179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 1.2533233274225866, "y": -15.95563201495852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 1.155302748973502, "y": -15.975241041842352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 1.0573700161924617, "y": -15.995251262889486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 0.9596749900085253, "y": -16.016421613448273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 0.8620153318262037, "y": -16.037754641987185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 0.7644030330396158, "y": -16.059301712282476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 0.6671303940410113, "y": -16.082334414653324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 0.5698388210746502, "y": -16.105286034637974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 0.4726617606030739, "y": -16.128722210578555, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 0.37565057135587454, "y": -16.152826739730703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 0.27870495348497965, "y": -16.17720379995135, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 0.18181820329406456, "y": -16.20181366921311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 0.08528785035167191, "y": -16.227771665023827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": -0.010782043550674825, "y": -16.255397162826412, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": -0.10657538115100569, "y": -16.283966037389803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": -0.20203657784262377, "y": -16.313624835223557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": -0.2966469057532226, "y": -16.345879843155462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": -0.39060211786129767, "y": -16.380007754193567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": -0.4839267319650499, "y": -16.415825683635422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": -0.5762171588892302, "y": -16.454215556604748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": -0.6672936397860846, "y": -16.495416052144346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": -0.7575578344083644, "y": -16.538360784164063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": -0.8462403769009973, "y": -16.58446875201201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": -0.9335371695180381, "y": -16.633167477423413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": -1.019224536543881, "y": -16.684620662128463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": -1.1031517884217334, "y": -16.738919914646775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": -1.1852636846013584, "y": -16.795909737098974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": -1.2653058095577072, "y": -16.855783118841828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": -1.343398335802365, "y": -16.918184000446928, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": -1.4191110321858094, "y": -16.983449794304683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": -1.4926174947063038, "y": -17.051184907474322, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": -1.5642068765759727, "y": -17.120937453696325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": -1.6327363359097953, "y": -17.19371107021168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": -1.6994612385776982, "y": -17.26814267486951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": -1.762980929456722, "y": -17.345315706007007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": -1.823929880219133, "y": -17.42453927970305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": -1.882236974548463, "y": -17.505726362707165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": -1.9379109490229955, "y": -17.588744574725453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": -1.9913928070935352, "y": -17.673194568359254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": -2.0417497058583045, "y": -17.75953187919758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": -2.0899267835047697, "y": -17.84711822896458, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": -2.1355194050488575, "y": -17.936064915705384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": -2.178371606278283, "y": -18.026373619855452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": -2.2192518830580874, "y": -18.11759227975901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": -2.2573851169723005, "y": -18.209989291336232, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": -2.293568933464025, "y": -18.303172209015493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": -2.3275473823195925, "y": -18.397174290032527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": -2.359450836818192, "y": -18.491908933725572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": -2.390282576760052, "y": -18.586998078622337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": -2.419146589990838, "y": -18.682699551813496, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": -2.4468090378673693, "y": -18.77875919480724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": -2.4740738873216968, "y": -18.874931494428267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": -2.499694053582077, "y": -18.97155589442949, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": -2.5256486909914093, "y": -19.06809122113674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": -2.551259144358697, "y": -19.16471612159381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": -2.575152939125569, "y": -19.261781518630688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": -2.599851203308354, "y": -19.358645307580456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": -2.622787099353616, "y": -19.455937867375606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": -2.6462313099129537, "y": -19.553112360447102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": -2.668300692883585, "y": -19.65060781924587, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": -2.6902753750115758, "y": -19.748125176897155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": -2.7112561818341585, "y": -19.845861202776256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": -2.7320111066067705, "y": -19.943642024844106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": -2.751926474717214, "y": -20.04159779865812, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": -2.7717013556445624, "y": -20.13958331050643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": -2.7907703153125607, "y": -20.237706716727462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": -2.8094903731878658, "y": -20.335898435914416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": -2.827832086389903, "y": -20.434163722283945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": -2.8452428214703502, "y": -20.532598720491464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": -2.8612533473797224, "y": -20.631270069575148, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": -2.877161507547038, "y": -20.729959221017612, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": -2.892883122563659, "y": -20.828676747189697, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": -2.9089878695378384, "y": -20.92733449507319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": -2.9257240418410952, "y": -21.025883365233785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": -2.9438454947260015, "y": -21.124190476897127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": -2.9642577043602882, "y": -21.22204062954508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": -2.986360715862393, "y": -21.319528712972936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": -3.010984262949069, "y": -21.416402306532436, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": -3.0384909503497184, "y": -21.51250322565699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": -3.0693285391817717, "y": -21.607578953568357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": -3.1037631916253563, "y": -21.701419842515364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": -3.1412245456967995, "y": -21.794092267238213, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": -3.183397664695475, "y": -21.884707497410425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": -3.2289211852673847, "y": -21.97369402380662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": -3.279629778220867, "y": -22.059812906046425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": -3.33501874949519, "y": -22.143006980554645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": -3.395122865915616, "y": -22.222854101121435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": -3.460255912969519, "y": -22.298654297860423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": -3.5306444729701547, "y": -22.369578249807223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": -3.605614026799297, "y": -22.43567063234638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": -3.6851573951701093, "y": -22.496174793812738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": -3.768835082362925, "y": -22.55082446485453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": -3.8564963112689883, "y": -22.59882866302537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": -3.9470746808042643, "y": -22.641034635468444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": -4.04034614922513, "y": -22.67697382903993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": -4.135052683701019, "y": -22.708929999769392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": -4.231239305361678, "y": -22.73610677306785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": -4.328700659736979, "y": -22.758283052871164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": -4.427151881689959, "y": -22.77554055708707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": -4.526365336919766, "y": -22.78768206148478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": -4.626039004555671, "y": -22.795102097630334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": -4.72594840940507, "y": -22.79792525376371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": -4.825882950681985, "y": -22.79615536111711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": -4.925636822594655, "y": -22.789813894590626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "centerline_waypoints": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -5.024962436856354, "y_m": -22.778604316253958, "d_right": 1.4216261880728818, "d_left": 1.573201480886038, "psi_rad": 2.9837222720526553, "kappa_radpm": -0.23364972569625664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 1, "s_m": 0.1, "d_m": 0.0, "x_m": -5.123670944512135, "y_m": -22.762890402810378, "d_right": 1.4233051708961848, "d_left": 1.5722776915355614, "psi_rad": 2.9603572994830296, "kappa_radpm": -0.3547304073769708, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 2, "s_m": 0.2, "d_m": 0.0, "x_m": -5.2215329592390765, "y_m": -22.742583539187446, "d_right": 1.4273276930683083, "d_left": 1.5823403172458088, "psi_rad": 2.912776190577261, "kappa_radpm": -0.48084690744520486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 3, "s_m": 0.30000000000000004, "d_m": 0.0, "x_m": -5.318298747987133, "y_m": -22.717562504961297, "d_right": 1.433496405719109, "d_left": 1.6030771010202396, "psi_rad": 2.8641879179939886, "kappa_radpm": -0.486723687325159, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 4, "s_m": 0.4, "d_m": 0.0, "x_m": -5.413733417838098, "y_m": -22.687855120824988, "d_right": 1.4417383190311954, "d_left": 1.6113419799432462, "psi_rad": 2.8154314531122293, "kappa_radpm": -0.48532613792414026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 5, "s_m": 0.5, "d_m": 0.0, "x_m": -5.507602934557472, "y_m": -22.653532011028705, "d_right": 1.451996016260832, "d_left": 1.6235912003415751, "psi_rad": 2.7671226904091606, "kappa_radpm": -0.5220850265485422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 6, "s_m": 0.6000000000000001, "d_m": 0.0, "x_m": -5.599727916255872, "y_m": -22.61475657824462, "d_right": 1.4616924109371485, "d_left": 1.6420618512713971, "psi_rad": 2.711014447802521, "kappa_radpm": -0.6279724540194231, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 7, "s_m": 0.7000000000000001, "d_m": 0.0, "x_m": -5.689134059622661, "y_m": -22.570150947527793, "d_right": 1.4617203740411673, "d_left": 1.6528507403311752, "psi_rad": 2.641528199605276, "kappa_radpm": -0.7333982002969464, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 8, "s_m": 0.8, "d_m": 0.0, "x_m": -5.77498809328744, "y_m": -22.518996839113235, "d_right": 1.4611296407943344, "d_left": 1.674478818317381, "psi_rad": 2.5643348077431316, "kappa_radpm": -0.7691375977093218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 9, "s_m": 0.9, "d_m": 0.0, "x_m": -5.856474412812163, "y_m": -22.461169495719908, "d_right": 1.4593973361751693, "d_left": 1.6501474828016958, "psi_rad": 2.4877006800634116, "kappa_radpm": -0.7747729472252485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 10, "s_m": 1.0, "d_m": 0.0, "x_m": -5.933510124382924, "y_m": -22.397511286491206, "d_right": 1.4571703284605544, "d_left": 1.57315520095069, "psi_rad": 2.409380218298082, "kappa_radpm": -0.7994797930605535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 11, "s_m": 1.1, "d_m": 0.0, "x_m": -6.004983289752657, "y_m": -22.32767341607033, "d_right": 1.4534795256790907, "d_left": 1.5023880935888363, "psi_rad": 2.327804721451301, "kappa_radpm": -0.8004671567751309, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 12, "s_m": 1.2000000000000002, "d_m": 0.0, "x_m": -6.070664505674698, "y_m": -22.252339578775025, "d_right": 1.4486695099013405, "d_left": 1.4360990818470014, "psi_rad": 2.2492867869430557, "kappa_radpm": -0.7825444225278178, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 13, "s_m": 1.3, "d_m": 0.0, "x_m": -6.130337912423816, "y_m": -22.17217894936661, "d_right": 1.4403319376056742, "d_left": 1.3762131710749128, "psi_rad": 2.1712958369457374, "kappa_radpm": -0.7570239202573714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 14, "s_m": 1.4000000000000001, "d_m": 0.0, "x_m": -6.183511172552238, "y_m": -22.08756873568825, "d_right": 1.4269873974314102, "d_left": 1.3260964897454477, "psi_rad": 2.0978820028915814, "kappa_radpm": -0.7047195791757277, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 15, "s_m": 1.5, "d_m": 0.0, "x_m": -6.230819167977402, "y_m": -21.99953337434628, "d_right": 1.4137850573636437, "d_left": 1.2881044352119335, "psi_rad": 2.030351921110592, "kappa_radpm": -0.6678752941260491, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 16, "s_m": 1.6, "d_m": 0.0, "x_m": -6.272117090253706, "y_m": -21.90852904729845, "d_right": 1.4008814806030667, "d_left": 1.2634326828125202, "psi_rad": 1.9643069440663716, "kappa_radpm": -0.6422298797720505, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 17, "s_m": 1.7000000000000002, "d_m": 0.0, "x_m": -6.307418255494868, "y_m": -21.81503046320148, "d_right": 1.3885505211007139, "d_left": 1.2492302157673922, "psi_rad": 1.9019059451561817, "kappa_radpm": -0.6021201909129092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 18, "s_m": 1.8, "d_m": 0.0, "x_m": -6.33706943910823, "y_m": -21.71958508252596, "d_right": 1.3724992396086317, "d_left": 1.219651085111574, "psi_rad": 1.8438829058837898, "kappa_radpm": -0.5595112783171041, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 19, "s_m": 1.9000000000000001, "d_m": 0.0, "x_m": -6.36130836255311, "y_m": -21.62262350575625, "d_right": 1.3562296667179035, "d_left": 1.1954723459489387, "psi_rad": 1.790003689492761, "kappa_radpm": -0.5067641374212195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 20, "s_m": 2.0, "d_m": 0.0, "x_m": -6.380523840185805, "y_m": -21.52453625337537, "d_right": 1.3420654969501469, "d_left": 1.1763006229081632, "psi_rad": 1.7425300783995459, "kappa_radpm": -0.44261802857744614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 21, "s_m": 2.1, "d_m": 0.0, "x_m": -6.3954623147777445, "y_m": -21.42570514646261, "d_right": 1.3258038828534853, "d_left": 1.161391644777038, "psi_rad": 1.7014800837772717, "kappa_radpm": -0.3899823975601968, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 22, "s_m": 2.2, "d_m": 0.0, "x_m": -6.406569552505966, "y_m": -21.326368767615993, "d_right": 1.3044103656846706, "d_left": 1.1503023948165516, "psi_rad": 1.6645335988875065, "kappa_radpm": -0.34645764648015165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 23, "s_m": 2.3000000000000003, "d_m": 0.0, "x_m": -6.414171192529959, "y_m": -21.226701602547614, "d_right": 1.2869298767422856, "d_left": 1.1446374745473116, "psi_rad": 1.6321885544812413, "kappa_radpm": -0.2983174448119208, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 24, "s_m": 2.4000000000000004, "d_m": 0.0, "x_m": -6.418833762999835, "y_m": -21.126851676883923, "d_right": 1.2741198353234182, "d_left": 1.1506166626160739, "psi_rad": 1.6048701099251224, "kappa_radpm": -0.27757037022613673, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 25, "s_m": 2.5, "d_m": 0.0, "x_m": -6.420981327303555, "y_m": -21.026914600033717, "d_right": 1.2665616601463385, "d_left": 1.1648602701504247, "psi_rad": 1.576674480436014, "kappa_radpm": -0.2674873711218584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 26, "s_m": 2.6, "d_m": 0.0, "x_m": -6.420008742100002, "y_m": -20.926964835032653, "d_right": 1.2637508078863815, "d_left": 1.1852309376327785, "psi_rad": 1.5513726357007507, "kappa_radpm": -0.1949434032542563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 27, "s_m": 2.7, "d_m": 0.0, "x_m": -6.417098616914577, "y_m": -20.827044139341634, "d_right": 1.2608397572638401, "d_left": 1.1894645313183136, "psi_rad": 1.5376857997851627, "kappa_radpm": -0.09805828167475217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 28, "s_m": 2.8000000000000003, "d_m": 0.0, "x_m": -6.413390332366062, "y_m": -20.727149502820133, "d_right": 1.257130175270444, "d_left": 1.1931731906911685, "psi_rad": 1.5317609793658002, "kappa_radpm": -0.0334112120862462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 29, "s_m": 2.9000000000000004, "d_m": 0.0, "x_m": -6.409296392802422, "y_m": -20.627269798346777, "d_right": 1.2530347096242849, "d_left": 1.1972675938453723, "psi_rad": 1.5310035573679135, "kappa_radpm": 0.022870446837570668, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 30, "s_m": 3.0, "d_m": 0.0, "x_m": -6.405436785890795, "y_m": -20.527380849024997, "d_right": 1.2491737199956225, "d_left": 1.2011276131451323, "psi_rad": 1.5363350687333144, "kappa_radpm": 0.08867814822014486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 31, "s_m": 3.1, "d_m": 0.0, "x_m": -6.4024081012674685, "y_m": -20.42746384490367, "d_right": 1.2461440594509938, "d_left": 1.2041565495576716, "psi_rad": 1.5487391870119425, "kappa_radpm": 0.16371943894029295, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 32, "s_m": 3.2, "d_m": 0.0, "x_m": -6.401027527024368, "y_m": -20.32751160821659, "d_right": 1.244762885907934, "d_left": 1.205537184074667, "psi_rad": 1.569078956521373, "kappa_radpm": 0.17318564781473977, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 33, "s_m": 3.3000000000000003, "d_m": 0.0, "x_m": -6.402064786739443, "y_m": -20.22755693152622, "d_right": 1.24579906460224, "d_left": 1.2051879545641069, "psi_rad": 1.5833763165748904, "kappa_radpm": 0.11241176635909067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 34, "s_m": 3.4000000000000004, "d_m": 0.0, "x_m": -6.403542489147323, "y_m": -20.12760449413028, "d_right": 1.247275545819968, "d_left": 1.2072360509865188, "psi_rad": 1.591561309793191, "kappa_radpm": 0.04629431123364669, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 35, "s_m": 3.5, "d_m": 0.0, "x_m": -6.406215877723583, "y_m": -20.02767743542419, "d_right": 1.2499469289572966, "d_left": 1.2163313026982792, "psi_rad": 1.5926351788216198, "kappa_radpm": -0.046869906919356774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 36, "s_m": 3.6, "d_m": 0.0, "x_m": -6.407908149758211, "y_m": -19.92773288286776, "d_right": 1.2305191175091623, "d_left": 1.2344442215248814, "psi_rad": 1.5821873284093197, "kappa_radpm": -0.060310273543480175, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 37, "s_m": 3.7, "d_m": 0.0, "x_m": -6.408493110555328, "y_m": -19.82777101683875, "d_right": 1.2143823771587274, "d_left": 1.2481134230919162, "psi_rad": 1.5805731241129237, "kappa_radpm": 0.04383583009351488, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 38, "s_m": 3.8000000000000003, "d_m": 0.0, "x_m": -6.409862707236397, "y_m": -19.72782128214066, "d_right": 1.2071248215797905, "d_left": 1.2467437307888156, "psi_rad": 1.5909544944280227, "kappa_radpm": 0.09036889398029602, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 39, "s_m": 3.9000000000000004, "d_m": 0.0, "x_m": -6.412522828093151, "y_m": -19.62789314257895, "d_right": 1.2071671035229505, "d_left": 1.2440833601506573, "psi_rad": 1.598646902908983, "kappa_radpm": 0.049135751027076235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 40, "s_m": 4.0, "d_m": 0.0, "x_m": -6.415430067983339, "y_m": -19.527971871483487, "d_right": 1.2097827888202903, "d_left": 1.2411758128895471, "psi_rad": 1.600781644633438, "kappa_radpm": 0.01796524011519751, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 41, "s_m": 4.1000000000000005, "d_m": 0.0, "x_m": -6.418516805687103, "y_m": -19.428055972771066, "d_right": 1.2128642174890785, "d_left": 1.2380887221978059, "psi_rad": 1.6022399509320224, "kappa_radpm": 0.011202358846426064, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 42, "s_m": 4.2, "d_m": 0.0, "x_m": -6.421715465045637, "y_m": -19.328143587127705, "d_right": 1.2160573849740453, "d_left": 1.2348896799309517, "psi_rad": 1.6030221164027232, "kappa_radpm": 0.004441814476485728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 43, "s_m": 4.3, "d_m": 0.0, "x_m": -6.424958500780659, "y_m": -19.228232628978752, "d_right": 1.2192948772513996, "d_left": 1.2316462493289475, "psi_rad": 1.6031283138273196, "kappa_radpm": -0.0023177017149922374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 44, "s_m": 4.4, "d_m": 0.0, "x_m": -6.428178381002756, "y_m": -19.12832092312922, "d_right": 1.2225092939224105, "d_left": 1.233506727987765, "psi_rad": 1.6025585760597247, "kappa_radpm": -0.04688922449950228, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 45, "s_m": 4.5, "d_m": 0.0, "x_m": -6.431307568350006, "y_m": -19.02840634125704, "d_right": 1.225633224194098, "d_left": 1.243516827079547, "psi_rad": 1.5937504689274191, "kappa_radpm": -0.06349506973730268, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 46, "s_m": 4.6000000000000005, "d_m": 0.0, "x_m": -6.4327669485225325, "y_m": -18.92845452991675, "d_right": 1.2270899454542619, "d_left": 1.2630210542889029, "psi_rad": 1.5898595621122642, "kappa_radpm": 0.042165021669365865, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 47, "s_m": 4.7, "d_m": 0.0, "x_m": -6.435118437970913, "y_m": -18.82852379697062, "d_right": 1.2294373717058231, "d_left": 1.2718546389742087, "psi_rad": 1.6021834732612923, "kappa_radpm": 0.11386326140482628, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 48, "s_m": 4.800000000000001, "d_m": 0.0, "x_m": -6.439040700109055, "y_m": -18.72863734499804, "d_right": 1.23335285439539, "d_left": 1.2679316351941183, "psi_rad": 1.6126322143932295, "kappa_radpm": 0.07643752168347229, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 49, "s_m": 4.9, "d_m": 0.0, "x_m": -6.443480089363815, "y_m": -18.62877250686392, "d_right": 1.2377843652399703, "d_left": 1.2634911165216358, "psi_rad": 1.6174709775979867, "kappa_radpm": 0.045001256544243695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 50, "s_m": 5.0, "d_m": 0.0, "x_m": -6.448368809587651, "y_m": -18.528928627301323, "d_right": 1.2426642060774498, "d_left": 1.258600872795898, "psi_rad": 1.6216324657020782, "kappa_radpm": 0.0382341930030039, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 51, "s_m": 5.1000000000000005, "d_m": 0.0, "x_m": -6.453639211010856, "y_m": -18.429104142841915, "d_right": 1.2479248577040656, "d_left": 1.253328571420096, "psi_rad": 1.6251178161985875, "kappa_radpm": 0.031478325602938284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 52, "s_m": 5.2, "d_m": 0.0, "x_m": -6.459223791206269, "y_m": -18.32929672123356, "d_right": 1.2534989734600996, "d_left": 1.2477417527936154, "psi_rad": 1.6279281308226659, "kappa_radpm": 0.024732911569144145, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 53, "s_m": 5.300000000000001, "d_m": 0.0, "x_m": -6.465055185009409, "y_m": -18.229503399516506, "d_right": 1.2593193620030996, "d_left": 1.2482517670405102, "psi_rad": 1.6300643985124164, "kappa_radpm": 0.017996513128619718, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 54, "s_m": 5.4, "d_m": 0.0, "x_m": -6.471066145393919, "y_m": -18.12972072074969, "d_right": 1.2653189614246836, "d_left": 1.2490445218494786, "psi_rad": 1.6315274334483898, "kappa_radpm": 0.011267147273827938, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 55, "s_m": 5.5, "d_m": 0.0, "x_m": -6.477189517268105, "y_m": -18.029944869518992, "d_right": 1.2657071081557747, "d_left": 1.2576948666094685, "psi_rad": 1.632317827967182, "kappa_radpm": -0.03250822548355847, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 56, "s_m": 5.6000000000000005, "d_m": 0.0, "x_m": -6.483358206125797, "y_m": -17.930171806468593, "d_right": 1.249110588046875, "d_left": 1.274064065530289, "psi_rad": 1.625025788351678, "kappa_radpm": -0.07001517626777032, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 57, "s_m": 5.7, "d_m": 0.0, "x_m": -6.488025773540878, "y_m": -17.83031847948358, "d_right": 1.2388721922049852, "d_left": 1.2694039578550607, "psi_rad": 1.6183147927136279, "kappa_radpm": -0.02310881686560795, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 58, "s_m": 5.800000000000001, "d_m": 0.0, "x_m": -6.492854799704076, "y_m": -17.73047165759827, "d_right": 1.2368168669047104, "d_left": 1.264582816110745, "psi_rad": 1.6204040249785565, "kappa_radpm": 0.021008263550261752, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 59, "s_m": 5.9, "d_m": 0.0, "x_m": -6.497939620462056, "y_m": -17.630637511764334, "d_right": 1.2419042135256906, "d_left": 1.2595066161072488, "psi_rad": 1.6225164454236802, "kappa_radpm": 0.016630152959671296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 60, "s_m": 6.0, "d_m": 0.0, "x_m": -6.503190441294616, "y_m": -17.53081194346026, "d_right": 1.2471577375180987, "d_left": 1.2542649484581327, "psi_rad": 1.6237300555704908, "kappa_radpm": 0.007644950331704425, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 61, "s_m": 6.1000000000000005, "d_m": 0.0, "x_m": -6.5085175675455, "y_m": -17.43099041054766, "d_right": 1.2524876513204486, "d_left": 1.2489472798481125, "psi_rad": 1.6240454354900211, "kappa_radpm": -0.001336486070585563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 62, "s_m": 6.2, "d_m": 0.0, "x_m": -6.513831353650148, "y_m": -17.33116816737228, "d_right": 1.25780421050999, "d_left": 1.2437862737997143, "psi_rad": 1.6234627583563737, "kappa_radpm": -0.01031829544262508, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 63, "s_m": 6.300000000000001, "d_m": 0.0, "x_m": -6.519042148339443, "y_m": -17.231340504150854, "d_right": 1.2630176658409422, "d_left": 1.2467482709034552, "psi_rad": 1.621981776401496, "kappa_radpm": -0.019304584638216715, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 64, "s_m": 6.4, "d_m": 0.0, "x_m": -6.524060240326011, "y_m": -17.131502986433723, "d_right": 1.2680382158258103, "d_left": 1.2578646823531268, "psi_rad": 1.6196018414287303, "kappa_radpm": -0.028299082070261106, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 65, "s_m": 6.5, "d_m": 0.0, "x_m": -6.528795808981897, "y_m": -17.031651695424195, "d_right": 1.2727759643731633, "d_left": 1.2770100308669794, "psi_rad": 1.6163219599874439, "kappa_radpm": 0.008674709130057634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 66, "s_m": 6.6000000000000005, "d_m": 0.0, "x_m": -6.533158884548101, "y_m": -16.931783469834397, "d_right": 1.2771408880069892, "d_left": 1.2736881942870986, "psi_rad": 1.6213367832547418, "kappa_radpm": 0.062330396248778674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 67, "s_m": 6.7, "d_m": 0.0, "x_m": -6.538895601101595, "y_m": -16.831986082268386, "d_right": 1.2828809166843345, "d_left": 1.2679565993925432, "psi_rad": 1.6287880392371996, "kappa_radpm": 0.03651157238309888, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 68, "s_m": 6.800000000000001, "d_m": 0.0, "x_m": -6.544746419320646, "y_m": -16.732193880291224, "d_right": 1.2887351496169976, "d_left": 1.26211111692133, "psi_rad": 1.6286390977313616, "kappa_radpm": -0.009630315972819492, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 69, "s_m": 6.9, "d_m": 0.0, "x_m": -6.550453489912237, "y_m": -16.632393364407807, "d_right": 1.2944454566447137, "d_left": 1.2564092303929117, "psi_rad": 1.6268619760426357, "kappa_radpm": -0.03768688632112993, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 70, "s_m": 7.0, "d_m": 0.0, "x_m": -6.555949584753737, "y_m": -16.532581022750676, "d_right": 1.2999445362599793, "d_left": 1.2509180627647138, "psi_rad": 1.6211017204671356, "kappa_radpm": -0.08090107372460742, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 71, "s_m": 7.1000000000000005, "d_m": 0.0, "x_m": -6.560506329837642, "y_m": -16.432725739402663, "d_right": 1.2933412733201288, "d_left": 1.2463650655872243, "psi_rad": 1.6106817612977142, "kappa_radpm": -0.08041001836070816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 72, "s_m": 7.2, "d_m": 0.0, "x_m": -6.56392134718495, "y_m": -16.332820513808123, "d_right": 1.2759344516126674, "d_left": 1.2446546349312968, "psi_rad": 1.605019716794994, "kappa_radpm": -0.03002150644506263, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 73, "s_m": 7.300000000000001, "d_m": 0.0, "x_m": -6.5673471791841225, "y_m": -16.232915656937518, "d_right": 1.2662142748001892, "d_left": 1.25094482193955, "psi_rad": 1.6046774600087017, "kappa_radpm": -0.00792818196268863, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 74, "s_m": 7.4, "d_m": 0.0, "x_m": -6.570693809058754, "y_m": -16.133008122862584, "d_right": 1.2642679872310307, "d_left": 1.2652048752014073, "psi_rad": 1.6034340804024563, "kappa_radpm": -0.01694113037782219, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 75, "s_m": 7.5, "d_m": 0.0, "x_m": -6.573871190642727, "y_m": -16.033095079101024, "d_right": 1.267446187043667, "d_left": 1.2826953817840219, "psi_rad": 1.6012892339331373, "kappa_radpm": 0.019310618141941127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 76, "s_m": 7.6000000000000005, "d_m": 0.0, "x_m": -6.576789217174213, "y_m": -15.933174149498353, "d_right": 1.2703649502306762, "d_left": 1.2797777082625845, "psi_rad": 1.6072962040308445, "kappa_radpm": 0.07285716096084416, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 77, "s_m": 7.7, "d_m": 0.0, "x_m": -6.581166626517179, "y_m": -15.83330822009748, "d_right": 1.2747437078929438, "d_left": 1.2754010479199487, "psi_rad": 1.615860666125306, "kappa_radpm": 0.04834797458814655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 78, "s_m": 7.800000000000001, "d_m": 0.0, "x_m": -6.585795666914642, "y_m": -15.73345187910641, "d_right": 1.2793742076139734, "d_left": 1.2707728394631046, "psi_rad": 1.6169657989484738, "kappa_radpm": 0.0022957107485388484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 79, "s_m": 7.9, "d_m": 0.0, "x_m": -6.5903938785590395, "y_m": -15.633594115783321, "d_right": 1.2839738665271272, "d_left": 1.266175464941401, "psi_rad": 1.6163198082750139, "kappa_radpm": -0.009833253387608876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 80, "s_m": 8.0, "d_m": 0.0, "x_m": -6.594893902186729, "y_m": -15.533731886580297, "d_right": 1.2884752897252099, "d_left": 1.2616762605645164, "psi_rad": 1.614999148270952, "kappa_radpm": -0.016581838981488684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 81, "s_m": 8.1, "d_m": 0.0, "x_m": -6.59922834094991, "y_m": -15.433862345452715, "d_right": 1.2928110469933145, "d_left": 1.2573426000398875, "psi_rad": 1.6130034404787161, "kappa_radpm": -0.023335029184311518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 82, "s_m": 8.200000000000001, "d_m": 0.0, "x_m": -6.603329736914142, "y_m": -15.333982979721668, "d_right": 1.2969136513081467, "d_left": 1.2565134469616472, "psi_rad": 1.6103321424340897, "kappa_radpm": -0.030094249682330876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 83, "s_m": 8.3, "d_m": 0.0, "x_m": -6.607130552210842, "y_m": -15.234091746580518, "d_right": 1.3007155420433005, "d_left": 1.2639155934281066, "psi_rad": 1.60698459054225, "kappa_radpm": -0.07247892481131002, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 84, "s_m": 8.4, "d_m": 0.0, "x_m": -6.610563156790991, "y_m": -15.134187210413932, "d_right": 1.304149074799455, "d_left": 1.2794724647550444, "psi_rad": 1.5958363574718277, "kappa_radpm": -0.09256545221103973, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 85, "s_m": 8.5, "d_m": 0.0, "x_m": -6.612135935886979, "y_m": -15.03423825731962, "d_right": 1.3057223454670848, "d_left": 1.2944563605755965, "psi_rad": 1.588471500100042, "kappa_radpm": 0.0074318974540354965, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 86, "s_m": 8.6, "d_m": 0.0, "x_m": -6.614096599720036, "y_m": -14.934298083594355, "d_right": 1.3043657660310208, "d_left": 1.2924955432018659, "psi_rad": 1.5973227369626348, "kappa_radpm": 0.0848143147119873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 87, "s_m": 8.700000000000001, "d_m": 0.0, "x_m": -6.61743842524219, "y_m": -14.834390424020906, "d_right": 1.2882014173067105, "d_left": 1.2891533280461032, "psi_rad": 1.6054343630424395, "kappa_radpm": 0.05088154704156023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 88, "s_m": 8.8, "d_m": 0.0, "x_m": -6.621020291732224, "y_m": -14.734491063910319, "d_right": 1.2798390875600967, "d_left": 1.2855710079414684, "psi_rad": 1.6074990463709469, "kappa_radpm": 0.017267497969838397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 89, "s_m": 8.9, "d_m": 0.0, "x_m": -6.624774644150404, "y_m": -14.634598024013957, "d_right": 1.271999084137231, "d_left": 1.2818161533814703, "psi_rad": 1.6088878626364072, "kappa_radpm": 0.010510542476747098, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 90, "s_m": 9.0, "d_m": 0.0, "x_m": -6.628633981017918, "y_m": -14.534708976835804, "d_right": 1.2720958106912252, "d_left": 1.2779562842927152, "psi_rad": 1.6096011548662963, "kappa_radpm": 0.0037562438587590563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 91, "s_m": 9.1, "d_m": 0.0, "x_m": -6.632530835871668, "y_m": -14.43482138315371, "d_right": 1.2759924874434818, "d_left": 1.2740588872659044, "psi_rad": 1.609639111408159, "kappa_radpm": -0.002997025614570603, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 92, "s_m": 9.200000000000001, "d_m": 0.0, "x_m": -6.636397755655501, "y_m": -14.334932628163838, "d_right": 1.2798592410104872, "d_left": 1.274996363981778, "psi_rad": 1.6090017497433822, "kappa_radpm": -0.0097509817833219, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 93, "s_m": 9.3, "d_m": 0.0, "x_m": -6.640167277979348, "y_m": -14.235040157477943, "d_right": 1.2836286122087164, "d_left": 1.2838376388022916, "psi_rad": 1.6076889150514946, "kappa_radpm": -0.051756572759441566, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 94, "s_m": 9.4, "d_m": 0.0, "x_m": -6.6437719091734495, "y_m": -14.135141613220574, "d_right": 1.2872331094597917, "d_left": 1.3004876223047992, "psi_rad": 1.5986504351914939, "kappa_radpm": -0.08989533482186673, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 95, "s_m": 9.5, "d_m": 0.0, "x_m": -6.64573510491958, "y_m": -14.035199370936372, "d_right": 1.289196235193351, "d_left": 1.3111888371564615, "psi_rad": 1.5897098480871212, "kappa_radpm": -0.02970357901538323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 96, "s_m": 9.600000000000001, "d_m": 0.0, "x_m": -6.6475529702689515, "y_m": -13.935252329200475, "d_right": 1.291014038919502, "d_left": 1.3093710440466242, "psi_rad": 1.5927097193884172, "kappa_radpm": 0.07139734190999669, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 97, "s_m": 9.700000000000001, "d_m": 0.0, "x_m": -6.650115709106744, "y_m": -13.835326030374285, "d_right": 1.2935766930676154, "d_left": 1.3068080939933175, "psi_rad": 1.6039893164691206, "kappa_radpm": 0.10299268002560091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 98, "s_m": 9.8, "d_m": 0.0, "x_m": -6.654187592897514, "y_m": -13.73544550567604, "d_right": 1.29764844491746, "d_left": 1.3027353331507157, "psi_rad": 1.6133082553935374, "kappa_radpm": 0.0625739818338944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 99, "s_m": 9.9, "d_m": 0.0, "x_m": -6.658612418714436, "y_m": -13.635579966823352, "d_right": 1.3020731348115695, "d_left": 1.2983093707755413, "psi_rad": 1.6165041128358995, "kappa_radpm": 0.028580256930430536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 100, "s_m": 10.0, "d_m": 0.0, "x_m": -6.663322625176378, "y_m": -13.535727458891209, "d_right": 1.3067832076972383, "d_left": 1.293597795688113, "psi_rad": 1.6190243067796235, "kappa_radpm": 0.021827350555966296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 101, "s_m": 10.100000000000001, "d_m": 0.0, "x_m": -6.668250755660997, "y_m": -13.435885452026696, "d_right": 1.2920385773206189, "d_left": 1.2886681060109224, "psi_rad": 1.6208695829470927, "kappa_radpm": 0.015081135658847611, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 102, "s_m": 10.200000000000001, "d_m": 0.0, "x_m": -6.673329441600393, "y_m": -13.336050978329542, "d_right": 1.2792985287278063, "d_left": 1.2898883157332046, "psi_rad": 1.622040533911393, "kappa_radpm": 0.00833987745280762, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 103, "s_m": 10.3, "d_m": 0.0, "x_m": -6.678491379514714, "y_m": -13.236220767821, "d_right": 1.274379709800409, "d_left": 1.298741275668476, "psi_rad": 1.6225375584376542, "kappa_radpm": -0.033128261854662444, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 104, "s_m": 10.4, "d_m": 0.0, "x_m": -6.683669303720171, "y_m": -13.136391383718117, "d_right": 1.2773052864517276, "d_left": 1.3151388232347179, "psi_rad": 1.6154148815404605, "kappa_radpm": -0.07134390047793815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 105, "s_m": 10.5, "d_m": 0.0, "x_m": -6.687408563360043, "y_m": -13.036499696137616, "d_right": 1.2810423232912143, "d_left": 1.3200221465597324, "psi_rad": 1.6082687783420666, "kappa_radpm": -0.029738550932049135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 106, "s_m": 10.600000000000001, "d_m": 0.0, "x_m": -6.691159237241287, "y_m": -12.93660655155585, "d_right": 1.28479081793507, "d_left": 1.3162766989893704, "psi_rad": 1.6094671713540507, "kappa_radpm": 0.015156385908489112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 107, "s_m": 10.700000000000001, "d_m": 0.0, "x_m": -6.6951379809314195, "y_m": -12.836722206659552, "d_right": 1.2887672305964064, "d_left": 1.3123036982708434, "psi_rad": 1.6113000555237644, "kappa_radpm": 0.013826657836216727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 108, "s_m": 10.8, "d_m": 0.0, "x_m": -6.699254815553709, "y_m": -12.736843443082275, "d_right": 1.2928816505798912, "d_left": 1.3081929503065146, "psi_rad": 1.612232502921294, "kappa_radpm": 0.004824015628436262, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 109, "s_m": 10.9, "d_m": 0.0, "x_m": -6.703419826871137, "y_m": -12.636966671426226, "d_right": 1.2970442352327876, "d_left": 1.3040341782248226, "psi_rad": 1.6122648586494517, "kappa_radpm": -0.004176783421568908, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 110, "s_m": 11.0, "d_m": 0.0, "x_m": -6.707543124845461, "y_m": -12.537088173012704, "d_right": 1.3011651652932208, "d_left": 1.2999170710762984, "psi_rad": 1.6113971462369803, "kappa_radpm": 0.029822686360385653, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 111, "s_m": 11.100000000000001, "d_m": 0.0, "x_m": -6.711534800638192, "y_m": -12.437204341280342, "d_right": 1.3051545980866504, "d_left": 1.2960081868834927, "psi_rad": 1.6182293959215288, "kappa_radpm": 0.08282049906939704, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 112, "s_m": 11.200000000000001, "d_m": 0.0, "x_m": -6.7170223451638735, "y_m": -12.337393944081226, "d_right": 1.3106386073717913, "d_left": 1.2983039661083542, "psi_rad": 1.6279612460508597, "kappa_radpm": 0.06225037583743931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 113, "s_m": 11.3, "d_m": 0.0, "x_m": -6.722957227967021, "y_m": -12.237606710600991, "d_right": 1.3165696059793432, "d_left": 1.3078124532297164, "psi_rad": 1.6306794710890167, "kappa_radpm": 0.016687396100052432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 114, "s_m": 11.4, "d_m": 0.0, "x_m": -6.7289874555994835, "y_m": -12.137825185680166, "d_right": 1.3225959207645643, "d_left": 1.3247231565786473, "psi_rad": 1.6312987252708702, "kappa_radpm": 0.002830354534300028, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 115, "s_m": 11.5, "d_m": 0.0, "x_m": -6.7350459217684655, "y_m": -12.038045368878906, "d_right": 1.328650515709094, "d_left": 1.3218117782014553, "psi_rad": 1.6312455419958767, "kappa_radpm": -0.003894084461433245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 116, "s_m": 11.600000000000001, "d_m": 0.0, "x_m": -6.741065535922017, "y_m": -11.938263203572793, "d_right": 1.3339886673013577, "d_left": 1.3157976811248338, "psi_rad": 1.6305199083785835, "kappa_radpm": -0.010619996324684466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 117, "s_m": 11.700000000000001, "d_m": 0.0, "x_m": -6.7469791879107275, "y_m": -11.838474710675644, "d_right": 1.3163910921798743, "d_left": 1.3098894543594897, "psi_rad": 1.6291215427309398, "kappa_radpm": -0.017349993110684636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 118, "s_m": 11.8, "d_m": 0.0, "x_m": -6.752719713697708, "y_m": -11.738676122573821, "d_right": 1.3060545960427667, "d_left": 1.3041541543256827, "psi_rad": 1.6270499097564466, "kappa_radpm": -0.02408646222545774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 119, "s_m": 11.9, "d_m": 0.0, "x_m": -6.758219864004426, "y_m": -11.638864017641058, "d_right": 1.3030846690325177, "d_left": 1.29865892594956, "psi_rad": 1.6243042502858482, "kappa_radpm": -0.04458092548214165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 120, "s_m": 12.0, "d_m": 0.0, "x_m": -6.763412277796238, "y_m": -11.539035455657835, "d_right": 1.3074643293523862, "d_left": 1.2934710331896437, "psi_rad": 1.6181337246600183, "kappa_radpm": -0.0885313485574335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 121, "s_m": 12.100000000000001, "d_m": 0.0, "x_m": -6.767680050422482, "y_m": -11.439167380990634, "d_right": 1.3117263681531675, "d_left": 1.289206666156658, "psi_rad": 1.6065979805743615, "kappa_radpm": -0.09433131543723272, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 122, "s_m": 12.200000000000001, "d_m": 0.0, "x_m": -6.770568145039901, "y_m": -11.33924553360312, "d_right": 1.3146109875053116, "d_left": 1.2878767683328038, "psi_rad": 1.5992674615725717, "kappa_radpm": -0.04315072631198125, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 123, "s_m": 12.3, "d_m": 0.0, "x_m": -6.773371433604454, "y_m": -11.239321279980173, "d_right": 1.3174109287669002, "d_left": 1.2943736700386197, "psi_rad": 1.5979678353119653, "kappa_radpm": -0.0020880639805820334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 124, "s_m": 12.4, "d_m": 0.0, "x_m": -6.775999795902592, "y_m": -11.139392290978508, "d_right": 1.3200361780277057, "d_left": 1.3086694694469223, "psi_rad": 1.5988498487764553, "kappa_radpm": 0.04470284925268575, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 125, "s_m": 12.5, "d_m": 0.0, "x_m": -6.778979254968943, "y_m": -11.039476491424402, "d_right": 1.3230119995393868, "d_left": 1.3275937061363332, "psi_rad": 1.6069084051625024, "kappa_radpm": 0.07281917349444944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 126, "s_m": 12.600000000000001, "d_m": 0.0, "x_m": -6.78321774700482, "y_m": -10.939602814575526, "d_right": 1.3272451032508044, "d_left": 1.3233559766924403, "psi_rad": 1.6134136834753452, "kappa_radpm": 0.03288200600567892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 127, "s_m": 12.700000000000001, "d_m": 0.0, "x_m": -6.787497042587361, "y_m": -10.839730874207211, "d_right": 1.3315189882315965, "d_left": 1.31907746871101, "psi_rad": 1.6134848063636382, "kappa_radpm": -0.0026632567713325006, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 128, "s_m": 12.8, "d_m": 0.0, "x_m": -6.7917497412527466, "y_m": -10.739857799790585, "d_right": 1.3357663661351924, "d_left": 1.3148255604793746, "psi_rad": 1.6128810321210787, "kappa_radpm": -0.009413052933073818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 129, "s_m": 12.9, "d_m": 0.0, "x_m": -6.795908433131743, "y_m": -10.639980774371223, "d_right": 1.3399199341501795, "d_left": 1.310667638828359, "psi_rad": 1.6116021957770235, "kappa_radpm": -0.016165383891127982, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 130, "s_m": 13.0, "d_m": 0.0, "x_m": -6.7999056746949815, "y_m": -10.540097170338425, "d_right": 1.343912347159053, "d_left": 1.306671124480556, "psi_rad": 1.609647955342853, "kappa_radpm": -0.02292188199999101, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 131, "s_m": 13.100000000000001, "d_m": 0.0, "x_m": -6.803673967146334, "y_m": -10.440204685556463, "d_right": 1.34767619280992, "d_left": 1.302903494900569, "psi_rad": 1.6070178193770253, "kappa_radpm": -0.029683829842171994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 132, "s_m": 13.200000000000001, "d_m": 0.0, "x_m": -6.807145739397918, "y_m": -10.340301480077908, "d_right": 1.3440145413241575, "d_left": 1.2994323026857335, "psi_rad": 1.6037111893744187, "kappa_radpm": -0.03645201145044408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 133, "s_m": 13.3, "d_m": 0.0, "x_m": -6.81025333757621, "y_m": -10.240386313588175, "d_right": 1.325842422051418, "d_left": 1.2994047586888922, "psi_rad": 1.5997274170869364, "kappa_radpm": -0.028328991364937606, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 134, "s_m": 13.4, "d_m": 0.0, "x_m": -6.812929023027763, "y_m": -10.140458683629108, "d_right": 1.314008150351056, "d_left": 1.3074741070684288, "psi_rad": 1.5980453911014312, "kappa_radpm": 0.020593897803666827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 135, "s_m": 13.5, "d_m": 0.0, "x_m": -6.8157004102985965, "y_m": -10.040536350925384, "d_right": 1.3098141465695323, "d_left": 1.3229737655854508, "psi_rad": 1.6038461966476698, "kappa_radpm": 0.01873628067860067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 136, "s_m": 13.600000000000001, "d_m": 0.0, "x_m": -6.819535199632317, "y_m": -9.940646364750473, "d_right": 1.3136503473872878, "d_left": 1.3370463850789083, "psi_rad": 1.6017926472371513, "kappa_radpm": -0.05079821092880299, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 137, "s_m": 13.700000000000001, "d_m": 0.0, "x_m": -6.821896177785987, "y_m": -9.84071317732979, "d_right": 1.3160121079694236, "d_left": 1.3346852210549534, "psi_rad": 1.5936865544619092, "kappa_radpm": -0.03975658569800866, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 138, "s_m": 13.8, "d_m": 0.0, "x_m": -6.824111118924839, "y_m": -9.74077416916756, "d_right": 1.318227720703697, "d_left": 1.3324701354949355, "psi_rad": 1.5938413300975496, "kappa_radpm": 0.007939129884606544, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 139, "s_m": 13.9, "d_m": 0.0, "x_m": -6.826503089205051, "y_m": -9.640839226541516, "d_right": 1.3206204028664357, "d_left": 1.3300779943612433, "psi_rad": 1.5952743804388305, "kappa_radpm": 0.010947408407778747, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 140, "s_m": 14.0, "d_m": 0.0, "x_m": -6.829004456723364, "y_m": -9.540906953065406, "d_right": 1.3231225122059487, "d_left": 1.3275764385127964, "psi_rad": 1.5960308117791053, "kappa_radpm": 0.004181839561863132, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 141, "s_m": 14.100000000000001, "d_m": 0.0, "x_m": -6.831547612384157, "y_m": -9.440975730710127, "d_right": 1.3256664222472645, "d_left": 1.3250330877138823, "psi_rad": 1.5961107483512031, "kappa_radpm": -0.002583030832905564, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 142, "s_m": 14.200000000000001, "d_m": 0.0, "x_m": -6.834064956397778, "y_m": -9.341043856821505, "d_right": 1.328184513125614, "d_left": 1.3225155530406338, "psi_rad": 1.5955142056125242, "kappa_radpm": -0.009348300653231334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 143, "s_m": 14.3, "d_m": 0.0, "x_m": -6.83648888354935, "y_m": -9.24110968103745, "d_right": 1.3306091611801916, "d_left": 1.3246505667482964, "psi_rad": 1.5942410882205569, "kappa_radpm": -0.0015668588676620576, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 144, "s_m": 14.4, "d_m": 0.0, "x_m": -6.838751769183608, "y_m": -9.141171742263152, "d_right": 1.3328727292574878, "d_left": 1.3344520535474174, "psi_rad": 1.5952008338389918, "kappa_radpm": 0.04727628937869044, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 145, "s_m": 14.5, "d_m": 0.0, "x_m": -6.841367432739153, "y_m": -9.041245753424342, "d_right": 1.3354892767402855, "d_left": 1.346278016418386, "psi_rad": 1.603696346096295, "kappa_radpm": 0.0791743322524241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 146, "s_m": 14.600000000000001, "d_m": 0.0, "x_m": -6.845327930000088, "y_m": -8.941360675847157, "d_right": 1.3394512794393785, "d_left": 1.3615624076618964, "psi_rad": 1.6110357002894766, "kappa_radpm": 0.04166726543067045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 147, "s_m": 14.700000000000001, "d_m": 0.0, "x_m": -6.849410203052113, "y_m": -8.841480494283376, "d_right": 1.3435351518327348, "d_left": 1.3574792368671702, "psi_rad": 1.612029799182429, "kappa_radpm": 0.0076904733025573435, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 148, "s_m": 14.8, "d_m": 0.0, "x_m": -6.853569284109944, "y_m": -8.74160347725511, "d_right": 1.3476958938924404, "d_left": 1.353319206064727, "psi_rad": 1.612573794949988, "kappa_radpm": 0.003189949708123363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 149, "s_m": 14.9, "d_m": 0.0, "x_m": -6.857760223775241, "y_m": -8.641727790149714, "d_right": 1.3518885207399676, "d_left": 1.3491272946973545, "psi_rad": 1.6126677891240537, "kappa_radpm": -0.0013099716858000487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 150, "s_m": 15.0, "d_m": 0.0, "x_m": -6.861938080522986, "y_m": -8.54185155560182, "d_right": 1.3560680540385877, "d_left": 1.3449484753204812, "psi_rad": 1.612311800612828, "kappa_radpm": -0.0058101220001360865, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 151, "s_m": 15.100000000000001, "d_m": 0.0, "x_m": -6.866057909777649, "y_m": -8.441972913818066, "d_right": 1.3485281436852083, "d_left": 1.3408277231534265, "psi_rad": 1.6115057647240265, "kappa_radpm": -0.010311320336588992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 152, "s_m": 15.200000000000001, "d_m": 0.0, "x_m": -6.870074753148475, "y_m": -8.342090082923702, "d_right": 1.3321841036391542, "d_left": 1.3368100254747592, "psi_rad": 1.6102495365455103, "kappa_radpm": -0.01481433016771061, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 153, "s_m": 15.3, "d_m": 0.0, "x_m": -6.873943628393635, "y_m": -8.24220141940936, "d_right": 1.3230627090765723, "d_left": 1.3329403902888077, "psi_rad": 1.6085428986904844, "kappa_radpm": -0.0193198156143759, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 154, "s_m": 15.4, "d_m": 0.0, "x_m": -6.877619520684895, "y_m": -8.14230547874838, "d_right": 1.321268538459817, "d_left": 1.3292638536867902, "psi_rad": 1.606385573422635, "kappa_radpm": -0.023828297534156384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 155, "s_m": 15.5, "d_m": 0.0, "x_m": -6.8810573757476, "y_m": -8.04240107624185, "d_right": 1.3247074385957969, "d_left": 1.3258254853219043, "psi_rad": 1.6037772391836531, "kappa_radpm": -0.028340109363660382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 156, "s_m": 15.600000000000001, "d_m": 0.0, "x_m": -6.88421209545493, "y_m": -7.9424873481290925, "d_right": 1.3278630867504966, "d_left": 1.3287092005734102, "psi_rad": 1.600717551549903, "kappa_radpm": -0.03285535268784945, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 157, "s_m": 15.700000000000001, "d_m": 0.0, "x_m": -6.88703853645998, "y_m": -7.842563812976157, "d_right": 1.3306903376173125, "d_left": 1.3393950888689283, "psi_rad": 1.5972061686460832, "kappa_radpm": -0.03737385254711789, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 158, "s_m": 15.8, "d_m": 0.0, "x_m": -6.889491512453713, "y_m": -7.742630433322995, "d_right": 1.3331440105422605, "d_left": 1.3577428957929583, "psi_rad": 1.5932427810404794, "kappa_radpm": -0.04189511254136136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 159, "s_m": 15.9, "d_m": 0.0, "x_m": -6.891525800640324, "y_m": -7.642687677532524, "d_right": 1.3351788970684138, "d_left": 1.3659024761363614, "psi_rad": 1.588827146137811, "kappa_radpm": -0.05861004347171739, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 160, "s_m": 16.0, "d_m": 0.0, "x_m": -6.893096153023255, "y_m": -7.54273658174063, "d_right": 1.3367497732872549, "d_left": 1.3643336867363702, "psi_rad": 1.581520772346136, "kappa_radpm": -0.06073039568941341, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 161, "s_m": 16.1, "d_m": 0.0, "x_m": -6.893669791408811, "y_m": -7.442779107762015, "d_right": 1.3373239716876584, "d_left": 1.3637607330905515, "psi_rad": 1.5766810669999283, "kappa_radpm": -0.0063117099015697065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 162, "s_m": 16.2, "d_m": 0.0, "x_m": -6.894272619711892, "y_m": -7.342820686186375, "d_right": 1.3379273401819982, "d_left": 1.363158574981471, "psi_rad": 1.580258430365822, "kappa_radpm": 0.041501530735135184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 163, "s_m": 16.3, "d_m": 0.0, "x_m": -6.8955614514420684, "y_m": -7.2428654665283405, "d_right": 1.339216667307637, "d_left": 1.3618709792545598, "psi_rad": 1.5849813731469553, "kappa_radpm": 0.03540243485715022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 164, "s_m": 16.400000000000002, "d_m": 0.0, "x_m": -6.89710849701573, "y_m": -7.14291389537445, "d_right": 1.3407642331667993, "d_left": 1.3603254740046093, "psi_rad": 1.587338917337252, "kappa_radpm": 0.021317813714956113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 165, "s_m": 16.5, "d_m": 0.0, "x_m": -6.898868610840296, "y_m": -7.0429658372562, "d_right": 1.3425248964182104, "d_left": 1.3585671721692045, "psi_rad": 1.5892449358899465, "kappa_radpm": 0.016803185251362818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 166, "s_m": 16.6, "d_m": 0.0, "x_m": -6.900796663766962, "y_m": -6.943020868275656, "d_right": 1.3444535272601017, "d_left": 1.35664115965768, "psi_rad": 1.5906995543875246, "kappa_radpm": 0.012289753115499735, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 167, "s_m": 16.7, "d_m": 0.0, "x_m": -6.902847542660888, "y_m": -6.843078337324422, "d_right": 1.3465050080299272, "d_left": 1.3546375101968668, "psi_rad": 1.5917028865130465, "kappa_radpm": 0.007777326948156249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 168, "s_m": 16.8, "d_m": 0.0, "x_m": -6.90497614781105, "y_m": -6.743137427201992, "d_right": 1.34863423164737, "d_left": 1.3599210143128082, "psi_rad": 1.5922550197771559, "kappa_radpm": 0.0032655957702865113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 169, "s_m": 16.900000000000002, "d_m": 0.0, "x_m": -6.907137388760563, "y_m": -6.643197215642997, "d_right": 1.3507960984809064, "d_left": 1.3724520212330196, "psi_rad": 1.5923560056671038, "kappa_radpm": -0.001245827839763125, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 170, "s_m": 17.0, "d_m": 0.0, "x_m": -6.909286179136704, "y_m": -6.543256736278706, "d_right": 1.3529455122177492, "d_left": 1.39207869942613, "psi_rad": 1.5920058542092033, "kappa_radpm": -0.005757363638917434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 171, "s_m": 17.1, "d_m": 0.0, "x_m": -6.911377431058641, "y_m": -6.443315039568997, "d_right": 1.3550373753160523, "d_left": 1.3954589882525594, "psi_rad": 1.5912045329393203, "kappa_radpm": -0.010269419644953759, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 172, "s_m": 17.2, "d_m": 0.0, "x_m": -6.913366049700316, "y_m": -6.343371253745307, "d_right": 1.3570265846174683, "d_left": 1.3934712527711322, "psi_rad": 1.5899519702802125, "kappa_radpm": -0.014782348049930949, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 173, "s_m": 17.3, "d_m": 0.0, "x_m": -6.915206928586137, "y_m": -6.243424645803129, "d_right": 1.3588680276979315, "d_left": 1.391631169846892, "psi_rad": 1.588248063329334, "kappa_radpm": -0.019296401080077796, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 174, "s_m": 17.400000000000002, "d_m": 0.0, "x_m": -6.916854946198087, "y_m": -6.143474682575543, "d_right": 1.3605165805352966, "d_left": 1.3899838395225064, "psi_rad": 1.586092690064197, "kappa_radpm": -0.02381168677250023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 175, "s_m": 17.5, "d_m": 0.0, "x_m": -6.918264964474219, "y_m": -6.043521091905348, "d_right": 1.361927107074127, "d_left": 1.3885743836857187, "psi_rad": 1.583485725974834, "kappa_radpm": -0.014942953157904837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 176, "s_m": 17.6, "d_m": 0.0, "x_m": -6.919391829780292, "y_m": -5.9435639239136515, "d_right": 1.3630544612708373, "d_left": 1.3874479464869864, "psi_rad": 1.583104099432616, "kappa_radpm": 0.03590414994821156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 177, "s_m": 17.7, "d_m": 0.0, "x_m": -6.9207255213607155, "y_m": -5.843612244471613, "d_right": 1.3643887059058897, "d_left": 1.3861148428217285, "psi_rad": 1.5906665559644764, "kappa_radpm": 0.07212979058098368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 178, "s_m": 17.8, "d_m": 0.0, "x_m": -6.923364022442225, "y_m": -5.743683497810485, "d_right": 1.3670279618041312, "d_left": 1.383477693590952, "psi_rad": 1.5975300575488127, "kappa_radpm": 0.03711422888008298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 179, "s_m": 17.900000000000002, "d_m": 0.0, "x_m": -6.926069683021702, "y_m": -5.643756545105633, "d_right": 1.3697343984954982, "d_left": 1.3807734433695948, "psi_rad": 1.598089401740493, "kappa_radpm": 0.004466158332790959, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 180, "s_m": 18.0, "d_m": 0.0, "x_m": -6.928819971644149, "y_m": -5.543830809477894, "d_right": 1.372485477944721, "d_left": 1.3780246072056361, "psi_rad": 1.598423289215371, "kappa_radpm": 0.002211693689797567, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 181, "s_m": 18.1, "d_m": 0.0, "x_m": -6.931592360383841, "y_m": -5.443905683936532, "d_right": 1.3752586651121885, "d_left": 1.3767770251570124, "psi_rad": 1.5985317404784525, "kappa_radpm": -4.263433219131585e-05, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 182, "s_m": 18.2, "d_m": 0.0, "x_m": -6.934364323103221, "y_m": -5.343980546582329, "d_right": 1.3780314264738778, "d_left": 1.3827742920773336, "psi_rad": 1.5984147623489326, "kappa_radpm": -0.0022969639318970447, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 183, "s_m": 18.3, "d_m": 0.0, "x_m": -6.937113333640847, "y_m": -5.244054775804176, "d_right": 1.3807812284720469, "d_left": 1.3959452523506275, "psi_rad": 1.598072347692073, "kappa_radpm": -0.00455143324315066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 184, "s_m": 18.400000000000002, "d_m": 0.0, "x_m": -6.939816864000299, "y_m": -5.144127765475737, "d_right": 1.3834855359687155, "d_left": 1.416111655330859, "psi_rad": 1.5975044757003025, "kappa_radpm": -0.006806174841191837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 185, "s_m": 18.5, "d_m": 0.0, "x_m": -6.94245238261201, "y_m": -5.0441989401587835, "d_right": 1.3861218107739002, "d_left": 1.4141128844107582, "psi_rad": 1.5967111127238347, "kappa_radpm": -0.009061310245381815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 186, "s_m": 18.6, "d_m": 0.0, "x_m": -6.944997352739983, "y_m": -4.944267770319497, "d_right": 1.3886675103204569, "d_left": 1.4115681695368423, "psi_rad": 1.5956922136512262, "kappa_radpm": -0.011316944414874186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 187, "s_m": 18.7, "d_m": 0.0, "x_m": -6.947429231105538, "y_m": -4.844333787563196, "d_right": 1.3911000865574161, "d_left": 1.4091365291114053, "psi_rad": 1.5944477238408599, "kappa_radpm": -0.01357316023335331, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 188, "s_m": 18.8, "d_m": 0.0, "x_m": -6.949725466800359, "y_m": -4.744396599891957, "d_right": 1.3933969851338293, "d_left": 1.4068405109014666, "psi_rad": 1.5929775816045555, "kappa_radpm": -0.015830012981878916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 189, "s_m": 18.900000000000002, "d_m": 0.0, "x_m": -6.951863500561362, "y_m": -4.644455906987795, "d_right": 1.3955356449453717, "d_left": 1.4047026715530273, "psi_rad": 1.591281721244484, "kappa_radpm": -0.01808752479862008, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 190, "s_m": 19.0, "d_m": 0.0, "x_m": -6.953820764480064, "y_m": -4.544511515522631, "d_right": 1.3974934981162412, "d_left": 1.4027455770026067, "psi_rad": 1.5893600766448315, "kappa_radpm": -0.0203456791250356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 191, "s_m": 19.1, "d_m": 0.0, "x_m": -6.955574682219432, "y_m": -4.444563354493712, "d_right": 1.3992479704893757, "d_left": 1.4009918023804924, "psi_rad": 1.587212585419477, "kappa_radpm": -0.022604415141500578, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 192, "s_m": 19.200000000000003, "d_m": 0.0, "x_m": -6.957102669811308, "y_m": -4.344611490580461, "d_right": 1.4007764826984928, "d_left": 1.399463931330516, "psi_rad": 1.5848391936165314, "kappa_radpm": -0.02486362219709326, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 193, "s_m": 19.3, "d_m": 0.0, "x_m": -6.958382137107644, "y_m": -4.244656143516042, "d_right": 1.402056451896085, "d_left": 1.3981845546711962, "psi_rad": 1.5822398609800583, "kappa_radpm": -0.027123134238919988, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 194, "s_m": 19.400000000000002, "d_m": 0.0, "x_m": -6.95939048995879, "y_m": -4.144697701463198, "d_right": 1.403065294212136, "d_left": 1.3971762683234563, "psi_rad": 1.5794145667687474, "kappa_radpm": -0.029382724249775727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 195, "s_m": 19.5, "d_m": 0.0, "x_m": -6.960105133191953, "y_m": -4.0447367363802345, "d_right": 1.403780428019119, "d_left": 1.3964616704307682, "psi_rad": 1.5763633161301032, "kappa_radpm": -0.03164209870746393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 196, "s_m": 19.6, "d_m": 0.0, "x_m": -6.960503474462581, "y_m": -3.94477401935899, "d_right": 1.4041792780795133, "d_left": 1.3960633575987997, "psi_rad": 1.5730861470272546, "kappa_radpm": -0.02260919141216733, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 197, "s_m": 19.700000000000003, "d_m": 0.0, "x_m": -6.960562929050881, "y_m": -3.8448105359118583, "d_right": 1.4046786329872984, "d_left": 1.3960039201832397, "psi_rad": 1.5718414778476697, "kappa_radpm": 0.012995755353978344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 198, "s_m": 19.8, "d_m": 0.0, "x_m": -6.960712426138588, "y_m": -3.744849233969798, "d_right": 1.4066428354608118, "d_left": 1.395854455559909, "psi_rad": 1.5756852980980502, "kappa_radpm": 0.015295116921688612, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 199, "s_m": 19.900000000000002, "d_m": 0.0, "x_m": -6.961540344943577, "y_m": -3.644889520903695, "d_right": 1.4163532708919626, "d_left": 1.3950265922366671, "psi_rad": 1.5749005012320074, "kappa_radpm": -0.03446489092052918, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 200, "s_m": 20.0, "d_m": 0.0, "x_m": -6.9615329490137565, "y_m": -3.5449263796404544, "d_right": 1.4321688438042137, "d_left": 1.3979905916641135, "psi_rad": 1.5687923199139444, "kappa_radpm": 0.004384284012973749, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 201, "s_m": 20.1, "d_m": 0.0, "x_m": -6.961139694422489, "y_m": -3.4449650652777297, "d_right": 1.454323914969873, "d_left": 1.4084450510856301, "psi_rad": 1.5757773580346022, "kappa_radpm": 0.07027168034525855, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 202, "s_m": 20.200000000000003, "d_m": 0.0, "x_m": -6.962528734149241, "y_m": -3.3450125762162264, "d_right": 1.455994630028065, "d_left": 1.424101356807563, "psi_rad": 1.5828466559829961, "kappa_radpm": 0.05018015341669568, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 203, "s_m": 20.3, "d_m": 0.0, "x_m": -6.963548798292498, "y_m": -3.2450545713591104, "d_right": 1.4570147956806518, "d_left": 1.4430410857111782, "psi_rad": 1.5858133887179413, "kappa_radpm": 0.06020398377735048, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 204, "s_m": 20.400000000000002, "d_m": 0.0, "x_m": -6.965530839264143, "y_m": -3.1451146563367813, "d_right": 1.4621321733960895, "d_left": 1.4410588958111963, "psi_rad": 1.5948874527384662, "kappa_radpm": 0.09792412465915334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 205, "s_m": 20.5, "d_m": 0.0, "x_m": -6.968364638321775, "y_m": -3.0451922515853656, "d_right": 1.4748679136115557, "d_left": 1.4382248318761572, "psi_rad": 1.605398213649772, "kappa_radpm": 0.10653995855752663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 206, "s_m": 20.6, "d_m": 0.0, "x_m": -6.972447110303119, "y_m": -2.9453131083580657, "d_right": 1.4954126547937052, "d_left": 1.4341417801421081, "psi_rad": 1.6161954444499715, "kappa_radpm": 0.08190212215307024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 207, "s_m": 20.700000000000003, "d_m": 0.0, "x_m": -6.977437885310097, "y_m": -2.8454744368420477, "d_right": 1.5231240531321748, "d_left": 1.4291501256162904, "psi_rad": 1.621778638080386, "kappa_radpm": 0.022248917696533477, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 208, "s_m": 20.8, "d_m": 0.0, "x_m": -6.982635425137211, "y_m": -2.7456460884667973, "d_right": 1.5480951434501986, "d_left": 1.423951634346144, "psi_rad": 1.6206452279892782, "kappa_radpm": -0.04120037908875496, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 209, "s_m": 20.900000000000002, "d_m": 0.0, "x_m": -6.987399865470615, "y_m": -2.645796469954656, "d_right": 1.5699881522820995, "d_left": 1.4191864065673814, "psi_rad": 1.613538562262635, "kappa_radpm": -0.09778149474861442, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 210, "s_m": 21.0, "d_m": 0.0, "x_m": -6.9911779949025386, "y_m": -2.5459053191389076, "d_right": 1.5969051494418827, "d_left": 1.4154077958809386, "psi_rad": 1.6010889290395554, "kappa_radpm": -0.1496693918710934, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 211, "s_m": 21.1, "d_m": 0.0, "x_m": -6.993454997712029, "y_m": -2.44596946493792, "d_right": 1.6281107999495972, "d_left": 1.4131306237212726, "psi_rad": 1.5836046838884164, "kappa_radpm": -0.19759773794324698, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 212, "s_m": 21.200000000000003, "d_m": 0.0, "x_m": -6.993738481082044, "y_m": -2.346008787527806, "d_right": 1.662901151216085, "d_left": 1.4128471061960095, "psi_rad": 1.561569381450906, "kappa_radpm": -0.24360696346831467, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 213, "s_m": 21.3, "d_m": 0.0, "x_m": -6.991610488988302, "y_m": -2.2460705482706285, "d_right": 1.700660834022173, "d_left": 1.4149748066173373, "psi_rad": 1.5348832911947534, "kappa_radpm": -0.29017503070470685, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 214, "s_m": 21.400000000000002, "d_m": 0.0, "x_m": -6.98656101032693, "y_m": -2.1462377388030847, "d_right": 1.7326840972880775, "d_left": 1.4200230672910505, "psi_rad": 1.5035343753099646, "kappa_radpm": -0.3343617925107645, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 215, "s_m": 21.5, "d_m": 0.0, "x_m": -6.978175584147581, "y_m": -2.0466318190519575, "d_right": 1.7630261609683615, "d_left": 1.4284054573626048, "psi_rad": 1.4680109326926005, "kappa_radpm": -0.37331998128321664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 216, "s_m": 21.6, "d_m": 0.0, "x_m": -6.966052444123763, "y_m": -1.9474128742330543, "d_right": 1.7916254727346197, "d_left": 1.4405228261747711, "psi_rad": 1.4288703790533213, "kappa_radpm": -0.41712472324150207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 217, "s_m": 21.700000000000003, "d_m": 0.0, "x_m": -6.949903978097487, "y_m": -1.8487714112123743, "d_right": 1.8214355387636771, "d_left": 1.4566623302549528, "psi_rad": 1.3845859880443, "kappa_radpm": -0.46535087001916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 218, "s_m": 21.8, "d_m": 0.0, "x_m": -6.92905337568326, "y_m": -1.7510197090677282, "d_right": 1.851670132870899, "d_left": 1.4775010874473131, "psi_rad": 1.3358002050494893, "kappa_radpm": -0.5134520632975892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 219, "s_m": 21.900000000000002, "d_m": 0.0, "x_m": -6.903373689051094, "y_m": -1.6544252155140378, "d_right": 1.882071496332098, "d_left": 1.5031696198880093, "psi_rad": 1.2818955753847823, "kappa_radpm": -0.5599979780173181, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 220, "s_m": 22.0, "d_m": 0.0, "x_m": -6.872127605555509, "y_m": -1.5594897708145803, "d_right": 1.9117599503481115, "d_left": 1.5344134667953748, "psi_rad": 1.2238006094460256, "kappa_radpm": -0.5876783692392729, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 221, "s_m": 22.1, "d_m": 0.0, "x_m": -6.835424326858935, "y_m": -1.466526510369531, "d_right": 1.9406771411403834, "d_left": 1.5711405891773524, "psi_rad": 1.1643599015369277, "kappa_radpm": -0.6289629106151284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 222, "s_m": 22.200000000000003, "d_m": 0.0, "x_m": -6.7931389960871424, "y_m": -1.3759664717896583, "d_right": 1.9684992315057812, "d_left": 1.6135043152666528, "psi_rad": 1.098008027323, "kappa_radpm": -0.6790915243183859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 223, "s_m": 22.3, "d_m": 0.0, "x_m": -6.744459099517511, "y_m": -1.288678953325753, "d_right": 1.9941102361651186, "d_left": 1.6623688303580233, "psi_rad": 1.0285415966732505, "kappa_radpm": -0.6856545564930211, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 224, "s_m": 22.400000000000002, "d_m": 0.0, "x_m": -6.690039432316833, "y_m": -1.2048464852153795, "d_right": 2.0148939851607186, "d_left": 1.7171459126998354, "psi_rad": 0.9608771160243957, "kappa_radpm": -0.7055026927418495, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 225, "s_m": 22.5, "d_m": 0.0, "x_m": -6.630029459574897, "y_m": -1.1249269975593856, "d_right": 2.0289663480969535, "d_left": 1.776814085624793, "psi_rad": 0.8874410581248806, "kappa_radpm": -0.7277372092678924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 226, "s_m": 22.6, "d_m": 0.0, "x_m": -6.563930157285784, "y_m": -1.0499640656694216, "d_right": 2.0381776719139504, "d_left": 1.8306617944906265, "psi_rad": 0.8153296741708173, "kappa_radpm": -0.706498588286979, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 227, "s_m": 22.700000000000003, "d_m": 0.0, "x_m": -6.493056989141659, "y_m": -0.9794993394992022, "d_right": 2.045718619621803, "d_left": 1.887611702305605, "psi_rad": 0.7461413404674848, "kappa_radpm": -0.6902387369058394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 228, "s_m": 22.8, "d_m": 0.0, "x_m": -6.417260565718212, "y_m": -0.9143805306011735, "d_right": 2.0508673163100593, "d_left": 1.949318100045157, "psi_rad": 0.6772819267896494, "kappa_radpm": -0.6482254637931428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 229, "s_m": 22.900000000000002, "d_m": 0.0, "x_m": -6.337383294707172, "y_m": -0.8543103354359359, "d_right": 2.054391426165887, "d_left": 1.8969321253127445, "psi_rad": 0.6164962477088562, "kappa_radpm": -0.5848549662754937, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 230, "s_m": 23.0, "d_m": 0.0, "x_m": -6.254234067220052, "y_m": -0.7988546249029734, "d_right": 2.0543990985745575, "d_left": 1.8535530987293296, "psi_rad": 0.5603109335345506, "kappa_radpm": -0.5745837961659805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 231, "s_m": 23.1, "d_m": 0.0, "x_m": -6.16812875570463, "y_m": -0.7481229538589216, "d_right": 2.0472394197202592, "d_left": 1.81989160513486, "psi_rad": 0.5015794884756601, "kappa_radpm": -0.5567323880287667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 232, "s_m": 23.200000000000003, "d_m": 0.0, "x_m": -6.079048190618537, "y_m": -0.7027905483328307, "d_right": 2.038782168133003, "d_left": 1.7928722101018935, "psi_rad": 0.4489644559287973, "kappa_radpm": -0.47260796927971804, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 233, "s_m": 23.3, "d_m": 0.0, "x_m": -5.988076642960412, "y_m": -0.6613777128245287, "d_right": 2.0308548285455896, "d_left": 1.7642730058582192, "psi_rad": 0.40705789461971653, "kappa_radpm": -0.423833120393563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 234, "s_m": 23.400000000000002, "d_m": 0.0, "x_m": -5.8955091151929455, "y_m": -0.6236599188143964, "d_right": 2.0175454758913625, "d_left": 1.744904791142782, "psi_rad": 0.3641978318500847, "kappa_radpm": -0.4275895987399436, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 235, "s_m": 23.5, "d_m": 0.0, "x_m": -5.801331141907567, "y_m": -0.5901897598518863, "d_right": 1.9971464979621585, "d_left": 1.7220599791352662, "psi_rad": 0.3215399748717278, "kappa_radpm": -0.382447543432507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 236, "s_m": 23.6, "d_m": 0.0, "x_m": -5.705883353079074, "y_m": -0.5604956964439718, "d_right": 1.9776447953294742, "d_left": 1.7004837402840758, "psi_rad": 0.2877083231635833, "kappa_radpm": -0.3014684481458241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 237, "s_m": 23.700000000000003, "d_m": 0.0, "x_m": -5.609647316191437, "y_m": -0.5334669242998386, "d_right": 1.960291636801094, "d_left": 1.6873327377219343, "psi_rad": 0.261246285242563, "kappa_radpm": -0.2534799537842891, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 238, "s_m": 23.8, "d_m": 0.0, "x_m": -5.512762595789084, "y_m": -0.5088636131321292, "d_right": 1.944228381016504, "d_left": 1.682545948421202, "psi_rad": 0.23701233240672548, "kappa_radpm": -0.26240267199643785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 239, "s_m": 23.900000000000002, "d_m": 0.0, "x_m": -5.415330243418716, "y_m": -0.4865291653256133, "d_right": 1.9273773966515497, "d_left": 1.6657386223922641, "psi_rad": 0.20876575084327542, "kappa_radpm": -0.27309883803860235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 240, "s_m": 24.0, "d_m": 0.0, "x_m": -5.317215814790724, "y_m": -0.4674365460716996, "d_right": 1.907617517561678, "d_left": 1.649721697091497, "psi_rad": 0.182392564799005, "kappa_radpm": -0.20869453054168097, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 241, "s_m": 24.1, "d_m": 0.0, "x_m": -5.21873813208228, "y_m": -0.4502692444969597, "d_right": 1.8854699801392851, "d_left": 1.6416076082254525, "psi_rad": 0.16702684473493923, "kappa_radpm": -0.13146319517368776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 242, "s_m": 24.200000000000003, "d_m": 0.0, "x_m": -5.12007505530256, "y_m": -0.43419908479183184, "d_right": 1.8632047878544329, "d_left": 1.6406718196225905, "psi_rad": 0.15609992576426746, "kappa_radpm": -0.09257825967145639, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 243, "s_m": 24.3, "d_m": 0.0, "x_m": -5.021245226979732, "y_m": -0.4191877494084041, "d_right": 1.8450313986503215, "d_left": 1.6468860904366984, "psi_rad": 0.14851119280064795, "kappa_radpm": -0.05174933873843046, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 244, "s_m": 24.400000000000002, "d_m": 0.0, "x_m": -4.922349343130322, "y_m": -0.4046167981989716, "d_right": 1.8298676535860843, "d_left": 1.6339072333033176, "psi_rad": 0.14575005801658136, "kappa_radpm": -0.015257878470734676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 245, "s_m": 24.5, "d_m": 0.0, "x_m": -4.823437933559386, "y_m": -0.39015142617078813, "d_right": 1.8117537985775942, "d_left": 1.6194322195883737, "psi_rad": 0.14545961710650102, "kappa_radpm": 0.014958975613343917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 246, "s_m": 24.6, "d_m": 0.0, "x_m": -4.72453372590836, "y_m": -0.37563794233950926, "d_right": 1.7990685563942523, "d_left": 1.608911990710174, "psi_rad": 0.14874185313925015, "kappa_radpm": 0.0021359579388602334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 247, "s_m": 24.700000000000003, "d_m": 0.0, "x_m": -4.625719670603837, "y_m": -0.3605236258660937, "d_right": 1.786875936529193, "d_left": 1.6039548366394403, "psi_rad": 0.14588680869427306, "kappa_radpm": -0.06366112752873243, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 248, "s_m": 24.8, "d_m": 0.0, "x_m": -4.526738207448544, "y_m": -0.3465757155000552, "d_right": 1.7743060737630858, "d_left": 1.606396240418635, "psi_rad": 0.13600962763350366, "kappa_radpm": -0.0720910740572045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 249, "s_m": 24.900000000000002, "d_m": 0.0, "x_m": -4.427645650446014, "y_m": -0.3334162962554026, "d_right": 1.7595573462449863, "d_left": 1.6129422662904591, "psi_rad": 0.13146859388283216, "kappa_radpm": -0.02499504510922068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 250, "s_m": 25.0, "d_m": 0.0, "x_m": -4.328538415890607, "y_m": -0.32036749913017804, "d_right": 1.746768821728009, "d_left": 1.5998790904772089, "psi_rad": 0.13101061861165952, "kappa_radpm": 0.0025430594323516686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 251, "s_m": 25.1, "d_m": 0.0, "x_m": -4.229433776071717, "y_m": -0.30729883994068347, "d_right": 1.7313250678204408, "d_left": 1.5867962348393334, "psi_rad": 0.1319772057693025, "kappa_radpm": 0.017858089276131528, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 252, "s_m": 25.200000000000003, "d_m": 0.0, "x_m": -4.130351949889623, "y_m": -0.29405847541693736, "d_right": 1.7194292107234845, "d_left": 1.5735415124583858, "psi_rad": 0.13458223646688583, "kappa_radpm": -0.0023966875625003325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 253, "s_m": 25.3, "d_m": 0.0, "x_m": -4.031316840864777, "y_m": -0.28047366793175094, "d_right": 1.7136402199614256, "d_left": 1.5599418073618228, "psi_rad": 0.13149786825680243, "kappa_radpm": -0.042711904474618256, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 254, "s_m": 25.400000000000002, "d_m": 0.0, "x_m": -3.932155630196503, "y_m": -0.26784481459029774, "d_right": 1.7127086547043653, "d_left": 1.5523121378043012, "psi_rad": 0.12603985557196218, "kappa_radpm": -0.043224151576353176, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 255, "s_m": 25.5, "d_m": 0.0, "x_m": -3.832978148262672, "y_m": -0.25534186495289585, "d_right": 1.7044851550843683, "d_left": 1.551227303966419, "psi_rad": 0.1228530379415318, "kappa_radpm": -0.026296555367674168, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 256, "s_m": 25.6, "d_m": 0.0, "x_m": -3.7337382257742058, "y_m": -0.2433452532559748, "d_right": 1.6980091817302378, "d_left": 1.5570827315523321, "psi_rad": 0.12078054449842734, "kappa_radpm": -0.04214179773751714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 257, "s_m": 25.700000000000003, "d_m": 0.0, "x_m": -3.634509677692768, "y_m": -0.23125348767072892, "d_right": 1.6975013812872481, "d_left": 1.5611438709273049, "psi_rad": 0.11442467839402837, "kappa_radpm": -0.06929589120247659, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 258, "s_m": 25.8, "d_m": 0.0, "x_m": -3.5351254502286666, "y_m": -0.22051934329252235, "d_right": 1.685768261917393, "d_left": 1.5503972362887393, "psi_rad": 0.10692136625793203, "kappa_radpm": -0.0904625374841328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 259, "s_m": 25.900000000000002, "d_m": 0.0, "x_m": -3.4357268250114195, "y_m": -0.20991798769208977, "d_right": 1.6696784189360065, "d_left": 1.5397838002260742, "psi_rad": 0.09633217089720181, "kappa_radpm": -0.10765861701033441, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 260, "s_m": 26.0, "d_m": 0.0, "x_m": -3.3361431500655265, "y_m": -0.201291431902826, "d_right": 1.6555738626694552, "d_left": 1.5311497573427237, "psi_rad": 0.08538964285586514, "kappa_radpm": -0.06658836249447186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 261, "s_m": 26.1, "d_m": 0.0, "x_m": -3.236536968568624, "y_m": -0.19286777691387272, "d_right": 1.6472200594312691, "d_left": 1.5227191950199819, "psi_rad": 0.08301449839830743, "kappa_radpm": -0.0427516946366413, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 262, "s_m": 26.200000000000003, "d_m": 0.0, "x_m": -3.1369069758435004, "y_m": -0.18471384235816177, "d_right": 1.6446388893787116, "d_left": 1.5145589390265273, "psi_rad": 0.07683930392853688, "kappa_radpm": -0.048555716142658634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 263, "s_m": 26.3, "d_m": 0.0, "x_m": -3.0372032091962833, "y_m": -0.17752089360695655, "d_right": 1.6438761464532978, "d_left": 1.5073614089965441, "psi_rad": 0.07330335516977571, "kappa_radpm": -0.01927294181031325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 264, "s_m": 26.400000000000002, "d_m": 0.0, "x_m": -2.937519330856577, "y_m": -0.17007182388277303, "d_right": 1.6295293658096404, "d_left": 1.4999072916185987, "psi_rad": 0.07298471556647423, "kappa_radpm": -0.034886592141541994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 265, "s_m": 26.5, "d_m": 0.0, "x_m": -2.8378108475862973, "y_m": -0.16294240419796108, "d_right": 1.620910159453356, "d_left": 1.4927734047421595, "psi_rad": 0.06632603674146731, "kappa_radpm": -0.05315979360767442, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 266, "s_m": 26.6, "d_m": 0.0, "x_m": -2.7380355746362226, "y_m": -0.1568214210980421, "d_right": 1.6174203095313202, "d_left": 1.4866494644591506, "psi_rad": 0.06235275684493935, "kappa_radpm": -0.02216016190979775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 267, "s_m": 26.700000000000003, "d_m": 0.0, "x_m": -2.638274825265672, "y_m": -0.15048463421564223, "d_right": 1.6168348127879535, "d_left": 1.4865583302741783, "psi_rad": 0.06189400435950776, "kappa_radpm": -0.025984790522831647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 268, "s_m": 26.8, "d_m": 0.0, "x_m": -2.538493770251464, "y_m": -0.14445518461420745, "d_right": 1.6019475565136356, "d_left": 1.4934808363215961, "psi_rad": 0.05715579874037302, "kappa_radpm": -0.02250832295115912, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 269, "s_m": 26.900000000000002, "d_m": 0.0, "x_m": -2.438677012169393, "y_m": -0.1390640228434551, "d_right": 1.5925669570265724, "d_left": 1.5076464996914607, "psi_rad": 0.057392339769275935, "kappa_radpm": -0.0011061716582216885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 270, "s_m": 27.0, "d_m": 0.0, "x_m": -2.3388986185784018, "y_m": -0.13298735786969668, "d_right": 1.5901166456969997, "d_left": 1.5126480948909375, "psi_rad": 0.05693456440872868, "kappa_radpm": -0.044042197751903434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 271, "s_m": 27.1, "d_m": 0.0, "x_m": -2.239076053297519, "y_m": -0.12768753407192104, "d_right": 1.5931676468848825, "d_left": 1.5073533970746003, "psi_rad": 0.04858390021889525, "kappa_radpm": -0.0551026324299797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 272, "s_m": 27.200000000000003, "d_m": 0.0, "x_m": -2.1392103168374805, "y_m": -0.12327808089654874, "d_right": 1.5830668607927532, "d_left": 1.5029477738001946, "psi_rad": 0.04591403792273274, "kappa_radpm": -0.006343840557120339, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 273, "s_m": 27.3, "d_m": 0.0, "x_m": -2.0393625592424782, "y_m": -0.1185114321824399, "d_right": 1.573839156575767, "d_left": 1.4981855439836016, "psi_rad": 0.04731513210747118, "kappa_radpm": -0.013334961140272217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 274, "s_m": 27.400000000000002, "d_m": 0.0, "x_m": -1.9395093160638734, "y_m": -0.11382214420593435, "d_right": 1.5657503886563584, "d_left": 1.4935005503021686, "psi_rad": 0.0432470456946783, "kappa_radpm": -0.05113243546287394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 275, "s_m": 27.5, "d_m": 0.0, "x_m": -1.8396243412803495, "y_m": -0.10986795501940684, "d_right": 1.5623065816631145, "d_left": 1.489549655399059, "psi_rad": 0.03708864501489639, "kappa_radpm": -0.020308612518085134, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 276, "s_m": 27.6, "d_m": 0.0, "x_m": -1.7397220771247643, "y_m": -0.10640890677427822, "d_right": 1.5531991262321987, "d_left": 1.4860933261408675, "psi_rad": 0.03918532319106127, "kappa_radpm": 0.020262399089455707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 277, "s_m": 27.700000000000003, "d_m": 0.0, "x_m": -1.6398543399315926, "y_m": -0.10203589385956634, "d_right": 1.538422387853597, "d_left": 1.48172422275846, "psi_rad": 0.041141124832787535, "kappa_radpm": -0.0181079446356458, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 278, "s_m": 27.8, "d_m": 0.0, "x_m": -1.5399651091624147, "y_m": -0.0981860405759378, "d_right": 1.5295244634864282, "d_left": 1.4778775867843386, "psi_rad": 0.03556373426393211, "kappa_radpm": -0.059170440639163546, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 279, "s_m": 27.900000000000002, "d_m": 0.0, "x_m": -1.440054895325883, "y_m": -0.0949272823114693, "d_right": 1.5265405226039588, "d_left": 1.4746213320995083, "psi_rad": 0.029307036704954825, "kappa_radpm": -0.0323489332221194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 280, "s_m": 28.0, "d_m": 0.0, "x_m": -1.3401254115664887, "y_m": -0.09232765386653642, "d_right": 1.5291409570765178, "d_left": 1.4720235049166883, "psi_rad": 0.02909394761950823, "kappa_radpm": 0.02089467735615136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 281, "s_m": 28.1, "d_m": 0.0, "x_m": -1.2402162895917561, "y_m": -0.08911154736656685, "d_right": 1.5323582025311717, "d_left": 1.4688099390127696, "psi_rad": 0.0334859721761851, "kappa_radpm": 0.019291351309872473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 282, "s_m": 28.200000000000003, "d_m": 0.0, "x_m": -1.1403132811656889, "y_m": -0.08563424844554551, "d_right": 1.535836706785324, "d_left": 1.465335440700701, "psi_rad": 0.032952217881482726, "kappa_radpm": -0.02220388592547584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 283, "s_m": 28.3, "d_m": 0.0, "x_m": -1.0403981692533977, "y_m": -0.08252471285408923, "d_right": 1.5233398100619553, "d_left": 1.462228281534235, "psi_rad": 0.02904519499108993, "kappa_radpm": -0.041331562725193116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 284, "s_m": 28.400000000000002, "d_m": 0.0, "x_m": -0.9404710806946459, "y_m": -0.07982815995630375, "d_right": 1.507856534922792, "d_left": 1.4595336629854623, "psi_rad": 0.024685905336444103, "kappa_radpm": -0.04585556706494298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 285, "s_m": 28.5, "d_m": 0.0, "x_m": -0.8405327019504957, "y_m": -0.07758985038243266, "d_right": 1.498436630531877, "d_left": 1.4572968430837885, "psi_rad": 0.019874081578101332, "kappa_radpm": -0.05038157966968049, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 286, "s_m": 28.6, "d_m": 0.0, "x_m": -0.7405843413162138, "y_m": -0.0758550714820803, "d_right": 1.4951496481843884, "d_left": 1.455563123811635, "psi_rad": 0.014609589402508005, "kappa_radpm": -0.054908032621148184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 287, "s_m": 28.700000000000003, "d_m": 0.0, "x_m": -0.6406279910181392, "y_m": -0.07466911683257085, "d_right": 1.4963360898966533, "d_left": 1.4543778324339853, "psi_rad": 0.008892475053871696, "kappa_radpm": -0.026086758865138115, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 288, "s_m": 28.8, "d_m": 0.0, "x_m": -0.5406663889418003, "y_m": -0.07407725921669504, "d_right": 1.4969284307608985, "d_left": 1.4537862961476051, "psi_rad": 0.009392237629480382, "kappa_radpm": 0.02939770065136904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 289, "s_m": 28.900000000000002, "d_m": 0.0, "x_m": -0.44071402343450283, "y_m": -0.07279142213018164, "d_right": 1.4982148084907134, "d_left": 1.4525012633774481, "psi_rad": 0.014772015184145504, "kappa_radpm": 0.03056524247478931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 290, "s_m": 29.0, "d_m": 0.0, "x_m": -0.34076438116458013, "y_m": -0.0711240889131852, "d_right": 1.4998826741951183, "d_left": 1.4508349400869542, "psi_rad": 0.015505286124438244, "kappa_radpm": -0.008647493967263165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 291, "s_m": 29.1, "d_m": 0.0, "x_m": -0.24081110312337267, "y_m": -0.06969162173796704, "d_right": 1.482738129666064, "d_left": 1.4494033077023878, "psi_rad": 0.013042516390692871, "kappa_radpm": -0.025757462683391186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 292, "s_m": 29.200000000000003, "d_m": 0.0, "x_m": -0.14085447376129645, "y_m": -0.0685166128173573, "d_right": 1.466632005610564, "d_left": 1.4482289570485518, "psi_rad": 0.010353793587760007, "kappa_radpm": -0.00033827515351525506, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 293, "s_m": 29.3, "d_m": 0.0, "x_m": -0.04089495204085702, "y_m": -0.06762165720681929, "d_right": 1.4569410833518375, "d_left": 1.4473344865722164, "psi_rad": 0.01297486135998982, "kappa_radpm": 0.03094193812037571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 294, "s_m": 29.400000000000002, "d_m": 0.0, "x_m": 0.059051585250455646, "y_m": -0.06592271385663118, "d_right": 1.454877825755945, "d_left": 1.4456366539754797, "psi_rad": 0.01654218121183515, "kappa_radpm": -0.003630223697638213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 295, "s_m": 29.5, "d_m": 0.0, "x_m": 0.15900188558778608, "y_m": -0.064314625840092, "d_right": 1.4564860538074125, "d_left": 1.4440295478867573, "psi_rad": 0.012248816620462177, "kappa_radpm": -0.05985715224923749, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 296, "s_m": 29.6, "d_m": 0.0, "x_m": 0.25896158613138565, "y_m": -0.06347393044749705, "d_right": 1.4573268631269192, "d_left": 1.443189316984956, "psi_rad": 0.004570750761987652, "kappa_radpm": -0.0767844870117329, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 297, "s_m": 29.700000000000003, "d_m": 0.0, "x_m": 0.35892479530165405, "y_m": -0.06340082168450986, "d_right": 1.4574000790869046, "d_left": 1.4283381766234997, "psi_rad": -0.0031080807818844036, "kappa_radpm": -0.07678534997214825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 298, "s_m": 29.8, "d_m": 0.0, "x_m": 0.458885618961065, "y_m": -0.0640953124926577, "d_right": 1.4567057086819557, "d_left": 1.4101794881351655, "psi_rad": -0.010786319232441999, "kappa_radpm": -0.06922992525594251, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 299, "s_m": 29.900000000000002, "d_m": 0.0, "x_m": 0.5588381649337282, "y_m": -0.06555723473790731, "d_right": 1.4552439406072633, "d_left": 1.3997106335480685, "psi_rad": -0.016954065833072907, "kappa_radpm": -0.015260075533696238, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 300, "s_m": 30.0, "d_m": 0.0, "x_m": 0.6587816858886689, "y_m": -0.06748468832513374, "d_right": 1.4533166768103167, "d_left": 1.3968032549583393, "psi_rad": -0.013838334339181246, "kappa_radpm": 0.035689905831528534, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 301, "s_m": 30.1, "d_m": 0.0, "x_m": 0.7587416919745783, "y_m": -0.06832374317792655, "d_right": 1.4524777497132504, "d_left": 1.3976423194949728, "psi_rad": -0.0098160846667672, "kappa_radpm": 0.006452399181262614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 302, "s_m": 30.200000000000003, "d_m": 0.0, "x_m": 0.8586989141251837, "y_m": -0.06944715579577705, "d_right": 1.4513544774211995, "d_left": 1.3987657543088539, "psi_rad": -0.012547854502928724, "kappa_radpm": -0.026187924258751494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 303, "s_m": 30.3, "d_m": 0.0, "x_m": 0.9586528583802032, "y_m": -0.07083233106680477, "d_right": 1.449969456989902, "d_left": 1.400150972318003, "psi_rad": -0.015053669518517498, "kappa_radpm": -0.023928526969383412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 304, "s_m": 30.400000000000002, "d_m": 0.0, "x_m": 1.0586032082162267, "y_m": -0.07245667630991391, "d_right": 1.448345282497122, "d_left": 1.4017753866236735, "psi_rad": -0.017333559896805406, "kappa_radpm": -0.021669515756825852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 305, "s_m": 30.5, "d_m": 0.0, "x_m": 1.1585498091744229, "y_m": -0.07429760389326559, "d_right": 1.4465045424594172, "d_left": 1.4036164133265332, "psi_rad": -0.01938757266988267, "kappa_radpm": -0.019411031257920985, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 306, "s_m": 30.6, "d_m": 0.0, "x_m": 1.2584926534851686, "y_m": -0.07633253308457469, "d_right": 1.4444698180129283, "d_left": 1.4056514735755323, "psi_rad": -0.021215766148389603, "kappa_radpm": -0.017153161192758892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 307, "s_m": 30.700000000000003, "d_m": 0.0, "x_m": 1.3584318647020408, "y_m": -0.07853889120651476, "d_right": 1.4422636817853907, "d_left": 1.4078579949210122, "psi_rad": -0.022818204908434447, "kappa_radpm": -0.014895945935696764, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 308, "s_m": 30.8, "d_m": 0.0, "x_m": 1.458367682353862, "y_m": -0.08089411417039251, "d_right": 1.418755308446116, "d_left": 1.4102134120443035, "psi_rad": -0.024194955335528956, "kappa_radpm": -0.006210981588183895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 309, "s_m": 30.900000000000002, "d_m": 0.0, "x_m": 1.5583004466203707, "y_m": -0.08337564646134624, "d_right": 1.3996647252043408, "d_left": 1.4126951669367946, "psi_rad": -0.024060401226071226, "kappa_radpm": 0.035124034620273026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 310, "s_m": 31.0, "d_m": 0.0, "x_m": 1.6582351315876553, "y_m": -0.08570393336624961, "d_right": 1.3876835586858114, "d_left": 1.415023664410437, "psi_rad": -0.01717014841147435, "kappa_radpm": 0.05281701984680809, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 311, "s_m": 31.1, "d_m": 0.0, "x_m": 1.7581924610245236, "y_m": -0.08680815933917718, "d_right": 1.384067212485469, "d_left": 1.416127912817801, "psi_rad": -0.013496997256709609, "kappa_radpm": -0.0050081152832437414, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 312, "s_m": 31.200000000000003, "d_m": 0.0, "x_m": 1.8581432036539274, "y_m": -0.08840225591869394, "d_right": 1.3824727248123596, "d_left": 1.417722075953671, "psi_rad": -0.0181717714681231, "kappa_radpm": -0.04448628044463665, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 313, "s_m": 31.3, "d_m": 0.0, "x_m": 1.9580858887912824, "y_m": -0.09044097690353668, "d_right": 1.3804335518710555, "d_left": 1.40149323076554, "psi_rad": -0.02239425334563694, "kappa_radpm": -0.0399641353680491, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 314, "s_m": 31.400000000000002, "d_m": 0.0, "x_m": 2.0580196490272584, "y_m": -0.09287908808019597, "d_right": 1.3779949159907663, "d_left": 1.38617509583658, "psi_rad": -0.02616459854173292, "kappa_radpm": -0.03544400284151594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 315, "s_m": 31.5, "d_m": 0.0, "x_m": 2.1579441583668952, "y_m": -0.09567138190109427, "d_right": 1.3752020188832959, "d_left": 1.3783107442611, "psi_rad": -0.029483053913940127, "kappa_radpm": -0.0037415286896458344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 316, "s_m": 31.6, "d_m": 0.0, "x_m": 2.257859570362109, "y_m": -0.09877268702525062, "d_right": 1.3721000313957163, "d_left": 1.377982766976425, "psi_rad": -0.026912904279662087, "kappa_radpm": 0.034418313399683376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 317, "s_m": 31.700000000000003, "d_m": 0.0, "x_m": 2.3577943935733643, "y_m": -0.10105123109704207, "d_right": 1.3698209679135653, "d_left": 1.3802612456493737, "psi_rad": -0.022599391234003452, "kappa_radpm": 0.007704338336109728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 318, "s_m": 31.8, "d_m": 0.0, "x_m": 2.457732666459704, "y_m": -0.10329046647287421, "d_right": 1.3675812488891443, "d_left": 1.3825004232316789, "psi_rad": -0.02537203661244014, "kappa_radpm": -0.041862121639167915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 319, "s_m": 31.900000000000002, "d_m": 0.0, "x_m": 2.5576559233038796, "y_m": -0.10612321353989485, "d_right": 1.364747892033863, "d_left": 1.3853330838281805, "psi_rad": -0.030971815561837035, "kappa_radpm": -0.0526052324836912, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 320, "s_m": 32.0, "d_m": 0.0, "x_m": 2.657562936877034, "y_m": -0.10948155248520443, "d_right": 1.36138880096478, "d_left": 1.3886913071618527, "psi_rad": -0.03589308310917838, "kappa_radpm": -0.04582380913105033, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 321, "s_m": 32.1, "d_m": 0.0, "x_m": 2.757453548254635, "y_m": -0.11329764753510571, "d_right": 1.3623100508248258, "d_left": 1.3925072596918202, "psi_rad": -0.0401365773880471, "kappa_radpm": -0.03905029485561151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 322, "s_m": 32.2, "d_m": 0.0, "x_m": 2.8573285267623483, "y_m": -0.11750376778794379, "d_right": 1.3701535639731883, "d_left": 1.3967132149461314, "psi_rad": -0.04370314208030068, "kappa_radpm": -0.032285280848735054, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 323, "s_m": 32.300000000000004, "d_m": 0.0, "x_m": 2.957189430617206, "y_m": -0.1220322948445409, "d_right": 1.384868102665849, "d_left": 1.4012415605356527, "psi_rad": -0.04659363355779411, "kappa_radpm": -0.025528505848103622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 324, "s_m": 32.4, "d_m": 0.0, "x_m": 3.0570384685208465, "y_m": -0.1268157192530584, "d_right": 1.394410041568793, "d_left": 1.4060247939226536, "psi_rad": -0.04880884324992141, "kappa_radpm": -0.018779007715391538, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 325, "s_m": 32.5, "d_m": 0.0, "x_m": 3.156878362286644, "y_m": -0.13178662776573793, "d_right": 1.3894368055869986, "d_left": 1.3889271004750268, "psi_rad": -0.05034943510087242, "kappa_radpm": -0.012035273567064797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 326, "s_m": 32.6, "d_m": 0.0, "x_m": 3.256712210439719, "y_m": -0.1368776833802305, "d_right": 1.3843433100074707, "d_left": 1.3775451082770953, "psi_rad": -0.05121589796333437, "kappa_radpm": -0.005295388411911128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 327, "s_m": 32.7, "d_m": 0.0, "x_m": 3.3565433526173054, "y_m": -0.1420216001128567, "d_right": 1.379196903261224, "d_left": 1.3734166805335128, "psi_rad": -0.051408512783254645, "kappa_radpm": 0.0014428175033964763, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 328, "s_m": 32.800000000000004, "d_m": 0.0, "x_m": 3.456375234515836, "y_m": -0.14715111442911508, "d_right": 1.3740649138074352, "d_left": 1.376539883957019, "psi_rad": -0.05092733446265507, "kappa_radpm": 0.03470849872093784, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 329, "s_m": 32.9, "d_m": 0.0, "x_m": 3.556211273080025, "y_m": -0.1521989552417886, "d_right": 1.3690146767595757, "d_left": 1.3815849653820138, "psi_rad": -0.04446681303906708, "kappa_radpm": 0.0752621216735494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 330, "s_m": 33.0, "d_m": 0.0, "x_m": 3.6560973050867025, "y_m": -0.15603797649649184, "d_right": 1.3651741277704394, "d_left": 1.3854222107874012, "psi_rad": -0.03587491012794519, "kappa_radpm": 0.05227852082874018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 331, "s_m": 33.1, "d_m": 0.0, "x_m": 3.7560053307019086, "y_m": -0.1593696256065676, "d_right": 1.3618413402830918, "d_left": 1.3887525118690338, "psi_rad": -0.03401110887331904, "kappa_radpm": 0.0048085678235387785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 332, "s_m": 33.2, "d_m": 0.0, "x_m": 3.855908771430234, "y_m": -0.16283640760886833, "d_right": 1.3583733478002131, "d_left": 1.3922178653097121, "psi_rad": -0.034913196563237436, "kappa_radpm": -0.010541834008939155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 333, "s_m": 33.300000000000004, "d_m": 0.0, "x_m": 3.9558106404285964, "y_m": -0.16634830339946494, "d_right": 1.3548602164620103, "d_left": 1.3921620738520266, "psi_rad": -0.03611947567510687, "kappa_radpm": -0.04978102659611183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 334, "s_m": 33.4, "d_m": 0.0, "x_m": 4.055703516809618, "y_m": -0.1700560289401394, "d_right": 1.3511510927438661, "d_left": 1.3735796688173458, "psi_rad": -0.0448694018824598, "kappa_radpm": -0.0549432624739854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 335, "s_m": 33.5, "d_m": 0.0, "x_m": 4.155527354166306, "y_m": -0.17531549146864298, "d_right": 1.3458889987833969, "d_left": 1.3636475720655599, "psi_rad": -0.04710812816990395, "kappa_radpm": 0.0009652861944198232, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 336, "s_m": 33.6, "d_m": 0.0, "x_m": 4.255404305678489, "y_m": -0.1794705244683588, "d_right": 1.3417323110025248, "d_left": 1.359898799675299, "psi_rad": -0.04467634464357584, "kappa_radpm": -0.016570095791820227, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 337, "s_m": 33.7, "d_m": 0.0, "x_m": 4.355253648644433, "y_m": -0.184244473703178, "d_right": 1.3369562139426245, "d_left": 1.3641059849993304, "psi_rad": -0.050422147328268, "kappa_radpm": -0.05294493462252525, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 338, "s_m": 33.800000000000004, "d_m": 0.0, "x_m": 4.45507637064867, "y_m": -0.1895469596125402, "d_right": 1.3316510847907428, "d_left": 1.3694015243132165, "psi_rad": -0.05526533156808089, "kappa_radpm": -0.03906188464752103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 339, "s_m": 33.9, "d_m": 0.0, "x_m": 4.5548748816943165, "y_m": -0.19528785273109753, "d_right": 1.3259070863131666, "d_left": 1.3751345968103401, "psi_rad": -0.0582345242577722, "kappa_radpm": 0.009304833149905711, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 340, "s_m": 34.0, "d_m": 0.0, "x_m": 4.654663286171616, "y_m": -0.2011829652336268, "d_right": 1.3262399156368825, "d_left": 1.3735638946167936, "psi_rad": -0.053404364938099746, "kappa_radpm": 0.037149475912852115, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 341, "s_m": 34.1, "d_m": 0.0, "x_m": 4.75451245538713, "y_m": -0.2059595177908744, "d_right": 1.335196014684936, "d_left": 1.3571767660364427, "psi_rad": -0.05080462907520178, "kappa_radpm": -0.014217788017436561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 342, "s_m": 34.2, "d_m": 0.0, "x_m": 4.85433120324924, "y_m": -0.21133575636047408, "d_right": 1.3509177370095165, "d_left": 1.3486223178354633, "psi_rad": -0.05624792254158706, "kappa_radpm": -0.04880481259652236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 343, "s_m": 34.300000000000004, "d_m": 0.0, "x_m": 4.954122585248456, "y_m": -0.21719902871078284, "d_right": 1.3544217857536234, "d_left": 1.3479373955986031, "psi_rad": -0.06056559159450625, "kappa_radpm": -0.03756116700078138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 344, "s_m": 34.4, "d_m": 0.0, "x_m": 5.053891287551807, "y_m": -0.22343703113990399, "d_right": 1.348195592202197, "d_left": 1.353182093777285, "psi_rad": -0.06376015594174334, "kappa_radpm": -0.026340424916952987, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 345, "s_m": 34.5, "d_m": 0.0, "x_m": 5.153643245573895, "y_m": -0.22993776431180618, "d_right": 1.3417075794351425, "d_left": 1.3596862793914934, "psi_rad": -0.06583367657789685, "kappa_radpm": 0.010258307902829555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 346, "s_m": 34.6, "d_m": 0.0, "x_m": 5.253385267645414, "y_m": -0.23658945999252995, "d_right": 1.335069227901408, "d_left": 1.3663416485530229, "psi_rad": -0.061708494361177424, "kappa_radpm": 0.0555148704417574, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 347, "s_m": 34.7, "d_m": 0.0, "x_m": 5.353183979983961, "y_m": -0.24226677594197096, "d_right": 1.3294027332702285, "d_left": 1.3591822969925675, "psi_rad": -0.05473070248954537, "kappa_radpm": 0.03950325173103675, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 348, "s_m": 34.800000000000004, "d_m": 0.0, "x_m": 5.453009073614617, "y_m": -0.24752593319361743, "d_right": 1.3242703396713527, "d_left": 1.344541995757412, "psi_rad": -0.053807844014970074, "kappa_radpm": -0.003746191238703789, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 349, "s_m": 34.9, "d_m": 0.0, "x_m": 5.552821587926268, "y_m": -0.25301922434407204, "d_right": 1.326437605052896, "d_left": 1.337468510436558, "psi_rad": -0.055479940737286126, "kappa_radpm": -0.03947215608715915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 350, "s_m": 35.0, "d_m": 0.0, "x_m": 5.652628579211929, "y_m": -0.25861218845486866, "d_right": 1.3360024603248566, "d_left": 1.3379473704681728, "psi_rad": -0.061702275232401904, "kappa_radpm": -0.05994201738983018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 351, "s_m": 35.1, "d_m": 0.0, "x_m": 5.752360474640539, "y_m": -0.26534687611569796, "d_right": 1.3517836120277253, "d_left": 1.344684658563708, "psi_rad": -0.06746834421525216, "kappa_radpm": -0.024545587029163318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 352, "s_m": 35.2, "d_m": 0.0, "x_m": 5.852093361882833, "y_m": -0.27209020382041466, "d_right": 1.3490063386790188, "d_left": 1.3514305865929614, "psi_rad": -0.06661139263823457, "kappa_radpm": -0.003553383153649392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 353, "s_m": 35.300000000000004, "d_m": 0.0, "x_m": 5.951841045225911, "y_m": -0.278654242490355, "d_right": 1.3424490892540943, "d_left": 1.3579970486835078, "psi_rad": -0.06817902084598204, "kappa_radpm": -0.029149419621590233, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 354, "s_m": 35.4, "d_m": 0.0, "x_m": 6.05155518739911, "y_m": -0.2857104263079843, "d_right": 1.3354006563343555, "d_left": 1.3483990561073218, "psi_rad": -0.07244127656255261, "kappa_radpm": -0.035906517102519686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 355, "s_m": 35.5, "d_m": 0.0, "x_m": 6.151243402549936, "y_m": -0.2931245247503468, "d_right": 1.3295399712163125, "d_left": 1.3372111769654504, "psi_rad": -0.07536032426648598, "kappa_radpm": -0.00159917325035841, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 356, "s_m": 35.6, "d_m": 0.0, "x_m": 6.250914724869798, "y_m": -0.3007627314007622, "d_right": 1.330956842111102, "d_left": 1.3336687312242004, "psi_rad": -0.0727611112126243, "kappa_radpm": -0.006587739767563994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 357, "s_m": 35.7, "d_m": 0.0, "x_m": 6.350636162807739, "y_m": -0.30765822060864223, "d_right": 1.3405887517342268, "d_left": 1.3368657122411558, "psi_rad": -0.07667787221999878, "kappa_radpm": -0.0756988982757778, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 358, "s_m": 35.800000000000004, "d_m": 0.0, "x_m": 6.450244327701633, "y_m": -0.3160769262366854, "d_right": 1.354750740063988, "d_left": 1.3452843410808026, "psi_rad": -0.08790089086777986, "kappa_radpm": -0.08858754814508152, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 359, "s_m": 35.9, "d_m": 0.0, "x_m": 6.549789697342154, "y_m": -0.3252092200037561, "d_right": 1.345622016724595, "d_left": 1.3544166666789377, "psi_rad": -0.09439538184901508, "kappa_radpm": -0.03457973780503165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 360, "s_m": 36.0, "d_m": 0.0, "x_m": 6.649280275375941, "y_m": -0.33492100377161027, "d_right": 1.3388528818855618, "d_left": 1.3436219733624168, "psi_rad": -0.09481683842878619, "kappa_radpm": 0.013115755493554593, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 361, "s_m": 36.1, "d_m": 0.0, "x_m": 6.748815327825967, "y_m": -0.3441369566643108, "d_right": 1.3400272373308482, "d_left": 1.3355894659673244, "psi_rad": -0.09177223075030416, "kappa_radpm": 0.0029981181207205942, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 362, "s_m": 36.2, "d_m": 0.0, "x_m": 6.848363121086408, "y_m": -0.3532427456358569, "d_right": 1.348740488075553, "d_left": 1.334903407501219, "psi_rad": -0.09421721480464207, "kappa_radpm": -0.036658807853993114, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 363, "s_m": 36.300000000000004, "d_m": 0.0, "x_m": 6.947854578275349, "y_m": -0.36294556739104966, "d_right": 1.3578743062951997, "d_left": 1.3422818309508846, "psi_rad": -0.09910399232110279, "kappa_radpm": -0.0028110150627913555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 364, "s_m": 36.4, "d_m": 0.0, "x_m": 7.047308362912056, "y_m": -0.3730238163940042, "d_right": 1.3477929142108411, "d_left": 1.3523521715326918, "psi_rad": -0.09477941781720034, "kappa_radpm": 0.03860794169412207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 365, "s_m": 36.5, "d_m": 0.0, "x_m": 7.146879964888997, "y_m": -0.3818657658746374, "d_right": 1.3432459597742905, "d_left": 1.3599880934875066, "psi_rad": -0.09138240398227837, "kappa_radpm": -0.00566119177115354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 366, "s_m": 36.6, "d_m": 0.0, "x_m": 7.246400292605322, "y_m": -0.39126812836268127, "d_right": 1.3455657991419494, "d_left": 1.346205430327538, "psi_rad": -0.09591165617143105, "kappa_radpm": 0.002679135045355885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 367, "s_m": 36.7, "d_m": 0.0, "x_m": 7.345887568843153, "y_m": -0.40101165877782097, "d_right": 1.3549352051545025, "d_left": 1.3401023036865671, "psi_rad": -0.0908465769732072, "kappa_radpm": 0.047730657002206245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 368, "s_m": 36.800000000000004, "d_m": 0.0, "x_m": 7.445498008255442, "y_m": -0.4094053980242461, "d_right": 1.361654538499994, "d_left": 1.3400871629778301, "psi_rad": -0.0863655247709898, "kappa_radpm": 0.004363061045568051, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 369, "s_m": 36.9, "d_m": 0.0, "x_m": 7.545068876835464, "y_m": -0.4182569558831856, "d_right": 1.3584431171737346, "d_left": 1.3479647933616143, "psi_rad": -0.08997396476409358, "kappa_radpm": -0.03752818820001336, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 370, "s_m": 37.0, "d_m": 0.0, "x_m": 7.644616244410151, "y_m": -0.42736935599809683, "d_right": 1.3623164830985894, "d_left": 1.3508092974710453, "psi_rad": -0.09387116241099247, "kappa_radpm": -0.051448771436383156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 371, "s_m": 37.1, "d_m": 0.0, "x_m": 7.744114896962762, "y_m": -0.4369967131625178, "d_right": 1.371438656436597, "d_left": 1.3385106994423328, "psi_rad": -0.10026371905137021, "kappa_radpm": -0.06503932305330085, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 372, "s_m": 37.2, "d_m": 0.0, "x_m": 7.843537504028627, "y_m": -0.4473810441924162, "d_right": 1.3741733202645938, "d_left": 1.3343729085143232, "psi_rad": -0.10687902702165264, "kappa_radpm": -0.016082521666246352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 373, "s_m": 37.300000000000004, "d_m": 0.0, "x_m": 7.942900252979392, "y_m": -0.45832396848825707, "d_right": 1.370174489587038, "d_left": 1.3382734753514753, "psi_rad": -0.10348022338461949, "kappa_radpm": 0.033525512062897445, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 374, "s_m": 37.4, "d_m": 0.0, "x_m": 8.042391083605889, "y_m": -0.4680322217174669, "d_right": 1.3746966582458497, "d_left": 1.3479921779016946, "psi_rad": -0.10017392460907315, "kappa_radpm": -0.009937353650099068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 375, "s_m": 37.5, "d_m": 0.0, "x_m": 8.14182400734843, "y_m": -0.4783178647963064, "d_right": 1.3858566232691658, "d_left": 1.346755508762356, "psi_rad": -0.1054676941146393, "kappa_radpm": -0.06145804514545383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 376, "s_m": 37.6, "d_m": 0.0, "x_m": 8.241206518784452, "y_m": -0.4890789223496207, "d_right": 1.3914293075682127, "d_left": 1.337412652739583, "psi_rad": -0.11246553363816392, "kappa_radpm": -0.058618893342653466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 377, "s_m": 37.7, "d_m": 0.0, "x_m": 8.340485506842265, "y_m": -0.5007551153755792, "d_right": 1.3951321255093, "d_left": 1.3359268098772663, "psi_rad": -0.11719147278316999, "kappa_radpm": -0.024205603970195444, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 378, "s_m": 37.800000000000004, "d_m": 0.0, "x_m": 8.439759800521555, "y_m": -0.5124547854356233, "d_right": 1.4059267028832132, "d_left": 1.3419302622122935, "psi_rad": -0.117306654432203, "kappa_radpm": -0.0011911549136234267, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 379, "s_m": 37.9, "d_m": 0.0, "x_m": 8.539036074204752, "y_m": -0.5241538455747407, "d_right": 1.4083992584720129, "d_left": 1.3536408490565037, "psi_rad": -0.11742970376589468, "kappa_radpm": -0.02083145013047405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 380, "s_m": 38.0, "d_m": 0.0, "x_m": 8.638307454095093, "y_m": -0.535877943069167, "d_right": 1.4063381841059577, "d_left": 1.350533298426754, "psi_rad": -0.12147294445829782, "kappa_radpm": -0.074348206166307, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 381, "s_m": 38.1, "d_m": 0.0, "x_m": 8.737479045919406, "y_m": -0.5483785657401032, "d_right": 1.410591076870673, "d_left": 1.3438157771440267, "psi_rad": -0.13229934499915608, "kappa_radpm": -0.07734228208445382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 382, "s_m": 38.2, "d_m": 0.0, "x_m": 8.836473975865788, "y_m": -0.5622492841556321, "d_right": 1.4121501400673988, "d_left": 1.3458961952245532, "psi_rad": -0.13694140087518858, "kappa_radpm": -0.004773172676684201, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 383, "s_m": 38.300000000000004, "d_m": 0.0, "x_m": 8.935531040257581, "y_m": -0.5756709008681613, "d_right": 1.4093733665403665, "d_left": 1.3549164749349996, "psi_rad": -0.13325397953449292, "kappa_radpm": 0.02891595590868823, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 384, "s_m": 38.400000000000006, "d_m": 0.0, "x_m": 9.034625993304966, "y_m": -0.5888112322904236, "d_right": 1.4139602110128273, "d_left": 1.3495946396641922, "psi_rad": -0.13115820969345093, "kappa_radpm": -0.0029150723126436517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 385, "s_m": 38.5, "d_m": 0.0, "x_m": 9.133738750723156, "y_m": -0.6018175706991141, "d_right": 1.4256926917118042, "d_left": 1.344675686339924, "psi_rad": -0.13383699399702165, "kappa_radpm": -0.03196968933209199, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 386, "s_m": 38.6, "d_m": 0.0, "x_m": 9.232761594689597, "y_m": -0.6154885807061898, "d_right": 1.4380304754013513, "d_left": 1.3478458338637396, "psi_rad": -0.13755214755986933, "kappa_radpm": -0.04844058925905781, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 387, "s_m": 38.7, "d_m": 0.0, "x_m": 9.331775030720719, "y_m": -0.6292309975503039, "d_right": 1.4433542094968381, "d_left": 1.3584560319542556, "psi_rad": -0.1435251118488332, "kappa_radpm": -0.07539265374202242, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 388, "s_m": 38.800000000000004, "d_m": 0.0, "x_m": 9.430628330409577, "y_m": -0.644084046622884, "d_right": 1.446696566527841, "d_left": 1.3512352617612098, "psi_rad": -0.15263067830827381, "kappa_radpm": -0.0630339660689383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 389, "s_m": 38.900000000000006, "d_m": 0.0, "x_m": 9.529375189940803, "y_m": -0.6596272495712736, "d_right": 1.4509643847286726, "d_left": 1.3501758646908617, "psi_rad": -0.15613190506262087, "kappa_radpm": -0.04332369446978568, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 390, "s_m": 39.0, "d_m": 0.0, "x_m": 9.628120597525696, "y_m": -0.6751719134315676, "d_right": 1.4620684193194147, "d_left": 1.3565036833836392, "psi_rad": -0.16129541720223095, "kappa_radpm": -0.06387240482374268, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 391, "s_m": 39.1, "d_m": 0.0, "x_m": 9.72670052477115, "y_m": -0.6917338364772398, "d_right": 1.4720730625248133, "d_left": 1.3711290374293579, "psi_rad": -0.1689063860273694, "kappa_radpm": -0.08092688153547023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 392, "s_m": 39.2, "d_m": 0.0, "x_m": 9.825199748983866, "y_m": -0.7087800565523461, "d_right": 1.4825190127413406, "d_left": 1.370350446042094, "psi_rad": -0.177480793509325, "kappa_radpm": -0.09176751249518778, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 393, "s_m": 39.300000000000004, "d_m": 0.0, "x_m": 9.923480795591548, "y_m": -0.7270299380672158, "d_right": 1.4906077067540204, "d_left": 1.3731919581897112, "psi_rad": -0.18725988852640696, "kappa_radpm": -0.11717410810788587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 394, "s_m": 39.400000000000006, "d_m": 0.0, "x_m": 10.021627821643026, "y_m": -0.7459992216921804, "d_right": 1.4999690243753743, "d_left": 1.383995052442539, "psi_rad": -0.20091561513090217, "kappa_radpm": -0.13793473266408007, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 395, "s_m": 39.5, "d_m": 0.0, "x_m": 10.119372123970505, "y_m": -0.7669258421695972, "d_right": 1.5045872740954749, "d_left": 1.3975882136633788, "psi_rad": -0.21484683505922297, "kappa_radpm": -0.10922513919523813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 396, "s_m": 39.6, "d_m": 0.0, "x_m": 10.216952624873851, "y_m": -0.7886219746922976, "d_right": 1.5120476696543887, "d_left": 1.4107477045374544, "psi_rad": -0.2227606429699498, "kappa_radpm": -0.11122768720383092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 397, "s_m": 39.7, "d_m": 0.0, "x_m": 10.314357195699666, "y_m": -0.8110938431001622, "d_right": 1.5143278600652983, "d_left": 1.4122336586671551, "psi_rad": -0.23709237249998916, "kappa_radpm": -0.17359280010535771, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 398, "s_m": 39.800000000000004, "d_m": 0.0, "x_m": 10.411268434787381, "y_m": -0.8355758894766803, "d_right": 1.5194474249546943, "d_left": 1.4228199623066604, "psi_rad": -0.25747920299102134, "kappa_radpm": -0.19728549850863808, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 399, "s_m": 39.900000000000006, "d_m": 0.0, "x_m": 10.507674578498756, "y_m": -0.8619989800422381, "d_right": 1.5172543058072037, "d_left": 1.4321954452249965, "psi_rad": -0.2765494722017168, "kappa_radpm": -0.18681145794810727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 400, "s_m": 40.0, "d_m": 0.0, "x_m": 10.603588732205331, "y_m": -0.890160653768225, "d_right": 1.519836442384894, "d_left": 1.4406491732055837, "psi_rad": -0.2948414945806428, "kappa_radpm": -0.19399204736286868, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 401, "s_m": 40.1, "d_m": 0.0, "x_m": 10.698964986572093, "y_m": -0.9200925546242158, "d_right": 1.5271257803547205, "d_left": 1.4577476367905293, "psi_rad": -0.3153478816742905, "kappa_radpm": -0.238176764080561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 402, "s_m": 40.2, "d_m": 0.0, "x_m": 10.793633022506826, "y_m": -0.9521596210074986, "d_right": 1.5386562817542144, "d_left": 1.48356559185507, "psi_rad": -0.342476847396755, "kappa_radpm": -0.27424264690970257, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 403, "s_m": 40.300000000000004, "d_m": 0.0, "x_m": 10.88724418331632, "y_m": -0.9872190027820784, "d_right": 1.535577454632274, "d_left": 1.5038442151047346, "psi_rad": -0.370196411056231, "kappa_radpm": -0.2529099480437791, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 404, "s_m": 40.400000000000006, "d_m": 0.0, "x_m": 10.97999651003846, "y_m": -1.0244852661607005, "d_right": 1.5365462400968115, "d_left": 1.5228238408727492, "psi_rad": -0.3930588370055108, "kappa_radpm": -0.24333946084871605, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 405, "s_m": 40.5, "d_m": 0.0, "x_m": 11.071907968129057, "y_m": -1.0637870905445423, "d_right": 1.541807411740579, "d_left": 1.5501445033268582, "psi_rad": -0.41886430322597423, "kappa_radpm": -0.2852419414113483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 406, "s_m": 40.6, "d_m": 0.0, "x_m": 11.162609638342866, "y_m": -1.1057866489013903, "d_right": 1.5499312622968473, "d_left": 1.5715949702317737, "psi_rad": -0.45010722528778047, "kappa_radpm": -0.30588162681861153, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 407, "s_m": 40.7, "d_m": 0.0, "x_m": 11.251885355071884, "y_m": -1.1507498814311403, "d_right": 1.5558343633113183, "d_left": 1.5858299087886387, "psi_rad": -0.48004062858969654, "kappa_radpm": -0.2997661429581222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 408, "s_m": 40.800000000000004, "d_m": 0.0, "x_m": 11.33991384012268, "y_m": -1.1981022953197233, "d_right": 1.55144028671503, "d_left": 1.5936006223529648, "psi_rad": -0.5100604538794049, "kappa_radpm": -0.32288140402918275, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 409, "s_m": 40.900000000000006, "d_m": 0.0, "x_m": 11.426331594184528, "y_m": -1.2483417517507538, "d_right": 1.5403539764968117, "d_left": 1.594102763775997, "psi_rad": -0.5446169093955331, "kappa_radpm": -0.34094921455417815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 410, "s_m": 41.0, "d_m": 0.0, "x_m": 11.5108825379524, "y_m": -1.3016619546915826, "d_right": 1.5321072570410155, "d_left": 1.5980248618386457, "psi_rad": -0.5782502967902405, "kappa_radpm": -0.3259502813385451, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 411, "s_m": 41.1, "d_m": 0.0, "x_m": 11.593724984188453, "y_m": -1.3575944883226083, "d_right": 1.5272376085421722, "d_left": 1.5927884410258115, "psi_rad": -0.6098069656632421, "kappa_radpm": -0.33912549747822984, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 412, "s_m": 41.2, "d_m": 0.0, "x_m": 11.674742111739244, "y_m": -1.416139426284319, "d_right": 1.5257162338271393, "d_left": 1.5918907342774842, "psi_rad": -0.6460753962858865, "kappa_radpm": -0.3824456786847308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 413, "s_m": 41.300000000000004, "d_m": 0.0, "x_m": 11.753308035155408, "y_m": -1.4779249144538695, "d_right": 1.5172457637738241, "d_left": 1.5792786814806161, "psi_rad": -0.6862961014001883, "kappa_radpm": -0.37905032312695264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 414, "s_m": 41.400000000000006, "d_m": 0.0, "x_m": 11.829362805658945, "y_m": -1.5427935869760814, "d_right": 1.508416292659856, "d_left": 1.5566415325113396, "psi_rad": -0.721885460911277, "kappa_radpm": -0.35757557299720855, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 415, "s_m": 41.5, "d_m": 0.0, "x_m": 11.903337475567469, "y_m": -1.6100122256954743, "d_right": 1.4922442991244107, "d_left": 1.5432893516067865, "psi_rad": -0.75781121599963, "kappa_radpm": -0.40866552440036674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 416, "s_m": 41.6, "d_m": 0.0, "x_m": 11.974530007447177, "y_m": -1.6801644482067701, "d_right": 1.476941097927642, "d_left": 1.528758327103909, "psi_rad": -0.8036185657913504, "kappa_radpm": -0.4568658226616762, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 417, "s_m": 41.7, "d_m": 0.0, "x_m": 12.042047372422088, "y_m": -1.7538712111049495, "d_right": 1.4631993302553825, "d_left": 1.4982049185423374, "psi_rad": -0.8491843805319652, "kappa_radpm": -0.42990528141651607, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 418, "s_m": 41.800000000000004, "d_m": 0.0, "x_m": 12.106568494278406, "y_m": -1.830221164350581, "d_right": 1.4522151682208353, "d_left": 1.4708214008976868, "psi_rad": -0.8895996220746536, "kappa_radpm": -0.4380696221827618, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 419, "s_m": 41.900000000000006, "d_m": 0.0, "x_m": 12.167905017255839, "y_m": -1.9091278563556193, "d_right": 1.4397852728822937, "d_left": 1.440785399837848, "psi_rad": -0.9367983049685176, "kappa_radpm": -0.4876919101687882, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 420, "s_m": 42.0, "d_m": 0.0, "x_m": 12.224935122234424, "y_m": -1.9912081091703433, "d_right": 1.422061498352014, "d_left": 1.4193851816790515, "psi_rad": -0.9871380041084112, "kappa_radpm": -0.48134224277235127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 421, "s_m": 42.1, "d_m": 0.0, "x_m": 12.278034823583333, "y_m": -2.0758876878191383, "d_right": 1.3997176230602761, "d_left": 1.3965140116255386, "psi_rad": -1.0330667535229878, "kappa_radpm": -0.47284220881073535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 422, "s_m": 42.2, "d_m": 0.0, "x_m": 12.32729702468944, "y_m": -2.1628561630512504, "d_right": 1.3768729803792832, "d_left": 1.3665850201917351, "psi_rad": -1.0817064458705583, "kappa_radpm": -0.5238392021476712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 423, "s_m": 42.300000000000004, "d_m": 0.0, "x_m": 12.3719224583977, "y_m": -2.2522953656090903, "d_right": 1.355807681796936, "d_left": 1.34300239409699, "psi_rad": -1.137834593952522, "kappa_radpm": -0.5255114352664214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 424, "s_m": 42.400000000000006, "d_m": 0.0, "x_m": 12.411131989487874, "y_m": -2.344234448155817, "d_right": 1.3359642717280773, "d_left": 1.324381517217661, "psi_rad": -1.1868087329238426, "kappa_radpm": -0.47088283361092165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 425, "s_m": 42.5, "d_m": 0.0, "x_m": 12.446796562956273, "y_m": -2.437607189879372, "d_right": 1.3133373986065549, "d_left": 1.3047765390234611, "psi_rad": -1.2320111606747064, "kappa_radpm": -0.4677933838075843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 426, "s_m": 42.6, "d_m": 0.0, "x_m": 12.477546113494292, "y_m": -2.532712489396045, "d_right": 1.2851284729060652, "d_left": 1.2885346397428983, "psi_rad": -1.2803674096853594, "kappa_radpm": -0.4664475033178439, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 427, "s_m": 42.7, "d_m": 0.0, "x_m": 12.504027250830505, "y_m": -2.629091048924469, "d_right": 1.2598442760252, "d_left": 1.2779730402370018, "psi_rad": -1.3253006613382752, "kappa_radpm": -0.4519812522901123, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 428, "s_m": 42.800000000000004, "d_m": 0.0, "x_m": 12.526116553319653, "y_m": -2.726568242125796, "d_right": 1.23764343979093, "d_left": 1.2681383703420719, "psi_rad": -1.370763660143382, "kappa_radpm": -0.42466786513010835, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 429, "s_m": 42.900000000000006, "d_m": 0.0, "x_m": 12.54373661218389, "y_m": -2.824950618618142, "d_right": 1.21620871499392, "d_left": 1.250587349709634, "psi_rad": -1.4102342343642968, "kappa_radpm": -0.3633093931235365, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 430, "s_m": 43.0, "d_m": 0.0, "x_m": 12.558071613018573, "y_m": -2.9238749889939983, "d_right": 1.194456678730897, "d_left": 1.2363019550656098, "psi_rad": -1.4434255387680892, "kappa_radpm": -0.34049831160533284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 431, "s_m": 43.1, "d_m": 0.0, "x_m": 12.56912758520219, "y_m": -3.0232183381330104, "d_right": 1.1664187710476859, "d_left": 1.2252785268086739, "psi_rad": -1.4783338966853634, "kappa_radpm": -0.36157878073726835, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 432, "s_m": 43.2, "d_m": 0.0, "x_m": 12.576526538532148, "y_m": -3.1228996442471635, "d_right": 1.138645286356047, "d_left": 1.217896606247343, "psi_rad": -1.5157412949155429, "kappa_radpm": -0.3786235824278461, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 433, "s_m": 43.300000000000004, "d_m": 0.0, "x_m": 12.580126180266461, "y_m": -3.2227910200219, "d_right": 1.1153915592261447, "d_left": 1.2143027988578405, "psi_rad": -1.5540586131709326, "kappa_radpm": -0.3853721553825462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 434, "s_m": 43.400000000000006, "d_m": 0.0, "x_m": 12.579871851082586, "y_m": -3.322747737131153, "d_right": 1.09693090135763, "d_left": 1.200912552088629, "psi_rad": 4.690369581187534, "kappa_radpm": -0.38803091177398663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 435, "s_m": 43.5, "d_m": 0.0, "x_m": 12.575725361040515, "y_m": -3.422619721615542, "d_right": 1.0834981295556043, "d_left": 1.1896538453836143, "psi_rad": 4.651520511653857, "kappa_radpm": -0.3825881775812756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 436, "s_m": 43.6, "d_m": 0.0, "x_m": 12.567713025083782, "y_m": -3.5222567195532073, "d_right": 1.0753226838698873, "d_left": 1.1827137239714505, "psi_rad": 4.6138519456712785, "kappa_radpm": -0.36265118978890065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 437, "s_m": 43.7, "d_m": 0.0, "x_m": 12.556061260067986, "y_m": -3.6215339331374503, "d_right": 1.0636505073074123, "d_left": 1.1783869968721365, "psi_rad": 4.578990273696077, "kappa_radpm": -0.33619639014473846, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 438, "s_m": 43.800000000000004, "d_m": 0.0, "x_m": 12.541127022503673, "y_m": -3.7203704390927776, "d_right": 1.057801519536698, "d_left": 1.1711784625542994, "psi_rad": 4.54661266764233, "kappa_radpm": -0.35054611724376405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 439, "s_m": 43.900000000000006, "d_m": 0.0, "x_m": 12.523075754181276, "y_m": -3.818683836025241, "d_right": 1.0582224336973496, "d_left": 1.175630795737858, "psi_rad": 4.508881050247323, "kappa_radpm": -0.3860351897185166, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 440, "s_m": 44.0, "d_m": 0.0, "x_m": 12.500734447553882, "y_m": -3.9161043511514104, "d_right": 1.0636898248638784, "d_left": 1.179618465605268, "psi_rad": 4.4694056296986275, "kappa_radpm": -0.3913688590242681, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 441, "s_m": 44.1, "d_m": 0.0, "x_m": 12.474986758519988, "y_m": -4.012684138290381, "d_right": 1.0635719829494632, "d_left": 1.1797752250653994, "psi_rad": 4.43060727844247, "kappa_radpm": -0.39752438191375195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 442, "s_m": 44.2, "d_m": 0.0, "x_m": 12.4451595603083, "y_m": -4.1080832563609375, "d_right": 1.0625812402410542, "d_left": 1.1819332930575475, "psi_rad": 4.389900753315877, "kappa_radpm": -0.3744636816908642, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 443, "s_m": 44.300000000000004, "d_m": 0.0, "x_m": 12.41164036990842, "y_m": -4.202257046878602, "d_right": 1.0670941850791664, "d_left": 1.189217904049891, "psi_rad": 4.355714542104297, "kappa_radpm": -0.3386168670660039, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 444, "s_m": 44.400000000000006, "d_m": 0.0, "x_m": 12.375364605420573, "y_m": -4.2953965163541294, "d_right": 1.077969550388098, "d_left": 1.1925111967942699, "psi_rad": 4.322177379902676, "kappa_radpm": -0.37762423192843064, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 445, "s_m": 44.5, "d_m": 0.0, "x_m": 12.33561352329416, "y_m": -4.38710125605391, "d_right": 1.0930868013257184, "d_left": 1.1915202324015681, "psi_rad": 4.280189695718612, "kappa_radpm": -0.41817355968065684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 446, "s_m": 44.6, "d_m": 0.0, "x_m": 12.291652336494788, "y_m": -4.476872530487803, "d_right": 1.0970736963512695, "d_left": 1.203479871691809, "psi_rad": 4.238542667966545, "kappa_radpm": -0.4060826215761315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 447, "s_m": 44.7, "d_m": 0.0, "x_m": 12.24440962529041, "y_m": -4.5649510577621015, "d_right": 1.1061568410584937, "d_left": 1.2155409809176938, "psi_rad": 4.198973171403384, "kappa_radpm": -0.4121885301924988, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 448, "s_m": 44.800000000000004, "d_m": 0.0, "x_m": 12.193491199253243, "y_m": -4.650962822613362, "d_right": 1.119959554137824, "d_left": 1.2288735146876315, "psi_rad": 4.156104961928046, "kappa_radpm": -0.43748425364026344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 449, "s_m": 44.900000000000006, "d_m": 0.0, "x_m": 12.138877545154626, "y_m": -4.734675465464502, "d_right": 1.1381539789190231, "d_left": 1.2542697011833663, "psi_rad": 4.111476320675332, "kappa_radpm": -0.4819162858035564, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 450, "s_m": 45.0, "d_m": 0.0, "x_m": 12.080493615282757, "y_m": -4.81580789626265, "d_right": 1.1542122488244189, "d_left": 1.2673164115383713, "psi_rad": 4.059721704767334, "kappa_radpm": -0.503257960039647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 451, "s_m": 45.1, "d_m": 0.0, "x_m": 12.017520443775663, "y_m": -4.893432214575302, "d_right": 1.164560614460022, "d_left": 1.2765739127881373, "psi_rad": 4.010824728667403, "kappa_radpm": -0.44307267589048793, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 452, "s_m": 45.2, "d_m": 0.0, "x_m": 11.951491697738021, "y_m": -4.9684790448577525, "d_right": 1.1709324203700755, "d_left": 1.2956085842428469, "psi_rad": 3.9711071695892364, "kappa_radpm": -0.4291114268964269, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 453, "s_m": 45.300000000000004, "d_m": 0.0, "x_m": 11.882566679615858, "y_m": -5.0408513281291185, "d_right": 1.1792730751735438, "d_left": 1.3171310005448873, "psi_rad": 3.9250024432881174, "kappa_radpm": -0.47306235718410417, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 454, "s_m": 45.400000000000006, "d_m": 0.0, "x_m": 11.809915196247072, "y_m": -5.109493648886368, "d_right": 1.1907533814807858, "d_left": 1.3388113510181074, "psi_rad": 3.8764946981524155, "kappa_radpm": -0.4811120933358559, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 455, "s_m": 45.5, "d_m": 0.0, "x_m": 11.734296782385021, "y_m": -5.17485536011431, "d_right": 1.2060864738266077, "d_left": 1.3472003021361225, "psi_rad": 3.8287800246209462, "kappa_radpm": -0.48604303797436854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 456, "s_m": 45.6, "d_m": 0.0, "x_m": 11.65543917537661, "y_m": -5.236259530870931, "d_right": 1.221584560998852, "d_left": 1.3595321215399914, "psi_rad": 3.779286090557542, "kappa_radpm": -0.49271122769834363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 457, "s_m": 45.7, "d_m": 0.0, "x_m": 11.573726823317562, "y_m": -5.293832042332429, "d_right": 1.2280937741240743, "d_left": 1.3765854444967862, "psi_rad": 3.7302377790812775, "kappa_radpm": -0.48117361964932215, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 458, "s_m": 45.800000000000004, "d_m": 0.0, "x_m": 11.489226434834007, "y_m": -5.347222350618158, "d_right": 1.231314420445261, "d_left": 1.3904995125337236, "psi_rad": 3.6830513666276774, "kappa_radpm": -0.4625112882027915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 459, "s_m": 45.900000000000006, "d_m": 0.0, "x_m": 11.402464184339319, "y_m": -5.3968318273425195, "d_right": 1.2370330952834172, "d_left": 1.368475246352423, "psi_rad": 3.637735521440719, "kappa_radpm": -0.43029548791337024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 460, "s_m": 46.0, "d_m": 0.0, "x_m": 11.313477680479307, "y_m": -5.442355980318139, "d_right": 1.244848369893111, "d_left": 1.3504757693377936, "psi_rad": 3.5969922690450034, "kappa_radpm": -0.38866994387707354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 461, "s_m": 46.1, "d_m": 0.0, "x_m": 11.222955372688228, "y_m": -5.484743058218879, "d_right": 1.2492188062241012, "d_left": 1.327449497702508, "psi_rad": 3.5600015326653045, "kappa_radpm": -0.4010699735328416, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 462, "s_m": 46.2, "d_m": 0.0, "x_m": 11.1308435408486, "y_m": -5.523567075178117, "d_right": 1.2521335606360116, "d_left": 1.3069832972716622, "psi_rad": 3.516778274338435, "kappa_radpm": -0.4020616394377319, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 463, "s_m": 46.300000000000004, "d_m": 0.0, "x_m": 11.036994191974342, "y_m": -5.557982190528637, "d_right": 1.2455569591966167, "d_left": 1.2879556776508734, "psi_rad": 3.479589204777758, "kappa_radpm": -0.32734779389811397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 464, "s_m": 46.400000000000006, "d_m": 0.0, "x_m": 10.942252082202538, "y_m": -5.589854017941675, "d_right": 1.2422583337902275, "d_left": 1.2791848480818715, "psi_rad": 3.4513087155588122, "kappa_radpm": -0.2781680392773689, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 465, "s_m": 46.5, "d_m": 0.0, "x_m": 10.846610066663084, "y_m": -5.618907863718197, "d_right": 1.239317178969935, "d_left": 1.26264043101478, "psi_rad": 3.4239555969222844, "kappa_radpm": -0.2579532465722112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 466, "s_m": 46.6, "d_m": 0.0, "x_m": 10.750266341133374, "y_m": -5.645551845866499, "d_right": 1.2317333680418767, "d_left": 1.2526894054578264, "psi_rad": 3.39971806624437, "kappa_radpm": -0.2720120994828834, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 467, "s_m": 46.7, "d_m": 0.0, "x_m": 10.653327155691697, "y_m": -5.6699375080364804, "d_right": 1.2299040824788992, "d_left": 1.2530080118591955, "psi_rad": 3.3695531770257077, "kappa_radpm": -0.2872212235946181, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 468, "s_m": 46.800000000000004, "d_m": 0.0, "x_m": 10.555550734769378, "y_m": -5.690724522842594, "d_right": 1.2325002666450313, "d_left": 1.2512330596250418, "psi_rad": 3.3422738215254464, "kappa_radpm": -0.22088449909847707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 469, "s_m": 46.900000000000006, "d_m": 0.0, "x_m": 10.457422632695588, "y_m": -5.7097882673262985, "d_right": 1.241351758572704, "d_left": 1.250454294508902, "psi_rad": 3.3253762772060123, "kappa_radpm": -0.15914556750256992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 470, "s_m": 47.0, "d_m": 0.0, "x_m": 10.358998776839792, "y_m": -5.727259827068332, "d_right": 1.2338054607387876, "d_left": 1.2585217080333406, "psi_rad": 3.3104447080249324, "kappa_radpm": -0.135350609231093, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 471, "s_m": 47.1, "d_m": 0.0, "x_m": 10.26034520626487, "y_m": -5.7433850974633005, "d_right": 1.2329702066351333, "d_left": 1.2617347798013379, "psi_rad": 3.2983061553597937, "kappa_radpm": -0.14001639372073438, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 472, "s_m": 47.2, "d_m": 0.0, "x_m": 10.161525701761514, "y_m": -5.758462379125386, "d_right": 1.232711005314749, "d_left": 1.2672840642144239, "psi_rad": 3.2824414292807855, "kappa_radpm": -0.1442779788718651, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 473, "s_m": 47.300000000000004, "d_m": 0.0, "x_m": 10.06241304040073, "y_m": -5.771449430215174, "d_right": 1.2246007254199804, "d_left": 1.2670448875222597, "psi_rad": 3.2694505595854206, "kappa_radpm": -0.06974252692075744, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 474, "s_m": 47.400000000000006, "d_m": 0.0, "x_m": 9.963234723064405, "y_m": -5.783954512174254, "d_right": 1.2214207851142325, "d_left": 1.2694814818438114, "psi_rad": 3.268492923896634, "kappa_radpm": -0.03065631859794138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 475, "s_m": 47.5, "d_m": 0.0, "x_m": 9.864093893521074, "y_m": -5.796752151900406, "d_right": 1.2192300848416169, "d_left": 1.2743989221766885, "psi_rad": 3.2633192958658324, "kappa_radpm": -0.07216737078294067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 476, "s_m": 47.6, "d_m": 0.0, "x_m": 9.764796511504754, "y_m": -5.8082297463924855, "d_right": 1.2081281929016767, "d_left": 1.269188747528759, "psi_rad": 3.254059449740046, "kappa_radpm": -0.054167407801499756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 477, "s_m": 47.7, "d_m": 0.0, "x_m": 9.665436944923604, "y_m": -5.81918914249791, "d_right": 1.2047204045894768, "d_left": 1.2723585587933153, "psi_rad": 3.2524858143055324, "kappa_radpm": -0.004231078731922189, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 478, "s_m": 47.800000000000004, "d_m": 0.0, "x_m": 9.566099964273272, "y_m": -5.830354600916744, "d_right": 1.2097988131680968, "d_left": 1.2831256006213525, "psi_rad": 3.2532132339936615, "kappa_radpm": -0.0018841579519124352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 479, "s_m": 47.900000000000006, "d_m": 0.0, "x_m": 9.466756104660787, "y_m": -5.841458576215515, "d_right": 1.2209135803479387, "d_left": 1.2879090282243275, "psi_rad": 3.25210898271515, "kappa_radpm": 0.0008781032878379946, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 480, "s_m": 48.0, "d_m": 0.0, "x_m": 9.367394448167488, "y_m": -5.852404650381463, "d_right": 1.2202159652792948, "d_left": 1.2923542649222275, "psi_rad": 3.253388854651229, "kappa_radpm": 0.016475337663695022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 481, "s_m": 48.1, "d_m": 0.0, "x_m": 9.268079782135436, "y_m": -5.863762834275263, "d_right": 1.2104869886091498, "d_left": 1.304057391939222, "psi_rad": 3.255404050247889, "kappa_radpm": 0.03384380969441381, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 482, "s_m": 48.2, "d_m": 0.0, "x_m": 9.168763816013342, "y_m": -5.875109195719736, "d_right": 1.2089609457546413, "d_left": 1.3064238897729765, "psi_rad": 3.260157616590112, "kappa_radpm": 0.055266520240531136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 483, "s_m": 48.300000000000004, "d_m": 0.0, "x_m": 9.06956184494574, "y_m": -5.887411022799357, "d_right": 1.2166366168307419, "d_left": 1.310734698651534, "psi_rad": 3.266457354295995, "kappa_radpm": 0.02812354037733833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 484, "s_m": 48.400000000000006, "d_m": 0.0, "x_m": 8.970399473762901, "y_m": -5.900007432385066, "d_right": 1.229237638799819, "d_left": 1.3208554399669175, "psi_rad": 3.2657823246655795, "kappa_radpm": -0.006243957765517116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 485, "s_m": 48.5, "d_m": 0.0, "x_m": 8.871182129473818, "y_m": -5.912175178647886, "d_right": 1.24141010431855, "d_left": 1.311414429172503, "psi_rad": 3.2652085627428917, "kappa_radpm": -0.004645266436638096, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 486, "s_m": 48.6, "d_m": 0.0, "x_m": 8.772001089949562, "y_m": -5.924658319598182, "d_right": 1.2379209091167422, "d_left": 1.309240116248758, "psi_rad": 3.264853271378252, "kappa_radpm": 0.008067001895906145, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 487, "s_m": 48.7, "d_m": 0.0, "x_m": 8.672772402559112, "y_m": -5.9367558968596015, "d_right": 1.2305852116847107, "d_left": 1.315071877893235, "psi_rad": 3.266821963122073, "kappa_radpm": 0.003118582065901876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 488, "s_m": 48.800000000000004, "d_m": 0.0, "x_m": 8.573643684133902, "y_m": -5.94962915126896, "d_right": 1.2321285899712109, "d_left": 1.3252470242776389, "psi_rad": 3.2654769877914323, "kappa_radpm": -0.043679247006966904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 489, "s_m": 48.900000000000006, "d_m": 0.0, "x_m": 8.474386748838542, "y_m": -5.96145927794469, "d_right": 1.2407010628849695, "d_left": 1.3249251077512376, "psi_rad": 3.2580861137206796, "kappa_radpm": -0.014024233288187915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 490, "s_m": 49.0, "d_m": 0.0, "x_m": 8.375078290214494, "y_m": -5.972865929608852, "d_right": 1.2521025168788085, "d_left": 1.3254132616326582, "psi_rad": 3.2626721411337947, "kappa_radpm": 0.05143548246032914, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 491, "s_m": 49.1, "d_m": 0.0, "x_m": 8.275929943009007, "y_m": -5.985606442880021, "d_right": 1.253021578832031, "d_left": 1.3320812174772394, "psi_rad": 3.2683732102127454, "kappa_radpm": 0.0459176648439108, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 492, "s_m": 49.2, "d_m": 0.0, "x_m": 8.176755901513284, "y_m": -5.998144936894986, "d_right": 1.2474837212410586, "d_left": 1.3228261452596448, "psi_rad": 3.271855674102577, "kappa_radpm": 0.049797520818910535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 493, "s_m": 49.300000000000004, "d_m": 0.0, "x_m": 8.077701762883557, "y_m": -6.011575294561758, "d_right": 1.2508389661371417, "d_left": 1.3147765042920112, "psi_rad": 3.2783327143765275, "kappa_radpm": 0.006077847108469925, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 494, "s_m": 49.400000000000006, "d_m": 0.0, "x_m": 7.9786984453375975, "y_m": -6.0253973916476555, "d_right": 1.256804386315673, "d_left": 1.3139072592417322, "psi_rad": 3.273071243524271, "kappa_radpm": -0.08325888113533964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 495, "s_m": 49.5, "d_m": 0.0, "x_m": 7.879509708581791, "y_m": -6.0377845036052875, "d_right": 1.2672357611923786, "d_left": 1.3220632048971959, "psi_rad": 3.2616809381494596, "kappa_radpm": -0.0867446895342816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 496, "s_m": 49.6, "d_m": 0.0, "x_m": 7.780217227698769, "y_m": -6.049347903106614, "d_right": 1.2787834842582313, "d_left": 1.3220233720614356, "psi_rad": 3.2557223056174145, "kappa_radpm": -0.022394065760411586, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 497, "s_m": 49.7, "d_m": 0.0, "x_m": 7.680883716211683, "y_m": -6.060552560645215, "d_right": 1.2658696933135114, "d_left": 1.3108049405688595, "psi_rad": 3.2572021249973773, "kappa_radpm": 0.03154735742223025, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 498, "s_m": 49.800000000000004, "d_m": 0.0, "x_m": 7.581628767150379, "y_m": -6.07240944511977, "d_right": 1.2613657143209451, "d_left": 1.305667903007941, "psi_rad": 3.2620317771018605, "kappa_radpm": 0.018475829963691126, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 499, "s_m": 49.900000000000006, "d_m": 0.0, "x_m": 7.482408093331667, "y_m": -6.084573046889011, "d_right": 1.265078729034306, "d_left": 1.3078633968984488, "psi_rad": 3.2608972909901155, "kappa_radpm": -0.007698553115362827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 500, "s_m": 50.0, "d_m": 0.0, "x_m": 7.383123802961198, "y_m": -6.09620501401247, "d_right": 1.276103152154884, "d_left": 1.318191098092373, "psi_rad": 3.260492066478788, "kappa_radpm": -0.01021045187013403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 501, "s_m": 50.1, "d_m": 0.0, "x_m": 7.283895878357061, "y_m": -6.108287890973278, "d_right": 1.2846469671616318, "d_left": 1.3132306824111575, "psi_rad": 3.2588552006160887, "kappa_radpm": -0.05283178906495323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 502, "s_m": 50.2, "d_m": 0.0, "x_m": 7.184578645116349, "y_m": -6.1195942278243525, "d_right": 1.2732018673631695, "d_left": 1.301952567479588, "psi_rad": 3.2499257086657973, "kappa_radpm": -0.051306159577246824, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 503, "s_m": 50.300000000000004, "d_m": 0.0, "x_m": 7.085148136299772, "y_m": -6.129903467796979, "d_right": 1.2685443065942748, "d_left": 1.292065713472898, "psi_rad": 3.2485939687006393, "kappa_radpm": 0.02615203442720926, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 504, "s_m": 50.400000000000006, "d_m": 0.0, "x_m": 6.98579976257912, "y_m": -6.140945377041845, "d_right": 1.2724863613682182, "d_left": 1.2891358393808316, "psi_rad": 3.255156115551239, "kappa_radpm": 0.03913538439580755, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 505, "s_m": 50.5, "d_m": 0.0, "x_m": 6.88651308857897, "y_m": -6.15255862728365, "d_right": 1.2824108986029485, "d_left": 1.2933722707432735, "psi_rad": 3.256421045579801, "kappa_radpm": -0.01418628580244885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 506, "s_m": 50.6, "d_m": 0.0, "x_m": 6.787189600714683, "y_m": -6.163852231070685, "d_right": 1.2937201627552275, "d_left": 1.3055907926503947, "psi_rad": 3.2523188583907494, "kappa_radpm": -0.04738600641381652, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 507, "s_m": 50.7, "d_m": 0.0, "x_m": 6.687811119008521, "y_m": -6.174650500416013, "d_right": 1.2943524254788414, "d_left": 1.2964163205834907, "psi_rad": 3.2469438442970375, "kappa_radpm": -0.014884519817464081, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 508, "s_m": 50.800000000000004, "d_m": 0.0, "x_m": 6.588372491386721, "y_m": -6.184875686773773, "d_right": 1.2833928860940451, "d_left": 1.2862043531549496, "psi_rad": 3.2493419544272566, "kappa_radpm": -0.013464642341549649, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 509, "s_m": 50.900000000000006, "d_m": 0.0, "x_m": 6.489047790351872, "y_m": -6.196150378477735, "d_right": 1.2812241679174492, "d_left": 1.274946039308608, "psi_rad": 3.2442509158287276, "kappa_radpm": -0.0844510819635369, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 510, "s_m": 51.0, "d_m": 0.0, "x_m": 6.389509617076299, "y_m": -6.205362623176288, "d_right": 1.2847745573805338, "d_left": 1.2674604072622655, "psi_rad": 3.232451738034549, "kappa_radpm": -0.07772962332875721, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 511, "s_m": 51.1, "d_m": 0.0, "x_m": 6.289945582455503, "y_m": -6.214290568305007, "d_right": 1.2937088048261014, "d_left": 1.268121845476418, "psi_rad": 3.228704991162976, "kappa_radpm": -0.04503373621051576, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 512, "s_m": 51.2, "d_m": 0.0, "x_m": 6.1903412770464925, "y_m": -6.222756663691644, "d_right": 1.3021806007874004, "d_left": 1.2770943460817876, "psi_rad": 3.223444990792446, "kappa_radpm": -0.010792222916169436, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 513, "s_m": 51.300000000000004, "d_m": 0.0, "x_m": 6.090689187031506, "y_m": -6.230636691568698, "d_right": 1.2958548004979942, "d_left": 1.2901848315710562, "psi_rad": 3.2265465465797423, "kappa_radpm": 0.01022106193679484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 514, "s_m": 51.400000000000006, "d_m": 0.0, "x_m": 5.99113926667136, "y_m": -6.239720479827543, "d_right": 1.2851925793940784, "d_left": 1.2811041157043002, "psi_rad": 3.225489203179805, "kappa_radpm": -0.07019012912634626, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 515, "s_m": 51.5, "d_m": 0.0, "x_m": 5.891475469400412, "y_m": -6.247389358846272, "d_right": 1.2808385528329327, "d_left": 1.2734376097505589, "psi_rad": 3.212508520754473, "kappa_radpm": -0.07938144919553913, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 516, "s_m": 51.6, "d_m": 0.0, "x_m": 5.791723263065504, "y_m": -6.253885993021336, "d_right": 1.2831008688120848, "d_left": 1.2669427458337033, "psi_rad": 3.209612913340697, "kappa_radpm": 0.018118040369032862, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 517, "s_m": 51.7, "d_m": 0.0, "x_m": 5.692015188839284, "y_m": -6.260977661993457, "d_right": 1.2901935082610148, "d_left": 1.259853262454888, "psi_rad": 3.2161321288282796, "kappa_radpm": 0.04309544627489892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 518, "s_m": 51.800000000000004, "d_m": 0.0, "x_m": 5.592356138762659, "y_m": -6.26877429786812, "d_right": 1.279955254082149, "d_left": 1.2520593080701403, "psi_rad": 3.218232002595677, "kappa_radpm": -0.007518752005779561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 519, "s_m": 51.900000000000006, "d_m": 0.0, "x_m": 5.492675156604549, "y_m": -6.276284933581398, "d_right": 1.2689939042049072, "d_left": 1.2477263376253664, "psi_rad": 3.2146283784271237, "kappa_radpm": 0.007781536984641235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 520, "s_m": 52.0, "d_m": 0.0, "x_m": 5.39296263020996, "y_m": -6.283363096462087, "d_right": 1.2654222305303218, "d_left": 1.2487783394345533, "psi_rad": 3.2197883099926052, "kappa_radpm": 0.055448431705169554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 521, "s_m": 52.1, "d_m": 0.0, "x_m": 5.293364432643402, "y_m": -6.2919020099729455, "d_right": 1.2711942150458522, "d_left": 1.251644956294879, "psi_rad": 3.2257180647681576, "kappa_radpm": -0.02810873510865175, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 522, "s_m": 52.2, "d_m": 0.0, "x_m": 5.1937427552879045, "y_m": -6.3001621986217495, "d_right": 1.2794496209904738, "d_left": 1.2627219629040782, "psi_rad": 3.214166562970875, "kappa_radpm": -0.11159019816831428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 523, "s_m": 52.300000000000004, "d_m": 0.0, "x_m": 5.093973919471563, "y_m": -6.306398017972424, "d_right": 1.2637418822625528, "d_left": 1.264427762139514, "psi_rad": 3.2034000251344947, "kappa_radpm": -0.03967160561419991, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 524, "s_m": 52.400000000000006, "d_m": 0.0, "x_m": 4.9941974582819455, "y_m": -6.312511298082361, "d_right": 1.2526871334961842, "d_left": 1.2583132791402836, "psi_rad": 3.206232241848035, "kappa_radpm": 0.05424079379984459, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 525, "s_m": 52.5, "d_m": 0.0, "x_m": 4.894469444897446, "y_m": -6.319311895993703, "d_right": 1.2502456322745523, "d_left": 1.2515111737961357, "psi_rad": 3.2142481838944637, "kappa_radpm": 0.06044750797534526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 526, "s_m": 52.6, "d_m": 0.0, "x_m": 4.7948037945614415, "y_m": -6.327023895944112, "d_right": 1.2566908399341505, "d_left": 1.2437972931026668, "psi_rad": 3.218321743443104, "kappa_radpm": 0.012061477802944864, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 527, "s_m": 52.7, "d_m": 0.0, "x_m": 4.695130555793258, "y_m": -6.334637074250337, "d_right": 1.2642926356593656, "d_left": 1.2361823313051559, "psi_rad": 3.2166604794550526, "kappa_radpm": -0.023315866139239638, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 528, "s_m": 52.800000000000004, "d_m": 0.0, "x_m": 4.595439863139805, "y_m": -6.342017888025576, "d_right": 1.2692698040441106, "d_left": 1.2287998883510816, "psi_rad": 3.213658570215256, "kappa_radpm": -0.006682239839523874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 529, "s_m": 52.900000000000006, "d_m": 0.0, "x_m": 4.495722770592597, "y_m": -6.349032508584283, "d_right": 1.2526710682902311, "d_left": 1.2217838378724517, "psi_rad": 3.215324031487148, "kappa_radpm": 0.008094149262571904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 530, "s_m": 53.0, "d_m": 0.0, "x_m": 4.396061132007931, "y_m": -6.356745053447792, "d_right": 1.2446084307855372, "d_left": 1.2140695759490308, "psi_rad": 3.2152774000677704, "kappa_radpm": -0.014240133138612165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 531, "s_m": 53.1, "d_m": 0.0, "x_m": 4.2963433372579, "y_m": -6.36375037783407, "d_right": 1.2438390113862736, "d_left": 1.2070629039921854, "psi_rad": 3.2124760048594254, "kappa_radpm": -0.009888963561657249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 532, "s_m": 53.2, "d_m": 0.0, "x_m": 4.196636105474587, "y_m": -6.370904690396435, "d_right": 1.2509990952161978, "d_left": 1.2046275360479133, "psi_rad": 3.213299607355439, "kappa_radpm": 0.001531038448816524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 533, "s_m": 53.300000000000004, "d_m": 0.0, "x_m": 4.096929967651576, "y_m": -6.378074262127756, "d_right": 1.2506959325403637, "d_left": 1.210455586874894, "psi_rad": 3.2127822125491887, "kappa_radpm": -0.031866999749046165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 534, "s_m": 53.400000000000006, "d_m": 0.0, "x_m": 3.9972153958952035, "y_m": -6.38512539416683, "d_right": 1.2353588389081906, "d_left": 1.224560900441784, "psi_rad": 3.2069262074056297, "kappa_radpm": -0.03106320018345432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 535, "s_m": 53.5, "d_m": 0.0, "x_m": 3.8974366341723656, "y_m": -6.3911264468204045, "d_right": 1.2269424218778717, "d_left": 1.2299582613449642, "psi_rad": 3.206569572512498, "kappa_radpm": 0.014113986584307625, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 536, "s_m": 53.6, "d_m": 0.0, "x_m": 3.797717937780772, "y_m": -6.398106398071551, "d_right": 1.2276207671356136, "d_left": 1.2229745810137294, "psi_rad": 3.2097490047224913, "kappa_radpm": -0.0025044459073431113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 537, "s_m": 53.7, "d_m": 0.0, "x_m": 3.6979778890358665, "y_m": -6.404741916215391, "d_right": 1.2342603376822054, "d_left": 1.2163357226655556, "psi_rad": 3.2060686833310292, "kappa_radpm": -0.014944047635436775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 538, "s_m": 53.800000000000004, "d_m": 0.0, "x_m": 3.5982097838110514, "y_m": -6.410987746624977, "d_right": 1.229204580928738, "d_left": 1.2100870724043684, "psi_rad": 3.206760195195404, "kappa_radpm": -0.012669064228347793, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 539, "s_m": 53.900000000000006, "d_m": 0.0, "x_m": 3.498476054558657, "y_m": -6.417761395946525, "d_right": 1.2148175182403291, "d_left": 1.203309988758533, "psi_rad": 3.2035348704853597, "kappa_radpm": -0.07033337370898174, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 540, "s_m": 54.0, "d_m": 0.0, "x_m": 3.398670188223012, "y_m": -6.423363503509968, "d_right": 1.2073814913278624, "d_left": 1.1977057317027264, "psi_rad": 3.1926935204536075, "kappa_radpm": -0.07832854430092517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 541, "s_m": 54.1, "d_m": 0.0, "x_m": 3.298813591240761, "y_m": -6.427973211149584, "d_right": 1.2072058339317455, "d_left": 1.1930947362055377, "psi_rad": 3.1878691616251746, "kappa_radpm": 0.026736034518228813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 542, "s_m": 54.2, "d_m": 0.0, "x_m": 3.1989598271554565, "y_m": -6.432612004516543, "d_right": 1.211845451278, "d_left": 1.19478805081161, "psi_rad": 3.1980407273572533, "kappa_radpm": 0.08081213239140794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 543, "s_m": 54.300000000000004, "d_m": 0.0, "x_m": 3.0992198323577025, "y_m": -6.439251876309991, "d_right": 1.2184868744898625, "d_left": 1.2028144217793002, "psi_rad": 3.2040315881034562, "kappa_radpm": -0.026296480883210016, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 544, "s_m": 54.400000000000006, "d_m": 0.0, "x_m": 2.9994281440967883, "y_m": -6.445086765877134, "d_right": 1.2090215791852457, "d_left": 1.2198019040218495, "psi_rad": 3.1927814311806113, "kappa_radpm": -0.11329573844913732, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 545, "s_m": 54.5, "d_m": 0.0, "x_m": 2.8995617979082127, "y_m": -6.449481063072603, "d_right": 1.19355967899121, "d_left": 1.229970612880067, "psi_rad": 3.1813724404136288, "kappa_radpm": -0.0841948546617477, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 546, "s_m": 54.6, "d_m": 0.0, "x_m": 2.7996616905800025, "y_m": -6.453037627152708, "d_right": 1.185510007655561, "d_left": 1.2422728832183387, "psi_rad": 3.1759424602482618, "kappa_radpm": -0.026090415791850674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 547, "s_m": 54.7, "d_m": 0.0, "x_m": 2.6997529171302217, "y_m": -6.456347160165498, "d_right": 1.185615038449707, "d_left": 1.2626351112375347, "psi_rad": 3.1761543572552586, "kappa_radpm": 0.026437137792889587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 548, "s_m": 54.800000000000004, "d_m": 0.0, "x_m": 2.599854244925924, "y_m": -6.459946063834001, "d_right": 1.1892127895802314, "d_left": 1.2886364707034463, "psi_rad": 3.1812298878068397, "kappa_radpm": 0.08840705297606277, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 549, "s_m": 54.900000000000006, "d_m": 0.0, "x_m": 2.4999846376714276, "y_m": -6.464269571676381, "d_right": 1.1743521926389975, "d_left": 1.3087550608850422, "psi_rad": 3.193835767850471, "kappa_radpm": 0.18271041694822188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 550, "s_m": 55.0, "d_m": 0.0, "x_m": 2.400216765227339, "y_m": -6.470385246595251, "d_right": 1.1617666655878844, "d_left": 1.3343541689473435, "psi_rad": 3.217771971196484, "kappa_radpm": 0.25143029372907577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 551, "s_m": 55.1, "d_m": 0.0, "x_m": 2.300670695943059, "y_m": -6.4794826116915765, "d_right": 1.1606953006260539, "d_left": 1.3528716136927779, "psi_rad": 3.2441218265962863, "kappa_radpm": 0.25398708692660144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 552, "s_m": 55.2, "d_m": 0.0, "x_m": 2.2013589119179997, "y_m": -6.490845723224012, "d_right": 1.1704665996358454, "d_left": 1.3740025986614903, "psi_rad": 3.2685693885818043, "kappa_radpm": 0.26061358261960876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 553, "s_m": 55.300000000000004, "d_m": 0.0, "x_m": 2.1023787826593576, "y_m": -6.504797268048488, "d_right": 1.184387042853982, "d_left": 1.399469393265326, "psi_rad": 3.296244543120208, "kappa_radpm": 0.28736570740269585, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 554, "s_m": 55.400000000000006, "d_m": 0.0, "x_m": 2.003850004863823, "y_m": -6.521636719412132, "d_right": 1.1778220659005576, "d_left": 1.4287269086350083, "psi_rad": 3.3260425300623435, "kappa_radpm": 0.3404672369410022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 555, "s_m": 55.5, "d_m": 0.0, "x_m": 1.9058779516295126, "y_m": -6.541458528278769, "d_right": 1.1805793033287921, "d_left": 1.459124538981867, "psi_rad": 3.3643379905084085, "kappa_radpm": 0.42575027582732794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 556, "s_m": 55.6, "d_m": 0.0, "x_m": 1.8089397482818128, "y_m": -6.565784636849528, "d_right": 1.1962909793178265, "d_left": 1.4875580882135508, "psi_rad": 3.411192585227809, "kappa_radpm": 0.449247198916769, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 557, "s_m": 55.7, "d_m": 0.0, "x_m": 1.7132521941953363, "y_m": -6.594686316855616, "d_right": 1.2245455743891904, "d_left": 1.5165572085066779, "psi_rad": 3.4541874302917623, "kappa_radpm": 0.4006149870230402, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 558, "s_m": 55.800000000000004, "d_m": 0.0, "x_m": 1.6187479193814442, "y_m": -6.627252908532622, "d_right": 1.2547665267466657, "d_left": 1.537086386349517, "psi_rad": 3.491315582632417, "kappa_radpm": 0.3744868858617023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 559, "s_m": 55.900000000000006, "d_m": 0.0, "x_m": 1.5254679944749623, "y_m": -6.663173944326892, "d_right": 1.2675873610865953, "d_left": 1.5603189100423625, "psi_rad": 3.529084807464103, "kappa_radpm": 0.37491750163532345, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 560, "s_m": 56.0, "d_m": 0.0, "x_m": 1.4336918121305786, "y_m": -6.702779180419587, "d_right": 1.2919017522912617, "d_left": 1.5857156979128102, "psi_rad": 3.566299082959482, "kappa_radpm": 0.3737104329166163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 561, "s_m": 56.1, "d_m": 0.0, "x_m": 1.343345575688173, "y_m": -6.745535074032427, "d_right": 1.3265593025536029, "d_left": 1.6136283707500014, "psi_rad": 3.603826894047426, "kappa_radpm": 0.3939637734248791, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 562, "s_m": 56.2, "d_m": 0.0, "x_m": 1.254802438269059, "y_m": -6.791908044559894, "d_right": 1.3712489048786727, "d_left": 1.643347271409199, "psi_rad": 3.6450918376444577, "kappa_radpm": 0.43921572447518376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 563, "s_m": 56.300000000000004, "d_m": 0.0, "x_m": 1.1682856282888143, "y_m": -6.8419676712003685, "d_right": 1.4211862513554185, "d_left": 1.6745751675195462, "psi_rad": 3.691670038942463, "kappa_radpm": 0.49924275284056296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 564, "s_m": 56.400000000000006, "d_m": 0.0, "x_m": 1.0844522039651678, "y_m": -6.8963688000879415, "d_right": 1.4556417072365015, "d_left": 1.7063268756813257, "psi_rad": 3.7449403882125702, "kappa_radpm": 0.5415819110011144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 565, "s_m": 56.5, "d_m": 0.0, "x_m": 1.0037489484025557, "y_m": -6.955343764628901, "d_right": 1.5001007355123892, "d_left": 1.7352440058599816, "psi_rad": 3.7999864211426857, "kappa_radpm": 0.557266547722961, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 566, "s_m": 56.6, "d_m": 0.0, "x_m": 0.926394541258816, "y_m": -7.018631837230786, "d_right": 1.5543191319677019, "d_left": 1.7619686086970419, "psi_rad": 3.8563936977571625, "kappa_radpm": 0.5660186196365236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 567, "s_m": 56.7, "d_m": 0.0, "x_m": 0.8528553494149465, "y_m": -7.086306028380798, "d_right": 1.6174312792470307, "d_left": 1.7857853961705132, "psi_rad": 3.9131901450699904, "kappa_radpm": 0.5841876363669707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 568, "s_m": 56.800000000000004, "d_m": 0.0, "x_m": 0.7831781407312971, "y_m": -7.157948839400953, "d_right": 1.6880512441415831, "d_left": 1.8069563966157554, "psi_rad": 3.9732312250305566, "kappa_radpm": 0.6242322904814368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 569, "s_m": 56.900000000000006, "d_m": 0.0, "x_m": 0.7182703528112409, "y_m": -7.233950751718838, "d_right": 1.763315889179101, "d_left": 1.823686194486605, "psi_rad": 4.038036603166278, "kappa_radpm": 0.6526596157341569, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 570, "s_m": 57.0, "d_m": 0.0, "x_m": 0.6584395989173074, "y_m": -7.313996278924511, "d_right": 1.8421732584787633, "d_left": 1.837710570055946, "psi_rad": 4.1037631481773875, "kappa_radpm": 0.7016929756194501, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 571, "s_m": 57.1, "d_m": 0.0, "x_m": 0.6040508145050965, "y_m": -7.397853136034271, "d_right": 1.9154442760398356, "d_left": 1.8504905661701754, "psi_rad": 4.178375198290167, "kappa_radpm": 0.7541281775196151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 572, "s_m": 57.2, "d_m": 0.0, "x_m": 0.5567839993213062, "y_m": -7.485908861980783, "d_right": 1.9945464605700844, "d_left": 1.8603826046505438, "psi_rad": 4.254588783681311, "kappa_radpm": 0.7364872315879478, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 573, "s_m": 57.300000000000004, "d_m": 0.0, "x_m": 0.5157608921981622, "y_m": -7.5770448941749935, "d_right": 2.0780716680852014, "d_left": 1.868665841391632, "psi_rad": 4.325672644607757, "kappa_radpm": 0.7104458513481671, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 574, "s_m": 57.400000000000006, "d_m": 0.0, "x_m": 0.48144897107734097, "y_m": -7.670906493139502, "d_right": 2.1665097264566335, "d_left": 1.8750403131247695, "psi_rad": 4.396677953950944, "kappa_radpm": 0.7096201179896067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 575, "s_m": 57.5, "d_m": 0.0, "x_m": 0.4537413377134939, "y_m": -7.7669184121090105, "d_right": 2.25873439337799, "d_left": 1.879788907691171, "psi_rad": 4.467596668205679, "kappa_radpm": 0.7179852564426481, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 576, "s_m": 57.6, "d_m": 0.0, "x_m": 0.43304378512195896, "y_m": -7.864680697341581, "d_right": 2.3539698518493095, "d_left": 1.8826214999354864, "psi_rad": 4.540275005239474, "kappa_radpm": 0.7226681440697025, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 577, "s_m": 57.7, "d_m": 0.0, "x_m": 0.4195353572942525, "y_m": -7.963692367818851, "d_right": 2.451412795356351, "d_left": 1.883460329201724, "psi_rad": 4.612130297019619, "kappa_radpm": 0.7084422447082206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 578, "s_m": 57.800000000000004, "d_m": 0.0, "x_m": 0.41305171036525956, "y_m": -8.063417043032537, "d_right": 2.550294019251518, "d_left": 1.882540040603697, "psi_rad": 4.681963454181118, "kappa_radpm": 0.698934135956959, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 579, "s_m": 57.900000000000006, "d_m": 0.0, "x_m": 0.4134584886702917, "y_m": -8.16336001934515, "d_right": 2.5940661743867675, "d_left": 1.880030393272926, "psi_rad": -1.5312681829685753, "kappa_radpm": 0.6954279998854318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 580, "s_m": 58.0, "d_m": 0.0, "x_m": 0.4209459821537932, "y_m": -8.263025703205937, "d_right": 2.49908006144576, "d_left": 1.872541372872935, "psi_rad": -1.4621362530213817, "kappa_radpm": 0.6807409039832213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 581, "s_m": 58.1, "d_m": 0.0, "x_m": 0.43512274459817235, "y_m": -8.361951135799528, "d_right": 2.4069439299593363, "d_left": 1.8583594625847233, "psi_rad": -1.395120002171931, "kappa_radpm": 0.6551851634178218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 582, "s_m": 58.2, "d_m": 0.0, "x_m": 0.4558592077210276, "y_m": -8.459713096950727, "d_right": 2.3183958120919925, "d_left": 1.8407022123749366, "psi_rad": -1.3310992203378174, "kappa_radpm": 0.630093470226829, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 583, "s_m": 58.300000000000004, "d_m": 0.0, "x_m": 0.4825521534553922, "y_m": -8.556019239541902, "d_right": 2.233988992640572, "d_left": 1.8222628550122784, "psi_rad": -1.2691013081265652, "kappa_radpm": 0.6313144102952473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 584, "s_m": 58.400000000000006, "d_m": 0.0, "x_m": 0.5152230763081064, "y_m": -8.650474438330553, "d_right": 2.1546168102469583, "d_left": 1.80296220828673, "psi_rad": -1.204836338278768, "kappa_radpm": 0.6443766719144994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 585, "s_m": 58.5, "d_m": 0.0, "x_m": 0.5540445366873192, "y_m": -8.742574986494466, "d_right": 2.081417082469741, "d_left": 1.7825281964651605, "psi_rad": -1.1402259737436653, "kappa_radpm": 0.6239200137316314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 586, "s_m": 58.6, "d_m": 0.0, "x_m": 0.5986123324284414, "y_m": -8.83202715849653, "d_right": 2.0074160463431787, "d_left": 1.7609346284964837, "psi_rad": -1.0800523355324416, "kappa_radpm": 0.5740976800804143, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 587, "s_m": 58.7, "d_m": 0.0, "x_m": 0.6482068153053583, "y_m": -8.91879526030859, "d_right": 1.931684899794999, "d_left": 1.734343123385183, "psi_rad": -1.0254064377275824, "kappa_radpm": 0.5085056370465035, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 588, "s_m": 58.800000000000004, "d_m": 0.0, "x_m": 0.7022715776100085, "y_m": -9.002862130764115, "d_right": 1.8581591088199252, "d_left": 1.7080690088668096, "psi_rad": -0.9783512081231409, "kappa_radpm": 0.47636974462215154, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 589, "s_m": 58.900000000000006, "d_m": 0.0, "x_m": 0.759808745002352, "y_m": -9.084597482742065, "d_right": 1.7902624063115955, "d_left": 1.6832166711861716, "psi_rad": -0.9301324888031521, "kappa_radpm": 0.47677367585881036, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 590, "s_m": 59.0, "d_m": 0.0, "x_m": 0.8217209175059121, "y_m": -9.163072911780198, "d_right": 1.7298134628480375, "d_left": 1.6560324695416009, "psi_rad": -0.8829964729513788, "kappa_radpm": 0.4578112142552748, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 591, "s_m": 59.1, "d_m": 0.0, "x_m": 0.8866922200644689, "y_m": -9.239023828972604, "d_right": 1.6698788893583563, "d_left": 1.6278816485077505, "psi_rad": -0.8385702459520972, "kappa_radpm": 0.4466498293466148, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 592, "s_m": 59.2, "d_m": 0.0, "x_m": 0.9553182911901743, "y_m": -9.311690395112278, "d_right": 1.6155560460232063, "d_left": 1.600675319201638, "psi_rad": -0.7936665070820559, "kappa_radpm": 0.4413899019210077, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 593, "s_m": 59.300000000000004, "d_m": 0.0, "x_m": 1.0268425128410892, "y_m": -9.381511119684621, "d_right": 1.569348762582432, "d_left": 1.575359147229071, "psi_rad": -0.7502922655678956, "kappa_radpm": 0.43756698911327163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 594, "s_m": 59.400000000000006, "d_m": 0.0, "x_m": 1.1015029115649349, "y_m": -9.447955296015856, "d_right": 1.53258952420181, "d_left": 1.5515360475258904, "psi_rad": -0.7061531092594016, "kappa_radpm": 0.41220328268253725, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 595, "s_m": 59.5, "d_m": 0.0, "x_m": 1.1789048926204329, "y_m": -9.511199305988173, "d_right": 1.4878076357194838, "d_left": 1.529710754803274, "psi_rad": -0.6678516090313882, "kappa_radpm": 0.3849451350052324, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 596, "s_m": 59.6, "d_m": 0.0, "x_m": 1.25843802229952, "y_m": -9.571739943492254, "d_right": 1.4466178096248299, "d_left": 1.51077399268243, "psi_rad": -0.6291640822583551, "kappa_radpm": 0.37547517865458513, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 597, "s_m": 59.7, "d_m": 0.0, "x_m": 1.3405030005208871, "y_m": -9.628816098826704, "d_right": 1.4154061597054746, "d_left": 1.4931474346426652, "psi_rad": -0.5927565733004712, "kappa_radpm": 0.35337413316745225, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 598, "s_m": 59.800000000000004, "d_m": 0.0, "x_m": 1.4242360966759025, "y_m": -9.683414131185039, "d_right": 1.3835453186125115, "d_left": 1.4726078887343377, "psi_rad": -0.5584892556248646, "kappa_radpm": 0.33590855021699895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 599, "s_m": 59.900000000000006, "d_m": 0.0, "x_m": 1.5100071737052005, "y_m": -9.734730265933027, "d_right": 1.3593116053196705, "d_left": 1.448876072196058, "psi_rad": -0.5255748632570714, "kappa_radpm": 0.2864784046897162, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 600, "s_m": 60.0, "d_m": 0.0, "x_m": 1.5971501513445665, "y_m": -9.78370221927017, "d_right": 1.3375967513763058, "d_left": 1.4290571067755573, "psi_rad": -0.5011935746869214, "kappa_radpm": 0.2551743022425379, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 601, "s_m": 60.1, "d_m": 0.0, "x_m": 1.6853316111812717, "y_m": -9.830782336620226, "d_right": 1.315353582543306, "d_left": 1.4138874371184529, "psi_rad": -0.4745400028085638, "kappa_radpm": 0.3001287861617663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 602, "s_m": 60.2, "d_m": 0.0, "x_m": 1.774953268683179, "y_m": -9.87503800847607, "d_right": 1.2930674185330884, "d_left": 1.4025163796800133, "psi_rad": -0.4411678174545681, "kappa_radpm": 0.32285407304682323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 603, "s_m": 60.300000000000004, "d_m": 0.0, "x_m": 1.8660740794721666, "y_m": -9.916130368599168, "d_right": 1.2809994902076096, "d_left": 1.388148390774062, "psi_rad": -0.40996918819919914, "kappa_radpm": 0.31007313694421224, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 604, "s_m": 60.400000000000006, "d_m": 0.0, "x_m": 1.9582878133500576, "y_m": -9.954714206596607, "d_right": 1.2656194212003746, "d_left": 1.371739920161495, "psi_rad": -0.3791531900657257, "kappa_radpm": 0.3365709814653728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 605, "s_m": 60.5, "d_m": 0.0, "x_m": 2.0517556905568983, "y_m": -9.990111706668989, "d_right": 1.2588516769260267, "d_left": 1.3586619955648593, "psi_rad": -0.3426549919061246, "kappa_radpm": 0.34566324252928493, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 606, "s_m": 60.6, "d_m": 0.0, "x_m": 2.1465369176309776, "y_m": -10.021867726683315, "d_right": 1.2516936765800557, "d_left": 1.3454589013221474, "psi_rad": -0.3100205415598687, "kappa_radpm": 0.32109347044271264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 607, "s_m": 60.7, "d_m": 0.0, "x_m": 2.242122449837287, "y_m": -10.05109572742571, "d_right": 1.2505149474779496, "d_left": 1.3336632989195654, "psi_rad": -0.27843629781758206, "kappa_radpm": 0.3172689891071301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 608, "s_m": 60.800000000000004, "d_m": 0.0, "x_m": 2.338720869838465, "y_m": -10.076805831866194, "d_right": 1.2507469406688394, "d_left": 1.3205818768632713, "psi_rad": -0.24656674373844267, "kappa_radpm": 0.2792484726777045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 609, "s_m": 60.900000000000006, "d_m": 0.0, "x_m": 2.4359736764087403, "y_m": -10.099885756342847, "d_right": 1.2549875847150218, "d_left": 1.3022757801030511, "psi_rad": -0.22258660328204116, "kappa_radpm": 0.19725470444295068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 610, "s_m": 61.0, "d_m": 0.0, "x_m": 2.533695525442962, "y_m": -10.120935800252765, "d_right": 1.2610944134066362, "d_left": 1.2835499330248998, "psi_rad": -0.20711580284985254, "kappa_radpm": 0.162588738356374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 611, "s_m": 61.1, "d_m": 0.0, "x_m": 2.6316251570104123, "y_m": -10.140997818660004, "d_right": 1.2674994707509752, "d_left": 1.2683550049184205, "psi_rad": -0.19006885561076636, "kappa_radpm": 0.14950023667782308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 612, "s_m": 61.2, "d_m": 0.0, "x_m": 2.7300071449908447, "y_m": -10.15870443633455, "d_right": 1.2736426837780352, "d_left": 1.2543720934523088, "psi_rad": -0.17721575551428792, "kappa_radpm": 0.06799022766470042, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 613, "s_m": 61.300000000000004, "d_m": 0.0, "x_m": 2.8284201604908956, "y_m": -10.17624272914422, "d_right": 1.2848151858908623, "d_left": 1.248091400181354, "psi_rad": -0.17647081007782628, "kappa_radpm": 0.006299612806499599, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 614, "s_m": 61.400000000000006, "d_m": 0.0, "x_m": 2.926829151226238, "y_m": -10.19380287849957, "d_right": 1.2977848243887473, "d_left": 1.2460877461563993, "psi_rad": -0.175955832952988, "kappa_radpm": 0.005917410123637001, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 615, "s_m": 61.5, "d_m": 0.0, "x_m": 3.0252580688196606, "y_m": -10.211239426156977, "d_right": 1.305139374215652, "d_left": 1.2332330322388607, "psi_rad": -0.17528732805309888, "kappa_radpm": -0.022248094676073915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 616, "s_m": 61.6, "d_m": 0.0, "x_m": 3.1236891998939593, "y_m": -10.228667766097157, "d_right": 1.3162606468189997, "d_left": 1.2283959071917625, "psi_rad": -0.18040545188820278, "kappa_radpm": -0.03541862720047195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 617, "s_m": 61.7, "d_m": 0.0, "x_m": 3.2219358403147336, "y_m": -10.247111177600791, "d_right": 1.314201855950711, "d_left": 1.2279605104326425, "psi_rad": -0.18237105349319327, "kappa_radpm": -0.019026730299626093, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 618, "s_m": 61.800000000000004, "d_m": 0.0, "x_m": 3.32029794325169, "y_m": -10.264926381405362, "d_right": 1.317997692666142, "d_left": 1.2244698094733624, "psi_rad": -0.184210797948128, "kappa_radpm": -0.02449547058341328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 619, "s_m": 61.900000000000006, "d_m": 0.0, "x_m": 3.418472408743232, "y_m": -10.283730484297802, "d_right": 1.3164457713822777, "d_left": 1.230127893204994, "psi_rad": -0.18727014760987593, "kappa_radpm": 0.0018011218480173952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 620, "s_m": 62.0, "d_m": 0.0, "x_m": 3.516723052356566, "y_m": -10.302147072505834, "d_right": 1.3228623702125406, "d_left": 1.2362354609515218, "psi_rad": -0.18385057357852452, "kappa_radpm": 0.02943392974077419, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 621, "s_m": 62.1, "d_m": 0.0, "x_m": 3.6150278684717083, "y_m": -10.320280053672334, "d_right": 1.3370285857360673, "d_left": 1.2341944810954455, "psi_rad": -0.1813833616617211, "kappa_radpm": -0.016765131283519308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 622, "s_m": 62.2, "d_m": 0.0, "x_m": 3.7133680896005803, "y_m": -10.338211587214419, "d_right": 1.3546854308717295, "d_left": 1.232511369400217, "psi_rad": -0.18720359983522838, "kappa_radpm": -0.08410484165596643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 623, "s_m": 62.300000000000004, "d_m": 0.0, "x_m": 3.811453777582597, "y_m": -10.35748735546876, "d_right": 1.354906703805401, "d_left": 1.24027743372087, "psi_rad": -0.19820432999291437, "kappa_radpm": -0.06291057678572076, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 624, "s_m": 62.400000000000006, "d_m": 0.0, "x_m": 3.9093749044402206, "y_m": -10.377577842328328, "d_right": 1.3616553298945342, "d_left": 1.2567905962352017, "psi_rad": -0.19978571519237254, "kappa_radpm": -0.008212813579014933, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 625, "s_m": 62.5, "d_m": 0.0, "x_m": 4.007397444397877, "y_m": -10.397163391939952, "d_right": 1.3635849006770708, "d_left": 1.2573559132161598, "psi_rad": -0.19984689270871736, "kappa_radpm": -0.028565132095037526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 626, "s_m": 62.6, "d_m": 0.0, "x_m": 4.105318733800375, "y_m": -10.417266390717383, "d_right": 1.3712442547457677, "d_left": 1.2593309515614837, "psi_rad": -0.20549874161138004, "kappa_radpm": -0.021307236022809484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 627, "s_m": 62.7, "d_m": 0.0, "x_m": 4.203113738059298, "y_m": -10.437958725934172, "d_right": 1.3854958147216536, "d_left": 1.2695399516009, "psi_rad": -0.20410833991327926, "kappa_radpm": 0.011333799252007948, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 628, "s_m": 62.800000000000004, "d_m": 0.0, "x_m": 4.301089486202822, "y_m": -10.457789131808237, "d_right": 1.3881084864894997, "d_left": 1.2646271518835734, "psi_rad": -0.20323198176097845, "kappa_radpm": 0.0001214949616856753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 629, "s_m": 62.900000000000006, "d_m": 0.0, "x_m": 4.3989207461543955, "y_m": -10.47831005485282, "d_right": 1.3900784313108545, "d_left": 1.26830628915399, "psi_rad": -0.20408404092094212, "kappa_radpm": -0.00012129317705000808, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 630, "s_m": 63.0, "d_m": 0.0, "x_m": 4.496863648273205, "y_m": -10.498307617759549, "d_right": 1.3997361989472732, "d_left": 1.2792777270131093, "psi_rad": -0.20325624039638845, "kappa_radpm": -0.015807268346564873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 631, "s_m": 63.1, "d_m": 0.0, "x_m": 4.594731823468718, "y_m": -10.518667174204866, "d_right": 1.4037445075000983, "d_left": 1.295603369408504, "psi_rad": -0.2072454945902551, "kappa_radpm": 0.006355136250194571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 632, "s_m": 63.2, "d_m": 0.0, "x_m": 4.692512050718217, "y_m": -10.539445528339, "d_right": 1.412635650784229, "d_left": 1.2931747382522238, "psi_rad": -0.20198521314634954, "kappa_radpm": 0.05810643941726479, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 633, "s_m": 63.300000000000004, "d_m": 0.0, "x_m": 4.7905889811529345, "y_m": -10.558774344362686, "d_right": 1.4177901356439488, "d_left": 1.296985914930464, "psi_rad": -0.19562420670680214, "kappa_radpm": 0.014618309798348772, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 634, "s_m": 63.400000000000006, "d_m": 0.0, "x_m": 4.888625608348902, "y_m": -10.578307085612373, "d_right": 1.4271206728480952, "d_left": 1.3010411725046127, "psi_rad": -0.19906155118667979, "kappa_radpm": 0.019291266106348237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 635, "s_m": 63.5, "d_m": 0.0, "x_m": 4.986567401188439, "y_m": -10.598309700146068, "d_right": 1.432540840449957, "d_left": 1.2990914739903086, "psi_rad": -0.1917659534855325, "kappa_radpm": 0.06999183133846287, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 636, "s_m": 63.6, "d_m": 0.0, "x_m": 5.084874638990984, "y_m": -10.616409174871366, "d_right": 1.44251310897753, "d_left": 1.3028886657208283, "psi_rad": -0.1850631849189872, "kappa_radpm": 0.03104218939098069, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 637, "s_m": 63.7, "d_m": 0.0, "x_m": 5.183073062061672, "y_m": -10.635096589429638, "d_right": 1.4501912185928305, "d_left": 1.3148903194476573, "psi_rad": -0.18555751560733635, "kappa_radpm": 0.0018609274423009303, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 638, "s_m": 63.800000000000004, "d_m": 0.0, "x_m": 5.281364738479976, "y_m": -10.65329369541789, "d_right": 1.459277617659554, "d_left": 1.3218516042477897, "psi_rad": -0.18469099943052703, "kappa_radpm": 0.006103860541164519, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 639, "s_m": 63.900000000000006, "d_m": 0.0, "x_m": 5.379596640531188, "y_m": -10.671811131665141, "d_right": 1.468024821172634, "d_left": 1.3198058348384099, "psi_rad": -0.18433674349910345, "kappa_radpm": -0.027483780510615397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 640, "s_m": 64.0, "d_m": 0.0, "x_m": 5.477901239212792, "y_m": -10.689938602329839, "d_right": 1.4764125776269272, "d_left": 1.3249230369404355, "psi_rad": -0.1901877555326501, "kappa_radpm": -0.05599885820556816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 641, "s_m": 64.10000000000001, "d_m": 0.0, "x_m": 5.575906386349934, "y_m": -10.70960361298589, "d_right": 1.4848723061269284, "d_left": 1.3243570340684063, "psi_rad": -0.19553651514021708, "kappa_radpm": 0.0060576363809594636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 642, "s_m": 64.2, "d_m": 0.0, "x_m": 5.674012518193828, "y_m": -10.728781835792176, "d_right": 1.4914357105556442, "d_left": 1.3242158757946219, "psi_rad": -0.1889762282564582, "kappa_radpm": 0.032401720677482926, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 643, "s_m": 64.3, "d_m": 0.0, "x_m": 5.772271614915685, "y_m": -10.74716011403979, "d_right": 1.502064490781929, "d_left": 1.3307904352087927, "psi_rad": -0.1890561710047205, "kappa_radpm": -0.03218601834919843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 644, "s_m": 64.4, "d_m": 0.0, "x_m": 5.870372757768548, "y_m": -10.766353654699525, "d_right": 1.5183962692946231, "d_left": 1.3456004010010247, "psi_rad": -0.1954134319262979, "kappa_radpm": -0.05162904040470928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 645, "s_m": 64.5, "d_m": 0.0, "x_m": 5.968390707695093, "y_m": -10.785979809815686, "d_right": 1.5402865356823585, "d_left": 1.347092075050158, "psi_rad": -0.19938197908566235, "kappa_radpm": -0.06617893978399403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 646, "s_m": 64.60000000000001, "d_m": 0.0, "x_m": 6.066338614459287, "y_m": -10.805951828632535, "d_right": 1.5525787263037392, "d_left": 1.3491074110994234, "psi_rad": -0.2086492198830967, "kappa_radpm": -0.1209234967824202, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 647, "s_m": 64.7, "d_m": 0.0, "x_m": 6.163971139578638, "y_m": -10.827390192409903, "d_right": 1.5678503301717701, "d_left": 1.3593604268224668, "psi_rad": -0.2235666784421464, "kappa_radpm": -0.1687194286433391, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 648, "s_m": 64.8, "d_m": 0.0, "x_m": 6.2612795500950575, "y_m": -10.85027505387518, "d_right": 1.5859670151499023, "d_left": 1.358184309785565, "psi_rad": -0.24239310561176453, "kappa_radpm": -0.21258217289712333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 649, "s_m": 64.9, "d_m": 0.0, "x_m": 6.358033737848391, "y_m": -10.875373065161451, "d_right": 1.5925492171663476, "d_left": 1.3666180687630445, "psi_rad": -0.26608311302157106, "kappa_radpm": -0.26185218304885627, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 650, "s_m": 65.0, "d_m": 0.0, "x_m": 6.454147850978981, "y_m": -10.902840495272907, "d_right": 1.602913182641566, "d_left": 1.3846514967053154, "psi_rad": -0.2947635422215358, "kappa_radpm": -0.29918856679508554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 651, "s_m": 65.10000000000001, "d_m": 0.0, "x_m": 6.5493002667274345, "y_m": -10.93344310339359, "d_right": 1.6161647192332507, "d_left": 1.4078841993628604, "psi_rad": -0.32592082638058817, "kappa_radpm": -0.29134267850304485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 652, "s_m": 65.2, "d_m": 0.0, "x_m": 6.643515691093814, "y_m": -10.966841796748112, "d_right": 1.6294633911912746, "d_left": 1.4228111417092122, "psi_rad": -0.35303207792214475, "kappa_radpm": -0.3046644119199393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 653, "s_m": 65.3, "d_m": 0.0, "x_m": 6.736875103949433, "y_m": -11.002558503961549, "d_right": 1.6325138182821317, "d_left": 1.4431990168241489, "psi_rad": -0.38685370876457603, "kappa_radpm": -0.3706477100516081, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 654, "s_m": 65.4, "d_m": 0.0, "x_m": 6.82861769182344, "y_m": -11.042248972920378, "d_right": 1.6373880062933779, "d_left": 1.4685066231416501, "psi_rad": -0.4271616199324664, "kappa_radpm": -0.36975514366750617, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 655, "s_m": 65.5, "d_m": 0.0, "x_m": 6.918797284070378, "y_m": -11.085367678358699, "d_right": 1.644580446817334, "d_left": 1.4908317106092657, "psi_rad": -0.46080473749807727, "kappa_radpm": -0.32304435962475453, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 656, "s_m": 65.60000000000001, "d_m": 0.0, "x_m": 7.007663486237212, "y_m": -11.131136516297008, "d_right": 1.6548544282987836, "d_left": 1.5222104373334882, "psi_rad": -0.4917704918574173, "kappa_radpm": -0.35839078536882507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 657, "s_m": 65.7, "d_m": 0.0, "x_m": 7.094990895420287, "y_m": -11.179748341202593, "d_right": 1.6650796803358086, "d_left": 1.562313288437065, "psi_rad": -0.5324828945718423, "kappa_radpm": -0.4313518811728412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 658, "s_m": 65.8, "d_m": 0.0, "x_m": 7.179834659588095, "y_m": -11.232589610831402, "d_right": 1.6678792366971988, "d_left": 1.6024054569826012, "psi_rad": -0.5780408680919855, "kappa_radpm": -0.4607293804114443, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 659, "s_m": 65.9, "d_m": 0.0, "x_m": 7.262379293144455, "y_m": -11.288947837270827, "d_right": 1.6684192019912394, "d_left": 1.6447731165701613, "psi_rad": -0.6246287706541311, "kappa_radpm": -0.47212420230529517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 660, "s_m": 66.0, "d_m": 0.0, "x_m": 7.341944363791848, "y_m": -11.349457758744098, "d_right": 1.662579292447356, "d_left": 1.694975177292271, "psi_rad": -0.6724657085530445, "kappa_radpm": -0.5094761922944091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 661, "s_m": 66.10000000000001, "d_m": 0.0, "x_m": 7.418731849594219, "y_m": -11.413447530110355, "d_right": 1.6582867866628175, "d_left": 1.7481492802098002, "psi_rad": -0.726524009113013, "kappa_radpm": -0.5529233027656089, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 662, "s_m": 66.2, "d_m": 0.0, "x_m": 7.49129381536926, "y_m": -11.482181193726966, "d_right": 1.6536604759009366, "d_left": 1.7853576414145433, "psi_rad": -0.7830503691061663, "kappa_radpm": -0.5517726911801968, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 663, "s_m": 66.3, "d_m": 0.0, "x_m": 7.560372399665011, "y_m": -11.554424551042176, "d_right": 1.6501241728712557, "d_left": 1.7798365532234028, "psi_rad": -0.8368785473490523, "kappa_radpm": -0.5656578205358453, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 664, "s_m": 66.4, "d_m": 0.0, "x_m": 7.625120063902387, "y_m": -11.630547679849531, "d_right": 1.6420750840085128, "d_left": 1.770210468142132, "psi_rad": -0.8961819332133354, "kappa_radpm": -0.5702156934010638, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 665, "s_m": 66.5, "d_m": 0.0, "x_m": 7.685157125406976, "y_m": -11.710445929924456, "d_right": 1.6280154603265002, "d_left": 1.7568439481544513, "psi_rad": -0.9509216860292651, "kappa_radpm": -0.5572690866962571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 666, "s_m": 66.60000000000001, "d_m": 0.0, "x_m": 7.741207776815233, "y_m": -11.793199349738247, "d_right": 1.6137729201616144, "d_left": 1.7457761601325268, "psi_rad": -1.0076357505525868, "kappa_radpm": -0.5812320337427512, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 667, "s_m": 66.7, "d_m": 0.0, "x_m": 7.7918098961899265, "y_m": -11.879371061584063, "d_right": 1.5992289268267963, "d_left": 1.718199469642947, "psi_rad": -1.0671680927778153, "kappa_radpm": -0.5799229191331801, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 668, "s_m": 66.8, "d_m": 0.0, "x_m": 7.83763589341285, "y_m": -11.96819772198219, "d_right": 1.5853927044490808, "d_left": 1.6995796816862425, "psi_rad": -1.1236203343792228, "kappa_radpm": -0.5705765026803666, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 669, "s_m": 66.9, "d_m": 0.0, "x_m": 7.878210892926216, "y_m": -12.05953196741411, "d_right": 1.5719768321778518, "d_left": 1.676664218640492, "psi_rad": -1.1812833933138887, "kappa_radpm": -0.5805643413367911, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 670, "s_m": 67.0, "d_m": 0.0, "x_m": 7.913511559997293, "y_m": -12.153041367180078, "d_right": 1.5591488980069086, "d_left": 1.6553402867096865, "psi_rad": -1.239733202646581, "kappa_radpm": -0.5830695637183325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 671, "s_m": 67.10000000000001, "d_m": 0.0, "x_m": 7.943157263830094, "y_m": -12.248487118352953, "d_right": 1.5466970917435487, "d_left": 1.6457922276228596, "psi_rad": -1.2978973060575552, "kappa_radpm": -0.5332809749443856, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 672, "s_m": 67.2, "d_m": 0.0, "x_m": 7.967369086162853, "y_m": -12.345470961170111, "d_right": 1.5184690384793598, "d_left": 1.6385978269792747, "psi_rad": -1.3463893976354582, "kappa_radpm": -0.44616948189369676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 673, "s_m": 67.3, "d_m": 0.0, "x_m": 7.987633129843911, "y_m": -12.44334192433074, "d_right": 1.4912510866551325, "d_left": 1.6335979816428992, "psi_rad": -1.3871312024362945, "kappa_radpm": -0.4284696617316852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 674, "s_m": 67.4, "d_m": 0.0, "x_m": 8.003871222295137, "y_m": -12.541974078239164, "d_right": 1.4663173092136224, "d_left": 1.634308378179469, "psi_rad": -1.4320833299817952, "kappa_radpm": -0.4353556935441594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 675, "s_m": 67.5, "d_m": 0.0, "x_m": 8.015266821605344, "y_m": -12.641277435892562, "d_right": 1.4430578779550989, "d_left": 1.6283014701582919, "psi_rad": -1.4742023411451264, "kappa_radpm": -0.38620418229018405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 676, "s_m": 67.60000000000001, "d_m": 0.0, "x_m": 8.023148557101752, "y_m": -12.740923756952713, "d_right": 1.4229477448687928, "d_left": 1.620416591301675, "psi_rad": -1.509324166439832, "kappa_radpm": -0.353266012747655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 677, "s_m": 67.7, "d_m": 0.0, "x_m": 8.027546304798786, "y_m": -12.8407825757664, "d_right": 1.4061883049507666, "d_left": 1.6160179092214886, "psi_rad": -1.5448555436946574, "kappa_radpm": -0.3599639311458347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 678, "s_m": 67.8, "d_m": 0.0, "x_m": 8.028332959831944, "y_m": -12.940734215819312, "d_right": 1.3927995758910536, "d_left": 1.6152311411952998, "psi_rad": 4.701868354510587, "kappa_radpm": -0.3649787922477543, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 679, "s_m": 67.9, "d_m": 0.0, "x_m": 8.025443527617552, "y_m": -13.040647072885003, "d_right": 1.382833080760963, "d_left": 1.6039091278164945, "psi_rad": 4.665334005035378, "kappa_radpm": -0.362852414347139, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 680, "s_m": 68.0, "d_m": 0.0, "x_m": 8.018931196535686, "y_m": -13.140390536234541, "d_right": 1.3763336614367858, "d_left": 1.5960397687150067, "psi_rad": 4.6292978716411595, "kappa_radpm": -0.3594071561195844, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 681, "s_m": 68.10000000000001, "d_m": 0.0, "x_m": 8.008854340327526, "y_m": -13.239837960752514, "d_right": 1.366335892257473, "d_left": 1.5928354769771498, "psi_rad": 4.5934525738114615, "kappa_radpm": -0.3561188027471318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 682, "s_m": 68.2, "d_m": 0.0, "x_m": 7.995213838414544, "y_m": -13.338861458475034, "d_right": 1.3600226748230617, "d_left": 1.5855415834667645, "psi_rad": 4.558074111091733, "kappa_radpm": -0.3428978756521861, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 683, "s_m": 68.3, "d_m": 0.0, "x_m": 7.978130799023368, "y_m": -13.437351520960005, "d_right": 1.3563489975618765, "d_left": 1.5841370492220177, "psi_rad": 4.524872998681024, "kappa_radpm": -0.31876693681199386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 684, "s_m": 68.4, "d_m": 0.0, "x_m": 7.957949520359824, "y_m": -13.535252852752752, "d_right": 1.3510579417287618, "d_left": 1.592170985465024, "psi_rad": 4.494320723729334, "kappa_radpm": -0.3024489321302859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 685, "s_m": 68.5, "d_m": 0.0, "x_m": 7.934884196587897, "y_m": -13.632514755783625, "d_right": 1.3501992136093324, "d_left": 1.5913740203872206, "psi_rad": 4.464383212254967, "kappa_radpm": -0.32901285689767024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 686, "s_m": 68.60000000000001, "d_m": 0.0, "x_m": 7.908883473729633, "y_m": -13.72902226218335, "d_right": 1.353704525629639, "d_left": 1.5884340797462067, "psi_rad": 4.428518152349801, "kappa_radpm": -0.37677570522727466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 687, "s_m": 68.7, "d_m": 0.0, "x_m": 7.878909059172425, "y_m": -13.82437475220814, "d_right": 1.3604359309708938, "d_left": 1.5904764889583176, "psi_rad": 4.389028071209512, "kappa_radpm": -0.3840113971223702, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 688, "s_m": 68.8, "d_m": 0.0, "x_m": 7.845373309037354, "y_m": -13.918534933575259, "d_right": 1.367457599932972, "d_left": 1.590504172834219, "psi_rad": 4.351715872925326, "kappa_radpm": -0.40927014048999455, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 689, "s_m": 68.9, "d_m": 0.0, "x_m": 7.808372304692463, "y_m": -14.011389812687524, "d_right": 1.3745739993579151, "d_left": 1.5844969069277683, "psi_rad": 4.307174043111512, "kappa_radpm": -0.4920574246865428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 690, "s_m": 69.0, "d_m": 0.0, "x_m": 7.766597454142467, "y_m": -14.102181332293464, "d_right": 1.3837244477243906, "d_left": 1.5885651285489335, "psi_rad": 4.253304387988018, "kappa_radpm": -0.5197361935060774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 691, "s_m": 69.10000000000001, "d_m": 0.0, "x_m": 7.719828394810119, "y_m": -14.190516389017017, "d_right": 1.394485158712105, "d_left": 1.590887382419733, "psi_rad": 4.203226804410297, "kappa_radpm": -0.506477758910695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 692, "s_m": 69.2, "d_m": 0.0, "x_m": 7.669182654133927, "y_m": -14.276678749299734, "d_right": 1.3990671464888524, "d_left": 1.5883628217028478, "psi_rad": 4.152008836205878, "kappa_radpm": -0.5207467163499113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 693, "s_m": 69.3, "d_m": 0.0, "x_m": 7.613625307205198, "y_m": -14.359769940386759, "d_right": 1.4004086858749685, "d_left": 1.5978865880261097, "psi_rad": 4.099077461140315, "kappa_radpm": -0.5216462368727504, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 694, "s_m": 69.4, "d_m": 0.0, "x_m": 7.554149129421942, "y_m": -14.440111266053165, "d_right": 1.4040937214350497, "d_left": 1.604962235469616, "psi_rad": 4.047679588831329, "kappa_radpm": -0.5239828743646591, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 695, "s_m": 69.5, "d_m": 0.0, "x_m": 7.490361045696311, "y_m": -14.5170592258969, "d_right": 1.4093975864682677, "d_left": 1.5965599051969965, "psi_rad": 3.9942808862673833, "kappa_radpm": -0.5118041296665288, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 696, "s_m": 69.60000000000001, "d_m": 0.0, "x_m": 7.422666840847379, "y_m": -14.590595811531932, "d_right": 1.4165854561132643, "d_left": 1.5963748160479045, "psi_rad": 3.945318762898023, "kappa_radpm": -0.4634851633459358, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 697, "s_m": 69.7, "d_m": 0.0, "x_m": 7.351656128387712, "y_m": -14.660944012013944, "d_right": 1.4261915123993116, "d_left": 1.5868819646903118, "psi_rad": 3.901583853598196, "kappa_radpm": -0.46955895100270206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 698, "s_m": 69.8, "d_m": 0.0, "x_m": 7.277797090560115, "y_m": -14.72828505080995, "d_right": 1.4385988931261993, "d_left": 1.5751605923732983, "psi_rad": 3.8514069726974824, "kappa_radpm": -0.5515289839133475, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 699, "s_m": 69.9, "d_m": 0.0, "x_m": 7.200107008163365, "y_m": -14.791155903694808, "d_right": 1.4481957538486494, "d_left": 1.5482965286813242, "psi_rad": 3.7912780568155267, "kappa_radpm": -0.5744087697874845, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 700, "s_m": 70.0, "d_m": 0.0, "x_m": 7.118710240098129, "y_m": -14.849144621647559, "d_right": 1.4493559211728713, "d_left": 1.5198133426071343, "psi_rad": 3.7365252187399856, "kappa_radpm": -0.5079845015151463, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 701, "s_m": 70.10000000000001, "d_m": 0.0, "x_m": 7.0346076683773076, "y_m": -14.903153152019101, "d_right": 1.4525927152511757, "d_left": 1.4910205466987887, "psi_rad": 3.6896811565124974, "kappa_radpm": -0.47642023903952335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 702, "s_m": 70.2, "d_m": 0.0, "x_m": 6.948137614346467, "y_m": -14.953275502056055, "d_right": 1.457490027568755, "d_left": 1.4599637107300345, "psi_rad": 3.641241170932081, "kappa_radpm": -0.5005285841931073, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 703, "s_m": 70.3, "d_m": 0.0, "x_m": 6.859210070602529, "y_m": -14.998893263559967, "d_right": 1.4486487118934634, "d_left": 1.4402474021010647, "psi_rad": 3.589575439673876, "kappa_radpm": -0.4774145710876043, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 704, "s_m": 70.4, "d_m": 0.0, "x_m": 6.768022598151631, "y_m": -15.03983329778346, "d_right": 1.4384034909097179, "d_left": 1.42471515089174, "psi_rad": 3.54575825671456, "kappa_radpm": -0.4075290501710871, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 705, "s_m": 70.5, "d_m": 0.0, "x_m": 6.675432623951255, "y_m": -15.0774971071011, "d_right": 1.4315006363794016, "d_left": 1.4060176957957944, "psi_rad": 3.5080696296396585, "kappa_radpm": -0.40356563463031403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 706, "s_m": 70.60000000000001, "d_m": 0.0, "x_m": 6.581417729704037, "y_m": -15.111455167703712, "d_right": 1.4247246058087435, "d_left": 1.386750090136312, "psi_rad": 3.465045129788497, "kappa_radpm": -0.4007384427457916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 707, "s_m": 70.7, "d_m": 0.0, "x_m": 6.485931655206708, "y_m": -15.141022651361945, "d_right": 1.416713310729584, "d_left": 1.3791210090250983, "psi_rad": 3.4279219410905, "kappa_radpm": -0.32178592297033237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 708, "s_m": 70.8, "d_m": 0.0, "x_m": 6.389658309079223, "y_m": -15.167912890535483, "d_right": 1.4117955989537931, "d_left": 1.3796244776293853, "psi_rad": 3.4006879451944307, "kappa_radpm": -0.2870403294897361, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 709, "s_m": 70.9, "d_m": 0.0, "x_m": 6.292703122576372, "y_m": -15.19223846178348, "d_right": 1.399352712460241, "d_left": 1.3783892076375834, "psi_rad": 3.370513875192553, "kappa_radpm": -0.2925197410386682, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 710, "s_m": 71.0, "d_m": 0.0, "x_m": 6.194987694158617, "y_m": -15.21327225905564, "d_right": 1.3906085531451216, "d_left": 1.3693775828581378, "psi_rad": 3.342183996986697, "kappa_radpm": -0.23281599867357894, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 711, "s_m": 71.10000000000001, "d_m": 0.0, "x_m": 6.096808575672359, "y_m": -15.23206886782341, "d_right": 1.3843379157010072, "d_left": 1.360662151877241, "psi_rad": 3.323950675457837, "kappa_radpm": -0.15886715752109204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 712, "s_m": 71.2, "d_m": 0.0, "x_m": 5.99838236607302, "y_m": -15.24952759529964, "d_right": 1.3728838050181005, "d_left": 1.3606218278977353, "psi_rad": 3.3104105654824787, "kappa_radpm": -0.14137048623514836, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 713, "s_m": 71.3, "d_m": 0.0, "x_m": 5.899729317363885, "y_m": -15.265659085952837, "d_right": 1.3631374657229332, "d_left": 1.3692435791547266, "psi_rad": 3.2956765782108075, "kappa_radpm": -0.14693565848904022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 714, "s_m": 71.4, "d_m": 0.0, "x_m": 5.800835300149036, "y_m": -15.280209623811777, "d_right": 1.3496526693207889, "d_left": 1.3739112486968617, "psi_rad": 3.2810234337846707, "kappa_radpm": -0.10407760217676643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 715, "s_m": 71.5, "d_m": 0.0, "x_m": 5.70175164525027, "y_m": -15.293443553104295, "d_right": 1.3369995034987654, "d_left": 1.3826257163929916, "psi_rad": 3.274861057775454, "kappa_radpm": -0.01811151046168913, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 716, "s_m": 71.60000000000001, "d_m": 0.0, "x_m": 5.602681004362926, "y_m": -15.30677478702819, "d_right": 1.3231599685979476, "d_left": 1.3816055938571061, "psi_rad": 3.277401131692333, "kappa_radpm": -0.008786165226859488, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 717, "s_m": 71.7, "d_m": 0.0, "x_m": 5.50366620036295, "y_m": -15.320511856303847, "d_right": 1.3171944072699984, "d_left": 1.3835382449624063, "psi_rad": 3.2731038247300823, "kappa_radpm": -0.05173903542138092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 718, "s_m": 71.8, "d_m": 0.0, "x_m": 5.404487584282567, "y_m": -15.332990747018638, "d_right": 1.317533184783129, "d_left": 1.3884769096956064, "psi_rad": 3.2670533246080566, "kappa_radpm": -0.02925508545632116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 719, "s_m": 71.9, "d_m": 0.0, "x_m": 5.305314595369168, "y_m": -15.345528577271548, "d_right": 1.325491186222576, "d_left": 1.3823028837846074, "psi_rad": 3.267252807638818, "kappa_radpm": 0.008059867692824518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 720, "s_m": 72.0, "d_m": 0.0, "x_m": 5.2061389687295625, "y_m": -15.358047288540336, "d_right": 1.3197250569387786, "d_left": 1.3833628297283165, "psi_rad": 3.2686652981466215, "kappa_radpm": -0.0006583907062962524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 721, "s_m": 72.10000000000001, "d_m": 0.0, "x_m": 5.107007438164538, "y_m": -15.370864509492426, "d_right": 1.3141459502851351, "d_left": 1.391320759977471, "psi_rad": 3.267121129497559, "kappa_radpm": -0.03051228147095575, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 722, "s_m": 72.2, "d_m": 0.0, "x_m": 5.00779358186143, "y_m": -15.383076888092976, "d_right": 1.3155472415801341, "d_left": 1.396489597890543, "psi_rad": 3.2625628418524304, "kappa_radpm": -0.002234958642590712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 723, "s_m": 72.3, "d_m": 0.0, "x_m": 4.9085440314610365, "y_m": -15.394990464829103, "d_right": 1.3242143378358768, "d_left": 1.3993335414100299, "psi_rad": 3.2666741377690407, "kappa_radpm": 0.05274421680161012, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 724, "s_m": 72.4, "d_m": 0.0, "x_m": 4.809437782627827, "y_m": -15.408017731362621, "d_right": 1.3372373177259913, "d_left": 1.4081661885093917, "psi_rad": 3.2731116852127524, "kappa_radpm": 0.03489543791302285, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 725, "s_m": 72.5, "d_m": 0.0, "x_m": 4.710350066168057, "y_m": -15.421208082097143, "d_right": 1.3290553800342135, "d_left": 1.4015706171686364, "psi_rad": 3.2736532253516453, "kappa_radpm": 0.027401713926966664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 726, "s_m": 72.60000000000001, "d_m": 0.0, "x_m": 4.611253360919806, "y_m": -15.434343296877563, "d_right": 1.3251997598924499, "d_left": 1.3972856171189159, "psi_rad": 3.2785920279981458, "kappa_radpm": 0.029459859154843393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 727, "s_m": 72.7, "d_m": 0.0, "x_m": 4.512300736855016, "y_m": -15.448511749722156, "d_right": 1.3299137585210035, "d_left": 1.3991011191093243, "psi_rad": 3.279545197182614, "kappa_radpm": 0.007461620295980964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 728, "s_m": 72.8, "d_m": 0.0, "x_m": 4.413233527485806, "y_m": -15.46183525720324, "d_right": 1.3412344308931, "d_left": 1.408874184003313, "psi_rad": 3.280084352057342, "kappa_radpm": 0.02479387928740806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 729, "s_m": 72.9, "d_m": 0.0, "x_m": 4.31429450827105, "y_m": -15.476110643127216, "d_right": 1.355490523701672, "d_left": 1.3976795113689353, "psi_rad": 3.2845039730400956, "kappa_radpm": -0.02006641071701676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 730, "s_m": 73.0, "d_m": 0.0, "x_m": 4.215344564992684, "y_m": -15.49030994671582, "d_right": 1.3545399722376055, "d_left": 1.3935561006066017, "psi_rad": 3.2760710699139386, "kappa_radpm": -0.05856135434575194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 731, "s_m": 73.10000000000001, "d_m": 0.0, "x_m": 4.116182028030822, "y_m": -15.502914267077355, "d_right": 1.3513692634399004, "d_left": 1.3981983580622694, "psi_rad": 3.272791702170945, "kappa_radpm": 0.0174298246474347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 732, "s_m": 73.2, "d_m": 0.0, "x_m": 4.017143988345989, "y_m": -15.516463910675354, "d_right": 1.355206259922676, "d_left": 1.408587482937871, "psi_rad": 3.2795570348434255, "kappa_radpm": 0.06465034986945284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 733, "s_m": 73.3, "d_m": 0.0, "x_m": 3.918157911964889, "y_m": -15.530409211309124, "d_right": 1.3610062624395167, "d_left": 1.405920171358244, "psi_rad": 3.2857217721448357, "kappa_radpm": 0.03408430369399973, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 734, "s_m": 73.4, "d_m": 0.0, "x_m": 3.8192952503647652, "y_m": -15.545178784090439, "d_right": 1.3678061911590487, "d_left": 1.409519593149852, "psi_rad": 3.2863738955822255, "kappa_radpm": -0.00045147768708009295, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 735, "s_m": 73.5, "d_m": 0.0, "x_m": 3.7203274768946923, "y_m": -15.559253168176747, "d_right": 1.3603279612147978, "d_left": 1.4118000241147457, "psi_rad": 3.2856314766074197, "kappa_radpm": 0.04060998723548703, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 736, "s_m": 73.60000000000001, "d_m": 0.0, "x_m": 3.6214423567000034, "y_m": -15.57387601932951, "d_right": 1.3607291104128987, "d_left": 1.4025875041109486, "psi_rad": 3.294495893029323, "kappa_radpm": 0.047982526080772026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 737, "s_m": 73.7, "d_m": 0.0, "x_m": 3.5227416847363013, "y_m": -15.589702341014156, "d_right": 1.3696603891626746, "d_left": 1.3992496986215466, "psi_rad": 3.295227981823574, "kappa_radpm": -0.016760256718235667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 738, "s_m": 73.8, "d_m": 0.0, "x_m": 3.4238750949102794, "y_m": -15.604470424969863, "d_right": 1.3844578919798691, "d_left": 1.404111937181625, "psi_rad": 3.2911438416856758, "kappa_radpm": -0.04220450946999854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 739, "s_m": 73.9, "d_m": 0.0, "x_m": 3.3250463655978333, "y_m": -15.619490317605813, "d_right": 1.3877533792608765, "d_left": 1.4086008666522056, "psi_rad": 3.2867870799295744, "kappa_radpm": -0.05322386892494091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 740, "s_m": 74.0, "d_m": 0.0, "x_m": 3.226057954299899, "y_m": -15.633395920992005, "d_right": 1.3815348344678395, "d_left": 1.408377709559453, "psi_rad": 3.2804990679006876, "kappa_radpm": -0.020019110858444655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 741, "s_m": 74.10000000000001, "d_m": 0.0, "x_m": 3.127050640839644, "y_m": -15.647171459015903, "d_right": 1.382403258598505, "d_left": 1.4134581004440372, "psi_rad": 3.2827832577578855, "kappa_radpm": 0.02222589344243797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 742, "s_m": 74.2, "d_m": 0.0, "x_m": 3.02812619277208, "y_m": -15.661529218667228, "d_right": 1.3910598571466075, "d_left": 1.410581975058803, "psi_rad": 3.284944246589175, "kappa_radpm": -0.014211929762848463, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 743, "s_m": 74.3, "d_m": 0.0, "x_m": 2.929176919140478, "y_m": -15.675732883489777, "d_right": 1.4052829689734723, "d_left": 1.4041961853126668, "psi_rad": 3.279940871805316, "kappa_radpm": -0.023289404982933526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 744, "s_m": 74.4, "d_m": 0.0, "x_m": 2.830114118542417, "y_m": -15.689099964655936, "d_right": 1.403260841804015, "d_left": 1.405755186669104, "psi_rad": 3.2802863655925885, "kappa_radpm": 0.027576170587177984, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 745, "s_m": 74.5, "d_m": 0.0, "x_m": 2.731179801802461, "y_m": -15.703371283258235, "d_right": 1.3987855976385208, "d_left": 1.413487475177648, "psi_rad": 3.2854561059227514, "kappa_radpm": 0.027146427321720346, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 746, "s_m": 74.60000000000001, "d_m": 0.0, "x_m": 2.6322599821614996, "y_m": -15.717761953270793, "d_right": 1.4015639047675652, "d_left": 1.4142330946115167, "psi_rad": 3.2857156510569325, "kappa_radpm": 0.034049654833934184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 747, "s_m": 74.7, "d_m": 0.0, "x_m": 2.5333280328392127, "y_m": -15.732085359999095, "d_right": 1.4113666576893464, "d_left": 1.415982377183173, "psi_rad": 3.2922660368895382, "kappa_radpm": 0.06216630906303422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 748, "s_m": 74.8, "d_m": 0.0, "x_m": 2.4346075188775873, "y_m": -15.747770351310114, "d_right": 1.4082259053947128, "d_left": 1.4233912830449547, "psi_rad": 3.2981489128695394, "kappa_radpm": 0.03797539856273957, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 749, "s_m": 74.9, "d_m": 0.0, "x_m": 2.33585110184057, "y_m": -15.763256695086923, "d_right": 1.4062263554207655, "d_left": 1.4199484274336904, "psi_rad": 3.299861116602086, "kappa_radpm": 0.019429951556735325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 750, "s_m": 75.0, "d_m": 0.0, "x_m": 2.2371807946104543, "y_m": -15.779280312610735, "d_right": 1.4097919209099599, "d_left": 1.414324413557651, "psi_rad": 3.3020349031808864, "kappa_radpm": 0.012809470871308903, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 751, "s_m": 75.10000000000001, "d_m": 0.0, "x_m": 2.13849823626006, "y_m": -15.795194952772265, "d_right": 1.402271387241755, "d_left": 1.415862897584853, "psi_rad": 3.302423010776348, "kappa_radpm": 0.03158514390400047, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 752, "s_m": 75.2, "d_m": 0.0, "x_m": 2.0398403128972404, "y_m": -15.811295166330153, "d_right": 1.402043067577866, "d_left": 1.4139190301374467, "psi_rad": 3.3083519319616865, "kappa_radpm": 0.03392687606294409, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 753, "s_m": 75.3, "d_m": 0.0, "x_m": 1.9413478862165925, "y_m": -15.828379783190886, "d_right": 1.409917295029206, "d_left": 1.4081928291415553, "psi_rad": 3.3092083859889367, "kappa_radpm": 0.006706971957868291, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 754, "s_m": 75.4, "d_m": 0.0, "x_m": 1.8427174447504515, "y_m": -15.84464900594954, "d_right": 1.4206636777378194, "d_left": 1.4103762321375757, "psi_rad": 3.30969332635326, "kappa_radpm": 0.05629370049276439, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 755, "s_m": 75.5, "d_m": 0.0, "x_m": 1.7442416329189552, "y_m": -15.86182914094617, "d_right": 1.4157163205079162, "d_left": 1.4147786243946614, "psi_rad": 3.3204671260874896, "kappa_radpm": 0.08987613148192963, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 756, "s_m": 75.60000000000001, "d_m": 0.0, "x_m": 1.6459847612895555, "y_m": -15.880219646279663, "d_right": 1.4190447373020418, "d_left": 1.4088822826301741, "psi_rad": 3.327668552649646, "kappa_radpm": 0.023829992513464404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 757, "s_m": 75.7, "d_m": 0.0, "x_m": 1.5477681463276545, "y_m": -15.898815990750647, "d_right": 1.4207956357428182, "d_left": 1.409856117069367, "psi_rad": 3.3252331245901825, "kappa_radpm": 0.001578948242109135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 758, "s_m": 75.8, "d_m": 0.0, "x_m": 1.4494241849365737, "y_m": -15.916727442897413, "d_right": 1.417732129988222, "d_left": 1.4116022064088438, "psi_rad": 3.327984342298068, "kappa_radpm": 0.06103568441914842, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 759, "s_m": 75.9, "d_m": 0.0, "x_m": 1.3513117099187604, "y_m": -15.935863872150179, "d_right": 1.4229503832801784, "d_left": 1.4060920116618019, "psi_rad": 3.337440261474012, "kappa_radpm": 0.05932026014868086, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 760, "s_m": 76.0, "d_m": 0.0, "x_m": 1.2533233274225866, "y_m": -15.95563201495852, "d_right": 1.4238064427614607, "d_left": 1.4070335528870657, "psi_rad": 3.339848394327804, "kappa_radpm": 0.018250624603446397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 761, "s_m": 76.10000000000001, "d_m": 0.0, "x_m": 1.155302748973502, "y_m": -15.975241041842352, "d_right": 1.4236125567926243, "d_left": 1.415215012103008, "psi_rad": 3.3410903863947015, "kappa_radpm": 0.04609915364992112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 762, "s_m": 76.2, "d_m": 0.0, "x_m": 1.0573700161924617, "y_m": -15.995251262889486, "d_right": 1.4308292101708935, "d_left": 1.4210137026938305, "psi_rad": 3.3490682250577883, "kappa_radpm": 0.07366935751261128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 763, "s_m": 76.3, "d_m": 0.0, "x_m": 0.9596749900085253, "y_m": -16.016421613448273, "d_right": 1.4310560558211236, "d_left": 1.415246296013476, "psi_rad": 3.3558242578972237, "kappa_radpm": 0.04342619509183354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 764, "s_m": 76.4, "d_m": 0.0, "x_m": 0.8620153318262037, "y_m": -16.037754641987185, "d_right": 1.4237436091134552, "d_left": 1.4096800850544522, "psi_rad": 3.357753464076155, "kappa_radpm": 0.053242489480345156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 765, "s_m": 76.5, "d_m": 0.0, "x_m": 0.7644030330396158, "y_m": -16.059301712282476, "d_right": 1.4206452465697228, "d_left": 1.410971600640173, "psi_rad": 3.3664727557932927, "kappa_radpm": 0.07962794925731931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 766, "s_m": 76.60000000000001, "d_m": 0.0, "x_m": 0.6671303940410113, "y_m": -16.082334414653324, "d_right": 1.426090674636522, "d_left": 1.4178052492269508, "psi_rad": 3.373679053927619, "kappa_radpm": 0.046401397500202, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 767, "s_m": 76.7, "d_m": 0.0, "x_m": 0.5698388210746502, "y_m": -16.105286034637974, "d_right": 1.4370726304184642, "d_left": 1.4189405777238497, "psi_rad": 3.375753035293333, "kappa_radpm": 0.04004406237068103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 768, "s_m": 76.80000000000001, "d_m": 0.0, "x_m": 0.4726617606030739, "y_m": -16.128722210578555, "d_right": 1.4360767712062579, "d_left": 1.4195786147044673, "psi_rad": 3.381687866401755, "kappa_radpm": 0.05390670918398843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 769, "s_m": 76.9, "d_m": 0.0, "x_m": 0.37565057135587454, "y_m": -16.152826739730703, "d_right": 1.4307731212139596, "d_left": 1.413505856059434, "psi_rad": 3.386534377130131, "kappa_radpm": 0.037248157401341686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 770, "s_m": 77.0, "d_m": 0.0, "x_m": 0.27870495348497965, "y_m": -16.17720379995135, "d_right": 1.4299280034541224, "d_left": 1.4106064880970175, "psi_rad": 3.3891374978820235, "kappa_radpm": 0.053895125508818253, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 771, "s_m": 77.10000000000001, "d_m": 0.0, "x_m": 0.18181820329406456, "y_m": -16.20181366921311, "d_right": 1.426095304425316, "d_left": 1.4048277418161597, "psi_rad": 3.3973134022318945, "kappa_radpm": 0.11902042186185291, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 772, "s_m": 77.2, "d_m": 0.0, "x_m": 0.08528785035167191, "y_m": -16.227771665023827, "d_right": 1.4286267800936843, "d_left": 1.4047562188398883, "psi_rad": 3.412941582254394, "kappa_radpm": 0.1459912785898787, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 773, "s_m": 77.30000000000001, "d_m": 0.0, "x_m": -0.010782043550674825, "y_m": -16.255397162826412, "d_right": 1.4288590271896089, "d_left": 1.4100586254997165, "psi_rad": 3.4265116579498702, "kappa_radpm": 0.12093257891836018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 774, "s_m": 77.4, "d_m": 0.0, "x_m": -0.10657538115100569, "y_m": -16.283966037389803, "d_right": 1.4281495679413336, "d_left": 1.4214123200331152, "psi_rad": 3.437128098038066, "kappa_radpm": 0.14990806515273292, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 775, "s_m": 77.5, "d_m": 0.0, "x_m": -0.20203657784262377, "y_m": -16.313624835223557, "d_right": 1.4314868668896141, "d_left": 1.4263252198774368, "psi_rad": 3.456493270980417, "kappa_radpm": 0.21478517347068848, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 776, "s_m": 77.60000000000001, "d_m": 0.0, "x_m": -0.2966469057532226, "y_m": -16.345879843155462, "d_right": 1.42617845216742, "d_left": 1.4289740543343712, "psi_rad": 3.4800851327322038, "kappa_radpm": 0.21269730141674437, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 777, "s_m": 77.7, "d_m": 0.0, "x_m": -0.39060211786129767, "y_m": -16.380007754193567, "d_right": 1.4265284474421276, "d_left": 1.4360080678860214, "psi_rad": 3.4990327312637657, "kappa_radpm": 0.2091820229239616, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 778, "s_m": 77.80000000000001, "d_m": 0.0, "x_m": -0.4839267319650499, "y_m": -16.415825683635422, "d_right": 1.4185045515631016, "d_left": 1.4322536093321538, "psi_rad": 3.521921537316996, "kappa_radpm": 0.2603539375864372, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 779, "s_m": 77.9, "d_m": 0.0, "x_m": -0.5762171588892302, "y_m": -16.454215556604748, "d_right": 1.4202716798091854, "d_left": 1.4293273658179848, "psi_rad": 3.551103518781053, "kappa_radpm": 0.27060285235493975, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 780, "s_m": 78.0, "d_m": 0.0, "x_m": -0.6672936397860846, "y_m": -16.495416052144346, "d_right": 1.4320786366286375, "d_left": 1.4303268930213846, "psi_rad": 3.576042107787984, "kappa_radpm": 0.261271664145033, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 781, "s_m": 78.10000000000001, "d_m": 0.0, "x_m": -0.7575578344083644, "y_m": -16.538360784164063, "d_right": 1.4465017807204312, "d_left": 1.4312919505475932, "psi_rad": 3.6033578516100597, "kappa_radpm": 0.2985296950034888, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 782, "s_m": 78.2, "d_m": 0.0, "x_m": -0.8462403769009973, "y_m": -16.58446875201201, "d_right": 1.4546309299916103, "d_left": 1.4227659468780756, "psi_rad": 3.635748046788682, "kappa_radpm": 0.3152218415268404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 783, "s_m": 78.30000000000001, "d_m": 0.0, "x_m": -0.9335371695180381, "y_m": -16.633167477423413, "d_right": 1.4571318193935978, "d_left": 1.4169502517958987, "psi_rad": 3.666402219915428, "kappa_radpm": 0.3167743685317559, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 784, "s_m": 78.4, "d_m": 0.0, "x_m": -1.019224536543881, "y_m": -16.684620662128463, "d_right": 1.4637336043012241, "d_left": 1.4149850932995933, "psi_rad": 3.699102920495033, "kappa_radpm": 0.32837628683704434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 785, "s_m": 78.5, "d_m": 0.0, "x_m": -1.1031517884217334, "y_m": -16.738919914646775, "d_right": 1.4639300185388509, "d_left": 1.416731978608631, "psi_rad": 3.7320774772828367, "kappa_radpm": 0.3348438939892384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 786, "s_m": 78.60000000000001, "d_m": 0.0, "x_m": -1.1852636846013584, "y_m": -16.795909737098974, "d_right": 1.4712075754963623, "d_left": 1.4158467830323438, "psi_rad": 3.7660716992928807, "kappa_radpm": 0.3385885736632366, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 787, "s_m": 78.7, "d_m": 0.0, "x_m": -1.2653058095577072, "y_m": -16.855783118841828, "d_right": 1.488014561650862, "d_left": 1.4115954293730981, "psi_rad": 3.799795192015484, "kappa_radpm": 0.34160448909569485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 788, "s_m": 78.80000000000001, "d_m": 0.0, "x_m": -1.343398335802365, "y_m": -16.918184000446928, "d_right": 1.4956069378106303, "d_left": 1.411224816775428, "psi_rad": 3.8343925971120196, "kappa_radpm": 0.3489603687803733, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 789, "s_m": 78.9, "d_m": 0.0, "x_m": -1.4191110321858094, "y_m": -16.983449794304683, "d_right": 1.495394448699606, "d_left": 1.4142073815763803, "psi_rad": 3.8695872657715586, "kappa_radpm": 0.3284052628830314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 790, "s_m": 79.0, "d_m": 0.0, "x_m": -1.4926174947063038, "y_m": -17.051184907474322, "d_right": 1.5051391634997815, "d_left": 1.4182890035535487, "psi_rad": 3.900073649688626, "kappa_radpm": 0.32960232847003335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 791, "s_m": 79.10000000000001, "d_m": 0.0, "x_m": -1.5642068765759727, "y_m": -17.120937453696325, "d_right": 1.5152432404886995, "d_left": 1.4195879880230742, "psi_rad": 3.9355077314655653, "kappa_radpm": 0.34600963511878247, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 792, "s_m": 79.2, "d_m": 0.0, "x_m": -1.6327363359097953, "y_m": -17.19371107021168, "d_right": 1.5156362122354623, "d_left": 1.419224965219948, "psi_rad": 3.9692755767123824, "kappa_radpm": 0.3356192179395223, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 793, "s_m": 79.30000000000001, "d_m": 0.0, "x_m": -1.6994612385776982, "y_m": -17.26814267486951, "d_right": 1.5020827118053346, "d_left": 1.4234461545520667, "psi_rad": 4.00263157505347, "kappa_radpm": 0.3545324832405372, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 794, "s_m": 79.4, "d_m": 0.0, "x_m": -1.762980929456722, "y_m": -17.345315706007007, "d_right": 1.4906638739913483, "d_left": 1.4304514613069914, "psi_rad": 4.04018207336049, "kappa_radpm": 0.3523327112259622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 795, "s_m": 79.5, "d_m": 0.0, "x_m": -1.823929880219133, "y_m": -17.42453927970305, "d_right": 1.478423540618386, "d_left": 1.427407237953103, "psi_rad": 4.073098117298662, "kappa_radpm": 0.3271314367296063, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 796, "s_m": 79.60000000000001, "d_m": 0.0, "x_m": -1.882236974548463, "y_m": -17.505726362707165, "d_right": 1.455660402919999, "d_left": 1.4217056817966307, "psi_rad": 4.105608360706411, "kappa_radpm": 0.3082553505745045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 797, "s_m": 79.7, "d_m": 0.0, "x_m": -1.9379109490229955, "y_m": -17.588744574725453, "d_right": 1.4354020033920911, "d_left": 1.419814128264656, "psi_rad": 4.134749187413563, "kappa_radpm": 0.3024959907237701, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 798, "s_m": 79.80000000000001, "d_m": 0.0, "x_m": -1.9913928070935352, "y_m": -17.673194568359254, "d_right": 1.4190604649356637, "d_left": 1.422338260735037, "psi_rad": 4.166107558851165, "kappa_radpm": 0.3109493279770925, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 799, "s_m": 79.9, "d_m": 0.0, "x_m": -2.0417497058583045, "y_m": -17.75953187919758, "d_right": 1.3973814912240585, "d_left": 1.4282244824367374, "psi_rad": 4.196939053008982, "kappa_radpm": 0.2900350453834588, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 800, "s_m": 80.0, "d_m": 0.0, "x_m": -2.0899267835047697, "y_m": -17.84711822896458, "d_right": 1.3724877772642794, "d_left": 1.4385537605098846, "psi_rad": 4.224114567927857, "kappa_radpm": 0.2854764490901318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 801, "s_m": 80.10000000000001, "d_m": 0.0, "x_m": -2.1355194050488575, "y_m": -17.936064915705384, "d_right": 1.3574288276742774, "d_left": 1.4437077786371506, "psi_rad": 4.254034342827008, "kappa_radpm": 0.2804546274505282, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 802, "s_m": 80.2, "d_m": 0.0, "x_m": -2.178371606278283, "y_m": -18.026373619855452, "d_right": 1.3444062769861074, "d_left": 1.431834227446492, "psi_rad": 4.280205493417963, "kappa_radpm": 0.25993238478413394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 803, "s_m": 80.30000000000001, "d_m": 0.0, "x_m": -2.2192518830580874, "y_m": -18.11759227975901, "d_right": 1.3216784296164779, "d_left": 1.4226200300375043, "psi_rad": 4.306020819783835, "kappa_radpm": 0.2564097937707577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 804, "s_m": 80.4, "d_m": 0.0, "x_m": -2.2573851169723005, "y_m": -18.209989291336232, "d_right": 1.309198721328107, "d_left": 1.4174088551996715, "psi_rad": 4.331487452172114, "kappa_radpm": 0.23873943731875347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 805, "s_m": 80.5, "d_m": 0.0, "x_m": -2.293568933464025, "y_m": -18.303172209015493, "d_right": 1.3063838203719513, "d_left": 1.413493558948314, "psi_rad": 4.3537687072475855, "kappa_radpm": 0.22528732323530587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 806, "s_m": 80.60000000000001, "d_m": 0.0, "x_m": -2.3275473823195925, "y_m": -18.397174290032527, "d_right": 1.3022167107939155, "d_left": 1.408867736554804, "psi_rad": 4.376544916819175, "kappa_radpm": 0.19714663975506586, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 807, "s_m": 80.7, "d_m": 0.0, "x_m": -2.359450836818192, "y_m": -18.491908933725572, "d_right": 1.2907370930804172, "d_left": 1.405121472056387, "psi_rad": 4.393198035198599, "kappa_radpm": 0.1630369263975373, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 808, "s_m": 80.80000000000001, "d_m": 0.0, "x_m": -2.390282576760052, "y_m": -18.586998078622337, "d_right": 1.2871740914991907, "d_left": 1.3942130687496856, "psi_rad": 4.409152302098683, "kappa_radpm": 0.16267110309821753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 809, "s_m": 80.9, "d_m": 0.0, "x_m": -2.419146589990838, "y_m": -18.682699551813496, "d_right": 1.2798221408368722, "d_left": 1.3843264797669426, "psi_rad": 4.425732255818242, "kappa_radpm": 0.12459166976780178, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 810, "s_m": 81.0, "d_m": 0.0, "x_m": -2.4468090378673693, "y_m": -18.77875919480724, "d_right": 1.2784678877416158, "d_left": 1.3748940318229246, "psi_rad": 4.434070636052243, "kappa_radpm": 0.0946858231419423, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 811, "s_m": 81.10000000000001, "d_m": 0.0, "x_m": -2.4740738873216968, "y_m": -18.874931494428267, "d_right": 1.2663547801490331, "d_left": 1.3617562168014459, "psi_rad": 4.444669420446631, "kappa_radpm": 0.08699592794433553, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 812, "s_m": 81.2, "d_m": 0.0, "x_m": -2.499694053582077, "y_m": -18.97155589442949, "d_right": 1.2637728982796939, "d_left": 1.3541753688316942, "psi_rad": 4.45146982164111, "kappa_radpm": 0.034239926844330526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 813, "s_m": 81.30000000000001, "d_m": 0.0, "x_m": -2.5256486909914093, "y_m": -19.06809122113674, "d_right": 1.2567529952593355, "d_left": 1.3542983436789118, "psi_rad": 4.451517405815497, "kappa_radpm": 0.05345695628546476, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 814, "s_m": 81.4, "d_m": 0.0, "x_m": -2.551259144358697, "y_m": -19.16471612159381, "d_right": 1.2551452217325962, "d_left": 1.3503499911195467, "psi_rad": 4.462161212898203, "kappa_radpm": 0.0768014182950183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 815, "s_m": 81.5, "d_m": 0.0, "x_m": -2.575152939125569, "y_m": -19.261781518630688, "d_right": 1.259783406419733, "d_left": 1.3456483156723191, "psi_rad": 4.466877689474501, "kappa_radpm": 0.04820271077743632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 816, "s_m": 81.60000000000001, "d_m": 0.0, "x_m": -2.599851203308354, "y_m": -19.358645307580456, "d_right": 1.252708404082331, "d_left": 1.332316985099007, "psi_rad": 4.47180175505369, "kappa_radpm": 0.056932434506828944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 817, "s_m": 81.7, "d_m": 0.0, "x_m": -2.622787099353616, "y_m": -19.455937867375606, "d_right": 1.248882128779564, "d_left": 1.3245931977479537, "psi_rad": 4.478264176375866, "kappa_radpm": 0.054569707703353565, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 818, "s_m": 81.80000000000001, "d_m": 0.0, "x_m": -2.6462313099129537, "y_m": -19.553112360447102, "d_right": 1.243967904440795, "d_left": 1.3131020291535518, "psi_rad": 4.4827156965943615, "kappa_radpm": 0.059997076064342014, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 819, "s_m": 81.9, "d_m": 0.0, "x_m": -2.668300692883585, "y_m": -19.65060781924587, "d_right": 1.2484803213238649, "d_left": 1.3055789261454716, "psi_rad": 4.490263591588734, "kappa_radpm": 0.06562113299719563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 820, "s_m": 82.0, "d_m": 0.0, "x_m": -2.6902753750115758, "y_m": -19.748125176897155, "d_right": 1.2517276934916022, "d_left": 1.3055906709655847, "psi_rad": 4.495839923193801, "kappa_radpm": 0.05909101289312657, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 821, "s_m": 82.10000000000001, "d_m": 0.0, "x_m": -2.7112561818341585, "y_m": -19.845861202776256, "d_right": 1.2505186176172556, "d_left": 1.2989360719958956, "psi_rad": 4.50208179416736, "kappa_radpm": 0.058416711977815616, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 822, "s_m": 82.2, "d_m": 0.0, "x_m": -2.7320111066067705, "y_m": -19.943642024844106, "d_right": 1.2427592391661404, "d_left": 1.2987292469328795, "psi_rad": 4.507523265589363, "kappa_radpm": 0.05224715167481797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 823, "s_m": 82.30000000000001, "d_m": 0.0, "x_m": -2.751926474717214, "y_m": -20.04159779865812, "d_right": 1.2438723340033282, "d_left": 1.3016055389801224, "psi_rad": 4.5125312245023235, "kappa_radpm": 0.046619630791318034, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 824, "s_m": 82.4, "d_m": 0.0, "x_m": -2.7717013556445624, "y_m": -20.13958331050643, "d_right": 1.2415324886838515, "d_left": 1.301267662679294, "psi_rad": 4.516847191747627, "kappa_radpm": 0.0484605038673136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 825, "s_m": 82.5, "d_m": 0.0, "x_m": -2.7907703153125607, "y_m": -20.237706716727462, "d_right": 1.2367568375866913, "d_left": 1.2931632306176142, "psi_rad": 4.522223325275786, "kappa_radpm": 0.045411777373518536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 826, "s_m": 82.60000000000001, "d_m": 0.0, "x_m": -2.8094903731878658, "y_m": -20.335898435914416, "d_right": 1.2404012567607878, "d_left": 1.2855666312613263, "psi_rad": 4.525929547222331, "kappa_radpm": 0.05183734602253631, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 827, "s_m": 82.7, "d_m": 0.0, "x_m": -2.827832086389903, "y_m": -20.434163722283945, "d_right": 1.2513536563152097, "d_left": 1.2757329115292046, "psi_rad": 4.532590794480294, "kappa_radpm": 0.09248699147115902, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 828, "s_m": 82.80000000000001, "d_m": 0.0, "x_m": -2.8452428214703502, "y_m": -20.532598720491464, "d_right": 1.2498366260095424, "d_left": 1.267843939509745, "psi_rad": 4.5444269455165625, "kappa_radpm": 0.09729337354075884, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 829, "s_m": 82.9, "d_m": 0.0, "x_m": -2.8612533473797224, "y_m": -20.631270069575148, "d_right": 1.255764512078513, "d_left": 1.2547533184315176, "psi_rad": 4.552049469188445, "kappa_radpm": 0.045429815159701015, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 830, "s_m": 83.0, "d_m": 0.0, "x_m": -2.877161507547038, "y_m": -20.729959221017612, "d_right": 1.2566896131694616, "d_left": 1.2463886857194775, "psi_rad": 4.553512908548503, "kappa_radpm": 0.0023383421104772317, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 831, "s_m": 83.10000000000001, "d_m": 0.0, "x_m": -2.892883122563659, "y_m": -20.828676747189697, "d_right": 1.2657217117815553, "d_left": 1.2393020580378757, "psi_rad": 4.552517137610541, "kappa_radpm": -0.030700644268613075, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 832, "s_m": 83.2, "d_m": 0.0, "x_m": -2.9089878695378384, "y_m": -20.92733449507319, "d_right": 1.27829628487869, "d_left": 1.23211549839944, "psi_rad": 4.54737277969478, "kappa_radpm": -0.07691631302856994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 833, "s_m": 83.30000000000001, "d_m": 0.0, "x_m": -2.9257240418410952, "y_m": -21.025883365233785, "d_right": 1.2826733295384924, "d_left": 1.2336575059687973, "psi_rad": 4.537133875004827, "kappa_radpm": -0.14478274847054218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 834, "s_m": 83.4, "d_m": 0.0, "x_m": -2.9438454947260015, "y_m": -21.124190476897127, "d_right": 1.2907484022658458, "d_left": 1.2287158902757842, "psi_rad": 4.518416230000671, "kappa_radpm": -0.19525936612479589, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 835, "s_m": 83.5, "d_m": 0.0, "x_m": -2.9642577043602882, "y_m": -21.22204062954508, "d_right": 1.3041468731041979, "d_left": 1.2249373225334463, "psi_rad": 4.498082001779867, "kappa_radpm": -0.20980097170233858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 836, "s_m": 83.60000000000001, "d_m": 0.0, "x_m": -2.986360715862393, "y_m": -21.319528712972936, "d_right": 1.3209561512875063, "d_left": 1.2182269967415418, "psi_rad": 4.476456035660204, "kappa_radpm": -0.2476790994975353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 837, "s_m": 83.7, "d_m": 0.0, "x_m": -3.010984262949069, "y_m": -21.416402306532436, "d_right": 1.337992926695862, "d_left": 1.2222874380188127, "psi_rad": 4.44854618188036, "kappa_radpm": -0.3013703269472301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 838, "s_m": 83.80000000000001, "d_m": 0.0, "x_m": -3.0384909503497184, "y_m": -21.51250322565699, "d_right": 1.3592910358793528, "d_left": 1.2373937117679434, "psi_rad": 4.416181970270758, "kappa_radpm": -0.34412415654921036, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 839, "s_m": 83.9, "d_m": 0.0, "x_m": -3.0693285391817717, "y_m": -21.607578953568357, "d_right": 1.3783892566791578, "d_left": 1.2472875371511978, "psi_rad": 4.379721350570518, "kappa_radpm": -0.35857226774636874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 840, "s_m": 84.0, "d_m": 0.0, "x_m": -3.1037631916253563, "y_m": -21.701419842515364, "d_right": 1.3991993346162959, "d_left": 1.2550897254280051, "psi_rad": 4.344467516721484, "kappa_radpm": -0.38601794873688533, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 841, "s_m": 84.10000000000001, "d_m": 0.0, "x_m": -3.1412245456967995, "y_m": -21.794092267238213, "d_right": 1.4130480370150786, "d_left": 1.2669335702395115, "psi_rad": 4.302517760823141, "kappa_radpm": -0.43154690936529905, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 842, "s_m": 84.2, "d_m": 0.0, "x_m": -3.183397664695475, "y_m": -21.884707497410425, "d_right": 1.4269577758439569, "d_left": 1.2914240414785714, "psi_rad": 4.258158134848424, "kappa_radpm": -0.4631965748218514, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 843, "s_m": 84.30000000000001, "d_m": 0.0, "x_m": -3.2289211852673847, "y_m": -21.97369402380662, "d_right": 1.4440196764558442, "d_left": 1.3137539700088698, "psi_rad": 4.209878445858771, "kappa_radpm": -0.5277196410323937, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 844, "s_m": 84.4, "d_m": 0.0, "x_m": -3.279629778220867, "y_m": -22.059812906046425, "d_right": 1.461950877107815, "d_left": 1.347742188618816, "psi_rad": 4.152614206641946, "kappa_radpm": -0.5690458502495188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 845, "s_m": 84.5, "d_m": 0.0, "x_m": -3.33501874949519, "y_m": -22.143006980554645, "d_right": 1.4810574726748775, "d_left": 1.3855393806623915, "psi_rad": 4.096069275808867, "kappa_radpm": -0.5888887698954859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 846, "s_m": 84.60000000000001, "d_m": 0.0, "x_m": -3.395122865915616, "y_m": -22.222854101121435, "d_right": 1.4949847185791036, "d_left": 1.4235721290322603, "psi_rad": 4.034836452662848, "kappa_radpm": -0.6470427299502068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 847, "s_m": 84.7, "d_m": 0.0, "x_m": -3.460255912969519, "y_m": -22.298654297860423, "d_right": 1.502515893359455, "d_left": 1.4682093057536025, "psi_rad": 3.966660729818826, "kappa_radpm": -0.6868929906636101, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 848, "s_m": 84.80000000000001, "d_m": 0.0, "x_m": -3.5306444729701547, "y_m": -22.369578249807223, "d_right": 1.5028924476599113, "d_left": 1.5180124321345534, "psi_rad": 3.8974578545301264, "kappa_radpm": -0.6932661334292556, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 849, "s_m": 84.9, "d_m": 0.0, "x_m": -3.605614026799297, "y_m": -22.43567063234638, "d_right": 1.5025548742873798, "d_left": 1.5779594720606467, "psi_rad": 3.8280075031329748, "kappa_radpm": -0.707259276079315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 850, "s_m": 85.0, "d_m": 0.0, "x_m": -3.6851573951701093, "y_m": -22.496174793812738, "d_right": 1.5016433183556206, "d_left": 1.6470812871587384, "psi_rad": 3.7560059993142634, "kappa_radpm": -0.7331854277682748, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 851, "s_m": 85.10000000000001, "d_m": 0.0, "x_m": -3.768835082362925, "y_m": -22.55082446485453, "d_right": 1.5002156659874597, "d_left": 1.7157635006967846, "psi_rad": 3.68137041757932, "kappa_radpm": -0.729418818283305, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 852, "s_m": 85.2, "d_m": 0.0, "x_m": -3.8564963112689883, "y_m": -22.59882866302537, "d_right": 1.497696922843499, "d_left": 1.6895471033930753, "psi_rad": 3.6101222356576024, "kappa_radpm": -0.6893286164752155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 853, "s_m": 85.30000000000001, "d_m": 0.0, "x_m": -3.9470746808042643, "y_m": -22.641034635468444, "d_right": 1.49070562642339, "d_left": 1.6666103129366021, "psi_rad": 3.5435046942842767, "kappa_radpm": -0.6096143152933386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 854, "s_m": 85.4, "d_m": 0.0, "x_m": -4.04034614922513, "y_m": -22.67697382903993, "d_right": 1.4757910783722843, "d_left": 1.651843449511542, "psi_rad": 3.4881993725989346, "kappa_radpm": -0.5075817876925637, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 855, "s_m": 85.5, "d_m": 0.0, "x_m": -4.135052683701019, "y_m": -22.708929999769392, "d_right": 1.4633251299131604, "d_left": 1.6322743095435734, "psi_rad": 3.441988336745764, "kappa_radpm": -0.48529767233120413, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 856, "s_m": 85.60000000000001, "d_m": 0.0, "x_m": -4.231239305361678, "y_m": -22.73610677306785, "d_right": 1.4526246994365986, "d_left": 1.6205935428576825, "psi_rad": 3.391139838132694, "kappa_radpm": -0.5088360078836818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 857, "s_m": 85.7, "d_m": 0.0, "x_m": -4.328700659736979, "y_m": -22.758283052871164, "d_right": 1.4435991380228308, "d_left": 1.6127555139532566, "psi_rad": 3.3402211351690276, "kappa_radpm": -0.5094891642578103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 858, "s_m": 85.80000000000001, "d_m": 0.0, "x_m": -4.427151881689959, "y_m": -22.77554055708707, "d_right": 1.4364472999296225, "d_left": 1.5955281069867149, "psi_rad": 3.2892420052811318, "kappa_radpm": -0.5029440895711534, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 859, "s_m": 85.9, "d_m": 0.0, "x_m": -4.526365336919766, "y_m": -22.78768206148478, "d_right": 1.4310602809958695, "d_left": 1.58340299308619, "psi_rad": 3.239632317254797, "kappa_radpm": -0.4818569589333155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 860, "s_m": 86.0, "d_m": 0.0, "x_m": -4.626039004555671, "y_m": -22.795102097630334, "d_right": 1.4279013727582088, "d_left": 1.5759900017256658, "psi_rad": 3.1928706134944687, "kappa_radpm": -0.46384641337530397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 861, "s_m": 86.10000000000001, "d_m": 0.0, "x_m": -4.72594840940507, "y_m": -22.79792525376371, "d_right": 1.4271329332797487, "d_left": 1.5731684893117246, "psi_rad": 3.146863034579736, "kappa_radpm": -0.459378601732896, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 862, "s_m": 86.2, "d_m": 0.0, "x_m": -4.825882950681985, "y_m": -22.79615536111711, "d_right": 1.4253630985401196, "d_left": 1.5749386599934776, "psi_rad": 3.1009948931478895, "kappa_radpm": -0.3437804164144098, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 863, "s_m": 86.30000000000001, "d_m": 0.0, "x_m": -4.925636822594655, "y_m": -22.789813894590626, "d_right": 1.4224273040464306, "d_left": 1.5812830655382197, "psi_rad": 3.078106951296854, "kappa_radpm": -0.22887941851035265, "vx_mps": 0.0, "ax_mps2": 0.0}]}, "global_traj_markers_iqp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.882160008533675, "y": -21.71655958369345, "z": 0.18339969051332738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36679938102665477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.9816187019875455, "y": -21.70712618546316, "z": 0.18332879532180504}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3666575906436101}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.080365895359873, "y": -21.69135554078186, "z": 0.184425317412858}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.368850634825716}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.177919042444273, "y": -21.66991432219545, "z": 0.186564823537438}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.373129647074876}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.274298653447174, "y": -21.643068236553166, "z": 0.1888204089669514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3776408179339028}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.368995728485495, "y": -21.61115393542029, "z": 0.19112364989624955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3822472997924991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.462003588583595, "y": -21.57445533580863, "z": 0.19368265123365477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38736530246730955}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.553030749276221, "y": -21.53329045376689, "z": 0.19637267656920762}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39274535313841524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.642028624891917, "y": -21.487647975497396, "z": 0.1986458058738959}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3972916117477918}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.72862879633994, "y": -21.43777096773774, "z": 0.20070597888206254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4014119577641251}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.812924477602107, "y": -21.38393667933552, "z": 0.2031890166470772}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4063780332941544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.894764255077599, "y": -21.326556475411294, "z": 0.20595798020161185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4119159604032237}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.974195245817594, "y": -21.265853820335877, "z": 0.2088622654600465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.417724530920093}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -6.051162947578346, "y": -21.20209258913352, "z": 0.21186702696453907}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42373405392907815}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -6.125680373878284, "y": -21.13542139485074, "z": 0.2148439974612671}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4296879949225342}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -6.197661965151177, "y": -21.066077309683713, "z": 0.21780637799672667}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43561275599345334}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -6.267158979124656, "y": -20.994191412978473, "z": 0.22079567440091905}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4415913488018381}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -6.3341222371072705, "y": -20.919986828549852, "z": 0.22379801135752142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44759602271504284}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -6.398600072019689, "y": -20.843564942304724, "z": 0.22678317871994305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4535663574398861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -6.460555521621185, "y": -20.76512597261283, "z": 0.22975779998222837}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45951559996445673}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -6.520045467108982, "y": -20.684761310971766, "z": 0.23273434107766772}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46546868215533543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -6.5770562852855, "y": -20.60265473462318, "z": 0.23571432501411133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47142865002822265}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -6.63164876710985, "y": -20.51888875022579, "z": 0.23870361204226445}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4774072240845289}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -6.683829264289628, "y": -20.433627851447785, "z": 0.24170570211618828}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48341140423237655}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -6.7336626508963215, "y": -20.34694748620517, "z": 0.2447280589976269}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4894561179952538}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -6.781170026388441, "y": -20.25899484636914, "z": 0.2477702470462277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4955404940924554}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -6.826416986969216, "y": -20.169835877835684, "z": 0.250832744921547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.501665489843094}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -6.869435103244856, "y": -20.079600642321584, "z": 0.25391754001007294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5078350800201459}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -6.9102917255047345, "y": -19.988347142927783, "z": 0.2570283063967757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5140566127935514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -6.949027145927624, "y": -19.8961906677427, "z": 0.26016663130196405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5203332626039281}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -6.985709728192132, "y": -19.803181499022546, "z": 0.26333521718472686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5266704343694537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -7.020386419611259, "y": -19.709421000437374, "z": 0.26653585310391487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5330717062078297}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -7.0531261153615565, "y": -19.614952466235813, "z": 0.2697711907121274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5395423814242548}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -7.0839809536103475, "y": -19.51986450388149, "z": 0.27304339651866977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5460867930373395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -7.1130201327687175, "y": -19.42419423304764, "z": 0.2763553771843419}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5527107543686838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -7.140299860177429, "y": -19.328018431271058, "z": 0.27970941620676343}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5594188324135269}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -7.165889251816617, "y": -19.231368901465416, "z": 0.28310833270536423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5662166654107285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -7.189847668443589, "y": -19.13431124540111, "z": 0.2865547194076332}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5731094388152664}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -7.212243947155899, "y": -19.03687297525719, "z": 0.29005161921910844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5801032384382169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -7.233139916062351, "y": -18.939109061675477, "z": 0.29360184178539583}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5872036835707917}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -7.252603935697865, "y": -18.841043769762468, "z": 0.29720852551211036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5944170510242207}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -7.270699726157641, "y": -18.74272182906755, "z": 0.30080543269708293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6016108653941659}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -7.287495079745481, "y": -18.644165343897804, "z": 0.30432997627652086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6086599525530417}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -7.303055152186022, "y": -18.545409135865, "z": 0.3077852047096753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6155704094193506}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -7.317447136711973, "y": -18.446474143035285, "z": 0.31117396043255524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6223479208651105}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -7.330737232419961, "y": -18.347385645778136, "z": 0.31449889884194454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6289977976838891}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -7.342992027993399, "y": -18.248164608810537, "z": 0.3177625050876456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6355250101752912}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -7.354278492855764, "y": -18.14882695978779, "z": 0.32096710897453085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6419342179490617}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -7.364662840396703, "y": -18.049393699743035, "z": 0.3241148982281344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6482297964562688}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -7.374212529023051, "y": -17.949872749334034, "z": 0.3272079303382174}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6544158606764348}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -7.3829934585721535, "y": -17.85028619006246, "z": 0.33024814316230433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6604962863246087}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -7.391073345208206, "y": -17.750634231516816, "z": 0.333237364444283}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.666474728888566}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -7.398517730861322, "y": -17.65094139377062, "z": 0.33617732038074327}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6723546407614865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -7.405395594493728, "y": -17.551200007580725, "z": 0.3390696433489722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6781392866979444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -7.411775178973636, "y": -17.451434368572325, "z": 0.341915878894757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.683831757789514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -7.417727470322081, "y": -17.351634707241974, "z": 0.34471749206485036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6894349841297007}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -7.4233219738351, "y": -17.25181972913414, "z": 0.3474758731576897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6949517463153794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -7.4286217087559345, "y": -17.15198325790039, "z": 0.3501923429563885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.700384685912777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -7.433675828673049, "y": -17.052138063494635, "z": 0.35286815749985845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7057363149997169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -7.438531615597271, "y": -16.95227894145001, "z": 0.35550451244093045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7110090248818609}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -7.443232872044312, "y": -16.852416809779978, "z": 0.35810254703435085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7162050940687017}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -7.447823955075938, "y": -16.752545158175447, "z": 0.36066334779236353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7213266955847271}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -7.452348265257429, "y": -16.652675654448455, "z": 0.3631879518411307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7263759036822613}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -7.456848281473572, "y": -16.552800981430913, "z": 0.3656773500073836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7313547000147672}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -7.4613626734629035, "y": -16.452931052752266, "z": 0.36813248966134227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7362649793226845}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -7.465920205215033, "y": -16.353060184823846, "z": 0.37055427733902274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7411085546780455}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -7.470532577347009, "y": -16.253192477653517, "z": 0.37294358116450355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7458871623290071}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -7.47520554858035, "y": -16.153326956546625, "z": 0.37530123309049374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7506024661809875}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -7.47993735607301, "y": -16.05346365194004, "z": 0.37762803097358866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7552560619471773}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -7.48472533177686, "y": -15.953603509361004, "z": 0.37992474049888214}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7598494809977643}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -7.489566580266021, "y": -15.853745757544708, "z": 0.38219209696709}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.76438419393418}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -7.494458152968951, "y": -15.753890636722517, "z": 0.3844308069560021}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7688616139120042}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -7.499397171003081, "y": -15.654037697508036, "z": 0.3866415498668995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.773283099733799}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -7.504380721969217, "y": -15.554187127197235, "z": 0.38882497936552474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7776499587310495}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -7.509405916450666, "y": -15.454338477445628, "z": 0.39098172472626297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7819634494525259}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -7.514469832998253, "y": -15.354491948462272, "z": 0.39311239208736365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7862247841747273}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -7.519569585515131, "y": -15.254647078947837, "z": 0.3952175656242955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.790435131248591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -7.524702254651899, "y": -15.154804060797714, "z": 0.39729780864766767}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7945956172953353}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -7.529864954391069, "y": -15.054962428550331, "z": 0.39935366463156163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7987073292631233}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -7.535054765408692, "y": -14.955122364027599, "z": 0.40138565817759025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8027713163551805}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -7.5402688022054125, "y": -14.855283398619878, "z": 0.4033942959195278}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8067885918390556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -7.545504145593578, "y": -14.755445711374731, "z": 0.40538006737292753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8107601347458551}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -7.5507579105413365, "y": -14.655608829046109, "z": 0.4073434457337625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.814686891467525}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -7.556027178015434, "y": -14.555772926655985, "z": 0.409284888629778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.818569777259556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -7.56130906333922, "y": -14.45593752783553, "z": 0.41120483882793557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8224096776558711}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -7.566600647546236, "y": -14.35610280611944, "z": 0.41310372490104214}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8262074498020843}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -7.571899046274117, "y": -14.256268282073787, "z": 0.4149819618564095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.829963923712819}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -7.577201340592083, "y": -14.156434128969734, "z": 0.416839951729152}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.833679903458304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -7.582504646356693, "y": -14.056599865242532, "z": 0.4186780841425249}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8373561682850498}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -7.58780604464016, "y": -13.95676566520944, "z": 0.4204967368375143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8409934736750286}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -7.593102651495282, "y": -13.85693104507751, "z": 0.4222962761737161}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8445925523474322}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -7.598391547922769, "y": -13.757096182113981, "z": 0.4240770576033838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8481541152067676}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -7.6036698493215935, "y": -13.657260624549155, "z": 0.42583942612038184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8516788522407637}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -7.6089347042578535, "y": -13.557424534661424, "z": 0.4275837166856487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8551674333712974}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -7.6141834035598635, "y": -13.457587426574943, "z": 0.4293102546306558}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8586205092613116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -7.619413495857147, "y": -13.357749565532927, "z": 0.4310193560402369}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8620387120804738}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -7.624623031850725, "y": -13.257910319205422, "z": 0.4327113281160625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.865422656232125}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -7.629810119584142, "y": -13.15807022559841, "z": 0.43438646952194304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8687729390438861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -7.634973059810532, "y": -13.058228493356955, "z": 0.4360450707120585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.872090141424117}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -7.640110086905389, "y": -12.958385811611068, "z": 0.43768741424313556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8753748284862711}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -7.6452195140935615, "y": -12.858541324658477, "z": 0.43931377507152086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8786275501430417}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -7.650299578635709, "y": -12.758695727303587, "z": 0.4409244208360353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8818488416720706}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -7.655348583030713, "y": -12.658848315395971, "z": 0.44251961212743113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8850392242548623}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -7.660364021206769, "y": -12.55899964731868, "z": 0.4440996027452212}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8881992054904424}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -7.665342247924228, "y": -12.459148723475051, "z": 0.4456646399425943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8913292798851886}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -7.670276538426805, "y": -12.359296257250087, "z": 0.4472149646600868}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8944299293201736}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -7.675155753453964, "y": -12.259440055531254, "z": 0.44875081174863485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8975016234972697}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -7.679967479367095, "y": -12.159581651882606, "z": 0.4502724101825904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9005448203651808}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -7.684698430514162, "y": -12.059718028426163, "z": 0.4517799832632485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.903559966526497}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -7.689334980881788, "y": -11.959851332521415, "z": 0.45327374881339744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9065474976267949}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -7.69386375710531, "y": -11.859978344948136, "z": 0.4547539193633704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9095078387267408}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -7.69827113926143, "y": -11.760101276052353, "z": 0.45622070232904843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9124414046580969}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -7.7025437512861705, "y": -11.66021708915046, "z": 0.4576743001822365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.915348600364473}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -7.706668426935904, "y": -11.56032805256332, "z": 0.45911491061380805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9182298212276161}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -7.710632927394243, "y": -11.460431101316198, "z": 0.4605427266899902}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9210854533799804}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -7.714425490882929, "y": -11.360528930723186, "z": 0.4619579370021378}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9239158740042756}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -7.718035595161021, "y": -11.260618328680131, "z": 0.4633607258103264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9267214516206528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -7.721451895021567, "y": -11.160702492103672, "z": 0.4647512731810719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9295025463621438}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -7.724662193013471, "y": -11.060778288541968, "z": 0.4661297551194685}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.932259510238937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -7.727653984561856, "y": -10.960848801630462, "z": 0.46749634369601883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9349926873920377}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -7.730414937912585, "y": -10.860911294976104, "z": 0.46885120716841455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9377024143368291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -7.732932556629898, "y": -10.760968701878603, "z": 0.4701945100985116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9403890201970232}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -7.735194481545061, "y": -10.66101867592107, "z": 0.47152641346472846}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9430528269294569}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -7.737188212620946, "y": -10.561064209765386, "z": 0.4728470747700862}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9456941495401724}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -7.7389013331194025, "y": -10.461103321267725, "z": 0.47415664814609393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9483132962921879}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -7.740321256659063, "y": -10.361139006634954, "z": 0.47545528445267377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9509105689053475}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -7.741435347691406, "y": -10.26116972040809, "z": 0.4767431313743081}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9534862627486163}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -7.742230926957793, "y": -10.161198447899588, "z": 0.4780203335125826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9560406670251652}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -7.7426953957684646, "y": -10.061224082898544, "z": 0.47928703247528853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9585740649505771}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -7.742816189047803, "y": -9.961249659295987, "z": 0.4805433669622396}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9610867339244792}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -7.742580843611151, "y": -9.861274537807253, "z": 0.48178947284794976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9635789456958995}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -7.741976903863878, "y": -9.761301795359223, "z": 0.4830254832613124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9660509665226248}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -7.740991898290345, "y": -9.661331328917479, "z": 0.4842515286624112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9685030573248224}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -7.739613389882378, "y": -9.56136619281603, "z": 0.48546773691658945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9709354738331789}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -7.737828930580358, "y": -9.461406883348795, "z": 0.4866742333658948}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9733484667317897}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -7.735626124161892, "y": -9.361456428614803, "z": 0.4878711408980141}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9757422817960282}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -7.73299255738057, "y": -9.261515974778007, "z": 0.4890585800128039}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9781171600256078}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -7.7299158728121995, "y": -9.161588507460417, "z": 0.4902366688865188}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9804733377730376}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -7.726383701787418, "y": -9.061675881066064, "z": 0.4914055234338347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9828110468676694}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -7.7223837225251675, "y": -8.961781007219992, "z": 0.4925652573677578}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9851305147355156}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -7.717903625839856, "y": -8.861906510230297, "z": 0.49095509729690934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9819101945938187}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -7.712931122664197, "y": -8.762055205718227, "z": 0.4884088625785919}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9768177251571838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -7.707453979056523, "y": -8.662230550372938, "z": 0.48588589743926386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9717717948785277}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -7.701459932953616, "y": -8.562435234918606, "z": 0.48338558704442514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9667711740888503}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -7.6949368435269365, "y": -8.462673601638992, "z": 0.48090741075598303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9618148215119661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -7.687872470397188, "y": -8.362948196581938, "z": 0.4784507537260095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.956901507452019}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -7.68025479083838, "y": -8.263264326477252, "z": 0.4760151271941836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9520302543883672}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -7.672071574672239, "y": -8.163624351494228, "z": 0.4735999543171302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9471999086342604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -7.663310930814919, "y": -8.064034582833408, "z": 0.4712047308776574}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9424094617553148}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -7.653960631698663, "y": -7.9644971876058035, "z": 0.46882882880982646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9376576576196529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -7.644008959918578, "y": -7.865019526805622, "z": 0.46647179221970814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9329435844394163}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -7.633443683271835, "y": -7.7656035653490525, "z": 0.46413307580217267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9282661516043453}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -7.622253275747096, "y": -7.666257853645261, "z": 0.46181218584632333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9236243716926467}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -7.61042547675305, "y": -7.566984041820396, "z": 0.45950843171686145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9190168634337229}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -7.597949011684525, "y": -7.467791820110605, "z": 0.45722150387828225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9144430077565645}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -7.5848115735796116, "y": -7.368682631609307, "z": 0.45495119615073304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9099023923014661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -7.571002039701256, "y": -7.269667339824198, "z": 0.45269750617734694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9053950123546939}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -7.556507879351598, "y": -7.170747231103494, "z": 0.4504609071881739}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9009218143763478}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -7.541317979257812, "y": -7.071934569014322, "z": 0.44824104090922706}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8964820818184541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -7.52541950376871, "y": -6.973230270592652, "z": 0.4460374348815418}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8920748697630836}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -7.5088016393309935, "y": -6.874647931436693, "z": 0.4438496232814248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8876992465628496}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -7.491451475022778, "y": -6.776188244129094, "z": 0.441676922383492}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.883353844766984}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -7.473358613262328, "y": -6.677866079785862, "z": 0.43951902986379754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8790380597275951}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -7.454510074260342, "y": -6.57968199895758, "z": 0.43737559103029405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8747511820605881}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -7.434895838173074, "y": -6.481652250081564, "z": 0.4352462354288111}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8704924708576222}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -7.414502765771905, "y": -6.3837771118115745, "z": 0.43313040307388784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8662608061477757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -7.393321320353624, "y": -6.286074243514863, "z": 0.4310277744138807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8620555488277614}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -7.371338230377381, "y": -6.1885437144577455, "z": 0.42893791381274327}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8578758276254865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -7.34854445503263, "y": -6.0912045854765715, "z": 0.4268605006463637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8537210012927274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -7.324926563126641, "y": -5.994056779661429, "z": 0.4247950571880953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8495901143761906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -7.300476072073665, "y": -5.897120774167843, "z": 0.422741308634845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.84548261726969}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -7.275179371446219, "y": -5.8003963457423104, "z": 0.42069886083004027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8413977216600805}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -7.249028557468508, "y": -5.7039053708419605, "z": 0.4186674075638991}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8373348151277982}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -7.2220098373283435, "y": -5.607647570532632, "z": 0.41664647101342994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8332929420268599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -7.194115957074265, "y": -5.511646189902799, "z": 0.4146358533757922}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8292717067515843}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -7.165332934635061, "y": -5.415900967496647, "z": 0.4126352993534898}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8252705987069796}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -7.135654151579981, "y": -5.320436527641571, "z": 0.41064445674151884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8212889134830377}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -7.105065433255345, "y": -5.225252677856011, "z": 0.4086626789915168}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8173253579830336}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -7.073560922027811, "y": -5.130375247371486, "z": 0.40668988863284755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8133797772656951}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -7.0411263088412595, "y": -5.035804314258006, "z": 0.4047261109598201}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8094522219196402}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -7.007756354110128, "y": -4.941566972118893, "z": 0.4027711784037019}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8055423568074038}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -6.97343651287721, "y": -4.847663659848385, "z": 0.40082480414290955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8016496082858191}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -6.9381622511540355, "y": -4.75412256307324, "z": 0.39888537054135614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7977707410827123}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -6.9019192804349325, "y": -4.6609444502571264, "z": 0.3969495070556129}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7938990141112258}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -6.864704866791008, "y": -4.568158369961177, "z": 0.39501613560611387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7900322712122277}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -6.826505456177015, "y": -4.475765165201536, "z": 0.3930829886838345}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.786165977367669}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -6.787319664357185, "y": -4.3837944307873435, "z": 0.39114979130469524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7822995826093905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -6.747134317874183, "y": -4.292247593696907, "z": 0.3892162807375292}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7784325614750583}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -6.705948611790901, "y": -4.201154709052709, "z": 0.38728230087981075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7745646017596215}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -6.663749549733829, "y": -4.110518549431322, "z": 0.38534776242864105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7706955248572821}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -6.620536810220268, "y": -4.020369628876693, "z": 0.38341294060119663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7668258812023933}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -6.576297370906601, "y": -3.9307119397669235, "z": 0.38147846739344077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7629569347868815}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -6.531031135816358, "y": -3.84157653157458, "z": 0.3795444281161587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7590888562323174}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -6.484725116626108, "y": -3.752968942885193, "z": 0.3776111366472664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7552222732945328}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -6.437379248081029, "y": -3.664920124264032, "z": 0.3756791479133958}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7513582958267916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -6.388981015412046, "y": -3.577438027950976, "z": 0.37374975589792153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7474995117958431}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -6.3395303679142545, "y": -3.4905541864109995, "z": 0.3718233696175916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7436467392351832}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -6.289014900385976, "y": -3.40427846017031, "z": 0.36990036981787194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7398007396357439}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -6.237433371618464, "y": -3.318640471080842, "z": 0.3679828086157727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7359656172315454}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -6.184774838888229, "y": -3.2336547699285516, "z": 0.36607535462504687}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7321507092500937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -6.131039663761262, "y": -3.1493563072512374, "z": 0.3641775884644526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7283551769289052}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -6.076214213608676, "y": -3.065757454107403, "z": 0.36228513868323603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7245702773664721}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -6.020290641425273, "y": -2.9828785837918437, "z": 0.36040528086619755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7208105617323951}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -5.963265986827932, "y": -2.900751424522702, "z": 0.3585594010030333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7171188020060666}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -5.905149951728948, "y": -2.819433037685142, "z": 0.3567345734789108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7134691469578216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -5.8459140598559, "y": -2.7389190074517704, "z": 0.3549007749789166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7098015499578332}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -5.785536334911774, "y": -2.6591990954435265, "z": 0.3530581931069795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.706116386213959}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -5.724039155088678, "y": -2.5803386444321426, "z": 0.3513179436751303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7026358873502606}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -5.661430214506576, "y": -2.502418687045788, "z": 0.34972206601962696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6994441320392539}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -5.597663157866416, "y": -2.425465967408405, "z": 0.3482324631633118}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6964649263266236}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -5.5327321247509005, "y": -2.3495376595032127, "z": 0.34674223114048464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6934844622809693}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -5.466609769308149, "y": -2.2745438611092816, "z": 0.3450677825617826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6901355651235652}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -5.399319738430752, "y": -2.200360832277827, "z": 0.3429421732229517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6858843464459033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -5.331099703858452, "y": -2.1271986274871333, "z": 0.3407294700371558}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6814589400743116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -5.262002592679106, "y": -2.055188758346305, "z": 0.33934459273573664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6786891854714733}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -5.191673933365168, "y": -1.9843153960416176, "z": 0.3392135166445126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6784270332890252}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -5.11986038526772, "y": -1.9148119236594832, "z": 0.33908238988436284}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6781647797687257}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -5.046599189109092, "y": -1.8465812431825572, "z": 0.33939215029732894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6787843005946579}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -4.972253919545255, "y": -1.779432165236585, "z": 0.34108225062191}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.68216450124382}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -4.89722770099392, "y": -1.7134616841316006, "z": 0.34333286242967564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6866657248593513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -4.821396255916614, "y": -1.648479804189755, "z": 0.34568664746421446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6913732949284289}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -4.744673645024901, "y": -1.584388277430656, "z": 0.34803106708934667}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6960621341786933}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -4.66713608961925, "y": -1.521267369538056, "z": 0.3502520571363249}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7005041142726498}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -4.588819417921829, "y": -1.4591183670296624, "z": 0.35248383359824526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7049676671964905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -4.50975720620302, "y": -1.3979120906619584, "z": 0.35480517139393036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7096103427878607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -4.429995195329677, "y": -1.3376537832702031, "z": 0.35713278475479293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7142655695095859}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -4.349531390081795, "y": -1.2783283604840447, "z": 0.35942506625905857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7188501325181171}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -4.268385020158283, "y": -1.2199339154280204, "z": 0.3616957283545389}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7233914567090778}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -4.1865765056772, "y": -1.162468028343345, "z": 0.3639498073461022}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7278996146922044}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -4.104126332589266, "y": -1.1059318846973474, "z": 0.36617533574343053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7323506714868611}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -4.021047042257419, "y": -1.0503228890588088, "z": 0.368368744978149}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.736737489956298}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -3.937353961281868, "y": -0.9956383181778133, "z": 0.3705390540532183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7410781081064366}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -3.8530663707896, "y": -0.941877003720551, "z": 0.3726901409896649}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7453802819793298}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -3.7681978823672413, "y": -0.8890349700182569, "z": 0.3748196122372703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7496392244745406}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -3.682767639381683, "y": -0.8371119981744375, "z": 0.37692773736925167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7538554747385033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -3.5967840926599393, "y": -0.7861010876248614, "z": 0.3790165333121149}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7580330666242298}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -3.5102710774791746, "y": -0.7360042777672993, "z": 0.381087341566185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.76217468313237}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -3.423232838862356, "y": -0.6868122549161719, "z": 0.3831405840116459}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7662811680232918}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -3.3356962314739116, "y": -0.6385285905510226, "z": 0.38517715427541}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.77035430855082}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -3.2476607366334114, "y": -0.5911416004126457, "z": 0.38719788288001494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7743957657600299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -3.159157041084185, "y": -0.5446565168640954, "z": 0.38920367175007226}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7784073435001445}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -3.0701798690605036, "y": -0.49905949532015237, "z": 0.3911951953031849}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7823903906063698}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -2.9807636057176228, "y": -0.45435719654819096, "z": 0.3931732532225745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.786346506445149}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -2.8908982543193926, "y": -0.41053385377970897, "z": 0.3951384947440902}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7902769894881804}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -2.8006218746447713, "y": -0.3675973616820814, "z": 0.3970916416232846}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7941832832465692}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -2.709919872598173, "y": -0.3255302710928809, "z": 0.39903338899495133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7980667779899027}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -2.6188338504029187, "y": -0.2843414645760161, "z": 0.4009644055822458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8019288111644916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -2.527344799896147, "y": -0.24401210386475497, "z": 0.4028852229336527}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8057704458673054}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -2.435497592374352, "y": -0.2045518249806791, "z": 0.40479642172939384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8095928434587877}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -2.3432692487395363, "y": -0.16594074046282636, "z": 0.4066986335308424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8133972670616848}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -2.250707478222831, "y": -0.1281888603804702, "z": 0.4085923776447455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.817184755289491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -2.1577858609208453, "y": -0.09127535799485978, "z": 0.41047933046958723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8209586609391745}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -2.0645546493136613, "y": -0.05521015140396076, "z": 0.4123600401813272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8247200803626544}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -1.9709842213073712, "y": -0.019971753473386557, "z": 0.414235558031779}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.828471116063558}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -1.8771270864258884, "y": 0.014430025372923462, "z": 0.41610157303037354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8322031460607471}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -1.7829506277079241, "y": 0.048016988978961235, "z": 0.41794757668007115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8358951533601423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -1.6885093009747765, "y": 0.08077947811265347, "z": 0.4197739513977174}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8395479027954348}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -1.5937677879973562, "y": 0.112739426832319, "z": 0.4215810680223851}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8431621360447702}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -1.4987822061689509, "y": 0.1438875086673285, "z": 0.42336928629990417}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8467385725998083}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -1.4035152103296722, "y": 0.17424550128906777, "z": 0.4251389553416199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8502779106832398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -1.3080232499117197, "y": 0.203804861025815, "z": 0.42689041405903794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8537808281180759}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -1.2122686740189477, "y": 0.23258663328879473, "z": 0.42862399157588527}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8572479831517705}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -1.116306502449022, "y": 0.2605835776892356, "z": 0.43034000761900604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8606800152380121}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -1.0201001583787825, "y": 0.2878156193308923, "z": 0.4320387728894063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8640775457788126}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -0.9237027037700635, "y": 0.3142769035097565, "z": 0.43372058941466574}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8674411788293315}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -0.8270787699452691, "y": 0.3399862653504101, "z": 0.43538575088384845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8707715017676969}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -0.7302793626024923, "y": 0.3649391753504493, "z": 0.4370345429659618}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8740690859319236}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -0.633270421751283, "y": 0.3891534208612338, "z": 0.43866724361294246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8773344872258849}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -0.5361008322794958, "y": 0.4126257272824842, "z": 0.44028412334807815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8805682466961563}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -0.43873791278234664, "y": 0.43537288586391953, "z": 0.44188544554071063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8837708910814213}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -0.3412283898410201, "y": 0.457392801009584, "z": 0.4434714666680116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8869429333360233}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -0.24354100787152705, "y": 0.4787013247535139, "z": 0.445042436564565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.89008487312913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -0.1457203170909555, "y": 0.49929746208988585, "z": 0.44659859866044455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8931971973208891}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -0.047736516019701115, "y": 0.5191961859658045, "z": 0.4481401902084273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8962803804168546}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": 0.05036802239559786, "y": 0.5383975226424036, "z": 0.44966744250094404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8993348850018881}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": 0.14862163152818644, "y": 0.5569156272615834, "z": 0.4511805810773264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9023611621546528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": 0.24698410476183993, "y": 0.5747514689382457, "z": 0.45267982592187644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9053596518437529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": 0.34548230445047007, "y": 0.5919184461580768, "z": 0.454165391653252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.908330783306504}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": 0.44407816989158466, "y": 0.6084183943092778, "z": 0.4556374877056259}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9112749754112518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": 0.5427970972932409, "y": 0.6242640151415382, "z": 0.4570963185020545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.914192637004109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": 0.6416031452365966, "y": 0.6394579364140184, "z": 0.4585420836204597}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9170841672409193}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": 0.7405202544107561, "y": 0.6540122212749343, "z": 0.459974977952605}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.91994995590521}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": 0.839514571475458, "y": 0.6679302190583652, "z": 0.46139519185642625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9227903837128525}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": 0.9386085960537877, "y": 0.6812234100862985, "z": 0.46280291130204976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9256058226040995}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": 1.0377705291230503, "y": 0.6938957978068301, "z": 0.4641983180118188}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9283966360236376}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": 1.1370214451066116, "y": 0.7059583329640577, "z": 0.46558158959462254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9311631791892451}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": 1.2363315647703597, "y": 0.7174156093494496, "z": 0.46695289967481063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9339057993496213}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": 1.335720555040384, "y": 0.728278098842365, "z": 0.4683124180159576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9366248360319152}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": 1.4351606206697547, "y": 0.7385509251304365, "z": 0.46966031063972496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9393206212794499}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": 1.5346700389278032, "y": 0.7482441289867089, "z": 0.470996739940058}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.941993479880116}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": 1.6342229634847383, "y": 0.7573633068301814, "z": 0.4723218647929382}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9446437295858764}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": 1.7338362988677267, "y": 0.7659181136436334, "z": 0.4736358406619015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.947271681323803}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": 1.8334861137692553, "y": 0.7739145650084819, "z": 0.4749388196995193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9498776393990386}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": 1.9331879569959944, "y": 0.7813619729683025, "z": 0.47623095084503086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9524619016900617}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": 2.032919778396192, "y": 0.7882667216899728, "z": 0.4775123799183035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.955024759836607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": 2.132695786557653, "y": 0.79463782058941, "z": 0.4787832497102871}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9575664994205741}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": 2.232495779997124, "y": 0.800481974833669, "z": 0.4800437000701231}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9600874001402462}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": 2.3323326444201165, "y": 0.8058079294938604, "z": 0.4812938679890567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9625877359781134}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": 2.432187993473257, "y": 0.8106226659415524, "z": 0.4825338876812956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9650677753625913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": 2.5320734043761277, "y": 0.8149347005687281, "z": 0.4837638906619488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9675277813238976}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": 2.631972275612295, "y": 0.8187512488016702, "z": 0.48498400582217405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9699680116443481}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": 2.7318948889770955, "y": 0.8220806324500098, "z": 0.48619435950165607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9723887190033121}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": 2.8318263962063805, "y": 0.8249302619236412, "z": 0.48739507555852835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9747901511170567}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": 2.93177580684094, "y": 0.8273082968386402, "z": 0.4885862754368497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9771725508736994}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": 3.031729985642412, "y": 0.8292223048663845, "z": 0.489768078231739}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.979536156463478}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": 3.1316966869177647, "y": 0.830680310658827, "z": 0.49094060075226625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9818812015045325}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": 3.2316644587313164, "y": 0.8316900021015641, "z": 0.49210395758219333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9842079151643867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": 3.3316398098135718, "y": 0.8322592958311761, "z": 0.4932582611386555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.986516522277311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": 3.4316129404862523, "y": 0.8323959680255121, "z": 0.4944036217288659}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9888072434577319}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": 3.5315891506247925, "y": 0.8321078558902655, "z": 0.4955401476049257}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9910802952098514}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": 3.6315602398386635, "y": 0.8314027962812155, "z": 0.4966679450168159}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9933358900336318}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": 3.7315303095068417, "y": 0.8302885717091967, "z": 0.49778711826364413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9955742365272883}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": 3.831492723925349, "y": 0.8287730521811099, "z": 0.49889776974321653}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9977955394864331}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": 3.931450452163583, "y": 0.8268639873457917, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": 4.031398359013238, "y": 0.824569255866995, "z": 0.4995676169646638}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9991352339293276}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": 4.1313382465949635, "y": 0.8218965931220484, "z": 0.4965296959317831}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9930593918635662}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": 4.231266473425365, "y": 0.8188538633579968, "z": 0.4934134472014408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9868268944028816}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": 4.331183771860688, "y": 0.8154488200926295, "z": 0.49021789474699706}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9804357894939941}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": 4.431087817549623, "y": 0.8116892931004014, "z": 0.4869421703169525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.973884340633905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": 4.530978633864876, "y": 0.8075829802757779, "z": 0.4835856355807242}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9671712711614484}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": 4.630855276817891, "y": 0.8031376690587849, "z": 0.4801471396610548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9602942793221096}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": 4.730715652263337, "y": 0.7983613923623507, "z": 0.4766243754442886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9532487508885772}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": 4.830561810051177, "y": 0.7932614208082377, "z": 0.47301767133539757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9460353426707951}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": 4.930388435155505, "y": 0.7878437354381352, "z": 0.46933664640578826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9386732928115765}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": 5.030200364846757, "y": 0.7821122256824575, "z": 0.46558291603000374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9311658320600075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": 5.129991037129601, "y": 0.7760678271866693, "z": 0.4617781551790264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9235563103580527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": 5.229765939144315, "y": 0.7697097435706708, "z": 0.4579217765377371}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9158435530754742}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": 5.329515625856992, "y": 0.7630370118882105, "z": 0.45401927491381927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9080385498276385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": 5.429247786613547, "y": 0.7560474550124263, "z": 0.4500689813317613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9001379626635226}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": 5.52895238645201, "y": 0.7487404954232083, "z": 0.4460669544046302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8921339088092604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": 5.628633294805179, "y": 0.7411173647570077, "z": 0.44200583090982276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8840116618196455}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": 5.728294888912825, "y": 0.7331870240061569, "z": 0.43783618390642726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8756723678128545}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": 5.827923734448694, "y": 0.7249546964005469, "z": 0.4336286004140203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8672572008280406}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": 5.927538776401504, "y": 0.7164035466136996, "z": 0.4294431264001639}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8588862528003278}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": 6.0271115159838144, "y": 0.707513932621656, "z": 0.4253343293451494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8506686586902988}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": 6.126662943078746, "y": 0.6982520905274218, "z": 0.42129955512231493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8425991102446299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": 6.226164375355412, "y": 0.6885870929838642, "z": 0.4173347596570099}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8346695193140198}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": 6.325632733099412, "y": 0.6784839715099615, "z": 0.41343759920455914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8268751984091183}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": 6.425042258044326, "y": 0.6679120160800959, "z": 0.4096063379712754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8192126759425508}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": 6.524406604949056, "y": 0.656836322266222, "z": 0.40583867463372714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8116773492674543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": 6.623700676447961, "y": 0.6452261922318699, "z": 0.4021324060521617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8042648121043234}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": 6.722935316338874, "y": 0.6330468299908988, "z": 0.3984853860306885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.796970772061377}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": 6.8220862397613296, "y": 0.6202676332464282, "z": 0.3948956817079967}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7897913634159934}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": 6.921160980395943, "y": 0.6068539735506123, "z": 0.3913612449966704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7827224899933408}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": 7.0201363092347355, "y": 0.5927752622494894, "z": 0.38788019417122077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7757603883424415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": 7.119016091649541, "y": 0.5779971346381213, "z": 0.38445059494896977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7689011898979395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": 7.2177781825490275, "y": 0.5624889840168978, "z": 0.3810707032968089}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7621414065936178}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": 7.31642236927618, "y": 0.5462168199904899, "z": 0.3777386890664347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7554773781328694}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": 7.414927718371368, "y": 0.5291499405737472, "z": 0.37445289765605666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7489057953121133}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": 7.5132896801437985, "y": 0.5112548491050031, "z": 0.3712115783947303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7424231567894606}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": 7.6114884888275665, "y": 0.49250069863399254, "z": 0.36801313580369616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7360262716073923}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": 7.709514918194454, "y": 0.4728546580056515, "z": 0.3648559454324498}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7297118908648996}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": 7.807350457505153, "y": 0.4522856327420531, "z": 0.3617387197618688}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7234774395237376}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": 7.904980798086755, "y": 0.43076160242165656, "z": 0.35865988578852714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7173197715770543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": 8.002388662473384, "y": 0.4082511137047406, "z": 0.35561783249149004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7112356649829801}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": 8.099554716212644, "y": 0.38472319088380624, "z": 0.3526110639292391}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7052221278584782}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": 8.196462620398378, "y": 0.36014606828151063, "z": 0.34963840753227665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6992768150645533}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": 8.293087590403784, "y": 0.3344900156102977, "z": 0.34669856196514953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6933971239302991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": 8.389414415131418, "y": 0.30772263784634346, "z": 0.34379136038358593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6875827207671719}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": 8.485412341019565, "y": 0.2798155140048957, "z": 0.3409154330076755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.681830866015351}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": 8.581067076866082, "y": 0.2507354684444886, "z": 0.33806833171676093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6761366634335219}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": 8.676342512836534, "y": 0.2204560509728007, "z": 0.3352486391358822}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6704972782717644}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": 8.771224803822465, "y": 0.1889440118961625, "z": 0.33245250738572113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6649050147714423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": 8.865672071738704, "y": 0.1561757719781702, "z": 0.32967877201739665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6593575440347933}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": 8.959671627618405, "y": 0.12211785544049122, "z": 0.3269256591125617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6538513182251234}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": 9.053175038689576, "y": 0.08674958738795112, "z": 0.32419200098420947}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6483840019684189}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": 9.146170451372623, "y": 0.050036622915524374, "z": 0.32147702079715507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6429540415943101}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": 9.238603548073861, "y": 0.011960927373172094, "z": 0.31877953370329354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6375590674065871}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": 9.330462008013045, "y": -0.027512592238096503, "z": 0.31609814126693053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6321962825338611}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": 9.421685722937468, "y": -0.0683988670865953, "z": 0.31343180146655664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6268636029331133}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": 9.512261897854875, "y": -0.11073374439465793, "z": 0.3107795774895386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6215591549790772}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": 9.602124373971412, "y": -0.15452868738755088, "z": 0.30814040867651843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6162808173530369}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": 9.691259484241154, "y": -0.19982037133489955, "z": 0.3055133480325117}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6110266960650234}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": 9.7795953243682, "y": -0.24661652640638232, "z": 0.3028973990636126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6057947981272253}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": 9.867116545964993, "y": -0.29495439329572515, "z": 0.30029171215038475}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6005834243007695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": 9.953745674991652, "y": -0.34483766014460393, "z": 0.2976953246584811}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5953906493169622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": 10.039465081848924, "y": -0.39630393878415543, "z": 0.29510751983116024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5902150396623205}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": 10.124192016696314, "y": -0.4493526339672534, "z": 0.2925273720057219}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5850547440114438}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": 10.207905770701506, "y": -0.5040213805294557, "z": 0.28995444238913237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5799088847782647}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": 10.290518431748438, "y": -0.5603049893406625, "z": 0.2873878957720244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5747757915440488}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": 10.372005546055151, "y": -0.6182408111831292, "z": 0.2848273054000331}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5696546108000662}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": 10.452274254560306, "y": -0.6778187325238038, "z": 0.28227187796050407}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5645437559210081}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": 10.531295486570924, "y": -0.7390752087536666, "z": 0.2797218344898305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.559443668979661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": 10.608971810678936, "y": -0.801995172949961, "z": 0.27717647847201776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5543529569440355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": 10.68526862757533, "y": -0.8666136379308731, "z": 0.2746364178327561}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5492728356655122}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": 10.760083409421535, "y": -0.9329097659114898, "z": 0.27210127025182296}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5442025405036459}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": 10.83337576634074, "y": -1.0009169121666455, "z": 0.2695715711540504}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5391431423081008}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": 10.905038246533769, "y": -1.070607990640039, "z": 0.2670468638477758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5340937276955516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": 10.975023730830143, "y": -1.1420133662925716, "z": 0.2645268030283503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5290536060567006}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": 11.043220525097365, "y": -1.2150991059283507, "z": 0.26201119370138143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5240223874027629}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": 11.109574449140561, "y": -1.2898913071715254, "z": 0.2594975861047641}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5189951722095282}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": 11.17396946503258, "y": -1.3663471920456385, "z": 0.25698614477967346}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5139722895593469}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": 11.236345017308684, "y": -1.444488259814711, "z": 0.2544777847641644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5089555695283288}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": 11.296579718588978, "y": -1.5242621507868566, "z": 0.2519729164577992}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5039458329155984}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": 11.354605185705426, "y": -1.60568492702042, "z": 0.24947136917346288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49894273834692576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": 11.410295992688074, "y": -1.6886946560282925, "z": 0.24697402400035082}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49394804800070163}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": 11.463574335490716, "y": -1.7732989388868214, "z": 0.24448752981152155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4889750596230431}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": 11.514309662299555, "y": -1.8594271811329353, "z": 0.2420129322062174}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4840258644124348}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": 11.56241375256312, "y": -1.9470779861053924, "z": 0.2395461977441584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4790923954883168}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": 11.607751456007506, "y": -2.0361638210201067, "z": 0.23709067460168304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4741813492033661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": 11.650228055120632, "y": -2.126674011020941, "z": 0.2346499783124055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.469299956624811}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": 11.689704391679252, "y": -2.2185077445942443, "z": 0.23222828665612247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46445657331224494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": 11.726072521464944, "y": -2.311637964866031, "z": 0.22985434893289725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4597086978657945}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": 11.759183165863066, "y": -2.4059563186123385, "z": 0.22753540950919307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45507081901838614}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": 11.788908094988107, "y": -2.5014166254289854, "z": 0.22528589511586697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45057179023173394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": 11.815088741651735, "y": -2.597885997968444, "z": 0.2231156945215919}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4462313890431838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": 11.837588651138564, "y": -2.6953041952243124, "z": 0.2210183903721707}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4420367807443414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": 11.856250489054549, "y": -2.7935019148136995, "z": 0.219011818148797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.438023636297594}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": 11.870933845152097, "y": -2.8923995746878326, "z": 0.21713609899558642}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43427219799117284}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": 11.881470840495767, "y": -2.9917982714449516, "z": 0.21540601754169478}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43081203508338956}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": 11.887709049562877, "y": -3.0915897290586707, "z": 0.21380982208910193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42761964417820386}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": 11.889497445781092, "y": -3.191528142932233, "z": 0.21239011902363258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42478023804726517}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": 11.886682882181491, "y": -3.2914886454927568, "z": 0.2112317829094996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4224635658189992}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": 11.879099139614734, "y": -3.3911425949344234, "z": 0.21037692330634722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42075384661269444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": 11.866572042555118, "y": -3.490370161198683, "z": 0.20981055035895033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41962110071790065}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": 11.848989830956915, "y": -3.588721521429481, "z": 0.20955845732724632}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41911691465449263}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": 11.826222085754376, "y": -3.686076691667521, "z": 0.2094610407699871}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4189220815399742}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": 11.798278474051381, "y": -3.782010124137822, "z": 0.20938013382443502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41876026764887003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": 11.765218180596959, "y": -3.876344820563342, "z": 0.20929919560340038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41859839120680076}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": 11.727293178682949, "y": -3.9688371369582023, "z": 0.2096052924465914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4192105848931828}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": 11.684774857497242, "y": -4.059302904253275, "z": 0.21025137963418375}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4205027592683675}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": 11.637940321663303, "y": -4.147617001109384, "z": 0.21125116455666992}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42250232911333985}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": 11.58707008928239, "y": -4.2336579181629235, "z": 0.2125493094566788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4250986189133576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": 11.532413549814084, "y": -4.317365045410905, "z": 0.21410958746184153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42821917492368305}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": 11.474238113004631, "y": -4.398647539166481, "z": 0.2158921336366861}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4317842672733722}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": 11.412756855119003, "y": -4.477484066467296, "z": 0.21785274111131106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4357054822226221}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": 11.348214939579437, "y": -4.553808826829509, "z": 0.21996465474220891}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43992930948441783}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": 11.280797668905217, "y": -4.627631435984174, "z": 0.22221216700561608}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44442433401123216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": 11.210727355142328, "y": -4.698916774852649, "z": 0.22457641283037075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4491528256607415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": 11.138163685411177, "y": -4.76769163727484, "z": 0.22703839864071834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4540767972814367}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": 11.063309887313446, "y": -4.8339390044807615, "z": 0.22958712637856607}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45917425275713214}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": 10.986304378934726, "y": -4.897700615066346, "z": 0.23221460316961234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4644292063392247}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": 10.907327884342402, "y": -4.958976514443989, "z": 0.2349059746058679}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4698119492117358}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": 10.826495471616767, "y": -5.017813579403939, "z": 0.23764656371624218}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47529312743248436}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": 10.743969336056162, "y": -5.074221654994329, "z": 0.24043207043798012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48086414087596024}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": 10.659847350095722, "y": -5.128254231712455, "z": 0.24325794386044414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4865158877208883}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": 10.574277475992135, "y": -5.179929562082952, "z": 0.24611953555650212}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49223907111300425}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": 10.487339746868786, "y": -5.229306353722356, "z": 0.2490135522254246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4980271044508492}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": 10.399169528140453, "y": -5.276409056862562, "z": 0.2519370500210946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5038741000421892}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": 10.309829962631017, "y": -5.3212997935750375, "z": 0.25488693090589043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5097738618117809}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": 10.219448606808415, "y": -5.364006034500499, "z": 0.2578619168850996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5157238337701991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": 10.128071110757555, "y": -5.404593768725533, "z": 0.2608612466272319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5217224932544638}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": 10.035819477442345, "y": -5.443092824087715, "z": 0.2638842332407954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5277684664815908}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": 9.942722753198641, "y": -5.4795716624266, "z": 0.2669303689021737}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5338607378043474}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": 9.848899043496736, "y": -5.514061712644587, "z": 0.26999961370152253}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5399992274030451}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": 9.754362157509895, "y": -5.546632907325355, "z": 0.2730923880454498}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5461847760908995}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": 9.659226203518331, "y": -5.577318575063295, "z": 0.2762091768695478}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5524183537390956}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": 9.563492794995256, "y": -5.606188686210993, "z": 0.2793509439852976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5587018879705952}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": 9.467270328217515, "y": -5.63327904981231, "z": 0.28251851954672114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5650370390934423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": 9.37055329820586, "y": -5.6586580901197525, "z": 0.28571347667856434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5714269533571287}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": 9.273439925707637, "y": -5.682365133464457, "z": 0.2889367485877603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5778734971755206}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": 9.175923477436289, "y": -5.704465695246064, "z": 0.29219032911050624}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5843806582210125}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": 9.078087111823482, "y": -5.725003291305772, "z": 0.2954755580444523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5909511160889046}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": 8.979930265509077, "y": -5.74403951881125, "z": 0.29879476104050207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5975895220810041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": 8.881514676647932, "y": -5.761622519102483, "z": 0.30214936360716815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6042987272143363}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": 8.782854215371863, "y": -5.777809382337337, "z": 0.30554215408389473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6110843081677895}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": 8.683981761886272, "y": -5.792653417852577, "z": 0.3089738980128078}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6179477960256156}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": 8.584933194266346, "y": -5.806208292386296, "z": 0.3123401152114443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6246802304228886}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": 8.485707161901843, "y": -5.818532643285667, "z": 0.31564339992600177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6312867998520035}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": 8.386367603853863, "y": -5.829677538642031, "z": 0.3188861815511399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6377723631022798}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": 8.286874062281779, "y": -5.8397059222136365, "z": 0.3220707389349393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6441414778698786}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": 8.187324006503774, "y": -5.848666654673657, "z": 0.3251992131262288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6503984262524576}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": 8.087633701794644, "y": -5.856625521774897, "z": 0.3282736187667031}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6565472375334062}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": 7.987937753392578, "y": -5.863630526760142, "z": 0.331295854299883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.662591708599766}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": 7.888107806111988, "y": -5.869749266337526, "z": 0.33426771114373105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6685354222874621}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": 7.788316096391408, "y": -5.875030411016081, "z": 0.33719088195267927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6743817639053585}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": 7.688391492508441, "y": -5.879542326452967, "z": 0.3400669680771836}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6801339361543672}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": 7.588541515511205, "y": -5.883335687663437, "z": 0.3428974863140633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6857949726281266}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": 7.488556662646362, "y": -5.8864788370315875, "z": 0.34568387502833986}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6913677500566797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": 7.388674775300585, "y": -5.889025529815153, "z": 0.3484274997166583}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6968549994333166}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": 7.288654931099321, "y": -5.891043717217177, "z": 0.3511296580733125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.702259316146625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 3, "action": 0, "pose": {"position": {"x": 7.188758013889146, "y": -5.892590857834376, "z": 0.35379158461217547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7075831692243509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 3, "action": 0, "pose": {"position": {"x": 7.0887206813994, "y": -5.893734534376925, "z": 0.3564144548912118}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7128289097824236}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 3, "action": 0, "pose": {"position": {"x": 6.988817940036995, "y": -5.894536097697017, "z": 0.35899938938055626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7179987787611125}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 3, "action": 0, "pose": {"position": {"x": 6.888774334726652, "y": -5.895063198257492, "z": 0.3615474570102446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7230949140204892}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 3, "action": 0, "pose": {"position": {"x": 6.7888692089197695, "y": -5.895380860845128, "z": 0.3640596784294403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7281193568588806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 3, "action": 0, "pose": {"position": {"x": 6.688825831964675, "y": -5.89555751906711, "z": 0.36653702900532315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7330740580106463}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 3, "action": 0, "pose": {"position": {"x": 6.588918083055706, "y": -5.895661366412141, "z": 0.3689804415866183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7379608831732366}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 3, "action": 0, "pose": {"position": {"x": 6.488878486836806, "y": -5.895762471471205, "z": 0.3713908090539569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7427816181079138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 3, "action": 0, "pose": {"position": {"x": 6.388966458945167, "y": -5.895931548661812, "z": 0.3689812422462918}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7379624844925836}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 3, "action": 0, "pose": {"position": {"x": 6.288933256606098, "y": -5.896241110615968, "z": 0.3631635831091106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7263271662182212}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 3, "action": 0, "pose": {"position": {"x": 6.189016337055859, "y": -5.896763755813441, "z": 0.3574966317791403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7149932635582806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 3, "action": 0, "pose": {"position": {"x": 6.088993505129284, "y": -5.897575048575738, "z": 0.35197790161709}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.70395580323418}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 3, "action": 0, "pose": {"position": {"x": 5.989074791412692, "y": -5.898748971550367, "z": 0.3466013467552857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6932026935105714}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 3, "action": 0, "pose": {"position": {"x": 5.889070286536454, "y": -5.900364427958846, "z": 0.34136453041223647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6827290608244729}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 3, "action": 0, "pose": {"position": {"x": 5.789159474332323, "y": -5.902496499167858, "z": 0.3362616626510507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6725233253021013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 3, "action": 0, "pose": {"position": {"x": 5.689188186331424, "y": -5.905227336946343, "z": 0.33129024051636863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6625804810327373}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 3, "action": 0, "pose": {"position": {"x": 5.589304651186402, "y": -5.908633064463712, "z": 0.3264447055956193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6528894111912386}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 3, "action": 0, "pose": {"position": {"x": 5.48939162855859, "y": -5.912798623351406, "z": 0.32172240979744515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6434448195948903}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 3, "action": 0, "pose": {"position": {"x": 5.38956777342875, "y": -5.917801300167606, "z": 0.31711802037212256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6342360407442451}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 3, "action": 0, "pose": {"position": {"x": 5.289751835082226, "y": -5.923728076369741, "z": 0.3126286699930543}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6252573399861086}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 3, "action": 0, "pose": {"position": {"x": 5.19003640296873, "y": -5.930657608072795, "z": 0.30824920794129507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6164984158825901}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 3, "action": 0, "pose": {"position": {"x": 5.090373657186464, "y": -5.9386779717717735, "z": 0.3039765435894622}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6079530871789244}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 3, "action": 0, "pose": {"position": {"x": 4.990835921282124, "y": -5.94786928170511, "z": 0.29980590796240286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5996118159248057}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 3, "action": 0, "pose": {"position": {"x": 4.891404398890201, "y": -5.958319829675837, "z": 0.29573402197175286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5914680439435057}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 3, "action": 0, "pose": {"position": {"x": 4.7921359105959995, "y": -5.970111350315581, "z": 0.2917553582154779}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5835107164309558}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 3, "action": 0, "pose": {"position": {"x": 4.693037543791408, "y": -5.9833310569525455, "z": 0.2878659216813506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5757318433627012}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 3, "action": 0, "pose": {"position": {"x": 4.594160178297464, "y": -5.9980611114911895, "z": 0.28406209599873655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5681241919974731}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 3, "action": 0, "pose": {"position": {"x": 4.495529259232355, "y": -6.014387605438187, "z": 0.28034016699609365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5606803339921873}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 3, "action": 0, "pose": {"position": {"x": 4.397195729848887, "y": -6.032393024249848, "z": 0.27669573581130547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5533914716226109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 3, "action": 0, "pose": {"position": {"x": 4.299197326504932, "y": -6.052162245139355, "z": 0.27312523135579053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5462504627115811}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 3, "action": 0, "pose": {"position": {"x": 4.201592501628876, "y": -6.073776382535529, "z": 0.2696244067432843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5392488134865686}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 3, "action": 0, "pose": {"position": {"x": 4.104430472585024, "y": -6.09731846336601, "z": 0.2661896546992291}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5323793093984582}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 3, "action": 0, "pose": {"position": {"x": 4.007781680838099, "y": -6.122866501155225, "z": 0.26281662418923973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5256332483784795}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 3, "action": 0, "pose": {"position": {"x": 3.911701993879619, "y": -6.150502037105035, "z": 0.2595014464712356}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5190028929424712}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 3, "action": 0, "pose": {"position": {"x": 3.8162791886286547, "y": -6.180297344074201, "z": 0.25624054158808146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5124810831761629}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 3, "action": 0, "pose": {"position": {"x": 3.7215730783190346, "y": -6.212333100849885, "z": 0.25303075208414033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5060615041682807}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 3, "action": 0, "pose": {"position": {"x": 3.6276922411285843, "y": -6.246673592903195, "z": 0.24986673934359122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49973347868718243}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 3, "action": 0, "pose": {"position": {"x": 3.5347009239335017, "y": -6.283397984986491, "z": 0.2467452619481525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.493490523896305}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 3, "action": 0, "pose": {"position": {"x": 3.4427286427898505, "y": -6.322559478987971, "z": 0.2436560401794428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4873120803588856}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 3, "action": 0, "pose": {"position": {"x": 3.351845442060533, "y": -6.364233102157612, "z": 0.24059469743314127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48118939486628254}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 3, "action": 0, "pose": {"position": {"x": 3.262200109927994, "y": -6.408457108622917, "z": 0.23755310569617222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47510621139234444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 3, "action": 0, "pose": {"position": {"x": 3.173869386919806, "y": -6.455302169892435, "z": 0.2345277256370722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4690554512741444}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 3, "action": 0, "pose": {"position": {"x": 3.087022492537081, "y": -6.504790171333244, "z": 0.2315151733235735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.463030346647147}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 3, "action": 0, "pose": {"position": {"x": 3.0017439119842653, "y": -6.556989394076978, "z": 0.22851304407787545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4570260881557509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 3, "action": 0, "pose": {"position": {"x": 2.9182246586763734, "y": -6.6119042693637855, "z": 0.22551750814686408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45103501629372816}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 3, "action": 0, "pose": {"position": {"x": 2.8365619170366103, "y": -6.66959817142083, "z": 0.22252743922885712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44505487845771424}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 3, "action": 0, "pose": {"position": {"x": 2.756965683289402, "y": -6.7300564944381875, "z": 0.21953346307038496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4390669261407699}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 3, "action": 0, "pose": {"position": {"x": 2.6795482269822823, "y": -6.793333391629265, "z": 0.21653327082031554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4330665416406311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 3, "action": 0, "pose": {"position": {"x": 2.604533132068061, "y": -6.8593945102203655, "z": 0.2135294379572653}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4270588759145306}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 3, "action": 0, "pose": {"position": {"x": 2.532064443507176, "y": -6.928273738348926, "z": 0.21052337705363666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4210467541072733}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 3, "action": 0, "pose": {"position": {"x": 2.4623724475657247, "y": -6.999924826761951, "z": 0.20748532321423108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41497064642846215}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 3, "action": 0, "pose": {"position": {"x": 2.395617695486451, "y": -7.0743577577568795, "z": 0.20441188387357798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40882376774715595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 3, "action": 0, "pose": {"position": {"x": 2.332037494755683, "y": -7.151504372118499, "z": 0.20136325091187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40272650182374}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 3, "action": 0, "pose": {"position": {"x": 2.2718664770542847, "y": -7.231327052663063, "z": 0.19834745240027737}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39669490480055475}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 3, "action": 0, "pose": {"position": {"x": 2.2153622539822204, "y": -7.313753995265469, "z": 0.19528714036972838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39057428073945677}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 3, "action": 0, "pose": {"position": {"x": 2.162715545656261, "y": -7.3987470860158595, "z": 0.19215669059081877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38431338118163755}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 3, "action": 0, "pose": {"position": {"x": 2.1142291614765436, "y": -7.4861119404627345, "z": 0.18916971954991812}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37833943909983625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 3, "action": 0, "pose": {"position": {"x": 2.0701227241500675, "y": -7.575993099207372, "z": 0.18623517697567413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37247035395134825}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 3, "action": 0, "pose": {"position": {"x": 2.030751801537681, "y": -7.668164746412563, "z": 0.18327459907014804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3665491981402961}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 3, "action": 0, "pose": {"position": {"x": 1.9965775302584154, "y": -7.761714140007321, "z": 0.18065529042950793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36131058085901585}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 3, "action": 0, "pose": {"position": {"x": 1.9679090512922008, "y": -7.857096458103437, "z": 0.17946295327209322}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35892590654418643}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 3, "action": 0, "pose": {"position": {"x": 1.9454689580310158, "y": -7.954881043979877, "z": 0.17835372799566518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35670745599133036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 3, "action": 0, "pose": {"position": {"x": 1.9293425854303463, "y": -8.054099508737698, "z": 0.1768303118151935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.353660623630387}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 3, "action": 0, "pose": {"position": {"x": 1.918834303688322, "y": -8.15348863521763, "z": 0.17372397183929036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34744794367858073}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 3, "action": 0, "pose": {"position": {"x": 1.9144409905056634, "y": -8.253052864666358, "z": 0.1736568687833759}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3473137375667518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 3, "action": 0, "pose": {"position": {"x": 1.9176449256603232, "y": -8.352287085734641, "z": 0.17358973978802644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3471794795760529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 3, "action": 0, "pose": {"position": {"x": 1.9280454251818624, "y": -8.451932195821895, "z": 0.17458729813873075}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3491745962774615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 3, "action": 0, "pose": {"position": {"x": 1.9439364134063486, "y": -8.550964923477501, "z": 0.178571430170719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.357142860341438}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 3, "action": 0, "pose": {"position": {"x": 1.9649987205700263, "y": -8.64853110949343, "z": 0.18219253774768435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3643850754953687}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 3, "action": 0, "pose": {"position": {"x": 1.992050435754548, "y": -8.744536360513203, "z": 0.18359613835466773}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36719227670933546}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 3, "action": 0, "pose": {"position": {"x": 2.0249993431773916, "y": -8.839051292972224, "z": 0.1852062001549931}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3704124003099862}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 3, "action": 0, "pose": {"position": {"x": 2.0629884360318322, "y": -8.93158162947826, "z": 0.18791741718312377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37583483436624754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 3, "action": 0, "pose": {"position": {"x": 2.1056653387698328, "y": -9.021975251258448, "z": 0.1907061695253787}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3814123390507574}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 3, "action": 0, "pose": {"position": {"x": 2.1528342997731382, "y": -9.110027923346536, "z": 0.19328808852491136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3865761770498227}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 3, "action": 0, "pose": {"position": {"x": 2.2042862513928485, "y": -9.195819954050064, "z": 0.1960489178433591}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3920978356867182}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 3, "action": 0, "pose": {"position": {"x": 2.2595514411414026, "y": -9.279085540940567, "z": 0.199038046969319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.398076093938638}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 3, "action": 0, "pose": {"position": {"x": 2.318436846779221, "y": -9.35992450170433, "z": 0.20212144407459912}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40424288814919823}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 3, "action": 0, "pose": {"position": {"x": 2.3805767383834247, "y": -9.43816852910928, "z": 0.2052781399597507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4105562799195014}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 3, "action": 0, "pose": {"position": {"x": 2.4458349549506893, "y": -9.513974779120195, "z": 0.20854848522273392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41709697044546784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 3, "action": 0, "pose": {"position": {"x": 2.513824493457443, "y": -9.58720115606242, "z": 0.21192638730516694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4238527746103339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 3, "action": 0, "pose": {"position": {"x": 2.5844505692161763, "y": -9.658027752744621, "z": 0.21539997782426293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43079995564852586}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 3, "action": 0, "pose": {"position": {"x": 2.6573548689974453, "y": -9.72635871968251, "z": 0.21896779099315383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43793558198630766}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 3, "action": 0, "pose": {"position": {"x": 2.7324833361294427, "y": -9.792394466127908, "z": 0.22263626611839474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4452725322367895}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 3, "action": 0, "pose": {"position": {"x": 2.8094893245450403, "y": -9.856068436240767, "z": 0.22640594157191593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45281188314383186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 3, "action": 0, "pose": {"position": {"x": 2.8883547894270727, "y": -9.917593072923918, "z": 0.23027932837106932}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46055865674213864}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 3, "action": 0, "pose": {"position": {"x": 2.968750539414481, "y": -9.976929177245314, "z": 0.23426004358948047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46852008717896093}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 3, "action": 0, "pose": {"position": {"x": 3.050689029739368, "y": -10.034295931676047, "z": 0.23835303878817163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47670607757634326}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 3, "action": 0, "pose": {"position": {"x": 3.1338601685225154, "y": -10.089678654415842, "z": 0.24256379785375756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4851275957075151}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 3, "action": 0, "pose": {"position": {"x": 3.218296053035949, "y": -10.143295161396836, "z": 0.2468971038673749}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4937942077347498}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 3, "action": 0, "pose": {"position": {"x": 3.303713200886678, "y": -10.195155756919009, "z": 0.2513601350474362}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5027202700948724}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 3, "action": 0, "pose": {"position": {"x": 3.3901533253714793, "y": -10.245471320272644, "z": 0.25595814887861074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5119162977572215}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 3, "action": 0, "pose": {"position": {"x": 3.477359484872065, "y": -10.29427301184566, "z": 0.26052365746628714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5210473149325743}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 3, "action": 0, "pose": {"position": {"x": 3.565379393492599, "y": -10.34176439995614, "z": 0.264967539867041}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.529935079734082}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 3, "action": 0, "pose": {"position": {"x": 3.6539816072197717, "y": -10.387993751706658, "z": 0.2692968866750892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5385937733501784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 3, "action": 0, "pose": {"position": {"x": 3.7432144535383283, "y": -10.433156822999306, "z": 0.27351812923155244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5470362584631049}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 3, "action": 0, "pose": {"position": {"x": 3.8328718563767294, "y": -10.47731691811643, "z": 0.277637122384192}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.555274244768384}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 3, "action": 0, "pose": {"position": {"x": 3.9229975913319817, "y": -10.520660954503258, "z": 0.2816592143491659}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5633184286983318}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 3, "action": 0, "pose": {"position": {"x": 4.013411305253064, "y": -10.563265010914105, "z": 0.28558930604981153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5711786120996231}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 3, "action": 0, "pose": {"position": {"x": 4.104146891858301, "y": -10.605305462231694, "z": 0.28943190180727957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5788638036145591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 3, "action": 0, "pose": {"position": {"x": 4.195050985885972, "y": -10.646869588138408, "z": 0.293191152875414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.586382305750828}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 3, "action": 0, "pose": {"position": {"x": 4.2861407524643464, "y": -10.688121735564977, "z": 0.29687089501713254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5937417900342651}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 3, "action": 0, "pose": {"position": {"x": 4.377291914069359, "y": -10.729160633983696, "z": 0.30047468108977776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6009493621795555}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 3, "action": 0, "pose": {"position": {"x": 4.468497783197122, "y": -10.770136844719786, "z": 0.30400580942656025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6080116188531205}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 3, "action": 0, "pose": {"position": {"x": 4.5596652863180775, "y": -10.811161223367609, "z": 0.3074673486585913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6149346973171826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 3, "action": 0, "pose": {"position": {"x": 4.6507572179093115, "y": -10.852368662297934, "z": 0.310862159508376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.621724319016752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 3, "action": 0, "pose": {"position": {"x": 4.741713204040635, "y": -10.893883211910126, "z": 0.3080274240987623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6160548481975247}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 3, "action": 0, "pose": {"position": {"x": 4.83245990679821, "y": -10.935822115806344, "z": 0.3019980938836953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6039961877673906}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 3, "action": 0, "pose": {"position": {"x": 4.92296991584448, "y": -10.978323849371858, "z": 0.29618374968832706}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5923674993766541}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 3, "action": 0, "pose": {"position": {"x": 5.01312975462679, "y": -11.021486115200108, "z": 0.29057164011452297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5811432802290459}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 3, "action": 0, "pose": {"position": {"x": 5.102943261414551, "y": -11.065462893908414, "z": 0.28514703434204847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5702940686840969}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 3, "action": 0, "pose": {"position": {"x": 5.192255293325252, "y": -11.110330642492885, "z": 0.2798991569365881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5597983138731762}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 3, "action": 0, "pose": {"position": {"x": 5.281096702158378, "y": -11.156259217091787, "z": 0.2748156532222194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5496313064444388}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 3, "action": 0, "pose": {"position": {"x": 5.369271553081879, "y": -11.203302627857399, "z": 0.2698874950518709}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5397749901037417}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 3, "action": 0, "pose": {"position": {"x": 5.456830706131291, "y": -11.251646171828385, "z": 0.2651050761177239}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5302101522354478}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 3, "action": 0, "pose": {"position": {"x": 5.543541276931768, "y": -11.301321390496078, "z": 0.26046024752906766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5209204950581353}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 3, "action": 0, "pose": {"position": {"x": 5.6294643476891055, "y": -11.352526746295975, "z": 0.2559412106998313}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5118824213996626}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 3, "action": 0, "pose": {"position": {"x": 5.714336731807559, "y": -11.40527055584332, "z": 0.25154201094636497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5030840218927299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 3, "action": 0, "pose": {"position": {"x": 5.798218403085809, "y": -11.459760358850733, "z": 0.24726172365284066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4945234473056813}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 3, "action": 0, "pose": {"position": {"x": 5.880821507591944, "y": -11.515985466143569, "z": 0.24309435534452042}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48618871068904085}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 3, "action": 0, "pose": {"position": {"x": 5.962189927144626, "y": -11.574157726512775, "z": 0.2390318696065473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4780637392130946}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 3, "action": 0, "pose": {"position": {"x": 6.0420258572065295, "y": -11.634250973756691, "z": 0.23506948326703392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47013896653406784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 3, "action": 0, "pose": {"position": {"x": 6.120343790703567, "y": -11.696470280623451, "z": 0.23121075804462096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4624215160892419}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 3, "action": 0, "pose": {"position": {"x": 6.196827825567386, "y": -11.760769155622073, "z": 0.22745051146222714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4549010229244543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 3, "action": 0, "pose": {"position": {"x": 6.271457957476365, "y": -11.827341270224627, "z": 0.22375849851345103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44751699702690206}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 3, "action": 0, "pose": {"position": {"x": 6.343939953162835, "y": -11.896133508570129, "z": 0.22014942818908909}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44029885637817817}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 3, "action": 0, "pose": {"position": {"x": 6.414186918616934, "y": -11.967299445518526, "z": 0.21672744451234904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4334548890246981}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 3, "action": 0, "pose": {"position": {"x": 6.481894736083186, "y": -12.04083388641875, "z": 0.21348195450930188}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42696390901860376}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 3, "action": 0, "pose": {"position": {"x": 6.546881954531026, "y": -12.116854482823863, "z": 0.21038796225788034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4207759245157607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 3, "action": 0, "pose": {"position": {"x": 6.608807552641444, "y": -12.19527577353184, "z": 0.20744787989461397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41489575978922794}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 3, "action": 0, "pose": {"position": {"x": 6.667500072213378, "y": -12.276201730904981, "z": 0.20457489073822357}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40914978147644715}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 3, "action": 0, "pose": {"position": {"x": 6.722678084172071, "y": -12.359537047102386, "z": 0.20178377146570586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4035675429314117}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 3, "action": 0, "pose": {"position": {"x": 6.774116130085854, "y": -12.445278155533147, "z": 0.19921524705017973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39843049410035947}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 3, "action": 0, "pose": {"position": {"x": 6.821464931809922, "y": -12.533315543231964, "z": 0.19692689630859006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3938537926171801}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 3, "action": 0, "pose": {"position": {"x": 6.8643924224323065, "y": -12.62358585537241, "z": 0.1949226389718549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3898452779437098}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 3, "action": 0, "pose": {"position": {"x": 6.902548819440631, "y": -12.71596162096728, "z": 0.19333605028151496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3866721005630299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 3, "action": 0, "pose": {"position": {"x": 6.935543216147041, "y": -12.8103265752957, "z": 0.19241462027821538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38482924055643075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 3, "action": 0, "pose": {"position": {"x": 6.962882092555335, "y": -12.906463466209036, "z": 0.19200505122901976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3840101024580395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 3, "action": 0, "pose": {"position": {"x": 6.9841896621978, "y": -13.004117711657786, "z": 0.19193088687765208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38386177375530417}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 3, "action": 0, "pose": {"position": {"x": 6.9992027814743905, "y": -13.102856317760466, "z": 0.19185669385722684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3837133877144537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 3, "action": 0, "pose": {"position": {"x": 7.00791121564093, "y": -13.202442680415794, "z": 0.19185351492601993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38370702985203986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 3, "action": 0, "pose": {"position": {"x": 7.010465080466094, "y": -13.302340875813826, "z": 0.19224499060820244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3844899812164049}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 3, "action": 0, "pose": {"position": {"x": 7.007086555191322, "y": -13.402299261074571, "z": 0.1930480617618894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3860961235237788}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 3, "action": 0, "pose": {"position": {"x": 6.998000555861027, "y": -13.501841824027826, "z": 0.19415405185451262}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38830810370902524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 3, "action": 0, "pose": {"position": {"x": 6.983428284486555, "y": -13.600760225655662, "z": 0.1955077880674563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3910155761349126}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 3, "action": 0, "pose": {"position": {"x": 6.9636294494040865, "y": -13.698722863835833, "z": 0.19710712685420767}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39421425370841534}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 3, "action": 0, "pose": {"position": {"x": 6.938834629794727, "y": -13.795601436015923, "z": 0.1989235480127293}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3978470960254586}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 3, "action": 0, "pose": {"position": {"x": 6.909303722571084, "y": -13.891102759816377, "z": 0.20089242772697405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4017848554539481}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 3, "action": 0, "pose": {"position": {"x": 6.875254344753423, "y": -13.985106884752492, "z": 0.20298919681462813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40597839362925625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 3, "action": 0, "pose": {"position": {"x": 6.836934070616327, "y": -14.077424208770951, "z": 0.20520314457763347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41040628915526695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 3, "action": 0, "pose": {"position": {"x": 6.794549012173591, "y": -14.167979076702894, "z": 0.20752092780630244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41504185561260487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 3, "action": 0, "pose": {"position": {"x": 6.7483363818684765, "y": -14.256624048072597, "z": 0.20992204132284492}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41984408264568984}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 3, "action": 0, "pose": {"position": {"x": 6.698501087738378, "y": -14.34329302119346, "z": 0.21240678659992993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42481357319985985}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 3, "action": 0, "pose": {"position": {"x": 6.6452579023842775, "y": -14.427903313232013, "z": 0.2149641412118649}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4299282824237298}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 3, "action": 0, "pose": {"position": {"x": 6.5888002313813425, "y": -14.510405820680267, "z": 0.21758049138455118}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43516098276910237}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 3, "action": 0, "pose": {"position": {"x": 6.5293213947589175, "y": -14.590750768389665, "z": 0.22025066207742608}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44050132415485216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 3, "action": 0, "pose": {"position": {"x": 6.466989094158394, "y": -14.668913261510932, "z": 0.22295153317781113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44590306635562227}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 3, "action": 0, "pose": {"position": {"x": 6.401976176253587, "y": -14.744859070412907, "z": 0.22567713077908969}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45135426155817937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 3, "action": 0, "pose": {"position": {"x": 6.334446699117673, "y": -14.818574407991637, "z": 0.22844191038298894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4568838207659779}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 3, "action": 0, "pose": {"position": {"x": 6.264553124212688, "y": -14.890059333637957, "z": 0.23124289714099494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4624857942819899}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 3, "action": 0, "pose": {"position": {"x": 6.192455517359435, "y": -14.959306555081394, "z": 0.2340786973086659}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4681573946173318}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 3, "action": 0, "pose": {"position": {"x": 6.1182842436868015, "y": -15.026339029975812, "z": 0.23695093413520696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4739018682704139}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 3, "action": 0, "pose": {"position": {"x": 6.042183768013278, "y": -15.091165326584001, "z": 0.23985701427605463}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47971402855210926}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 3, "action": 0, "pose": {"position": {"x": 5.964274096536947, "y": -15.15381525252319, "z": 0.24279746155750428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48559492311500857}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 3, "action": 0, "pose": {"position": {"x": 5.884685903066761, "y": -15.214309195134563, "z": 0.24577142293430732}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49154284586861463}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 3, "action": 0, "pose": {"position": {"x": 5.8035258437477495, "y": -15.272686216351946, "z": 0.2487803131180139}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4975606262360278}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 3, "action": 0, "pose": {"position": {"x": 5.7209105743766715, "y": -15.328977800708891, "z": 0.25182540957168237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5036508191433647}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 3, "action": 0, "pose": {"position": {"x": 5.636938045957184, "y": -15.383228838583085, "z": 0.25490950712288873}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5098190142457775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 3, "action": 0, "pose": {"position": {"x": 5.551708554399029, "y": -15.435482039875026, "z": 0.25803331399598184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5160666279919637}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 3, "action": 0, "pose": {"position": {"x": 5.465314958293999, "y": -15.48578494035583, "z": 0.26119976879702567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5223995375940513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 3, "action": 0, "pose": {"position": {"x": 5.377840129022122, "y": -15.534190583328577, "z": 0.26441054000918573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5288210800183715}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 3, "action": 0, "pose": {"position": {"x": 5.289374441885206, "y": -15.580747982729143, "z": 0.26766919990446586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5353383998089317}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 3, "action": 0, "pose": {"position": {"x": 5.199981999093675, "y": -15.625519722483814, "z": 0.27097730874177567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5419546174835513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 3, "action": 0, "pose": {"position": {"x": 5.109753215513396, "y": -15.668554984547603, "z": 0.27433868814488377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5486773762897675}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 3, "action": 0, "pose": {"position": {"x": 5.018733267291389, "y": -15.709924367623959, "z": 0.27775484076714985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5555096815342997}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 3, "action": 0, "pose": {"position": {"x": 4.927013307508757, "y": -15.749677109694018, "z": 0.28122990959324323}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5624598191864865}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 3, "action": 0, "pose": {"position": {"x": 4.8346211934722625, "y": -15.787889966364357, "z": 0.2847660066230893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5695320132461786}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 3, "action": 0, "pose": {"position": {"x": 4.741649836941964, "y": -15.824612004897645, "z": 0.28836722040112545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5767344408022509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 3, "action": 0, "pose": {"position": {"x": 4.648107498174491, "y": -15.859925484871114, "z": 0.29203442612484115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5840688522496823}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 3, "action": 0, "pose": {"position": {"x": 4.554090882365469, "y": -15.893878344614318, "z": 0.29573842418990204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5914768483798041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 3, "action": 0, "pose": {"position": {"x": 4.459593218625821, "y": -15.926555722100268, "z": 0.2993653932379679}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5987307864759358}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 3, "action": 0, "pose": {"position": {"x": 4.3647103881511935, "y": -15.958006589689083, "z": 0.3029187076975673}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6058374153951346}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 3, "action": 0, "pose": {"position": {"x": 4.2694276034052185, "y": -15.98831866892934, "z": 0.30640150494678553}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6128030098935711}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 3, "action": 0, "pose": {"position": {"x": 4.173837124772194, "y": -16.01754545595556, "z": 0.30981670799472893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6196334159894579}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 3, "action": 0, "pose": {"position": {"x": 4.077916208986318, "y": -16.045777264842286, "z": 0.31316704544648405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6263340908929681}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 3, "action": 0, "pose": {"position": {"x": 3.981756287738947, "y": -16.073069878353238, "z": 0.3164550691389633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6329101382779266}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 3, "action": 0, "pose": {"position": {"x": 3.8853261910962282, "y": -16.099513448999478, "z": 0.31968316977137445}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6393663395427489}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 3, "action": 0, "pose": {"position": {"x": 3.7887158995368018, "y": -16.12516374018221, "z": 0.32285359080218473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6457071816043695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 3, "action": 0, "pose": {"position": {"x": 3.691886747498688, "y": -16.15011036077379, "z": 0.32596844084193866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6519368816838773}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 3, "action": 0, "pose": {"position": {"x": 3.59492796338575, "y": -16.174409004875333, "z": 0.3290297047362503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6580594094725006}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 3, "action": 0, "pose": {"position": {"x": 3.497795119941859, "y": -16.19814876136086, "z": 0.3320392535043121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6640785070086243}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 3, "action": 0, "pose": {"position": {"x": 3.400576148186047, "y": -16.221385442303422, "z": 0.33499885327414763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6699977065482953}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 3, "action": 0, "pose": {"position": {"x": 3.3032232712053684, "y": -16.244206945445264, "z": 0.3379101733356786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6758203466713572}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 3, "action": 0, "pose": {"position": {"x": 3.2058219250208015, "y": -16.26666908857784, "z": 0.34077479341579014}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6815495868315803}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 3, "action": 0, "pose": {"position": {"x": 3.108323085051452, "y": -16.288858283395932, "z": 0.3435942102653413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6871884205306826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 3, "action": 0, "pose": {"position": {"x": 3.0108091083081066, "y": -16.310830305282074, "z": 0.3463698436360199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6927396872720398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 3, "action": 0, "pose": {"position": {"x": 2.913231766239021, "y": -16.332669848319775, "z": 0.34910304171473827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6982060834294765}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 3, "action": 0, "pose": {"position": {"x": 2.8156694682959147, "y": -16.354432634447264, "z": 0.35179508607456217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7035901721491243}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 3, "action": 0, "pose": {"position": {"x": 2.718077326876984, "y": -16.37620127636107, "z": 0.35444719619372433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7088943923874487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 3, "action": 0, "pose": {"position": {"x": 2.6205284384430962, "y": -16.398031570041073, "z": 0.3570605335879055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.714121067175811}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 3, "action": 0, "pose": {"position": {"x": 2.522983281668683, "y": -16.42000384412262, "z": 0.35963620559548753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7192724111909751}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 3, "action": 0, "pose": {"position": {"x": 2.425508763005051, "y": -16.442174084833823, "z": 0.3621752688507421}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7243505377014842}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 3, "action": 0, "pose": {"position": {"x": 2.328073395345709, "y": -16.464619948344534, "z": 0.364678732475841}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.729357464951682}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 3, "action": 0, "pose": {"position": {"x": 2.230736153153267, "y": -16.48739799091369, "z": 0.3671475610190225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.734295122038045}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 3, "action": 0, "pose": {"position": {"x": 2.1334768795808996, "y": -16.51058251141778, "z": 0.3695826771631556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7391653543263113}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 3, "action": 0, "pose": {"position": {"x": 2.036344606477036, "y": -16.534231207671397, "z": 0.3719849642262621}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7439699284525242}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 3, "action": 0, "pose": {"position": {"x": 1.9393318199288594, "y": -16.558414917859498, "z": 0.3688839335083845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.737767867016769}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 3, "action": 0, "pose": {"position": {"x": 1.8424775678246559, "y": -16.58319258135448, "z": 0.3647774623216032}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7295549246432064}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 3, "action": 0, "pose": {"position": {"x": 1.7457894781592684, "y": -16.608629993110185, "z": 0.36080867270029915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7216173454005983}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 3, "action": 0, "pose": {"position": {"x": 1.6492942582542962, "y": -16.63478745329473, "z": 0.35696806694289246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7139361338857849}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 3, "action": 0, "pose": {"position": {"x": 1.5530178356271818, "y": -16.66172395499367, "z": 0.35325325761107296}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7065065152221459}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 3, "action": 0, "pose": {"position": {"x": 1.4569722193972172, "y": -16.689502279046984, "z": 0.3496605479610415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.699321095922083}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 3, "action": 0, "pose": {"position": {"x": 1.3612032828914558, "y": -16.718175184994482, "z": 0.3461886650262356}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6923773300524712}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 3, "action": 0, "pose": {"position": {"x": 1.265709361066285, "y": -16.74780977108858, "z": 0.3428361797651076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6856723595302152}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 3, "action": 0, "pose": {"position": {"x": 1.1705571940871928, "y": -16.778452239538165, "z": 0.3396025301827234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6792050603654468}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 3, "action": 0, "pose": {"position": {"x": 1.075731568867747, "y": -16.81017510327511, "z": 0.33648583756768335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6729716751353667}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 3, "action": 0, "pose": {"position": {"x": 0.9813214579769962, "y": -16.843016322748355, "z": 0.3334867578926854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6669735157853708}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 3, "action": 0, "pose": {"position": {"x": 0.8872991156068165, "y": -16.877054214080097, "z": 0.33060510041464314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6612102008292863}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 3, "action": 0, "pose": {"position": {"x": 0.7937708638639382, "y": -16.912319432768342, "z": 0.3278419392839205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.655683878567841}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 3, "action": 0, "pose": {"position": {"x": 0.700702763502328, "y": -16.948894991316116, "z": 0.3251996348482282}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6503992696964565}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 3, "action": 0, "pose": {"position": {"x": 0.6082176577517795, "y": -16.986803845590853, "z": 0.3226810800665574}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6453621601331148}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 3, "action": 0, "pose": {"position": {"x": 0.5162771683327774, "y": -17.026134401493334, "z": 0.3202881915389178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6405763830778356}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 3, "action": 0, "pose": {"position": {"x": 0.42501954855176816, "y": -17.066901011143646, "z": 0.31802496297891925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6360499259578385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 3, "action": 0, "pose": {"position": {"x": 0.33440405166337134, "y": -17.10919710887316, "z": 0.31589788160889576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6317957632177915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 3, "action": 0, "pose": {"position": {"x": 0.2445806206542901, "y": -17.153029888711394, "z": 0.31391203426915315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6278240685383063}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 3, "action": 0, "pose": {"position": {"x": 0.15551443358466885, "y": -17.198495323443115, "z": 0.3120726961625316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6241453923250632}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 3, "action": 0, "pose": {"position": {"x": 0.06735982800862893, "y": -17.245595190423643, "z": 0.3103879484883826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6207758969767652}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 3, "action": 0, "pose": {"position": {"x": -0.01990554254344291, "y": -17.29442481234153, "z": 0.3088745258074134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6177490516148268}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 3, "action": 0, "pose": {"position": {"x": -0.10612380392789074, "y": -17.34498385134124, "z": 0.3075401386914697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6150802773829394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 3, "action": 0, "pose": {"position": {"x": -0.19130009064796727, "y": -17.39736525761323, "z": 0.3063894664128927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6127789328257854}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 3, "action": 0, "pose": {"position": {"x": -0.2752798551239852, "y": -17.45156495608763, "z": 0.3054373003297538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6108746006595076}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 3, "action": 0, "pose": {"position": {"x": -0.3580470753300873, "y": -17.507668028303144, "z": 0.30471357353572753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6094271470714551}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 3, "action": 0, "pose": {"position": {"x": -0.4394506007645793, "y": -17.56567589278212, "z": 0.304215433385247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.608430866770494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 3, "action": 0, "pose": {"position": {"x": -0.5194509135435188, "y": -17.625659832099938, "z": 0.3039112756315961}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6078225512631922}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 3, "action": 0, "pose": {"position": {"x": -0.5978923803842393, "y": -17.687590007657576, "z": 0.3037686231832394}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6075372463664788}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 3, "action": 0, "pose": {"position": {"x": -0.6747475572377201, "y": -17.75150898788354, "z": 0.3036512887550042}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6073025775100084}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 3, "action": 0, "pose": {"position": {"x": -0.7499345672056114, "y": -17.81736632748536, "z": 0.3035339089698364}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6070678179396728}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 3, "action": 0, "pose": {"position": {"x": -0.8234316860608643, "y": -17.88510277117535, "z": 0.30350046706973144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6070009341394629}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 3, "action": 0, "pose": {"position": {"x": -0.8952829944687487, "y": -17.95464248732142, "z": 0.30374874186279893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6074974837255979}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 3, "action": 0, "pose": {"position": {"x": -0.9654668440800146, "y": -18.02581595367584, "z": 0.30430427648298586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6086085529659717}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 3, "action": 0, "pose": {"position": {"x": -1.034087646417798, "y": -18.0985454639694, "z": 0.3052303575170634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6104607150341268}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 3, "action": 0, "pose": {"position": {"x": -1.101161276484732, "y": -18.172658899344196, "z": 0.3065057798070069}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6130115596140138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 3, "action": 0, "pose": {"position": {"x": -1.166799256120348, "y": -18.24808396550219, "z": 0.3081228652646023}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6162457305292046}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 3, "action": 0, "pose": {"position": {"x": -1.2310417181614801, "y": -18.32466878098769, "z": 0.31006675933589467}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6201335186717893}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 3, "action": 0, "pose": {"position": {"x": -1.294001060833477, "y": -18.402347279663154, "z": 0.3123234422542734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6246468845085468}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 3, "action": 0, "pose": {"position": {"x": -1.355727038815442, "y": -18.480978149442173, "z": 0.31488270325705603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6297654065141121}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 3, "action": 0, "pose": {"position": {"x": -1.4163350794619904, "y": -18.56050204253642, "z": 0.31773859085531453}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6354771817106291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 3, "action": 0, "pose": {"position": {"x": -1.475888474144571, "y": -18.640793420905663, "z": 0.32088439315918516}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6417687863183703}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 3, "action": 0, "pose": {"position": {"x": -1.5345029066325664, "y": -18.721796825164066, "z": 0.324033635191487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.648067270382974}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 3, "action": 0, "pose": {"position": {"x": -1.5922512916859393, "y": -18.803399012154234, "z": 0.32712806806534167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6542561361306833}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 3, "action": 0, "pose": {"position": {"x": -1.649250113686146, "y": -18.88554757794055, "z": 0.33016963262830185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6603392652566037}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 3, "action": 0, "pose": {"position": {"x": -1.7055798517066414, "y": -18.968138798887985, "z": 0.33316015937903387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6663203187580677}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 3, "action": 0, "pose": {"position": {"x": -1.7613562146202513, "y": -19.05111948163927, "z": 0.33610137705693277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6722027541138655}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 3, "action": 0, "pose": {"position": {"x": -1.8166671586194885, "y": -19.134398397105304, "z": 0.33899492039064205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6779898407812841}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 3, "action": 0, "pose": {"position": {"x": -1.8716236335002698, "y": -19.21792190835298, "z": 0.34184233710400064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6836846742080013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 3, "action": 0, "pose": {"position": {"x": -1.9263179486977497, "y": -19.301610142329384, "z": 0.3446450942645936}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6892901885291872}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 3, "action": 0, "pose": {"position": {"x": -1.9808563491586482, "y": -19.385406342630812, "z": 0.34222942031589176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6844588406317835}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 3, "action": 0, "pose": {"position": {"x": -2.035335290273436, "y": -19.469238154206515, "z": 0.33536847969054534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6707369593810907}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 3, "action": 0, "pose": {"position": {"x": -2.0898573780851235, "y": -19.55304138381459, "z": 0.3286968689494335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.657393737898867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 3, "action": 0, "pose": {"position": {"x": -2.1445258461425003, "y": -19.636752247857427, "z": 0.3222620415583502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6445240831167004}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 3, "action": 0, "pose": {"position": {"x": -2.1994377921200456, "y": -19.72029686479961, "z": 0.3160501630592224}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6321003261184448}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 3, "action": 0, "pose": {"position": {"x": -2.254701860309672, "y": -19.803618145443203, "z": 0.3100484229855887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6200968459711774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 3, "action": 0, "pose": {"position": {"x": -2.3104092408449315, "y": -19.886631698893662, "z": 0.3042449868235097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6084899736470194}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 3, "action": 0, "pose": {"position": {"x": -2.366672285662815, "y": -19.96928352434238, "z": 0.2986290008315931}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5972580016631862}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 3, "action": 0, "pose": {"position": {"x": -2.4235764354710714, "y": -20.05147850592675, "z": 0.2931898991417652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5863797982835304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 3, "action": 0, "pose": {"position": {"x": -2.4812364648616443, "y": -20.133162748494918, "z": 0.28791787534435176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5758357506887035}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 3, "action": 0, "pose": {"position": {"x": -2.539732011224174, "y": -20.214230731604854, "z": 0.2828035662790732}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5656071325581464}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 3, "action": 0, "pose": {"position": {"x": -2.5991777693604634, "y": -20.294624392434393, "z": 0.2778383478856199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5556766957712398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 3, "action": 0, "pose": {"position": {"x": -2.6596482125557173, "y": -20.37422902441671, "z": 0.27301386873997974}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5460277374799595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 3, "action": 0, "pose": {"position": {"x": -2.7212546713685324, "y": -20.452977386796597, "z": 0.26832255452095083}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5366451090419017}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 3, "action": 0, "pose": {"position": {"x": -2.7840674222200654, "y": -20.530747202931327, "z": 0.26375688446203455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5275137689240691}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 3, "action": 0, "pose": {"position": {"x": -2.84819044892556, "y": -20.607456971804275, "z": 0.25931019490452845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5186203898090569}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 3, "action": 0, "pose": {"position": {"x": -2.9136906492435637, "y": -20.68297813756513, "z": 0.2549758996575514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5099517993151028}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 3, "action": 0, "pose": {"position": {"x": -2.980660400159858, "y": -20.757210503915246, "z": 0.2507482467069392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5014964934138784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 3, "action": 0, "pose": {"position": {"x": -3.04916453580603, "y": -20.830020630937494, "z": 0.24662120679922195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4932424135984439}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 3, "action": 0, "pose": {"position": {"x": -3.1192782298162984, "y": -20.901285031415597, "z": 0.24259020461735972}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48518040923471945}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 3, "action": 0, "pose": {"position": {"x": -3.1910640174987264, "y": -20.970864810651264, "z": 0.2386506482882108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4773012965764216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 3, "action": 0, "pose": {"position": {"x": -3.264575558765315, "y": -21.038610941664206, "z": 0.23479867513969502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46959735027939004}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 3, "action": 0, "pose": {"position": {"x": -3.3398703979509743, "y": -21.104376060439296, "z": 0.23103167796418608}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46206335592837217}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 3, "action": 0, "pose": {"position": {"x": -3.4169804992557187, "y": -21.16798809418681, "z": 0.2273463627379342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4546927254758684}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 3, "action": 0, "pose": {"position": {"x": -3.4959612810551723, "y": -21.229292445257514, "z": 0.22374201352771578}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44748402705543155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 3, "action": 0, "pose": {"position": {"x": -3.576805380240356, "y": -21.288082547259304, "z": 0.2202253067363726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4404506134727452}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 3, "action": 0, "pose": {"position": {"x": -3.659548875885946, "y": -21.344180557574262, "z": 0.21679192057006924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4335838411401385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 3, "action": 0, "pose": {"position": {"x": -3.7441739555029754, "y": -21.39737183522761, "z": 0.21342382653109113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42684765306218225}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 3, "action": 0, "pose": {"position": {"x": -3.8306779887346507, "y": -21.447457338490253, "z": 0.21017503402785784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4203500680557157}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 3, "action": 0, "pose": {"position": {"x": -3.9190434804192487, "y": -21.494203252945542, "z": 0.20708263583632652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41416527167265305}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 3, "action": 0, "pose": {"position": {"x": -4.009270643004638, "y": -21.537363604750396, "z": 0.20417235247193694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40834470494387387}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 3, "action": 0, "pose": {"position": {"x": -4.101189814088191, "y": -21.57660546476782, "z": 0.20151463336636963}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40302926673273926}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 3, "action": 0, "pose": {"position": {"x": -4.194783309355354, "y": -21.61165511850694, "z": 0.19899262283703203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39798524567406407}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 3, "action": 0, "pose": {"position": {"x": -4.289935270666256, "y": -21.64225269131212, "z": 0.19648783149246546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3929756629849309}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 3, "action": 0, "pose": {"position": {"x": -4.386474365593844, "y": -21.668184143707304, "z": 0.19402914341151545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3880582868230309}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 3, "action": 0, "pose": {"position": {"x": -4.484219248693607, "y": -21.689225065897883, "z": 0.1917484207047392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3834968414094784}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 3, "action": 0, "pose": {"position": {"x": -4.582941538908402, "y": -21.705063560572604, "z": 0.19018509896063177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38037019792126353}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 3, "action": 0, "pose": {"position": {"x": -4.682358143784812, "y": -21.7152099449206, "z": 0.18943899737328562}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37887799474657124}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 3, "action": 0, "pose": {"position": {"x": -4.782264411428847, "y": -21.71917751094278, "z": 0.18936582419229894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3787316483845979}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 3, "action": 0, "pose": {"position": {"x": -4.882160008533675, "y": -21.71655958369345, "z": 0.18339969051332738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36679938102665477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_iqp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.882160008533675, "y_m": -21.71655958369345, "d_right": 0.35009871074734006, "d_left": 2.643447840783811, "psi_rad": 3.081070705812035, "kappa_radpm": -0.7019396532256539, "vx_mps": 4.134668873267083, "ax_mps2": -0.06608829420273463}, {"id": 1, "s_m": 0.09997494170757654, "d_m": 0.0, "x_m": -4.9816187019875455, "y_m": -21.70712618546316, "d_right": 0.3700650133213562, "d_left": 2.5684009331575828, "psi_rad": 3.014041654754417, "kappa_radpm": -0.6386111351565221, "vx_mps": 4.1330705709971545, "ax_mps2": 1.025033457060129}, {"id": 2, "s_m": 0.19994988341515307, "d_m": 0.0, "x_m": -5.080365895359873, "y_m": -21.69135554078186, "d_right": 0.40844259130436694, "d_left": 2.474443039878848, "psi_rad": 2.953524024322091, "kappa_radpm": -0.5735767647319947, "vx_mps": 4.157791200274318, "ax_mps2": 2.017618351920125}, {"id": 3, "s_m": 0.2999248251227296, "d_m": 0.0, "x_m": -5.177919042444273, "y_m": -21.66991432219545, "d_right": 0.42711343249483497, "d_left": 2.3787938355833567, "psi_rad": 2.8973070830938057, "kappa_radpm": -0.552796350711528, "vx_mps": 4.20602546584317, "ax_mps2": 2.152284020119939}, {"id": 4, "s_m": 0.39989976683030615, "d_m": 0.0, "x_m": -5.274298653447174, "y_m": -21.643068236553166, "d_right": 0.4556872463720268, "d_left": 2.282673847657016, "psi_rad": 2.8428282670720897, "kappa_radpm": -0.5355940774716325, "vx_mps": 4.256876690511546, "ax_mps2": 2.2244474189943717}, {"id": 5, "s_m": 0.4998747085378827, "d_m": 0.0, "x_m": -5.368995728485495, "y_m": -21.61115393542029, "d_right": 0.4982933530390182, "d_left": 2.1875800516402877, "psi_rad": 2.7907023964955973, "kappa_radpm": -0.5076621104062462, "vx_mps": 4.308802288375691, "ax_mps2": 2.5030861940541658}, {"id": 6, "s_m": 0.5998496502454592, "d_m": 0.0, "x_m": -5.462003588583595, "y_m": -21.57445533580863, "d_right": 0.5437025838551935, "d_left": 2.094675875219858, "psi_rad": 2.74125623159748, "kappa_radpm": -0.485630077655818, "vx_mps": 4.3664938970518214, "ax_mps2": 2.6671393187243178}, {"id": 7, "s_m": 0.6998245919530357, "d_m": 0.0, "x_m": -5.553030749276221, "y_m": -21.53329045376689, "d_right": 0.5912588003744824, "d_left": 2.0038083627106027, "psi_rad": 2.6924163155501857, "kappa_radpm": -0.4919376730114292, "vx_mps": 4.427139386649318, "ax_mps2": 2.282467877273965}, {"id": 8, "s_m": 0.7997995336606123, "d_m": 0.0, "x_m": -5.642028624891917, "y_m": -21.487647975497396, "d_right": 0.6470359578574, "d_left": 1.9145430167551085, "psi_rad": 2.6429868372570002, "kappa_radpm": -0.49018577788166445, "vx_mps": 4.478386130603464, "ax_mps2": 2.0913293845677234}, {"id": 9, "s_m": 0.8997744753681889, "d_m": 0.0, "x_m": -5.72862879633994, "y_m": -21.43777096773774, "d_right": 0.7020386262071144, "d_left": 1.8283286691851466, "psi_rad": 2.5956495686788434, "kappa_radpm": -0.4577287591947528, "vx_mps": 4.524831864435237, "ax_mps2": 2.549264592748652}, {"id": 10, "s_m": 0.9997494170757654, "d_m": 0.0, "x_m": -5.812924477602107, "y_m": -21.38393667933552, "d_right": 0.758936811978727, "d_left": 1.7436779582840731, "psi_rad": 2.5513059702897243, "kappa_radpm": -0.430764922645602, "vx_mps": 4.580810906326841, "ax_mps2": 2.879782739783329}, {"id": 11, "s_m": 1.0997243587833418, "d_m": 0.0, "x_m": -5.894764255077599, "y_m": -21.326556475411294, "d_right": 0.8208465102365048, "d_left": 1.6620085872205135, "psi_rad": 2.5092480265196246, "kappa_radpm": -0.41068639267365203, "vx_mps": 4.643236024864941, "ax_mps2": 3.06240293187467}, {"id": 12, "s_m": 1.1996993004909184, "d_m": 0.0, "x_m": -5.974195245817594, "y_m": -21.265853820335877, "d_right": 0.8752288958412061, "d_left": 1.5826862617722468, "psi_rad": 2.469175785076638, "kappa_radpm": -0.39242366329745054, "vx_mps": 4.708711914292713, "ax_mps2": 3.213482015347876}, {"id": 13, "s_m": 1.299674242198495, "d_m": 0.0, "x_m": -6.051162947578346, "y_m": -21.20209258913352, "d_right": 0.9284769487783636, "d_left": 1.5084758378007523, "psi_rad": 2.4305490959202376, "kappa_radpm": -0.38058146960435, "vx_mps": 4.776452998421281, "ax_mps2": 3.2290257699716816}, {"id": 14, "s_m": 1.3996491839060714, "d_m": 0.0, "x_m": -6.125680373878284, "y_m": -21.13542139485074, "d_right": 0.9860378678052945, "d_left": 1.440149276809056, "psi_rad": 2.3930639489489325, "kappa_radpm": -0.36876931816305153, "vx_mps": 4.843567545970429, "ax_mps2": 3.2579247389888795}, {"id": 15, "s_m": 1.499624125613648, "d_m": 0.0, "x_m": -6.197661965151177, "y_m": -21.066077309683713, "d_right": 1.0471737845125786, "d_left": 1.378650880689015, "psi_rad": 2.3568653825931247, "kappa_radpm": -0.35559854392013257, "vx_mps": 4.910353168980229, "ax_mps2": 3.332750147948016}, {"id": 16, "s_m": 1.5995990673212246, "d_m": 0.0, "x_m": -6.267158979124656, "y_m": -20.994191412978473, "d_right": 1.1113584368307425, "d_left": 1.3219080435184294, "psi_rad": 2.3219381183885197, "kappa_radpm": -0.34349882392136655, "vx_mps": 4.977745598928115, "ax_mps2": 3.393015469125677}, {"id": 17, "s_m": 1.6995740090288012, "d_m": 0.0, "x_m": -6.3341222371072705, "y_m": -20.919986828549852, "d_right": 1.17806366251977, "d_left": 1.2704257215714714, "psi_rad": 2.2881202650634096, "kappa_radpm": -0.3332187493134165, "vx_mps": 5.045432022644414, "ax_mps2": 3.419045336242339}, {"id": 18, "s_m": 1.7995489507363778, "d_m": 0.0, "x_m": -6.398600072019689, "y_m": -20.843564942304724, "d_right": 1.2421012257793476, "d_left": 1.2081772968526947, "psi_rad": 2.255300235508904, "kappa_radpm": -0.3231411605894594, "vx_mps": 5.112731365082512, "ax_mps2": 3.4520299933281917}, {"id": 19, "s_m": 1.8995238924439541, "d_m": 0.0, "x_m": -6.460555521621185, "y_m": -20.76512597261283, "d_right": 1.3040659477138337, "d_left": 1.1468864608438383, "psi_rad": 2.2235110856719627, "kappa_radpm": -0.31296733392766846, "vx_mps": 5.179792950129384, "ax_mps2": 3.499285340673063}, {"id": 20, "s_m": 1.9994988341515307, "d_m": 0.0, "x_m": -6.520045467108982, "y_m": -20.684761310971766, "d_right": 1.3638599136439402, "d_left": 1.0870544173179446, "psi_rad": 2.1927088136681823, "kappa_radpm": -0.3031289553115216, "vx_mps": 5.246897817007112, "ax_mps2": 3.5484529137707077}, {"id": 21, "s_m": 2.0994737758591073, "d_m": 0.0, "x_m": -6.5770562852855, "y_m": -20.60265473462318, "d_right": 1.4213604299406188, "d_left": 1.029624452980576, "psi_rad": 2.162895471741152, "kappa_radpm": -0.2934172825427759, "vx_mps": 5.3140803012870075, "ax_mps2": 3.604888490694696}, {"id": 22, "s_m": 2.1994487175666837, "d_m": 0.0, "x_m": -6.63164876710985, "y_m": -20.51888875022579, "d_right": 1.4755190536358882, "d_left": 0.9748915239711369, "psi_rad": 2.134030567415837, "kappa_radpm": -0.28390627215091574, "vx_mps": 5.381472519856033, "ax_mps2": 3.666048908261953}, {"id": 23, "s_m": 2.2994236592742605, "d_m": 0.0, "x_m": -6.683829264289628, "y_m": -20.433627851447785, "d_right": 1.5274210307475646, "d_left": 0.9228150400500269, "psi_rad": 2.1061271106620194, "kappa_radpm": -0.2744099439609789, "vx_mps": 5.449153377706199, "ax_mps2": 3.737081519321457}, {"id": 24, "s_m": 2.399398600981837, "d_m": 0.0, "x_m": -6.7336626508963215, "y_m": -20.34694748620517, "d_right": 1.5771371507399654, "d_left": 0.8732998590121654, "psi_rad": 2.0791513642820925, "kappa_radpm": -0.2652329002847421, "vx_mps": 5.517291142206302, "ax_mps2": 3.808499597190943}, {"id": 25, "s_m": 2.4993735426894133, "d_m": 0.0, "x_m": -6.781170026388441, "y_m": -20.25899484636914, "d_right": 1.624638774702944, "d_left": 0.8269746873605214, "psi_rad": 2.053084185326045, "kappa_radpm": -0.2563273936527887, "vx_mps": 5.585875992027849, "ax_mps2": 3.881448188751808}, {"id": 26, "s_m": 2.59934848439699, "d_m": 0.0, "x_m": -6.826416986969216, "y_m": -20.169835877835684, "d_right": 1.6699550662159122, "d_left": 0.7824290883753425, "psi_rad": 2.0278908576096497, "kappa_radpm": -0.24762151902664126, "vx_mps": 5.654918718349185, "ax_mps2": 3.957910876368788}, {"id": 27, "s_m": 2.6993234261045664, "d_m": 0.0, "x_m": -6.869435103244856, "y_m": -20.079600642321584, "d_right": 1.7130909771601135, "d_left": 0.7510537998206702, "psi_rad": 2.0035675993047293, "kappa_radpm": -0.23903622755782303, "vx_mps": 5.7244641259626645, "ax_mps2": 4.0402234744740895}, {"id": 28, "s_m": 2.799298367812143, "d_m": 0.0, "x_m": -6.9102917255047345, "y_m": -19.988347142927783, "d_right": 1.7351535644753826, "d_left": 0.7344612837625208, "psi_rad": 1.9800884277985322, "kappa_radpm": -0.23064155667541594, "vx_mps": 5.794595045568392, "ax_mps2": 4.125867585603572}, {"id": 29, "s_m": 2.8992733095197196, "d_m": 0.0, "x_m": -6.949027145927624, "y_m": -19.8961906677427, "d_right": 1.7592289409140878, "d_left": 0.7089070486399413, "psi_rad": 1.9574456418374375, "kappa_radpm": -0.22238507638795355, "vx_mps": 5.865347260380544, "ax_mps2": 4.216448687596865}, {"id": 30, "s_m": 2.999248251227296, "d_m": 0.0, "x_m": -6.985709728192132, "y_m": -19.803181499022546, "d_right": 1.7864657711676621, "d_left": 0.6718765529956799, "psi_rad": 1.9356164259458633, "kappa_radpm": -0.21429281025509084, "vx_mps": 5.936781696202456, "ax_mps2": 4.310916397606076}, {"id": 31, "s_m": 3.099223192934873, "d_m": 0.0, "x_m": -7.020386419611259, "y_m": -19.709421000437374, "d_right": 1.816777428771112, "d_left": 0.6369219270679509, "psi_rad": 1.9145931484230625, "kappa_radpm": -0.20632450088894216, "vx_mps": 6.008938686613329, "ax_mps2": 4.410585284550374}, {"id": 32, "s_m": 3.199198134642449, "d_m": 0.0, "x_m": -7.0531261153615565, "y_m": -19.614952466235813, "d_right": 1.8470306361136697, "d_left": 0.6039642504544013, "psi_rad": 1.8943567525019191, "kappa_radpm": -0.1984910182497097, "vx_mps": 6.081878012005564, "ax_mps2": 4.514973837730517}, {"id": 33, "s_m": 3.2991730763500255, "d_m": 0.0, "x_m": -7.0839809536103475, "y_m": -19.51986450388149, "d_right": 1.877990457138182, "d_left": 0.5729403571955797, "psi_rad": 1.8749010010530103, "kappa_radpm": -0.19075868629057957, "vx_mps": 6.15564851542008, "ax_mps2": 4.625286037756651}, {"id": 34, "s_m": 3.3991480180576024, "d_m": 0.0, "x_m": -7.1130201327687175, "y_m": -19.42419423304764, "d_right": 1.9071291877902135, "d_left": 0.543773409067887, "psi_rad": 1.8562101613943978, "kappa_radpm": -0.1831444082457106, "vx_mps": 6.230315726301888, "ax_mps2": 4.7408545054768405}, {"id": 35, "s_m": 3.4991229597651787, "d_m": 0.0, "x_m": -7.140299860177429, "y_m": -19.328018431271058, "d_right": 1.9343172160517201, "d_left": 0.5163991170955606, "psi_rad": 1.8382776931103673, "kappa_radpm": -0.17562391516748585, "vx_mps": 6.305931125144241, "ax_mps2": 4.862631927084888}, {"id": 36, "s_m": 3.5990979014727555, "d_m": 0.0, "x_m": -7.165889251816617, "y_m": -19.231368901465416, "d_right": 1.9598229300151748, "d_left": 0.49074262273421976, "psi_rad": 1.8210905034557723, "kappa_radpm": -0.16820080365884318, "vx_mps": 6.38255826780879, "ax_mps2": 4.990512817594821}, {"id": 37, "s_m": 3.699072843180332, "d_m": 0.0, "x_m": -7.189847668443589, "y_m": -19.13431124540111, "d_right": 1.9837140050369357, "d_left": 0.4787023153605394, "psi_rad": 1.804642916174789, "kappa_radpm": -0.1608553891743281, "vx_mps": 6.460255606246107, "ax_mps2": 5.125375859057873}, {"id": 38, "s_m": 3.7990477848879083, "d_m": 0.0, "x_m": -7.212243947155899, "y_m": -19.03687297525719, "d_right": 2.006056209496799, "d_left": 0.4888892357160407, "psi_rad": 1.7889243958822587, "kappa_radpm": -0.153592476249075, "vx_mps": 6.539091741481512, "ax_mps2": 5.267126664320901}, {"id": 39, "s_m": 3.899022726595485, "d_m": 0.0, "x_m": -7.233139916062351, "y_m": -18.939109061675477, "d_right": 2.026908398183557, "d_left": 0.4739377908196293, "psi_rad": 1.7739294137577224, "kappa_radpm": -0.14639803866975482, "vx_mps": 6.619130015793278, "ax_mps2": 5.416506702882031}, {"id": 40, "s_m": 3.9989976683030615, "d_m": 0.0, "x_m": -7.252603935697865, "y_m": -18.841043769762468, "d_right": 2.0463370497121938, "d_left": 0.4544063725923163, "psi_rad": 1.759649588185102, "kappa_radpm": -0.13927135338928634, "vx_mps": 6.700441183215787, "ax_mps2": 5.467687304099583}, {"id": 41, "s_m": 4.098972610010638, "d_m": 0.0, "x_m": -7.270699726157641, "y_m": -18.74272182906755, "d_right": 2.0644040317545427, "d_left": 0.43625529454135364, "psi_rad": 1.746079815900709, "kappa_radpm": -0.13220225310658373, "vx_mps": 6.781531942617347, "ax_mps2": 5.421488837290713}, {"id": 42, "s_m": 4.198947551718215, "d_m": 0.0, "x_m": -7.287495079745481, "y_m": -18.644165343897804, "d_right": 2.0811759605920632, "d_left": 0.41941499071183796, "psi_rad": 1.7332137096194042, "kappa_radpm": -0.12518856070022355, "vx_mps": 6.860991294972778, "ax_mps2": 5.376170487191628}, {"id": 43, "s_m": 4.298922493425791, "d_m": 0.0, "x_m": -7.303055152186022, "y_m": -18.545409135865, "d_right": 2.096716846880421, "d_left": 0.4038182146937783, "psi_rad": 1.7210464025671428, "kappa_radpm": -0.11822384335670533, "vx_mps": 6.938887966513524, "ax_mps2": 5.331696001208719}, {"id": 44, "s_m": 4.398897435133367, "d_m": 0.0, "x_m": -7.317447136711973, "y_m": -18.446474143035285, "d_right": 2.1110931210037647, "d_left": 0.38939647718126935, "psi_rad": 1.7095732533131258, "kappa_radpm": -0.11130323205034183, "vx_mps": 7.015286038763701, "ax_mps2": 5.288031558843641}, {"id": 45, "s_m": 4.498872376840944, "d_m": 0.0, "x_m": -7.330737232419961, "y_m": -18.347385645778136, "d_right": 2.124370289738061, "d_left": 0.376082259479831, "psi_rad": 1.698789654577883, "kappa_radpm": -0.10442398654022607, "vx_mps": 7.090245376526777, "ax_mps2": 5.245145548289696}, {"id": 46, "s_m": 4.598847318548521, "d_m": 0.0, "x_m": -7.342992027993399, "y_m": -18.248164608810537, "d_right": 2.136614410874277, "d_left": 0.3701851082187985, "psi_rad": 1.6886925001833561, "kappa_radpm": -0.09757765817050067, "vx_mps": 7.163822006459637, "ax_mps2": 5.203008368776956}, {"id": 47, "s_m": 4.698822260256097, "d_m": 0.0, "x_m": -7.354278492855764, "y_m": -18.14882695978779, "d_right": 2.1462177335170844, "d_left": 0.3767402075780988, "psi_rad": 1.6792778685415812, "kappa_radpm": -0.09075993171940012, "vx_mps": 7.236068453033069, "ax_mps2": 5.161592255126835}, {"id": 48, "s_m": 4.798797201963674, "d_m": 0.0, "x_m": -7.364662840396703, "y_m": -18.049393699743035, "d_right": 2.1376643580178523, "d_left": 0.393289599463512, "psi_rad": 1.6705443379569744, "kappa_radpm": -0.08396272277666486, "vx_mps": 7.307034037598947, "ax_mps2": 5.120871121537648}, {"id": 49, "s_m": 4.89877214367125, "d_m": 0.0, "x_m": -7.374212529023051, "y_m": -17.949872749334034, "d_right": 2.13292673105446, "d_left": 0.3837366914269132, "psi_rad": 1.6624885056333718, "kappa_radpm": -0.07719033303604533, "vx_mps": 7.376765145398425, "ax_mps2": 5.080820422084798}, {"id": 50, "s_m": 4.9987470853788265, "d_m": 0.0, "x_m": -7.3829934585721535, "y_m": -17.85028619006246, "d_right": 2.13209868519928, "d_left": 0.3749557012067302, "psi_rad": 1.6551094771552743, "kappa_radpm": -0.07043850995144486, "vx_mps": 7.4453054646142105, "ax_mps2": 5.041417025798172}, {"id": 51, "s_m": 5.098722027086404, "d_m": 0.0, "x_m": -7.391073345208206, "y_m": -17.750634231516816, "d_right": 2.135252163376533, "d_left": 0.3668791785273446, "psi_rad": 1.6484034681198791, "kappa_radpm": -0.06370927166447815, "vx_mps": 7.512696200963389, "ax_mps2": 5.002639104496848}, {"id": 52, "s_m": 5.19869696879398, "d_m": 0.0, "x_m": -7.398517730861322, "y_m": -17.65094139377062, "d_right": 2.142435798762906, "d_left": 0.3594397036753353, "psi_rad": 1.642372146053151, "kappa_radpm": -0.05689761649411988, "vx_mps": 7.5789762708219355, "ax_mps2": 4.964466031821708}, {"id": 53, "s_m": 5.2986719105015565, "d_m": 0.0, "x_m": -7.405395594493728, "y_m": -17.551200007580725, "d_right": 2.1493069798769127, "d_left": 0.35256924132782774, "psi_rad": 1.6370329652171742, "kappa_radpm": -0.04990645015674577, "vx_mps": 7.644182475449105, "ax_mps2": 4.926878292128997}, {"id": 54, "s_m": 5.398646852209133, "d_m": 0.0, "x_m": -7.411775178973636, "y_m": -17.451434368572325, "d_right": 2.155680549910603, "d_left": 0.34619763982774804, "psi_rad": 1.632394138873798, "kappa_radpm": -0.042884773759094094, "vx_mps": 7.708349658524518, "ax_mps2": 4.889857398091623}, {"id": 55, "s_m": 5.498621793916709, "d_m": 0.0, "x_m": -7.417727470322081, "y_m": -17.351634707241974, "d_right": 2.16162765974679, "d_left": 0.34025506714865134, "psi_rad": 1.6284599941280276, "kappa_radpm": -0.035814118067832974, "vx_mps": 7.771510848910924, "ax_mps2": 4.8533858160112455}, {"id": 56, "s_m": 5.598596735624286, "d_m": 0.0, "x_m": -7.4233219738351, "y_m": -17.25181972913414, "d_right": 2.1672174065839043, "d_left": 0.3580852638231757, "psi_rad": 1.6252218382800576, "kappa_radpm": -0.029451490459633217, "vx_mps": 7.833697390301746, "ax_mps2": 4.817446897975712}, {"id": 57, "s_m": 5.698571677331863, "d_m": 0.0, "x_m": -7.4286217087559345, "y_m": -17.15198325790039, "d_right": 2.1725129107490564, "d_left": 0.38098427708349286, "psi_rad": 1.6225206871419187, "kappa_radpm": -0.024583517396415115, "vx_mps": 7.894939059196679, "ax_mps2": 4.782024820111941}, {"id": 58, "s_m": 5.798546619039439, "d_m": 0.0, "x_m": -7.433675828673049, "y_m": -17.052138063494635, "d_right": 2.177563052972394, "d_left": 0.37598690264983115, "psi_rad": 1.6203039918762034, "kappa_radpm": -0.019864008108394306, "vx_mps": 7.955264172464613, "ax_mps2": 4.747104526274063}, {"id": 59, "s_m": 5.898521560747016, "d_m": 0.0, "x_m": -7.438531615597271, "y_m": -16.95227894145001, "d_right": 2.1824152037102413, "d_left": 0.37118591954625413, "psi_rad": 1.6185382873982834, "kappa_radpm": -0.015457616341350702, "vx_mps": 8.014699685595657, "ax_mps2": 4.7126716765957894}, {"id": 60, "s_m": 5.998496502454592, "d_m": 0.0, "x_m": -7.443232872044312, "y_m": -16.852416809779978, "d_right": 2.187112937223132, "d_left": 0.3665391804086001, "psi_rad": 1.6172132292628831, "kappa_radpm": -0.011054537426789732, "vx_mps": 8.073271282608825, "ax_mps2": 4.678712600401147}, {"id": 61, "s_m": 6.098471444162168, "d_m": 0.0, "x_m": -7.447823955075938, "y_m": -16.752545158175447, "d_right": 2.1917007270527162, "d_left": 0.36200177218782714, "psi_rad": 1.6163276098073203, "kappa_radpm": -0.0066613622656476095, "vx_mps": 8.131003458465601, "ax_mps2": 4.645214253030388}, {"id": 62, "s_m": 6.198446385869746, "d_m": 0.0, "x_m": -7.452348265257429, "y_m": -16.652675654448455, "d_right": 2.196221735647346, "d_left": 0.35753220141363606, "psi_rad": 1.6158787946342117, "kappa_radpm": -0.0024258925432615657, "vx_mps": 8.187919594739032, "ax_mps2": 4.61216417618962}, {"id": 63, "s_m": 6.298421327577322, "d_m": 0.0, "x_m": -7.456848281473572, "y_m": -16.552800981430913, "d_right": 2.1942196916972603, "d_left": 0.35308739649830484, "psi_rad": 1.615831199038639, "kappa_radpm": 0.0014741180448062082, "vx_mps": 8.24404202920097, "ax_mps2": 4.57955046148085}, {"id": 64, "s_m": 6.398396269284898, "d_m": 0.0, "x_m": -7.4613626734629035, "y_m": -16.452931052752266, "d_right": 2.1810014621736777, "d_left": 0.34863046470232245, "psi_rad": 1.6161587572869567, "kappa_radpm": 0.004455649963263819, "vx_mps": 8.299392119914504, "ax_mps2": 4.547361716802004}, {"id": 65, "s_m": 6.498371210992475, "d_m": 0.0, "x_m": -7.465920205215033, "y_m": -16.353060184823846, "d_right": 2.1723511061814906, "d_left": 0.34440528467133763, "psi_rad": 1.616656561252384, "kappa_radpm": 0.0055028504905132135, "vx_mps": 8.353990304352768, "ax_mps2": 4.515587035348565}, {"id": 66, "s_m": 6.598346152700051, "d_m": 0.0, "x_m": -7.470532577347009, "y_m": -16.253192477653517, "d_right": 2.1683356322809364, "d_left": 0.3682918845485061, "psi_rad": 1.6172523111011827, "kappa_radpm": 0.006133355055354213, "vx_mps": 8.407856154007927, "ax_mps2": 4.484215966973297}, {"id": 67, "s_m": 6.698321094407628, "d_m": 0.0, "x_m": -7.47520554858035, "y_m": -16.153326956546625, "d_right": 2.1689864369165996, "d_left": 0.38240022509320265, "psi_rad": 1.6178533637498709, "kappa_radpm": 0.005890761872032784, "vx_mps": 8.461008424903834, "ax_mps2": 4.453238491688572}, {"id": 68, "s_m": 6.798296036115205, "d_m": 0.0, "x_m": -7.47993735607301, "y_m": -16.05346365194004, "d_right": 2.173719814375241, "d_left": 0.37768954783924974, "psi_rad": 1.6184298966451738, "kappa_radpm": 0.005631067012847514, "vx_mps": 8.513465104381803, "ax_mps2": 4.42264499511675}, {"id": 69, "s_m": 6.898270977822781, "d_m": 0.0, "x_m": -7.48472533177686, "y_m": -15.953603509361004, "d_right": 2.1785094073922595, "d_left": 0.3729236762785168, "psi_rad": 1.618978074275608, "kappa_radpm": 0.00533524649530472, "vx_mps": 8.56524345449018, "ax_mps2": 4.392426245719715}, {"id": 70, "s_m": 6.9982459195303575, "d_m": 0.0, "x_m": -7.489566580266021, "y_m": -15.853745757544708, "d_right": 2.183352307804053, "d_left": 0.36810548716363756, "psi_rad": 1.6194967120472124, "kappa_radpm": 0.00504146627500236, "vx_mps": 8.616360052274288, "ax_mps2": 4.362573373648417}, {"id": 71, "s_m": 7.098220861237934, "d_m": 0.0, "x_m": -7.494458152968951, "y_m": -15.753890636722517, "d_right": 2.18824557173534, "d_left": 0.363237989129964, "psi_rad": 1.6199862577806994, "kappa_radpm": 0.004751911145756774, "vx_mps": 8.666830827233172, "ax_mps2": 4.333077851075727}, {"id": 72, "s_m": 7.198195802945511, "d_m": 0.0, "x_m": -7.499397171003081, "y_m": -15.654037697508036, "d_right": 2.1931863130760965, "d_left": 0.35832406907156955, "psi_rad": 1.6204468483498868, "kappa_radpm": 0.004461874866708832, "vx_mps": 8.716671096182912, "ax_mps2": 4.303931473887893}, {"id": 73, "s_m": 7.2981707446530875, "d_m": 0.0, "x_m": -7.504380721969217, "y_m": -15.554187127197235, "d_right": 2.198171623210486, "d_left": 0.3533666998015776, "psi_rad": 1.6208783751280256, "kappa_radpm": 0.00417083242792014, "vx_mps": 8.765895595742702, "ax_mps2": 4.275126344618828}, {"id": 74, "s_m": 7.398145686360664, "d_m": 0.0, "x_m": -7.509405916450666, "y_m": -15.454338477445628, "d_right": 2.2031986054844617, "d_left": 0.34836878144195677, "psi_rad": 1.6212808077236949, "kappa_radpm": 0.0038799019041453843, "vx_mps": 8.814518512638843, "ax_mps2": 4.246654856528143}, {"id": 75, "s_m": 7.49812062806824, "d_m": 0.0, "x_m": -7.514469832998253, "y_m": -15.354491948462272, "d_right": 2.2082643424613004, "d_left": 0.3492679318708437, "psi_rad": 1.6216541687456263, "kappa_radpm": 0.003589197852680103, "vx_mps": 8.86255351200319, "ax_mps2": 4.2185096787296885}, {"id": 76, "s_m": 7.598095569775817, "d_m": 0.0, "x_m": -7.519569585515131, "y_m": -15.254647078947837, "d_right": 2.213365940549761, "d_left": 0.37759845825534805, "psi_rad": 1.6219984673106465, "kappa_radpm": 0.00329847909852857, "vx_mps": 8.910013763825944, "ax_mps2": 4.190683742286128}, {"id": 77, "s_m": 7.698070511483393, "d_m": 0.0, "x_m": -7.524702254651899, "y_m": -15.154804060797714, "d_right": 2.21850048427022, "d_left": 0.3819427532043179, "psi_rad": 1.6223136979021335, "kappa_radpm": 0.0030077194193617075, "vx_mps": 8.956911967707825, "ax_mps2": 4.1631702271952475}, {"id": 78, "s_m": 7.79804545319097, "d_m": 0.0, "x_m": -7.529864954391069, "y_m": -15.054962428550331, "d_right": 2.2236650800027995, "d_left": 0.37678447198885273, "psi_rad": 1.6225998607023346, "kappa_radpm": 0.0027169689414817356, "vx_mps": 9.00326037604338, "ax_mps2": 4.135962550197226}, {"id": 79, "s_m": 7.898020394898547, "d_m": 0.0, "x_m": -7.535054765408692, "y_m": -14.955122364027599, "d_right": 2.213531922153998, "d_left": 0.3715992910405617, "psi_rad": 1.6228569559582628, "kappa_radpm": 0.0024262305567826843, "vx_mps": 9.049070815755293, "ax_mps2": 4.109054353342962}, {"id": 80, "s_m": 7.997995336606123, "d_m": 0.0, "x_m": -7.5402688022054125, "y_m": -14.855283398619878, "d_right": 2.2063674028000455, "d_left": 0.3663900946083334, "psi_rad": 1.6230849854026765, "kappa_radpm": 0.0021354970648134754, "vx_mps": 9.094354708688881, "ax_mps2": 4.0824394932635535}, {"id": 81, "s_m": 8.0979702783137, "d_m": 0.0, "x_m": -7.545504145593578, "y_m": -14.755445711374731, "d_right": 2.199855817595753, "d_left": 0.3611598168033139, "psi_rad": 1.6232839484532955, "kappa_radpm": 0.0018447659328346606, "vx_mps": 9.139123090766372, "ax_mps2": 4.05611203109035}, {"id": 82, "s_m": 8.197945220021277, "d_m": 0.0, "x_m": -7.5507579105413365, "y_m": -14.655608829046109, "d_right": 2.1974315905328563, "d_left": 0.3559113410751581, "psi_rad": 1.6234538463161543, "kappa_radpm": 0.0015540398330752888, "vx_mps": 9.183386629991922, "ax_mps2": 4.030066222976886}, {"id": 83, "s_m": 8.297920161728852, "d_m": 0.0, "x_m": -7.556027178015434, "y_m": -14.555772926655985, "d_right": 2.1995690064903037, "d_left": 0.3506476019533712, "psi_rad": 1.6235946786684012, "kappa_radpm": 0.0012633168569171132, "vx_mps": 9.227155643390544, "ax_mps2": 4.004296511182182}, {"id": 84, "s_m": 8.39789510343643, "d_m": 0.0, "x_m": -7.56130906333922, "y_m": -14.45593752783553, "d_right": 2.204852076541233, "d_left": 0.3453714821346243, "psi_rad": 1.623706446553979, "kappa_radpm": 0.0009725988399666275, "vx_mps": 9.270440112957127, "ax_mps2": 3.9787975156698767}, {"id": 85, "s_m": 8.497870045144005, "d_m": 0.0, "x_m": -7.566600647546236, "y_m": -14.35610280611944, "d_right": 2.2101448569116675, "d_left": 0.3516465217593527, "psi_rad": 1.623789149820525, "kappa_radpm": 0.0006818838001981957, "vx_mps": 9.313249700685322, "ax_mps2": 3.953564026193468}, {"id": 86, "s_m": 8.597844986851582, "d_m": 0.0, "x_m": -7.571899046274117, "y_m": -14.256268282073787, "d_right": 2.2154444591921885, "d_left": 0.3847263975647054, "psi_rad": 1.6238427893155432, "kappa_radpm": 0.00039117341213034914, "vx_mps": 9.355593762740394, "ax_mps2": 3.9285909948289044}, {"id": 87, "s_m": 8.69781992855916, "d_m": 0.0, "x_m": -7.577201340592083, "y_m": -14.156434128969734, "d_right": 2.2207479660742804, "d_left": 0.3794828461580965, "psi_rad": 1.6238673650064572, "kappa_radpm": 0.00010046538732331677, "vx_mps": 9.397481362834876, "ax_mps2": 3.903873528925447}, {"id": 88, "s_m": 8.797794870266735, "d_m": 0.0, "x_m": -7.582504646356693, "y_m": -14.056599865242532, "d_right": 2.226052489262072, "d_left": 0.3741779227937837, "psi_rad": 1.623862877541431, "kappa_radpm": -0.00019023758998876715, "vx_mps": 9.438921284861156, "ax_mps2": 3.8794068844477128}, {"id": 89, "s_m": 8.897769811974312, "d_m": 0.0, "x_m": -7.58780604464016, "y_m": -13.95676566520944, "d_right": 2.2313551114405783, "d_left": 0.3688749049949941, "psi_rad": 1.6238293271568158, "kappa_radpm": -0.0004809374485546648, "vx_mps": 9.479922044830866, "ax_mps2": 3.8551864596806613}, {"id": 90, "s_m": 8.997744753681888, "d_m": 0.0, "x_m": -7.593102651495282, "y_m": -13.85693104507751, "d_right": 2.236652944404877, "d_left": 0.3635766890094564, "psi_rad": 1.623766714313701, "kappa_radpm": -0.0007716338979053259, "vx_mps": 9.520491902166981, "ax_mps2": 3.8312077892753447}, {"id": 91, "s_m": 9.097719695389465, "d_m": 0.0, "x_m": -7.598391547922769, "y_m": -13.757096182113981, "d_right": 2.2419430707775, "d_left": 0.3582861878608515, "psi_rad": 1.6236750390644796, "kappa_radpm": -0.001062330774531395, "vx_mps": 9.560638870391031, "ax_mps2": 3.807466538611153}, {"id": 92, "s_m": 9.197694637097042, "d_m": 0.0, "x_m": -7.6036698493215935, "y_m": -13.657260624549155, "d_right": 2.2472226019073887, "d_left": 0.3530062976181125, "psi_rad": 1.6235543974005868, "kappa_radpm": -0.001347167343517769, "vx_mps": 9.600370727244563, "ax_mps2": 3.7839584984565473}, {"id": 93, "s_m": 9.297669578804618, "d_m": 0.0, "x_m": -7.6089347042578535, "y_m": -13.557424534661424, "d_right": 2.2383949656031765, "d_left": 0.3477398641824603, "psi_rad": 1.6234060784177737, "kappa_radpm": -0.0016199564039254967, "vx_mps": 9.63969502428103, "ax_mps2": 3.7606795799068866}, {"id": 94, "s_m": 9.397644520512195, "d_m": 0.0, "x_m": -7.6141834035598635, "y_m": -13.457587426574943, "d_right": 2.2279338873930405, "d_left": 0.3424896092726551, "psi_rad": 1.623230908999899, "kappa_radpm": -0.001867009900046959, "vx_mps": 9.678619095961603, "ax_mps2": 3.7376258095844612}, {"id": 95, "s_m": 9.49761946221977, "d_m": 0.0, "x_m": -7.619413495857147, "y_m": -13.357749565532927, "d_right": 2.221907768893875, "d_left": 0.3544278816200935, "psi_rad": 1.6230345468616918, "kappa_radpm": -0.0020612204653061043, "vx_mps": 9.71715006828589, "ax_mps2": 3.7147933250807754}, {"id": 96, "s_m": 9.597594403927348, "d_m": 0.0, "x_m": -7.624623031850725, "y_m": -13.257910319205422, "d_right": 2.220350714531015, "d_left": 0.38309351711149076, "psi_rad": 1.6228188837407393, "kappa_radpm": -0.0022484065470506093, "vx_mps": 9.755294866986326, "ax_mps2": 3.6921783706298954}, {"id": 97, "s_m": 9.697569345634925, "d_m": 0.0, "x_m": -7.629810119584142, "y_m": -13.15807022559841, "d_right": 2.223270264248803, "d_left": 0.37791259929930904, "psi_rad": 1.6225854618434772, "kappa_radpm": -0.0024212086116781675, "vx_mps": 9.79306022531288, "ax_mps2": 3.66977729299733}, {"id": 98, "s_m": 9.7975442873425, "d_m": 0.0, "x_m": -7.634973059810532, "y_m": -13.058228493356955, "d_right": 2.2284332428562914, "d_left": 0.3727560969426464, "psi_rad": 1.6223347627619, "kappa_radpm": -0.0025940562712061573, "vx_mps": 9.830452691432859, "ax_mps2": 3.6475865375695795}, {"id": 99, "s_m": 9.897519229050078, "d_m": 0.0, "x_m": -7.640110086905389, "y_m": -12.958385811611068, "d_right": 2.233570318372508, "d_left": 0.36762572272626687, "psi_rad": 1.6220667771362636, "kappa_radpm": -0.002767008114671533, "vx_mps": 9.867478635468803, "ax_mps2": 3.625602644636011}, {"id": 100, "s_m": 9.997494170757653, "d_m": 0.0, "x_m": -7.6452195140935615, "y_m": -12.858541324658477, "d_right": 2.2386798034018125, "d_left": 0.36252323420796856, "psi_rad": 1.6217815053351567, "kappa_radpm": -0.0029396312975574776, "vx_mps": 9.904144256195883, "ax_mps2": 3.6038222458485643}, {"id": 101, "s_m": 10.09746911246523, "d_m": 0.0, "x_m": -7.650299578635709, "y_m": -12.758695727303587, "d_right": 2.2437599351159663, "d_left": 0.3574503398285555, "psi_rad": 1.6214790205219654, "kappa_radpm": -0.003111591158115725, "vx_mps": 9.94045558741873, "ax_mps2": 3.5822420608503514}, {"id": 102, "s_m": 10.197444054172808, "d_m": 0.0, "x_m": -7.655348583030713, "y_m": -12.658848315395971, "d_right": 2.2488090153445457, "d_left": 0.3524087967700825, "psi_rad": 1.6211582525871184, "kappa_radpm": -0.0033501187182103046, "vx_mps": 9.976418504046237, "ax_mps2": 3.5608588940640464}, {"id": 103, "s_m": 10.297418995880383, "d_m": 0.0, "x_m": -7.660364021206769, "y_m": -12.55899964731868, "d_right": 2.2538245379466524, "d_left": 0.3474010642284288, "psi_rad": 1.6208045837998681, "kappa_radpm": -0.003725034768347736, "vx_mps": 10.012038727881652, "ax_mps2": 3.5396696316282577}, {"id": 104, "s_m": 10.39739393758796, "d_m": 0.0, "x_m": -7.665342247924228, "y_m": -12.459148723475051, "d_right": 2.2588028567093077, "d_left": 0.3424308662317577, "psi_rad": 1.620409203084658, "kappa_radpm": -0.004358233376176596, "vx_mps": 10.047321833144109, "ax_mps2": 3.5186712384780185}, {"id": 105, "s_m": 10.497368879295536, "d_m": 0.0, "x_m": -7.670276538426805, "y_m": -12.359296257250087, "d_right": 2.2637372469270947, "d_left": 0.3601181020176524, "psi_rad": 1.619915368376684, "kappa_radpm": -0.005520939626174893, "vx_mps": 10.082273251736645, "ax_mps2": 3.49786075555597}, {"id": 106, "s_m": 10.597343821003113, "d_m": 0.0, "x_m": -7.675155753453964, "y_m": -12.259440055531254, "d_right": 2.268616567257496, "d_left": 0.380452865311881, "psi_rad": 1.61930428593966, "kappa_radpm": -0.006745477324466079, "vx_mps": 10.116898278274823, "ax_mps2": 3.4772352971508704}, {"id": 107, "s_m": 10.69731876271069, "d_m": 0.0, "x_m": -7.679967479367095, "y_m": -12.159581651882606, "d_right": 2.2734284046649185, "d_left": 0.3798007599068369, "psi_rad": 1.6185623374915998, "kappa_radpm": -0.008097259395352305, "vx_mps": 10.151202074889085, "ax_mps2": 3.456792048356212}, {"id": 108, "s_m": 10.797293704418266, "d_m": 0.0, "x_m": -7.684698430514162, "y_m": -12.059718028426163, "d_right": 2.2781594703224517, "d_left": 0.3750970453716785, "psi_rad": 1.6176852466570852, "kappa_radpm": -0.009448854447482098, "vx_mps": 10.185189675813195, "ax_mps2": 3.436528262639349}, {"id": 109, "s_m": 10.897268646125843, "d_m": 0.0, "x_m": -7.689334980881788, "y_m": -11.959851332521415, "d_right": 2.265148603328329, "d_left": 0.3704880251907424, "psi_rad": 1.6166730441891208, "kappa_radpm": -0.010800355698460632, "vx_mps": 10.218865991770286, "ax_mps2": 3.416441259519545}, {"id": 110, "s_m": 10.997243587833418, "d_m": 0.0, "x_m": -7.69386375710531, "y_m": -11.859978344948136, "d_right": 2.2549764015035247, "d_left": 0.36598737107458296, "psi_rad": 1.6155257239328116, "kappa_radpm": -0.012151629069354875, "vx_mps": 10.252235814167316, "ax_mps2": 3.39652842234463}, {"id": 111, "s_m": 11.097218529540996, "d_m": 0.0, "x_m": -7.69827113926143, "y_m": -11.760101276052353, "d_right": 2.24908502075194, "d_left": 0.3616082695399986, "psi_rad": 1.6142433351752326, "kappa_radpm": -0.013502697950060559, "vx_mps": 10.28530381910807, "ax_mps2": 3.3767871961657847}, {"id": 112, "s_m": 11.197193471248571, "d_m": 0.0, "x_m": -7.7025437512861705, "y_m": -11.66021708915046, "d_right": 2.247494477375497, "d_left": 0.35736436047550696, "psi_rad": 1.6128265062808618, "kappa_radpm": -0.014814519667084034, "vx_mps": 10.318074571234217, "ax_mps2": 3.357215085701065}, {"id": 113, "s_m": 11.297168412956148, "d_m": 0.0, "x_m": -7.706668426935904, "y_m": -11.56032805256332, "d_right": 2.2502008875941795, "d_left": 0.35326834711979876, "psi_rad": 1.6112838978341268, "kappa_radpm": -0.016045539890515974, "vx_mps": 10.350552527403341, "ax_mps2": 3.337809653386018}, {"id": 114, "s_m": 11.397143354663726, "d_m": 0.0, "x_m": -7.710632927394243, "y_m": -11.460431101316198, "d_right": 2.254164475948284, "d_left": 0.34933273539746446, "psi_rad": 1.6096191543869955, "kappa_radpm": -0.017218678884888376, "vx_mps": 10.382742040212316, "ax_mps2": 3.3185685175043105}, {"id": 115, "s_m": 11.497118296371301, "d_m": 0.0, "x_m": -7.714425490882929, "y_m": -11.360528930723186, "d_right": 2.2579561814536464, "d_left": 0.34556875216041927, "psi_rad": 1.607845041162625, "kappa_radpm": -0.018272725145051672, "vx_mps": 10.414647361373902, "ax_mps2": 3.2994893503984937}, {"id": 116, "s_m": 11.597093238078878, "d_m": 0.0, "x_m": -7.718035595161021, "y_m": -11.260618328680131, "d_right": 2.2615655063191915, "d_left": 0.36970503461294757, "psi_rad": 1.6059645478321358, "kappa_radpm": -0.019387020376385095, "vx_mps": 10.446272644953993, "ax_mps2": 3.280569876751217}, {"id": 117, "s_m": 11.697068179786454, "d_m": 0.0, "x_m": -7.721451895021567, "y_m": -11.160702492103672, "d_right": 2.264981079202199, "d_left": 0.3863036866642481, "psi_rad": 1.6039643677515556, "kappa_radpm": -0.020626896121736765, "vx_mps": 10.477621950476442, "ax_mps2": 3.261807871938458}, {"id": 118, "s_m": 11.797043121494031, "d_m": 0.0, "x_m": -7.724662193013471, "y_m": -11.060778288541968, "d_right": 2.2681907263784873, "d_left": 0.38310692389053747, "psi_rad": 1.6018401875040589, "kappa_radpm": -0.021867370193173676, "vx_mps": 10.508699245902058, "ax_mps2": 3.243201160448337}, {"id": 119, "s_m": 11.897018063201608, "d_m": 0.0, "x_m": -7.727653984561856, "y_m": -10.960848801630462, "d_right": 2.271181918525441, "d_left": 0.3801277592284214, "psi_rad": 1.5995919509897705, "kappa_radpm": -0.023108913013163906, "vx_mps": 10.53950841048794, "ax_mps2": 3.2247476143628577}, {"id": 120, "s_m": 11.996993004909184, "d_m": 0.0, "x_m": -7.730414937912585, "y_m": -10.860911294976104, "d_right": 2.273942344473195, "d_left": 0.3773782156581559, "psi_rad": 1.5972195601934782, "kappa_radpm": -0.02435057106240496, "vx_mps": 10.570053237532967, "ax_mps2": 3.206445151900865}, {"id": 121, "s_m": 12.096967946616761, "d_m": 0.0, "x_m": -7.732932556629898, "y_m": -10.760968701878603, "d_right": 2.276459484641173, "d_left": 0.3748709384321777, "psi_rad": 1.5947230416613656, "kappa_radpm": -0.025592629774255898, "vx_mps": 10.600337437014957, "ax_mps2": 3.1882917360160077}, {"id": 122, "s_m": 12.196942888324337, "d_m": 0.0, "x_m": -7.735194481545061, "y_m": -10.66101867592107, "d_right": 2.2787209974675364, "d_left": 0.3726180079528935, "psi_rad": 1.5921022924615165, "kappa_radpm": -0.026835973742769734, "vx_mps": 10.630364638124636, "ax_mps2": 3.170285373051837}, {"id": 123, "s_m": 12.296917830031914, "d_m": 0.0, "x_m": -7.737188212620946, "y_m": -10.561064209765386, "d_right": 2.28071435972033, "d_left": 0.3706320854607468, "psi_rad": 1.58935709502855, "kappa_radpm": -0.028082074023160982, "vx_mps": 10.660138391701357, "ax_mps2": 3.152424111447659}, {"id": 124, "s_m": 12.396892771739491, "d_m": 0.0, "x_m": -7.7389013331194025, "y_m": -10.461103321267725, "d_right": 2.2796551932637525, "d_left": 0.3689253423712332, "psi_rad": 1.5864871692046658, "kappa_radpm": -0.02933502480461467, "vx_mps": 10.68966217257516, "ax_mps2": 3.134706040492281}, {"id": 125, "s_m": 12.496867713447067, "d_m": 0.0, "x_m": -7.740321256659063, "y_m": -10.361139006634954, "d_right": 2.262919981962653, "d_left": 0.36751053699846564, "psi_rad": 1.5834910643082658, "kappa_radpm": -0.030602440656536105, "vx_mps": 10.718939381819522, "ax_mps2": 3.1171292891283047}, {"id": 126, "s_m": 12.596842655154644, "d_m": 0.0, "x_m": -7.741435347691406, "y_m": -10.26116972040809, "d_right": 2.250201311886631, "d_left": 0.37160126495749274, "psi_rad": 1.5803682378866353, "kappa_radpm": -0.031867913856610586, "vx_mps": 10.747973348918979, "ax_mps2": 3.099692024797826}, {"id": 127, "s_m": 12.69681759686222, "d_m": 0.0, "x_m": -7.742230926957793, "y_m": -10.161198447899588, "d_right": 2.2415553325977826, "d_left": 0.40166384968435254, "psi_rad": 1.577119224712713, "kappa_radpm": -0.03312899265426971, "vx_mps": 10.776767333855448, "ax_mps2": 3.082392452334163}, {"id": 128, "s_m": 12.796792538569797, "d_m": 0.0, "x_m": -7.7426953957684646, "y_m": -10.061224082898544, "d_right": 2.2370165686245964, "d_left": 0.41396680753644455, "psi_rad": 1.5737441640795267, "kappa_radpm": -0.03438542660032823, "vx_mps": 10.805324529117014, "ax_mps2": 3.065228812892619}, {"id": 129, "s_m": 12.896767480277374, "d_m": 0.0, "x_m": -7.742816189047803, "y_m": -9.961249659295987, "d_right": 2.236597618199286, "d_left": 0.41384584685870196, "psi_rad": 1.5702442071985707, "kappa_radpm": -0.03563162803377234, "vx_mps": 10.833648061632632, "ax_mps2": 3.048199382920597}, {"id": 130, "s_m": 12.99674242198495, "d_m": 0.0, "x_m": -7.742580843611151, "y_m": -9.861274537807253, "d_right": 2.23636196545445, "d_left": 0.4140809031819764, "psi_rad": 1.5666195998798544, "kappa_radpm": -0.03687847708092367, "vx_mps": 10.861740994636062, "ax_mps2": 3.031302473166288}, {"id": 131, "s_m": 13.096717363692527, "d_m": 0.0, "x_m": -7.741976903863878, "y_m": -9.761301795359223, "d_right": 2.2357577310936367, "d_left": 0.4146845039068068, "psi_rad": 1.5628703214872566, "kappa_radpm": -0.03812624936626057, "vx_mps": 10.889606329462202, "ax_mps2": 3.014536427722512}, {"id": 132, "s_m": 13.196692305400102, "d_m": 0.0, "x_m": -7.740991898290345, "y_m": -9.661331328917479, "d_right": 2.2347724470707737, "d_left": 0.41566911543438384, "psi_rad": 1.5589962489859597, "kappa_radpm": -0.0393736481417208, "vx_mps": 10.917247007278762, "ax_mps2": 2.997899623103534}, {"id": 133, "s_m": 13.29666724710768, "d_m": 0.0, "x_m": -7.739613389882378, "y_m": -9.56136619281603, "d_right": 2.233393626399412, "d_left": 0.4170472460373401, "psi_rad": 1.5549976095808702, "kappa_radpm": -0.040619529099053, "vx_mps": 10.944665910756115, "ax_mps2": 2.9813904673569005}, {"id": 134, "s_m": 13.396642188815257, "d_m": 0.0, "x_m": -7.737828930580358, "y_m": -9.461406883348795, "d_right": 2.2316088143900243, "d_left": 0.4188313530348075, "psi_rad": 1.550874362421911, "kappa_radpm": -0.041865108770514727, "vx_mps": 10.971865865678, "ax_mps2": 2.9650073992045662}, {"id": 135, "s_m": 13.496617130522832, "d_m": 0.0, "x_m": -7.735626124161892, "y_m": -9.361456428614803, "d_right": 2.22940556533437, "d_left": 0.42103390239516064, "psi_rad": 1.5466267296836207, "kappa_radpm": -0.04310915668606583, "vx_mps": 10.998849642495621, "ax_mps2": 2.948748887215333}, {"id": 136, "s_m": 13.59659207223041, "d_m": 0.0, "x_m": -7.73299255738057, "y_m": -9.261515974778007, "d_right": 2.2267714483869563, "d_left": 0.4329801613022423, "psi_rad": 1.5422546672117943, "kappa_radpm": -0.044353084821434394, "vx_mps": 11.025619957827557, "ax_mps2": 2.932613429004964}, {"id": 137, "s_m": 13.696567013937985, "d_m": 0.0, "x_m": -7.7299158728121995, "y_m": -9.161588507460417, "d_right": 2.223694057429006, "d_left": 0.4505527758233559, "psi_rad": 1.5377583746433972, "kappa_radpm": -0.04559557847609661, "vx_mps": 11.052179475907753, "ax_mps2": 2.916599550464972}, {"id": 138, "s_m": 13.796541955645562, "d_m": 0.0, "x_m": -7.726383701787418, "y_m": -9.061675881066064, "d_right": 2.2201609943287512, "d_left": 0.48027187710347324, "psi_rad": 1.5331378060499505, "kappa_radpm": -0.04683803644231519, "vx_mps": 11.07853080998382, "ax_mps2": 2.9007058050158}, {"id": 139, "s_m": 13.89651689735314, "d_m": 0.0, "x_m": -7.7223837225251675, "y_m": -8.961781007219992, "d_right": 2.2161598901091932, "d_left": 0.4842693573137267, "psi_rad": 1.5283931560628183, "kappa_radpm": -0.04807895996937396, "vx_mps": 11.104676523667644, "ax_mps2": -4.025460061456578}, {"id": 140, "s_m": 13.996491839060715, "d_m": 0.0, "x_m": -7.717903625839856, "y_m": -8.861906510230297, "d_right": 2.2116783935064985, "d_left": 0.488746464532733, "psi_rad": 1.5235243848862514, "kappa_radpm": -0.04932001492198533, "vx_mps": 11.068376142204182, "ax_mps2": -6.338779879731071}, {"id": 141, "s_m": 14.096466780768292, "d_m": 0.0, "x_m": -7.712931122664197, "y_m": -8.762055205718227, "d_right": 2.2067041705327326, "d_left": 0.4937154600496504, "psi_rad": 1.5185316633918593, "kappa_radpm": -0.050559576783866675, "vx_mps": 11.010972351584948, "ax_mps2": -6.248341154512334}, {"id": 142, "s_m": 14.196441722475868, "d_m": 0.0, "x_m": -7.707453979056523, "y_m": -8.662230550372938, "d_right": 2.2012249321073307, "d_left": 0.4991885470574421, "psi_rad": 1.5134149557703906, "kappa_radpm": -0.05179945608359727, "vx_mps": 10.954093163835395, "ax_mps2": -6.160308756594411}, {"id": 143, "s_m": 14.296416664183445, "d_m": 0.0, "x_m": -7.701459932953616, "y_m": -8.562435234918606, "d_right": 2.190083126964821, "d_left": 0.5051779846229557, "psi_rad": 1.508174404605003, "kappa_radpm": -0.05303787207064961, "vx_mps": 10.897724717770354, "ax_mps2": -6.074413156267113}, {"id": 144, "s_m": 14.396391605891022, "d_m": 0.0, "x_m": -7.6949368435269365, "y_m": -8.462673601638992, "d_right": 2.165685204338374, "d_left": 0.5116958913847018, "psi_rad": 1.5028099840601494, "kappa_radpm": -0.05427669859896568, "vx_mps": 10.841855275823038, "ax_mps2": -5.990849679107392}, {"id": 145, "s_m": 14.496366547598598, "d_m": 0.0, "x_m": -7.687872470397188, "y_m": -8.362948196581938, "d_right": 2.145138824022509, "d_left": 0.5187545363374034, "psi_rad": 1.4973218242351085, "kappa_radpm": -0.05551392811562022, "vx_mps": 10.786470976505552, "ax_mps2": -5.909275279027431}, {"id": 146, "s_m": 14.596341489306175, "d_m": 0.0, "x_m": -7.68025479083838, "y_m": -8.263264326477252, "d_right": 2.1285441818151254, "d_left": 0.5263659366778684, "psi_rad": 1.4917099087584265, "kappa_radpm": -0.05675213361909566, "vx_mps": 10.731560800922065, "ax_mps2": -5.82987097552243}, {"id": 147, "s_m": 14.69631643101375, "d_m": 0.0, "x_m": -7.672071574672239, "y_m": -8.163624351494228, "d_right": 2.1159821808521997, "d_left": 0.5345423904317548, "psi_rad": 1.4859742564269849, "kappa_radpm": -0.05798943211546438, "vx_mps": 10.67711174438134, "ax_mps2": -5.752427956943551}, {"id": 148, "s_m": 14.796291372721328, "d_m": 0.0, "x_m": -7.663310930814919, "y_m": -8.064034582833408, "d_right": 2.1072318505917353, "d_left": 0.5432958101977845, "psi_rad": 1.4801148573751481, "kappa_radpm": -0.05922731598937051, "vx_mps": 10.623112439518891, "ax_mps2": -5.67721067882955}, {"id": 149, "s_m": 14.896266314428903, "d_m": 0.0, "x_m": -7.653960631698663, "y_m": -7.9644971876058035, "d_right": 2.0978932728649267, "d_left": 0.5630453396809771, "psi_rad": 1.474131814646595, "kappa_radpm": -0.060463146826043215, "vx_mps": 10.569548726852334, "ax_mps2": -5.603774675670549}, {"id": 150, "s_m": 14.99624125613648, "d_m": 0.0, "x_m": -7.644008959918578, "y_m": -7.865019526805622, "d_right": 2.087954955050144, "d_left": 0.5995927254751551, "psi_rad": 1.4680251609642399, "kappa_radpm": -0.06170056233324738, "vx_mps": 10.51641032844481, "ax_mps2": -5.532303552584972}, {"id": 151, "s_m": 15.096216197844058, "d_m": 0.0, "x_m": -7.633443683271835, "y_m": -7.7656035653490525, "d_right": 2.077404790721507, "d_left": 0.6237144424643877, "psi_rad": 1.4617947831141775, "kappa_radpm": -0.06293764835480146, "vx_mps": 10.463684950621557, "ax_mps2": -5.462645021368025}, {"id": 152, "s_m": 15.196191139551633, "d_m": 0.0, "x_m": -7.622253275747096, "y_m": -7.666257853645261, "d_right": 2.0662315405108944, "d_left": 0.6348671302958709, "psi_rad": 1.4554406902628374, "kappa_radpm": -0.06417551208579629, "vx_mps": 10.411361462878098, "ax_mps2": -5.39523087337424}, {"id": 153, "s_m": 15.29616608125921, "d_m": 0.0, "x_m": -7.61042547675305, "y_m": -7.566984041820396, "d_right": 2.054423100438266, "d_left": 0.6466556281702545, "psi_rad": 1.448963000114946, "kappa_radpm": -0.06540992918933673, "vx_mps": 10.359424295132145, "ax_mps2": -5.3291383065525775}, {"id": 154, "s_m": 15.396141022966786, "d_m": 0.0, "x_m": -7.597949011684525, "y_m": -7.467791820110605, "d_right": 2.0419685583118383, "d_left": 0.6590912499962568, "psi_rad": 1.4423618304579067, "kappa_radpm": -0.06664916602497573, "vx_mps": 10.307866469035954, "ax_mps2": -5.264109502380968}, {"id": 155, "s_m": 15.496115964674363, "d_m": 0.0, "x_m": -7.5848115735796116, "y_m": -7.368682631609307, "d_right": 2.0288558104660486, "d_left": 0.6721867266863442, "psi_rad": 1.4356362338895126, "kappa_radpm": -0.06789548224066529, "vx_mps": 10.256683336351477, "ax_mps2": -5.199661606100961}, {"id": 156, "s_m": 15.59609090638194, "d_m": 0.0, "x_m": -7.571002039701256, "y_m": -7.269667339824198, "d_right": 2.0150741930981884, "d_left": 0.6859532926645987, "psi_rad": 1.4287858639381323, "kappa_radpm": -0.06915333421854863, "vx_mps": 10.205874843944144, "ax_mps2": -5.1347011671619205}, {"id": 157, "s_m": 15.696065848089516, "d_m": 0.0, "x_m": -7.556507879351598, "y_m": -7.170747231103494, "d_right": 2.0005744733997886, "d_left": 0.7004039954944906, "psi_rad": 1.4218082250257569, "kappa_radpm": -0.0704331355062075, "vx_mps": 10.15545166058636, "ax_mps2": -5.071140161883371}, {"id": 158, "s_m": 15.796040789797093, "d_m": 0.0, "x_m": -7.541317979257812, "y_m": -7.071934569014322, "d_right": 1.9853602253209954, "d_left": 0.7155501436788279, "psi_rad": 1.414702598426479, "kappa_radpm": -0.07171652276538829, "vx_mps": 10.105405709141804, "ax_mps2": -5.009217009980992}, {"id": 159, "s_m": 15.896015731504669, "d_m": 0.0, "x_m": -7.52541950376871, "y_m": -6.973230270592652, "d_right": 1.9694353595778258, "d_left": 0.7314051937602453, "psi_rad": 1.407468454089323, "kappa_radpm": -0.0730009860338351, "vx_mps": 10.055726338221863, "ax_mps2": -4.948891456012313}, {"id": 160, "s_m": 15.995990673212246, "d_m": 0.0, "x_m": -7.5088016393309935, "y_m": -6.874647931436693, "d_right": 1.9527888858271825, "d_left": 0.7479802609441305, "psi_rad": 1.4001059309477424, "kappa_radpm": -0.07428670780688887, "vx_mps": 10.006403046027327, "ax_mps2": -4.8906281760246255}, {"id": 161, "s_m": 16.095965614919823, "d_m": 0.0, "x_m": -7.491451475022778, "y_m": -6.776188244129094, "d_right": 1.935408058713337, "d_left": 0.7740559723401133, "psi_rad": 1.392614936837833, "kappa_radpm": -0.07556886815895017, "vx_mps": 9.957420418257028, "ax_mps2": -4.833541148885226}, {"id": 162, "s_m": 16.1959405566274, "d_m": 0.0, "x_m": -7.473358613262328, "y_m": -6.677866079785862, "d_right": 1.9172823597982147, "d_left": 0.8123699336033937, "psi_rad": 1.3849957345187478, "kappa_radpm": -0.07685610321701271, "vx_mps": 9.908771639144785, "ax_mps2": -4.777730160952509}, {"id": 163, "s_m": 16.295915498334974, "d_m": 0.0, "x_m": -7.454510074260342, "y_m": -6.57968199895758, "d_right": 1.8983990630896426, "d_left": 0.8527403333643458, "psi_rad": 1.3772473970908117, "kappa_radpm": -0.07814727957180764, "vx_mps": 9.860448712307596, "ax_mps2": -4.723211390352499}, {"id": 164, "s_m": 16.395890440042553, "d_m": 0.0, "x_m": -7.434895838173074, "y_m": -6.481652250081564, "d_right": 1.8787481182790413, "d_left": 0.8722634919485662, "psi_rad": 1.369369993526742, "kappa_radpm": -0.07944210037690969, "vx_mps": 9.812443286012021, "ax_mps2": -4.67038305990035}, {"id": 165, "s_m": 16.49586538175013, "d_m": 0.0, "x_m": -7.414502765771905, "y_m": -6.3837771118115745, "d_right": 1.8583167656300106, "d_left": 0.8925678758818715, "psi_rad": 1.361362949946184, "kappa_radpm": -0.08073632591400803, "vx_mps": 9.764742735621416, "ax_mps2": -4.618691349436193}, {"id": 166, "s_m": 16.595840323457704, "d_m": 0.0, "x_m": -7.393321320353624, "y_m": -6.286074243514863, "d_right": 1.837095577575242, "d_left": 0.9136635949996889, "psi_rad": 1.3532265450476646, "kappa_radpm": -0.08203555739416928, "vx_mps": 9.717339856978395, "ax_mps2": -4.568373033693152}, {"id": 167, "s_m": 16.695815265165283, "d_m": 0.0, "x_m": -7.371338230377381, "y_m": -6.1885437144577455, "d_right": 1.815071833003094, "d_left": 0.9355651803129215, "psi_rad": 1.3449598321454401, "kappa_radpm": -0.08333721371880155, "vx_mps": 9.67022482885155, "ax_mps2": -4.5191574680652975}, {"id": 168, "s_m": 16.79579020687286, "d_m": 0.0, "x_m": -7.34854445503263, "y_m": -6.0912045854765715, "d_right": 1.7922368081560895, "d_left": 0.9582824324532317, "psi_rad": 1.3365630284446701, "kappa_radpm": -0.0846440571447255, "vx_mps": 9.623390422905153, "ax_mps2": -4.471367981717961}, {"id": 169, "s_m": 16.895765148580434, "d_m": 0.0, "x_m": -7.324926563126641, "y_m": -5.994056779661429, "d_right": 1.76857785700772, "d_left": 0.9818301613609001, "psi_rad": 1.3280351697629915, "kappa_radpm": -0.08595255020510445, "vx_mps": 9.576825868992914, "ax_mps2": -4.4245461507602055}, {"id": 170, "s_m": 16.99574009028801, "d_m": 0.0, "x_m": -7.300476072073665, "y_m": -5.897120774167843, "d_right": 1.7440871147915413, "d_left": 1.006217823407999, "psi_rad": 1.319376541761613, "kappa_radpm": -0.08726755329810541, "vx_mps": 9.530524971794703, "ax_mps2": -4.378933649224027}, {"id": 171, "s_m": 17.09571503199559, "d_m": 0.0, "x_m": -7.275179371446219, "y_m": -5.8003963457423104, "d_right": 1.7187520815307626, "d_left": 1.0314605293483727, "psi_rad": 1.3105858622830002, "kappa_radpm": -0.08858638906481688, "vx_mps": 9.484478845216398, "ax_mps2": -4.334324922574006}, {"id": 172, "s_m": 17.195689973703164, "d_m": 0.0, "x_m": -7.249028557468508, "y_m": -5.7039053708419605, "d_right": 1.6925658999056459, "d_left": 1.057567399772047, "psi_rad": 1.3016634132456966, "kappa_radpm": -0.08991126661738359, "vx_mps": 9.438680585887273, "ax_mps2": -4.291068948863977}, {"id": 173, "s_m": 17.29566491541074, "d_m": 0.0, "x_m": -7.2220098373283435, "y_m": -5.607647570532632, "d_right": 1.6655163385684768, "d_left": 1.0845538511098813, "psi_rad": 1.292608001731296, "kappa_radpm": -0.09123827475757221, "vx_mps": 9.393119421488986, "ax_mps2": -4.248554084285048}, {"id": 174, "s_m": 17.39563985711832, "d_m": 0.0, "x_m": -7.194115957074265, "y_m": -5.511646189902799, "d_right": 1.637597795464557, "d_left": 1.1124286276823112, "psi_rad": 1.2834199768345629, "kappa_radpm": -0.09257423234571557, "vx_mps": 9.347790892639704, "ax_mps2": -4.206891207405575}, {"id": 175, "s_m": 17.495614798825894, "d_m": 0.0, "x_m": -7.165332934635061, "y_m": -5.415900967496647, "d_right": 1.6087984803338575, "d_left": 1.1454893128759793, "psi_rad": 1.2740974826742264, "kappa_radpm": -0.0939179052681161, "vx_mps": 9.302689243764775, "ax_mps2": -4.1662706707385215}, {"id": 176, "s_m": 17.59558974053347, "d_m": 0.0, "x_m": -7.135654151579981, "y_m": -5.320436527641571, "d_right": 1.5791142785705843, "d_left": 1.1869173963987536, "psi_rad": 1.2646407853977646, "kappa_radpm": -0.09526713018554425, "vx_mps": 9.257806534550541, "ax_mps2": -4.127288264159286}, {"id": 177, "s_m": 17.69556468224105, "d_m": 0.0, "x_m": -7.105065433255345, "y_m": -5.225252677856011, "d_right": 1.5485340954677285, "d_left": 1.2358849970132735, "psi_rad": 1.2550488392086723, "kappa_radpm": -0.0966150221241248, "vx_mps": 9.213128188836151, "ax_mps2": -4.088740019531065}, {"id": 178, "s_m": 17.795539623948624, "d_m": 0.0, "x_m": -7.073560922027811, "y_m": -5.130375247371486, "d_right": 1.5170557770546687, "d_left": 1.2829900936751302, "psi_rad": 1.245322186444549, "kappa_radpm": -0.0979755860722986, "vx_mps": 9.1686524600787, "ax_mps2": -4.050410143992365}, {"id": 179, "s_m": 17.8955145656562, "d_m": 0.0, "x_m": -7.0411263088412595, "y_m": -5.035804314258006, "d_right": 1.4846693562592441, "d_left": 1.3154136444304367, "psi_rad": 1.235458051209008, "kappa_radpm": -0.09935145950483038, "vx_mps": 9.124379918527746, "ax_mps2": -4.012693323362878}, {"id": 180, "s_m": 17.995489507363775, "d_m": 0.0, "x_m": -7.007756354110128, "y_m": -4.941566972118893, "d_right": 1.4513749961151783, "d_left": 1.348796049024132, "psi_rad": 1.2254564312251024, "kappa_radpm": -0.1007380670496137, "vx_mps": 9.080306786416703, "ax_mps2": -3.9758246933599595}, {"id": 181, "s_m": 18.095464449071354, "d_m": 0.0, "x_m": -6.97343651287721, "y_m": -4.847663659848385, "d_right": 1.417164310023673, "d_left": 1.3831542729889705, "psi_rad": 1.2153151619301086, "kappa_radpm": -0.10213266547995523, "vx_mps": 9.036426597473627, "ax_mps2": -3.9424904892328305}, {"id": 182, "s_m": 18.19543939077893, "d_m": 0.0, "x_m": -6.9381622511540355, "y_m": -4.75412256307324, "d_right": 1.3820405929105284, "d_left": 1.418495534448786, "psi_rad": 1.2050351221125148, "kappa_radpm": -0.10350276283184871, "vx_mps": 8.992702882773418, "ax_mps2": -3.916163484165023}, {"id": 183, "s_m": 18.295414332486505, "d_m": 0.0, "x_m": -6.9019192804349325, "y_m": -4.6609444502571264, "d_right": 1.3459983570305665, "d_left": 1.454836714618534, "psi_rad": 1.1946220261987592, "kappa_radpm": -0.1048056969635665, "vx_mps": 8.949059654832338, "ax_mps2": -3.892106893823984}, {"id": 184, "s_m": 18.395389274194084, "d_m": 0.0, "x_m": -6.864704866791008, "y_m": -4.568158369961177, "d_right": 1.3090461979819743, "d_left": 1.492183656456552, "psi_rad": 1.1840790607797933, "kappa_radpm": -0.10609953076027095, "vx_mps": 8.905472608800077, "ax_mps2": -3.872655136320674}, {"id": 185, "s_m": 18.49536421590166, "d_m": 0.0, "x_m": -6.826505456177015, "y_m": -4.475765165201536, "d_right": 1.2707403482577901, "d_left": 1.5305526840023922, "psi_rad": 1.1734086897002505, "kappa_radpm": -0.10735524433548851, "vx_mps": 8.861890624639532, "ax_mps2": -3.853756818074645}, {"id": 186, "s_m": 18.595339157609235, "d_m": 0.0, "x_m": -6.787319664357185, "y_m": -4.3837944307873435, "d_right": 1.231316235989944, "d_left": 1.569948728713035, "psi_rad": 1.1626129224074715, "kappa_radpm": -0.1086237590529691, "vx_mps": 8.818307502950306, "ax_mps2": -3.835376883455919}, {"id": 187, "s_m": 18.695314099316814, "d_m": 0.0, "x_m": -6.747134317874183, "y_m": -4.292247593696907, "d_right": 1.1909211539235696, "d_left": 1.6099995580973658, "psi_rad": 1.1516888859854981, "kappa_radpm": -0.10990587052478373, "vx_mps": 8.774717320568763, "ax_mps2": -3.817295061492053}, {"id": 188, "s_m": 18.79528904102439, "d_m": 0.0, "x_m": -6.705948611790901, "y_m": -4.201154709052709, "d_right": 1.1495656125334206, "d_left": 1.650959292582785, "psi_rad": 1.1406366657571145, "kappa_radpm": -0.11120477706089052, "vx_mps": 8.73111655822913, "ax_mps2": -3.799374346271404}, {"id": 189, "s_m": 18.895263982731965, "d_m": 0.0, "x_m": -6.663749549733829, "y_m": -4.110518549431322, "d_right": 1.1072515516198074, "d_left": 1.692982821471766, "psi_rad": 1.129452810992714, "kappa_radpm": -0.11252266322564727, "vx_mps": 8.687503202635117, "ax_mps2": -3.780900692475691}, {"id": 190, "s_m": 18.99523892443954, "d_m": 0.0, "x_m": -6.620536810220268, "y_m": -4.020369628876693, "d_right": 1.0639969215794138, "d_left": 1.7360741980382555, "psi_rad": 1.1181369512275232, "kappa_radpm": -0.11386931227858595, "vx_mps": 8.643883458442197, "ax_mps2": -3.761192996550082}, {"id": 191, "s_m": 19.09521386614712, "d_m": 0.0, "x_m": -6.576297370906601, "y_m": -3.9307119397669235, "d_right": 1.019812032573729, "d_left": 1.7802507667965521, "psi_rad": 1.1066833619673009, "kappa_radpm": -0.11525424135579374, "vx_mps": 8.600271573733503, "ax_mps2": -3.7413309749175836}, {"id": 192, "s_m": 19.195188807854695, "d_m": 0.0, "x_m": -6.531031135816358, "y_m": -3.84157653157458, "d_right": 0.9751648978454454, "d_left": 1.8255168971694693, "psi_rad": 1.0950911759592832, "kappa_radpm": -0.1166636120071719, "vx_mps": 8.556669471804803, "ax_mps2": -3.720879195498731}, {"id": 193, "s_m": 19.29516374956227, "d_m": 0.0, "x_m": -6.484725116626108, "y_m": -3.752968942885193, "d_right": 0.9310692035967091, "d_left": 1.8718901390896228, "psi_rad": 1.08335549071011, "kappa_radpm": -0.11810377177293281, "vx_mps": 8.513084228901675, "ax_mps2": -3.6993896131945294}, {"id": 194, "s_m": 19.39513869126985, "d_m": 0.0, "x_m": -6.437379248081029, "y_m": -3.664920124264032, "d_right": 0.8948834318041492, "d_left": 1.9193754018073714, "psi_rad": 1.0714754052654292, "kappa_radpm": -0.11958134365164722, "vx_mps": 8.469528355611601, "ax_mps2": -3.675479737272941}, {"id": 195, "s_m": 19.495113632977425, "d_m": 0.0, "x_m": -6.388981015412046, "y_m": -3.577438027950976, "d_right": 0.8675837439341195, "d_left": 1.9684365894646112, "psi_rad": 1.0594433567284194, "kappa_radpm": -0.12111590188829516, "vx_mps": 8.426031024245429, "ax_mps2": -3.650873110761248}, {"id": 196, "s_m": 19.595088574685, "d_m": 0.0, "x_m": -6.3395303679142545, "y_m": -3.4905541864109995, "d_right": 0.8344692939423093, "d_left": 2.022262101498751, "psi_rad": 1.047257394243788, "kappa_radpm": -0.12268415752325942, "vx_mps": 8.382601455913687, "ax_mps2": -3.6256387949924855}, {"id": 197, "s_m": 19.695063516392576, "d_m": 0.0, "x_m": -6.289014900385976, "y_m": -3.40427846017031, "d_right": 0.783331337172805, "d_left": 2.080493508698157, "psi_rad": 1.0349117868131585, "kappa_radpm": -0.12428562846277982, "vx_mps": 8.339248234362739, "ax_mps2": -3.596664770072807}, {"id": 198, "s_m": 19.795038458100155, "d_m": 0.0, "x_m": -6.237433371618464, "y_m": -3.318640471080842, "d_right": 0.7312323778190226, "d_left": 2.142770332003463, "psi_rad": 1.0224048334878606, "kappa_radpm": -0.12596490313493997, "vx_mps": 8.296017623707328, "ax_mps2": -3.55916122180678}, {"id": 199, "s_m": 19.89501339980773, "d_m": 0.0, "x_m": -6.184774838888229, "y_m": -3.2336547699285516, "d_right": 0.6782736900043684, "d_left": 2.2087590264668555, "psi_rad": 1.0097202279664061, "kappa_radpm": -0.12779123857419405, "vx_mps": 8.253014875880607, "ax_mps2": -3.5227281627824367}, {"id": 200, "s_m": 19.994988341515306, "d_m": 0.0, "x_m": -6.131039663761262, "y_m": -3.1493563072512374, "d_right": 0.6311745143067707, "d_left": 2.275513440395369, "psi_rad": 0.9968524286947913, "kappa_radpm": -0.12962666603011813, "vx_mps": 8.210230536108897, "ax_mps2": -3.494626915494866}, {"id": 201, "s_m": 20.094963283222885, "d_m": 0.0, "x_m": -6.076214213608676, "y_m": -3.065757454107403, "d_right": 0.595991429198814, "d_left": 2.3303417210402673, "psi_rad": 0.9838056362799722, "kappa_radpm": -0.1313652084325136, "vx_mps": 8.167566051873857, "ax_mps2": -3.453348572682864}, {"id": 202, "s_m": 20.19493822493046, "d_m": 0.0, "x_m": -6.020290641425273, "y_m": -2.9828785837918437, "d_right": 0.5692240804329894, "d_left": 2.386387894277589, "psi_rad": 0.9705816735734064, "kappa_radpm": -0.13332399214310675, "vx_mps": 8.125185448174244, "ax_mps2": -3.3734486667864325}, {"id": 203, "s_m": 20.294913166638036, "d_m": 0.0, "x_m": -5.963265986827932, "y_m": -2.900751424522702, "d_right": 0.5171257765873852, "d_left": 2.4436621824999976, "psi_rad": 0.9571260098475463, "kappa_radpm": -0.13588309180351735, "vx_mps": 8.083570863151479, "ax_mps2": -3.317947474482748}, {"id": 204, "s_m": 20.394888108345615, "d_m": 0.0, "x_m": -5.905149951728948, "y_m": -2.819433037685142, "d_right": 0.4775940287598615, "d_left": 2.50167501389528, "psi_rad": 0.9434172096892812, "kappa_radpm": -0.13809525892367985, "vx_mps": 8.042430894256482, "ax_mps2": -3.317204474412038}, {"id": 205, "s_m": 20.49486305005319, "d_m": 0.0, "x_m": -5.8459140598559, "y_m": -2.7389190074517704, "d_right": 0.45552415661161927, "d_left": 2.5606913523696258, "psi_rad": 0.9295593315783799, "kappa_radpm": -0.13906515963204905, "vx_mps": 8.00108867848421, "ax_mps2": -3.3158738419053275}, {"id": 206, "s_m": 20.594837991760766, "d_m": 0.0, "x_m": -5.785536334911774, "y_m": -2.6591990954435265, "d_right": 0.4278405942193012, "d_left": 2.6210043328350197, "psi_rad": 0.9155976784361983, "kappa_radpm": -0.14093799498606793, "vx_mps": 7.9595484452863206, "ax_mps2": -3.1158694419488278}, {"id": 207, "s_m": 20.69481293346834, "d_m": 0.0, "x_m": -5.724039155088678, "y_m": -2.5803386444321426, "d_right": 0.40098499426373746, "d_left": 2.6825997594266964, "psi_rad": 0.901286913795289, "kappa_radpm": -0.1454875956014484, "vx_mps": 7.920315253902801, "ax_mps2": -2.843842339796683}, {"id": 208, "s_m": 20.79478787517592, "d_m": 0.0, "x_m": -5.661430214506576, "y_m": -2.502418687045788, "d_right": 0.37832308205940757, "d_left": 2.7454799992981447, "psi_rad": 0.8864628500236418, "kappa_radpm": -0.15115910804099716, "vx_mps": 7.88433686348522, "ax_mps2": -2.642778367944473}, {"id": 209, "s_m": 20.894762816883496, "d_m": 0.0, "x_m": -5.597663157866416, "y_m": -2.425465967408405, "d_right": 0.37988640423875514, "d_left": 2.8090575266896076, "psi_rad": 0.8711155971019022, "kappa_radpm": -0.15568413644211457, "vx_mps": 7.850754393709522, "ax_mps2": -2.6326068060316827}, {"id": 210, "s_m": 20.99473775859107, "d_m": 0.0, "x_m": -5.5327321247509005, "y_m": -2.3495376595032127, "d_right": 0.3876307691295461, "d_left": 2.873818485318949, "psi_rad": 0.8555769935428778, "kappa_radpm": -0.1516750324935275, "vx_mps": 7.8171577396394785, "ax_mps2": -2.94456927545656}, {"id": 211, "s_m": 21.09471270029865, "d_m": 0.0, "x_m": -5.466609769308149, "y_m": -2.2745438611092816, "d_right": 0.39388465964308217, "d_left": 2.939980178917094, "psi_rad": 0.8409715707000749, "kappa_radpm": -0.14057271214469236, "vx_mps": 7.779408000810216, "ax_mps2": -3.717417073407553}, {"id": 212, "s_m": 21.194687642006226, "d_m": 0.0, "x_m": -5.399319738430752, "y_m": -2.200360832277827, "d_right": 0.4159469852113693, "d_left": 3.007526605423865, "psi_rad": 0.8272574390448765, "kappa_radpm": -0.13679987057360246, "vx_mps": 7.731487032430222, "ax_mps2": -3.8453320276793503}, {"id": 213, "s_m": 21.2946625837138, "d_m": 0.0, "x_m": -5.331099703858452, "y_m": -2.1271986274871333, "d_right": 0.4384728454707157, "d_left": 3.0755888526748856, "psi_rad": 0.813334943104594, "kappa_radpm": -0.14206410558902183, "vx_mps": 7.681602569907509, "ax_mps2": -2.3940357193252835}, {"id": 214, "s_m": 21.39463752542138, "d_m": 0.0, "x_m": -5.262002592679106, "y_m": -2.055188758346305, "d_right": 0.4592771898502175, "d_left": 3.144538184311251, "psi_rad": 0.7982978462578396, "kappa_radpm": -0.1679908666065245, "vx_mps": 7.650381093712837, "ax_mps2": -0.22608598640388386}, {"id": 215, "s_m": 21.494612467128956, "d_m": 0.0, "x_m": -5.191673933365168, "y_m": -1.9843153960416176, "d_right": 0.4927045168092553, "d_left": 3.171604147821859, "psi_rad": 0.7795935200150265, "kappa_radpm": -0.20518739375593353, "vx_mps": 7.6474260383749755, "ax_mps2": -0.22608598640388386}, {"id": 216, "s_m": 21.59458740883653, "d_m": 0.0, "x_m": -5.11986038526772, "y_m": -1.9148119236594832, "d_right": 0.5134539173486948, "d_left": 3.108344749045966, "psi_rad": 0.7587685354106679, "kappa_radpm": -0.19233856937095795, "vx_mps": 7.644469840727499, "ax_mps2": 0.5342230064033805}, {"id": 217, "s_m": 21.694562350544107, "d_m": 0.0, "x_m": -5.046599189109092, "y_m": -1.8465812431825572, "d_right": 0.5324216346915066, "d_left": 3.0484899456085346, "psi_rad": 0.7416366891791487, "kappa_radpm": -0.15117125810048948, "vx_mps": 7.651453258933257, "ax_mps2": 2.9233942885844137}, {"id": 218, "s_m": 21.794537292251686, "d_m": 0.0, "x_m": -4.972253919545255, "y_m": -1.779432165236585, "d_right": 0.5642330727137824, "d_left": 2.992020084665677, "psi_rad": 0.7278175815426537, "kappa_radpm": -0.1328606225800861, "vx_mps": 7.689555859789261, "ax_mps2": 3.915464593027048}, {"id": 219, "s_m": 21.89451223395926, "d_m": 0.0, "x_m": -4.89722770099392, "y_m": -1.7134616841316006, "d_right": 0.5962522963160213, "d_left": 2.9391624226384803, "psi_rad": 0.7147890842219474, "kappa_radpm": -0.12761819153476311, "vx_mps": 7.74029495624755, "ax_mps2": 4.122507302861195}, {"id": 220, "s_m": 21.994487175666837, "d_m": 0.0, "x_m": -4.821396255916614, "y_m": -1.648479804189755, "d_right": 0.6286403618744075, "d_left": 2.8777401730798347, "psi_rad": 0.7022412047031369, "kappa_radpm": -0.12564282299186355, "vx_mps": 7.793360049702341, "ax_mps2": 4.1341025922912324}, {"id": 221, "s_m": 22.094462117374416, "d_m": 0.0, "x_m": -4.744673645024901, "y_m": -1.584388277430656, "d_right": 0.6567135903895885, "d_left": 2.815171521357207, "psi_rad": 0.6896102201392326, "kappa_radpm": -0.12702068155481844, "vx_mps": 7.846214003941736, "ax_mps2": 3.9422238018962226}, {"id": 222, "s_m": 22.19443705908199, "d_m": 0.0, "x_m": -4.66713608961925, "y_m": -1.521267369538056, "d_right": 0.6874832336896379, "d_left": 2.755829938860959, "psi_rad": 0.6769557810408129, "kappa_radpm": -0.12465381503715657, "vx_mps": 7.896285290263833, "ax_mps2": 3.986630129673116}, {"id": 223, "s_m": 22.294412000789567, "d_m": 0.0, "x_m": -4.588819417921829, "y_m": -1.4591183670296624, "d_right": 0.7270930793544461, "d_left": 2.6999283156367886, "psi_rad": 0.6647244530237392, "kappa_radpm": -0.12007260122820637, "vx_mps": 7.946599751773362, "ax_mps2": 4.173480287536642}, {"id": 224, "s_m": 22.394386942497142, "d_m": 0.0, "x_m": -4.50975720620302, "y_m": -1.3979120906619584, "d_right": 0.756305109370192, "d_left": 2.647652118442642, "psi_rad": 0.6528709999167445, "kappa_radpm": -0.11784991808481153, "vx_mps": 7.99893333587753, "ax_mps2": 4.212269078268946}, {"id": 225, "s_m": 22.49436188420472, "d_m": 0.0, "x_m": -4.429995195329677, "y_m": -1.3376537832702031, "d_right": 0.7960143415983569, "d_left": 2.59921952012474, "psi_rad": 0.6411392864168933, "kappa_radpm": -0.11683960691810999, "vx_mps": 8.05140839995873, "ax_mps2": 4.175248474640106}, {"id": 226, "s_m": 22.594336825912297, "d_m": 0.0, "x_m": -4.349531390081795, "y_m": -1.2783283604840447, "d_right": 0.8284185363071696, "d_left": 2.554833164722232, "psi_rad": 0.6295215917867077, "kappa_radpm": -0.11550351172681153, "vx_mps": 8.103086922195736, "ax_mps2": 4.162206725361327}, {"id": 227, "s_m": 22.694311767619872, "d_m": 0.0, "x_m": -4.268385020158283, "y_m": -1.2199339154280204, "d_right": 0.8658199774261599, "d_left": 2.499156183574726, "psi_rad": 0.6180459552974393, "kappa_radpm": -0.1140767127895326, "vx_mps": 8.154278043956149, "ax_mps2": 4.157734719745798}, {"id": 228, "s_m": 22.79428670932745, "d_m": 0.0, "x_m": -4.1865765056772, "y_m": -1.162468028343345, "d_right": 0.8961848055590552, "d_left": 2.4418222329121986, "psi_rad": 0.6066993611861018, "kappa_radpm": -0.11302612628525671, "vx_mps": 8.205095306614643, "ax_mps2": 4.130413786223649}, {"id": 229, "s_m": 22.894261651035027, "d_m": 0.0, "x_m": -4.104126332589266, "y_m": -1.1059318846973474, "d_right": 0.9315009981123996, "d_left": 2.385550476327816, "psi_rad": 0.5954447561600837, "kappa_radpm": -0.11212274125549224, "vx_mps": 8.25526890813627, "ax_mps2": 4.095440757447739}, {"id": 230, "s_m": 22.994236592742602, "d_m": 0.0, "x_m": -4.021047042257419, "y_m": -1.0503228890588088, "d_right": 0.959670531410936, "d_left": 2.3298532243320436, "psi_rad": 0.584287828826898, "kappa_radpm": -0.11102190232984065, "vx_mps": 8.30471839664818, "ax_mps2": 4.07638273900757}, {"id": 231, "s_m": 23.09421153445018, "d_m": 0.0, "x_m": -3.937353961281868, "y_m": -0.9956383181778133, "d_right": 0.9930714800917074, "d_left": 2.2781407001688816, "psi_rad": 0.5732467089970557, "kappa_radpm": -0.1098587776892935, "vx_mps": 8.353647101778172, "ax_mps2": 4.0639077489849615}, {"id": 232, "s_m": 23.194186476157757, "d_m": 0.0, "x_m": -3.8530663707896, "y_m": -0.941877003720551, "d_right": 1.034108355325859, "d_left": 2.2306881963512613, "psi_rad": 0.562317908753704, "kappa_radpm": -0.10880002798984194, "vx_mps": 8.402142451878944, "ax_mps2": 4.046241137404724}, {"id": 233, "s_m": 23.294161417865332, "d_m": 0.0, "x_m": -3.7681978823672413, "y_m": -0.8890349700182569, "d_right": 1.073905744537326, "d_left": 2.1877678239420515, "psi_rad": 0.5514918848491193, "kappa_radpm": -0.10777349365054135, "vx_mps": 8.4501504853677, "ax_mps2": 4.028389064894664}, {"id": 234, "s_m": 23.394136359572908, "d_m": 0.0, "x_m": -3.682767639381683, "y_m": -0.8371119981744375, "d_right": 1.104314660768556, "d_left": 2.149648504326388, "psi_rad": 0.5407694901423685, "kappa_radpm": -0.10673111467397031, "vx_mps": 8.497677279659221, "ax_mps2": 4.013737002281456}, {"id": 235, "s_m": 23.494111301280487, "d_m": 0.0, "x_m": -3.5967840926599393, "y_m": -0.7861010876248614, "d_right": 1.1417205874601586, "d_left": 2.1153695235960397, "psi_rad": 0.5301509936029323, "kappa_radpm": -0.10568896786861702, "vx_mps": 8.544768305513136, "ax_mps2": 4.0010681701067226}, {"id": 236, "s_m": 23.594086242988062, "d_m": 0.0, "x_m": -3.5102710774791746, "y_m": -0.7360042777672993, "d_right": 1.1788425272539964, "d_left": 2.065422666342292, "psi_rad": 0.5196362987621721, "kappa_radpm": -0.10466977057774529, "vx_mps": 8.591453806489955, "ax_mps2": 3.9886529824535675}, {"id": 237, "s_m": 23.694061184695638, "d_m": 0.0, "x_m": -3.423232838862356, "y_m": -0.6868122549161719, "d_right": 1.2065384920737698, "d_left": 2.0164665041762495, "psi_rad": 0.5092221437705917, "kappa_radpm": -0.10365992630524573, "vx_mps": 8.637743293700956, "ax_mps2": 3.977437603173071}, {"id": 238, "s_m": 23.794036126403217, "d_m": 0.0, "x_m": -3.3356962314739116, "y_m": -0.6385285905510226, "d_right": 1.229791015095692, "d_left": 1.9682525113672324, "psi_rad": 0.4989093144368073, "kappa_radpm": -0.1026597978900514, "vx_mps": 8.68365691358896, "ax_mps2": 3.967339217977021}, {"id": 239, "s_m": 23.894011068110792, "d_m": 0.0, "x_m": -3.2476607366334114, "y_m": -0.5911416004126457, "d_right": 1.2559735228301012, "d_left": 1.9206352544204106, "psi_rad": 0.4886951719027408, "kappa_radpm": -0.1016663294900304, "vx_mps": 8.729213389935213, "ax_mps2": 3.958537199828911}, {"id": 240, "s_m": 23.993986009818368, "d_m": 0.0, "x_m": -3.159157041084185, "y_m": -0.5446565168640954, "d_right": 1.2884469523449227, "d_left": 1.873989521501058, "psi_rad": 0.47858085028312924, "kappa_radpm": -0.10068423805865519, "vx_mps": 8.774433056250674, "ax_mps2": 3.9506194207579908}, {"id": 241, "s_m": 24.093960951525947, "d_m": 0.0, "x_m": -3.0701798690605036, "y_m": -0.49905949532015237, "d_right": 1.3267619446792138, "d_left": 1.8282982593716615, "psi_rad": 0.468563178591644, "kappa_radpm": -0.09970926269445723, "vx_mps": 8.819331116996501, "ax_mps2": 3.9438667827966745}, {"id": 242, "s_m": 24.193935893233522, "d_m": 0.0, "x_m": -2.9807636057176228, "y_m": -0.45435719654819096, "d_right": 1.3617323447582732, "d_left": 1.7835646184319127, "psi_rad": 0.45864373657637003, "kappa_radpm": -0.09874422612096294, "vx_mps": 8.863925600694527, "ax_mps2": 3.9380121083698683}, {"id": 243, "s_m": 24.293910834941098, "d_m": 0.0, "x_m": -2.8908982543193926, "y_m": -0.41053385377970897, "d_right": 1.384591017893055, "d_left": 1.739769687369825, "psi_rad": 0.4488190616258203, "kappa_radpm": -0.09778634834261164, "vx_mps": 8.908231144093863, "ax_mps2": 3.9332303350965363}, {"id": 244, "s_m": 24.393885776648673, "d_m": 0.0, "x_m": -2.8006218746447713, "y_m": -0.3675973616820814, "d_right": 1.4132353265514999, "d_left": 1.6969183631333524, "psi_rad": 0.439091217312809, "kappa_radpm": -0.09683539398939042, "vx_mps": 8.952264018869826, "ax_mps2": 3.9294984485052296}, {"id": 245, "s_m": 24.493860718356252, "d_m": 0.0, "x_m": -2.709919872598173, "y_m": -0.3255302710928809, "d_right": 1.4473364246621498, "d_left": 1.6562631184874026, "psi_rad": 0.4294566024778361, "kappa_radpm": -0.09589116932944337, "vx_mps": 8.996039896543923, "ax_mps2": 3.9267921231424925}, {"id": 246, "s_m": 24.593835660063828, "d_m": 0.0, "x_m": -2.6188338504029187, "y_m": -0.2843414645760161, "d_right": 1.48225665808675, "d_left": 1.6216762998644474, "psi_rad": 0.4199175162853297, "kappa_radpm": -0.09495630098247913, "vx_mps": 9.039573853198384, "ax_mps2": 3.924858487338302}, {"id": 247, "s_m": 24.693810601771403, "d_m": 0.0, "x_m": -2.527344799896147, "y_m": -0.24401210386475497, "d_right": 1.5020118661099522, "d_left": 1.5935352621034484, "psi_rad": 0.4104698462656913, "kappa_radpm": -0.0940288228993043, "vx_mps": 9.082877872370196, "ax_mps2": 3.923821056280619}, {"id": 248, "s_m": 24.793785543478982, "d_m": 0.0, "x_m": -2.435497592374352, "y_m": -0.2045518249806791, "d_right": 1.5271610765150463, "d_left": 1.5721899280135323, "psi_rad": 0.4011163491775771, "kappa_radpm": -0.09310675278803443, "vx_mps": 9.125965045250688, "ax_mps2": 3.9238090693421963}, {"id": 249, "s_m": 24.893760485186558, "d_m": 0.0, "x_m": -2.3432692487395363, "y_m": -0.16594074046282636, "d_right": 1.557458839275889, "d_left": 1.5457027017181377, "psi_rad": 0.39185288299076393, "kappa_radpm": -0.09219216586238199, "vx_mps": 9.168849610125344, "ax_mps2": 3.924615070240712}, {"id": 250, "s_m": 24.993735426894133, "d_m": 0.0, "x_m": -2.250707478222831, "y_m": -0.1281888603804702, "d_right": 1.5926057104210436, "d_left": 1.5081861490745512, "psi_rad": 0.38268365336385, "kappa_radpm": -0.09125596509953762, "vx_mps": 9.211543274546326, "ax_mps2": 3.928674832691357}, {"id": 251, "s_m": 25.093710368601712, "d_m": 0.0, "x_m": -2.1577858609208453, "y_m": -0.09127535799485978, "d_right": 1.6178228813345217, "d_left": 1.4711444064790637, "psi_rad": 0.37360599431081676, "kappa_radpm": -0.09032489208641843, "vx_mps": 9.25408383221226, "ax_mps2": 3.9336883322671543}, {"id": 252, "s_m": 25.193685310309288, "d_m": 0.0, "x_m": -2.0645546493136613, "y_m": -0.05521015140396076, "d_right": 1.6395982434235687, "d_left": 1.4349045800830234, "psi_rad": 0.3646236826286402, "kappa_radpm": -0.08938611909274247, "vx_mps": 9.296483641519556, "ax_mps2": 3.940736598236508}, {"id": 253, "s_m": 25.293660252016863, "d_m": 0.0, "x_m": -1.9709842213073712, "y_m": -0.019971753473386557, "d_right": 1.6625404467777658, "d_left": 1.399522235688351, "psi_rad": 0.35573297943293225, "kappa_radpm": -0.08845386875172113, "vx_mps": 9.338766402498132, "ax_mps2": 3.938516837128653}, {"id": 254, "s_m": 25.39363519372444, "d_m": 0.0, "x_m": -1.8771270864258884, "y_m": 0.014430025372923462, "d_right": 1.6883795360488891, "d_left": 1.365004102774836, "psi_rad": 0.3469371577448763, "kappa_radpm": -0.08752788301571765, "vx_mps": 9.380834925679078, "ax_mps2": 3.913698054109215}, {"id": 255, "s_m": 25.493610135432018, "d_m": 0.0, "x_m": -1.7829506277079241, "y_m": 0.048016988978961235, "d_right": 1.7133875765309887, "d_left": 1.3313272658144057, "psi_rad": 0.33823152114759325, "kappa_radpm": -0.08660921762784626, "vx_mps": 9.422452301417167, "ax_mps2": 3.889131966558249}, {"id": 256, "s_m": 25.593585077139593, "d_m": 0.0, "x_m": -1.6885093009747765, "y_m": 0.08077947811265347, "d_right": 1.7267589397126497, "d_left": 1.2984987717967613, "psi_rad": 0.3296196612519615, "kappa_radpm": -0.08569273824154285, "vx_mps": 9.46362715113931, "ax_mps2": 3.8648139167502427}, {"id": 257, "s_m": 25.69356001884717, "d_m": 0.0, "x_m": -1.5937677879973562, "y_m": 0.112739426832319, "d_right": 1.744929293872929, "d_left": 1.2664954379236597, "psi_rad": 0.32109700841072075, "kappa_radpm": -0.08478331093202332, "vx_mps": 9.504367835256408, "ax_mps2": 3.840739385659975}, {"id": 258, "s_m": 25.793534960554748, "d_m": 0.0, "x_m": -1.4987822061689509, "y_m": 0.1438875086673285, "d_right": 1.7677493923077081, "d_left": 1.2353244706492994, "psi_rad": 0.31266722833147, "kappa_radpm": -0.0838764963974066, "vx_mps": 9.544682464086865, "ax_mps2": 3.816903987201471}, {"id": 259, "s_m": 25.893509902262323, "d_m": 0.0, "x_m": -1.4035152103296722, "y_m": 0.17424550128906777, "d_right": 1.7950599838595396, "d_left": 1.2049626609272759, "psi_rad": 0.30432568528223247, "kappa_radpm": -0.0829767379792759, "vx_mps": 9.5845789081991, "ax_mps2": 3.793303462772703}, {"id": 260, "s_m": 25.9934848439699, "d_m": 0.0, "x_m": -1.3080232499117197, "y_m": 0.203804861025815, "d_right": 1.82464640769092, "d_left": 1.1754169404802481, "psi_rad": 0.29607603786908165, "kappa_radpm": -0.08207905081349172, "vx_mps": 9.624064808210445, "ax_mps2": 3.769933676084331}, {"id": 261, "s_m": 26.093459785677474, "d_m": 0.0, "x_m": -1.2122686740189477, "y_m": 0.23258663328879473, "d_right": 1.8534628412203675, "d_left": 1.1466646224326442, "psi_rad": 0.28791379842775244, "kappa_radpm": -0.08118821471527869, "vx_mps": 9.66314758407687, "ax_mps2": 3.7467906082575415}, {"id": 262, "s_m": 26.193434727385053, "d_m": 0.0, "x_m": -1.116306502449022, "y_m": 0.2605835776892356, "d_right": 1.8747436016154597, "d_left": 1.1187118273500463, "psi_rad": 0.2798424586111903, "kappa_radpm": -0.08029929740853363, "vx_mps": 9.701834443905584, "ax_mps2": 3.723870353171548}, {"id": 263, "s_m": 26.29340966909263, "d_m": 0.0, "x_m": -1.0201001583787825, "y_m": 0.2878156193308923, "d_right": 1.883418659549275, "d_left": 1.0915367853216915, "psi_rad": 0.2718577744999038, "kappa_radpm": -0.0794169872723313, "vx_mps": 9.740132392320064, "ax_mps2": 3.701169113046694}, {"id": 264, "s_m": 26.393384610800204, "d_m": 0.0, "x_m": -0.9237027037700635, "y_m": 0.3142769035097565, "d_right": 1.8965433033412993, "d_left": 1.0651446877156976, "psi_rad": 0.2639630369381938, "kappa_radpm": -0.07853636292342495, "vx_mps": 9.778048238405045, "ax_mps2": 3.6786831942489164}, {"id": 265, "s_m": 26.493359552507783, "d_m": 0.0, "x_m": -0.8270787699452691, "y_m": 0.3399862653504101, "d_right": 1.9140396487309101, "d_left": 1.0395146698419835, "psi_rad": 0.2561542509788355, "kappa_radpm": -0.07766209877651276, "vx_mps": 9.815588603256932, "ax_mps2": 3.6564090033006016}, {"id": 266, "s_m": 26.59333449421536, "d_m": 0.0, "x_m": -0.7302793626024923, "y_m": 0.3649391753504493, "d_right": 1.935788977143029, "d_left": 1.014651014452913, "psi_rad": 0.24843450333539274, "kappa_radpm": -0.07678935751171953, "vx_mps": 9.852759927163325, "ax_mps2": 3.634343043087572}, {"id": 267, "s_m": 26.693309435922934, "d_m": 0.0, "x_m": -0.633270421751283, "y_m": 0.3891534208612338, "d_right": 1.960027459341079, "d_left": 0.9905337412340108, "psi_rad": 0.2408000439128115, "kappa_radpm": -0.07592270865630019, "vx_mps": 9.889568476433714, "ax_mps2": 3.6124819092486655}, {"id": 268, "s_m": 26.793284377630513, "d_m": 0.0, "x_m": -0.5361008322794958, "y_m": 0.4126257272824842, "d_right": 1.983526263778407, "d_left": 0.9671662541539494, "psi_rad": 0.23325376023419175, "kappa_radpm": -0.0750574094306809, "vx_mps": 9.926020349901822, "ax_mps2": 3.590822286738468}, {"id": 269, "s_m": 26.89325931933809, "d_m": 0.0, "x_m": -0.43873791278234664, "y_m": 0.43537288586391953, "d_right": 2.006301071563386, "d_left": 0.9445294288896725, "psi_rad": 0.22579214292707905, "kappa_radpm": -0.07419793947356948, "vx_mps": 9.962121485118669, "ax_mps2": 3.569360946553712}, {"id": 270, "s_m": 26.993234261045664, "d_m": 0.0, "x_m": -0.3412283898410201, "y_m": 0.457392801009584, "d_right": 2.0192339846359184, "d_left": 0.9226258263191326, "psi_rad": 0.21841788360825487, "kappa_radpm": -0.0733396744330892, "vx_mps": 9.997877664254199, "ax_mps2": 3.5480947426105214}, {"id": 271, "s_m": 27.09320920275324, "d_m": 0.0, "x_m": -0.24354100787152705, "y_m": 0.4787013247535139, "d_right": 2.0229842164188456, "d_left": 0.9014371458905753, "psi_rad": 0.211127706853109, "kappa_radpm": -0.07248696918425987, "vx_mps": 10.033294519724011, "ax_mps2": 3.527020608769416}, {"id": 272, "s_m": 27.19318414446082, "d_m": 0.0, "x_m": -0.1457203170909555, "y_m": 0.49929746208988585, "d_right": 2.0309317026503773, "d_left": 0.8809651444111615, "psi_rad": 0.20392411477541494, "kappa_radpm": -0.0716353318654452, "vx_mps": 10.068377539556717, "ax_mps2": 3.5061355559943213}, {"id": 273, "s_m": 27.293159086168394, "d_m": 0.0, "x_m": -0.047736516019701115, "y_m": 0.5191961859658045, "d_right": 2.0430383874455567, "d_left": 0.8611923105326365, "psi_rad": 0.19680405831376824, "kappa_radpm": -0.0707889882877223, "vx_mps": 10.103132072516372, "ax_mps2": 3.485436669642759}, {"id": 274, "s_m": 27.39313402787597, "d_m": 0.0, "x_m": 0.05036802239559786, "y_m": 0.5383975226424036, "d_right": 2.059234282728894, "d_left": 0.8421196382553564, "psi_rad": 0.1897698565436443, "kappa_radpm": -0.069943590070217, "vx_mps": 10.137563332993532, "ax_mps2": 3.464921106875333}, {"id": 275, "s_m": 27.49310896958355, "d_m": 0.0, "x_m": 0.14862163152818644, "y_m": 0.5569156272615834, "d_right": 2.077764024752123, "d_left": 0.8237303703120804, "psi_rad": 0.1828186782721577, "kappa_radpm": -0.06910322165193036, "vx_mps": 10.17167640567755, "ax_mps2": 3.444586094183049}, {"id": 276, "s_m": 27.593083911291124, "d_m": 0.0, "x_m": 0.24698410476183993, "y_m": 0.5747514689382457, "d_right": 2.0956118890211295, "d_left": 0.8059898021596548, "psi_rad": 0.17595266686794253, "kappa_radpm": -0.06826368629865226, "vx_mps": 10.205476250021981, "ax_mps2": 3.4244289250222812}, {"id": 277, "s_m": 27.6930588529987, "d_m": 0.0, "x_m": 0.34548230445047007, "y_m": 0.5919184461580768, "d_right": 2.112790789490037, "d_left": 0.788765084310612, "psi_rad": 0.1691692001164582, "kappa_radpm": -0.06742892134067137, "vx_mps": 10.238967704514181, "ax_mps2": 3.404446957552378}, {"id": 278, "s_m": 27.79303379470628, "d_m": 0.0, "x_m": 0.44407816989158466, "y_m": 0.6084183943092778, "d_right": 2.12930264156465, "d_left": 0.7573054328522149, "psi_rad": 0.16247025307772112, "kappa_radpm": -0.06659489005206273, "vx_mps": 10.272155490759477, "ax_mps2": 3.3846376124726434}, {"id": 279, "s_m": 27.893008736413854, "d_m": 0.0, "x_m": 0.5427970972932409, "y_m": 0.6242640151415382, "d_right": 2.1451597176892023, "d_left": 0.7174926236536373, "psi_rad": 0.15585340321302277, "kappa_radpm": -0.06576537558835754, "vx_mps": 10.305044217389682, "ax_mps2": 3.3649983709503535}, {"id": 280, "s_m": 27.99298367812143, "d_m": 0.0, "x_m": 0.6416031452365966, "y_m": 0.6394579364140184, "d_right": 2.1603648169979217, "d_left": 0.6906267842059253, "psi_rad": 0.1493204651512059, "kappa_radpm": -0.06493650012666875, "vx_mps": 10.337638383805086, "ax_mps2": 3.345526772637276}, {"id": 281, "s_m": 28.092958619829005, "d_m": 0.0, "x_m": 0.7405202544107561, "y_m": 0.6540122212749343, "d_right": 2.174929618334868, "d_left": 0.6761461885754679, "psi_rad": 0.14286920714409757, "kappa_radpm": -0.0641118941997915, "vx_mps": 10.369942383758518, "ax_mps2": 3.326220413769547}, {"id": 282, "s_m": 28.192933561536584, "d_m": 0.0, "x_m": 0.839514571475458, "y_m": 0.6679302190583652, "d_right": 2.1888577046648057, "d_left": 0.6623014905873665, "psi_rad": 0.13650129033432834, "kappa_radpm": -0.06328785265514217, "vx_mps": 10.401960508789564, "ax_mps2": 3.3070769453460955}, {"id": 283, "s_m": 28.29290850324416, "d_m": 0.0, "x_m": 0.9386085960537877, "y_m": 0.6812234100862985, "d_right": 2.20216020957394, "d_left": 0.6490793351217445, "psi_rad": 0.13021466410854554, "kappa_radpm": -0.06246783953948397, "vx_mps": 10.433696951516492, "ax_mps2": 3.2880940713832087}, {"id": 284, "s_m": 28.392883444951735, "d_m": 0.0, "x_m": 1.0377705291230503, "y_m": 0.6938957978068301, "d_right": 2.2148414098764135, "d_left": 0.6364768884414624, "psi_rad": 0.12401084442655619, "kappa_radpm": -0.06164831124623982, "vx_mps": 10.465155808793085, "ax_mps2": 3.2692695472382276}, {"id": 285, "s_m": 28.492858386659314, "d_m": 0.0, "x_m": 1.1370214451066116, "y_m": 0.7059583329640577, "d_right": 2.2269119417274013, "d_left": 0.6244813606275568, "psi_rad": 0.11788795351892079, "kappa_radpm": -0.060832578187912136, "vx_mps": 10.496341084737036, "ax_mps2": 3.250601178004015}, {"id": 286, "s_m": 28.59283332836689, "d_m": 0.0, "x_m": 1.2363315647703597, "y_m": 0.7174156093494496, "d_right": 2.2383766946831454, "d_left": 0.6130894197965209, "psi_rad": 0.11184736924384775, "kappa_radpm": -0.0600172593292524, "vx_mps": 10.527256693636273, "ax_mps2": 3.232086816964942}, {"id": 287, "s_m": 28.692808270074465, "d_m": 0.0, "x_m": 1.335720555040384, "y_m": 0.728278098842365, "d_right": 2.2364785037553747, "d_left": 0.6022888114834506, "psi_rad": 0.1058873781058316, "kappa_radpm": -0.05920551128206039, "vx_mps": 10.557906462739169, "ax_mps2": 3.213724364115865}, {"id": 288, "s_m": 28.792783211782044, "d_m": 0.0, "x_m": 1.4351606206697547, "y_m": 0.7385509251304365, "d_right": 2.2306949395905753, "d_left": 0.5920757408502128, "psi_rad": 0.10000922502448617, "kappa_radpm": -0.058394144292307826, "vx_mps": 10.588294134934245, "ax_mps2": 3.1955117647388995}, {"id": 289, "s_m": 28.89275815348962, "d_m": 0.0, "x_m": 1.5346700389278032, "y_m": 0.7482441289867089, "d_right": 2.2288000790141944, "d_left": 0.5824384606038266, "psi_rad": 0.09421135089654409, "kappa_radpm": -0.05758613040895333, "vx_mps": 10.618423371324681, "ax_mps2": 3.1774470080365314}, {"id": 290, "s_m": 28.992733095197195, "d_m": 0.0, "x_m": 1.6342229634847383, "y_m": 0.7573633068301814, "d_right": 2.2308124070798128, "d_left": 0.5733727461929152, "psi_rad": 0.08849487620595253, "kappa_radpm": -0.05677844337731384, "vx_mps": 10.648297753702652, "ax_mps2": 3.1595281258161463}, {"id": 291, "s_m": 29.09270803690477, "d_m": 0.0, "x_m": 1.7338362988677267, "y_m": 0.7659181136436334, "d_right": 2.2367297515486118, "d_left": 0.5648673297844286, "psi_rad": 0.08285838955594027, "kappa_radpm": -0.0559738985034948, "vx_mps": 10.677920786928173, "ax_mps2": 3.1417531912258307}, {"id": 292, "s_m": 29.19268297861235, "d_m": 0.0, "x_m": 1.8334861137692553, "y_m": 0.7739145650084819, "d_right": 2.2447275809153675, "d_left": 0.556917587937884, "psi_rad": 0.07730289302528992, "kappa_radpm": -0.05516964084849521, "vx_mps": 10.707295901216963, "ax_mps2": 3.1241203175389978}, {"id": 293, "s_m": 29.292657920319925, "d_m": 0.0, "x_m": 1.9331879569959944, "y_m": 0.7813619729683025, "d_right": 2.252176186979599, "d_left": 0.5495127046447954, "psi_rad": 0.07182711476831694, "kappa_radpm": -0.054368322605856195, "vx_mps": 10.736426454341519, "ax_mps2": 3.1066276569834983}, {"id": 294, "s_m": 29.3926328620275, "d_m": 0.0, "x_m": 2.032919778396192, "y_m": 0.7882667216899728, "d_right": 2.259082034937319, "d_left": 0.5388957614891617, "psi_rad": 0.06643194421098886, "kappa_radpm": -0.05356726687803796, "vx_mps": 10.765315733749407, "ax_mps2": 3.0892733996150663}, {"id": 295, "s_m": 29.49260780373508, "d_m": 0.0, "x_m": 2.132695786557653, "y_m": 0.79463782058941, "d_right": 2.26545406042917, "d_left": 0.4998024697806442, "psi_rad": 0.061116241075374056, "kappa_radpm": -0.05276895583259202, "vx_mps": 10.793966958602528, "ax_mps2": 3.0720557722326807}, {"id": 296, "s_m": 29.592582745442655, "d_m": 0.0, "x_m": 2.232495779997124, "y_m": 0.800481974833669, "d_right": 2.2712990515053457, "d_left": 0.4792611187468423, "psi_rad": 0.055880788735623854, "kappa_radpm": -0.05197087767639255, "vx_mps": 10.822383281740944, "ax_mps2": 3.0549730373339554}, {"id": 297, "s_m": 29.69255768715023, "d_m": 0.0, "x_m": 2.3323326444201165, "y_m": 0.8058079294938604, "d_right": 2.276625687658888, "d_left": 0.4739473769761148, "psi_rad": 0.0507245719562206, "kappa_radpm": -0.05117535509071843, "vx_mps": 10.850567791574653, "ax_mps2": 3.038023492108223}, {"id": 298, "s_m": 29.792532628857806, "d_m": 0.0, "x_m": 2.432187993473257, "y_m": 0.8106226659415524, "d_right": 2.281441031318954, "d_left": 0.4691436532632273, "psi_rad": 0.04564827198744914, "kappa_radpm": -0.050380078106995844, "vx_mps": 10.878523513906506, "ax_mps2": 3.021205467465884}, {"id": 299, "s_m": 29.892507570565385, "d_m": 0.0, "x_m": 2.5320734043761277, "y_m": 0.8149347005687281, "d_right": 2.2857535407876957, "d_left": 0.4648407825588162, "psi_rad": 0.0406509893618332, "kappa_radpm": -0.04958717634083218, "vx_mps": 10.906253413689313, "ax_mps2": 3.0045173271030374}, {"id": 300, "s_m": 29.99248251227296, "d_m": 0.0, "x_m": 2.631972275612295, "y_m": 0.8187512488016702, "d_right": 2.289570508155762, "d_left": 0.4610322903211272, "psi_rad": 0.0357333125254411, "kappa_radpm": -0.04879447562081032, "vx_mps": 10.933760396720007, "ax_mps2": 2.987957466599923}, {"id": 301, "s_m": 30.092457453980536, "d_m": 0.0, "x_m": 2.7318948889770955, "y_m": 0.8220806324500098, "d_right": 2.294595240998146, "d_left": 0.4577092869171406, "psi_rad": 0.03089445439306715, "kappa_radpm": -0.04800397069529447, "vx_mps": 10.961047311273633, "ax_mps2": 2.971524312549264}, {"id": 302, "s_m": 30.192432395688115, "d_m": 0.0, "x_m": 2.8318263962063805, "y_m": 0.8249302619236412, "d_right": 2.3034741409691875, "d_left": 0.4548650619136888, "psi_rad": 0.026134915128163128, "kappa_radpm": -0.04721364794046002, "vx_mps": 10.988116949679707, "ax_mps2": 2.9552163217173972}, {"id": 303, "s_m": 30.29240733739569, "d_m": 0.0, "x_m": 2.93177580684094, "y_m": 0.8273082968386402, "d_right": 2.3161714837954257, "d_left": 0.452490968002395, "psi_rad": 0.021454012134318967, "kappa_radpm": -0.04642538287929228, "vx_mps": 11.01497204984345, "ax_mps2": 2.939031980232959}, {"id": 304, "s_m": 30.392382279103266, "d_m": 0.0, "x_m": 3.031729985642412, "y_m": 0.8292223048663845, "d_right": 2.3326310467112545, "d_left": 0.45058008460697035, "psi_rad": 0.016852143431574484, "kappa_radpm": -0.04563757932894305, "vx_mps": 11.041615296714218, "ax_mps2": 2.9229698028049085}, {"id": 305, "s_m": 30.492357220810845, "d_m": 0.0, "x_m": 3.1316966869177647, "y_m": 0.830680310658827, "d_right": 2.35149178857734, "d_left": 0.449123977554151, "psi_rad": 0.012328710252458297, "kappa_radpm": -0.04485169195554485, "vx_mps": 11.068049323703354, "ax_mps2": 2.9070283319655994}, {"id": 306, "s_m": 30.59233216251842, "d_m": 0.0, "x_m": 3.2316644587313164, "y_m": 0.8316900021015641, "d_right": 2.352501362115139, "d_left": 0.4460632253429945, "psi_rad": 0.00788402782031139, "kappa_radpm": -0.0440663290074415, "vx_mps": 11.094276714053573, "ax_mps2": 2.891206137341147}, {"id": 307, "s_m": 30.692307104225996, "d_m": 0.0, "x_m": 3.3316398098135718, "y_m": 0.8322592958311761, "d_right": 2.353070572008611, "d_left": 0.4099412278669018, "psi_rad": 0.0035175860171490214, "kappa_radpm": -0.04328269318169102, "vx_mps": 11.120300002161896, "ax_mps2": 2.8755018149453693}, {"id": 308, "s_m": 30.79228204593357, "d_m": 0.0, "x_m": 3.4316129404862523, "y_m": 0.8323959680255121, "d_right": 2.353207155168949, "d_left": 0.3968188142865188, "psi_rad": -0.0007703570823267558, "kappa_radpm": -0.042499360099469696, "vx_mps": 11.146121674858042, "ax_mps2": 2.8599139864982246}, {"id": 309, "s_m": 30.89225698764115, "d_m": 0.0, "x_m": 3.5315891506247925, "y_m": 0.8321078558902655, "d_right": 2.352918969757644, "d_left": 0.3971068594284543, "psi_rad": -0.004980216301814444, "kappa_radpm": -0.04171757912572334, "vx_mps": 11.171744172640096, "ax_mps2": 2.8444412987655956}, {"id": 310, "s_m": 30.992231929348726, "d_m": 0.0, "x_m": 3.6315602398386635, "y_m": 0.8314027962812155, "d_right": 2.352213820013996, "d_left": 0.3978118757188064, "psi_rad": -0.009111799158900702, "kappa_radpm": -0.04093612634710752, "vx_mps": 11.197169890869182, "ax_mps2": 2.8290824229223914}, {"id": 311, "s_m": 31.0922068710563, "d_m": 0.0, "x_m": 3.7315303095068417, "y_m": 0.8302885717091967, "d_right": 2.3510995046639653, "d_left": 0.39892605591831737, "psi_rad": -0.013165445989331559, "kappa_radpm": -0.04015612289339511, "vx_mps": 11.222401180924809, "ax_mps2": 2.813836053935207}, {"id": 312, "s_m": 31.19218181276388, "d_m": 0.0, "x_m": 3.831492723925349, "y_m": 0.8287730521811099, "d_right": 2.3495838675191303, "d_left": 0.40044157003637776, "psi_rad": -0.01714102657568861, "kappa_radpm": -0.0393764161507248, "vx_mps": 11.24744035132244, "ax_mps2": 2.79870090996524}, {"id": 313, "s_m": 31.292156754471456, "d_m": 0.0, "x_m": 3.931450452163583, "y_m": 0.8268639873457917, "d_right": 2.347674670020185, "d_left": 0.40235065054474634, "psi_rad": -0.021038803735426104, "kappa_radpm": -0.038597977790598044, "vx_mps": 11.272289668794787, "ax_mps2": -1.0986109942018019}, {"id": 314, "s_m": 31.39213169617903, "d_m": 0.0, "x_m": 4.031398359013238, "y_m": 0.824569255866995, "d_right": 2.3453797708306685, "d_left": 0.4046454496628847, "psi_rad": -0.024858721389313, "kappa_radpm": -0.03782023332828705, "vx_mps": 11.262541775150423, "ax_mps2": -7.69203703029728}, {"id": 315, "s_m": 31.49210663788661, "d_m": 0.0, "x_m": 4.1313382465949635, "y_m": 0.8218965931220484, "d_right": 2.342706912682141, "d_left": 0.3895025703890453, "psi_rad": -0.028601001772603496, "kappa_radpm": -0.03704355894981621, "vx_mps": 11.194053123403311, "ax_mps2": -7.841614414175788}, {"id": 316, "s_m": 31.592081579594186, "d_m": 0.0, "x_m": 4.231266473425365, "y_m": 0.8188538633579968, "d_right": 2.339663946073491, "d_left": 0.36950984434688366, "psi_rad": -0.032265533519013845, "kappa_radpm": -0.03626585535239304, "vx_mps": 11.123798606666448, "ax_mps2": -7.989901518006758}, {"id": 317, "s_m": 31.69205652130176, "d_m": 0.0, "x_m": 4.331183771860688, "y_m": 0.8154488200926295, "d_right": 2.3362586280030975, "d_left": 0.3642120438994584, "psi_rad": -0.03585239438514787, "kappa_radpm": -0.03548993970821253, "vx_mps": 11.05175622082981, "ax_mps2": -8.13647297862254}, {"id": 318, "s_m": 31.792031463009337, "d_m": 0.0, "x_m": 4.431087817549623, "y_m": 0.8116892931004014, "d_right": 2.332498780151496, "d_left": 0.36796388092541876, "psi_rad": -0.03936205567941142, "kappa_radpm": -0.03472110247120408, "vx_mps": 10.977906391528592, "ax_mps2": -8.280608377193206}, {"id": 319, "s_m": 31.892006404716916, "d_m": 0.0, "x_m": 4.530978633864876, "y_m": 0.8075829802757779, "d_right": 2.3283921016342872, "d_left": 0.37206161968550133, "psi_rad": -0.04279488667937903, "kappa_radpm": -0.03394954936969417, "vx_mps": 10.902234727868317, "ax_mps2": -8.423416194706041}, {"id": 320, "s_m": 31.99198134642449, "d_m": 0.0, "x_m": 4.630855276817891, "y_m": 0.8031376690587849, "d_right": 2.32646831457332, "d_left": 0.3764974970917615, "psi_rad": -0.046149157463221346, "kappa_radpm": -0.03315265370951381, "vx_mps": 10.824715283805352, "ax_mps2": -8.567516123062877}, {"id": 321, "s_m": 32.09195628813207, "d_m": 0.0, "x_m": 4.730715652263337, "y_m": 0.7983613923623507, "d_right": 2.3285076882933886, "d_left": 0.3812634561983407, "psi_rad": -0.04942400581005035, "kappa_radpm": -0.032386741657569704, "vx_mps": 10.745296046432845, "ax_mps2": -8.706298780247963}, {"id": 322, "s_m": 32.191931229839646, "d_m": 0.0, "x_m": 4.830561810051177, "y_m": 0.7932614208082377, "d_right": 2.334507257914072, "d_left": 0.37381617728513905, "psi_rad": -0.05263487010636014, "kappa_radpm": -0.031845892982845396, "vx_mps": 10.663984419502741, "ax_mps2": -8.817512835724227}, {"id": 323, "s_m": 32.29190617154722, "d_m": 0.0, "x_m": 4.930388435155505, "y_m": 0.7878437354381352, "d_right": 2.3444418806645575, "d_left": 0.3479332081359325, "psi_rad": -0.055791968217184795, "kappa_radpm": -0.031367364262140825, "vx_mps": 10.580997260933518, "ax_mps2": -8.920730903836736}, {"id": 324, "s_m": 32.3918811132548, "d_m": 0.0, "x_m": 5.030200364846757, "y_m": 0.7821122256824575, "d_right": 2.353080130579488, "d_left": 0.35011880526609496, "psi_rad": -0.05892837069906198, "kappa_radpm": -0.03137545335811379, "vx_mps": 10.496370988664724, "ax_mps2": -8.968903318024765}, {"id": 325, "s_m": 32.491856054962376, "d_m": 0.0, "x_m": 5.129991037129601, "y_m": 0.7760678271866693, "d_right": 2.347033689028186, "d_left": 0.3551737319469054, "psi_rad": -0.06206558305156551, "kappa_radpm": -0.031401672609455734, "vx_mps": 10.41059425579931, "ax_mps2": -9.015481782630966}, {"id": 326, "s_m": 32.59183099666995, "d_m": 0.0, "x_m": 5.229765939144315, "y_m": 0.7697097435706708, "d_right": 2.3406734019332336, "d_left": 0.36147601752318076, "psi_rad": -0.0652138134911413, "kappa_radpm": -0.031577792101000396, "vx_mps": 10.323653821564978, "ax_mps2": -9.046341443255939}, {"id": 327, "s_m": 32.69180593837753, "d_m": 0.0, "x_m": 5.329515625856992, "y_m": 0.7630370118882105, "d_right": 2.333998195156175, "d_left": 0.3680907530057334, "psi_rad": -0.0683796421988625, "kappa_radpm": -0.031751099524452625, "vx_mps": 10.23567356408949, "ax_mps2": -9.078274663761226}, {"id": 328, "s_m": 32.791780880085106, "d_m": 0.0, "x_m": 5.429247786613547, "y_m": 0.7560474550124263, "d_right": 2.327005988171752, "d_left": 0.37502117571639954, "psi_rad": -0.07156013709687459, "kappa_radpm": -0.03187296172474737, "vx_mps": 10.146615857022015, "ax_mps2": -9.116266585339199}, {"id": 329, "s_m": 32.89175582179268, "d_m": 0.0, "x_m": 5.52895238645201, "y_m": 0.7487404954232083, "d_right": 2.323034205938094, "d_left": 0.3597494189398194, "psi_rad": -0.07475179932948128, "kappa_radpm": -0.0318638337205454, "vx_mps": 10.056391843452136, "ax_mps2": -9.16764683628974}, {"id": 330, "s_m": 32.99173076350026, "d_m": 0.0, "x_m": 5.628633294805179, "y_m": 0.7411173647570077, "d_right": 2.3230443366290197, "d_left": 0.34074901258901014, "psi_rad": -0.07788391041691822, "kappa_radpm": -0.030794218088536374, "vx_mps": 9.964835522623702, "ax_mps2": -9.325392148600242}, {"id": 331, "s_m": 33.091705705207836, "d_m": 0.0, "x_m": 5.728294888912825, "y_m": 0.7331870240061569, "d_right": 2.3270458778760634, "d_left": 0.34865610900048943, "psi_rad": -0.08091042139850235, "kappa_radpm": -0.030030801202295097, "vx_mps": 9.870832584945909, "ax_mps2": -9.320639304324526}, {"id": 332, "s_m": 33.19168064691541, "d_m": 0.0, "x_m": 5.827923734448694, "y_m": 0.7249546964005469, "d_right": 2.335021648175599, "d_left": 0.3568682290158996, "psi_rad": -0.08400608677565735, "kappa_radpm": -0.03190151144373428, "vx_mps": 9.775974385081808, "ax_mps2": -9.182367216144687}, {"id": 333, "s_m": 33.29165558862299, "d_m": 0.0, "x_m": 5.927538776401504, "y_m": 0.7164035466136996, "d_right": 2.3376649310969224, "d_left": 0.36539976956456943, "psi_rad": -0.08728985691303914, "kappa_radpm": -0.03392582119287349, "vx_mps": 9.681614634111003, "ax_mps2": -8.92752072814854}, {"id": 334, "s_m": 33.391630530330566, "d_m": 0.0, "x_m": 6.0271115159838144, "y_m": 0.707513932621656, "d_right": 2.3287686516920427, "d_left": 0.3742736249544126, "psi_rad": -0.09084908609833597, "kappa_radpm": -0.03728101371356313, "vx_mps": 9.588983532922175, "ax_mps2": -8.683163940634484}, {"id": 335, "s_m": 33.49160547203814, "d_m": 0.0, "x_m": 6.126662943078746, "y_m": 0.6982520905274218, "d_right": 2.3194998208573443, "d_left": 0.38352081325227827, "psi_rad": -0.09474424009309379, "kappa_radpm": -0.040632793729493466, "vx_mps": 9.498021245346221, "ax_mps2": -8.45194249785374}, {"id": 336, "s_m": 33.59158041374572, "d_m": 0.0, "x_m": 6.226164375355412, "y_m": 0.6885870929838642, "d_right": 2.31395539507239, "d_left": 0.36249098793720846, "psi_rad": -0.09897194334013504, "kappa_radpm": -0.043946713995844974, "vx_mps": 9.408636599421337, "ax_mps2": -8.229878852821633}, {"id": 337, "s_m": 33.691555355453296, "d_m": 0.0, "x_m": 6.325632733099412, "y_m": 0.6784839715099615, "d_right": 2.312283824714699, "d_left": 0.3515807617320907, "psi_rad": -0.10353140514658832, "kappa_radpm": -0.047261972036037894, "vx_mps": 9.320776756409744, "ax_mps2": -8.015449871515292}, {"id": 338, "s_m": 33.79153029716087, "d_m": 0.0, "x_m": 6.425042258044326, "y_m": 0.6679120160800959, "d_right": 2.314460773661915, "d_left": 0.36216582618307797, "psi_rad": -0.1084226534244892, "kappa_radpm": -0.05059216445218742, "vx_mps": 9.234402583572948, "ax_mps2": -7.809619722071477}, {"id": 339, "s_m": 33.89150523886845, "d_m": 0.0, "x_m": 6.524406604949056, "y_m": 0.656836322266222, "d_right": 2.3204426076300106, "d_left": 0.37325663084051186, "psi_rad": -0.11364733392932558, "kappa_radpm": -0.053922542942428583, "vx_mps": 9.149462198542263, "ax_mps2": -7.611948156044158}, {"id": 340, "s_m": 33.99148018057602, "d_m": 0.0, "x_m": 6.623700676447961, "y_m": 0.6452261922318699, "d_right": 2.316895153176649, "d_left": 0.3848854996259867, "psi_rad": -0.11920454278289627, "kappa_radpm": -0.05725453125619779, "vx_mps": 9.065905932458746, "ax_mps2": -7.422094878867147}, {"id": 341, "s_m": 34.0914551222836, "d_m": 0.0, "x_m": 6.722935316338874, "y_m": 0.6330468299908988, "d_right": 2.3095951544081625, "d_left": 0.39708636952309917, "psi_rad": -0.1250954568582845, "kappa_radpm": -0.060588640287356346, "vx_mps": 8.983685400238866, "ax_mps2": -7.239417576746296}, {"id": 342, "s_m": 34.19143006399118, "d_m": 0.0, "x_m": 6.8220862397613296, "y_m": 0.6202676332464282, "d_right": 2.3060041932761393, "d_left": 0.37459733605397466, "psi_rad": -0.1313195425750422, "kappa_radpm": -0.06392938977802254, "vx_mps": 8.902757026337452, "ax_mps2": -7.063953162866079}, {"id": 343, "s_m": 34.29140500569875, "d_m": 0.0, "x_m": 6.921160980395943, "y_m": 0.6068539735506123, "d_right": 2.3061057487198386, "d_left": 0.3724414237174472, "psi_rad": -0.13787824986093322, "kappa_radpm": -0.0672731482295507, "vx_mps": 8.823074637485266, "ax_mps2": -6.895178620790969}, {"id": 344, "s_m": 34.39137994740633, "d_m": 0.0, "x_m": 7.0201363092347355, "y_m": 0.5927752622494894, "d_right": 2.3098659808909456, "d_left": 0.38653894927407667, "psi_rad": -0.14477109991641512, "kappa_radpm": -0.0706234873477723, "vx_mps": 8.744595810972736, "ax_mps2": -6.733018961133576}, {"id": 345, "s_m": 34.49135488911391, "d_m": 0.0, "x_m": 7.119016091649541, "y_m": 0.5779971346381213, "d_right": 2.3001733137224023, "d_left": 0.4013392074112445, "psi_rad": -0.15199957957673815, "kappa_radpm": -0.07397848702177455, "vx_mps": 8.667276939210563, "ax_mps2": -6.576929304683139}, {"id": 346, "s_m": 34.59132983082148, "d_m": 0.0, "x_m": 7.2177781825490275, "y_m": 0.5624889840168978, "d_right": 2.2902506029221072, "d_left": 0.4168736795508135, "psi_rad": -0.15956349636093492, "kappa_radpm": -0.07734257137668261, "vx_mps": 8.591078703705966, "ax_mps2": -6.426916573209616}, {"id": 347, "s_m": 34.69130477252906, "d_m": 0.0, "x_m": 7.31642236927618, "y_m": 0.5462168199904899, "d_right": 2.283890818997165, "d_left": 0.4204175457144127, "psi_rad": -0.16746444700281637, "kappa_radpm": -0.08071308351106565, "vx_mps": 8.515959844535317, "ax_mps2": -6.282486709887094}, {"id": 348, "s_m": 34.79127971423664, "d_m": 0.0, "x_m": 7.414927718371368, "y_m": 0.5291499405737472, "d_right": 2.2810910863271427, "d_left": 0.41081892726619645, "psi_rad": -0.17570253644215228, "kappa_radpm": -0.08409430453599041, "vx_mps": 8.441883059397279, "ax_mps2": -6.1436770807202645}, {"id": 349, "s_m": 34.89125465594421, "d_m": 0.0, "x_m": 7.5132896801437985, "y_m": 0.5112548491050031, "d_right": 2.281830649439154, "d_left": 0.417981844930376, "psi_rad": -0.18427937255445204, "kappa_radpm": -0.0874834362790031, "vx_mps": 8.36880888015185, "ax_mps2": -6.010050968484943}, {"id": 350, "s_m": 34.99122959765179, "d_m": 0.0, "x_m": 7.6114884888275665, "y_m": 0.49250069863399254, "d_right": 2.2715047963475787, "d_left": 0.43671829194019496, "psi_rad": -0.19319534893439405, "kappa_radpm": -0.09088445723183292, "vx_mps": 8.296701337401554, "ax_mps2": -5.88152959242669}, {"id": 351, "s_m": 35.09120453935937, "d_m": 0.0, "x_m": 7.709514918194454, "y_m": 0.4728546580056515, "d_right": 2.262439383218654, "d_left": 0.45635443804736797, "psi_rad": -0.20245207735432103, "kappa_radpm": -0.09429650032536327, "vx_mps": 8.225523808593117, "ax_mps2": -5.757362383613798}, {"id": 352, "s_m": 35.19117948106694, "d_m": 0.0, "x_m": 7.807350457505153, "y_m": 0.4522856327420531, "d_right": 2.25682677900735, "d_left": 0.46335970391914044, "psi_rad": -0.21205079988697384, "kappa_radpm": -0.09772870910654792, "vx_mps": 8.155247267149532, "ax_mps2": -5.637963380090528}, {"id": 353, "s_m": 35.29115442277452, "d_m": 0.0, "x_m": 7.904980798086755, "y_m": 0.43076160242165656, "d_right": 2.253938983068588, "d_left": 0.45596789196983456, "psi_rad": -0.22199335414548216, "kappa_radpm": -0.10117332516256186, "vx_mps": 8.085836250370265, "ax_mps2": -5.523279723076795}, {"id": 354, "s_m": 35.3911293644821, "d_m": 0.0, "x_m": 8.002388662473384, "y_m": 0.4082511137047406, "d_right": 2.238413955919724, "d_left": 0.4711927944126706, "psi_rad": -0.23228083901492846, "kappa_radpm": -0.10462946348746699, "vx_mps": 8.017254438466036, "ax_mps2": -5.412984210237859}, {"id": 355, "s_m": 35.49110430618967, "d_m": 0.0, "x_m": 8.099554716212644, "y_m": 0.38472319088380624, "d_right": 2.2260643716123054, "d_left": 0.4946329016043151, "psi_rad": -0.24291450000323644, "kappa_radpm": -0.10810059074825498, "vx_mps": 7.949468106064599, "ax_mps2": -5.306391040433947}, {"id": 356, "s_m": 35.59107924789725, "d_m": 0.0, "x_m": 8.196462620398378, "y_m": 0.36014606828151063, "d_right": 2.2170778656295815, "d_left": 0.5191405589866058, "psi_rad": -0.2538965653951841, "kappa_radpm": -0.11159611516945296, "vx_mps": 7.882450818079887, "ax_mps2": -5.203638128994835}, {"id": 357, "s_m": 35.69105418960482, "d_m": 0.0, "x_m": 8.293087590403784, "y_m": 0.3344900156102977, "d_right": 2.2114619542775, "d_left": 0.5201075308898779, "psi_rad": -0.2652287852190738, "kappa_radpm": -0.11511279024843049, "vx_mps": 7.816173236451529, "ax_mps2": -5.10264797268069}, {"id": 358, "s_m": 35.7910291313124, "d_m": 0.0, "x_m": 8.389414415131418, "y_m": 0.30772263784634346, "d_right": 2.2007933834403075, "d_left": 0.5271632392919046, "psi_rad": -0.27691574347251335, "kappa_radpm": -0.11868336362014735, "vx_mps": 7.750631599745602, "ax_mps2": -5.005479288732818}, {"id": 359, "s_m": 35.89100407301998, "d_m": 0.0, "x_m": 8.485412341019565, "y_m": 0.2798155140048957, "d_right": 2.1890325954471708, "d_left": 0.549714529364384, "psi_rad": -0.28896022050512427, "kappa_radpm": -0.12227364712933685, "vx_mps": 7.685795026850244, "ax_mps2": -4.913889942401782}, {"id": 360, "s_m": 35.99097901472755, "d_m": 0.0, "x_m": 8.581067076866082, "y_m": 0.2507354684444886, "d_right": 2.1805734351354893, "d_left": 0.5786541356031119, "psi_rad": -0.30136361226845043, "kappa_radpm": -0.12585313876455145, "vx_mps": 7.621608325915067, "ax_mps2": -4.8259680194777275}, {"id": 361, "s_m": 36.09095395643513, "d_m": 0.0, "x_m": 8.676342512836534, "y_m": 0.2204560509728007, "d_right": 2.1619645926118505, "d_left": 0.6088307043292256, "psi_rad": -0.31412532725988873, "kappa_radpm": -0.1294529203646547, "vx_mps": 7.558039542817834, "ax_mps2": -4.745728293533617}, {"id": 362, "s_m": 36.19092889814271, "d_m": 0.0, "x_m": 8.771224803822465, "y_m": 0.1889440118961625, "d_right": 2.1426684069727484, "d_left": 0.6155101732378658, "psi_rad": -0.3272450629427659, "kappa_radpm": -0.13300272194664126, "vx_mps": 7.495001928737974, "ax_mps2": -4.668444993270846}, {"id": 363, "s_m": 36.29090383985028, "d_m": 0.0, "x_m": 8.865672071738704, "y_m": 0.1561757719781702, "d_right": 2.1265826998701107, "d_left": 0.6281504809288523, "psi_rad": -0.3407202694166789, "kappa_radpm": -0.1365838416685193, "vx_mps": 7.432469231665304, "ax_mps2": -4.595057480745137}, {"id": 364, "s_m": 36.39087878155786, "d_m": 0.0, "x_m": 8.959671627618405, "y_m": 0.12211785544049122, "d_right": 2.1048701075110094, "d_left": 0.6572380547035249, "psi_rad": -0.3545553693638974, "kappa_radpm": -0.14017950060695955, "vx_mps": 7.370401459356912, "ax_mps2": -4.524460411463054}, {"id": 365, "s_m": 36.49085372326544, "d_m": 0.0, "x_m": 9.053175038689576, "y_m": 0.08674958738795112, "d_right": 2.0819048695889237, "d_left": 0.6924985222094677, "psi_rad": -0.3687502635217199, "kappa_radpm": -0.14380963961862708, "vx_mps": 7.308772286800428, "ax_mps2": -4.455944077841822}, {"id": 366, "s_m": 36.59082866497301, "d_m": 0.0, "x_m": 9.146170451372623, "y_m": 0.050036622915524374, "d_right": 2.0621132870030676, "d_left": 0.7022826539737761, "psi_rad": -0.3833119958318414, "kappa_radpm": -0.14748776229836943, "vx_mps": 7.247564200573396, "ax_mps2": -4.390121357166921}, {"id": 367, "s_m": 36.69080360668059, "d_m": 0.0, "x_m": 9.238603548073861, "y_m": 0.011960927373172094, "d_right": 2.0455597599949793, "d_left": 0.7224138220223544, "psi_rad": -0.39824165428689606, "kappa_radpm": -0.1512030954083373, "vx_mps": 7.18675048877371, "ax_mps2": -4.327265604893881}, {"id": 368, "s_m": 36.79077854838817, "d_m": 0.0, "x_m": 9.330462008013045, "y_m": -0.027512592238096503, "d_right": 2.032286118457228, "d_left": 0.7567407749435808, "psi_rad": -0.4135461358879986, "kappa_radpm": -0.15495106218567611, "vx_mps": 7.126299624256912, "ax_mps2": -4.26672845377188}, {"id": 369, "s_m": 36.89075349009574, "d_m": 0.0, "x_m": 9.421685722937468, "y_m": -0.0683988670865953, "d_right": 2.010437103093872, "d_left": 0.7976124334032215, "psi_rad": -0.42922560563021595, "kappa_radpm": -0.15874495212258796, "vx_mps": 7.066188115086411, "ax_mps2": -4.208283557888299}, {"id": 370, "s_m": 36.99072843180332, "d_m": 0.0, "x_m": 9.512261897854875, "y_m": -0.11073374439465793, "d_right": 1.9862275697717287, "d_left": 0.8128798208843172, "psi_rad": -0.4452891004603883, "kappa_radpm": -0.16259031655448294, "vx_mps": 7.00639484121547, "ax_mps2": -4.152071224233926}, {"id": 371, "s_m": 37.0907033735109, "d_m": 0.0, "x_m": 9.602124373971412, "y_m": -0.15452868738755088, "d_right": 1.9597386068038782, "d_left": 0.8399381844904927, "psi_rad": -0.4617371549376901, "kappa_radpm": -0.16648565141857266, "vx_mps": 6.946895890525044, "ax_mps2": -4.09785524094318}, {"id": 372, "s_m": 37.19067831521847, "d_m": 0.0, "x_m": 9.691259484241154, "y_m": -0.19982037133489955, "d_right": 1.9364165247084963, "d_left": 0.8791202180598368, "psi_rad": -0.4785799438357321, "kappa_radpm": -0.1704371921780807, "vx_mps": 6.8876699134115755, "ax_mps2": -4.045658882866819}, {"id": 373, "s_m": 37.29065325692605, "d_m": 0.0, "x_m": 9.7795953243682, "y_m": -0.24661652640638232, "d_right": 1.9163522408352636, "d_left": 0.926144846958517, "psi_rad": -0.49581792951136094, "kappa_radpm": -0.174446123854327, "vx_mps": 6.828694444339145, "ax_mps2": -3.9952029150759687}, {"id": 374, "s_m": 37.39062819863363, "d_m": 0.0, "x_m": 9.867116545964993, "y_m": -0.29495439329572515, "d_right": 1.8914009883162604, "d_left": 0.9568573607465435, "psi_rad": -0.5134628073237186, "kappa_radpm": -0.17852016517243982, "vx_mps": 6.76995032899496, "ax_mps2": -3.9466116609902726}, {"id": 375, "s_m": 37.4906031403412, "d_m": 0.0, "x_m": 9.953745674991652, "y_m": -0.34483766014460393, "d_right": 1.8683591483227617, "d_left": 0.990223049856057, "psi_rad": -0.531515126931807, "kappa_radpm": -0.18265876269186512, "vx_mps": 6.711415865192613, "ax_mps2": -3.8994639941553655}, {"id": 376, "s_m": 37.59057808204878, "d_m": 0.0, "x_m": 10.039465081848924, "y_m": -0.39630393878415543, "d_right": 1.8400345173184076, "d_left": 1.0338494899212032, "psi_rad": -0.5499881878743231, "kappa_radpm": -0.1868733512867838, "vx_mps": 6.653074893952881, "ax_mps2": -3.8540316853509395}, {"id": 377, "s_m": 37.69055302375635, "d_m": 0.0, "x_m": 10.124192016696314, "y_m": -0.4493526339672534, "d_right": 1.8138167996825985, "d_left": 1.0801690471537733, "psi_rad": -0.5688828030699411, "kappa_radpm": -0.1911605056763152, "vx_mps": 6.594906546599576, "ax_mps2": -3.809547508679146}, {"id": 378, "s_m": 37.79052796546393, "d_m": 0.0, "x_m": 10.207905770701506, "y_m": -0.5040213805294557, "d_right": 1.7815123407258822, "d_left": 1.1334996394367258, "psi_rad": -0.5882141595788735, "kappa_radpm": -0.1955402226453931, "vx_mps": 6.536900930728341, "ax_mps2": -3.766566857784599}, {"id": 379, "s_m": 37.89050290717151, "d_m": 0.0, "x_m": 10.290518431748438, "y_m": -0.5603049893406625, "d_right": 1.7519011976927337, "d_left": 1.1714706729418414, "psi_rad": -0.6079837675396655, "kappa_radpm": -0.20000293112691012, "vx_mps": 6.479039216895328, "ax_mps2": -3.7244540116217064}, {"id": 380, "s_m": 37.99047784887908, "d_m": 0.0, "x_m": 10.372005546055151, "y_m": -0.6182408111831292, "d_right": 1.7155734377491716, "d_left": 1.2124714763398106, "psi_rad": -0.6282084210021162, "kappa_radpm": -0.20456665043109792, "vx_mps": 6.421311784102902, "ax_mps2": -3.6837122031285836}, {"id": 381, "s_m": 38.09045279058666, "d_m": 0.0, "x_m": 10.452274254560306, "y_m": -0.6778187325238038, "d_right": 1.682319220582466, "d_left": 1.2618305164210346, "psi_rad": -0.6488898699805947, "kappa_radpm": -0.209223069987685, "vx_mps": 6.363700747450986, "ax_mps2": -3.6428572881097225}, {"id": 382, "s_m": 38.19042773229424, "d_m": 0.0, "x_m": 10.531295486570924, "y_m": -0.7390752087536666, "d_right": 1.6419728233264594, "d_left": 1.3071665968470039, "psi_rad": -0.670047572989982, "kappa_radpm": -0.21401167933516335, "vx_mps": 6.306211090112084, "ax_mps2": -3.6031932464713314}, {"id": 383, "s_m": 38.29040267400181, "d_m": 0.0, "x_m": 10.608971810678936, "y_m": -0.801995172949961, "d_right": 1.6048342486219438, "d_left": 1.3528407099741464, "psi_rad": -0.6916848937405065, "kappa_radpm": -0.21890478766904425, "vx_mps": 6.248827109426093, "ax_mps2": -3.5628623828864865}, {"id": 384, "s_m": 38.39037761570939, "d_m": 0.0, "x_m": 10.68526862757533, "y_m": -0.8666136379308731, "d_right": 1.5710858692512772, "d_left": 1.4059981143704006, "psi_rad": -0.7138235080729074, "kappa_radpm": -0.22395294350630654, "vx_mps": 6.19156251082197, "ax_mps2": -3.523265534548232}, {"id": 385, "s_m": 38.49035255741697, "d_m": 0.0, "x_m": 10.760083409421535, "y_m": -0.9329097659114898, "d_right": 1.5409334306186342, "d_left": 1.4658190420487618, "psi_rad": -0.7364683379607566, "kappa_radpm": -0.22912536011022727, "vx_mps": 6.134408675051125, "ax_mps2": -3.483124870432103}, {"id": 386, "s_m": 38.59032749912454, "d_m": 0.0, "x_m": 10.83337576634074, "y_m": -1.0009169121666455, "d_right": 1.5045099048021249, "d_left": 1.5299437655583223, "psi_rad": -0.7596431252558986, "kappa_radpm": -0.23445973992420702, "vx_mps": 6.077377673041162, "ax_mps2": -3.4438144366101113}, {"id": 387, "s_m": 38.69030244083212, "d_m": 0.0, "x_m": 10.905038246533769, "y_m": -1.070607990640039, "d_right": 1.4644866744652383, "d_left": 1.5816197701314116, "psi_rad": -0.7833528757380392, "kappa_radpm": -0.23992504776245513, "vx_mps": 6.020459208870664, "ax_mps2": -3.4051605868265837}, {"id": 388, "s_m": 38.7902773825397, "d_m": 0.0, "x_m": 10.975023730830143, "y_m": -1.1420133662925716, "d_right": 1.4280645562140226, "d_left": 1.6397181089582307, "psi_rad": -0.8076208317239901, "kappa_radpm": -0.24553103941004292, "vx_mps": 5.963645497791574, "ax_mps2": -3.36694506200084}, {"id": 389, "s_m": 38.89025232424727, "d_m": 0.0, "x_m": 11.043220525097365, "y_m": -1.2150991059283507, "d_right": 1.3955101053590244, "d_left": 1.7035685961757907, "psi_rad": -0.8324519593430213, "kappa_radpm": -0.2512891020039085, "vx_mps": 5.906932143737343, "ax_mps2": -3.3321321864188187}, {"id": 390, "s_m": 38.99022726595485, "d_m": 0.0, "x_m": 11.109574449140561, "y_m": -1.2898913071715254, "d_right": 1.363271680093602, "d_left": 1.7628341034711252, "psi_rad": -0.8578674071521197, "kappa_radpm": -0.25712277724719323, "vx_mps": 5.850263917851835, "ax_mps2": -3.297181080350757}, {"id": 391, "s_m": 39.09020220766243, "d_m": 0.0, "x_m": 11.17396946503258, "y_m": -1.3663471920456385, "d_right": 1.3324779862502067, "d_left": 1.814067612053376, "psi_rad": -0.8838696542188842, "kappa_radpm": -0.26313821404656645, "vx_mps": 5.793644529646629, "ax_mps2": -3.261129141609284}, {"id": 392, "s_m": 39.19017714937, "d_m": 0.0, "x_m": 11.236345017308684, "y_m": -1.444488259814711, "d_right": 1.2842057654055796, "d_left": 1.860848334283198, "psi_rad": -0.9104896215681895, "kappa_radpm": -0.26936997322057815, "vx_mps": 5.737094608269747, "ax_mps2": -3.2246693639130144}, {"id": 393, "s_m": 39.29015209107758, "d_m": 0.0, "x_m": 11.296579718588978, "y_m": -1.5242621507868566, "d_right": 1.2354605031363934, "d_left": 1.8973132764714051, "psi_rad": -0.937736963169026, "kappa_radpm": -0.2758048295781195, "vx_mps": 5.680623406006683, "ax_mps2": -3.18855945900336}, {"id": 394, "s_m": 39.39012703278515, "d_m": 0.0, "x_m": 11.354605185705426, "y_m": -1.60568492702042, "d_right": 1.190582882581756, "d_left": 1.9359159576882845, "psi_rad": -0.9656427133520937, "kappa_radpm": -0.28242741567826035, "vx_mps": 5.624227074788232, "ax_mps2": -3.151469983408488}, {"id": 395, "s_m": 39.49010197449273, "d_m": 0.0, "x_m": 11.410295992688074, "y_m": -1.6886946560282925, "d_right": 1.1500216838706185, "d_left": 1.9673829107324492, "psi_rad": -0.9942157127170406, "kappa_radpm": -0.28928576625527985, "vx_mps": 5.567925478399661, "ax_mps2": -3.106276528132614}, {"id": 396, "s_m": 39.59007691620031, "d_m": 0.0, "x_m": 11.463574335490716, "y_m": -1.7732989388868214, "d_right": 1.1137775868856283, "d_left": 1.9871344643019944, "psi_rad": -1.0235038577927185, "kappa_radpm": -0.296608431975755, "vx_mps": 5.511868512887144, "ax_mps2": -3.06020811473658}, {"id": 397, "s_m": 39.69005185790788, "d_m": 0.0, "x_m": 11.514309662299555, "y_m": -1.8594271811329353, "d_right": 1.0672669445022667, "d_left": 2.000791795816897, "psi_rad": -1.0535312650258897, "kappa_radpm": -0.30417320195294606, "vx_mps": 5.456079750845755, "ax_mps2": -3.0195007336320745}, {"id": 398, "s_m": 39.79002679961546, "d_m": 0.0, "x_m": 11.56241375256312, "y_m": -1.9470779861053924, "d_right": 1.025555839437928, "d_left": 2.014909381635318, "psi_rad": -1.0843220901063249, "kappa_radpm": -0.31178565398664254, "vx_mps": 5.4004682600611, "ax_mps2": -2.975053532286553}, {"id": 399, "s_m": 39.89000174132304, "d_m": 0.0, "x_m": 11.607751456007506, "y_m": -2.0361638210201067, "d_right": 0.9737080092012462, "d_left": 2.010186703867205, "psi_rad": -1.1158845392069434, "kappa_radpm": -0.3197525885632937, "vx_mps": 5.345109523760277, "ax_mps2": -2.926713169133491}, {"id": 400, "s_m": 39.98997668303061, "d_m": 0.0, "x_m": 11.650228055120632, "y_m": -2.126674011020941, "d_right": 0.9254710759402981, "d_left": 2.002153239252676, "psi_rad": -1.1482692068809897, "kappa_radpm": -0.32808548177682906, "vx_mps": 5.290085052627699, "ax_mps2": -2.8739924228260927}, {"id": 401, "s_m": 40.08995162473819, "d_m": 0.0, "x_m": 11.689704391679252, "y_m": -2.2185077445942443, "d_right": 0.8828877038398956, "d_left": 2.000710823906654, "psi_rad": -1.1814950709995347, "kappa_radpm": -0.3368060946215185, "vx_mps": 5.235489032951447, "ax_mps2": -2.7883808241850385}, {"id": 402, "s_m": 40.18992656644577, "d_m": 0.0, "x_m": 11.726072521464944, "y_m": -2.311637964866031, "d_right": 0.8428836129881621, "d_left": 1.9859426619012248, "psi_rad": -1.2156714431292364, "kappa_radpm": -0.3469070088521692, "vx_mps": 5.1819696056077, "ax_mps2": -2.6961183793472494}, {"id": 403, "s_m": 40.28990150815334, "d_m": 0.0, "x_m": 11.759183165863066, "y_m": -2.4059563186123385, "d_right": 0.7998876566408826, "d_left": 1.9737601588918732, "psi_rad": -1.2508731442107615, "kappa_radpm": -0.35744113372358816, "vx_mps": 5.129690091790937, "ax_mps2": -2.5892783796146555}, {"id": 404, "s_m": 40.38987644986092, "d_m": 0.0, "x_m": 11.788908094988107, "y_m": -2.5014166254289854, "d_right": 0.7539352888911931, "d_left": 1.9657036512598802, "psi_rad": -1.2871689196627227, "kappa_radpm": -0.3686791223912389, "vx_mps": 5.078975736079546, "ax_mps2": -2.4736037959042183}, {"id": 405, "s_m": 40.4898513915685, "d_m": 0.0, "x_m": 11.815088741651735, "y_m": -2.597885997968444, "d_right": 0.7048841415652706, "d_left": 1.9524293010898945, "psi_rad": -1.324609620066001, "kappa_radpm": -0.3803824309973555, "vx_mps": 5.030049476603429, "ax_mps2": -2.3677652223043566}, {"id": 406, "s_m": 40.58982633327607, "d_m": 0.0, "x_m": 11.837588651138564, "y_m": -2.6953041952243124, "d_right": 0.6637041397695317, "d_left": 1.9458192309783848, "psi_rad": -1.3632098867710694, "kappa_radpm": -0.3918249513431939, "vx_mps": 4.982766636811746, "ax_mps2": -2.2444007513927793}, {"id": 407, "s_m": 40.68980127498365, "d_m": 0.0, "x_m": 11.856250489054549, "y_m": -2.7935019148136995, "d_right": 0.6301044989101504, "d_left": 1.9373353743710138, "psi_rad": -1.4029767724855304, "kappa_radpm": -0.4040266656170995, "vx_mps": 4.937529310125294, "ax_mps2": -2.079527811414112}, {"id": 408, "s_m": 40.78977621669123, "d_m": 0.0, "x_m": 11.870933845152097, "y_m": -2.8923995746878326, "d_right": 0.5804439593440629, "d_left": 1.9226410204467208, "psi_rad": -1.4440593424292039, "kappa_radpm": -0.41785026452248736, "vx_mps": 4.895242010860702, "ax_mps2": -1.9022082841588515}, {"id": 409, "s_m": 40.8897511583988, "d_m": 0.0, "x_m": 11.881470840495767, "y_m": -2.9917982714449516, "d_right": 0.5408063121750883, "d_left": 1.9120985144466969, "psi_rad": -1.4865471693840488, "kappa_radpm": -0.4320459267631351, "vx_mps": 4.85623805226295, "ax_mps2": -1.7415058069316696}, {"id": 410, "s_m": 40.98972610010638, "d_m": 0.0, "x_m": 11.887709049562877, "y_m": -3.0915897290586707, "d_right": 0.5083245192383238, "d_left": 1.9058587998083505, "psi_rad": -1.5304053207966986, "kappa_radpm": -0.4453793867115151, "vx_mps": 4.82025249724367, "ax_mps2": -1.5380626377856237}, {"id": 411, "s_m": 41.08970104181396, "d_m": 0.0, "x_m": 11.889497445781092, "y_m": -3.191528142932233, "d_right": 0.47735663603949674, "d_left": 1.9036325969146246, "psi_rad": -1.575644931061987, "kappa_radpm": -0.4601750345114622, "vx_mps": 4.788245888848378, "ax_mps2": -1.2473149267424823}, {"id": 412, "s_m": 41.18967598352153, "d_m": 0.0, "x_m": 11.886682882181491, "y_m": -3.2914886454927568, "d_right": 0.4336394512818527, "d_left": 1.8898106173408393, "psi_rad": -1.622543789024725, "kappa_radpm": -0.47801405285535675, "vx_mps": 4.762131688423711, "ax_mps2": -0.9161518908740319}, {"id": 413, "s_m": 41.28965092522911, "d_m": 0.0, "x_m": 11.879099139614734, "y_m": -3.3911425949344234, "d_right": 0.39450231789224816, "d_left": 1.8823059982798218, "psi_rad": -1.671274933231885, "kappa_radpm": -0.4965970687525733, "vx_mps": 4.742859238277942, "ax_mps2": -0.6049350101640197}, {"id": 414, "s_m": 41.38962586693668, "d_m": 0.0, "x_m": 11.866572042555118, "y_m": -3.490370161198683, "d_right": 0.3734577061253188, "d_left": 1.8789530213662282, "psi_rad": -1.7217576456256802, "kappa_radpm": -0.5131707723254644, "vx_mps": 4.730090598430689, "ax_mps2": -0.26873256055373423}, {"id": 415, "s_m": 41.48960080864426, "d_m": 0.0, "x_m": 11.848989830956915, "y_m": -3.588721521429481, "d_right": 0.3558221395372724, "d_left": 1.8757093949450125, "psi_rad": -1.773926076234753, "kappa_radpm": -0.5294596864412839, "vx_mps": 4.724407267076984, "ax_mps2": -0.10376003910502032}, {"id": 416, "s_m": 41.58957575035184, "d_m": 0.0, "x_m": 11.826222085754376, "y_m": -3.686076691667521, "d_right": 0.3510355333288809, "d_left": 1.8830543990826798, "psi_rad": -1.8272659523646855, "kappa_radpm": -0.5373467992994085, "vx_mps": 4.722211051773058, "ax_mps2": -0.08613869574086354}, {"id": 417, "s_m": 41.68955069205941, "d_m": 0.0, "x_m": 11.798278474051381, "y_m": -3.782010124137822, "d_right": 0.35595586772343113, "d_left": 1.8938994775579558, "psi_rad": -1.88126560563785, "kappa_radpm": -0.5385499967925843, "vx_mps": 4.720387038720098, "ax_mps2": -0.0861386957408574}, {"id": 418, "s_m": 41.78952563376699, "d_m": 0.0, "x_m": 11.765218180596959, "y_m": -3.876344820563342, "d_right": 0.34438502105506846, "d_left": 1.8984977603661746, "psi_rad": -1.9341900247213708, "kappa_radpm": -0.5204615621749172, "vx_mps": 4.718562320574539, "ax_mps2": 0.3259394895635437}, {"id": 419, "s_m": 41.88950057547457, "d_m": 0.0, "x_m": 11.727293178682949, "y_m": -3.9688371369582023, "d_right": 0.3562299214009989, "d_left": 1.9122149203763281, "psi_rad": -1.985365809034871, "kappa_radpm": -0.5026485255671763, "vx_mps": 4.725463145140845, "ax_mps2": 0.6895333956759954}, {"id": 420, "s_m": 41.98947551718214, "d_m": 0.0, "x_m": 11.684774857497242, "y_m": -4.059302904253275, "d_right": 0.36506773971959633, "d_left": 1.9184333101811062, "psi_rad": -2.034602984800011, "kappa_radpm": -0.48255320298078386, "vx_mps": 4.740028909000521, "ax_mps2": 1.071198363246784}, {"id": 421, "s_m": 42.08945045888972, "d_m": 0.0, "x_m": 11.637940321663303, "y_m": -4.147617001109384, "d_right": 0.370695140192224, "d_left": 1.9286629811974831, "psi_rad": -2.081886448830577, "kappa_radpm": -0.4635320779082526, "vx_mps": 4.762568639506036, "ax_mps2": 1.3984525225861093}, {"id": 422, "s_m": 42.1894254005973, "d_m": 0.0, "x_m": 11.58707008928239, "y_m": -4.2336579181629235, "d_right": 0.39576222363442015, "d_left": 1.9485212620962598, "psi_rad": -2.127294662913231, "kappa_radpm": -0.4450482847754319, "vx_mps": 4.791834770195973, "ax_mps2": 1.6921774747007263}, {"id": 423, "s_m": 42.28940034230487, "d_m": 0.0, "x_m": 11.532413549814084, "y_m": -4.317365045410905, "d_right": 0.41641699843576413, "d_left": 1.9667074159224982, "psi_rad": -2.170896840509837, "kappa_radpm": -0.42753350626662184, "vx_mps": 4.82701058147206, "ax_mps2": 1.948381958698398}, {"id": 424, "s_m": 42.38937528401245, "d_m": 0.0, "x_m": 11.474238113004631, "y_m": -4.398647539166481, "d_right": 0.4328105802070887, "d_left": 1.9909757453043244, "psi_rad": -2.212823553385345, "kappa_radpm": -0.4114359114237988, "vx_mps": 4.867197335133761, "ax_mps2": 2.1616636874972293}, {"id": 425, "s_m": 42.48935022572003, "d_m": 0.0, "x_m": 11.412756855119003, "y_m": -4.477484066467296, "d_right": 0.4458383863620943, "d_left": 2.010298343013668, "psi_rad": -2.2531904134997394, "kappa_radpm": -0.39617221001648806, "vx_mps": 4.911398405895314, "ax_mps2": 2.3503486154747475}, {"id": 426, "s_m": 42.5893251674276, "d_m": 0.0, "x_m": 11.348214939579437, "y_m": -4.553808826829509, "d_right": 0.4761912574982322, "d_left": 2.024814780307982, "psi_rad": -2.2920498168777357, "kappa_radpm": -0.38137817200361757, "vx_mps": 4.9590106103012275, "ax_mps2": 2.526161784828557}, {"id": 427, "s_m": 42.68930010913518, "d_m": 0.0, "x_m": 11.280797668905217, "y_m": -4.627631435984174, "d_right": 0.5081106973943437, "d_left": 2.0468996135539, "psi_rad": -2.3294645102515292, "kappa_radpm": -0.36729233314430365, "vx_mps": 5.009679828835816, "ax_mps2": 2.685083597542574}, {"id": 428, "s_m": 42.78927505084276, "d_m": 0.0, "x_m": 11.210727355142328, "y_m": -4.698916774852649, "d_right": 0.5324589689709303, "d_left": 2.054460211397472, "psi_rad": -2.365512521115563, "kappa_radpm": -0.3540100376411532, "vx_mps": 5.062980756405563, "ax_mps2": 2.826290765523851}, {"id": 429, "s_m": 42.88924999255033, "d_m": 0.0, "x_m": 11.138163685411177, "y_m": -4.76769163727484, "d_right": 0.5550719253776514, "d_left": 2.0462918910802306, "psi_rad": -2.400264259560892, "kappa_radpm": -0.34125065470054244, "vx_mps": 5.118485190834964, "ax_mps2": 2.958330881315502}, {"id": 430, "s_m": 42.98922493425791, "d_m": 0.0, "x_m": 11.063309887313446, "y_m": -4.8339390044807615, "d_right": 0.5874662812142041, "d_left": 1.997027466004342, "psi_rad": -2.4337579508947105, "kappa_radpm": -0.32892839290033943, "vx_mps": 5.175945185530787, "ax_mps2": 3.0843067242784286}, {"id": 431, "s_m": 43.089199875965484, "d_m": 0.0, "x_m": 10.986304378934726, "y_m": -4.897700615066346, "d_right": 0.6167220006338732, "d_left": 1.9469635953588154, "psi_rad": -2.46605326533962, "kappa_radpm": -0.31737562989330614, "vx_mps": 5.235180544504205, "ax_mps2": 3.1956981804116524}, {"id": 432, "s_m": 43.18917481767306, "d_m": 0.0, "x_m": 10.907327884342402, "y_m": -4.958976514443989, "d_right": 0.6462185254759042, "d_left": 1.9007867520637047, "psi_rad": -2.497239699415129, "kappa_radpm": -0.30662375164699246, "vx_mps": 5.295856381375791, "ax_mps2": 3.2919796747409076}, {"id": 433, "s_m": 43.28914975938064, "d_m": 0.0, "x_m": 10.826495471616767, "y_m": -5.017813579403939, "d_right": 0.6661911911660079, "d_left": 1.8616669109907262, "psi_rad": -2.5273737080360927, "kappa_radpm": -0.29626097711840493, "vx_mps": 5.357641810006358, "ax_mps2": 3.385062275783314}, {"id": 434, "s_m": 43.389124701088214, "d_m": 0.0, "x_m": 10.743969336056162, "y_m": -5.074221654994329, "d_right": 0.6910474172599805, "d_left": 1.816316951516314, "psi_rad": -2.556489382306733, "kappa_radpm": -0.28630557273733737, "vx_mps": 5.420439887289968, "ax_mps2": 3.474425017462848}, {"id": 435, "s_m": 43.48909964279579, "d_m": 0.0, "x_m": 10.659847350095722, "y_m": -5.128254231712455, "d_right": 0.7145476973824503, "d_left": 1.7775808528390742, "psi_rad": -2.5846333842680167, "kappa_radpm": -0.2767673178724608, "vx_mps": 5.484148014860693, "ax_mps2": 3.5597111892180657}, {"id": 436, "s_m": 43.58907458450337, "d_m": 0.0, "x_m": 10.574277475992135, "y_m": -5.179929562082952, "d_right": 0.7352717448161713, "d_left": 1.746367919434912, "psi_rad": -2.6118400664165007, "kappa_radpm": -0.2675941440951663, "vx_mps": 5.5486613958842605, "ax_mps2": 3.642387063043661}, {"id": 437, "s_m": 43.689049526210944, "d_m": 0.0, "x_m": 10.487339746868786, "y_m": -5.229306353722356, "d_right": 0.7660730781381303, "d_left": 1.717664582975493, "psi_rad": -2.638149558192554, "kappa_radpm": -0.2587719592758869, "vx_mps": 5.61390578428109, "ax_mps2": 3.7227235859494363}, {"id": 438, "s_m": 43.78902446791852, "d_m": 0.0, "x_m": 10.399169528140453, "y_m": -5.276409056862562, "d_right": 0.8058447685985862, "d_left": 1.686406101946158, "psi_rad": -2.663592692541668, "kappa_radpm": -0.250305418362009, "vx_mps": 5.679814812278841, "ax_mps2": 3.8003601241968674}, {"id": 439, "s_m": 43.8889994096261, "d_m": 0.0, "x_m": 10.309829962631017, "y_m": -5.3212997935750375, "d_right": 0.8273709385827611, "d_left": 1.663023079639151, "psi_rad": -2.6882078018835953, "kappa_radpm": -0.24211987189831458, "vx_mps": 5.7463186359225595, "ax_mps2": 3.877508276511462}, {"id": 440, "s_m": 43.988974351333674, "d_m": 0.0, "x_m": 10.219448606808415, "y_m": -5.364006034500499, "d_right": 0.851532472406008, "d_left": 1.6409723151345987, "psi_rad": -2.712013206797227, "kappa_radpm": -0.23419005216541616, "vx_mps": 5.813388443359056, "ax_mps2": 3.95478586244065}, {"id": 441, "s_m": 44.08894929304125, "d_m": 0.0, "x_m": 10.128071110757555, "y_m": -5.404593768725533, "d_right": 0.8801990065720879, "d_left": 1.6227258602099748, "psi_rad": -2.7350429881228653, "kappa_radpm": -0.22650738780128607, "vx_mps": 5.881007070690151, "ax_mps2": 4.0322555410289675}, {"id": 442, "s_m": 44.18892423474883, "d_m": 0.0, "x_m": 10.035819477442345, "y_m": -5.443092824087715, "d_right": 0.8982583948600749, "d_left": 1.5954979349163214, "psi_rad": -2.7573117172162984, "kappa_radpm": -0.219059214169389, "vx_mps": 5.949159032236104, "ax_mps2": 4.110126790960336}, {"id": 443, "s_m": 44.288899176456404, "d_m": 0.0, "x_m": 9.942722753198641, "y_m": -5.4795716624266, "d_right": 0.9168369028202172, "d_left": 1.573230680979648, "psi_rad": -2.778852076812644, "kappa_radpm": -0.2118218530816187, "vx_mps": 6.017832879327108, "ax_mps2": 4.189018725225174}, {"id": 444, "s_m": 44.38887411816398, "d_m": 0.0, "x_m": 9.848899043496736, "y_m": -5.514061712644587, "d_right": 0.9436687662470015, "d_left": 1.55632970768031, "psi_rad": -2.799672693710126, "kappa_radpm": -0.20477185046383317, "vx_mps": 6.087027712212512, "ax_mps2": 4.269576092405134}, {"id": 445, "s_m": 44.48884905987156, "d_m": 0.0, "x_m": 9.754362157509895, "y_m": -5.546632907325355, "d_right": 0.9498472564344931, "d_left": 1.5305716863789587, "psi_rad": -2.8198035993898483, "kappa_radpm": -0.1979005070745294, "vx_mps": 6.156753008782441, "ax_mps2": 4.35192428931946}, {"id": 446, "s_m": 44.588824001579134, "d_m": 0.0, "x_m": 9.659226203518331, "y_m": -5.577318575063295, "d_right": 0.9636629338440714, "d_left": 1.5118635428924287, "psi_rad": -2.8392493448218348, "kappa_radpm": -0.19118422879744354, "vx_mps": 6.227019701705832, "ax_mps2": 4.436782819223578}, {"id": 447, "s_m": 44.68879894328671, "d_m": 0.0, "x_m": 9.563492794995256, "y_m": -5.606188686210993, "d_right": 0.9856268976161469, "d_left": 1.5015018377314693, "psi_rad": -2.858037682237253, "kappa_radpm": -0.1846218425063661, "vx_mps": 6.297849519707082, "ax_mps2": 4.524030564846852}, {"id": 448, "s_m": 44.788773884994285, "d_m": 0.0, "x_m": 9.467270328217515, "y_m": -5.63327904981231, "d_right": 1.0127975819694246, "d_left": 1.4948439389604735, "psi_rad": -2.876170081725955, "kappa_radpm": -0.17818117683161247, "vx_mps": 6.369261178259406, "ax_mps2": 4.614810126766158}, {"id": 449, "s_m": 44.888748826701864, "d_m": 0.0, "x_m": 9.37055329820586, "y_m": -5.6586580901197525, "d_right": 1.034665132584472, "d_left": 1.4824485837581494, "psi_rad": -2.8936712403527896, "kappa_radpm": -0.1718793304691772, "vx_mps": 6.441290142798443, "ax_mps2": 4.708294737370281}, {"id": 450, "s_m": 44.98872376840944, "d_m": 0.0, "x_m": 9.273439925707637, "y_m": -5.682365133464457, "d_right": 1.0332512579639248, "d_left": 1.4784531628322632, "psi_rad": -2.910542120896153, "kappa_radpm": -0.16567431862117074, "vx_mps": 6.513957452081935, "ax_mps2": 4.806133040718624}, {"id": 451, "s_m": 45.088698710117015, "d_m": 0.0, "x_m": 9.175923477436289, "y_m": -5.704465695246064, "d_right": 1.0398343304062303, "d_left": 1.4750321853877617, "psi_rad": -2.926803100229823, "kappa_radpm": -0.15958387087112613, "vx_mps": 6.587308056308217, "ax_mps2": 4.907487902681591}, {"id": 452, "s_m": 45.188673651824594, "d_m": 0.0, "x_m": 9.078087111823482, "y_m": -5.725003291305772, "d_right": 1.054320082482225, "d_left": 1.4686029903230298, "psi_rad": -2.9424550464647163, "kappa_radpm": -0.15357000384245614, "vx_mps": 6.661372160651709, "ax_mps2": 5.01396122204799}, {"id": 453, "s_m": 45.28864859353217, "d_m": 0.0, "x_m": 8.979930265509077, "y_m": -5.74403951881125, "d_right": 1.0733819637502968, "d_left": 1.4704989047736508, "psi_rad": -2.9575141779759804, "kappa_radpm": -0.14765903159483992, "vx_mps": 6.736202195933718, "ax_mps2": 5.1243441063604935}, {"id": 454, "s_m": 45.388623535239745, "d_m": 0.0, "x_m": 8.881514676647932, "y_m": -5.761622519102483, "d_right": 1.0909885895458766, "d_left": 1.4611103195852067, "psi_rad": -2.97198275240069, "kappa_radpm": -0.14180184673367668, "vx_mps": 6.8118302996440026, "ax_mps2": 5.240869333290314}, {"id": 455, "s_m": 45.488598476947324, "d_m": 0.0, "x_m": 8.782854215371863, "y_m": -5.777809382337337, "d_right": 1.0985523061903073, "d_left": 1.4534280236333181, "psi_rad": -2.9858710611800277, "kappa_radpm": -0.13600599532457022, "vx_mps": 6.888319333722383, "ax_mps2": 5.360573102854162}, {"id": 456, "s_m": 45.5885734186549, "d_m": 0.0, "x_m": 8.683981761886272, "y_m": -5.792653417852577, "d_right": 1.090424116119098, "d_left": 1.4539614102875422, "psi_rad": -2.9991765519352818, "kappa_radpm": -0.1301662576367895, "vx_mps": 6.965686556994055, "ax_mps2": 5.316384712489697}, {"id": 457, "s_m": 45.688548360362475, "d_m": 0.0, "x_m": 8.584933194266346, "y_m": -5.806208292386296, "d_right": 1.0901323897151431, "d_left": 1.4626425736602087, "psi_rad": -3.0119005870833853, "kappa_radpm": -0.12437233135875803, "vx_mps": 7.041576507696274, "ax_mps2": 5.272995106015286}, {"id": 458, "s_m": 45.788523302070054, "d_m": 0.0, "x_m": 8.485707161901843, "y_m": -5.818532643285667, "d_right": 1.097741926144139, "d_left": 1.4648827386838421, "psi_rad": -3.0240431829286054, "kappa_radpm": -0.11851539900001547, "vx_mps": 7.1160476720182615, "ax_mps2": 5.230373393890307}, {"id": 459, "s_m": 45.88849824377763, "d_m": 0.0, "x_m": 8.386367603853863, "y_m": -5.829677538642031, "d_right": 1.1088882216617792, "d_left": 1.4654603112626576, "psi_rad": -3.0355999516379546, "kappa_radpm": -0.1127031987924379, "vx_mps": 7.189154819640667, "ax_mps2": 5.188490634093375}, {"id": 460, "s_m": 45.988473185485205, "d_m": 0.0, "x_m": 8.286874062281779, "y_m": -5.8397059222136365, "d_right": 1.1138891960359552, "d_left": 1.4722182299640376, "psi_rad": -3.0465780265406774, "kappa_radpm": -0.10686853273348368, "vx_mps": 7.260949326234839, "ax_mps2": 5.147319663693671}, {"id": 461, "s_m": 46.088448127192784, "d_m": 0.0, "x_m": 8.187324006503774, "y_m": -5.848666654673657, "d_right": 1.1014314923831854, "d_left": 1.4721683176792975, "psi_rad": -3.0569698651265185, "kappa_radpm": -0.10106229253209872, "vx_mps": 7.331479460845967, "ax_mps2": 5.106834948727484}, {"id": 462, "s_m": 46.18842306890036, "d_m": 0.0, "x_m": 8.087633701794644, "y_m": -5.856625521774897, "d_right": 1.0969585650921898, "d_left": 1.4683569463640116, "psi_rad": -3.0667839477401806, "kappa_radpm": -0.09520663899001133, "vx_mps": 7.400790642723572, "ax_mps2": 5.06701245000567}, {"id": 463, "s_m": 46.288398010607935, "d_m": 0.0, "x_m": 7.987937753392578, "y_m": -5.863630526760142, "d_right": 1.0960281188229275, "d_left": 1.4722937951756656, "psi_rad": -3.07600731500756, "kappa_radpm": -0.0893621449758858, "vx_mps": 7.468925671478228, "ax_mps2": 5.027829502830025}, {"id": 464, "s_m": 46.388372952315514, "d_m": 0.0, "x_m": 7.888107806111988, "y_m": -5.869749266337526, "d_right": 1.0990769509049283, "d_left": 1.483865565195212, "psi_rad": -3.0846492915704937, "kappa_radpm": -0.083446631966238, "vx_mps": 7.535924933874319, "ax_mps2": 4.989264708896411}, {"id": 465, "s_m": 46.48834789402309, "d_m": 0.0, "x_m": 7.788316096391408, "y_m": -5.875030411016081, "d_right": 1.1043545409917597, "d_left": 1.4960836914840243, "psi_rad": -3.092692794681815, "kappa_radpm": -0.077526762512117, "vx_mps": 7.601826590093979, "ax_mps2": 4.951297838906586}, {"id": 466, "s_m": 46.588322835730665, "d_m": 0.0, "x_m": 7.688391492508441, "y_m": -5.879542326452967, "d_right": 1.0909946473195304, "d_left": 1.4915718868376355, "psi_rad": -3.1001472729130546, "kappa_radpm": -0.07151989461887832, "vx_mps": 7.666666741909608, "ax_mps2": 4.913909744619738}, {"id": 467, "s_m": 46.688297777438244, "d_m": 0.0, "x_m": 7.588541515511205, "y_m": -5.883335687663437, "d_right": 1.0750387675687294, "d_left": 1.4931984347802207, "psi_rad": -3.1069930615211794, "kappa_radpm": -0.06549380327007351, "vx_mps": 7.730479584867436, "ax_mps2": 4.877082279247297}, {"id": 468, "s_m": 46.788272719145816, "d_m": 0.0, "x_m": 7.488556662646362, "y_m": -5.8864788370315875, "d_right": 1.0675733220865276, "d_left": 1.5021508938437382, "psi_rad": -3.11323816027228, "kappa_radpm": -0.059359494516388604, "vx_mps": 7.793297546301807, "ax_mps2": 4.8407982252436055}, {"id": 469, "s_m": 46.888247660853395, "d_m": 0.0, "x_m": 7.388674775300585, "y_m": -5.889025529815153, "d_right": 1.0688539501037821, "d_left": 1.5182180033269068, "psi_rad": -3.1188614819433536, "kappa_radpm": -0.053192903491088316, "vx_mps": 7.855151410760173, "ax_mps2": 4.805041228668568}, {"id": 470, "s_m": 46.988222602560974, "d_m": 0.0, "x_m": 7.288654931099321, "y_m": -5.891043717217177, "d_right": 1.0708718040123535, "d_left": 1.5305149743064828, "psi_rad": -3.123868688705249, "kappa_radpm": -0.04690308148076028, "vx_mps": 7.916070434214493, "ax_mps2": 4.769795739404384}, {"id": 471, "s_m": 47.088197544268546, "d_m": 0.0, "x_m": 7.188758013889146, "y_m": -5.892590857834376, "d_right": 1.0520757947555797, "d_left": 1.5289707999668223, "psi_rad": -3.128238954401535, "kappa_radpm": -0.04056981471027263, "vx_mps": 7.976082448260724, "ax_mps2": 4.7350469566019315}, {"id": 472, "s_m": 47.188172485976125, "d_m": 0.0, "x_m": 7.0887206813994, "y_m": -5.893734534376925, "d_right": 1.0346363557534122, "d_left": 1.5279281190649145, "psi_rad": -3.1319744373650096, "kappa_radpm": -0.034097640418316845, "vx_mps": 8.035213955358666, "ax_mps2": 4.700780778805815}, {"id": 473, "s_m": 47.288147427683704, "d_m": 0.0, "x_m": 6.988817940036995, "y_m": -5.894536097697017, "d_right": 1.0263570760644931, "d_left": 1.533752887408036, "psi_rad": -3.135055763808621, "kappa_radpm": -0.02757316439683015, "vx_mps": 8.093490216036162, "ax_mps2": 4.666983758276832}, {"id": 474, "s_m": 47.388122369391276, "d_m": 0.0, "x_m": 6.888774334726652, "y_m": -5.895063198257492, "d_right": 1.0251696881692045, "d_left": 1.5463189107073987, "psi_rad": -3.1374809145351144, "kappa_radpm": -0.020897563721751583, "vx_mps": 8.150935328871215, "ax_mps2": 4.633643059088972}, {"id": 475, "s_m": 47.488097311098855, "d_m": 0.0, "x_m": 6.7888692089197695, "y_m": -5.895380860845128, "d_right": 1.0254908488187406, "d_left": 1.5653644942999185, "psi_rad": -3.1392330676055487, "kappa_radpm": -0.014163208659767994, "vx_mps": 8.207572303969865, "ax_mps2": 4.600746418624731}, {"id": 476, "s_m": 47.588072252806434, "d_m": 0.0, "x_m": 6.688825831964675, "y_m": -5.89555751906711, "d_right": 1.0256653341560324, "d_left": 1.575478241187094, "psi_rad": -3.1403056391446764, "kappa_radpm": -0.007267923256384497, "vx_mps": 8.263423130574878, "ax_mps2": 4.568282112137987}, {"id": 477, "s_m": 47.688047194514006, "d_m": 0.0, "x_m": 6.588918083055706, "y_m": -5.895661366412141, "d_right": 0.9999013549024948, "d_left": 1.5753754353140645, "psi_rad": -3.14068503266561, "kappa_radpm": -0.00030984615852089196, "vx_mps": 8.318508839368352, "ax_mps2": 4.536238920090944}, {"id": 478, "s_m": 47.788022136221585, "d_m": 0.0, "x_m": 6.488878486836806, "y_m": -5.895762471471205, "d_right": 0.9826101786119084, "d_left": 1.575273053225782, "psi_rad": -3.140360173210146, "kappa_radpm": 0.006815374338453839, "vx_mps": 8.372849559968511, "ax_mps2": -4.534737006714166}, {"id": 479, "s_m": 47.887997077929164, "d_m": 0.0, "x_m": 6.388966458945167, "y_m": -5.895931548661812, "d_right": 0.9753957779984517, "d_left": 1.5765178264774695, "psi_rad": -3.1393210053299843, "kappa_radpm": 0.014005189784936449, "vx_mps": 8.318526889903884, "ax_mps2": -10.82700621742997}, {"id": 480, "s_m": 47.987972019636736, "d_m": 0.0, "x_m": 6.288933256606098, "y_m": -5.896241110615968, "d_right": 0.9757043884312724, "d_left": 1.5839494702695418, "psi_rad": -3.137552438928811, "kappa_radpm": 0.02136457587174943, "vx_mps": 8.18737021192665, "ax_mps2": -10.381094552726681}, {"id": 481, "s_m": 48.087946961344315, "d_m": 0.0, "x_m": 6.189016337055859, "y_m": -5.896763755813441, "d_right": 0.976228692835776, "d_left": 1.5973924700933375, "psi_rad": -3.135047882138945, "kappa_radpm": 0.02878843033879287, "vx_mps": 8.059611178065875, "ax_mps2": -9.952658163027706}, {"id": 482, "s_m": 48.187921903051894, "d_m": 0.0, "x_m": 6.088993505129284, "y_m": -5.897575048575738, "d_right": 0.9746447195064605, "d_left": 1.6166531329327871, "psi_rad": -3.131789065531432, "kappa_radpm": 0.03638019909659386, "vx_mps": 7.9351937280847835, "ax_mps2": -9.547350779781533}, {"id": 483, "s_m": 48.287896844759466, "d_m": 0.0, "x_m": 5.989074791412692, "y_m": -5.898748971550367, "d_right": 0.9496356072385903, "d_left": 1.6220587340246755, "psi_rad": -3.1277724547685857, "kappa_radpm": 0.04403480097400141, "vx_mps": 7.813981560439933, "ax_mps2": -9.157930816246648}, {"id": 484, "s_m": 48.387871786467045, "d_m": 0.0, "x_m": 5.889070286536454, "y_m": -5.900364427958846, "d_right": 0.9351239018921547, "d_left": 1.6204431276021571, "psi_rad": -3.1229776825526816, "kappa_radpm": 0.05185172639062685, "vx_mps": 7.695919738917675, "ax_mps2": -8.789569730893435}, {"id": 485, "s_m": 48.48784672817462, "d_m": 0.0, "x_m": 5.789159474332323, "y_m": -5.902496499167858, "d_right": 0.9317056356921023, "d_left": 1.618311313656086, "psi_rad": -3.117403612889639, "kappa_radpm": 0.05972883314907213, "vx_mps": 7.5808777318263925, "ax_mps2": -8.435848995091664}, {"id": 486, "s_m": 48.587821669882196, "d_m": 0.0, "x_m": 5.689188186331424, "y_m": -5.905227336946343, "d_right": 0.9344365156353093, "d_left": 1.6155804788085468, "psi_rad": -3.1110289845130055, "kappa_radpm": 0.06775901806468168, "vx_mps": 7.468799111090404, "ax_mps2": -8.101319529888725}, {"id": 487, "s_m": 48.687796611589775, "d_m": 0.0, "x_m": 5.589304651186402, "y_m": -5.908633064463712, "d_right": 0.9313227735983723, "d_left": 1.6121751428640287, "psi_rad": -3.1038542647580174, "kappa_radpm": 0.0758462089270586, "vx_mps": 7.359558564636511, "ax_mps2": -7.780424588862432}, {"id": 488, "s_m": 48.78777155329735, "d_m": 0.0, "x_m": 5.48939162855859, "y_m": -5.912798623351406, "d_right": 0.9102514494262546, "d_left": 1.6106723246524217, "psi_rad": -3.0958584590719997, "kappa_radpm": 0.08407460249029275, "vx_mps": 7.253096392359008, "ax_mps2": -7.477003059249171}, {"id": 489, "s_m": 48.887746495004926, "d_m": 0.0, "x_m": 5.38956777342875, "y_m": -5.917801300167606, "d_right": 0.9007046428246588, "d_left": 1.613760020161862, "psi_rad": -3.087042787133835, "kappa_radpm": 0.09235705197373492, "vx_mps": 7.1492923696586645, "ax_mps2": -7.186418634292739}, {"id": 490, "s_m": 48.987721436712505, "d_m": 0.0, "x_m": 5.289751835082226, "y_m": -5.923728076369741, "d_right": 0.9031208800353739, "d_left": 1.6168752682525678, "psi_rad": -3.0773875327391895, "kappa_radpm": 0.10076642677597539, "vx_mps": 7.048081853863521, "ax_mps2": -6.91178261707416}, {"id": 491, "s_m": 49.08769637842008, "d_m": 0.0, "x_m": 5.19003640296873, "y_m": -5.930657608072795, "d_right": 0.910043414729054, "d_left": 1.625140376122218, "psi_rad": -3.066893978116008, "kappa_radpm": 0.10922624149219573, "vx_mps": 6.949348724181673, "ax_mps2": -6.6492626365320024}, {"id": 492, "s_m": 49.187671320127656, "d_m": 0.0, "x_m": 5.090373657186464, "y_m": -5.9386779717717735, "d_right": 0.9064498693809144, "d_left": 1.6321644999413272, "psi_rad": -3.0555444911058585, "kappa_radpm": 0.11779875000707891, "vx_mps": 6.853023303718886, "ax_mps2": -6.400970892830281}, {"id": 493, "s_m": 49.287646261835235, "d_m": 0.0, "x_m": 4.990835921282124, "y_m": -5.94786928170511, "d_right": 0.8919207031359843, "d_left": 1.6229701649235675, "psi_rad": -3.0433395837424406, "kappa_radpm": 0.12642564295127307, "vx_mps": 6.758998077936469, "ax_mps2": -6.1640990992961315}, {"id": 494, "s_m": 49.38762120354281, "d_m": 0.0, "x_m": 4.891404398890201, "y_m": -5.958319829675837, "d_right": 0.8897331722896703, "d_left": 1.6125159257786308, "psi_rad": -3.03026329604908, "kappa_radpm": 0.13515263101401842, "vx_mps": 6.66719912116664, "ax_mps2": -5.94155846903096}, {"id": 495, "s_m": 49.487596145250386, "d_m": 0.0, "x_m": 4.7921359105959995, "y_m": -5.970111350315581, "d_right": 0.9000652896039008, "d_left": 1.600719740052331, "psi_rad": -3.016316048541647, "kappa_radpm": 0.14390159746843695, "vx_mps": 6.577501820455707, "ax_mps2": -5.730521257499087}, {"id": 496, "s_m": 49.587571086957965, "d_m": 0.0, "x_m": 4.693037543791408, "y_m": -5.9833310569525455, "d_right": 0.913238633319211, "d_left": 1.5874945319789207, "psi_rad": -3.0014885198683885, "kappa_radpm": 0.15272193816493135, "vx_mps": 6.489816109933556, "ax_mps2": -5.529999547632423}, {"id": 497, "s_m": 49.68754602866554, "d_m": 0.0, "x_m": 4.594160178297464, "y_m": -5.9980611114911895, "d_right": 0.9279151701015497, "d_left": 1.5727580904304224, "psi_rad": -2.985777779557907, "kappa_radpm": 0.1616245856795132, "vx_mps": 6.4040604600455024, "ax_mps2": -5.339737994807732}, {"id": 498, "s_m": 49.787520970373116, "d_m": 0.0, "x_m": 4.495529259232355, "y_m": -6.014387605438187, "d_right": 0.9268378363595147, "d_left": 1.556424617381959, "psi_rad": -2.9691705078608015, "kappa_radpm": 0.17060452332053003, "vx_mps": 6.320151136356544, "ax_mps2": -5.160313170735929}, {"id": 499, "s_m": 49.887495912080695, "d_m": 0.0, "x_m": 4.397195729848887, "y_m": -6.032393024249848, "d_right": 0.9234830068595755, "d_left": 1.5384120242726647, "psi_rad": -2.9516654821147554, "kappa_radpm": 0.17963674733920146, "vx_mps": 6.237988968370701, "ax_mps2": -4.990154521331}, {"id": 500, "s_m": 49.98747085378827, "d_m": 0.0, "x_m": 4.299197326504932, "y_m": -6.052162245139355, "d_right": 0.9326930255176754, "d_left": 1.5186362578777473, "psi_rad": -2.933250969030717, "kappa_radpm": 0.18875034345815386, "vx_mps": 6.157493447398127, "ax_mps2": -4.8298429948766035}, {"id": 501, "s_m": 50.087445795495846, "d_m": 0.0, "x_m": 4.201592501628876, "y_m": -6.073776382535529, "d_right": 0.9541885417325003, "d_left": 1.5004734169161897, "psi_rad": -2.9139244466589087, "kappa_radpm": 0.19792134713715157, "vx_mps": 6.078568829174494, "ax_mps2": -4.678133535309517}, {"id": 502, "s_m": 50.187420737203425, "d_m": 0.0, "x_m": 4.104430472585024, "y_m": -6.09731846336601, "d_right": 0.9775667973878542, "d_left": 1.4868459746394074, "psi_rad": -2.8936749376127686, "kappa_radpm": 0.2071741689085648, "vx_mps": 6.001133789212344, "ax_mps2": -4.535698868251642}, {"id": 503, "s_m": 50.287395678911, "d_m": 0.0, "x_m": 4.007781680838099, "y_m": -6.122866501155225, "d_right": 0.9812542087007012, "d_left": 1.4777936704510162, "psi_rad": -2.8724993845660887, "kappa_radpm": 0.21648343418626162, "vx_mps": 5.925090235271779, "ax_mps2": -4.40154334722828}, {"id": 504, "s_m": 50.387370620618576, "d_m": 0.0, "x_m": 3.911701993879619, "y_m": -6.150502037105035, "d_right": 0.9898664019365884, "d_left": 1.4703441022489792, "psi_rad": -2.8503871037976936, "kappa_radpm": 0.22587021753619968, "vx_mps": 5.850350948190025, "ax_mps2": -4.274976564066452}, {"id": 505, "s_m": 50.48734556232615, "d_m": 0.0, "x_m": 3.8162791886286547, "y_m": -6.180297344074201, "d_right": 1.0105529080442603, "d_left": 1.4405175351910569, "psi_rad": -2.8273348926164736, "kappa_radpm": 0.23534922943400002, "vx_mps": 5.776835219339423, "ax_mps2": -4.15517066690679}, {"id": 506, "s_m": 50.58732050403373, "d_m": 0.0, "x_m": 3.7215730783190346, "y_m": -6.212333100849885, "d_right": 1.0426778620297261, "d_left": 1.4084622640598903, "psi_rad": -2.803325735187725, "kappa_radpm": 0.244941076744283, "vx_mps": 5.70447186521086, "ax_mps2": -4.044648729961174}, {"id": 507, "s_m": 50.687295445741306, "d_m": 0.0, "x_m": 3.6276922411285843, "y_m": -6.246673592903195, "d_right": 1.0767229836397454, "d_left": 1.3741232207565124, "psi_rad": -2.7783590734946984, "kappa_radpm": 0.25456805850361613, "vx_mps": 5.633140528956407, "ax_mps2": -3.9404019199153013}, {"id": 508, "s_m": 50.78727038744888, "d_m": 0.0, "x_m": 3.5347009239335017, "y_m": -6.283397984986491, "d_right": 1.090193361384408, "d_left": 1.3374346238142907, "psi_rad": -2.7524200294739902, "kappa_radpm": 0.26432009479955604, "vx_mps": 5.562768134164446, "ax_mps2": -3.850913985170371}, {"id": 509, "s_m": 50.88724532915646, "d_m": 0.0, "x_m": 3.4427286427898505, "y_m": -6.322559478987971, "d_right": 1.1121656908724964, "d_left": 1.2983625415523687, "psi_rad": -2.7255151982709513, "kappa_radpm": 0.2739320527875731, "vx_mps": 5.493122928908361, "ax_mps2": -3.7682990745996228}, {"id": 510, "s_m": 50.987220270864036, "d_m": 0.0, "x_m": 3.351845442060533, "y_m": -6.364233102157612, "d_right": 1.145058299604252, "d_left": 1.256858452727912, "psi_rad": -2.697641193607568, "kappa_radpm": 0.2836564897384847, "vx_mps": 5.424106244484812, "ax_mps2": -3.6968020937907093}, {"id": 511, "s_m": 51.08719521257161, "d_m": 0.0, "x_m": 3.262200109927994, "y_m": -6.408457108622917, "d_right": 1.1880134921382026, "d_left": 1.213932179844841, "psi_rad": -2.668801101001666, "kappa_radpm": 0.2933599160598898, "vx_mps": 5.355534838258157, "ax_mps2": -3.6304413369915634}, {"id": 512, "s_m": 51.18717015427919, "d_m": 0.0, "x_m": 3.173869386919806, "y_m": -6.455302169892435, "d_right": 1.2346283638125857, "d_left": 1.1751763666351016, "psi_rad": -2.638975887388071, "kappa_radpm": 0.3032507392994654, "vx_mps": 5.287328917489415, "ax_mps2": -3.5688114975104615}, {"id": 513, "s_m": 51.287145095986766, "d_m": 0.0, "x_m": 3.087022492537081, "y_m": -6.504790171333244, "d_right": 1.2840036699580055, "d_left": 1.140976943958165, "psi_rad": -2.6081600670608633, "kappa_radpm": 0.31335511077927203, "vx_mps": 5.219412192849104, "ax_mps2": -3.5105646373234762}, {"id": 514, "s_m": 51.38712003769434, "d_m": 0.0, "x_m": 3.0017439119842653, "y_m": -6.556989394076978, "d_right": 1.3184863985368978, "d_left": 1.111669813150078, "psi_rad": -2.5763105804589053, "kappa_radpm": 0.3237351198875956, "vx_mps": 5.151730451887767, "ax_mps2": -3.4571858621904012}, {"id": 515, "s_m": 51.48709497940192, "d_m": 0.0, "x_m": 2.9182246586763734, "y_m": -6.6119042693637855, "d_right": 1.3569147802589692, "d_left": 1.0664804818010774, "psi_rad": -2.543422575504721, "kappa_radpm": 0.33435418456993476, "vx_mps": 5.08419735443248, "ax_mps2": -3.405382498309278}, {"id": 516, "s_m": 51.587069921109496, "d_m": 0.0, "x_m": 2.8365619170366103, "y_m": -6.66959817142083, "d_right": 1.4043639925520957, "d_left": 1.0227130328448755, "psi_rad": -2.5094427180095105, "kappa_radpm": 0.3453535919366669, "vx_mps": 5.016787508485612, "ax_mps2": -3.3642910522799503}, {"id": 517, "s_m": 51.68704486281707, "d_m": 0.0, "x_m": 2.756965683289402, "y_m": -6.7300564944381875, "d_right": 1.4599645769043619, "d_left": 0.9839174108857374, "psi_rad": -2.4743723061351695, "kappa_radpm": 0.35640897242848396, "vx_mps": 4.949289575446085, "ax_mps2": -3.3255628421083343}, {"id": 518, "s_m": 51.78701980452465, "d_m": 0.0, "x_m": 2.6795482269822823, "y_m": -6.793333391629265, "d_right": 1.5228809151026421, "d_left": 0.9460213258622251, "psi_rad": -2.4381638938347443, "kappa_radpm": 0.36787117762880794, "vx_mps": 4.881651503236373, "ax_mps2": -3.2837543977299943}, {"id": 519, "s_m": 51.886994746232226, "d_m": 0.0, "x_m": 2.604533132068061, "y_m": -6.8593945102203655, "d_right": 1.5829485131439682, "d_left": 0.900215316595203, "psi_rad": -2.4007912669576448, "kappa_radpm": 0.3799886436121, "vx_mps": 4.813931354938479, "ax_mps2": -3.240267336310452}, {"id": 520, "s_m": 51.9869696879398, "d_m": 0.0, "x_m": 2.532064443507176, "y_m": -6.928273738348926, "d_right": 1.6351610687573328, "d_left": 0.8600113332842529, "psi_rad": -2.362162466352776, "kappa_radpm": 0.39273716145471815, "vx_mps": 4.746160976402996, "ax_mps2": -3.2280771390140073}, {"id": 521, "s_m": 52.08694462964738, "d_m": 0.0, "x_m": 2.4623724475657247, "y_m": -6.999924826761951, "d_right": 1.6947977882127878, "d_left": 0.8079359898537954, "psi_rad": -2.322306742330352, "kappa_radpm": 0.4047655670131956, "vx_mps": 4.677669330588649, "ax_mps2": -3.217930130995299}, {"id": 522, "s_m": 52.18691957135495, "d_m": 0.0, "x_m": 2.395617695486451, "y_m": -7.0743577577568795, "d_right": 1.761138096028108, "d_left": 0.7599509427371484, "psi_rad": -2.281216247595541, "kappa_radpm": 0.41738946541654, "vx_mps": 4.608379933534025, "ax_mps2": -3.1445151296065537}, {"id": 523, "s_m": 52.28689451306253, "d_m": 0.0, "x_m": 2.332037494755683, "y_m": -7.151504372118499, "d_right": 1.8334172523627301, "d_left": 0.7187588619933275, "psi_rad": -2.2386921015373797, "kappa_radpm": 0.4335680998846384, "vx_mps": 4.539649785857609, "ax_mps2": -3.064158437014439}, {"id": 524, "s_m": 52.38686945477011, "d_m": 0.0, "x_m": 2.2718664770542847, "y_m": -7.231327052663063, "d_right": 1.910940500581575, "d_left": 0.678347616310243, "psi_rad": -2.1944757783545477, "kappa_radpm": 0.45075305204674165, "vx_mps": 4.471659877046825, "ax_mps2": -3.0621191397258807}, {"id": 525, "s_m": 52.48684439647768, "d_m": 0.0, "x_m": 2.2153622539822204, "y_m": -7.313753995265469, "d_right": 1.9930347434171436, "d_left": 0.6410165123876147, "psi_rad": -2.1487646036755397, "kappa_radpm": 0.46379677789641716, "vx_mps": 4.402666429676334, "ax_mps2": -3.083036087334706}, {"id": 526, "s_m": 52.58681933818526, "d_m": 0.0, "x_m": 2.162715545656261, "y_m": -7.3987470860158595, "d_right": 2.0688880566228476, "d_left": 0.5954114935453214, "psi_rad": -2.1017735936853814, "kappa_radpm": 0.4779019117586468, "vx_mps": 4.332091756273366, "ax_mps2": -2.895282958425654}, {"id": 527, "s_m": 52.68679427989284, "d_m": 0.0, "x_m": 2.1142291614765436, "y_m": -7.4861119404627345, "d_right": 2.1459063042577693, "d_left": 0.5486779035520853, "psi_rad": -2.052705032701536, "kappa_radpm": 0.504452111238841, "vx_mps": 4.264751750662699, "ax_mps2": -2.8002929347360053}, {"id": 528, "s_m": 52.78676922160041, "d_m": 0.0, "x_m": 2.0701227241500675, "y_m": -7.575993099207372, "d_right": 2.2278567269405216, "d_left": 0.5123154069087078, "psi_rad": -2.0008716094152117, "kappa_radpm": 0.5257405946597017, "vx_mps": 4.198593722778121, "ax_mps2": -2.7807730366458947}, {"id": 529, "s_m": 52.88674416330799, "d_m": 0.0, "x_m": 2.030751801537681, "y_m": -7.668164746412563, "d_right": 2.3140766009513136, "d_left": 0.48788286863793007, "psi_rad": -1.9479784013819499, "kappa_radpm": 0.5329234099970821, "vx_mps": 4.131848739301873, "ax_mps2": -2.4230786904626216}, {"id": 530, "s_m": 52.98671910501557, "d_m": 0.0, "x_m": 1.9965775302584154, "y_m": -7.761714140007321, "d_right": 2.4032759942347335, "d_left": 0.4600968852366752, "psi_rad": -1.8934313944763916, "kappa_radpm": 0.5812173058276017, "vx_mps": 4.072797527843328, "ax_mps2": -1.091458729726988}, {"id": 531, "s_m": 53.08669404672314, "d_m": 0.0, "x_m": 1.9679090512922008, "y_m": -7.857096458103437, "d_right": 2.495556892608605, "d_left": 0.4313270790143502, "psi_rad": -1.8306243071432897, "kappa_radpm": 0.6702624536130705, "vx_mps": 4.045916788200836, "ax_mps2": -1.0088891648916407}, {"id": 532, "s_m": 53.18666898843072, "d_m": 0.0, "x_m": 1.9454689580310158, "y_m": -7.954881043979877, "d_right": 2.5912309829979256, "d_left": 0.4004244056774592, "psi_rad": -1.7623420894220594, "kappa_radpm": 0.6453561498934711, "vx_mps": 4.0209097709531445, "ax_mps2": -1.3754193300667703}, {"id": 533, "s_m": 53.2866439301383, "d_m": 0.0, "x_m": 1.9293425854303463, "y_m": -8.054099508737698, "d_right": 2.689081608265056, "d_left": 0.3773039816947844, "psi_rad": -1.7031192859128366, "kappa_radpm": 0.5482014917608664, "vx_mps": 3.9865649940083334, "ax_mps2": -2.7680082563364174}, {"id": 534, "s_m": 53.38661887184587, "d_m": 0.0, "x_m": 1.918834303688322, "y_m": -8.15348863521763, "d_right": 2.7876208060018666, "d_left": 0.3746262535468116, "psi_rad": -1.648428881729239, "kappa_radpm": 0.6057205032522196, "vx_mps": 3.9165338659720588, "ax_mps2": -0.059253127400947424}, {"id": 535, "s_m": 53.48659381355345, "d_m": 0.0, "x_m": 1.9144409905056634, "y_m": -8.253052864666358, "d_right": 2.8867664834579227, "d_left": 0.3790192326802219, "psi_rad": -1.5783866152790544, "kappa_radpm": 0.7829121659866289, "vx_mps": 3.9150210558042007, "ax_mps2": -0.05925312740093854}, {"id": 536, "s_m": 53.58656875526103, "d_m": 0.0, "x_m": 1.9176449256603232, "y_m": -8.352287085734641, "d_right": 2.7999539754394833, "d_left": 0.375815795379936, "psi_rad": -1.4996374113119701, "kappa_radpm": 0.7220059713889778, "vx_mps": 3.9135076608426917, "ax_mps2": 0.8828797419121195}, {"id": 537, "s_m": 53.6865436969686, "d_m": 0.0, "x_m": 1.9280454251818624, "y_m": -8.451932195821895, "d_right": 2.7084328046934862, "d_left": 0.3785942899387086, "psi_rad": -1.4369887082651172, "kappa_radpm": 0.5398592746128973, "vx_mps": 3.93599719422402, "ax_mps2": 3.5765704467155235}, {"id": 538, "s_m": 53.78651863867618, "d_m": 0.0, "x_m": 1.9439364134063486, "y_m": -8.550964923477501, "d_right": 2.618152486134313, "d_left": 0.3874184668677906, "psi_rad": -1.386463393448842, "kappa_radpm": 0.5316560442732788, "vx_mps": 4.025817774910611, "ax_mps2": 3.320685143481756}, {"id": 539, "s_m": 53.88649358038376, "d_m": 0.0, "x_m": 1.9649987205700263, "y_m": -8.64853110949343, "d_right": 2.529831164176157, "d_left": 0.40459691770440387, "psi_rad": -1.3282590320275744, "kappa_radpm": 0.6300507659616997, "vx_mps": 4.107454121969453, "ax_mps2": 1.3050793594162127}, {"id": 540, "s_m": 53.98646852209133, "d_m": 0.0, "x_m": 1.992050435754548, "y_m": -8.744536360513203, "d_right": 2.4421973004715904, "d_left": 0.41919624845932624, "psi_rad": -1.26454741184534, "kappa_radpm": 0.6084700260164624, "vx_mps": 4.139097707211879, "ax_mps2": 1.5093825662650224}, {"id": 541, "s_m": 54.08644346379891, "d_m": 0.0, "x_m": 2.0249993431773916, "y_m": -8.839051292972224, "d_right": 2.3584545981928327, "d_left": 0.4503749687409303, "psi_rad": -1.2073647051078864, "kappa_radpm": 0.5369495456558013, "vx_mps": 4.175395873207736, "ax_mps2": 2.5714621705501117}, {"id": 542, "s_m": 54.18641840550648, "d_m": 0.0, "x_m": 2.0629884360318322, "y_m": -8.93158162947826, "d_right": 2.2793383160032885, "d_left": 0.4891702981235314, "psi_rad": -1.155362113866449, "kappa_radpm": 0.5151871024009386, "vx_mps": 4.236519120599852, "ax_mps2": 2.683988992425543}, {"id": 543, "s_m": 54.28639334721406, "d_m": 0.0, "x_m": 2.1056653387698328, "y_m": -9.021975251258448, "d_right": 2.205393603143047, "d_left": 0.523134881100739, "psi_rad": -1.104137453474419, "kappa_radpm": 0.508979756792946, "vx_mps": 4.299390369032707, "ax_mps2": 2.5201736170806757}, {"id": 544, "s_m": 54.38636828892164, "d_m": 0.0, "x_m": 2.1528342997731382, "y_m": -9.110027923346536, "d_right": 2.1316602572121273, "d_left": 0.5559447800397995, "psi_rad": -1.0543242227270868, "kappa_radpm": 0.48419900286822964, "vx_mps": 4.357598646760901, "ax_mps2": 2.7322998644907877}, {"id": 545, "s_m": 54.48634323062921, "d_m": 0.0, "x_m": 2.2042862513928485, "y_m": -9.195819954050064, "d_right": 2.06312627051391, "d_left": 0.599636238290342, "psi_rad": -1.0072860898979479, "kappa_radpm": 0.45674719624413096, "vx_mps": 4.419840382368189, "ax_mps2": 3.001929540617103}, {"id": 546, "s_m": 54.58631817233679, "d_m": 0.0, "x_m": 2.2595514411414026, "y_m": -9.279085540940567, "d_right": 1.9983984180608918, "d_left": 0.639705499497701, "psi_rad": -0.9627219504551543, "kappa_radpm": 0.43595065579214926, "vx_mps": 4.487229041098693, "ax_mps2": 3.1441962765867495}, {"id": 547, "s_m": 54.68629311404437, "d_m": 0.0, "x_m": 2.318436846779221, "y_m": -9.35992450170433, "d_right": 1.935285061108342, "d_left": 0.676569728245767, "psi_rad": -0.9200893361168849, "kappa_radpm": 0.4166228980717439, "vx_mps": 4.556742931767974, "ax_mps2": 3.2690114553999425}, {"id": 548, "s_m": 54.78626805575194, "d_m": 0.0, "x_m": 2.3805767383834247, "y_m": -9.43816852910928, "d_right": 1.8788729148200343, "d_left": 0.7195292164875782, "psi_rad": -0.8794893705077369, "kappa_radpm": 0.3958003195750125, "vx_mps": 4.627909312595416, "ax_mps2": 3.440132352880642}, {"id": 549, "s_m": 54.88624299745952, "d_m": 0.0, "x_m": 2.4458349549506893, "y_m": -9.513974779120195, "d_right": 1.8211117335692195, "d_left": 0.7593285339778613, "psi_rad": -0.8409140686612573, "kappa_radpm": 0.3756632821829598, "vx_mps": 4.701637870838052, "ax_mps2": 3.6103576056822013}, {"id": 550, "s_m": 54.9862179391671, "d_m": 0.0, "x_m": 2.513824493457443, "y_m": -9.58720115606242, "d_right": 1.7704125288801786, "d_left": 0.8009720944090741, "psi_rad": -0.8043346958418045, "kappa_radpm": 0.3565305717545317, "vx_mps": 4.777791252330072, "ax_mps2": 3.7731270269102892}, {"id": 551, "s_m": 55.08619288087467, "d_m": 0.0, "x_m": 2.5844505692161763, "y_m": -9.658027752744621, "d_right": 1.7197303789628273, "d_left": 0.8393928703438123, "psi_rad": -0.7696065678922905, "kappa_radpm": 0.3379524916453066, "vx_mps": 4.856101889374131, "ax_mps2": 3.9393340801525842}, {"id": 552, "s_m": 55.18616782258225, "d_m": 0.0, "x_m": 2.6573548689974453, "y_m": -9.72635871968251, "d_right": 1.6745817560610128, "d_left": 0.8711023800591651, "psi_rad": -0.7367570097691183, "kappa_radpm": 0.31957443131607743, "vx_mps": 4.936536736421888, "ax_mps2": 4.117956459557219}, {"id": 553, "s_m": 55.28614276428983, "d_m": 0.0, "x_m": 2.7324833361294427, "y_m": -9.792394466127908, "d_right": 1.63020560202771, "d_left": 0.9069177762280041, "psi_rad": -0.7056909257941744, "kappa_radpm": 0.30166493804541056, "vx_mps": 5.019240964930856, "ax_mps2": 4.302830546900171}, {"id": 554, "s_m": 55.3861177059974, "d_m": 0.0, "x_m": 2.8094893245450403, "y_m": -9.856068436240767, "d_right": 1.586535104692249, "d_left": 0.9415757650756362, "psi_rad": -0.6764248309646033, "kappa_radpm": 0.2841432188980311, "vx_mps": 5.104226712269728, "ax_mps2": 4.496462638267872}, {"id": 555, "s_m": 55.48609264770498, "d_m": 0.0, "x_m": 2.8883547894270727, "y_m": -9.917593072923918, "d_right": 1.5492314210510847, "d_left": 0.9827244538156622, "psi_rad": -0.6488651262495142, "kappa_radpm": 0.26696443245497287, "vx_mps": 5.191550588268414, "ax_mps2": 4.700529197407502}, {"id": 556, "s_m": 55.58606758941256, "d_m": 0.0, "x_m": 2.968750539414481, "y_m": -9.976929177245314, "d_right": 1.5168017728145757, "d_left": 1.0256878775678064, "psi_rad": -0.623034840568975, "kappa_radpm": 0.25007332148757966, "vx_mps": 5.281294138330234, "ax_mps2": 4.917111896080296}, {"id": 557, "s_m": 55.68604253112013, "d_m": 0.0, "x_m": 3.050689029739368, "y_m": -10.034295931676047, "d_right": 1.4827255754828272, "d_left": 1.0560099518682544, "psi_rad": -0.5988549682816968, "kappa_radpm": 0.23344935700024477, "vx_mps": 5.373568993315501, "ax_mps2": 5.147466052934175}, {"id": 558, "s_m": 55.78601747282771, "d_m": 0.0, "x_m": 3.1338601685225154, "y_m": -10.089678654415842, "d_right": 1.452739749967392, "d_left": 1.0899846928905472, "psi_rad": -0.5763445828916964, "kappa_radpm": 0.217124919487045, "vx_mps": 5.468498785141077, "ax_mps2": 5.391386695413052}, {"id": 559, "s_m": 55.88599241453528, "d_m": 0.0, "x_m": 3.218296053035949, "y_m": -10.143295161396836, "d_right": 1.4153645993082966, "d_left": 1.12880493886998, "psi_rad": -0.5554355250584013, "kappa_radpm": 0.20100542220227788, "vx_mps": 5.566191346359127, "ax_mps2": 5.65257918687899}, {"id": 560, "s_m": 55.98596735624286, "d_m": 0.0, "x_m": 3.303713200886678, "y_m": -10.195155756919009, "d_right": 1.3833297810660223, "d_left": 1.1589520819726016, "psi_rad": -0.5361414386909797, "kappa_radpm": 0.18517318857818915, "vx_mps": 5.666808506884156, "ax_mps2": 5.929443089999142}, {"id": 561, "s_m": 56.08594229795044, "d_m": 0.0, "x_m": 3.3901533253714793, "y_m": -10.245471320272644, "d_right": 1.348374466668607, "d_left": 1.1950527372712416, "psi_rad": -0.518406027528246, "kappa_radpm": 0.16950372513383735, "vx_mps": 5.770468794496404, "ax_mps2": 5.993869852708839}, {"id": 562, "s_m": 56.18591723965801, "d_m": 0.0, "x_m": 3.477359484872065, "y_m": -10.29427301184566, "d_right": 1.319865625525844, "d_left": 1.2325332588141982, "psi_rad": -0.5022377498273793, "kappa_radpm": 0.15409768532110477, "vx_mps": 5.873396265067721, "ax_mps2": 5.9359621097157635}, {"id": 563, "s_m": 56.28589218136559, "d_m": 0.0, "x_m": 3.565379393492599, "y_m": -10.34176439995614, "d_right": 1.299945203238377, "d_left": 1.2675021534256663, "psi_rad": -0.4875908321911355, "kappa_radpm": 0.13882247289644184, "vx_mps": 5.973581724418435, "ax_mps2": 5.879518376477004}, {"id": 564, "s_m": 56.38586712307317, "d_m": 0.0, "x_m": 3.6539816072197717, "y_m": -10.387993751706658, "d_right": 1.288897046626019, "d_left": 1.2919518932973988, "psi_rad": -0.47447271541230185, "kappa_radpm": 0.12372030873828604, "vx_mps": 6.071185027012418, "ax_mps2": 5.824454781636241}, {"id": 565, "s_m": 56.48584206478074, "d_m": 0.0, "x_m": 3.7432144535383283, "y_m": -10.433156822999306, "d_right": 1.2664626624954716, "d_left": 1.3223795123285673, "psi_rad": -0.46285015777044913, "kappa_radpm": 0.1087285448979447, "vx_mps": 6.166351164729813, "ax_mps2": 5.770695211452257}, {"id": 566, "s_m": 56.58581700648832, "d_m": 0.0, "x_m": 3.8328718563767294, "y_m": -10.47731691811643, "d_right": 1.2442148888695377, "d_left": 1.3584755239537556, "psi_rad": -0.4527245114773377, "kappa_radpm": 0.09391465308282021, "vx_mps": 6.259212132650483, "ax_mps2": 5.718170338083989}, {"id": 567, "s_m": 56.6857919481959, "d_m": 0.0, "x_m": 3.9229975913319817, "y_m": -10.520660954503258, "d_right": 1.224539831444297, "d_left": 1.3975170729154633, "psi_rad": -0.44406966217891153, "kappa_radpm": 0.07919646650429518, "vx_mps": 6.349888504057919, "ax_mps2": 5.666816799132261}, {"id": 568, "s_m": 56.78576688990347, "d_m": 0.0, "x_m": 4.013411305253064, "y_m": -10.563265010914105, "d_right": 1.204664632391712, "d_left": 1.4186745366558222, "psi_rad": -0.43687836464765084, "kappa_radpm": 0.06471554412337116, "vx_mps": 6.438490768207126, "ax_mps2": 5.616576500608634}, {"id": 569, "s_m": 56.88574183161105, "d_m": 0.0, "x_m": 4.104146891858301, "y_m": -10.605305462231694, "d_right": 1.1935014167115767, "d_left": 1.4458446259427291, "psi_rad": -0.43112800826355047, "kappa_radpm": 0.050310841127516784, "vx_mps": 6.52512047312365, "ax_mps2": 5.567396021356454}, {"id": 570, "s_m": 56.98571677331863, "d_m": 0.0, "x_m": 4.195050985885972, "y_m": -10.646869588138408, "d_right": 1.1843442285505057, "d_left": 1.4730303129690403, "psi_rad": -0.42680977042294055, "kappa_radpm": 0.036101566139898386, "vx_mps": 6.609871207079125, "ax_mps2": 5.519226101433407}, {"id": 571, "s_m": 57.0856917150262, "d_m": 0.0, "x_m": 4.2861407524643464, "y_m": -10.688121735564977, "d_right": 1.1594723775917306, "d_left": 1.4934054886364467, "psi_rad": -0.4239082653637021, "kappa_radpm": 0.021948542250581852, "vx_mps": 6.69282944573497, "ax_mps2": 5.47202120041844}, {"id": 572, "s_m": 57.18566665673378, "d_m": 0.0, "x_m": 4.377291914069359, "y_m": -10.729160633983696, "d_right": 1.1430601313857647, "d_left": 1.519879430588409, "psi_rad": -0.42241345313639145, "kappa_radpm": 0.007963972911040507, "vx_mps": 6.77407528676542, "ax_mps2": 5.425739114299934}, {"id": 573, "s_m": 57.28564159844136, "d_m": 0.0, "x_m": 4.468497783197122, "y_m": -10.770136844719786, "d_right": 1.1288980765202945, "d_left": 1.5522846899341338, "psi_rad": -0.4223153006971745, "kappa_radpm": -0.0059879807389864, "vx_mps": 6.853683089705224, "ax_mps2": 5.380340641715679}, {"id": 574, "s_m": 57.38561654014893, "d_m": 0.0, "x_m": 4.5596652863180775, "y_m": -10.811161223367609, "d_right": 1.1134863270676603, "d_left": 1.5873871860225541, "psi_rad": -0.42360453548501686, "kappa_radpm": -0.01980321084106284, "vx_mps": 6.931722035551927, "ax_mps2": 5.335789291985034}, {"id": 575, "s_m": 57.48559148185651, "d_m": 0.0, "x_m": 4.6507572179093115, "y_m": -10.852368662297934, "d_right": 1.0981810968613746, "d_left": 1.60837739095761, "psi_rad": -0.4262751646891707, "kappa_radpm": -0.03361282603590488, "vx_mps": 7.008256618091008, "ax_mps2": -4.4595272185579375}, {"id": 576, "s_m": 57.58556642356409, "d_m": 0.0, "x_m": 4.741713204040635, "y_m": -10.893883211910126, "d_right": 1.0832717225181825, "d_left": 1.6355429572320124, "psi_rad": -0.4303207389464463, "kappa_radpm": -0.04731798839194292, "vx_mps": 6.944348700747899, "ax_mps2": -9.3493235471918}, {"id": 577, "s_m": 57.68554136527166, "d_m": 0.0, "x_m": 4.83245990679821, "y_m": -10.935822115806344, "d_right": 1.0662420773802623, "d_left": 1.66142317431086, "psi_rad": -0.4357374905402245, "kappa_radpm": -0.06104845207489396, "vx_mps": 6.808419987361794, "ax_mps2": -8.840912277125184}, {"id": 578, "s_m": 57.78551630697924, "d_m": 0.0, "x_m": 4.92296991584448, "y_m": -10.978323849371858, "d_right": 1.0513307696616097, "d_left": 1.684349214850297, "psi_rad": -0.4425247539595185, "kappa_radpm": -0.07471829708125631, "vx_mps": 6.67733804335326, "ax_mps2": -8.370402586778052}, {"id": 579, "s_m": 57.88549124868681, "d_m": 0.0, "x_m": 5.01312975462679, "y_m": -11.021486115200108, "d_right": 1.0320059411040365, "d_left": 1.7135131148899503, "psi_rad": -0.4506794732352204, "kappa_radpm": -0.08844584339879874, "vx_mps": 6.550815393815388, "ax_mps2": -7.938557881229489}, {"id": 580, "s_m": 57.98546619039439, "d_m": 0.0, "x_m": 5.102943261414551, "y_m": -11.065462893908414, "d_right": 1.016581809191398, "d_left": 1.7487508968611862, "psi_rad": -0.4602083231431946, "kappa_radpm": -0.10214427820775454, "vx_mps": 6.42851993860269, "ax_mps2": -7.5375594407317905}, {"id": 581, "s_m": 58.08544113210197, "d_m": 0.0, "x_m": 5.192255293325252, "y_m": -11.110330642492885, "d_right": 0.9943995525762568, "d_left": 1.7870278991169375, "psi_rad": -0.47110628140264454, "kappa_radpm": -0.11593470241830972, "vx_mps": 6.310208750081347, "ax_mps2": -7.167967431932747}, {"id": 582, "s_m": 58.18541607380954, "d_m": 0.0, "x_m": 5.281096702158378, "y_m": -11.156259217091787, "d_right": 0.9779434387544951, "d_left": 1.813985993310715, "psi_rad": -0.48339059070237855, "kappa_radpm": -0.12974754706723965, "vx_mps": 6.195603297279829, "ax_mps2": -6.823506987909775}, {"id": 583, "s_m": 58.28539101551712, "d_m": 0.0, "x_m": 5.369271553081879, "y_m": -11.203302627857399, "d_right": 0.9523498309127636, "d_left": 1.847165370164429, "psi_rad": -0.49705347975890524, "kappa_radpm": -0.1436911570271057, "vx_mps": 6.084500044420216, "ax_mps2": -6.503669833953977}, {"id": 584, "s_m": 58.3853659572247, "d_m": 0.0, "x_m": 5.456830706131291, "y_m": -11.251646171828385, "d_right": 0.9335904933603661, "d_left": 1.879274883119018, "psi_rad": -0.5121261532864918, "kappa_radpm": -0.15773530138731365, "vx_mps": 5.976682421333749, "ax_mps2": -6.205253264756839}, {"id": 585, "s_m": 58.48534089893227, "d_m": 0.0, "x_m": 5.543541276931768, "y_m": -11.301321390496078, "d_right": 0.9047814034727624, "d_left": 1.9105108665426958, "psi_rad": -0.5285977711647769, "kappa_radpm": -0.1719269667080591, "vx_mps": 5.871966714707285, "ax_mps2": -5.931936014251467}, {"id": 586, "s_m": 58.58531584063985, "d_m": 0.0, "x_m": 5.6294643476891055, "y_m": -11.352526746295975, "d_right": 0.8846488796045596, "d_left": 1.9480006414054971, "psi_rad": -0.5465028195428223, "kappa_radpm": -0.1861233456595953, "vx_mps": 5.770086930381076, "ax_mps2": -5.674903588194033}, {"id": 587, "s_m": 58.68529078234743, "d_m": 0.0, "x_m": 5.714336731807559, "y_m": -11.40527055584332, "d_right": 0.8727434279683328, "d_left": 1.9914373926563531, "psi_rad": -0.56581977702636, "kappa_radpm": -0.2005465668317952, "vx_mps": 5.67090882251715, "ax_mps2": -5.427073875401639}, {"id": 588, "s_m": 58.785265724055, "d_m": 0.0, "x_m": 5.798218403085809, "y_m": -11.459760358850733, "d_right": 0.8476388650961139, "d_left": 2.04063449798521, "psi_rad": -0.5866201662997472, "kappa_radpm": -0.21539034110212024, "vx_mps": 5.574411546040615, "ax_mps2": -5.194414060665399}, {"id": 589, "s_m": 58.88524066576258, "d_m": 0.0, "x_m": 5.880821507591944, "y_m": -11.515985466143569, "d_right": 0.8233977927493652, "d_left": 2.080015586849774, "psi_rad": -0.6088944770241547, "kappa_radpm": -0.23045101280275002, "vx_mps": 5.480459980584733, "ax_mps2": -4.978697292023938}, {"id": 590, "s_m": 58.98521560747016, "d_m": 0.0, "x_m": 5.962189927144626, "y_m": -11.574157726512775, "d_right": 0.8072925284924416, "d_left": 2.124320387043842, "psi_rad": -0.6327032821035274, "kappa_radpm": -0.24564663164405953, "vx_mps": 5.388872948557172, "ax_mps2": -4.775195200759143}, {"id": 591, "s_m": 59.08519054917773, "d_m": 0.0, "x_m": 6.0420258572065295, "y_m": -11.634250973756691, "d_right": 0.7721121259554191, "d_left": 2.1711084312106963, "psi_rad": -0.658019562415356, "kappa_radpm": -0.2611122532004816, "vx_mps": 5.299542615359831, "ax_mps2": -4.5735558141760215}, {"id": 592, "s_m": 59.18516549088531, "d_m": 0.0, "x_m": 6.120343790703567, "y_m": -11.696470280623451, "d_right": 0.7421543382028066, "d_left": 2.2155958560367157, "psi_rad": -0.6849378893383298, "kappa_radpm": -0.2771915988875037, "vx_mps": 5.212549278441184, "ax_mps2": -4.384009747116192}, {"id": 593, "s_m": 59.28514043259289, "d_m": 0.0, "x_m": 6.196827825567386, "y_m": -11.760769155622073, "d_right": 0.7221333471094268, "d_left": 2.2659637768494525, "psi_rad": -0.7134568841735689, "kappa_radpm": -0.29351232402179966, "vx_mps": 5.127776101035507, "ax_mps2": -4.234519097738429}, {"id": 594, "s_m": 59.38511537430046, "d_m": 0.0, "x_m": 6.271457957476365, "y_m": -11.827341270224627, "d_right": 0.6922729059389546, "d_left": 2.3220157480175225, "psi_rad": -0.743587302993336, "kappa_radpm": -0.3090240053812582, "vx_mps": 5.044541222196416, "ax_mps2": -4.0724087487478595}, {"id": 595, "s_m": 59.48509031600804, "d_m": 0.0, "x_m": 6.343939953162835, "y_m": -11.896133508570129, "d_right": 0.656543149164548, "d_left": 2.383338231011769, "psi_rad": -0.7752536036042024, "kappa_radpm": -0.3256923711902177, "vx_mps": 4.963176249933897, "ax_mps2": -3.800144451423028}, {"id": 596, "s_m": 59.58506525771561, "d_m": 0.0, "x_m": 6.414186918616934, "y_m": -11.967299445518526, "d_right": 0.629584273706445, "d_left": 2.448928320688938, "psi_rad": -0.8089003936332508, "kappa_radpm": -0.3473400237596117, "vx_mps": 4.8860290674416955, "ax_mps2": -3.549141277176432}, {"id": 597, "s_m": 59.68504019942319, "d_m": 0.0, "x_m": 6.481894736083186, "y_m": -12.04083388641875, "d_right": 0.613872059207214, "d_left": 2.508275316721051, "psi_rad": -0.844715069563617, "kappa_radpm": -0.3686989287804933, "vx_mps": 4.8128608605786445, "ax_mps2": -3.3336110986689422}, {"id": 598, "s_m": 59.78501514113077, "d_m": 0.0, "x_m": 6.546881954531026, "y_m": -12.116854482823863, "d_right": 0.5804874340265498, "d_left": 2.5729924309738457, "psi_rad": -0.8825961107885618, "kappa_radpm": -0.38908876024133987, "vx_mps": 4.743108106796584, "ax_mps2": -3.122685920862094}, {"id": 599, "s_m": 59.88499008283834, "d_m": 0.0, "x_m": 6.608807552641444, "y_m": -12.19527577353184, "d_right": 0.5576807779030155, "d_left": 2.6409016719697003, "psi_rad": -0.9225482245735543, "kappa_radpm": -0.40972869316276594, "vx_mps": 4.676825186698878, "ax_mps2": -3.0089732169765266}, {"id": 600, "s_m": 59.98496502454592, "d_m": 0.0, "x_m": 6.667500072213378, "y_m": -12.276201730904981, "d_right": 0.516499574601911, "d_left": 2.7077578803975166, "psi_rad": -0.9643651620836629, "kappa_radpm": -0.42655426573929756, "vx_mps": 4.6120548547266, "ax_mps2": -2.8830424333468914}, {"id": 601, "s_m": 60.0849399662535, "d_m": 0.0, "x_m": 6.722678084172071, "y_m": -12.359537047102386, "d_right": 0.4882688616989114, "d_left": 2.779576790701839, "psi_rad": -1.0078177113734519, "kappa_radpm": -0.44441378938534926, "vx_mps": 4.5491302448466495, "ax_mps2": -2.618123476880127}, {"id": 602, "s_m": 60.18491490796107, "d_m": 0.0, "x_m": 6.774116130085854, "y_m": -12.445278155533147, "d_right": 0.46398906122644373, "d_left": 2.829646140537666, "psi_rad": -1.0534589610123035, "kappa_radpm": -0.46898077508873204, "vx_mps": 4.491223942380285, "ax_mps2": -2.3042879821054663}, {"id": 603, "s_m": 60.28488984966865, "d_m": 0.0, "x_m": 6.821464931809922, "y_m": -12.533315543231964, "d_right": 0.4352152249509426, "d_left": 2.7992834214153186, "psi_rad": -1.1016856650131652, "kappa_radpm": -0.49577550607242826, "vx_mps": 4.439634037534284, "ax_mps2": -1.9963465572052068}, {"id": 604, "s_m": 60.38486479137623, "d_m": 0.0, "x_m": 6.8643924224323065, "y_m": -12.62358585537241, "d_right": 0.41221721732397204, "d_left": 2.7709897201617117, "psi_rad": -1.152558414847968, "kappa_radpm": -0.5218897371249017, "vx_mps": 4.394448898993312, "ax_mps2": -1.5658445869261308}, {"id": 605, "s_m": 60.4848397330838, "d_m": 0.0, "x_m": 6.902548819440631, "y_m": -12.71596162096728, "d_right": 0.40762657140167147, "d_left": 2.7409192765979156, "psi_rad": -1.2061254020581105, "kappa_radpm": -0.5530870986716837, "vx_mps": 4.358679924387821, "ax_mps2": -0.9035083202365961}, {"id": 606, "s_m": 60.58481467479138, "d_m": 0.0, "x_m": 6.935543216147041, "y_m": -12.8103265752957, "d_right": 0.3960106877847746, "d_left": 2.70794427476299, "psi_rad": -1.2634218319409074, "kappa_radpm": -0.5935578972970665, "vx_mps": 4.337906672574398, "ax_mps2": -0.40021729309992476}, {"id": 607, "s_m": 60.68478961649896, "d_m": 0.0, "x_m": 6.962882092555335, "y_m": -12.906463466209036, "d_right": 0.36795876760847, "d_left": 2.6743606366999937, "psi_rad": -1.3245363291194328, "kappa_radpm": -0.6229365662446251, "vx_mps": 4.328673110650587, "ax_mps2": -0.07237975117523453}, {"id": 608, "s_m": 60.78476455820653, "d_m": 0.0, "x_m": 6.9841896621978, "y_m": -13.004117711657786, "d_right": 0.3511721532260128, "d_left": 2.6393637096669953, "psi_rad": -1.3877022297686885, "kappa_radpm": -0.640925031679778, "vx_mps": 4.327001106547157, "ax_mps2": -0.07237975117519384}, {"id": 609, "s_m": 60.88473949991411, "d_m": 0.0, "x_m": 6.9992027814743905, "y_m": -13.102856317760466, "d_right": 0.35600761731161484, "d_left": 2.6090584211194594, "psi_rad": -1.4520294567057057, "kappa_radpm": -0.6377207328579377, "vx_mps": 4.325328456111885, "ax_mps2": -0.0031006132655374084}, {"id": 610, "s_m": 60.98471444162169, "d_m": 0.0, "x_m": 7.00791121564093, "y_m": -13.202442680415794, "d_right": 0.3646945499081489, "d_left": 2.580265335186931, "psi_rad": -1.5147717061306705, "kappa_radpm": -0.6171453920924511, "vx_mps": 4.325256788445082, "ax_mps2": 0.3822174617229187}, {"id": 611, "s_m": 61.08468938332926, "d_m": 0.0, "x_m": 7.010465080466094, "y_m": -13.302340875813826, "d_right": 0.3804120454558357, "d_left": 2.5611021339780393, "psi_rad": -1.5752929419161488, "kappa_radpm": -0.5930954678909133, "vx_mps": 4.334082443020782, "ax_mps2": 0.7865173753037411}, {"id": 612, "s_m": 61.18466432503684, "d_m": 0.0, "x_m": 7.007086555191322, "y_m": -13.402299261074571, "d_right": 0.3947994447393328, "d_left": 2.545358855912925, "psi_rad": -1.633524104812345, "kappa_radpm": -0.572193126089628, "vx_mps": 4.352187344358808, "ax_mps2": 1.0885592511101896}, {"id": 613, "s_m": 61.28463926674441, "d_m": 0.0, "x_m": 6.998000555861027, "y_m": -13.501841824027826, "d_right": 0.4259822975310348, "d_left": 2.5271372511365278, "psi_rad": -1.689786490559781, "kappa_radpm": -0.5524799179057481, "vx_mps": 4.37712142574854, "ax_mps2": 1.34086495619604}, {"id": 614, "s_m": 61.38461420845199, "d_m": 0.0, "x_m": 6.983428284486555, "y_m": -13.600760225655662, "d_right": 0.4539478892342198, "d_left": 2.5055274040162154, "psi_rad": -1.7439871479289675, "kappa_radpm": -0.5316621820054525, "vx_mps": 4.407640839203417, "ax_mps2": 1.5961377924250266}, {"id": 615, "s_m": 61.48458915015957, "d_m": 0.0, "x_m": 6.9636294494040865, "y_m": -13.698722863835833, "d_right": 0.49612676831011704, "d_left": 2.483938358699701, "psi_rad": -1.7961020280076045, "kappa_radpm": -0.5112366507028673, "vx_mps": 4.443697259369017, "ax_mps2": 1.8285569674809143}, {"id": 616, "s_m": 61.58456409186714, "d_m": 0.0, "x_m": 6.938834629794727, "y_m": -13.795601436015923, "d_right": 0.5247902400848143, "d_left": 2.4619920038200385, "psi_rad": -1.8463088858738583, "kappa_radpm": -0.4932994931704903, "vx_mps": 4.484647710287785, "ax_mps2": 2.0009786046843834}, {"id": 617, "s_m": 61.68453903357472, "d_m": 0.0, "x_m": 6.909303722571084, "y_m": -13.891102759816377, "d_right": 0.557216937860606, "d_left": 2.4396102426097994, "psi_rad": -1.89478391535161, "kappa_radpm": -0.47620928057452727, "vx_mps": 4.529035275211746, "ax_mps2": 2.1526222096081713}, {"id": 618, "s_m": 61.7845139752823, "d_m": 0.0, "x_m": 6.875254344753423, "y_m": -13.985106884752492, "d_right": 0.6005598824180542, "d_left": 2.409307360575439, "psi_rad": -1.9415531756381403, "kappa_radpm": -0.4594400109645349, "vx_mps": 4.576306052260969, "ax_mps2": 2.2971816522641695}, {"id": 619, "s_m": 61.88448891698987, "d_m": 0.0, "x_m": 6.836934070616327, "y_m": -14.077424208770951, "d_right": 0.6526794979051607, "d_left": 2.33918193570744, "psi_rad": -1.9866670011504954, "kappa_radpm": -0.4432150626582202, "vx_mps": 4.626218573253322, "ax_mps2": 2.4316201478373585}, {"id": 620, "s_m": 61.98446385869745, "d_m": 0.0, "x_m": 6.794549012173591, "y_m": -14.167979076702894, "d_right": 0.7078897458346273, "d_left": 2.259528689441324, "psi_rad": -2.0302120491624827, "kappa_radpm": -0.4279740737456825, "vx_mps": 4.678472021139384, "ax_mps2": 2.547844744789508}, {"id": 621, "s_m": 62.08443880040503, "d_m": 0.0, "x_m": 6.7483363818684765, "y_m": -14.256624048072597, "d_right": 0.7507388408695848, "d_left": 2.1843587765913974, "psi_rad": -2.0722454738382616, "kappa_radpm": -0.412811748017581, "vx_mps": 4.732604115311634, "ax_mps2": 2.6674465017382922}, {"id": 622, "s_m": 62.1844137421126, "d_m": 0.0, "x_m": 6.698501087738378, "y_m": -14.34329302119346, "d_right": 0.800385993299973, "d_left": 2.1141665429572982, "psi_rad": -2.1127847272934517, "kappa_radpm": -0.39829150123851637, "vx_mps": 4.788621652344578, "ax_mps2": 2.778171461570248}, {"id": 623, "s_m": 62.28438868382018, "d_m": 0.0, "x_m": 6.6452579023842775, "y_m": -14.427903313232013, "d_right": 0.8518991079960474, "d_left": 2.0482850585405643, "psi_rad": -2.1519154702268937, "kappa_radpm": -0.3845859443232013, "vx_mps": 4.846276136287697, "ax_mps2": 2.876669136821946}, {"id": 624, "s_m": 62.38436362552776, "d_m": 0.0, "x_m": 6.5888002313813425, "y_m": -14.510405820680267, "d_right": 0.8916085160920559, "d_left": 1.9794532263543567, "psi_rad": -2.189698781084388, "kappa_radpm": -0.3713494676663117, "vx_mps": 4.905260650330739, "ax_mps2": 2.971726260850184}, {"id": 625, "s_m": 62.48433856723533, "d_m": 0.0, "x_m": 6.5293213947589175, "y_m": -14.590750768389665, "d_right": 0.9298247400742385, "d_left": 1.9085773335383909, "psi_rad": -2.2262165737920547, "kappa_radpm": -0.35942554668563376, "vx_mps": 4.965458525361163, "ax_mps2": 3.0427682632618245}, {"id": 626, "s_m": 62.58431350894291, "d_m": 0.0, "x_m": 6.466989094158394, "y_m": -14.668913261510932, "d_right": 0.9736985199428008, "d_left": 1.843117599070383, "psi_rad": -2.2615806957407134, "kappa_radpm": -0.34808619114833544, "vx_mps": 5.026348528164397, "ax_mps2": 3.108220880720727}, {"id": 627, "s_m": 62.68428845065049, "d_m": 0.0, "x_m": 6.401976176253587, "y_m": -14.744859070412907, "d_right": 1.0170173619158571, "d_left": 1.7836733516654804, "psi_rad": -2.2958004203883053, "kappa_radpm": -0.33641941941310916, "vx_mps": 5.0877959795287655, "ax_mps2": 3.1914889584279975}, {"id": 628, "s_m": 62.78426339235806, "d_m": 0.0, "x_m": 6.334446699117673, "y_m": -14.818574407991637, "d_right": 1.0625442188443885, "d_left": 1.730839971834527, "psi_rad": -2.3288662813236964, "kappa_radpm": -0.3251626675102275, "vx_mps": 5.150126772659822, "ax_mps2": 3.2729119619269533}, {"id": 629, "s_m": 62.88423833406564, "d_m": 0.0, "x_m": 6.264553124212688, "y_m": -14.890059333637957, "d_right": 1.107133902481914, "d_left": 1.6779936083729061, "psi_rad": -2.3608296943547664, "kappa_radpm": -0.31424828794490434, "vx_mps": 5.213273840849226, "ax_mps2": 3.354223122777615}, {"id": 630, "s_m": 62.98421327577322, "d_m": 0.0, "x_m": 6.192455517359435, "y_m": -14.959306555081394, "d_right": 1.1465482515277603, "d_left": 1.622455812714821, "psi_rad": -2.391707788952568, "kappa_radpm": -0.3035432361186362, "vx_mps": 5.277205762714834, "ax_mps2": 3.4389953754183256}, {"id": 631, "s_m": 63.08418821748079, "d_m": 0.0, "x_m": 6.1182842436868015, "y_m": -15.026339029975812, "d_right": 1.1904087698704118, "d_left": 1.5622509508044455, "psi_rad": -2.421536793521954, "kappa_radpm": -0.29322001945263165, "vx_mps": 5.341959133727135, "ax_mps2": 3.522201439377424}, {"id": 632, "s_m": 63.18416315918837, "d_m": 0.0, "x_m": 6.042183768013278, "y_m": -15.091165326584001, "d_right": 1.2333769677142175, "d_left": 1.508152991095733, "psi_rad": -2.450344803916831, "kappa_radpm": -0.28314575507964657, "vx_mps": 5.407475488023869, "ax_mps2": 3.6075540984120136}, {"id": 633, "s_m": 63.284138100895944, "d_m": 0.0, "x_m": 5.964274096536947, "y_m": -15.15381525252319, "d_right": 1.271700530080713, "d_left": 1.4614266059468823, "psi_rad": -2.478162805599055, "kappa_radpm": -0.2733714763380478, "vx_mps": 5.47376663504851, "ax_mps2": 3.6933821475980073}, {"id": 634, "s_m": 63.38411304260352, "d_m": 0.0, "x_m": 5.884685903066761, "y_m": -15.214309195134563, "d_right": 1.3096594133679456, "d_left": 1.4227516679430456, "psi_rad": -2.505011938552247, "kappa_radpm": -0.26379919873219315, "vx_mps": 5.540813343254773, "ax_mps2": 3.7825195840185644}, {"id": 635, "s_m": 63.4840879843111, "d_m": 0.0, "x_m": 5.8035258437477495, "y_m": -15.272686216351946, "d_right": 1.3430129310494074, "d_left": 1.3806697444517932, "psi_rad": -2.5309163322161616, "kappa_radpm": -0.25442718681304605, "vx_mps": 5.608647506719441, "ax_mps2": 3.8748953730966247}, {"id": 636, "s_m": 63.584062926018674, "d_m": 0.0, "x_m": 5.7209105743766715, "y_m": -15.328977800708891, "d_right": 1.3767028910394594, "d_left": 1.3456498126297203, "psi_rad": -2.5558889543398795, "kappa_radpm": -0.24518781760436054, "vx_mps": 5.677297925309782, "ax_mps2": 3.972574532262986}, {"id": 637, "s_m": 63.68403786772625, "d_m": 0.0, "x_m": 5.636938045957184, "y_m": -15.383228838583085, "d_right": 1.4055795630999504, "d_left": 1.3008564895439374, "psi_rad": -2.579949260703277, "kappa_radpm": -0.23615645684443837, "vx_mps": 5.74682760723782, "ax_mps2": 4.073017248266538}, {"id": 638, "s_m": 63.78401280943383, "d_m": 0.0, "x_m": 5.551708554399029, "y_m": -15.435482039875026, "d_right": 1.4386374155101138, "d_left": 1.2626132175875033, "psi_rad": -2.6031121094325886, "kappa_radpm": -0.22724076750583794, "vx_mps": 5.817252519123575, "ax_mps2": 4.179253990871011}, {"id": 639, "s_m": 63.883987751141404, "d_m": 0.0, "x_m": 5.465314958293999, "y_m": -15.48578494035583, "d_right": 1.4756590079201684, "d_left": 1.2284053964055754, "psi_rad": -2.6253917845983494, "kappa_radpm": -0.21848367907541577, "vx_mps": 5.888638910604599, "ax_mps2": 4.28979315557261}, {"id": 640, "s_m": 63.98396269284898, "d_m": 0.0, "x_m": 5.377840129022122, "y_m": -15.534190583328577, "d_right": 1.5164164560678752, "d_left": 1.1885392850043726, "psi_rad": -2.646800533955332, "kappa_radpm": -0.20980773761368246, "vx_mps": 5.9610243969319905, "ax_mps2": 4.40736354717378}, {"id": 641, "s_m": 64.08393763455656, "d_m": 0.0, "x_m": 5.289374441885206, "y_m": -15.580747982729143, "d_right": 1.5556275640569766, "d_left": 1.1505233321846817, "psi_rad": -2.667348651655752, "kappa_radpm": -0.201283790195715, "vx_mps": 6.0344895134753544, "ax_mps2": 4.52946341082216}, {"id": 642, "s_m": 64.18391257626413, "d_m": 0.0, "x_m": 5.199981999093675, "y_m": -15.625519722483814, "d_right": 1.580595175315867, "d_left": 1.1221090946745274, "psi_rad": -2.6870492265041053, "kappa_radpm": -0.19282410292641336, "vx_mps": 6.109069435615466, "ax_mps2": 4.65938813689133}, {"id": 643, "s_m": 64.2838875179717, "d_m": 0.0, "x_m": 5.109753215513396, "y_m": -15.668554984547603, "d_right": 1.6095645444965905, "d_left": 1.103576217945733, "psi_rad": -2.7059096108084013, "kappa_radpm": -0.18451030324979417, "vx_mps": 6.184850320252576, "ax_mps2": 4.794165686084937}, {"id": 644, "s_m": 64.38386245967929, "d_m": 0.0, "x_m": 5.018733267291389, "y_m": -15.709924367623959, "d_right": 1.6423985645357255, "d_left": 1.070779910966643, "psi_rad": -2.7239433879333905, "kappa_radpm": -0.17624397649758247, "vx_mps": 6.261866044074569, "ax_mps2": 4.937720325282842}, {"id": 645, "s_m": 64.48383740138686, "d_m": 0.0, "x_m": 4.927013307508757, "y_m": -15.749677109694018, "d_right": 1.678925912684096, "d_left": 1.0482753647804437, "psi_rad": -2.7411541646624746, "kappa_radpm": -0.1680954511514162, "vx_mps": 6.340210008928016, "ax_mps2": 5.087455086849181}, {"id": 646, "s_m": 64.58381234309444, "d_m": 0.0, "x_m": 4.8346211934722625, "y_m": -15.787889966364357, "d_right": 1.7141092242693678, "d_left": 1.0315035503986876, "psi_rad": -2.7575551334071706, "kappa_radpm": -0.15999303500094697, "vx_mps": 6.419929828962795, "ax_mps2": 5.24647499411031}, {"id": 647, "s_m": 64.68378728480202, "d_m": 0.0, "x_m": 4.741649836941964, "y_m": -15.824612004897645, "d_right": 1.7310305133046342, "d_left": 0.9971207270043279, "psi_rad": -2.7731512263653952, "kappa_radpm": -0.15204809971685063, "vx_mps": 6.501117678693352, "ax_mps2": 5.410370752031588}, {"id": 648, "s_m": 64.7837622265096, "d_m": 0.0, "x_m": 4.648107498174491, "y_m": -15.859925484871114, "d_right": 1.7520283251218993, "d_left": 0.970560354030513, "psi_rad": -2.7879572685810103, "kappa_radpm": -0.14412446750510846, "vx_mps": 6.583793289078923, "ax_mps2": 5.534053967360474}, {"id": 649, "s_m": 64.88373716821717, "d_m": 0.0, "x_m": 4.554090882365469, "y_m": -15.893878344614318, "d_right": 1.7770186083427217, "d_left": 0.9552270551974601, "psi_rad": -2.8019754416550313, "kappa_radpm": -0.1363565588850339, "vx_mps": 6.667298367322966, "ax_mps2": 5.486554563900892}, {"id": 650, "s_m": 64.98371210992475, "d_m": 0.0, "x_m": 4.459593218625821, "y_m": -15.926555722100268, "d_right": 1.8059179918097212, "d_left": 0.9453643865700674, "psi_rad": -2.815222873745813, "kappa_radpm": -0.12861343194060398, "vx_mps": 6.749066858782069, "ax_mps2": 5.439990723144841}, {"id": 651, "s_m": 65.08368705163232, "d_m": 0.0, "x_m": 4.3647103881511935, "y_m": -15.958006589689083, "d_right": 1.8374391680708606, "d_left": 0.9137097225257087, "psi_rad": -2.8276847293363385, "kappa_radpm": -0.12072600634667217, "vx_mps": 6.829174838527912, "ax_mps2": 5.394322345924649}, {"id": 652, "s_m": 65.1836619933399, "d_m": 0.0, "x_m": 4.2694276034052185, "y_m": -15.98831866892934, "d_right": 1.85409664439972, "d_left": 0.8929460154614843, "psi_rad": -2.8393624050978588, "kappa_radpm": -0.11284362609667438, "vx_mps": 6.907693037429651, "ax_mps2": 5.349512130195653}, {"id": 653, "s_m": 65.28363693504748, "d_m": 0.0, "x_m": 4.173837124772194, "y_m": -16.01754545595556, "d_right": 1.869202608128884, "d_left": 0.8842106570641304, "psi_rad": -2.8502424805589843, "kappa_radpm": -0.10484997145752176, "vx_mps": 6.984687353497989, "ax_mps2": 5.305525304205307}, {"id": 654, "s_m": 65.38361187675505, "d_m": 0.0, "x_m": 4.077916208986318, "y_m": -16.045777264842286, "d_right": 1.8879932504308774, "d_left": 0.8763684368284069, "psi_rad": -2.860327728686105, "kappa_radpm": -0.09689578455262436, "vx_mps": 7.06021930198678, "ax_mps2": 5.262329391567399}, {"id": 655, "s_m": 65.48358681846263, "d_m": 0.0, "x_m": 3.981756287738947, "y_m": -16.073069878353238, "d_right": 1.9063855069738371, "d_left": 0.8600067939093238, "psi_rad": -2.8696228388901925, "kappa_radpm": -0.0890867324938249, "vx_mps": 7.134346412985753, "ax_mps2": 5.219894003696423}, {"id": 656, "s_m": 65.58356176017021, "d_m": 0.0, "x_m": 3.8853261910962282, "y_m": -16.099513448999478, "d_right": 1.922498072283148, "d_left": 0.8559843139503104, "psi_rad": -2.8781411010768165, "kappa_radpm": -0.0813118461840951, "vx_mps": 7.207122583802868, "ax_mps2": 5.178190655802396}, {"id": 657, "s_m": 65.68353670187778, "d_m": 0.0, "x_m": 3.7887158995368018, "y_m": -16.12516374018221, "d_right": 1.9296500042459908, "d_left": 0.8466359429070857, "psi_rad": -2.88588586301511, "kappa_radpm": -0.07365207640440699, "vx_mps": 7.2785983922655335, "ax_mps2": 5.137192603256728}, {"id": 658, "s_m": 65.78351164358536, "d_m": 0.0, "x_m": 3.691886747498688, "y_m": -16.15011036077379, "d_right": 1.941203949381103, "d_left": 0.8225604957036722, "psi_rad": -2.89286827605328, "kappa_radpm": -0.06601986363236638, "vx_mps": 7.34882137611146, "ax_mps2": 5.096874695636036}, {"id": 659, "s_m": 65.88348658529294, "d_m": 0.0, "x_m": 3.59492796338575, "y_m": -16.174409004875333, "d_right": 1.957148471888879, "d_left": 0.8108555576543864, "psi_rad": -2.899089547640793, "kappa_radpm": -0.05846233510680201, "vx_mps": 7.417836282850067, "ax_mps2": 5.057213246162895}, {"id": 660, "s_m": 65.98346152700051, "d_m": 0.0, "x_m": 3.497795119941859, "y_m": -16.19814876136086, "d_right": 1.977461171570731, "d_left": 0.8119733781631974, "psi_rad": -2.904558395291131, "kappa_radpm": -0.05093827333133968, "vx_mps": 7.485685293821982, "ax_mps2": 5.018185914602824}, {"id": 661, "s_m": 66.08343646870809, "d_m": 0.0, "x_m": 3.400576148186047, "y_m": -16.221385442303422, "d_right": 1.9916763586485795, "d_left": 0.8022668593049803, "psi_rad": -2.9092784371745166, "kappa_radpm": -0.04350661484774192, "vx_mps": 7.5524082256405505, "ax_mps2": 4.9797716019585065}, {"id": 662, "s_m": 66.18341141041567, "d_m": 0.0, "x_m": 3.3032232712053684, "y_m": -16.244206945445264, "d_right": 1.9968588825937947, "d_left": 0.7939268595731577, "psi_rad": -2.913258166111344, "kappa_radpm": -0.03610846891526896, "vx_mps": 7.618042711744851, "ax_mps2": 4.941950355539628}, {"id": 663, "s_m": 66.28338635212324, "d_m": 0.0, "x_m": 3.2058219250208015, "y_m": -16.26666908857784, "d_right": 2.006653468499383, "d_left": 0.7903880268738647, "psi_rad": -2.9165018284528568, "kappa_radpm": -0.02879598811695725, "vx_mps": 7.682624366412978, "ax_mps2": 4.904703283184204}, {"id": 664, "s_m": 66.38336129383082, "d_m": 0.0, "x_m": 3.108323085051452, "y_m": -16.288858283395932, "d_right": 2.0210716966587827, "d_left": 0.7821708918568292, "psi_rad": -2.9190165602463285, "kappa_radpm": -0.02151671623189261, "vx_mps": 7.746186933263421, "ax_mps2": 4.868012475575641}, {"id": 665, "s_m": 66.4833362355384, "d_m": 0.0, "x_m": 3.0108091083081066, "y_m": -16.310830305282074, "d_right": 2.0400768903807323, "d_left": 0.763984394512524, "psi_rad": -2.9208074829248005, "kappa_radpm": -0.01432033623126001, "vx_mps": 7.808762420000747, "ax_mps2": 4.831860935739836}, {"id": 666, "s_m": 66.58331117724597, "d_m": 0.0, "x_m": 2.913231766239021, "y_m": -16.332669848319775, "d_right": 2.0501646278499273, "d_left": 0.7587847746542477, "psi_rad": -2.9218805467714652, "kappa_radpm": -0.007157173138481542, "vx_mps": 7.870381220931759, "ax_mps2": 4.796232514925435}, {"id": 667, "s_m": 66.68328611895355, "d_m": 0.0, "x_m": 2.8156694682959147, "y_m": -16.354432634447264, "d_right": 2.0551847360659656, "d_left": 0.7663818675662797, "psi_rad": -2.9222419505884787, "kappa_radpm": -7.722470748354613e-05, "vx_mps": 7.93107222858212, "ax_mps2": 4.761111854176956}, {"id": 668, "s_m": 66.78326106066113, "d_m": 0.0, "x_m": 2.718077326876984, "y_m": -16.37620127636107, "d_right": 2.065039907561892, "d_left": 0.7502332051083436, "psi_rad": -2.9218965521751876, "kappa_radpm": 0.006971988004428627, "vx_mps": 7.990862935575596, "ax_mps2": 4.726484330991672}, {"id": 669, "s_m": 66.8832360023687, "d_m": 0.0, "x_m": 2.6205284384430962, "y_m": -16.398031570041073, "d_right": 2.0797250923462998, "d_left": 0.7471607922724969, "psi_rad": -2.9208510859220986, "kappa_radpm": 0.013942528381927204, "vx_mps": 8.049779527794604, "ax_mps2": 4.692336010531037}, {"id": 670, "s_m": 66.98321094407628, "d_m": 0.0, "x_m": 2.522983281668683, "y_m": -16.42000384412262, "d_right": 2.0847669645615543, "d_left": 0.7507363569365292, "psi_rad": -2.91910919387324, "kappa_radpm": 0.020885702852578836, "vx_mps": 8.107846969717144, "ax_mps2": 4.658653600919543}, {"id": 671, "s_m": 67.08318588578386, "d_m": 0.0, "x_m": 2.425508763005051, "y_m": -16.442174084833823, "d_right": 2.0910207308782853, "d_left": 0.7361760945871514, "psi_rad": -2.9166779541111474, "kappa_radpm": 0.02775480507597722, "vx_mps": 8.165089082718389, "ax_mps2": 4.625424412219455}, {"id": 672, "s_m": 67.18316082749143, "d_m": 0.0, "x_m": 2.328073395345709, "y_m": -16.464619948344534, "d_right": 2.0966696757254106, "d_left": 0.7230281430306802, "psi_rad": -2.913559874241665, "kappa_radpm": 0.034600871144622646, "vx_mps": 8.2215286170332, "ax_mps2": 4.592636318717292}, {"id": 673, "s_m": 67.283135769199, "d_m": 0.0, "x_m": 2.230736153153267, "y_m": -16.48739799091369, "d_right": 2.0995394679792287, "d_left": 0.7217322830530926, "psi_rad": -2.9097624861967555, "kappa_radpm": 0.041371514833152156, "vx_mps": 8.277187317995862, "ax_mps2": 4.560277724203233}, {"id": 674, "s_m": 67.38311071090659, "d_m": 0.0, "x_m": 2.1334768795808996, "y_m": -16.51058251141778, "d_right": 2.1075664433171815, "d_left": 0.7104407515791176, "psi_rad": -2.9052876263139327, "kappa_radpm": 0.04812951479096639, "vx_mps": 8.332085987103516, "ax_mps2": 4.528337529955558}, {"id": 675, "s_m": 67.48308565261416, "d_m": 0.0, "x_m": 2.036344606477036, "y_m": -16.534231207671397, "d_right": 2.120756213665615, "d_left": 0.6961634407085545, "psi_rad": -2.900141105734339, "kappa_radpm": 0.054832569226351206, "vx_mps": 8.386244538389386, "ax_mps2": -5.839969089833696}, {"id": 676, "s_m": 67.58306059432174, "d_m": 0.0, "x_m": 1.9393318199288594, "y_m": -16.558414917859498, "d_right": 2.1373323735778555, "d_left": 0.6955495001466265, "psi_rad": -2.894323804482452, "kappa_radpm": 0.06151142471508455, "vx_mps": 8.316333105341892, "ax_mps2": -7.6582151762466095}, {"id": 677, "s_m": 67.68303553602931, "d_m": 0.0, "x_m": 1.8424775678246559, "y_m": -16.58319258135448, "d_right": 2.1430967691952616, "d_left": 0.6882502325810388, "psi_rad": -2.887846858254864, "kappa_radpm": 0.06806479815439939, "vx_mps": 8.223754439873975, "ax_mps2": -7.319984656526547}, {"id": 678, "s_m": 67.7830104777369, "d_m": 0.0, "x_m": 1.7457894781592684, "y_m": -16.608629993110185, "d_right": 2.154167029854317, "d_left": 0.6741551515762371, "psi_rad": -2.880713788430871, "kappa_radpm": 0.07459671401156405, "vx_mps": 8.134279747382283, "ax_mps2": -7.007324444438984}, {"id": 679, "s_m": 67.88298541944447, "d_m": 0.0, "x_m": 1.6492942582542962, "y_m": -16.63478745329473, "d_right": 2.160844336527011, "d_left": 0.6739960925529437, "psi_rad": -2.872938182666015, "kappa_radpm": 0.08095446462633986, "vx_mps": 8.047694906180025, "ax_mps2": -6.706460219969726}, {"id": 680, "s_m": 67.98296036115204, "d_m": 0.0, "x_m": 1.5530178356271818, "y_m": -16.66172395499367, "d_right": 2.1695526708850914, "d_left": 0.6604850581183389, "psi_rad": -2.86452596272919, "kappa_radpm": 0.08732798089037763, "vx_mps": 7.963946092474803, "ax_mps2": -6.419294652448433}, {"id": 681, "s_m": 68.08293530285962, "d_m": 0.0, "x_m": 1.4569722193972172, "y_m": -16.689502279046984, "d_right": 2.1836728609072984, "d_left": 0.6460210738780596, "psi_rad": -2.8554778384869905, "kappa_radpm": 0.0936731149297721, "vx_mps": 7.882949964732744, "ax_mps2": -6.141059859190552}, {"id": 682, "s_m": 68.1829102445672, "d_m": 0.0, "x_m": 1.3612032828914558, "y_m": -16.718175184994482, "d_right": 2.191737454945338, "d_left": 0.6459341470212054, "psi_rad": -2.8457946693491305, "kappa_radpm": 0.10005122072385965, "vx_mps": 7.804677824458189, "ax_mps2": -5.871713762541741}, {"id": 683, "s_m": 68.28288518627477, "d_m": 0.0, "x_m": 1.265709361066285, "y_m": -16.74780977108858, "d_right": 2.203904858741625, "d_left": 0.6403825865925522, "psi_rad": -2.835471396841861, "kappa_radpm": 0.10645026894169964, "vx_mps": 7.72909745451059, "ax_mps2": -5.609442824938352}, {"id": 684, "s_m": 68.38286012798235, "d_m": 0.0, "x_m": 1.1705571940871928, "y_m": -16.778452239538165, "d_right": 2.2211652940780966, "d_left": 0.6317449464999704, "psi_rad": -2.8245082065562483, "kappa_radpm": 0.11288744954524242, "vx_mps": 7.6561961849505655, "ax_mps2": -5.356246467839159}, {"id": 685, "s_m": 68.48283506968993, "d_m": 0.0, "x_m": 1.075731568867747, "y_m": -16.81017510327511, "d_right": 2.2251384866413506, "d_left": 0.6134666591078319, "psi_rad": -2.8128995535995607, "kappa_radpm": 0.11931629103773801, "vx_mps": 7.585931661019916, "ax_mps2": -5.1074974603336845}, {"id": 686, "s_m": 68.5828100113975, "d_m": 0.0, "x_m": 0.9813214579769962, "y_m": -16.843016322748355, "d_right": 2.232987902010397, "d_left": 0.5978099606009522, "psi_rad": -2.800648755559812, "kappa_radpm": 0.12580282425090078, "vx_mps": 7.518318671347172, "ax_mps2": -4.864448736835682}, {"id": 687, "s_m": 68.68278495310508, "d_m": 0.0, "x_m": 0.8872991156068165, "y_m": -16.877054214080097, "d_right": 2.246512713799711, "d_left": 0.5974118473758742, "psi_rad": -2.787744159521841, "kappa_radpm": 0.13231289027180368, "vx_mps": 7.45335291570969, "ax_mps2": -4.6247704090496145}, {"id": 688, "s_m": 68.78275989481266, "d_m": 0.0, "x_m": 0.7937708638639382, "y_m": -16.912319432768342, "d_right": 2.265662747746273, "d_left": 0.581437359346488, "psi_rad": -2.7741910613612957, "kappa_radpm": 0.13887468723126134, "vx_mps": 7.391058610375571, "ax_mps2": -4.386183544535704}, {"id": 689, "s_m": 68.88273483652023, "d_m": 0.0, "x_m": 0.700702763502328, "y_m": -16.948894991316116, "d_right": 2.2863925596906407, "d_left": 0.5732282368019216, "psi_rad": -2.759972632599381, "kappa_radpm": 0.14551630691901365, "vx_mps": 7.3314889683910405, "ax_mps2": -4.147721344251716}, {"id": 690, "s_m": 68.98270977822781, "d_m": 0.0, "x_m": 0.6082176577517795, "y_m": -16.986803845590853, "d_right": 2.2965425766983434, "d_left": 0.5509487506877576, "psi_rad": -2.7450919260908906, "kappa_radpm": 0.15224209524107174, "vx_mps": 7.274709210299596, "ax_mps2": -3.910891815373638}, {"id": 691, "s_m": 69.08268471993539, "d_m": 0.0, "x_m": 0.5162771683327774, "y_m": -17.026134401493334, "d_right": 2.310814569255857, "d_left": 0.5329569990027498, "psi_rad": -2.729529977309536, "kappa_radpm": 0.15900966582460763, "vx_mps": 7.220762545042218, "ax_mps2": -3.6721915468211517}, {"id": 692, "s_m": 69.18265966164296, "d_m": 0.0, "x_m": 0.42501954855176816, "y_m": -17.066901011143646, "d_right": 2.3245851627939627, "d_left": 0.5090289229218912, "psi_rad": -2.7132951934741216, "kappa_radpm": 0.1658691972033991, "vx_mps": 7.169739009212233, "ax_mps2": -3.4275486167390437}, {"id": 693, "s_m": 69.28263460335054, "d_m": 0.0, "x_m": 0.33440405166337134, "y_m": -17.10919710887316, "d_right": 2.3441754035445537, "d_left": 0.489446965444838, "psi_rad": -2.6963582327667943, "kappa_radpm": 0.17288164295942937, "vx_mps": 7.121784854508229, "ax_mps2": -3.179204544005824}, {"id": 694, "s_m": 69.38260954505812, "d_m": 0.0, "x_m": 0.2445806206542901, "y_m": -17.153029888711394, "d_right": 2.3617730924184848, "d_left": 0.48817972014423244, "psi_rad": -2.6787244491470545, "kappa_radpm": 0.17998537528377107, "vx_mps": 7.077014761605061, "ax_mps2": -2.9267688571100154}, {"id": 695, "s_m": 69.48258448676569, "d_m": 0.0, "x_m": 0.15551443358466885, "y_m": -17.198495323443115, "d_right": 2.3793328917741015, "d_left": 0.4719859822694393, "psi_rad": -2.6603674221550992, "kappa_radpm": 0.18716739085577697, "vx_mps": 7.035547657731679, "ax_mps2": -2.6656914605200788}, {"id": 696, "s_m": 69.58255942847327, "d_m": 0.0, "x_m": 0.06735982800862893, "y_m": -17.245595190423643, "d_right": 2.396527952149473, "d_left": 0.4584133979369262, "psi_rad": -2.6412972364255776, "kappa_radpm": 0.19449448575933392, "vx_mps": 6.997565730128007, "ax_mps2": -2.3823091512031507}, {"id": 697, "s_m": 69.68253437018085, "d_m": 0.0, "x_m": -0.01990554254344291, "y_m": -17.29442481234153, "d_right": 2.4105034115363395, "d_left": 0.450328680960585, "psi_rad": -2.6214631236152437, "kappa_radpm": 0.2022113353954182, "vx_mps": 6.963446252425591, "ax_mps2": -2.0908261304265805}, {"id": 698, "s_m": 69.78250931188842, "d_m": 0.0, "x_m": -0.10612380392789074, "y_m": -17.34498385134124, "d_right": 2.421343158151149, "d_left": 0.4344712302647934, "psi_rad": -2.6008619330976845, "kappa_radpm": 0.20999980148880804, "vx_mps": 6.93336305622314, "ax_mps2": -1.7956981865078927}, {"id": 699, "s_m": 69.882484253596, "d_m": 0.0, "x_m": -0.19130009064796727, "y_m": -17.39736525761323, "d_right": 2.438311338772515, "d_left": 0.41092666289606095, "psi_rad": -2.5794767391652442, "kappa_radpm": 0.21773656807659514, "vx_mps": 6.907421633747196, "ax_mps2": -1.480826908711258}, {"id": 700, "s_m": 69.98245919530358, "d_m": 0.0, "x_m": -0.2752798551239852, "y_m": -17.45156495608763, "d_right": 2.4613342570441756, "d_left": 0.40340572493284915, "psi_rad": -2.55732164928939, "kappa_radpm": 0.2257126407739601, "vx_mps": 6.885955449943309, "ax_mps2": -1.1224706814016463}, {"id": 701, "s_m": 70.08243413701115, "d_m": 0.0, "x_m": -0.3580470753300873, "y_m": -17.507668028303144, "d_right": 2.490327835063537, "d_left": 0.38361779567510484, "psi_rad": -2.534320899695322, "kappa_radpm": 0.23436130017211376, "vx_mps": 6.869639333816644, "ax_mps2": -0.7710478442428189}, {"id": 702, "s_m": 70.18240907871873, "d_m": 0.0, "x_m": -0.4394506007645793, "y_m": -17.56567589278212, "d_right": 2.5120132005980915, "d_left": 0.3616376188839118, "psi_rad": -2.5104640465906147, "kappa_radpm": 0.24258784889869647, "vx_mps": 6.858408973672897, "ax_mps2": -0.47017126932709563}, {"id": 703, "s_m": 70.2823840204263, "d_m": 0.0, "x_m": -0.5194509135435188, "y_m": -17.625659832099938, "d_right": 2.525476454910628, "d_left": 0.3593583407806329, "psi_rad": -2.4858650018438055, "kappa_radpm": 0.24947521744552228, "vx_mps": 6.851551865064572, "ax_mps2": -0.22035211213880432}, {"id": 704, "s_m": 70.38235896213388, "d_m": 0.0, "x_m": -0.5978923803842393, "y_m": -17.687590007657576, "d_right": 2.5368530985740074, "d_left": 0.3488029659263002, "psi_rad": -2.4605978197572886, "kappa_radpm": 0.25503262046268066, "vx_mps": 6.8483358256248925, "ax_mps2": -0.18116637851790687}, {"id": 705, "s_m": 70.48233390384146, "d_m": 0.0, "x_m": -0.6747475572377201, "y_m": -17.75150898788354, "d_right": 2.554599793914048, "d_left": 0.3447360350051526, "psi_rad": -2.4350458009230307, "kappa_radpm": 0.2560629333900216, "vx_mps": 6.845690570298513, "ax_mps2": -0.18116637851796816}, {"id": 706, "s_m": 70.58230884554904, "d_m": 0.0, "x_m": -0.7499345672056114, "y_m": -17.81736632748536, "d_right": 2.564601542852461, "d_left": 0.351329791686618, "psi_rad": -2.4094750297626577, "kappa_radpm": 0.25349715047729665, "vx_mps": 6.843044292419169, "ax_mps2": -0.05160209666356807}, {"id": 707, "s_m": 70.68228378725661, "d_m": 0.0, "x_m": -0.8234316860608643, "y_m": -17.88510277117535, "d_right": 2.5731396948214953, "d_left": 0.35540179721924564, "psi_rad": -2.3845991320699893, "kappa_radpm": 0.24426588674640157, "vx_mps": 6.842290358849053, "ax_mps2": 0.3832328274683279}, {"id": 708, "s_m": 70.7822587289642, "d_m": 0.0, "x_m": -0.8952829944687487, "y_m": -17.95464248732142, "d_right": 2.5388993111978597, "d_left": 0.37185155911491413, "psi_rad": -2.360655256538729, "kappa_radpm": 0.23372222461744882, "vx_mps": 6.847887609618886, "ax_mps2": 0.8586490514341051}, {"id": 709, "s_m": 70.88223367067177, "d_m": 0.0, "x_m": -0.9654668440800146, "y_m": -18.02581595367584, "d_right": 2.5014726906150324, "d_left": 0.39211355401314263, "psi_rad": -2.337950732793211, "kappa_radpm": 0.22061266187764356, "vx_mps": 6.860411903938468, "ax_mps2": 1.434863190714205}, {"id": 710, "s_m": 70.98220861237934, "d_m": 0.0, "x_m": -1.034087646417798, "y_m": -18.0985454639694, "d_right": 2.4570137473549734, "d_left": 0.38921079423057336, "psi_rad": -2.3165344619535464, "kappa_radpm": 0.20767117671679317, "vx_mps": 6.881290011284267, "ax_mps2": 1.983267322502855}, {"id": 711, "s_m": 71.08218355408692, "d_m": 0.0, "x_m": -1.101161276484732, "y_m": -18.172658899344196, "d_right": 2.4131669818084887, "d_left": 0.4016580079479777, "psi_rad": -2.2964327510622895, "kappa_radpm": 0.1945387174748078, "vx_mps": 6.910043870288827, "ax_mps2": 2.5264393996195182}, {"id": 712, "s_m": 71.1821584957945, "d_m": 0.0, "x_m": -1.166799256120348, "y_m": -18.24808396550219, "d_right": 2.374513091488106, "d_left": 0.4331163267439271, "psi_rad": -2.27763339440253, "kappa_radpm": 0.18151575029719505, "vx_mps": 6.94650038168325, "ax_mps2": 3.0546216396384778}, {"id": 713, "s_m": 71.28213343750207, "d_m": 0.0, "x_m": -1.2310417181614801, "y_m": -18.32466878098769, "d_right": 2.3312123312815034, "d_left": 0.4628664785710207, "psi_rad": -2.2601331666543807, "kappa_radpm": 0.16864681590464417, "vx_mps": 6.99032465579737, "ax_mps2": 3.5702317308351548}, {"id": 714, "s_m": 71.38210837920964, "d_m": 0.0, "x_m": -1.294001060833477, "y_m": -18.402347279663154, "d_right": 2.288389664116467, "d_left": 0.48473754091249976, "psi_rad": -2.2439077319462584, "kappa_radpm": 0.155875536346782, "vx_mps": 7.041200622890543, "ax_mps2": 4.080261534521913}, {"id": 715, "s_m": 71.48208332091723, "d_m": 0.0, "x_m": -1.355727038815442, "y_m": -18.480978149442173, "d_right": 2.2506587874945203, "d_left": 0.49452898249941235, "psi_rad": -2.2289639764376616, "kappa_radpm": 0.14312507721562073, "vx_mps": 7.098898085613374, "ax_mps2": 4.592488038489505}, {"id": 716, "s_m": 71.5820582626248, "d_m": 0.0, "x_m": -1.4163350794619904, "y_m": -18.56050204253642, "d_right": 2.2181492188592418, "d_left": 0.5064754401594612, "psi_rad": -2.2152857268056465, "kappa_radpm": 0.13047372312356192, "vx_mps": 7.163282870151551, "ax_mps2": 5.106685214340509}, {"id": 717, "s_m": 71.68203320433237, "d_m": 0.0, "x_m": -1.475888474144571, "y_m": -18.640793420905663, "d_right": 2.185012302440535, "d_left": 0.5290087189963426, "psi_rad": -2.2028732439542766, "kappa_radpm": 0.11787365922837414, "vx_mps": 7.234203659771535, "ax_mps2": 5.162661776877842}, {"id": 718, "s_m": 71.78200814603996, "d_m": 0.0, "x_m": -1.5345029066325664, "y_m": -18.721796825164066, "d_right": 2.1469737308879657, "d_left": 0.5520486749808013, "psi_rad": -2.191714324222918, "kappa_radpm": 0.10531964006401127, "vx_mps": 7.305201996622035, "ax_mps2": 5.121922864190446}, {"id": 719, "s_m": 71.88198308774753, "d_m": 0.0, "x_m": -1.5922512916859393, "y_m": -18.803399012154234, "d_right": 2.11223792617936, "d_left": 0.5805875462302214, "psi_rad": -2.181813249780417, "kappa_radpm": 0.09277710951318952, "vx_mps": 7.3749646840514975, "ax_mps2": 5.081855006341007}, {"id": 720, "s_m": 71.9819580294551, "d_m": 0.0, "x_m": -1.649250113686146, "y_m": -18.88554757794055, "d_right": 2.0759928313363276, "d_left": 0.5953182333187624, "psi_rad": -2.1731617307964797, "kappa_radpm": 0.08024648682357395, "vx_mps": 7.4435354776515545, "ax_mps2": 5.042435036989487}, {"id": 721, "s_m": 72.08193297116269, "d_m": 0.0, "x_m": -1.7055798517066414, "y_m": -18.968138798887985, "d_right": 2.0391944605891346, "d_left": 0.6157891902608849, "psi_rad": -2.165768042783741, "kappa_radpm": 0.06768011272435856, "vx_mps": 7.510955645244617, "ax_mps2": 5.003641095356967}, {"id": 722, "s_m": 72.18190791287026, "d_m": 0.0, "x_m": -1.7613562146202513, "y_m": -19.05111948163927, "d_right": 1.9999808593826107, "d_left": 0.6407657545720242, "psi_rad": -2.159624705361767, "kappa_radpm": 0.05527746672535698, "vx_mps": 7.5772641605331295, "ax_mps2": 4.965452524985308}, {"id": 723, "s_m": 72.28188285457783, "d_m": 0.0, "x_m": -1.8166671586194885, "y_m": -19.134398397105304, "d_right": 1.9656029677046412, "d_left": 0.6550110616591539, "psi_rad": -2.154708696318947, "kappa_radpm": 0.043073983430096746, "vx_mps": 7.642497877786691, "ax_mps2": 4.927849782389021}, {"id": 724, "s_m": 72.38185779628542, "d_m": 0.0, "x_m": -1.8716236335002698, "y_m": -19.21792190835298, "d_right": 1.927615260116843, "d_left": 0.6833307031494871, "psi_rad": -2.151009760739856, "kappa_radpm": 0.03096068360444272, "vx_mps": 7.706691689788183, "ax_mps2": 4.8908143544429175}, {"id": 725, "s_m": 72.48183273799299, "d_m": 0.0, "x_m": -1.9263179486977497, "y_m": -19.301610142329384, "d_right": 1.8939481083372824, "d_left": 0.7137683869605688, "psi_rad": -2.1485141290376664, "kappa_radpm": 0.018966296430586064, "vx_mps": 7.7698786709591685, "ax_mps2": -4.21773059214556}, {"id": 726, "s_m": 72.58180767970056, "d_m": 0.0, "x_m": -1.9808563491586482, "y_m": -19.385406342630812, "d_right": 1.8652199933071103, "d_left": 0.7424103826249051, "psi_rad": -2.147218005992002, "kappa_radpm": 0.006933622540548748, "vx_mps": 7.715418317968911, "ax_mps2": -11.817315469206893}, {"id": 727, "s_m": 72.68178262140815, "d_m": 0.0, "x_m": -2.035335290273436, "y_m": -19.469238154206515, "d_right": 1.8278309258868606, "d_left": 0.7687849037676573, "psi_rad": -2.14713001522009, "kappa_radpm": -0.005175696773911408, "vx_mps": 7.5607412977102975, "ax_mps2": -11.261717667867618}, {"id": 728, "s_m": 72.78175756311572, "d_m": 0.0, "x_m": -2.0898573780851235, "y_m": -19.55304138381459, "d_right": 1.7903841211121667, "d_left": 0.7866771198186203, "psi_rad": -2.1482537013513063, "kappa_radpm": -0.017310407568626826, "vx_mps": 7.410332640047787, "ax_mps2": -10.647645783924592}, {"id": 729, "s_m": 72.88173250482329, "d_m": 0.0, "x_m": -2.1445258461425003, "y_m": -19.636752247857427, "d_right": 1.751893224045298, "d_left": 0.8164592112444451, "psi_rad": -2.1505927615391762, "kappa_radpm": -0.02948634925121099, "vx_mps": 7.265262163405814, "ax_mps2": -10.079041141158413}, {"id": 730, "s_m": 72.98170744653088, "d_m": 0.0, "x_m": -2.1994377921200456, "y_m": -19.72029686479961, "d_right": 1.7180861488329813, "d_left": 0.83623658969524, "psi_rad": -2.154151033434582, "kappa_radpm": -0.04170327361027622, "vx_mps": 7.125217975746762, "ax_mps2": -9.551751668554184}, {"id": 731, "s_m": 73.08168238823845, "d_m": 0.0, "x_m": -2.254701860309672, "y_m": -19.803618145443203, "d_right": 1.6887881930984414, "d_left": 0.8675518910825317, "psi_rad": -2.1589335607149662, "kappa_radpm": -0.05397441814020585, "vx_mps": 6.989911270493136, "ax_mps2": -9.062002649539187}, {"id": 732, "s_m": 73.18165732994602, "d_m": 0.0, "x_m": -2.3104092408449315, "y_m": -19.886631698893662, "d_right": 1.653418903669988, "d_left": 0.9024138199455785, "psi_rad": -2.1649457198737823, "kappa_radpm": -0.06631408187045558, "vx_mps": 6.859075243506509, "ax_mps2": -8.60628410418402}, {"id": 733, "s_m": 73.2816322716536, "d_m": 0.0, "x_m": -2.366672285662815, "y_m": -19.96928352434238, "d_right": 1.6075424076570113, "d_left": 0.935173490675828, "psi_rad": -2.172196519167131, "kappa_radpm": -0.07873917994426073, "vx_mps": 6.732465201752953, "ax_mps2": -8.182370224803618}, {"id": 734, "s_m": 73.38160721336118, "d_m": 0.0, "x_m": -2.4235764354710714, "y_m": -20.05147850592675, "d_right": 1.5659905217453196, "d_left": 0.9777994226305766, "psi_rad": -2.1806927312083726, "kappa_radpm": -0.0912457299188267, "vx_mps": 6.609842942181411, "ax_mps2": -7.787483954027437}, {"id": 735, "s_m": 73.48158215506875, "d_m": 0.0, "x_m": -2.4812364648616443, "y_m": -20.133162748494918, "d_right": 1.528988837111006, "d_left": 1.017177124586937, "psi_rad": -2.1904450417426196, "kappa_radpm": -0.1038474226654199, "vx_mps": 6.490987383410964, "ax_mps2": -7.419493789198535}, {"id": 736, "s_m": 73.58155709677634, "d_m": 0.0, "x_m": -2.539732011224174, "y_m": -20.214230731604854, "d_right": 1.4808430394424472, "d_left": 1.0585242309544118, "psi_rad": -2.2014607763855096, "kappa_radpm": -0.11654910258966518, "vx_mps": 6.375687436931838, "ax_mps2": -7.075987149956984}, {"id": 737, "s_m": 73.68153203848391, "d_m": 0.0, "x_m": -2.5991777693604634, "y_m": -20.294624392434393, "d_right": 1.4356900293708366, "d_left": 1.0933190914700386, "psi_rad": -2.213753726006944, "kappa_radpm": -0.12936779899230866, "vx_mps": 6.26374867693217, "ax_mps2": -6.75536239428188}, {"id": 738, "s_m": 73.78150698019148, "d_m": 0.0, "x_m": -2.6596482125557173, "y_m": -20.37422902441671, "d_right": 1.3950534321845782, "d_left": 1.1309531633259007, "psi_rad": -2.22733223654648, "kappa_radpm": -0.1423058976850245, "vx_mps": 6.154982824070739, "ax_mps2": -6.4554257266363715}, {"id": 739, "s_m": 73.88148192189907, "d_m": 0.0, "x_m": -2.7212546713685324, "y_m": -20.452977386796597, "d_right": 1.3592093358706216, "d_left": 1.1683362629948328, "psi_rad": -2.242213212837698, "kappa_radpm": -0.15538569739489178, "vx_mps": 6.04921911846228, "ax_mps2": -6.175101744870321}, {"id": 740, "s_m": 73.98145686360664, "d_m": 0.0, "x_m": -2.7840674222200654, "y_m": -20.530747202931327, "d_right": 1.3095009496525156, "d_left": 1.2085605553838759, "psi_rad": -2.258406559428762, "kappa_radpm": -0.16860484716256233, "vx_mps": 5.946288007589785, "ax_mps2": -5.912311601985249}, {"id": 741, "s_m": 74.08143180531421, "d_m": 0.0, "x_m": -2.84819044892556, "y_m": -20.607456971804275, "d_right": 1.2639756686595287, "d_left": 1.2491507054087687, "psi_rad": -2.2759318571087874, "kappa_radpm": -0.18199250702526906, "vx_mps": 5.846039262070957, "ax_mps2": -5.666128122466216}, {"id": 742, "s_m": 74.1814067470218, "d_m": 0.0, "x_m": -2.9136906492435637, "y_m": -20.68297813756513, "d_right": 1.2118210403918197, "d_left": 1.2922434701597991, "psi_rad": -2.294801648315234, "kappa_radpm": -0.1955502180283326, "vx_mps": 5.7483243990029464, "ax_mps2": -5.434707009441256}, {"id": 743, "s_m": 74.28138168872937, "d_m": 0.0, "x_m": -2.980660400159858, "y_m": -20.757210503915246, "d_right": 1.1620871990204065, "d_left": 1.3430799952036798, "psi_rad": -2.315038833003615, "kappa_radpm": -0.20931010139650152, "vx_mps": 5.653013741646074, "ax_mps2": -5.217721500254722}, {"id": 744, "s_m": 74.38135663043694, "d_m": 0.0, "x_m": -3.04916453580603, "y_m": -20.830020630937494, "d_right": 1.1171834381651997, "d_left": 1.3900709278520365, "psi_rad": -2.336659348196623, "kappa_radpm": -0.22326274441408944, "vx_mps": 5.559971363017144, "ax_mps2": -5.012711720528798}, {"id": 745, "s_m": 74.48133157214453, "d_m": 0.0, "x_m": -3.1192782298162984, "y_m": -20.901285031415597, "d_right": 1.067580169372258, "d_left": 1.4435689388040855, "psi_rad": -2.359688288589065, "kappa_radpm": -0.2374685380262666, "vx_mps": 5.469094114518155, "ax_mps2": -4.819177465747365}, {"id": 746, "s_m": 74.5813065138521, "d_m": 0.0, "x_m": -3.1910640174987264, "y_m": -20.970864810651264, "d_right": 1.0117574274363974, "d_left": 1.5036977085580243, "psi_rad": -2.3841490692558995, "kappa_radpm": -0.25193037102698285, "vx_mps": 5.380278474300754, "ax_mps2": -4.635748520792995}, {"id": 747, "s_m": 74.68128145555967, "d_m": 0.0, "x_m": -3.264575558765315, "y_m": -21.038610941664206, "d_right": 0.9591739413498354, "d_left": 1.560667117598111, "psi_rad": -2.410070147420216, "kappa_radpm": -0.2666825911646052, "vx_mps": 5.2934373600477755, "ax_mps2": -4.460527230827726}, {"id": 748, "s_m": 74.78125639726726, "d_m": 0.0, "x_m": -3.3398703979509743, "y_m": -21.104376060439296, "d_right": 0.9121027188691135, "d_left": 1.6184373154150131, "psi_rad": -2.43748138159199, "kappa_radpm": -0.2817818901390623, "vx_mps": 5.208511993360038, "ax_mps2": -4.293995277660497}, {"id": 749, "s_m": 74.88123133897483, "d_m": 0.0, "x_m": -3.4169804992557187, "y_m": -21.16798809418681, "d_right": 0.8651447403387962, "d_left": 1.6734144981240247, "psi_rad": -2.466419472309438, "kappa_radpm": -0.29720427260797305, "vx_mps": 5.125428111857776, "ax_mps2": -4.132868762233734}, {"id": 750, "s_m": 74.9812062806824, "d_m": 0.0, "x_m": -3.4959612810551723, "y_m": -21.229292445257514, "d_right": 0.8215238029355876, "d_left": 1.7347610500671238, "psi_rad": -2.4969198335520177, "kappa_radpm": -0.3130640908651421, "vx_mps": 5.044169575127628, "ax_mps2": -3.9687183641058197}, {"id": 751, "s_m": 75.08118122238997, "d_m": 0.0, "x_m": -3.576805380240356, "y_m": -21.288082547259304, "d_right": 0.7791574321843897, "d_left": 1.801867774101426, "psi_rad": -2.529040444080618, "kappa_radpm": -0.3296771280506573, "vx_mps": 4.964886899863152, "ax_mps2": -3.8140319545922905}, {"id": 752, "s_m": 75.18115616409756, "d_m": 0.0, "x_m": -3.659548875885946, "y_m": -21.344180557574262, "d_right": 0.7392706215890094, "d_left": 1.8741823831605953, "psi_rad": -2.5628450560231126, "kappa_radpm": -0.3465543774425843, "vx_mps": 4.887482653040343, "ax_mps2": -3.683270617472652}, {"id": 753, "s_m": 75.28113110580513, "d_m": 0.0, "x_m": -3.7441739555029754, "y_m": -21.39737183522761, "d_right": 0.6925699731025003, "d_left": 1.9511421329774794, "psi_rad": -2.5983168320197487, "kappa_radpm": -0.36310401783801005, "vx_mps": 4.811550389762139, "ax_mps2": -3.4981616521935557}, {"id": 754, "s_m": 75.3811060475127, "d_m": 0.0, "x_m": -3.8306779887346507, "y_m": -21.447457338490253, "d_right": 0.6460483351400543, "d_left": 2.0248577227495423, "psi_rad": -2.6355332315977, "kappa_radpm": -0.38254055725672625, "vx_mps": 4.73830772942163, "ax_mps2": -3.2799170176516226}, {"id": 755, "s_m": 75.48108098922029, "d_m": 0.0, "x_m": -3.9190434804192487, "y_m": -21.494203252945542, "d_right": 0.608773272353148, "d_left": 2.0955035249969147, "psi_rad": -2.6748436896873633, "kappa_radpm": -0.403947800110717, "vx_mps": 4.668590913049234, "ax_mps2": -3.0423527857706243}, {"id": 756, "s_m": 75.58105593092786, "d_m": 0.0, "x_m": -4.009270643004638, "y_m": -21.537363604750396, "d_right": 0.5755701722882116, "d_left": 2.171151597408478, "psi_rad": -2.716359819694297, "kappa_radpm": -0.42664717829006915, "vx_mps": 4.602979798845885, "ax_mps2": -2.7407111810837415}, {"id": 757, "s_m": 75.68103087263543, "d_m": 0.0, "x_m": -4.101189814088191, "y_m": -21.57660546476782, "d_right": 0.5385206531696115, "d_left": 2.25122409392366, "psi_rad": -2.760269445989511, "kappa_radpm": -0.45248743414537834, "vx_mps": 4.543062639613395, "ax_mps2": -2.567558818319166}, {"id": 758, "s_m": 75.78100581434302, "d_m": 0.0, "x_m": -4.194783309355354, "y_m": -21.61165511850694, "d_right": 0.49755558983862513, "d_left": 2.3353055294790015, "psi_rad": -2.806593664644577, "kappa_radpm": -0.47253445800410004, "vx_mps": 4.486204973144508, "ax_mps2": -2.5180230154077834}, {"id": 759, "s_m": 75.88098075605059, "d_m": 0.0, "x_m": -4.289935270666256, "y_m": -21.64225269131212, "d_right": 0.45541869224577375, "d_left": 2.4229234528352808, "psi_rad": -2.854589764758341, "kappa_radpm": -0.4870840572945678, "vx_mps": 4.429735505952819, "ax_mps2": -2.4406554246055414}, {"id": 760, "s_m": 75.98095569775816, "d_m": 0.0, "x_m": -4.386474365593844, "y_m": -21.668184143707304, "d_right": 0.4278823576169663, "d_left": 2.5105078416577045, "psi_rad": -2.90403769884265, "kappa_radpm": -0.5034514323104181, "vx_mps": 4.374305417445456, "ax_mps2": -2.2365188866894514}, {"id": 761, "s_m": 76.08093063946575, "d_m": 0.0, "x_m": -4.484219248693607, "y_m": -21.689225065897883, "d_right": 0.4005844170426539, "d_left": 2.600879420657981, "psi_rad": -2.955472580302061, "kappa_radpm": -0.5263303811734503, "vx_mps": 4.322887483435496, "ax_mps2": -1.5177465719666272}, {"id": 762, "s_m": 76.18090558117332, "d_m": 0.0, "x_m": -4.582941538908402, "y_m": -21.705063560572604, "d_right": 0.36409435630133913, "d_left": 2.665857804393164, "psi_rad": -3.0103809527208636, "kappa_radpm": -0.5740529614318532, "vx_mps": 4.287643052345287, "ax_mps2": -0.7199707488296386}, {"id": 763, "s_m": 76.28088052288089, "d_m": 0.0, "x_m": -4.682358143784812, "y_m": -21.7152099449206, "d_right": 0.34733164078672096, "d_left": 2.655706554139942, "psi_rad": -3.0701944894699897, "kappa_radpm": -0.6222910362096875, "vx_mps": 4.2708225059154605, "ax_mps2": -0.0704580387962954}, {"id": 764, "s_m": 76.38085546458848, "d_m": 0.0, "x_m": -4.782264411428847, "y_m": -21.71917751094278, "d_right": 0.35127767311451913, "d_left": 2.651738595996912, "psi_rad": -3.1341974811630244, "kappa_radpm": -0.6584059832985306, "vx_mps": 4.269172847331323, "ax_mps2": -5.653167131285513}, {"id": 765, "s_m": 76.48083040629609, "d_m": 0.0, "x_m": -4.882160008533675, "y_m": -21.71655958369345, "d_right": 0.35009871074734006, "d_left": 2.643447840783811, "psi_rad": 3.081070705812035, "kappa_radpm": -0.7019396532256539, "vx_mps": 4.134668873267083, "ax_mps2": -0.06608829420273463}]}, "global_traj_markers_sp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.872636852913675, "y": -21.640579720016227, "z": 0.12733639992662366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2546727998532473}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.9700190175153995, "y": -21.62025444477317, "z": 0.12728719730408863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.25457439460817727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.064090322049035, "y": -21.58628517097344, "z": 0.12826813646660465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2565362729332093}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.152438822805126, "y": -21.540460868957172, "z": 0.13002190379211473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26004380758422946}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.235090615185911, "y": -21.484059835999233, "z": 0.1328652838432208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2657305676864416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.310852193687803, "y": -21.41921137753995, "z": 0.1364335869701822}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2728671739403644}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.3801186956884655, "y": -21.347047187442264, "z": 0.140664194666111}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.281328389332222}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.442616870805035, "y": -21.269164721442046, "z": 0.14524316723947012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29048633447894023}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.498714452385015, "y": -21.186350616783123, "z": 0.1499994746525813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2999989493051626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.548520712813339, "y": -21.099720874658754, "z": 0.15492748987433216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3098549797486643}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.592538271633526, "y": -21.00976642580853, "z": 0.16004203577771448}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32008407155542895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.631124183181957, "y": -20.917529554104053, "z": 0.16556188540012257}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33112377080024513}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.665105933557465, "y": -20.82328505848646, "z": 0.17169737475990915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3433947495198183}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -5.6948616589532906, "y": -20.727834827883484, "z": 0.17806934338290725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3561386867658145}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -5.72084376424202, "y": -20.631153803277577, "z": 0.1843937272732601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3687874545465202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -5.743322709238483, "y": -20.533736304976408, "z": 0.190719834772802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.381439669545604}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -5.762710662466064, "y": -20.435457805819006, "z": 0.19710817937081518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39421635874163036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -5.779169130156308, "y": -20.3370153925285, "z": 0.20344662016841458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40689324033682917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -5.793020473250537, "y": -20.237622815425908, "z": 0.20963578259604146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4192715651920829}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -5.804099140649284, "y": -20.138951494792785, "z": 0.2154018863534217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4308037727068434}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -5.812610610757781, "y": -20.03835730488077, "z": 0.22056690823913147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44113381647826294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -5.818177061002935, "y": -19.939599873058917, "z": 0.2251917285000726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4503834570001452}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -5.820908657509481, "y": -19.838927330962637, "z": 0.22918064326386192}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45836128652772384}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -5.820679095725393, "y": -19.739291088353657, "z": 0.23279133196335106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4655826639267021}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -5.8181288633643895, "y": -19.640227698117865, "z": 0.2374306540991674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4748613081983348}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -5.8142585292170965, "y": -19.54015242743574, "z": 0.24267713538417998}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48535427076835996}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -5.809676938543857, "y": -19.440505670854805, "z": 0.24775950706063948}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49551901412127897}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -5.804850749655335, "y": -19.3409097589306, "z": 0.2526892189250079}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5053784378500158}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -5.800184721228428, "y": -19.241078583562036, "z": 0.25747645390278123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5149529078055625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -5.795952196813857, "y": -19.141579335934804, "z": 0.2621303160404359}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5242606320808718}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -5.792260564968699, "y": -19.041798537311486, "z": 0.26665898408033173}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5333179681606635}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -5.789156826024902, "y": -18.94147948961923, "z": 0.27106983802035395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5421396760407079}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -5.786673971633434, "y": -18.842234414813838, "z": 0.27536956424924663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5507391284984933}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -5.784717478017387, "y": -18.742271718276584, "z": 0.27956424353047943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5591284870609589}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -5.78324276141049, "y": -18.641990649968214, "z": 0.28365942513545034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5673188502709007}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -5.782199848402324, "y": -18.54267844220935, "z": 0.28766018970135043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5753203794027009}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -5.78150734575665, "y": -18.44214607964949, "z": 0.291571202841531}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.583142405683062}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -5.781133716545556, "y": -18.342714664867035, "z": 0.29539676111878804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5907935222375761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -5.781039895605246, "y": -18.242670212342365, "z": 0.2991408316706697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5982816633413394}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -5.781227908165155, "y": -18.142713282982168, "z": 0.30280708652637606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6056141730527521}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -5.781720966318272, "y": -18.042821129195445, "z": 0.3063989324594185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.612797864918837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -5.782519715618433, "y": -17.94253598772884, "z": 0.30991953706599185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6198390741319837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -5.7835986476705274, "y": -17.842441886512724, "z": 0.3133718516364234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6267437032728468}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -5.784884993596092, "y": -17.74235079518163, "z": 0.3167586312889376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6335172625778752}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -5.786282393414023, "y": -17.642346054272274, "z": 0.3200824527559268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6401649055118536}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -5.787746043881858, "y": -17.54245003464452, "z": 0.323345730148849}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.646691460297698}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -5.789256410926409, "y": -17.44256869657455, "z": 0.3265507289756429}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6531014579512858}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -5.790794096323355, "y": -17.342615591628807, "z": 0.32969957864174393}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6593991572834879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -5.792338998645807, "y": -17.242714658665985, "z": 0.33279428363051355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6655885672610271}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -5.793888250496231, "y": -17.14276952614759, "z": 0.33583673352969645}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6716734670593929}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -5.795440783090984, "y": -17.04287814953036, "z": 0.33882871204622916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6776574240924583}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -5.7969983647823575, "y": -16.94292495498668, "z": 0.3417719051314354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6835438102628708}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -5.798558858874219, "y": -16.843037265056694, "z": 0.3446679083216147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6893358166432294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -5.800124243956099, "y": -16.743084706834637, "z": 0.34751823338469107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6950364667693821}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -5.801692443387452, "y": -16.643197220468988, "z": 0.3503243143514598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7006486287029196}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -5.80326539738545, "y": -16.54324669109331, "z": 0.3530875129996755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.706175025999351}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -5.8048410810940005, "y": -16.443356863301194, "z": 0.3558091238504599}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7116182477009197}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -5.806421294376552, "y": -16.343408697959244, "z": 0.35849037872901013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7169807574580203}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -5.8080041516692384, "y": -16.243516480921137, "z": 0.3611324509351686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7222649018703372}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -5.809591306432255, "y": -16.143570673627703, "z": 0.36373645906388635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7274729181277727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -5.811181012213857, "y": -16.043676051649385, "z": 0.36630347051084794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7326069410216959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -5.812774777401543, "y": -15.943732590372209, "z": 0.36883450469440143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7376690093888029}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -5.814370999096603, "y": -15.843835620667106, "z": 0.3713305360213602}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7426610720427204}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -5.815971044675902, "y": -15.743894428267815, "z": 0.3737924966211334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7475849932422668}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -5.817573453328716, "y": -15.643995220428605, "z": 0.37622127886992784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7524425577398557}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -5.81917945861308, "y": -15.544056177634769, "z": 0.3786177377243924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7572354754487848}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -5.820787737048802, "y": -15.444154884588825, "z": 0.38098269288200015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7619653857640003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -5.822399398027815, "y": -15.344217835977146, "z": 0.38331693078363704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7666338615672741}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -5.8240132476685185, "y": -15.244314644083007, "z": 0.38562120647225817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7712424129445163}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -5.825630282790653, "y": -15.14437940680897, "z": 0.38789624532006045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7757924906401209}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -5.827249429011003, "y": -15.044474528622384, "z": 0.3901427446353628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7802854892707256}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -5.828871583813518, "y": -14.944540896471787, "z": 0.39236137515928055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7847227503185611}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -5.830495780277489, "y": -14.844634560188359, "z": 0.3945527824612924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7891055649225848}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -5.832122830602762, "y": -14.74470231933517, "z": 0.396717588241927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.793435176483854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -5.833751862119511, "y": -14.644794774352563, "z": 0.39885639155001423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7977127831000285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -5.835383617716342, "y": -14.544863673157492, "z": 0.40096976992125194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8019395398425039}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -5.837017303881518, "y": -14.444955146724535, "z": 0.40305828044421727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8061165608884345}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -5.8386536071679656, "y": -14.345025022526151, "z": 0.4051224607593957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8102449215187914}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -5.8402918002409745, "y": -14.245115844746138, "z": 0.407162829996301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.814325659992602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -5.841932537860975, "y": -14.145186203141142, "z": 0.4091798896533124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8183597793066248}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -5.843575136509908, "y": -14.045276375690063, "z": 0.41117412442445156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8223482488489031}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -5.845220209673968, "y": -13.945347831526535, "z": 0.4131460029769583}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8262920059539166}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -5.846867121294373, "y": -13.84543844951701, "z": 0.415095978683199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.830191957366398}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -5.848516552809805, "y": -13.745507909615089, "z": 0.41702449031014216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8340489806202843}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -5.850168708672202, "y": -13.64559646012213, "z": 0.418931962669371}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.837863925338742}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -5.851826167505666, "y": -13.545672904965441, "z": 0.42081880723035875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8416376144607175}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -5.853491932317311, "y": -13.445768776116132, "z": 0.4226854226995138}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8453708453990276}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -5.855172432437322, "y": -13.345823346053852, "z": 0.4245321955673012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8490643911346024}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -5.85687203418519, "y": -13.245898200341822, "z": 0.4263595006255652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8527190012511304}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -5.858596968206221, "y": -13.145929296887077, "z": 0.4281677014570143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8563354029140287}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -5.860345382754357, "y": -13.045976951328665, "z": 0.42995715089867725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8599143017973545}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -5.862107560387641, "y": -12.946062776945293, "z": 0.43172819148100233}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8634563829620047}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -5.863876831175269, "y": -12.846113693928304, "z": 0.4334811558441466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8669623116882932}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -5.8656463118119175, "y": -12.746234757633282, "z": 0.43521636713288736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8704327342657747}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -5.867414422067533, "y": -12.646286706411493, "z": 0.43693413937148207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8738682787429641}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -5.869176004814957, "y": -12.54639676401442, "z": 0.43863477781970756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8772695556394151}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -5.8709313193284425, "y": -12.446452496554622, "z": 0.4403185793112209}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8806371586224419}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -5.872678354829562, "y": -12.34655882770649, "z": 0.4419858325753037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8839716651506074}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -5.874418799297346, "y": -12.246620367526468, "z": 0.4436368185429748}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8872736370859496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -5.876151339117037, "y": -12.146719090321255, "z": 0.4452718106383926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8905436212767852}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -5.8778772586383425, "y": -12.046788725551044, "z": 0.44689107505639925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8937821501127985}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -5.879595862179224, "y": -11.946878230671311, "z": 0.44849487102700547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8969897420540109}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -5.881307843819903, "y": -11.846958184587288, "z": 0.45008345106755915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9001669021351183}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -5.883013292177745, "y": -11.74703659672042, "z": 0.45165706122329097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9033141224465819}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -5.884712203190758, "y": -11.647129015711794, "z": 0.4532159412968862}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9064318825937724}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -5.886405561767984, "y": -11.547194668917996, "z": 0.45476032506768777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9095206501353755}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -5.88809254578985, "y": -11.447301557935214, "z": 0.4562904405010976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9125808810021953}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -5.889775148412558, "y": -11.347353009758336, "z": 0.45780650994870725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9156130198974145}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -5.891451628284474, "y": -11.24747613930117, "z": 0.45930875033965324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9186175006793065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -5.893125075570969, "y": -11.147512229532243, "z": 0.4607973733636647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9215947467273294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -5.8947927424135, "y": -11.047653040155646, "z": 0.46227258564623885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9245451712924777}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -5.89645888305176, "y": -10.947672967533494, "z": 0.4637345889163543}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9274691778327085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -5.898119675601758, "y": -10.8478324505704, "z": 0.4651835801671074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9303671603342148}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -5.899780576399534, "y": -10.747835845823731, "z": 0.4666197518096341}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9332395036192682}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -5.901436645745297, "y": -10.64801441297364, "z": 0.4680432918206545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.936086583641309}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -5.903094545289064, "y": -10.548001417981709, "z": 0.46945438388396404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9389087677679281}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -5.90474887325248, "y": -10.448158303636168, "z": 0.4708532075261686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9417064150523372}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -5.906405446786686, "y": -10.348170104285972, "z": 0.47223993824694965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9444798764938993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -5.908060448022109, "y": -10.24830331505424, "z": 0.47361474764412537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9472294952882507}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -5.909718047255643, "y": -10.14834211501154, "z": 0.47497780353375957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9499556070675191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -5.911376067277435, "y": -10.048452690190596, "z": 0.47632927006555664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9526585401311133}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -5.913037018646384, "y": -9.948517373756927, "z": 0.47766930783376665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9553386156675333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -5.914700248090048, "y": -9.848607131943028, "z": 0.4789980739838116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9579961479676232}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -5.916366681544895, "y": -9.748695410286732, "z": 0.48031572231483366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9606314446296673}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -5.918037010120469, "y": -9.648767061573812, "z": 0.4816224033783544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9632448067567088}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -5.919710702153857, "y": -9.548875335694833, "z": 0.48291826457322307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9658365291464461}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -5.921389523196011, "y": -9.44893237751393, "z": 0.48420345023702466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9684069004740493}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -5.923071710061072, "y": -9.34905561632286, "z": 0.48547810173410566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9709562034682113}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -5.924759781375169, "y": -9.249102950958546, "z": 0.4867423575403711}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9734847150807422}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -5.926451047743052, "y": -9.149226721442137, "z": 0.4879963533249956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9759927066499912}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -5.9281479657418235, "y": -9.049276436329054, "z": 0.48924022202918477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9784804440583695}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -5.92984859443148, "y": -8.94938377357728, "z": 0.4904740939421164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9809481878842328}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -5.931554725309702, "y": -8.849455432158196, "z": 0.49169809677418297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9833961935483659}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -5.933265238247574, "y": -8.749547249462962, "z": 0.49291235572765324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9858247114553065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -5.934981651383355, "y": -8.649625825010471, "z": 0.4941169935648619}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9882339871297238}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -5.936706533366504, "y": -8.549696627305261, "z": 0.49531213067403274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9906242613480655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -5.938441848235708, "y": -8.44978196759973, "z": 0.49649788513283555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9929957702656711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -5.940190068863036, "y": -8.349843282006955, "z": 0.49767437276977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.99534874553954}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -5.941950365983556, "y": -8.249952043078562, "z": 0.49884170722346816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9976834144469363}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -5.943724201913194, "y": -8.150004387203005, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -5.9455094482771145, "y": -8.050132343454921, "z": 0.49518634134232137}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9903726826846427}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -5.9473096394516745, "y": -7.9501688424324914, "z": 0.49016808253412686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9803361650682537}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -5.949122556363383, "y": -7.850284235541923, "z": 0.48510472172963776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9702094434592755}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -5.950951582743069, "y": -7.750339641277142, "z": 0.47999372051315636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9599874410263127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -5.952795516927415, "y": -7.650440098225082, "z": 0.474832821515015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.94966564303003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -5.954656188581986, "y": -7.550516590342859, "z": 0.46961911416918484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9392382283383697}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -5.956533311932028, "y": -7.450602877124848, "z": 0.46434950650449563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9286990130089913}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -5.958426953273324, "y": -7.35069875775642, "z": 0.4590208761207839}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9180417522415678}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -5.960337477939422, "y": -7.25077351940775, "z": 0.45362965618547973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9072593123709595}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -5.962263157201623, "y": -7.150883902215193, "z": 0.4481729126280763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8963458252561526}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -5.964204504413986, "y": -7.050951825493434, "z": 0.4426473670485416}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8852947340970831}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -5.966158278034218, "y": -6.9510623112511, "z": 0.43704705374709757}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8740941074941951}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -5.968123987001734, "y": -6.851136197225912, "z": 0.4313685918736053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8627371837472106}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -5.970097607730947, "y": -6.751235765648291, "z": 0.42560461790540893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8512092358108179}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -5.972076477940903, "y": -6.651323343503973, "z": 0.41975076148898904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8395015229779781}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -5.974055886361113, "y": -6.551420377574484, "z": 0.4138189793842871}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8276379587685742}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -5.97603107833075, "y": -6.45150812407193, "z": 0.40782969646196715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8156593929239343}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -5.97799545470568, "y": -6.351613546903438, "z": 0.40178382515335365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8035676503067073}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -5.979942845410553, "y": -6.251683558039474, "z": 0.395679766564863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.791359533129726}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -5.981863282557669, "y": -6.151810890287463, "z": 0.38951987194356164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7790397438871233}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -5.983750116963588, "y": -6.0518411077578085, "z": 0.38330023560743554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7666004712148711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -5.98558840984488, "y": -5.952006451300173, "z": 0.37702540434379406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7540508086875881}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -5.987370679526053, "y": -5.852043338423737, "z": 0.3706902927415357}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7413805854830714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -5.989079307122019, "y": -5.752193370556763, "z": 0.3642955711391857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7285911422783714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -5.990702988362349, "y": -5.652253642652626, "z": 0.3578389691606158}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7156779383212316}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -5.992222833387196, "y": -5.552364463006723, "z": 0.3513228078258765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.702645615651753}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -5.993620915158059, "y": -5.452464555400213, "z": 0.3447339380869614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6894678761739228}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -5.994879828447205, "y": -5.352514914607552, "z": 0.3380584885453013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6761169770906026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -5.995980284310894, "y": -5.252668890836953, "z": 0.3313360573155696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6626721146311392}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -5.996894930201192, "y": -5.152639634165642, "z": 0.32457946704834895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6491589340966979}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -5.997586790184315, "y": -5.0528732778192875, "z": 0.31767948423715275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6353589684743055}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -5.998069691307515, "y": -4.95274705017916, "z": 0.3105508789890937}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6211017579781875}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -5.998339940728393, "y": -4.853036754458389, "z": 0.30372864145736805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6074572829147361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -5.99822734007269, "y": -4.75283408467138, "z": 0.29738171307080924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5947634261416185}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -5.997528796224993, "y": -4.6531700793590565, "z": 0.2910660214727734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5821320429455468}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -5.996131226094303, "y": -4.552983326607311, "z": 0.2847406907116974}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5694813814233948}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -5.993978310422266, "y": -4.4533551864862275, "z": 0.27831895533268775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5566379106653755}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -5.9909925263514054, "y": -4.353219868293048, "z": 0.2717455824619699}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5434911649239398}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -5.987193805767402, "y": -4.253709553608763, "z": 0.26501136987141893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5300227397428379}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -5.982628922292782, "y": -4.153543327722124, "z": 0.2576608245973743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5153216491947487}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -5.9773150298750215, "y": -4.054037632806643, "z": 0.25134157980653704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5026831596130741}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -5.970654569989598, "y": -3.95401368841161, "z": 0.24607487404433828}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49214974808867656}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -5.962323100433355, "y": -3.8547181986725065, "z": 0.2407384484792008}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4814768969584016}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -5.9525002647469645, "y": -3.7549539572959474, "z": 0.2340321175113783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4680642350227566}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -5.94147260468923, "y": -3.655789867325686, "z": 0.2278453960612569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4556907921225138}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -5.92848432594957, "y": -3.556545192910215, "z": 0.22331723597019965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4466344719403993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -5.912929430407763, "y": -3.457898599545368, "z": 0.21876844608890533}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43753689217781067}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -5.895010231621827, "y": -3.359537391544742, "z": 0.21285006717716143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42570013435432286}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -5.875062692107108, "y": -3.2614999996945984, "z": 0.2070677339256114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4141354678512228}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -5.8523703473673, "y": -3.16421482383864, "z": 0.2034612443582266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4069224887164532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -5.825719112993101, "y": -3.0676107361831337, "z": 0.20050863871888513}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40101727743777027}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -5.794839584127827, "y": -2.972779053795858, "z": 0.19786360469545478}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39572720939090955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -5.7592179903868415, "y": -2.8791855839365352, "z": 0.1962231365274634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3924462730549268}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -5.718696101026256, "y": -2.7880562258935573, "z": 0.1960397615435081}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3920795230870162}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -5.672523135729449, "y": -2.6993705418638636, "z": 0.19596407052349354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3919281410469871}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -5.620989602886665, "y": -2.6139383748071796, "z": 0.19588835025656315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3917767005131263}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -5.564309020071622, "y": -2.5316796980261125, "z": 0.19586393179811018}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39172786359622036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -5.502739911216829, "y": -2.4530630820995967, "z": 0.19578830866602134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3915766173320427}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -5.436406712349253, "y": -2.3784833692835257, "z": 0.19571265631324855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3914253126264971}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -5.365552425289488, "y": -2.3079877598157084, "z": 0.19602197732320228}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39204395464640457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -5.290878919053226, "y": -2.241848243956046, "z": 0.19693845030728804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3938769006145761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -5.21231962119074, "y": -2.179927117769066, "z": 0.19781548482889835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3956309696577967}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -5.130589413787788, "y": -2.1227270748054443, "z": 0.1985121439380745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.397024287876149}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -5.045860062298114, "y": -2.069461855253008, "z": 0.20077584604703547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40155169209407093}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -4.959258408240161, "y": -2.019690537127272, "z": 0.20484268699413125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4096853739882625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -4.870885725214513, "y": -1.9728756134894532, "z": 0.20944226969639138}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41888453939278275}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -4.781147490386984, "y": -1.9289107487444888, "z": 0.21419646353309785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4283929270661957}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -4.6901757136410795, "y": -1.887454676369719, "z": 0.21933294407136847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43866588814273694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -4.598196381223856, "y": -1.8481749150382707, "z": 0.22492237557865669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44984475115731337}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -4.505537118239161, "y": -1.8107627074572112, "z": 0.23058939948174473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46117879896348946}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -4.412271765234297, "y": -1.7748397348077067, "z": 0.23606052610848835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4721210522169767}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -4.318433110700867, "y": -1.740587528172189, "z": 0.2413510069614038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4827020139228076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -4.223786514855718, "y": -1.7084290719867474, "z": 0.2456917409585049}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4913834819170098}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -4.128502305113054, "y": -1.6782485348269665, "z": 0.25024493447658824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5004898689531765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -4.032732781238364, "y": -1.6494480461336503, "z": 0.2551021442202001}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5102042884404002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -3.9366938409042986, "y": -1.621954061415793, "z": 0.2598215576253992}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5196431152507984}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -3.840162329965037, "y": -1.5959671284869574, "z": 0.2644117983240021}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5288235966480042}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -3.743286941773136, "y": -1.5714337528065063, "z": 0.2688806309703647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5377612619407294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -3.6460614358747274, "y": -1.5479489495332837, "z": 0.2732350764725999}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5464701529451998}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -3.5487532866634584, "y": -1.5253325254110621, "z": 0.2774815080781137}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5549630161562275}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -3.451221326427851, "y": -1.5034646598653656, "z": 0.2816257320637009}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5632514641274018}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -3.3535798057614508, "y": -1.482459653672245, "z": 0.2856730559419947}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5713461118839894}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -3.2556324851297886, "y": -1.4625031317237285, "z": 0.28962834646675656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5792566929335131}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -3.157543871052824, "y": -1.4437369211210025, "z": 0.29349607924208027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5869921584841605}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -3.059062130473798, "y": -1.4261159241953383, "z": 0.2972803813748271}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5945607627496542}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -2.9606208144478274, "y": -1.409577635168846, "z": 0.3009850683267793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6019701366535586}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -2.861782457903988, "y": -1.3938286359860053, "z": 0.30461367590242927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6092273518048585}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -2.763179563969037, "y": -1.3788530601136118, "z": 0.3081694881349143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6163389762698286}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -2.664143757805332, "y": -1.3644982361275062, "z": 0.3116555616952444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6233111233904888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -2.5653584435773698, "y": -1.350879948844762, "z": 0.31507474734039337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6301494946807867}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -2.4661040807705352, "y": -1.337928034118608, "z": 0.318429708827834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.636859417655668}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -2.367067007040823, "y": -1.325698508346672, "z": 0.32172293965298604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6434458793059721}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -2.2677010099924475, "y": -1.3141010408959195, "z": 0.32495677790824523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6499135558164905}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -2.1684320283255483, "y": -1.3032496706988101, "z": 0.32813341951501424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6562668390300285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -2.068958146727374, "y": -1.2930523184580864, "z": 0.3312549300413253}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6625098600826506}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -1.9695270357697614, "y": -1.2832197857562821, "z": 0.3343232552855739}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6686465105711478}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -1.8700732539199736, "y": -1.2735599506382425, "z": 0.3373402307802724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6746804615605448}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -1.7705998784945445, "y": -1.2640900866498013, "z": 0.3403075903475435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.680615180695087}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -1.6711443136142001, "y": -1.2549265059946566, "z": 0.3432269738194958}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6864539476389916}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -1.571567483767129, "y": -1.2462162937389893, "z": 0.3460999340210125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.692199868042025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -1.4720341283954328, "y": -1.2379975281612619, "z": 0.3489279430992954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6978558861985908}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -1.3723545266899568, "y": -1.2302100555709763, "z": 0.35171239827334344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7034247965466869}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -1.2727332907367765, "y": -1.222805068167416, "z": 0.3544546270670488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7089092541340976}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -1.1730331044144475, "y": -1.21572204063853, "z": 0.3571558920814916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7143117841629832}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -1.0733485116265273, "y": -1.2089649883573637, "z": 0.35981739535507823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7196347907101565}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -0.9736244334887061, "y": -1.2025386239465472, "z": 0.3624402823542151}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7248805647084302}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -0.8738838839045823, "y": -1.1964576283513457, "z": 0.36502564563207884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7300512912641577}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -0.7741201023804888, "y": -1.190708995619219, "z": 0.3675745281886121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7351490563772242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -0.6743474090425342, "y": -1.1852712164756307, "z": 0.370087926561036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.740175853122072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -0.5745330663562269, "y": -1.1801984619933772, "z": 0.3725667936708368}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7451335873416736}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -0.4747134849788584, "y": -1.1755078294993482, "z": 0.3750120414502778}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7500240829005556}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -0.3748844749440358, "y": -1.1709197923680845, "z": 0.3774245432689541}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7548490865379082}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -0.27507033813252424, "y": -1.1662736418319786, "z": 0.3798051361786881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7596102723573762}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -0.17525004350309512, "y": -1.1618105120549458, "z": 0.38215462299311803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7643092459862361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -0.07540095549574467, "y": -1.15766083853583, "z": 0.3844737742166164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7689475484332328}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": 0.024446103963002085, "y": -1.153759111465346, "z": 0.38676332983567385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7735266596713477}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": 0.12433064120332836, "y": -1.1500846749812164, "z": 0.3890240009845465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.778048001969093}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": 0.22417733680822766, "y": -1.1466599539983455, "z": 0.3912564714957882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7825129429915764}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": 0.3240988395773554, "y": -1.143468713016982, "z": 0.3934613993452468}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7869227986904936}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": 0.42394629218771623, "y": -1.1404957256107495, "z": 0.3956394180001737}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7912788360003474}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": 0.523865575224344, "y": -1.1377408413275822, "z": 0.39779113767826885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7955822753565377}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": 0.6237452423673076, "y": -1.1352093167694557, "z": 0.39991714652475274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7998342930495055}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": 0.7236587353544812, "y": -1.1328852721345515, "z": 0.402018011713894}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.804036023427788}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": 0.8235681888248283, "y": -1.1307838355519793, "z": 0.40409428048083573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8081885609616715}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": 0.9234823868258754, "y": -1.1289491553760727, "z": 0.40614648108903806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8122929621780761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": 1.0234208206184443, "y": -1.1272884781543426, "z": 0.4081751237381798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8163502474763596}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": 1.1233247118749103, "y": -1.1256165133319704, "z": 0.41018070141693785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8203614028338757}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": 1.223270096458293, "y": -1.1238753518565716, "z": 0.41216369070468073}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8243273814093615}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": 1.3231511456561875, "y": -1.122096501615344, "z": 0.4141245525257691}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8282491050515381}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": 1.4231048623618456, "y": -1.1204088332784268, "z": 0.41606373285984105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8321274657196821}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": 1.5230271256130334, "y": -1.118926545973714, "z": 0.4179816634111842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8359633268223684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": 1.6229763211213917, "y": -1.1176308430097366, "z": 0.4198787622400368}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8397575244800736}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": 1.7229158046194886, "y": -1.1165074050172303, "z": 0.421755434358433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.843510868716866}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": 1.8228427910217995, "y": -1.1155818619349722, "z": 0.42361207229299486}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8472241445859897}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": 1.9227639145267086, "y": -1.1148469651366222, "z": 0.4254490566168871}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8508981132337742}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": 2.0226951432955995, "y": -1.1142664742892319, "z": 0.42726675645297346}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8545335129059469}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": 2.1226121948429446, "y": -1.1139265103100475, "z": 0.429065529950058}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.858131059900116}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": 2.2225540902290364, "y": -1.1139726065315323, "z": 0.4308457247339514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8616914494679028}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": 2.3224704257802156, "y": -1.1144054061674489, "z": 0.4326076783349699}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8652153566699398}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": 2.4224094307445494, "y": -1.1151883765568382, "z": 0.43435171859335325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8687034371867065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": 2.5223284056635107, "y": -1.1163628820418183, "z": 0.4360781640439826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8721563280879652}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": 2.622252870781871, "y": -1.1179181045099265, "z": 0.43778732428167355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8755746485633471}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": 2.7221668342304364, "y": -1.11969078708167, "z": 0.439479500308231}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.878959000616462}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": 2.8220805123165, "y": -1.1215956155806193, "z": 0.4411549848623664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8823099697247327}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": 2.9219867461114934, "y": -1.123673225513763, "z": 0.4428140627335004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8856281254670008}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": 3.0218951539857475, "y": -1.1259321947743588, "z": 0.4444570110604039}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8889140221208078}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": 3.1217909164063613, "y": -1.1283528435822539, "z": 0.44608409961556134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8921681992311227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": 3.22169847869538, "y": -1.1309615414810323, "z": 0.44769559107608364}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8953911821521673}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": 3.3215779147324938, "y": -1.1337739773095823, "z": 0.44929174128193977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8985834825638795}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": 3.421478799712158, "y": -1.1366631545090948, "z": 0.45087279948222503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9017455989644501}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": 3.521356852770294, "y": -1.1395136152186758, "z": 0.4524390085701367}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9048780171402734}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": 3.621252815691873, "y": -1.1423605787068567, "z": 0.4539906053072835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.907981210614567}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": 3.7211380582928992, "y": -1.145215921297415, "z": 0.45552782053791524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9110556410758305}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": 3.821026558500611, "y": -1.1480251050745227, "z": 0.45705087939362066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9141017587872413}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": 3.920926039011606, "y": -1.150860308393203, "z": 0.45856000148900594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9171200029780119}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": 4.020794703815616, "y": -1.1539107631268073, "z": 0.4600554011088371}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9201108022176742}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": 4.120699303337211, "y": -1.1572201683491419, "z": 0.4615372873870943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9230745747741886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": 4.2205370385450784, "y": -1.1607378885845094, "z": 0.4630058644783642}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9260117289567285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": 4.32044316156753, "y": -1.1644642542373185, "z": 0.4644613317219645}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.928922663443929}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": 4.4202516906201135, "y": -1.1684039132151898, "z": 0.46590388379917647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9318077675983529}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": 4.520126921003487, "y": -1.1725688395424854, "z": 0.46733371088393405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9346674217678681}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": 4.619934670104566, "y": -1.1769478636990907, "z": 0.4687509987873006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9375019975746012}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": 4.719776407146019, "y": -1.1815185759657976, "z": 0.47015592909604265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9403118581920853}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": 4.819585765309648, "y": -1.1863058186082873, "z": 0.47154867930559363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9430973586111873}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": 4.919384206066066, "y": -1.1914190695142608, "z": 0.4729294229476819}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9458588458953638}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": 5.019178744073623, "y": -1.1969258670038951, "z": 0.4742983297128834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9485966594257668}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": 5.118912023864602, "y": -1.202833418943261, "z": 0.47565556556834265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9513111311366853}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": 5.218689744432031, "y": -1.2090294073757293, "z": 0.4770012928708932}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9540025857417864}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": 5.318381166325046, "y": -1.2153342764770887, "z": 0.478335670475796}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.956671340951592}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": 5.418167385279748, "y": -1.2217727749936078, "z": 0.4796588538413008}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9593177076826016}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": 5.517811388537973, "y": -1.2284185330367814, "z": 0.47887100915681646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9577420183136329}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": 5.617556454038013, "y": -1.2353694292831268, "z": 0.4753480452622237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9506960905244474}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": 5.717158651246023, "y": -1.2426583378299814, "z": 0.47180046829799216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9436009365959843}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": 5.81689395760472, "y": -1.2502710026502937, "z": 0.46796389071182076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9359277814236415}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": 5.916571884920598, "y": -1.2581689752168772, "z": 0.4640680014262834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9281360028525668}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": 6.016272731133106, "y": -1.266385667845344, "z": 0.46013963206713787}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9202792641342757}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": 6.115903612434124, "y": -1.274893209422441, "z": 0.4560884964079361}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9121769928158722}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": 6.215501837162944, "y": -1.2835967547387697, "z": 0.4514897868750823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9029795737501646}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": 6.3149550966135575, "y": -1.2924387312688723, "z": 0.44664984391660395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8932996878332079}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": 6.414600326135898, "y": -1.3014644314419082, "z": 0.4421843894663537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8843687789327074}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": 6.513874833880926, "y": -1.3107158737797966, "z": 0.43829431430034266}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8765886286006853}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": 6.613609254052895, "y": -1.3203903419442529, "z": 0.43437134232078256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8687426846415651}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": 6.712770322545798, "y": -1.3303587604411176, "z": 0.43014676344761793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8602935268952359}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": 6.812423680838751, "y": -1.3406388910378, "z": 0.42547601842523547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8509520368504709}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": 6.9117200807259875, "y": -1.3510417347403025, "z": 0.42028127759008965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8405625551801793}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": 7.0110981070456, "y": -1.361550960927899, "z": 0.41476168819456305}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8295233763891261}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": 7.11056641966519, "y": -1.3721738769383305, "z": 0.4092875594631249}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8185751189262498}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": 7.209623372987959, "y": -1.3828863977128696, "z": 0.4039084574916054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8078169149832108}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": 7.309263515780998, "y": -1.3938302835541856, "z": 0.39845706508328804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7969141301665761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": 7.408440156175958, "y": -1.4048765745554295, "z": 0.3928132657059035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.785626531411807}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": 7.507766348744858, "y": -1.4160877045130897, "z": 0.38718745909855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7743749181971}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": 7.607134979630416, "y": -1.4274797935993004, "z": 0.3814798516916934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7629597033833868}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": 7.706134925827967, "y": -1.4389140435052232, "z": 0.375284495685916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.750568991371832}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": 7.805630383569596, "y": -1.4503400114033542, "z": 0.369104642266483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.738209284532966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": 7.904892549425114, "y": -1.4616223853587147, "z": 0.36282029320125053}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7256405864025011}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": 8.004018884635393, "y": -1.4728996183071106, "z": 0.3570881731699822}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7141763463399644}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": 8.103449219184288, "y": -1.4844824888668937, "z": 0.35126280679899746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7025256135979949}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": 8.202586755121121, "y": -1.4963401466003787, "z": 0.34528844676589615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6905768935317923}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": 8.301708054752968, "y": -1.5084375612355716, "z": 0.3389499026123979}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6778998052247958}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": 8.400948171173765, "y": -1.5207226157274578, "z": 0.33277472848284145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6655494569656829}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": 8.500012240692767, "y": -1.5333319704603807, "z": 0.3270200231786349}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6540400463572698}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": 8.59904926061334, "y": -1.5464472710573933, "z": 0.3211633814230986}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6423267628461972}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": 8.698020541259229, "y": -1.5600656962118296, "z": 0.3151485754054552}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6302971508109104}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": 8.796899101063694, "y": -1.5742179419722149, "z": 0.3092078313506805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.618415662701361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": 8.895748457171349, "y": -1.5889993842488574, "z": 0.3035020637568122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6070041275136244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": 8.99432237107916, "y": -1.6044744996778841, "z": 0.29769439708227047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5953887941645409}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": 9.092926353433603, "y": -1.620580468264133, "z": 0.291251158552483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.582502317104966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": 9.191516259226306, "y": -1.6371681850694801, "z": 0.28413574440757855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5682714888151571}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": 9.289779870258748, "y": -1.6542106230894316, "z": 0.27867318877236474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5573463775447295}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": 9.388194517450891, "y": -1.6724597458655797, "z": 0.27467209819674626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5493441963934925}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": 9.486004032421729, "y": -1.6922824132703673, "z": 0.2706647474343281}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5413294948686562}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": 9.583504292062932, "y": -1.7133973137595109, "z": 0.2658253414757847}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5316506829515694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": 9.681307449745065, "y": -1.7362500124996114, "z": 0.2628505731629715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.525701146325943}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": 9.777654168248818, "y": -1.7610309355730265, "z": 0.25988509964413575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5197701992882715}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": 9.874096255211056, "y": -1.788018071482987, "z": 0.25598960674713206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5119792134942641}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": 9.969791341899203, "y": -1.816708783938797, "z": 0.2511604640104722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5023209280209444}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": 10.065109840365864, "y": -1.8469691458294455, "z": 0.24583904575855062}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49167809151710123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": 10.159919784374184, "y": -1.8790166178151246, "z": 0.24172916307755254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4834583261551051}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": 10.253829645442892, "y": -1.913283672433703, "z": 0.2375920977028881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4751841954057762}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": 10.34679555801146, "y": -1.9499285688154941, "z": 0.23340046729288802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46680093458577604}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": 10.43878937310165, "y": -1.9887690284395545, "z": 0.22885874604926854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45771749209853707}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": 10.530225984671429, "y": -2.029237381593353, "z": 0.2220239146924422}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4440478293848844}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": 10.620940852988111, "y": -2.0712727751207605, "z": 0.21704115965571383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43408231931142766}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": 10.71045073288954, "y": -2.1158075068462474, "z": 0.2119807620544945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.423961524108989}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": 10.798499540123027, "y": -2.1629340336071823, "z": 0.20688370213812926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4137674042762585}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": 10.885281686154412, "y": -2.212277387414267, "z": 0.20014276712604004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4002855342520801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": 10.970900466433825, "y": -2.2639635276981616, "z": 0.1934023022598009}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3868046045196018}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": 11.054858222157323, "y": -2.318198841164994, "z": 0.1882064787752299}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3764129575504598}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": 11.136448405516358, "y": -2.37570571690159, "z": 0.1833611114821067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3667222229642134}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": 11.215420796901533, "y": -2.436807539065552, "z": 0.17855317451703515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3571063490340703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": 11.291916799335223, "y": -2.500924226013123, "z": 0.1721880969158077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3443761938316154}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": 11.365722095921818, "y": -2.5685834746990883, "z": 0.16758704350165027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33517408700330054}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": 11.435124434030127, "y": -2.639854224999517, "z": 0.16293653987775197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32587307975550395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": 11.500880787903313, "y": -2.7157124755504407, "z": 0.15759212148750892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31518424297501785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": 11.561514152654706, "y": -2.794627373543996, "z": 0.15437428078193224}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3087485615638645}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": 11.615967693840197, "y": -2.878761656321561, "z": 0.1543146768185097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3086293536370194}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": 11.661679380558878, "y": -2.9673132915673532, "z": 0.15425504982418997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30851009964837994}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": 11.699305350275012, "y": -3.0600655353160673, "z": 0.15578249155350268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31156498310700537}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": 11.72880612899911, "y": -3.155433366213644, "z": 0.15802511172461478}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31605022344922956}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": 11.749934972061528, "y": -3.2531268632384127, "z": 0.15947691450395018}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31895382900790037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": 11.762741471241332, "y": -3.3521218259391383, "z": 0.15997928983482423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31995857966964847}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": 11.768209990541617, "y": -3.4520668503666943, "z": 0.15661373375702353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31322746751404706}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": 11.766115187021231, "y": -3.5519927188801486, "z": 0.1553957384777588}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3107914769555176}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": 11.754860939146566, "y": -3.651221485963092, "z": 0.15450289587190588}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30900579174381176}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": 11.734249486410244, "y": -3.748956923222748, "z": 0.1541206220461422}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3082412440922844}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": 11.705596383185458, "y": -3.844742415785518, "z": 0.15105662221270175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3021132444254035}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": 11.668816272929979, "y": -3.9376183396041524, "z": 0.15099829919840496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3019965983968099}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": 11.622621057587121, "y": -4.026069440743774, "z": 0.15093995364816815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3018799072963363}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": 11.568204889957359, "y": -4.10994458605309, "z": 0.15252844836111806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3050568967222361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": 11.508645905533248, "y": -4.190451463391539, "z": 0.159030992658273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.318061985316546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": 11.445081420671713, "y": -4.267478147418318, "z": 0.16568956943218996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3313791388643799}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": 11.376657045323515, "y": -4.340299272996726, "z": 0.1693703781978081}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3387407563956162}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": 11.303612326846947, "y": -4.408470934249077, "z": 0.17238681062693345}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3447736212538669}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": 11.22650868607934, "y": -4.472300581568016, "z": 0.176145014318536}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.352290028637072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": 11.145920804811311, "y": -4.531179883522267, "z": 0.17912615593986814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3582523118797363}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": 11.061283736242771, "y": -4.584843433411521, "z": 0.18051115553541006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3610223110708201}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": 10.974125169214407, "y": -4.63326557625277, "z": 0.18332068864093362}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36664137728186724}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": 10.884360780568931, "y": -4.678150405671583, "z": 0.188648299718057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.377296599436114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": 10.79379065658008, "y": -4.718945240721412, "z": 0.19366139430569465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3873227886113893}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": 10.700743565095664, "y": -4.7564134531973234, "z": 0.19769557132658958}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39539114265317915}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": 10.607439032773932, "y": -4.791057635809566, "z": 0.20430992346179241}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40861984692358483}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": 10.513080471151474, "y": -4.8245656375698935, "z": 0.21077580454067668}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42155160908135336}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": 10.41861558269891, "y": -4.856454275671765, "z": 0.21697523532074917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43395047064149833}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": 10.323501183718367, "y": -4.887088660553011, "z": 0.2229332750005857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4458665500011714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": 10.22837337553764, "y": -4.917285570553974, "z": 0.22867129460042626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4573425892008525}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": 10.133061227241068, "y": -4.947416010236568, "z": 0.23420769501638902}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46841539003277805}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": 10.037889736511778, "y": -4.977133286293879, "z": 0.23955845473701753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47911690947403507}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": 9.94223189463346, "y": -5.006852320443363, "z": 0.24473755415240223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48947510830480445}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": 9.847159254973402, "y": -5.036542292589234, "z": 0.24975730882982786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4995146176596557}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": 9.751641021270814, "y": -5.066467111347678, "z": 0.2546286345472308}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5092572690944616}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": 9.656448533521642, "y": -5.096296760780314, "z": 0.2593612604241612}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5187225208483224}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": 9.561021647227678, "y": -5.126197688975287, "z": 0.263963902058112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.527927804116224}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": 9.465669289258333, "y": -5.156059869533345, "z": 0.26844440347397014}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5368888069479403}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": 9.37031070116176, "y": -5.185880711396942, "z": 0.27280985448980055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5456197089796011}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": 9.274821684595626, "y": -5.215682946429438, "z": 0.27706668851081045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5541333770216209}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": 9.179484319944743, "y": -5.245373697061981, "z": 0.28122076459876094}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5624415291975219}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": 9.083913822207501, "y": -5.275074696454123, "z": 0.2852774368010212}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5705548736020424}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": 8.988546323557035, "y": -5.304658363777558, "z": 0.2892416130763662}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5784832261527324}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": 8.89295255319301, "y": -5.3342845312688345, "z": 0.2931178056642338}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5862356113284676}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": 8.797528734329852, "y": -5.363865863809581, "z": 0.296910174368798}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.593820348737596}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": 8.701996857554489, "y": -5.3935142725089165, "z": 0.3006225639392219}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6012451278784438}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": 8.606592374516765, "y": -5.423173407160592, "z": 0.3042585365014882}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6085170730029764}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": 8.511129176147083, "y": -5.452884815310066, "z": 0.3078213998196875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.615642799639375}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": 8.415769154757273, "y": -5.482566738819158, "z": 0.31131423202412056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6226284640482411}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": 8.320294300490334, "y": -5.512263983049619, "z": 0.31473990333156643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6294798066631329}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": 8.224923207442236, "y": -5.541890684556824, "z": 0.3181010951931688}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6362021903863376}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": 8.129416531957661, "y": -5.5715110969535475, "z": 0.3214003172327873}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6428006344655746}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": 8.034012559124768, "y": -5.601045375158282, "z": 0.32463992227968524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6492798445593705}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": 7.938476990993672, "y": -5.630563390093196, "z": 0.3278221197512374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6556442395024747}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": 7.84303517475371, "y": -5.65999451569343, "z": 0.33094898760175356}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6618979752035071}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": 7.747471817293556, "y": -5.689404773575328, "z": 0.33402248302084797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6680449660416959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": 7.651985979507258, "y": -5.718732939583475, "z": 0.3370444520376791}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6740889040753582}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": 7.556399606376059, "y": -5.748034875331726, "z": 0.34001663816479627}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6800332763295925}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": 7.460868659311588, "y": -5.777264579522929, "z": 0.342940690196433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.685881380392866}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": 7.365263178929125, "y": -5.8064644033740755, "z": 0.3458181692602017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6916363385204034}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": 7.2696890434272206, "y": -5.835605111196054, "z": 0.3486505552077392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6973011104154784}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": 7.1740684628814275, "y": -5.86471493656659, "z": 0.3514392524185055}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.702878504837011}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": 7.07845618995418, "y": -5.89378250116978, "z": 0.3541855950812928}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7083711901625857}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": 6.982823785368791, "y": -5.922820144891542, "z": 0.356890852009766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.713781704019532}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": 6.8871809526501, "y": -5.9518271175999375, "z": 0.35955623104132434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7191124620826487}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": 6.791535266972382, "y": -5.980798873782368, "z": 0.3621828830625204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7243657661250408}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": 6.695862518870154, "y": -6.009736314974939, "z": 0.36477190569907314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7295438113981463}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": 6.600188656332336, "y": -6.038618021390201, "z": 0.367324346704015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.73464869340803}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": 6.504461704769121, "y": -6.06743954454243, "z": 0.3698412070736174}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7396824141472348}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": 6.408725480787198, "y": -6.096188401471358, "z": 0.37232344391736155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7446468878347231}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": 6.312972690039275, "y": -6.124893077557378, "z": 0.3747719731052779}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7495439462105558}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": 6.217189483149671, "y": -6.153600826616418, "z": 0.3771876717134033}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7543753434268066}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": 6.12150355471214, "y": -6.182337940618239, "z": 0.37957138028586335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7591427605717267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": 6.025733664905538, "y": -6.2112144287884545, "z": 0.3819239049301118}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7638478098602236}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": 5.9301644942746465, "y": -6.240182493982254, "z": 0.3842460192601248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7684920385202496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": 5.834453281433637, "y": -6.269381659447114, "z": 0.3865384662008243}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7730769324016487}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": 5.739025293531592, "y": -6.298714902891666, "z": 0.38880195966565484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7776039193313097}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": 5.643427609016871, "y": -6.3283496652978535, "z": 0.3910371861180444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7820743722360888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": 5.548156768678674, "y": -6.358151200929971, "z": 0.393244806026426}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.786489612052852}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": 5.45273197831137, "y": -6.3882867007983535, "z": 0.39150967824430144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7830193564886029}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": 5.357602899496141, "y": -6.41862772079918, "z": 0.3862841325324719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7725682650649438}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": 5.262416528684547, "y": -6.449295356425082, "z": 0.38098703106335013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7619740621267003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": 5.167405988185571, "y": -6.480216669701206, "z": 0.3755936096077913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7511872192155826}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": 5.0725137294133065, "y": -6.5114053235912595, "z": 0.37007756637679146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7401551327535829}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": 4.9775922498341005, "y": -6.542898263569822, "z": 0.36440756363307597}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7288151272661519}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": 4.883013210984637, "y": -6.574551388127581, "z": 0.35854799185865954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7170959837173191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": 4.788165265181246, "y": -6.6065418604580435, "z": 0.3524697714478436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7049395428956872}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": 4.6938455321374635, "y": -6.638566149104853, "z": 0.34614170554813617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6922834110962723}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": 4.599062490762153, "y": -6.670922946906116, "z": 0.33954318771086267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6790863754217253}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": 4.5047217039413034, "y": -6.703268137572252, "z": 0.3326840666625488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6653681333250976}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": 4.410209288741349, "y": -6.735776863583677, "z": 0.325553731711562}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.651107463423124}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": 4.315859166441772, "y": -6.768300635068158, "z": 0.31814858691566134}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6362971738313227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": 4.221402105587845, "y": -6.800902411317738, "z": 0.31046964419705014}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6209392883941003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": 4.12697586905243, "y": -6.833510855405004, "z": 0.30252346621029136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6050469324205827}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": 4.03242500040091, "y": -6.866161839089868, "z": 0.2943638492072045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.588727698414409}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": 3.9378978171457084, "y": -6.898789669302955, "z": 0.2860233504725276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5720467009450552}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 3, "action": 0, "pose": {"position": {"x": 3.8434319422605188, "y": -6.931364222052037, "z": 0.27748593401621824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5549718680324365}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 3, "action": 0, "pose": {"position": {"x": 3.748811798920975, "y": -6.963938010293848, "z": 0.2687618710292165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.537523742058433}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 3, "action": 0, "pose": {"position": {"x": 3.654310146780308, "y": -6.996385020366348, "z": 0.2598111759226529}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5196223518453058}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 3, "action": 0, "pose": {"position": {"x": 3.559713980948258, "y": -7.028749135013058, "z": 0.2505761840579063}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5011523681158127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 3, "action": 0, "pose": {"position": {"x": 3.465064049908197, "y": -7.060992153669842, "z": 0.24113709140105294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4822741828021059}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 3, "action": 0, "pose": {"position": {"x": 3.370555222423518, "y": -7.09297655346489, "z": 0.23153574813254205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4630714962650841}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 3, "action": 0, "pose": {"position": {"x": 3.27566072708856, "y": -7.124803848729256, "z": 0.22152133746701366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4430426749340273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 3, "action": 0, "pose": {"position": {"x": 3.181063880521145, "y": -7.15641855007483, "z": 0.2107326727772873}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4214653455545746}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 3, "action": 0, "pose": {"position": {"x": 3.08623275523335, "y": -7.188406501607192, "z": 0.20089435309902565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4017887061980513}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 3, "action": 0, "pose": {"position": {"x": 2.9920095756452927, "y": -7.221229971816084, "z": 0.1909508973354307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3819017946708614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 3, "action": 0, "pose": {"position": {"x": 2.8981222659618178, "y": -7.255286486228142, "z": 0.1804841712962419}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3609683425924838}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 3, "action": 0, "pose": {"position": {"x": 2.804631743338607, "y": -7.290424729955138, "z": 0.17102262689454148}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34204525378908296}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 3, "action": 0, "pose": {"position": {"x": 2.71200961412086, "y": -7.328026233517496, "z": 0.16419460927765175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3283892185553035}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 3, "action": 0, "pose": {"position": {"x": 2.62134643424939, "y": -7.369625559504986, "z": 0.1571244461928276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3142488923856552}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 3, "action": 0, "pose": {"position": {"x": 2.53270871909409, "y": -7.41562662519649, "z": 0.14977262348305406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2995452469661081}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 3, "action": 0, "pose": {"position": {"x": 2.4468538870903562, "y": -7.466772914763502, "z": 0.14486241991929272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28972483983858544}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 3, "action": 0, "pose": {"position": {"x": 2.3655571996836198, "y": -7.524546903787082, "z": 0.14220443490665108}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28440886981330216}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 3, "action": 0, "pose": {"position": {"x": 2.29014091934833, "y": -7.590530602760242, "z": 0.14214952972494743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28429905944989486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 3, "action": 0, "pose": {"position": {"x": 2.223416859481561, "y": -7.664159106221194, "z": 0.14209460332795001}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28418920665590003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 3, "action": 0, "pose": {"position": {"x": 2.1649037360688976, "y": -7.745605179723348, "z": 0.14293868417663003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28587736835326005}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 3, "action": 0, "pose": {"position": {"x": 2.1156845904468833, "y": -7.83202106614312, "z": 0.14463149555107954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2892629911021591}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 3, "action": 0, "pose": {"position": {"x": 2.074493598917101, "y": -7.9234762571343165, "z": 0.14403505010506235}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2880701002101247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 3, "action": 0, "pose": {"position": {"x": 2.042208865488961, "y": -8.017951107149132, "z": 0.1428011114348774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2856022228697548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 3, "action": 0, "pose": {"position": {"x": 2.0204543225549583, "y": -8.115524239867149, "z": 0.14274597587615898}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28549195175231795}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 3, "action": 0, "pose": {"position": {"x": 2.0103222928141125, "y": -8.214871445668717, "z": 0.14269081901312944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2853816380262589}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 3, "action": 0, "pose": {"position": {"x": 2.011418295181536, "y": -8.314743431353602, "z": 0.1435070539083035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.287014107816607}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 3, "action": 0, "pose": {"position": {"x": 2.0234088806866857, "y": -8.413935126577401, "z": 0.14459831655206307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28919663310412613}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 3, "action": 0, "pose": {"position": {"x": 2.045973511144102, "y": -8.511191586024308, "z": 0.1455946347878895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.291189269575779}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 3, "action": 0, "pose": {"position": {"x": 2.078106234867398, "y": -8.605877685492695, "z": 0.14766026823855616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2953205364771123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 3, "action": 0, "pose": {"position": {"x": 2.1182791521072524, "y": -8.697495121772366, "z": 0.15122384040147704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3024476808029541}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 3, "action": 0, "pose": {"position": {"x": 2.1650226933738344, "y": -8.78583286776974, "z": 0.155965633210493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.311931266420986}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 3, "action": 0, "pose": {"position": {"x": 2.217255230336494, "y": -8.871271141295594, "z": 0.16171529105282392}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32343058210564785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 3, "action": 0, "pose": {"position": {"x": 2.2741071007194003, "y": -8.953289576586755, "z": 0.16721979971274462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33443959942548923}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 3, "action": 0, "pose": {"position": {"x": 2.33577807531465, "y": -9.032253955529642, "z": 0.1720302651611776}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3440605303223552}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 3, "action": 0, "pose": {"position": {"x": 2.4015432164865422, "y": -9.107117036400247, "z": 0.1760228087020488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3520456174040976}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 3, "action": 0, "pose": {"position": {"x": 2.4721391219535764, "y": -9.1786753549077, "z": 0.1791511657842219}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3583023315684438}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 3, "action": 0, "pose": {"position": {"x": 2.5450310958690077, "y": -9.24600615592597, "z": 0.18417277367755436}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3683455473551087}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 3, "action": 0, "pose": {"position": {"x": 2.6213359357514636, "y": -9.312200969889371, "z": 0.19145517015393104}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3829103403078621}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 3, "action": 0, "pose": {"position": {"x": 2.697434816777, "y": -9.375806482129166, "z": 0.1985007987985446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3970015975970892}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 3, "action": 0, "pose": {"position": {"x": 2.7748704436662215, "y": -9.439400267010331, "z": 0.20521995595856235}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4104399119171247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 3, "action": 0, "pose": {"position": {"x": 2.852101267325659, "y": -9.50192707831801, "z": 0.21164738090595625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4232947618119125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 3, "action": 0, "pose": {"position": {"x": 2.930008108937793, "y": -9.564361729240709, "z": 0.21781206884474016}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43562413768948033}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 3, "action": 0, "pose": {"position": {"x": 3.0077440731431304, "y": -9.626418591775245, "z": 0.22373851883205198}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44747703766410396}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 3, "action": 0, "pose": {"position": {"x": 3.0861432695912474, "y": -9.688870193705394, "z": 0.22944765333741743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45889530667483486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 3, "action": 0, "pose": {"position": {"x": 3.1639697964589404, "y": -9.75069850240358, "z": 0.23495750924875788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46991501849751577}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 3, "action": 0, "pose": {"position": {"x": 3.2424193398951733, "y": -9.812787132007664, "z": 0.24028376614535168}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48056753229070337}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 3, "action": 0, "pose": {"position": {"x": 3.3208672570018254, "y": -9.874561512648096, "z": 0.24544015636378586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4908803127275717}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 3, "action": 0, "pose": {"position": {"x": 3.3994914334084667, "y": -9.936075281086346, "z": 0.2504387876631013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5008775753262026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 3, "action": 0, "pose": {"position": {"x": 3.478612142011927, "y": -9.9975251827637, "z": 0.25529040023387684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5105808004677537}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 3, "action": 0, "pose": {"position": {"x": 3.557569583809704, "y": -10.058377677744184, "z": 0.2600045736775499}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5200091473550998}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 3, "action": 0, "pose": {"position": {"x": 3.637228010587226, "y": -10.119299577929274, "z": 0.26458989536829775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5291797907365955}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 3, "action": 0, "pose": {"position": {"x": 3.7166407633082272, "y": -10.179581770457505, "z": 0.2690540986550793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5381081973101586}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 3, "action": 0, "pose": {"position": {"x": 3.796668507987788, "y": -10.239910377857257, "z": 0.2734041772557526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5468083545115052}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 3, "action": 0, "pose": {"position": {"x": 3.8765652188856885, "y": -10.299762255084918, "z": 0.2776464806722087}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5552929613444174}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 3, "action": 0, "pose": {"position": {"x": 3.9568289840872697, "y": -10.35955845318825, "z": 0.28178679433889925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5635735886777985}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 3, "action": 0, "pose": {"position": {"x": 4.037141943357035, "y": -10.419111942698041, "z": 0.2858304073882762}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5716608147765524}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 3, "action": 0, "pose": {"position": {"x": 4.117554064826755, "y": -10.478520674209044, "z": 0.28978217029428227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5795643405885645}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 3, "action": 0, "pose": {"position": {"x": 4.198119491202174, "y": -10.537892468246937, "z": 0.2936465441826881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5872930883653762}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 3, "action": 0, "pose": {"position": {"x": 4.278607519558941, "y": -10.597130275244332, "z": 0.2974276432350449}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5948552864700898}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 3, "action": 0, "pose": {"position": {"x": 4.359198217767205, "y": -10.656446273100507, "z": 0.30112927133300244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6022585426660049}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 3, "action": 0, "pose": {"position": {"x": 4.439689259797896, "y": -10.715783120915129, "z": 0.30475495387128104}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6095099077425621}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 3, "action": 0, "pose": {"position": {"x": 4.520015793519205, "y": -10.775204213293797, "z": 0.3083079654957774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6166159309915548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 3, "action": 0, "pose": {"position": {"x": 4.600372758797242, "y": -10.834943175723042, "z": 0.3117913543871621}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6235827087743242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 3, "action": 0, "pose": {"position": {"x": 4.680226956822751, "y": -10.894632051271893, "z": 0.31520796360171}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.63041592720342}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 3, "action": 0, "pose": {"position": {"x": 4.760384671821075, "y": -10.954886110574053, "z": 0.31856044989384386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6371208997876877}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 3, "action": 0, "pose": {"position": {"x": 4.839815826152527, "y": -11.014906878439321, "z": 0.3218513003743601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6437026007487202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 3, "action": 0, "pose": {"position": {"x": 4.919765115509733, "y": -11.075607429991011, "z": 0.32508284730096315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6501656946019263}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 3, "action": 0, "pose": {"position": {"x": 4.998913514269764, "y": -11.135973712018865, "z": 0.32825728125084985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6565145625016997}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 3, "action": 0, "pose": {"position": {"x": 5.078596582056066, "y": -11.197016344019605, "z": 0.32893187624218434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6578637524843687}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 3, "action": 0, "pose": {"position": {"x": 5.157471353718672, "y": -11.257700353063145, "z": 0.32207953546062534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6441590709212507}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 3, "action": 0, "pose": {"position": {"x": 5.236900899428279, "y": -11.319068480279487, "z": 0.3150397844781869}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6300795689563738}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 3, "action": 0, "pose": {"position": {"x": 5.315498056556281, "y": -11.38004085032359, "z": 0.3077937272605068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6155874545210136}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 3, "action": 0, "pose": {"position": {"x": 5.394703514705458, "y": -11.441724088122816, "z": 0.3003264348277353}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6006528696554706}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 3, "action": 0, "pose": {"position": {"x": 5.473024779483447, "y": -11.502934562834563, "z": 0.2925893177065999}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5851786354131998}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 3, "action": 0, "pose": {"position": {"x": 5.552052898083981, "y": -11.564888899437625, "z": 0.28455899917137734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5691179983427547}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 3, "action": 0, "pose": {"position": {"x": 5.63029222394872, "y": -11.626383155980479, "z": 0.27620109021581446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5524021804316289}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 3, "action": 0, "pose": {"position": {"x": 5.709047623900241, "y": -11.688405460622663, "z": 0.2674864298301917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5349728596603834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 3, "action": 0, "pose": {"position": {"x": 5.787312182602111, "y": -11.750119067101659, "z": 0.25836878890184917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5167375778036983}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 3, "action": 0, "pose": {"position": {"x": 5.865832588592733, "y": -11.812079434275843, "z": 0.24883609118250594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4976721823650119}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 3, "action": 0, "pose": {"position": {"x": 5.944136411463935, "y": -11.873907785419927, "z": 0.2389213261856011}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4778426523712022}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 3, "action": 0, "pose": {"position": {"x": 6.022545031098125, "y": -11.935816254925193, "z": 0.22867438748746532}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45734877497493065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 3, "action": 0, "pose": {"position": {"x": 6.1008585197807665, "y": -11.99757163262216, "z": 0.21794626500235914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4358925300047183}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 3, "action": 0, "pose": {"position": {"x": 6.179354157600914, "y": -12.059525228128438, "z": 0.2070540185494539}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4141080370989078}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 3, "action": 0, "pose": {"position": {"x": 6.257357067511899, "y": -12.121572195986746, "z": 0.19810058314535606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3962011662907121}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 3, "action": 0, "pose": {"position": {"x": 6.33482783428197, "y": -12.185201708515203, "z": 0.19145673040205233}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38291346080410466}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 3, "action": 0, "pose": {"position": {"x": 6.4099887314394035, "y": -12.250528707784696, "z": 0.18466361360735217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36932722721470435}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 3, "action": 0, "pose": {"position": {"x": 6.483959311013245, "y": -12.318244490454601, "z": 0.17614425624604865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3522885124920973}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 3, "action": 0, "pose": {"position": {"x": 6.555910897603345, "y": -12.387343861766839, "z": 0.167883570512901}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.335767141025802}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 3, "action": 0, "pose": {"position": {"x": 6.62561216375031, "y": -12.459227426234872, "z": 0.1609855427413272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3219710854826544}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 3, "action": 0, "pose": {"position": {"x": 6.691541156601484, "y": -12.534341176071575, "z": 0.15516087277453833}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31032174554907666}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 3, "action": 0, "pose": {"position": {"x": 6.752648276984459, "y": -12.613416275194707, "z": 0.15030183819157744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3006036763831549}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 3, "action": 0, "pose": {"position": {"x": 6.807735092831544, "y": -12.69680224982957, "z": 0.14591012149242674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2918202429848535}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 3, "action": 0, "pose": {"position": {"x": 6.855676062104015, "y": -12.784450467282845, "z": 0.1424604066628908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2849208133257816}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 3, "action": 0, "pose": {"position": {"x": 6.895068437669282, "y": -12.876276347375372, "z": 0.14114624269260026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2822924853852005}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 3, "action": 0, "pose": {"position": {"x": 6.923908264219938, "y": -12.971734423277288, "z": 0.141091746079278}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.282183492158556}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 3, "action": 0, "pose": {"position": {"x": 6.941071973701596, "y": -13.070091214524114, "z": 0.14103722840853225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2820744568170645}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 3, "action": 0, "pose": {"position": {"x": 6.946348323547776, "y": -13.169572727201482, "z": 0.14119130581345252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28238261162690503}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 3, "action": 0, "pose": {"position": {"x": 6.939685661500013, "y": -13.269275984268868, "z": 0.14130834160487524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2826166832097505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 3, "action": 0, "pose": {"position": {"x": 6.921251346838763, "y": -13.367068787873572, "z": 0.14134688546663934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2826937709332787}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 3, "action": 0, "pose": {"position": {"x": 6.891547808012769, "y": -13.46270050774252, "z": 0.14213407351840965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2842681470368193}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 3, "action": 0, "pose": {"position": {"x": 6.851919443799761, "y": -13.554180716510663, "z": 0.14369409570339184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2873881914067837}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 3, "action": 0, "pose": {"position": {"x": 6.803511557866554, "y": -13.641873057054356, "z": 0.14669476980734703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29338953961469405}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 3, "action": 0, "pose": {"position": {"x": 6.748139094500539, "y": -13.725163125088878, "z": 0.1510016654091473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3020033308182946}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 3, "action": 0, "pose": {"position": {"x": 6.687009053794416, "y": -13.804336094803533, "z": 0.1561818898157319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3123637796314638}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 3, "action": 0, "pose": {"position": {"x": 6.621060772144511, "y": -13.87976642880163, "z": 0.1620124919298427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3240249838596854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 3, "action": 0, "pose": {"position": {"x": 6.551275005777948, "y": -13.951294729057453, "z": 0.1679187506739046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3358375013478092}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 3, "action": 0, "pose": {"position": {"x": 6.477614674913947, "y": -14.019486910231967, "z": 0.17359308568779078}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34718617137558155}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 3, "action": 0, "pose": {"position": {"x": 6.401301356639655, "y": -14.084013452984072, "z": 0.17954091217267767}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35908182434535535}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 3, "action": 0, "pose": {"position": {"x": 6.32226695634923, "y": -14.145883192720923, "z": 0.18611011257696772}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37222022515393544}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 3, "action": 0, "pose": {"position": {"x": 6.241522229828566, "y": -14.204310758725859, "z": 0.19194041612952184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3838808322590437}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 3, "action": 0, "pose": {"position": {"x": 6.157675535265315, "y": -14.259585461053756, "z": 0.195845994213633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.391691988427266}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 3, "action": 0, "pose": {"position": {"x": 6.073066631787508, "y": -14.311251568426119, "z": 0.2011471273632809}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4022942547265618}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 3, "action": 0, "pose": {"position": {"x": 5.986259719192079, "y": -14.362466000635711, "z": 0.20774920271641595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4154984054328319}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 3, "action": 0, "pose": {"position": {"x": 5.900566588552614, "y": -14.411739499760674, "z": 0.21407141199300725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4281428239860145}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 3, "action": 0, "pose": {"position": {"x": 5.81291602888976, "y": -14.460666544944157, "z": 0.22014087672805474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4402817534561095}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 3, "action": 0, "pose": {"position": {"x": 5.725373069158345, "y": -14.508483883000286, "z": 0.22598061201425013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45196122402850025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 3, "action": 0, "pose": {"position": {"x": 5.637899015728946, "y": -14.555613209741269, "z": 0.23161034767169542}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46322069534339083}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 3, "action": 0, "pose": {"position": {"x": 5.549566835377912, "y": -14.6028018588212, "z": 0.2370471496175418}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4740942992350836}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 3, "action": 0, "pose": {"position": {"x": 5.461554790717638, "y": -14.64964682251021, "z": 0.24230589782472}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48461179564944}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 3, "action": 0, "pose": {"position": {"x": 5.37334588319516, "y": -14.69658488135618, "z": 0.2473996593630795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.494799318726159}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 3, "action": 0, "pose": {"position": {"x": 5.285351415714842, "y": -14.743475016309269, "z": 0.25233998337036423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5046799667407285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 3, "action": 0, "pose": {"position": {"x": 5.197343649961825, "y": -14.790452251196317, "z": 0.25713713704024227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5142742740804845}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 3, "action": 0, "pose": {"position": {"x": 5.1088469136682555, "y": -14.837742406176769, "z": 0.26180029643294245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5236005928658849}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 3, "action": 0, "pose": {"position": {"x": 5.021197321209004, "y": -14.884575607342802, "z": 0.2663377022502577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5326754045005154}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 3, "action": 0, "pose": {"position": {"x": 4.933011431447147, "y": -14.931623815472598, "z": 0.2707567881309952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5415135762619904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 3, "action": 0, "pose": {"position": {"x": 4.844558912234694, "y": -14.978676555218884, "z": 0.2750642871693472}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5501285743386944}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 3, "action": 0, "pose": {"position": {"x": 4.756658016976915, "y": -15.025240732410131, "z": 0.2792663210107422}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5585326420214844}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 3, "action": 0, "pose": {"position": {"x": 4.667772448611634, "y": -15.072081289083396, "z": 0.28336847488660616}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5667369497732123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 3, "action": 0, "pose": {"position": {"x": 4.579680448428351, "y": -15.118224293076363, "z": 0.2873758612088534}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5747517224177068}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 3, "action": 0, "pose": {"position": {"x": 4.490862601756111, "y": -15.164441723959829, "z": 0.29129317378646274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5825863475729255}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 3, "action": 0, "pose": {"position": {"x": 4.402103749663489, "y": -15.210306899407417, "z": 0.2951247343009952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5902494686019903}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 3, "action": 0, "pose": {"position": {"x": 4.313265167915538, "y": -15.25588524631894, "z": 0.29887453235059347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5977490647011869}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 3, "action": 0, "pose": {"position": {"x": 4.223990608327042, "y": -15.301357635627058, "z": 0.30254626011797814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6050925202359563}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 3, "action": 0, "pose": {"position": {"x": 4.13504473361197, "y": -15.346339972702474, "z": 0.306143342519138}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.612286685038276}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 3, "action": 0, "pose": {"position": {"x": 4.045401316658371, "y": -15.391360399578987, "z": 0.30966896353258944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6193379270651789}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 3, "action": 0, "pose": {"position": {"x": 3.9562755931277147, "y": -15.435821151628678, "z": 0.31312608928448704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6262521785689741}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 3, "action": 0, "pose": {"position": {"x": 3.866385387973809, "y": -15.48037767122668, "z": 0.3165174883651827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6330349767303654}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 3, "action": 0, "pose": {"position": {"x": 3.777030929889279, "y": -15.524402188557303, "z": 0.3198457497725554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6396914995451108}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 3, "action": 0, "pose": {"position": {"x": 3.6869857271567428, "y": -15.568518436462739, "z": 0.32311329881241024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6462265976248205}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 3, "action": 0, "pose": {"position": {"x": 3.597382121436315, "y": -15.612190691787038, "z": 0.3263224112332497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6526448224664994}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 3, "action": 0, "pose": {"position": {"x": 3.507245165629296, "y": -15.655915068156888, "z": 0.3294752258293023}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6589504516586046}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 3, "action": 0, "pose": {"position": {"x": 3.417399698083324, "y": -15.699311521898666, "z": 0.33257375570993725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6651475114198745}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 3, "action": 0, "pose": {"position": {"x": 3.327210490929137, "y": -15.742708329935011, "z": 0.33561989840400347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6712397968080069}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 3, "action": 0, "pose": {"position": {"x": 3.237156188010094, "y": -15.785895826335404, "z": 0.338615444943015}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.67723088988603}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 3, "action": 0, "pose": {"position": {"x": 3.146935924489256, "y": -15.82903852064749, "z": 0.34156208804655935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6831241760931187}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 3, "action": 0, "pose": {"position": {"x": 3.0567215022678007, "y": -15.87207363355288, "z": 0.3444614295160662}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6889228590321324}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 3, "action": 0, "pose": {"position": {"x": 2.966478059119785, "y": -15.915041120100062, "z": 0.3473149869285497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6946299738570993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 3, "action": 0, "pose": {"position": {"x": 2.8761767910066713, "y": -15.95798085356792, "z": 0.3501241997096707}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7002483994193414}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 3, "action": 0, "pose": {"position": {"x": 2.785923258733631, "y": -16.00086904323147, "z": 0.3528904346550493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7057808693100986}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 3, "action": 0, "pose": {"position": {"x": 2.695603523749595, "y": -16.043786729878157, "z": 0.3556149909598859}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7112299819197718}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 3, "action": 0, "pose": {"position": {"x": 2.605342086813491, "y": -16.086709069272338, "z": 0.3582991048093758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7165982096187516}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 3, "action": 0, "pose": {"position": {"x": 2.515105825393779, "y": -16.129698023351942, "z": 0.360943953575908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.721887907151816}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 3, "action": 0, "pose": {"position": {"x": 2.4248619918000336, "y": -16.17280370952208, "z": 0.36355065966344746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7271013193268949}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 3, "action": 0, "pose": {"position": {"x": 2.3348156263765176, "y": -16.215932686629024, "z": 0.36612029403469026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7322405880693805}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 3, "action": 0, "pose": {"position": {"x": 2.2446004027429884, "y": -16.25925804485693, "z": 0.36865387945241374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7373077589048275}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 3, "action": 0, "pose": {"position": {"x": 2.1546893478663045, "y": -16.302539064474978, "z": 0.3711523934628258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7423047869256516}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 3, "action": 0, "pose": {"position": {"x": 2.0645291501803746, "y": -16.346027527822308, "z": 0.3736167711455802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7472335422911603}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 3, "action": 0, "pose": {"position": {"x": 1.9746686938931193, "y": -16.389450586218285, "z": 0.3760479076523863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7520958153047727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 3, "action": 0, "pose": {"position": {"x": 1.88458818024109, "y": -16.433053708353842, "z": 0.37844666055374176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7568933211074835}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 3, "action": 0, "pose": {"position": {"x": 1.7947664806118022, "y": -16.47660319360688, "z": 0.38081385201122264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7616277040224453}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 3, "action": 0, "pose": {"position": {"x": 1.7047677930323442, "y": -16.520309909874353, "z": 0.3831502707909275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.766300541581855}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 3, "action": 0, "pose": {"position": {"x": 1.614981252700913, "y": -16.56398446329057, "z": 0.3854566741320412}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7709133482640824}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 3, "action": 0, "pose": {"position": {"x": 1.5250642423993916, "y": -16.60779292433663, "z": 0.38773378948306414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7754675789661283}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 3, "action": 0, "pose": {"position": {"x": 1.4353130410632335, "y": -16.651589348459282, "z": 0.38998231611698553}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7799646322339711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 3, "action": 0, "pose": {"position": {"x": 1.3454724392894817, "y": -16.69549586897435, "z": 0.3922029266355586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7844058532711172}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 3, "action": 0, "pose": {"position": {"x": 1.2557571629097306, "y": -16.73940439673848, "z": 0.38812954082700135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7762590816540027}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 3, "action": 0, "pose": {"position": {"x": 1.1659828820264526, "y": -16.78340130204092, "z": 0.3819190882097677}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7638381764195354}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 3, "action": 0, "pose": {"position": {"x": 1.0763036983484384, "y": -16.827406517015813, "z": 0.37558808504695956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7511761700939191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 3, "action": 0, "pose": {"position": {"x": 0.986582049781475, "y": -16.871482315402215, "z": 0.3691292909349101}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7382585818698202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 3, "action": 0, "pose": {"position": {"x": 0.8969377395451514, "y": -16.915563921278707, "z": 0.36253457625951774}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7250691525190355}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 3, "action": 0, "pose": {"position": {"x": 0.8072532694909198, "y": -16.95970256822085, "z": 0.35579576137971203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7115915227594241}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 3, "action": 0, "pose": {"position": {"x": 0.7176400423873934, "y": -17.003836991625978, "z": 0.3489065945116518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6978131890233036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 3, "action": 0, "pose": {"position": {"x": 0.6279777997382581, "y": -17.048019942935777, "z": 0.3418598225648417}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6837196451296834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 3, "action": 0, "pose": {"position": {"x": 0.5383881350125536, "y": -17.09218340434374, "z": 0.33464151383785196}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6692830276757039}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 3, "action": 0, "pose": {"position": {"x": 0.4487366478983722, "y": -17.136384793199785, "z": 0.3272411144735285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.654482228947057}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 3, "action": 0, "pose": {"position": {"x": 0.35915849931735677, "y": -17.180556218252953, "z": 0.3196868030966962}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6393736061933925}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 3, "action": 0, "pose": {"position": {"x": 0.26952195331580686, "y": -17.224804901747024, "z": 0.3133255116537714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6266510233075429}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 3, "action": 0, "pose": {"position": {"x": 0.18016355638173598, "y": -17.269417427974943, "z": 0.3087764826871948}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6175529653743896}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 3, "action": 0, "pose": {"position": {"x": 0.09118999768637748, "y": -17.315005021960914, "z": 0.3046761701814428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6093523403628855}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 3, "action": 0, "pose": {"position": {"x": 0.002896699377723189, "y": -17.36168285281392, "z": 0.3005636032792719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6011272065585438}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 3, "action": 0, "pose": {"position": {"x": -0.08485453552533072, "y": -17.40957806393167, "z": 0.2963948345018309}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5927896690036618}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 3, "action": 0, "pose": {"position": {"x": -0.1718634285467875, "y": -17.458613439988007, "z": 0.2921345877019147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5842691754038294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 3, "action": 0, "pose": {"position": {"x": -0.2582346280453971, "y": -17.50897609022447, "z": 0.28974250713719585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5794850142743917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 3, "action": 0, "pose": {"position": {"x": -0.34344120542639045, "y": -17.56106993526148, "z": 0.28963063745456546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5792612749091309}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 3, "action": 0, "pose": {"position": {"x": -0.4272841771010845, "y": -17.61551821552922, "z": 0.2895187245456292}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5790374490912584}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 3, "action": 0, "pose": {"position": {"x": -0.5095628369142632, "y": -17.67215927848378, "z": 0.2899425161186637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5798850322373273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 3, "action": 0, "pose": {"position": {"x": -0.5904245788797392, "y": -17.73091048886809, "z": 0.290885631088868}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.581771262177736}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 3, "action": 0, "pose": {"position": {"x": -0.6697137401299725, "y": -17.791693007998678, "z": 0.29159222941664503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5831844588332901}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 3, "action": 0, "pose": {"position": {"x": -0.74740767307272, "y": -17.85453999131714, "z": 0.29211647700885446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5842329540177089}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 3, "action": 0, "pose": {"position": {"x": -0.8234352033387596, "y": -17.919373139519717, "z": 0.2926809728748765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.585361945749753}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 3, "action": 0, "pose": {"position": {"x": -0.8979025112587302, "y": -17.985987719289106, "z": 0.29374003482277494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5874800696455499}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 3, "action": 0, "pose": {"position": {"x": -0.9711922421839566, "y": -18.053904827045276, "z": 0.29667724098792175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5933544819758435}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 3, "action": 0, "pose": {"position": {"x": -1.0435620351228814, "y": -18.122775918473316, "z": 0.3003944864768069}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6007889729536138}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 3, "action": 0, "pose": {"position": {"x": -1.115069773022455, "y": -18.19254475640989, "z": 0.30403510161796893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6080702032359379}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 3, "action": 0, "pose": {"position": {"x": -1.1857227433836222, "y": -18.26318692517688, "z": 0.30760240920436044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6152048184087209}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 3, "action": 0, "pose": {"position": {"x": -1.255476415684487, "y": -18.334653424507763, "z": 0.3110995009533271}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6221990019066542}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 3, "action": 0, "pose": {"position": {"x": -1.3246419742214837, "y": -18.40677861501063, "z": 0.3145292593999938}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6290585187999876}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 3, "action": 0, "pose": {"position": {"x": -1.3935534721575202, "y": -18.478986492892055, "z": 0.31789437719352426}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6357887543870485}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 3, "action": 0, "pose": {"position": {"x": -1.4624882100520284, "y": -18.551398914297742, "z": 0.3211973741631727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6423947483263454}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 3, "action": 0, "pose": {"position": {"x": -1.5309913456074682, "y": -18.623992432893417, "z": 0.3244406124613227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6488812249226454}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 3, "action": 0, "pose": {"position": {"x": -1.5992567569584688, "y": -18.69708973677493, "z": 0.327626310041906}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.655252620083812}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 3, "action": 0, "pose": {"position": {"x": -1.6671144341938167, "y": -18.77035731849371, "z": 0.3307565526925503}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6615131053851006}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 3, "action": 0, "pose": {"position": {"x": -1.734829302459054, "y": -18.843947705962556, "z": 0.33383330480573176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6676666096114635}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 3, "action": 0, "pose": {"position": {"x": -1.8023137617434533, "y": -18.917655255875513, "z": 0.3368584190467927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6737168380935854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 3, "action": 0, "pose": {"position": {"x": -1.8696786030137857, "y": -18.99150800826076, "z": 0.3398336450538581}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6796672901077162}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 3, "action": 0, "pose": {"position": {"x": -1.9369788296655996, "y": -19.065489415270907, "z": 0.3427606372855631}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6855212745711262}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 3, "action": 0, "pose": {"position": {"x": -2.0041496527490343, "y": -19.139469354635704, "z": 0.3456409621164518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6912819242329036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 3, "action": 0, "pose": {"position": {"x": -2.071360994979662, "y": -19.213593456513447, "z": 0.3484761042663714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6969522085327428}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 3, "action": 0, "pose": {"position": {"x": -2.1384524630444357, "y": -19.28764423271218, "z": 0.3512674726387147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7025349452774294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 3, "action": 0, "pose": {"position": {"x": -2.205608587120413, "y": -19.361784048480416, "z": 0.35401640563261333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7080328112652267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 3, "action": 0, "pose": {"position": {"x": -2.2727418735480884, "y": -19.435873505623526, "z": 0.35672417598589035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7134483519717807}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 3, "action": 0, "pose": {"position": {"x": -2.3398758676227205, "y": -19.509892449763235, "z": 0.3593919951984595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.718783990396919}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 3, "action": 0, "pose": {"position": {"x": -2.4071813612308217, "y": -19.58398330086528, "z": 0.362021017579756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.724042035159512}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 3, "action": 0, "pose": {"position": {"x": -2.4743387823960057, "y": -19.657751530354258, "z": 0.35614554691318867}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7122910938263773}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 3, "action": 0, "pose": {"position": {"x": -2.541931113260535, "y": -19.731795047620633, "z": 0.3497276748512125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.699455349702425}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 3, "action": 0, "pose": {"position": {"x": -2.609176792233987, "y": -19.805222413971904, "z": 0.34325879101289003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6865175820257801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 3, "action": 0, "pose": {"position": {"x": -2.6771355171554414, "y": -19.879157045863266, "z": 0.3366823282696943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6733646565393886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 3, "action": 0, "pose": {"position": {"x": -2.744580645283162, "y": -19.95224553304217, "z": 0.32999339205763284}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6599867841152657}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 3, "action": 0, "pose": {"position": {"x": -2.81287707217626, "y": -20.025949343700184, "z": 0.32317821780570866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6463564356114173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 3, "action": 0, "pose": {"position": {"x": -2.8805822532109078, "y": -20.098695615973245, "z": 0.31622795720976493}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6324559144195299}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 3, "action": 0, "pose": {"position": {"x": -2.9492385235017804, "y": -20.17212324947972, "z": 0.3091423876876268}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6182847753752536}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 3, "action": 0, "pose": {"position": {"x": -3.0172831457226215, "y": -20.244538891622724, "z": 0.30191321445114006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6038264289022801}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 3, "action": 0, "pose": {"position": {"x": -3.0862110611190414, "y": -20.317506565989422, "z": 0.2945524526145362}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5891049052290724}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 3, "action": 0, "pose": {"position": {"x": -3.1547590810849386, "y": -20.38965174508418, "z": 0.28700302997276905}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5740060599455381}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 3, "action": 0, "pose": {"position": {"x": -3.2238889372904, "y": -20.461991716562625, "z": 0.2792391386825739}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5584782773651478}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 3, "action": 0, "pose": {"position": {"x": -3.2929778698322782, "y": -20.533983312723958, "z": 0.2709576671089933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5419153342179867}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 3, "action": 0, "pose": {"position": {"x": -3.362289656815622, "y": -20.60602813477869, "z": 0.26213607117964666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5242721423592933}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 3, "action": 0, "pose": {"position": {"x": -3.431595017801864, "y": -20.678002701706887, "z": 0.2527747567471002}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5055495134942004}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 3, "action": 0, "pose": {"position": {"x": -3.500898501333121, "y": -20.749999554402752, "z": 0.24307718440490664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4861543688098133}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 3, "action": 0, "pose": {"position": {"x": -3.570140619375286, "y": -20.822010355464972, "z": 0.23303802579243052}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46607605158486104}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 3, "action": 0, "pose": {"position": {"x": -3.6393302444727524, "y": -20.894084732380183, "z": 0.2225839091147483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4451678182294966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 3, "action": 0, "pose": {"position": {"x": -3.7084080897053338, "y": -20.96617873391072, "z": 0.2116142137331009}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4232284274662018}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 3, "action": 0, "pose": {"position": {"x": -3.7775622214151547, "y": -21.038381375009315, "z": 0.20001124248284996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4000224849656999}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 3, "action": 0, "pose": {"position": {"x": -3.846757239378756, "y": -21.11033523065127, "z": 0.18941708620903208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37883417241806416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 3, "action": 0, "pose": {"position": {"x": -3.9168463163924874, "y": -21.181752018067726, "z": 0.1798489368472805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.359697873694561}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 3, "action": 0, "pose": {"position": {"x": -3.988280733135981, "y": -21.25159613127761, "z": 0.17141184304680124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3428236860936025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 3, "action": 0, "pose": {"position": {"x": -4.061976771503033, "y": -21.31916035241988, "z": 0.16396784513889442}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32793569027778885}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 3, "action": 0, "pose": {"position": {"x": -4.138566010019369, "y": -21.383466247102604, "z": 0.15718798524083788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31437597048167576}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 3, "action": 0, "pose": {"position": {"x": -4.218449422902442, "y": -21.44348649106552, "z": 0.15106230030804477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30212460061608953}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 3, "action": 0, "pose": {"position": {"x": -4.302120777553799, "y": -21.498243120068384, "z": 0.1456551220369623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2913102440739246}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 3, "action": 0, "pose": {"position": {"x": -4.389633570923819, "y": -21.54640372151338, "z": 0.1408232357751294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2816464715502588}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 3, "action": 0, "pose": {"position": {"x": -4.480995297475526, "y": -21.58675890039002, "z": 0.13636096413830062}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27272192827660124}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 3, "action": 0, "pose": {"position": {"x": -4.575901209634182, "y": -21.61807624206282, "z": 0.13294497787695753}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26588995575391505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 3, "action": 0, "pose": {"position": {"x": -4.67351058812609, "y": -21.638637938315767, "z": 0.1315143007089236}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2630286014178472}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 3, "action": 0, "pose": {"position": {"x": -4.772994727959577, "y": -21.646571672933234, "z": 0.13146352299174624}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2629270459834925}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 3, "action": 0, "pose": {"position": {"x": -4.872636852913675, "y": -21.640579720016227, "z": 0.12733639992662366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2546727998532473}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_sp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.872636852913675, "y_m": -21.640579720016227, "d_right": 0.2735770428740584, "d_left": 2.6842308797667562, "psi_rad": 3.0086376549374845, "kappa_radpm": -1.4895227804311206, "vx_mps": 2.8383571922202284, "ax_mps2": -0.031144199286108686}, {"id": 1, "s_m": 0.09993294762348157, "d_m": 0.0, "x_m": -4.9700190175153995, "y_m": -21.62025444477317, "d_right": 0.2874239401681581, "d_left": 2.5866113012973067, "psi_rad": 2.864356267363782, "kappa_radpm": -1.4093948261266256, "vx_mps": 2.837260454621012, "ax_mps2": 0.6231854311050821}, {"id": 2, "s_m": 0.19986589524696313, "d_m": 0.0, "x_m": -5.064090322049035, "y_m": -21.58628517097344, "d_right": 0.30872037417180903, "d_left": 2.492480197094429, "psi_rad": 2.727047829609302, "kappa_radpm": -1.3263420990185064, "vx_mps": 2.859125810706642, "ax_mps2": 1.12608170605887}, {"id": 3, "s_m": 0.29979884287044467, "d_m": 0.0, "x_m": -5.152438822805126, "y_m": -21.540460868957172, "d_right": 0.301347777982651, "d_left": 2.404464394034199, "psi_rad": 2.601225684233375, "kappa_radpm": -1.2035382647166772, "vx_mps": 2.89821768156769, "ax_mps2": 1.8582091796270626}, {"id": 4, "s_m": 0.39973179049392626, "d_m": 0.0, "x_m": -5.235090615185911, "y_m": -21.484059835999233, "d_right": 0.31399854979039055, "d_left": 2.321495271418347, "psi_rad": 2.486154834295986, "kappa_radpm": -1.091915594936984, "vx_mps": 2.9615972668467068, "ax_mps2": 2.3888371349453212}, {"id": 5, "s_m": 0.49966473811740786, "d_m": 0.0, "x_m": -5.310852193687803, "y_m": -21.41921137753995, "d_right": 0.32790029945167565, "d_left": 2.24578142011467, "psi_rad": 2.3830360195785567, "kappa_radpm": -0.9785366720685044, "vx_mps": 3.0411355516597616, "ax_mps2": 2.914245085396871}, {"id": 6, "s_m": 0.5995976857408893, "d_m": 0.0, "x_m": -5.3801186956884655, "y_m": -21.347047187442264, "d_right": 0.35054327298437876, "d_left": 2.176957428133265, "psi_rad": 2.289925206131314, "kappa_radpm": -0.8857219034561662, "vx_mps": 3.135436755307118, "ax_mps2": 3.2544953038802573}, {"id": 7, "s_m": 0.6995306333643709, "d_m": 0.0, "x_m": -5.442616870805035, "y_m": -21.269164721442046, "d_right": 0.37193245118037127, "d_left": 2.1141298572822573, "psi_rad": 2.2054504576017204, "kappa_radpm": -0.8079592791562058, "vx_mps": 3.237503090966539, "ax_mps2": 3.4909149491284763}, {"id": 8, "s_m": 0.7994635809878525, "d_m": 0.0, "x_m": -5.498714452385015, "y_m": -21.186350616783123, "d_right": 0.4047921265304896, "d_left": 2.0608919543933633, "psi_rad": 2.128129465017623, "kappa_radpm": -0.7354055545332956, "vx_mps": 3.343522260365028, "ax_mps2": 3.7355808450345425}, {"id": 9, "s_m": 0.8993965286113341, "d_m": 0.0, "x_m": -5.548520712813339, "y_m": -21.099720874658754, "d_right": 0.4183095883168272, "d_left": 2.0178570908227162, "psi_rad": 2.058177297917953, "kappa_radpm": -0.6665602275736743, "vx_mps": 3.4533688357047385, "ax_mps2": 4.0046621757681775}, {"id": 10, "s_m": 0.9993294762348157, "d_m": 0.0, "x_m": -5.592538271633526, "y_m": -21.00976642580853, "d_right": 0.43959364880737256, "d_left": 1.985145969417401, "psi_rad": 1.9948760035655377, "kappa_radpm": -0.5879911666289501, "vx_mps": 3.56737322218159, "ax_mps2": 4.4679380360508105}, {"id": 11, "s_m": 1.0992624238582973, "d_m": 0.0, "x_m": -5.631124183181957, "y_m": -20.917529554104053, "d_right": 0.47595756453917837, "d_left": 1.9621945983707068, "psi_rad": 1.9406137904604406, "kappa_radpm": -0.499541248138788, "vx_mps": 3.6904119203445993, "ax_mps2": 5.1440284154979485}, {"id": 12, "s_m": 1.1991953714817787, "d_m": 0.0, "x_m": -5.665105933557465, "y_m": -20.82328505848646, "d_right": 0.5094725657107546, "d_left": 1.9414374779292958, "psi_rad": 1.8941434602023928, "kappa_radpm": -0.4371440018944459, "vx_mps": 3.827173367677616, "ax_mps2": 5.540416057899204}, {"id": 13, "s_m": 1.2991283191052603, "d_m": 0.0, "x_m": -5.6948616589532906, "y_m": -20.727834827883484, "d_right": 0.5389412870174456, "d_left": 1.9116958124891645, "psi_rad": 1.8525190871432344, "kappa_radpm": -0.396102933757232, "vx_mps": 3.969205991343042, "ax_mps2": 5.698653588654752}, {"id": 14, "s_m": 1.3990612667287419, "d_m": 0.0, "x_m": -5.72084376424202, "y_m": -20.631153803277577, "d_right": 0.5647530345076351, "d_left": 1.8857310724450156, "psi_rad": 1.814795415887241, "kappa_radpm": -0.35726863540523296, "vx_mps": 4.1101779405412975, "ax_mps2": 5.899152216185495}, {"id": 15, "s_m": 1.4989942143522235, "d_m": 0.0, "x_m": -5.743322709238483, "y_m": -20.533736304976408, "d_right": 0.5871215781708683, "d_left": 1.8632699829299018, "psi_rad": 1.7809877460971137, "kappa_radpm": -0.3193246269021897, "vx_mps": 4.251188309378723, "ax_mps2": 6.159107437019691}, {"id": 16, "s_m": 1.598927161975705, "d_m": 0.0, "x_m": -5.762710662466064, "y_m": -20.435457805819006, "d_right": 0.6064446813349146, "d_left": 1.8438961886240688, "psi_rad": 1.7506269976061601, "kappa_radpm": -0.29081861850760976, "vx_mps": 4.393585957235899, "ax_mps2": 6.311529942551504}, {"id": 17, "s_m": 1.6988601095991867, "d_m": 0.0, "x_m": -5.779169130156308, "y_m": -20.3370153925285, "d_right": 0.6228524108846476, "d_left": 1.8274520556367004, "psi_rad": 1.722615238311995, "kappa_radpm": -0.27059810310647386, "vx_mps": 4.534871238080147, "ax_mps2": 6.355633472351219}, {"id": 18, "s_m": 1.7987930572226682, "d_m": 0.0, "x_m": -5.793020473250537, "y_m": -20.237622815425908, "d_right": 0.6366834021905006, "d_left": 1.814293808934769, "psi_rad": 1.6959547360223786, "kappa_radpm": -0.266678967177223, "vx_mps": 4.672829070250655, "ax_mps2": 6.0925646002439375}, {"id": 19, "s_m": 1.8987260048461498, "d_m": 0.0, "x_m": -5.804099140649284, "y_m": -20.138951494792785, "d_right": 0.6477271082281858, "d_left": 1.8049557818633468, "psi_rad": 1.669139877281583, "kappa_radpm": -0.2738501450478385, "vx_mps": 4.801356828851332, "ax_mps2": 5.597805952449782}, {"id": 20, "s_m": 1.9986589524696314, "d_m": 0.0, "x_m": -5.812610610757781, "y_m": -20.03835730488077, "d_right": 0.6562501326485173, "d_left": 1.803798547004556, "psi_rad": 1.641172485637815, "kappa_radpm": -0.28056044644086925, "vx_mps": 4.91648633640555, "ax_mps2": 5.12489408336937}, {"id": 21, "s_m": 2.098591900093113, "d_m": 0.0, "x_m": -5.818177061002935, "y_m": -19.939599873058917, "d_right": 0.6617875307291792, "d_left": 1.810908999674363, "psi_rad": 1.6128014610401757, "kappa_radpm": -0.29357490399957864, "vx_mps": 5.019574627404293, "ax_mps2": 4.505644693343593}, {"id": 22, "s_m": 2.1985248477165946, "d_m": 0.0, "x_m": -5.820908657509481, "y_m": -19.838927330962637, "d_right": 0.6387705505012813, "d_left": 1.8265371183192, "psi_rad": 1.5829852378114346, "kappa_radpm": -0.2970679055043397, "vx_mps": 5.108488440858098, "ax_mps2": 4.146636307735619}, {"id": 23, "s_m": 2.298457795340076, "d_m": 0.0, "x_m": -5.820679095725393, "y_m": -19.739291088353657, "d_right": 0.6202259115794, "d_left": 1.8358613843553633, "psi_rad": 1.5549594107433446, "kappa_radpm": -0.24039766393634923, "vx_mps": 5.18897150968185, "ax_mps2": 5.423101456594244}, {"id": 24, "s_m": 2.3983907429635574, "d_m": 0.0, "x_m": -5.8181288633643895, "y_m": -19.640227698117865, "d_right": 0.6150554426965911, "d_left": 1.8384111468718158, "psi_rad": 1.5373041177338416, "kappa_radpm": -0.11697248734076238, "vx_mps": 5.292383050755799, "ax_mps2": 6.261770538360712}, {"id": 25, "s_m": 2.498323690587039, "d_m": 0.0, "x_m": -5.8142585292170965, "y_m": -19.54015242743574, "d_right": 0.6086849182797135, "d_left": 1.8422815139883884, "psi_rad": 1.527707951416301, "kappa_radpm": -0.07331835514394734, "vx_mps": 5.409328306768575, "ax_mps2": 6.19640222643429}, {"id": 26, "s_m": 2.5982566382105206, "d_m": 0.0, "x_m": -5.809676938543857, "y_m": -19.440505670854805, "d_right": 0.6040909787809484, "d_left": 1.8468630259865444, "psi_rad": 1.522795352805393, "kappa_radpm": -0.024935861302598665, "vx_mps": 5.522615522440825, "ax_mps2": 6.132977801060351}, {"id": 27, "s_m": 2.6981895858340024, "d_m": 0.0, "x_m": -5.804850749655335, "y_m": -19.3409097589306, "d_right": 0.5992499913722069, "d_left": 1.8516891930538426, "psi_rad": 1.5227268799907452, "kappa_radpm": 0.018975750465097002, "vx_mps": 5.632499916328719, "ax_mps2": 6.071363660697138}, {"id": 28, "s_m": 2.7981225334574837, "d_m": 0.0, "x_m": -5.800184721228428, "y_m": -19.241078583562036, "d_right": 0.5945821013191906, "d_left": 1.856355231916227, "psi_rad": 1.525863024220894, "kappa_radpm": 0.04341850654264739, "vx_mps": 5.739208468147688, "ax_mps2": 6.011440923285327}, {"id": 29, "s_m": 2.8980554810809656, "d_m": 0.0, "x_m": -5.795952196813857, "y_m": -19.141579335934804, "d_right": 0.5903284659837639, "d_left": 1.8632350598400809, "psi_rad": 1.5308928395135304, "kappa_radpm": 0.05577456880165911, "vx_mps": 5.842944109155486, "ax_mps2": 5.953103245957673}, {"id": 30, "s_m": 2.997988428704447, "d_m": 0.0, "x_m": -5.792260564968699, "y_m": -19.041798537311486, "d_right": 0.586630620446803, "d_left": 1.8748776048074096, "psi_rad": 1.5368269993010375, "kappa_radpm": 0.06080938793104396, "vx_mps": 5.943889145371549, "ax_mps2": 5.896255043512978}, {"id": 31, "s_m": 3.0979213763279287, "d_m": 0.0, "x_m": -5.789156826024902, "y_m": -18.94147948961923, "d_right": 0.5835499348946511, "d_left": 1.8912305153943036, "psi_rad": 1.5428926370157106, "kappa_radpm": 0.05989322602088444, "vx_mps": 6.042208078620089, "ax_mps2": 5.840810019948708}, {"id": 32, "s_m": 3.19785432395141, "d_m": 0.0, "x_m": -5.786673971633434, "y_m": -18.842234414813838, "d_right": 0.581028964836559, "d_left": 1.91188573347461, "psi_rad": 1.5485861668191152, "kappa_radpm": 0.054648826180973616, "vx_mps": 6.138049950020474, "ax_mps2": 5.786689948307512}, {"id": 33, "s_m": 3.2977872715748915, "d_m": 0.0, "x_m": -5.784717478017387, "y_m": -18.742271718276584, "d_right": 0.5790736835734176, "d_left": 1.9219211485401717, "psi_rad": 1.5537670120898768, "kappa_radpm": 0.04859201147188552, "vx_mps": 6.2315503011675535, "ax_mps2": 5.733823649347221}, {"id": 34, "s_m": 3.3977202191983733, "d_m": 0.0, "x_m": -5.78324276141049, "y_m": -18.641990649968214, "d_right": 0.5776172605937222, "d_left": 1.923399004957141, "psi_rad": 1.5583069787971444, "kappa_radpm": 0.04206323055379233, "vx_mps": 6.322832826577532, "ax_mps2": 5.682146130799393}, {"id": 35, "s_m": 3.4976531668218547, "d_m": 0.0, "x_m": -5.782199848402324, "y_m": -18.54267844220935, "d_right": 0.5765379171265781, "d_left": 1.9244352495258599, "psi_rad": 1.5621849678084403, "kappa_radpm": 0.036117531977899985, "vx_mps": 6.412010774804009, "ax_mps2": 5.631597857379554}, {"id": 36, "s_m": 3.5975861144453365, "d_m": 0.0, "x_m": -5.78150734575665, "y_m": -18.44214607964949, "d_right": 0.5758763863332366, "d_left": 1.9251334306493437, "psi_rad": 1.5655437789150932, "kappa_radpm": 0.031072812971027666, "vx_mps": 6.499188143425204, "ax_mps2": 5.58212412805283}, {"id": 37, "s_m": 3.697519062068818, "d_m": 0.0, "x_m": -5.781133716545556, "y_m": -18.342714664867035, "d_right": 0.5754719355948531, "d_left": 1.92550164347764, "psi_rad": 1.5684855499530745, "kappa_radpm": 0.028172090686910664, "vx_mps": 6.584460703798885, "ax_mps2": 5.533674541891556}, {"id": 38, "s_m": 3.7974520096922997, "d_m": 0.0, "x_m": -5.781039895605246, "y_m": -18.242670212342365, "d_right": 0.5753809775013798, "d_left": 1.9291869401297728, "psi_rad": 1.5712263321164202, "kappa_radpm": 0.02805476781154726, "vx_mps": 6.6679168843194345, "ax_mps2": 5.486202537584261}, {"id": 39, "s_m": 3.897384957315781, "d_m": 0.0, "x_m": -5.781227908165155, "y_m": -18.142713282982168, "d_right": 0.5755665845182576, "d_left": 1.9354244718673768, "psi_rad": 1.5741738764944189, "kappa_radpm": 0.030798501744902926, "vx_mps": 6.7496385353493284, "ax_mps2": 5.4396649945448745}, {"id": 40, "s_m": 3.997317904939263, "d_m": 0.0, "x_m": -5.781720966318272, "y_m": -18.042821129195445, "d_right": 0.5760532105541242, "d_left": 1.9437788658114896, "psi_rad": 1.5772761312899022, "kappa_radpm": 0.030226375340265305, "vx_mps": 6.829701594641666, "ax_mps2": 5.394021885836089}, {"id": 41, "s_m": 4.097250852562744, "d_m": 0.0, "x_m": -5.782519715618433, "y_m": -17.94253598772884, "d_right": 0.5768667487640691, "d_left": 1.9569656909300166, "psi_rad": 1.5802189431674403, "kappa_radpm": 0.028618765160569777, "vx_mps": 6.9081766686329935, "ax_mps2": 5.34923597490457}, {"id": 42, "s_m": 4.197183800186226, "d_m": 0.0, "x_m": -5.7835986476705274, "y_m": -17.842441886512724, "d_right": 0.5472294243025602, "d_left": 1.973353292929691, "psi_rad": 1.5827836449504893, "kappa_radpm": 0.02066609041589929, "vx_mps": 6.985129542253087, "ax_mps2": 5.305272549551158}, {"id": 43, "s_m": 4.297116747809707, "d_m": 0.0, "x_m": -5.784884993596092, "y_m": -17.74235079518163, "d_right": 0.5304415074019017, "d_left": 1.9720697760489436, "psi_rad": 1.5843432769864154, "kappa_radpm": 0.0105951363011196, "vx_mps": 7.060621627711118, "ax_mps2": 5.262099187690866}, {"id": 44, "s_m": 4.397049695433189, "d_m": 0.0, "x_m": -5.786282393414023, "y_m": -17.642346054272274, "d_right": 0.5318325581293015, "d_left": 1.9706734645501902, "psi_rad": 1.5851429767849432, "kappa_radpm": 0.006773248269037189, "vx_mps": 7.134710360955667, "ax_mps2": 5.219685550378407}, {"id": 45, "s_m": 4.49698264305667, "d_m": 0.0, "x_m": -5.787746043881858, "y_m": -17.54245003464452, "d_right": 0.5332992460792882, "d_left": 1.9692086843589423, "psi_rad": 1.5857165767923942, "kappa_radpm": 0.0047029556744743834, "vx_mps": 7.207449553077854, "ax_mps2": 5.178003198314514}, {"id": 46, "s_m": 4.596915590680152, "d_m": 0.0, "x_m": -5.789256410926409, "y_m": -17.44256869657455, "d_right": 0.5348137680041722, "d_left": 1.9676968972484303, "psi_rad": 1.586082409971378, "kappa_radpm": 0.0026250419044991737, "vx_mps": 7.278889702762704, "ax_mps2": 5.137025428654913}, {"id": 47, "s_m": 4.696848538303634, "d_m": 0.0, "x_m": -5.790794096323355, "y_m": -17.342615591628807, "d_right": 0.5363491603058932, "d_left": 1.9661592693171948, "psi_rad": 1.5862415689299525, "kappa_radpm": 0.0005611268404180768, "vx_mps": 7.349078274939617, "ax_mps2": 5.096727129441182}, {"id": 48, "s_m": 4.796781485927115, "d_m": 0.0, "x_m": -5.792338998645807, "y_m": -17.242714658665985, "d_right": 0.5378963579764989, "d_left": 1.9691995058321563, "psi_rad": 1.5862768697547034, "kappa_radpm": 0.00036638754003499104, "vx_mps": 7.418059949996677, "ax_mps2": 5.057084649379629}, {"id": 49, "s_m": 4.8967144335505965, "d_m": 0.0, "x_m": -5.793888250496231, "y_m": -17.14276952614759, "d_right": 0.5394439975651342, "d_left": 1.9772911865925824, "psi_rad": 1.5863162742329604, "kappa_radpm": 0.0004219742048189898, "vx_mps": 7.485876847272645, "ax_mps2": 5.018075681034354}, {"id": 50, "s_m": 4.996647381174078, "d_m": 0.0, "x_m": -5.795440783090984, "y_m": -17.04287814953036, "d_right": 0.5409996468812719, "d_left": 1.9903636874129897, "psi_rad": 1.5863580159201727, "kappa_radpm": 0.00040919207359980036, "vx_mps": 7.552568725999095, "ax_mps2": 4.979679155782766}, {"id": 51, "s_m": 5.09658032879756, "d_m": 0.0, "x_m": -5.7969983647823575, "y_m": -16.94292495498668, "d_right": 0.5425548951633039, "d_left": 2.0083353265559545, "psi_rad": 1.58639804480707, "kappa_radpm": 0.0003916769516731909, "vx_mps": 7.618173166412848, "ax_mps2": 4.941875149115453}, {"id": 52, "s_m": 5.196513276421041, "d_m": 0.0, "x_m": -5.798558858874219, "y_m": -16.843037265056694, "d_right": 0.5441188066253843, "d_left": 2.0083634743324623, "psi_rad": 1.586436984497911, "kappa_radpm": 0.0003881123532169801, "vx_mps": 7.68272573337936, "ax_mps2": 4.904644795062157}, {"id": 53, "s_m": 5.296446224044523, "d_m": 0.0, "x_m": -5.800124243956099, "y_m": -16.743084706834637, "d_right": 0.5456819058162637, "d_left": 2.006798651356066, "psi_rad": 1.5864756139791636, "kappa_radpm": 0.00038461052765763543, "vx_mps": 7.746260124548032, "ax_mps2": 4.867970208688962}, {"id": 54, "s_m": 5.396379171668005, "d_m": 0.0, "x_m": -5.801692443387452, "y_m": -16.643197220468988, "d_right": 0.5472535176337413, "d_left": 2.0052322892063663, "psi_rad": 1.5865136478832593, "kappa_radpm": 0.00037683344452639576, "vx_mps": 7.80880830479005, "ax_mps2": 4.831834415756373}, {"id": 55, "s_m": 5.4963121192914866, "d_m": 0.0, "x_m": -5.80326539738545, "y_m": -16.54324669109331, "d_right": 0.5488243556055223, "d_left": 2.003659941933279, "psi_rad": 1.5865509290166186, "kappa_radpm": 0.00036906568129913843, "vx_mps": 7.870400628439971, "ax_mps2": 4.796221288744283}, {"id": 56, "s_m": 5.5962450669149675, "d_m": 0.0, "x_m": -5.8048410810940005, "y_m": -16.443356863301194, "d_right": 0.5504032253493398, "d_left": 2.0020860593944327, "psi_rad": 1.5865874104024265, "kappa_radpm": 0.0003612792415150038, "vx_mps": 7.931065950666764, "ax_mps2": 4.761115488552636}, {"id": 57, "s_m": 5.696178014538449, "d_m": 0.0, "x_m": -5.806421294376552, "y_m": -16.343408697959244, "d_right": 0.5491676490694885, "d_left": 2.001035713993744, "psi_rad": 1.5866231351854396, "kappa_radpm": 0.00035344506864576813, "vx_mps": 7.990831729133048, "ax_mps2": 4.726502411273901}, {"id": 58, "s_m": 5.796110962161931, "d_m": 0.0, "x_m": -5.8080041516692384, "y_m": -16.243516480921137, "d_right": 0.5174173056635504, "d_left": 2.0049675824393636, "psi_rad": 1.5866580322203965, "kappa_radpm": 0.0003451654329084108, "vx_mps": 8.049724116958025, "ax_mps2": 4.692368139508367}, {"id": 59, "s_m": 5.896043909785412, "d_m": 0.0, "x_m": -5.809591306432255, "y_m": -16.143570673627703, "d_right": 0.5038050405687371, "d_left": 2.013856685604989, "psi_rad": 1.5866921213428795, "kappa_radpm": 0.00033688919436915916, "vx_mps": 8.107768047876482, "ax_mps2": 4.658699397755348}, {"id": 60, "s_m": 5.995976857408894, "d_m": 0.0, "x_m": -5.811181012213857, "y_m": -16.043676051649385, "d_right": 0.5053978704774682, "d_left": 2.027628859692542, "psi_rad": 1.5867253618992279, "kappa_radpm": 0.00032854401010781135, "vx_mps": 8.16498731437996, "ax_mps2": 4.625483511472745}, {"id": 61, "s_m": 6.095909805032376, "d_m": 0.0, "x_m": -5.812774777401543, "y_m": -15.943732590372209, "d_right": 0.5069920834501458, "d_left": 2.043852265295229, "psi_rad": 1.586757786036605, "kappa_radpm": 0.0003202411224638683, "vx_mps": 8.221404639534308, "ax_mps2": 4.5927083694386965}, {"id": 62, "s_m": 6.1958427526558575, "d_m": 0.0, "x_m": -5.814370999096603, "y_m": -15.843835620667106, "d_right": 0.5085912906245772, "d_left": 2.0422567512317924, "psi_rad": 1.5867893713165813, "kappa_radpm": 0.0003120406619795452, "vx_mps": 8.277041743088066, "ax_mps2": 4.560362389101291}, {"id": 63, "s_m": 6.295775700279338, "d_m": 0.0, "x_m": -5.815971044675902, "y_m": -15.743894428267815, "d_right": 0.510191900182788, "d_left": 2.0406570054820183, "psi_rad": 1.5868201530576167, "kappa_radpm": 0.0003039308044071457, "vx_mps": 8.331919402416867, "ax_mps2": 4.528434484623902}, {"id": 64, "s_m": 6.39570864790282, "d_m": 0.0, "x_m": -5.817573453328716, "y_m": -15.643995220428605, "d_right": 0.5117971623786741, "d_left": 2.039055288923534, "psi_rad": 1.5868501264139667, "kappa_radpm": 0.0002960694418861698, "vx_mps": 8.386057508788454, "ax_mps2": 4.4969140373792715}, {"id": 65, "s_m": 6.495641595526302, "d_m": 0.0, "x_m": -5.81917945861308, "y_m": -15.544056177634769, "d_right": 0.5134038416477766, "d_left": 2.037449606203645, "psi_rad": 1.586879328868967, "kappa_radpm": 0.00028834796641828524, "vx_mps": 8.439475119380154, "ax_mps2": 4.465790868665061}, {"id": 66, "s_m": 6.595574543149783, "d_m": 0.0, "x_m": -5.820787737048802, "y_m": -15.444154884588825, "d_right": 0.5150148507371026, "d_left": 2.035842005507321, "psi_rad": 1.5869077707515924, "kappa_radpm": 0.0002809833155434597, "vx_mps": 8.492190505434278, "ax_mps2": 4.435055214439049}, {"id": 67, "s_m": 6.695507490773265, "d_m": 0.0, "x_m": -5.822399398027815, "y_m": -15.344217835977146, "d_right": 0.5166272875289663, "d_left": 2.0357453062886535, "psi_rad": 1.5869354904142974, "kappa_radpm": 0.0002738051138663895, "vx_mps": 8.54422119689628, "ax_mps2": 4.404697701893604}, {"id": 68, "s_m": 6.795440438396747, "d_m": 0.0, "x_m": -5.8240132476685185, "y_m": -15.244314644083007, "d_right": 0.5182437557563015, "d_left": 2.040545054576561, "psi_rad": 1.5869625107936545, "kappa_radpm": 0.0002670606531834245, "vx_mps": 8.595584023844621, "ax_mps2": 4.374709327710039}, {"id": 69, "s_m": 6.895373386020228, "d_m": 0.0, "x_m": -5.825630282790653, "y_m": -15.14437940680897, "d_right": 0.5198616588275793, "d_left": 2.05020995008186, "psi_rad": 1.5869888702529098, "kappa_radpm": 0.0002605468640516751, "vx_mps": 8.646295154989847, "ax_mps2": 4.345081437846264}, {"id": 70, "s_m": 6.995306333643709, "d_m": 0.0, "x_m": -5.827249429011003, "y_m": -15.044474528622384, "d_right": 0.521483323756015, "d_left": 2.064665884866836, "psi_rad": 1.5870146025000593, "kappa_radpm": 0.0002545250946607088, "vx_mps": 8.696370133492307, "ax_mps2": 4.315805708727672}, {"id": 71, "s_m": 7.095239281267191, "d_m": 0.0, "x_m": -5.828871583813518, "y_m": -14.944540896471787, "d_right": 0.523106427658681, "d_left": 2.077668814764387, "psi_rad": 1.5870397454765082, "kappa_radpm": 0.0002487672040704522, "vx_mps": 8.745823910323361, "ax_mps2": 4.286874129724529}, {"id": 72, "s_m": 7.195172228890673, "d_m": 0.0, "x_m": -5.830495780277489, "y_m": -14.844634560188359, "d_right": 0.5247330559194233, "d_left": 2.076044580010195, "psi_rad": 1.5870643403380438, "kappa_radpm": 0.00024353027504624776, "vx_mps": 8.794670875372896, "ax_mps2": 4.258278986808474}, {"id": 73, "s_m": 7.295105176514154, "d_m": 0.0, "x_m": -5.832122830602762, "y_m": -14.74470231933517, "d_right": 0.49975313669892485, "d_left": 2.0744175088714814, "psi_rad": 1.5870884242396308, "kappa_radpm": 0.00023860273115310624, "vx_mps": 8.842924886486488, "ax_mps2": 4.230012847294979}, {"id": 74, "s_m": 7.395038124137636, "d_m": 0.0, "x_m": -5.833751862119511, "y_m": -14.644794774352563, "d_right": 0.4886995858843325, "d_left": 2.072788442366479, "psi_rad": 1.5871120479042675, "kappa_radpm": 0.00023424839454683381, "vx_mps": 8.890599296598223, "ax_mps2": 4.20206854558092}, {"id": 75, "s_m": 7.4949710717611175, "d_m": 0.0, "x_m": -5.835383617716342, "y_m": -14.544863673157492, "d_right": 0.4789114182597733, "d_left": 2.0711566667356274, "psi_rad": 1.58713524777976, "kappa_radpm": 0.00023018583271788458, "vx_mps": 8.9377069791096, "ax_mps2": 4.174439169803335}, {"id": 76, "s_m": 7.594904019384599, "d_m": 0.0, "x_m": -5.837017303881518, "y_m": -14.444955146724535, "d_right": 0.4805463353314725, "d_left": 2.0695229486629168, "psi_rad": 1.5871580708507063, "kappa_radpm": 0.0002266354345819849, "vx_mps": 8.98426035165117, "ax_mps2": 4.147118049343632}, {"id": 77, "s_m": 7.69483696700808, "d_m": 0.0, "x_m": -5.8386536071679656, "y_m": -14.345025022526151, "d_right": 0.4821835084155839, "d_left": 2.070354257061472, "psi_rad": 1.5871805525471807, "kappa_radpm": 0.0002235205005922765, "vx_mps": 9.03027139835111, "ax_mps2": 4.120098743115803}, {"id": 78, "s_m": 7.794769914631562, "d_m": 0.0, "x_m": -5.8402918002409745, "y_m": -14.245115844746138, "d_right": 0.4838229323716698, "d_left": 2.075998422387375, "psi_rad": 1.5872027683505308, "kappa_radpm": 0.00022114131003771905, "vx_mps": 9.07575169072385, "ax_mps2": 4.093375028576784}, {"id": 79, "s_m": 7.894702862255044, "d_m": 0.0, "x_m": -5.841932537860975, "y_m": -14.145186203141142, "d_right": 0.4854645547710011, "d_left": 2.0864187049483163, "psi_rad": 1.5872247538657043, "kappa_radpm": 0.00021890409910368434, "vx_mps": 9.12071240728184, "ax_mps2": 4.06694089140698}, {"id": 80, "s_m": 7.994635809878526, "d_m": 0.0, "x_m": -5.843575136509908, "y_m": -14.045276375690063, "d_right": 0.4871083837773791, "d_left": 2.1015399742474417, "psi_rad": 1.5872465274403966, "kappa_radpm": 0.0002169043757127014, "vx_mps": 9.165164351964586, "ax_mps2": 4.040790515810271}, {"id": 81, "s_m": 8.094568757502007, "d_m": 0.0, "x_m": -5.845220209673968, "y_m": -13.945347831526535, "d_right": 0.48875436739277306, "d_left": 2.1114303885338543, "psi_rad": 1.5872681189811757, "kappa_radpm": 0.0002156028889417691, "vx_mps": 9.209117971471008, "ax_mps2": 4.014918275389666}, {"id": 82, "s_m": 8.194501705125488, "d_m": 0.0, "x_m": -5.846867121294373, "y_m": -13.84543844951701, "d_right": 0.49040252758878533, "d_left": 2.1097829832873294, "psi_rad": 1.5872896532748422, "kappa_radpm": 0.00021541137721050623, "vx_mps": 9.252583371573824, "ax_mps2": 3.9893187245571973}, {"id": 83, "s_m": 8.29443465274897, "d_m": 0.0, "x_m": -5.848516552809805, "y_m": -13.745507909615089, "d_right": 0.4920528411259561, "d_left": 2.108133274944596, "psi_rad": 1.5873127036385595, "kappa_radpm": 0.0002959364830933725, "vx_mps": 9.295570332488133, "ax_mps2": 3.963986590438604}, {"id": 84, "s_m": 8.394367600372451, "d_m": 0.0, "x_m": -5.850168708672202, "y_m": -13.64559646012213, "d_right": 0.49370621886474964, "d_left": 2.106480647905559, "psi_rad": 1.5873528674620547, "kappa_radpm": 0.0005078079952500049, "vx_mps": 9.338088323360328, "ax_mps2": 3.9389167652412893}, {"id": 85, "s_m": 8.494300547995934, "d_m": 0.0, "x_m": -5.851826167505666, "y_m": -13.545672904965441, "d_right": 0.495364689200026, "d_left": 2.1048228420465827, "psi_rad": 1.5874166536086278, "kappa_radpm": 0.0008503457269280849, "vx_mps": 9.380146515938156, "ax_mps2": 3.9141042990506913}, {"id": 86, "s_m": 8.594233495619415, "d_m": 0.0, "x_m": -5.853491932317311, "y_m": -13.445768776116132, "d_right": 0.4970318154724698, "d_left": 2.103156533519453, "psi_rad": 1.58752943890788, "kappa_radpm": 0.001406499485180904, "vx_mps": 9.421753797477754, "ax_mps2": 3.8895443930283946}, {"id": 87, "s_m": 8.694166443242896, "d_m": 0.0, "x_m": -5.855172432437322, "y_m": -13.345823346053852, "d_right": 0.48652199704424687, "d_left": 2.104866175726355, "psi_rad": 1.5876974327140574, "kappa_radpm": 0.00194713215928636, "vx_mps": 9.462918782939115, "ax_mps2": 3.865232392982019}, {"id": 88, "s_m": 8.794099390866378, "d_m": 0.0, "x_m": -5.85687203418519, "y_m": -13.245898200341822, "d_right": 0.4589092499071381, "d_left": 2.111291184779737, "psi_rad": 1.5879181709325614, "kappa_radpm": 0.002471409367868062, "vx_mps": 9.503649826517327, "ax_mps2": 3.841163783286282}, {"id": 89, "s_m": 8.89403233848986, "d_m": 0.0, "x_m": -5.858596968206221, "y_m": -13.145929296887077, "d_right": 0.4522073788766934, "d_left": 2.122389450452918, "psi_rad": 1.5881816075660071, "kappa_radpm": 0.0024430158737546916, "vx_mps": 9.543955032553304, "ax_mps2": 3.8173341811274573}, {"id": 90, "s_m": 8.99396528611334, "d_m": 0.0, "x_m": -5.860345382754357, "y_m": -13.045976951328665, "d_right": 0.4539541146155748, "d_left": 2.1380843338604425, "psi_rad": 1.5883757469179367, "kappa_radpm": 0.001440861236696534, "vx_mps": 9.583842265864323, "ax_mps2": 3.7937393310544603}, {"id": 91, "s_m": 9.093898233736823, "d_m": 0.0, "x_m": -5.862107560387641, "y_m": -12.946062776945293, "d_right": 0.4557136581473332, "d_left": 2.144842689780835, "psi_rad": 1.5884729209300326, "kappa_radpm": 0.0006255389793671052, "vx_mps": 9.62331916153165, "ax_mps2": 3.77037509981371}, {"id": 92, "s_m": 9.193831181360304, "d_m": 0.0, "x_m": -5.863876831175269, "y_m": -12.846113693928304, "d_right": 0.4574812025798117, "d_left": 2.14307342535519, "psi_rad": 1.5885114579810466, "kappa_radpm": 0.00014421000784979897, "vx_mps": 9.662393134179718, "ax_mps2": 3.747237471452871}, {"id": 93, "s_m": 9.293764128983785, "d_m": 0.0, "x_m": -5.8656463118119175, "y_m": -12.746234757633282, "d_right": 0.45924723233552395, "d_left": 2.1413025792516898, "psi_rad": 1.58850290963635, "kappa_radpm": -0.00026827185863335354, "vx_mps": 9.701071386778795, "ax_mps2": 3.724322542673382}, {"id": 94, "s_m": 9.393697076607268, "d_m": 0.0, "x_m": -5.867414422067533, "y_m": -12.646286706411493, "d_right": 0.46101364061025596, "d_left": 2.1395344546768342, "psi_rad": 1.588461895597927, "kappa_radpm": -0.0005529703284147998, "vx_mps": 9.739360919000697, "ax_mps2": 3.701626518418222}, {"id": 95, "s_m": 9.493630024230749, "d_m": 0.0, "x_m": -5.869176004814957, "y_m": -12.54639676401442, "d_right": 0.4627721286434322, "d_left": 2.1377717207723617, "psi_rad": 1.5883942700690485, "kappa_radpm": -0.0007347779133013053, "vx_mps": 9.777268535154983, "ax_mps2": 3.6791457076812053}, {"id": 96, "s_m": 9.59356297185423, "d_m": 0.0, "x_m": -5.8709313193284425, "y_m": -12.446452496554622, "d_right": 0.46452570055340453, "d_left": 2.1360163153760485, "psi_rad": 1.5883205480309717, "kappa_radpm": -0.0007402619249918675, "vx_mps": 9.814800851731093, "ax_mps2": 3.6568765195227386}, {"id": 97, "s_m": 9.693495919477712, "d_m": 0.0, "x_m": -5.872678354829562, "y_m": -12.34655882770649, "d_right": 0.466269810752164, "d_left": 2.1385562631687236, "psi_rad": 1.5882464519800865, "kappa_radpm": -0.0007388281653934877, "vx_mps": 9.8519643045701, "ax_mps2": 3.6348154592798014}, {"id": 98, "s_m": 9.793428867101193, "d_m": 0.0, "x_m": -5.874418799297346, "y_m": -12.246620367526468, "d_right": 0.4680084272254213, "d_left": 2.1457617341960646, "psi_rad": 1.5881732064844585, "kappa_radpm": -0.0007267286221091034, "vx_mps": 9.888765155688038, "ax_mps2": 3.6129591249608506}, {"id": 99, "s_m": 9.893361814724676, "d_m": 0.0, "x_m": -5.876151339117037, "y_m": -12.146719090321255, "d_right": 0.4697382960173743, "d_left": 2.157580516282797, "psi_rad": 1.5881012301011106, "kappa_radpm": -0.0007133519725471177, "vx_mps": 9.92520949977132, "ax_mps2": 3.591304203811647}, {"id": 100, "s_m": 9.993294762348157, "d_m": 0.0, "x_m": -5.8778772586383425, "y_m": -12.046788725551044, "d_right": 0.47146225321167823, "d_left": 2.1739444207229353, "psi_rad": 1.5880306845005614, "kappa_radpm": -0.0006982911809382256, "vx_mps": 9.961303270363263, "ax_mps2": 3.569847469043598}, {"id": 101, "s_m": 10.093227709971638, "d_m": 0.0, "x_m": -5.879595862179224, "y_m": -11.946878230671311, "d_right": 0.4731784669872257, "d_left": 2.177271893312662, "psi_rad": 1.587961748277498, "kappa_radpm": -0.0006796464246328402, "vx_mps": 9.997052245759514, "ax_mps2": 3.54858577671736}, {"id": 102, "s_m": 10.19316065759512, "d_m": 0.0, "x_m": -5.881307843819903, "y_m": -11.846958184587288, "d_right": 0.47488830788924646, "d_left": 2.1755609692835454, "psi_rad": 1.5878949626661505, "kappa_radpm": -0.0006568777056401192, "vx_mps": 10.032462054628944, "ax_mps2": 3.527516062768358}, {"id": 103, "s_m": 10.293093605218601, "d_m": 0.0, "x_m": -5.883013292177745, "y_m": -11.74703659672042, "d_right": 0.45861351392015726, "d_left": 2.1738565533252774, "psi_rad": 1.587830545336855, "kappa_radpm": -0.0006308168759215434, "vx_mps": 10.067538181375467, "ax_mps2": 3.506635340169889}, {"id": 104, "s_m": 10.393026552842082, "d_m": 0.0, "x_m": -5.884712203190758, "y_m": -11.647129015711794, "d_right": 0.4336573057582449, "d_left": 2.172158920783505, "psi_rad": 1.5877689689997698, "kappa_radpm": -0.0006015941615104311, "vx_mps": 10.102285971255245, "ax_mps2": 3.485940696225702}, {"id": 105, "s_m": 10.492959500465565, "d_m": 0.0, "x_m": -5.886405561767984, "y_m": -11.547194668917996, "d_right": 0.4309949876487124, "d_left": 2.1704663751110855, "psi_rad": 1.5877104166368359, "kappa_radpm": -0.0005685519017982471, "vx_mps": 10.136710635262778, "ax_mps2": 3.465429289982593}, {"id": 106, "s_m": 10.592892448089046, "d_m": 0.0, "x_m": -5.88809254578985, "y_m": -11.447301557935214, "d_right": 0.43267022007204253, "d_left": 2.1687809275095917, "psi_rad": 1.587655409636461, "kappa_radpm": -0.0005325151454622399, "vx_mps": 10.170817254798502, "ax_mps2": 3.4450983497599807}, {"id": 107, "s_m": 10.692825395712527, "d_m": 0.0, "x_m": -5.889775148412558, "y_m": -11.347353009758336, "d_right": 0.4343451543629572, "d_left": 2.1676492137062624, "psi_rad": 1.5876041117670052, "kappa_radpm": -0.0004925188360593623, "vx_mps": 10.204610786129745, "ax_mps2": 3.424945170786608}, {"id": 108, "s_m": 10.79275834333601, "d_m": 0.0, "x_m": -5.891451628284474, "y_m": -11.24747613930117, "d_right": 0.43600895764454506, "d_left": 2.171125034729265, "psi_rad": 1.5875570298479755, "kappa_radpm": -0.0004500399664911526, "vx_mps": 10.238096064656093, "ax_mps2": 3.404967112941416}, {"id": 109, "s_m": 10.89269129095949, "d_m": 0.0, "x_m": -5.893125075570969, "y_m": -11.147512229532243, "d_right": 0.43767599733185, "d_left": 2.1791924648285583, "psi_rad": 1.587514307103154, "kappa_radpm": -0.0004035531681424264, "vx_mps": 10.271277808989545, "ax_mps2": 3.385161598592503}, {"id": 110, "s_m": 10.992624238582973, "d_m": 0.0, "x_m": -5.8947927424135, "y_m": -11.047653040155646, "d_right": 0.43932998076428925, "d_left": 2.1917837695219977, "psi_rad": 1.587476416560298, "kappa_radpm": -0.00035510082065547664, "vx_mps": 10.304160624859232, "ax_mps2": 3.3655261105259116}, {"id": 111, "s_m": 11.092557186206454, "d_m": 0.0, "x_m": -5.89645888305176, "y_m": -10.947672967533494, "d_right": 0.44099099394418606, "d_left": 2.208850343618547, "psi_rad": 1.5874434821926882, "kappa_radpm": -0.0003029159842575168, "vx_mps": 10.33674900884977, "ax_mps2": 3.34605818996631}, {"id": 112, "s_m": 11.192490133829935, "d_m": 0.0, "x_m": -5.898119675601758, "y_m": -10.8478324505704, "d_right": 0.4426370491494999, "d_left": 2.208490805986843, "psi_rad": 1.5874159047550842, "kappa_radpm": -0.00024930956626299187, "vx_mps": 10.369047351981894, "ax_mps2": 3.3267554346765413}, {"id": 113, "s_m": 11.292423081453418, "d_m": 0.0, "x_m": -5.899780576399534, "y_m": -10.747835845823731, "d_right": 0.444294090820271, "d_left": 2.2068297142306017, "psi_rad": 1.5873937855640228, "kappa_radpm": -0.0001926648016103428, "vx_mps": 10.401059943143395, "ax_mps2": 3.307615497139474}, {"id": 114, "s_m": 11.392356029076899, "d_m": 0.0, "x_m": -5.901436645745297, "y_m": -10.64801441297364, "d_right": 0.44593436392968805, "d_left": 2.205174858114746, "psi_rad": 1.587377419297789, "kappa_radpm": -0.00013506996753078217, "vx_mps": 10.432790972377937, "ax_mps2": 3.2886360828126238}, {"id": 115, "s_m": 11.49228897670038, "d_m": 0.0, "x_m": -5.903094545289064, "y_m": -10.548001417981709, "d_right": 0.4475896258027103, "d_left": 2.2035166345681287, "psi_rad": 1.5873668700376684, "kappa_radpm": -7.5722480986438e-05, "vx_mps": 10.464244534038919, "ax_mps2": 3.26981494845481}, {"id": 116, "s_m": 11.592221924323862, "d_m": 0.0, "x_m": -5.90474887325248, "y_m": -10.448158303636168, "d_right": 0.4492298660653332, "d_left": 2.20186335290792, "psi_rad": 1.5873622988479026, "kappa_radpm": -1.580600508269771e-05, "vx_mps": 10.495424629815043, "ax_mps2": 3.2511499005215896}, {"id": 117, "s_m": 11.692154871947343, "d_m": 0.0, "x_m": -5.906405446786686, "y_m": -10.348170104285972, "d_right": 0.4508822155339087, "d_left": 2.2002066544319816, "psi_rad": 1.5873637005019152, "kappa_radpm": 4.396115584361267e-05, "vx_mps": 10.526335171633955, "ax_mps2": 3.2326387936225345}, {"id": 118, "s_m": 11.792087819570824, "d_m": 0.0, "x_m": -5.908060448022109, "y_m": -10.24830331505424, "d_right": 0.45002100272006323, "d_left": 2.20001000691996, "psi_rad": 1.5873710944671702, "kappa_radpm": 0.00010362656739838976, "vx_mps": 10.556979984449884, "ax_mps2": 3.2142795290417694}, {"id": 119, "s_m": 11.892020767194307, "d_m": 0.0, "x_m": -5.909718047255643, "y_m": -10.14834211501154, "d_right": 0.4271216220211578, "d_left": 2.2043488634642308, "psi_rad": 1.587384333983483, "kappa_radpm": 0.0001613362636706322, "vx_mps": 10.587362808920897, "ax_mps2": 3.1960700533162103}, {"id": 120, "s_m": 11.991953714817788, "d_m": 0.0, "x_m": -5.911376067277435, "y_m": -10.048452690190596, "d_right": 0.40782586875248267, "d_left": 2.213190333477944, "psi_rad": 1.5874033214848446, "kappa_radpm": 0.00021745222319792117, "vx_mps": 10.61748730398108, "ax_mps2": 3.178008356869755}, {"id": 121, "s_m": 12.091886662441269, "d_m": 0.0, "x_m": -5.913037018646384, "y_m": -9.948517373756927, "d_right": 0.4094819119837695, "d_left": 2.2264888207694735, "psi_rad": 1.587427674897297, "kappa_radpm": 0.0002699458970878119, "vx_mps": 10.647357049312639, "ax_mps2": 3.1600924726986923}, {"id": 122, "s_m": 12.191819610064751, "d_m": 0.0, "x_m": -5.914700248090048, "y_m": -9.848607131943028, "d_right": 0.4111432793494198, "d_left": 2.2418412370986407, "psi_rad": 1.5874571889296918, "kappa_radpm": 0.0003185669418558465, "vx_mps": 10.676975547722616, "ax_mps2": 3.142320475109144}, {"id": 123, "s_m": 12.291752557688232, "d_m": 0.0, "x_m": -5.916366681544895, "y_m": -9.748695410286732, "d_right": 0.41280768256829853, "d_left": 2.2401747417711113, "psi_rad": 1.587491223786784, "kappa_radpm": 0.00036268892841072553, "vx_mps": 10.706346227428721, "ax_mps2": 3.124690478502792}, {"id": 124, "s_m": 12.391685505311715, "d_m": 0.0, "x_m": -5.918037010120469, "y_m": -9.648767061573812, "d_right": 0.41447399651536343, "d_left": 2.2385043713033643, "psi_rad": 1.5875294231533619, "kappa_radpm": 0.00039832468172427835, "vx_mps": 10.735472444258466, "ax_mps2": 3.107200636206313}, {"id": 125, "s_m": 12.491618452935196, "d_m": 0.0, "x_m": -5.919710702153857, "y_m": -9.548875335694833, "d_right": 0.4161480641932146, "d_left": 2.236830597402889, "psi_rad": 1.5875707193065915, "kappa_radpm": 0.0004283928231647435, "vx_mps": 10.764357483765584, "ax_mps2": 3.0898491393467076}, {"id": 126, "s_m": 12.591551400558677, "d_m": 0.0, "x_m": -5.921389523196011, "y_m": -9.44893237751393, "d_right": 0.41782114456833813, "d_left": 2.2351517520792075, "psi_rad": 1.5876146752039129, "kappa_radpm": 0.0004485904364022091, "vx_mps": 10.79300456326753, "ax_mps2": 3.07263421576762}, {"id": 127, "s_m": 12.69148434818216, "d_m": 0.0, "x_m": -5.923071710061072, "y_m": -9.34905561632286, "d_right": 0.41950548214147537, "d_left": 2.233469470624095, "psi_rad": 1.5876603234944389, "kappa_radpm": 0.0004653588359497098, "vx_mps": 10.821416833807604, "ax_mps2": 3.05555412898435}, {"id": 128, "s_m": 12.79141729580564, "d_m": 0.0, "x_m": -5.924759781375169, "y_m": -9.249102950958546, "d_right": 0.42118667863121606, "d_left": 2.234123481477442, "psi_rad": 1.5877062220854397, "kappa_radpm": 0.0004493762739093016, "vx_mps": 10.849597382045086, "ax_mps2": 3.038607177179332}, {"id": 129, "s_m": 12.891350243429121, "d_m": 0.0, "x_m": -5.926451047743052, "y_m": -9.149226721442137, "d_right": 0.4228742610661978, "d_left": 2.239234510136342, "psi_rad": 1.5877501082850185, "kappa_radpm": 0.00043164718026695155, "vx_mps": 10.877549232076607, "ax_mps2": 3.0217916922315156}, {"id": 130, "s_m": 12.991283191052604, "d_m": 0.0, "x_m": -5.9281479657418235, "y_m": -9.049276436329054, "d_right": 0.424554045791296, "d_left": 2.248779769118544, "psi_rad": 1.5877951574826217, "kappa_radpm": 0.0004696545040808709, "vx_mps": 10.905275347191747, "ax_mps2": 3.005106038782581}, {"id": 131, "s_m": 13.091216138676085, "d_m": 0.0, "x_m": -5.92984859443148, "y_m": -8.94938377357728, "d_right": 0.4262309164496218, "d_left": 2.2614133464761506, "psi_rad": 1.58784385691513, "kappa_radpm": 0.0004954576266986306, "vx_mps": 10.932778631565784, "ax_mps2": 2.9885486133343133}, {"id": 132, "s_m": 13.191149086299566, "d_m": 0.0, "x_m": -5.931554725309702, "y_m": -8.849455432158196, "d_right": 0.4279176113933939, "d_left": 2.2750997384513743, "psi_rad": 1.58789215966843, "kappa_radpm": 0.00047105803924492085, "vx_mps": 10.96006193189229, "ax_mps2": 2.972117843380222}, {"id": 133, "s_m": 13.291082033923049, "d_m": 0.0, "x_m": -5.933265238247574, "y_m": -8.749547249462962, "d_right": 0.42960649167710235, "d_left": 2.2733887312221146, "psi_rad": 1.587939883038951, "kappa_radpm": 0.0005540306470630893, "vx_mps": 10.987128038958188, "ax_mps2": 2.9558121865655376}, {"id": 134, "s_m": 13.39101498154653, "d_m": 0.0, "x_m": -5.934981651383355, "y_m": -8.649625825010471, "d_right": 0.43130294364563576, "d_left": 2.2716719572416446, "psi_rad": 1.5880093523000212, "kappa_radpm": 0.0008363751604735475, "vx_mps": 11.013979689163722, "ax_mps2": 2.9396301298771896}, {"id": 135, "s_m": 13.490947929170012, "d_m": 0.0, "x_m": -5.936706533366504, "y_m": -8.549696627305261, "d_right": 0.4330088679118196, "d_left": 2.2699467928456603, "psi_rad": 1.5881058625619275, "kappa_radpm": 0.0010713666339941153, "vx_mps": 11.040619565989667, "ax_mps2": 2.9235701888621906}, {"id": 136, "s_m": 13.590880876793493, "d_m": 0.0, "x_m": -5.938441848235708, "y_m": -8.44978196759973, "d_right": 0.43472366298756127, "d_left": 2.2682110511242097, "psi_rad": 1.5882224082420855, "kappa_radpm": 0.001261597399674157, "vx_mps": 11.06705030141402, "ax_mps2": 2.907630906872171}, {"id": 137, "s_m": 13.690813824416974, "d_m": 0.0, "x_m": -5.940190068863036, "y_m": -8.349843282006955, "d_right": 0.43645417647270524, "d_left": 2.266462644332566, "psi_rad": 1.5883527869610834, "kappa_radpm": 0.0012940452039694017, "vx_mps": 11.093274477280271, "ax_mps2": 2.8918108543331207}, {"id": 138, "s_m": 13.790746772040457, "d_m": 0.0, "x_m": -5.941950365983556, "y_m": -8.249952043078562, "d_right": 0.4067413470973242, "d_left": 2.2647016891058107, "psi_rad": 1.5884797036036469, "kappa_radpm": 0.0012466059297140434, "vx_mps": 11.119294626619265, "ax_mps2": 2.8761086280414023}, {"id": 139, "s_m": 13.890679719663938, "d_m": 0.0, "x_m": -5.943724201913194, "y_m": -8.150004387203005, "d_right": 0.3883480348767042, "d_left": 2.2629277578069367, "psi_rad": 1.5886051803078298, "kappa_radpm": 0.0012773078007432906, "vx_mps": 11.145113234926555, "ax_mps2": -11.908853870097005}, {"id": 140, "s_m": 13.990612667287419, "d_m": 0.0, "x_m": -5.9455094482771145, "y_m": -8.050132343454921, "d_right": 0.39013746276104205, "d_left": 2.261141665617904, "psi_rad": 1.5887351261329496, "kappa_radpm": 0.0013246050143685497, "vx_mps": 11.03781569329833, "ax_mps2": -12.292374839149549}, {"id": 141, "s_m": 14.090545614910901, "d_m": 0.0, "x_m": -5.9473096394516745, "y_m": -7.9501688424324914, "d_right": 0.3919347343488895, "d_left": 2.2625427247252974, "psi_rad": 1.5888721422145102, "kappa_radpm": 0.0014166513231349425, "vx_mps": 10.925957567979339, "ax_mps2": -12.275954160524723}, {"id": 142, "s_m": 14.190478562534382, "d_m": 0.0, "x_m": -5.949122556363383, "y_m": -7.850284235541923, "d_right": 0.3937507880890815, "d_left": 2.2683335033485474, "psi_rad": 1.5890182712309207, "kappa_radpm": 0.0015056971241720963, "vx_mps": 10.813094108948698, "ax_mps2": -12.262185101433138}, {"id": 143, "s_m": 14.290411510157863, "d_m": 0.0, "x_m": -5.950951582743069, "y_m": -7.750339641277142, "d_right": 0.39557829758141105, "d_left": 2.278486472934603, "psi_rad": 1.5891722659048155, "kappa_radpm": 0.0015754507855847684, "vx_mps": 10.699168734345633, "ax_mps2": -12.250113466295307}, {"id": 144, "s_m": 14.390344457781346, "d_m": 0.0, "x_m": -5.952795516927415, "y_m": -7.650440098225082, "d_right": 0.39742414124514747, "d_left": 2.292933412541295, "psi_rad": 1.5893329701560077, "kappa_radpm": 0.001633151987348763, "vx_mps": 10.584131126889025, "ax_mps2": -12.240996663842363}, {"id": 145, "s_m": 14.490277405404827, "d_m": 0.0, "x_m": -5.954656188581986, "y_m": -7.550516590342859, "d_right": 0.3992848457637183, "d_left": 2.3022838089309543, "psi_rad": 1.5894978556418347, "kappa_radpm": 0.001666502148513835, "vx_mps": 10.467916409402934, "ax_mps2": -12.234911603097643}, {"id": 146, "s_m": 14.590210353028308, "d_m": 0.0, "x_m": -5.956533311932028, "y_m": -7.450602877124848, "d_right": 0.4011627137554994, "d_left": 2.3004060359057203, "psi_rad": 1.5896653716529958, "kappa_radpm": 0.0016731009835706581, "vx_mps": 10.350455661149738, "ax_mps2": -12.231558754555879}, {"id": 147, "s_m": 14.69014330065179, "d_m": 0.0, "x_m": -5.958426953273324, "y_m": -7.35069875775642, "d_right": 0.4030577919332677, "d_left": 2.2985115692091598, "psi_rad": 1.589831597958416, "kappa_radpm": 0.001653923287691132, "vx_mps": 10.231679283122663, "ax_mps2": -12.231559419442297}, {"id": 148, "s_m": 14.790076248275271, "d_m": 0.0, "x_m": -5.960337477939422, "y_m": -7.25077351940775, "d_right": 0.40496810652267956, "d_left": 2.296600615553804, "psi_rad": 1.5899942584912021, "kappa_radpm": 0.0015863190309498517, "vx_mps": 10.111507769815946, "ax_mps2": -12.233064937437414}, {"id": 149, "s_m": 14.890009195898754, "d_m": 0.0, "x_m": -5.962263157201623, "y_m": -7.150883902215193, "d_right": 0.4068962474074006, "d_left": 2.294673847038339, "psi_rad": 1.5901482697940883, "kappa_radpm": 0.0014965631283845743, "vx_mps": 9.989875720133512, "ax_mps2": -12.236452527704559}, {"id": 150, "s_m": 14.989942143522235, "d_m": 0.0, "x_m": -5.964204504413986, "y_m": -7.050951825493434, "d_right": 0.40883680012963597, "d_left": 2.2927322034777986, "psi_rad": 1.5902898916860202, "kappa_radpm": 0.0013273432471743226, "vx_mps": 9.866710057796187, "ax_mps2": -12.247132881083209}, {"id": 151, "s_m": 15.089875091145716, "d_m": 0.0, "x_m": -5.966158278034218, "y_m": -6.9510623112511, "d_right": 0.41079297522506897, "d_left": 2.2907773442248365, "psi_rad": 1.590413423227966, "kappa_radpm": 0.001138793411809522, "vx_mps": 9.741877806004869, "ax_mps2": -12.258818698262303}, {"id": 152, "s_m": 15.189808038769199, "d_m": 0.0, "x_m": -5.968123987001734, "y_m": -6.851136197225912, "d_right": 0.4127582956161558, "d_left": 2.2888112322641665, "psi_rad": 1.5905124812831615, "kappa_radpm": 0.0008432105793049782, "vx_mps": 9.6153036048443, "ax_mps2": -12.279467242701843}, {"id": 153, "s_m": 15.28974098639268, "d_m": 0.0, "x_m": -5.970097607730947, "y_m": -6.751235765648291, "d_right": 0.41473345228274855, "d_left": 2.290874608676879, "psi_rad": 1.5905814868987749, "kappa_radpm": 0.0005117739015369749, "vx_mps": 9.486823319726865, "ax_mps2": -12.301884782035206}, {"id": 154, "s_m": 15.38967393401616, "d_m": 0.0, "x_m": -5.972076477940903, "y_m": -6.651323343503973, "d_right": 0.4167129501137518, "d_left": 2.29728228529985, "psi_rad": 1.5906108088216189, "kappa_radpm": 7.49892893913282e-05, "vx_mps": 9.356339534482863, "ax_mps2": -12.291854172196933}, {"id": 155, "s_m": 15.489606881639643, "d_m": 0.0, "x_m": -5.974055886361113, "y_m": -6.551420377574484, "d_right": 0.41869370375005166, "d_left": 2.308001128742657, "psi_rad": 1.5905948622941688, "kappa_radpm": -0.00043565899416398297, "vx_mps": 9.224118767999235, "ax_mps2": -12.233514954263224}, {"id": 156, "s_m": 15.589539829263124, "d_m": 0.0, "x_m": -5.97603107833075, "y_m": -6.45150812407193, "d_right": 0.42066956554709883, "d_left": 2.322978477723917, "psi_rad": 1.5905211068272411, "kappa_radpm": -0.0010401198975107254, "vx_mps": 9.090616295268699, "ax_mps2": -12.168216275098215}, {"id": 157, "s_m": 15.689472776886605, "d_m": 0.0, "x_m": -5.97799545470568, "y_m": -6.351613546903438, "d_right": 0.4226359717927425, "d_left": 2.3288388821099804, "psi_rad": 1.5903831380979445, "kappa_radpm": -0.0017685637907572875, "vx_mps": 8.955852454592117, "ax_mps2": -12.100960033300405}, {"id": 158, "s_m": 15.789405724510088, "d_m": 0.0, "x_m": -5.979942845410553, "y_m": -6.251683558039474, "d_right": 0.42458280515560076, "d_left": 2.326892312152243, "psi_rad": 1.5901663667871984, "kappa_radpm": -0.0025679579474127807, "vx_mps": 8.819791606269408, "ax_mps2": -12.023852564735579}, {"id": 159, "s_m": 15.889338672133569, "d_m": 0.0, "x_m": -5.981863282557669, "y_m": -6.151810890287463, "d_right": 0.42650703829180986, "d_left": 2.3249736096467104, "psi_rad": 1.5898625445752088, "kappa_radpm": -0.00354942527619179, "vx_mps": 8.682486160130171, "ax_mps2": -11.94905813321854}, {"id": 160, "s_m": 15.989271619757051, "d_m": 0.0, "x_m": -5.983750116963588, "y_m": -6.0518411077578085, "d_right": 0.4283905477080308, "d_left": 2.323086956973962, "psi_rad": 1.5894568190689746, "kappa_radpm": -0.004563691920102185, "vx_mps": 8.543849057637793, "ax_mps2": -11.86019846809832}, {"id": 161, "s_m": 16.08920456738053, "d_m": 0.0, "x_m": -5.98558840984488, "y_m": -5.952006451300173, "d_right": 0.4302356893333286, "d_left": 2.3212510064413916, "psi_rad": 1.58893706021843, "kappa_radpm": -0.005845270113470796, "vx_mps": 8.40398164771111, "ax_mps2": -11.775545551226744}, {"id": 162, "s_m": 16.189137515004013, "d_m": 0.0, "x_m": -5.987370679526053, "y_m": -5.852043338423737, "d_right": 0.43201543838428896, "d_left": 2.3194690143377903, "psi_rad": 1.5882889930088653, "kappa_radpm": -0.007153416640027663, "vx_mps": 8.262770575384977, "ax_mps2": -11.68398247711545}, {"id": 163, "s_m": 16.289070462627496, "d_m": 0.0, "x_m": -5.989079307122019, "y_m": -5.752193370556763, "d_right": 0.43373013265862304, "d_left": 2.317762478395988, "psi_rad": 1.5874991677284465, "kappa_radpm": -0.008658468574165249, "vx_mps": 8.120230782656934, "ax_mps2": -11.59077303380168}, {"id": 164, "s_m": 16.389003410250975, "d_m": 0.0, "x_m": -5.990702988362349, "y_m": -5.652253642652626, "d_right": 0.43535347243574335, "d_left": 2.316139434240411, "psi_rad": 1.586557135797319, "kappa_radpm": -0.010298039883304005, "vx_mps": 7.976311662328909, "ax_mps2": -11.487550056450187}, {"id": 165, "s_m": 16.488936357874458, "d_m": 0.0, "x_m": -5.992222833387196, "y_m": -5.552364463006723, "d_right": 0.43687700027861637, "d_left": 2.3146210324556615, "psi_rad": 1.5854317566875926, "kappa_radpm": -0.012222051554995023, "vx_mps": 7.831064950463469, "ax_mps2": -11.401075908580074}, {"id": 166, "s_m": 16.58886930549794, "d_m": 0.0, "x_m": -5.993620915158059, "y_m": -5.452464555400213, "d_right": 0.4382783051655737, "d_left": 2.3137604224775545, "psi_rad": 1.5841189577265198, "kappa_radpm": -0.014009027039324448, "vx_mps": 7.68419755180269, "ax_mps2": -11.330771501911203}, {"id": 167, "s_m": 16.688802253121423, "d_m": 0.0, "x_m": -5.994879828447205, "y_m": -5.352514914607552, "d_right": 0.4395371508066943, "d_left": 2.3173535552240785, "psi_rad": 1.5826359475733764, "kappa_radpm": -0.01565170631360207, "vx_mps": 7.535400269731009, "ax_mps2": -11.18661795323199}, {"id": 168, "s_m": 16.788735200744902, "d_m": 0.0, "x_m": -5.995980284310894, "y_m": -5.252668890836953, "d_right": 0.4406456209971206, "d_left": 2.3253878426659673, "psi_rad": 1.580944163529739, "kappa_radpm": -0.01877756933635991, "vx_mps": 7.385555755192277, "ax_mps2": -11.017061200271137}, {"id": 169, "s_m": 16.888668148368385, "d_m": 0.0, "x_m": -5.996894930201192, "y_m": -5.152639634165642, "d_right": 0.4415552633002343, "d_left": 2.3378754455757296, "psi_rad": 1.5788710810825204, "kappa_radpm": -0.022644096445207294, "vx_mps": 7.234949827971923, "ax_mps2": -11.016621875812893}, {"id": 170, "s_m": 16.988601095991868, "d_m": 0.0, "x_m": -5.997586790184315, "y_m": -5.0528732778192875, "d_right": 0.44226214349446896, "d_left": 2.354717335707938, "psi_rad": 1.576626812062933, "kappa_radpm": -0.02114299595401556, "vx_mps": 7.081147648472267, "ax_mps2": -11.133039688434494}, {"id": 171, "s_m": 17.088534043615347, "d_m": 0.0, "x_m": -5.998069691307515, "y_m": -4.95274705017916, "d_right": 0.44273404583451026, "d_left": 2.358531352875677, "psi_rad": 1.574662307337354, "kappa_radpm": -0.018105596394635767, "vx_mps": 6.922249423078847, "ax_mps2": -10.417970936690939}, {"id": 172, "s_m": 17.18846699123883, "d_m": 0.0, "x_m": -5.998339940728393, "y_m": -4.853036754458389, "d_right": 0.4430246420540309, "d_left": 2.358262965458303, "psi_rad": 1.5719785430990847, "kappa_radpm": -0.038381319463236065, "vx_mps": 6.77018020346555, "ax_mps2": -9.484360996563492}, {"id": 173, "s_m": 17.288399938862312, "d_m": 0.0, "x_m": -5.99822734007269, "y_m": -4.75283408467138, "d_right": 0.4428969853874166, "d_left": 2.3583738462306076, "psi_rad": 1.566986971261952, "kappa_radpm": -0.0611178562310153, "vx_mps": 6.628705732341214, "ax_mps2": -9.238874733069526}, {"id": 174, "s_m": 17.38833288648579, "d_m": 0.0, "x_m": -5.997528796224993, "y_m": -4.6531700793590565, "d_right": 0.442224978210586, "d_left": 2.359074567339307, "psi_rad": 1.5604559157632796, "kappa_radpm": -0.06946134527377743, "vx_mps": 6.4879275363072475, "ax_mps2": -9.054203100413925}, {"id": 175, "s_m": 17.488265834109274, "d_m": 0.0, "x_m": -5.996131226094303, "y_m": -4.552983326607311, "d_right": 0.440817014593678, "d_left": 2.360470493105798, "psi_rad": 1.553112389668905, "kappa_radpm": -0.0769923299694532, "vx_mps": 6.346934481146135, "ax_mps2": -8.988703958885493}, {"id": 176, "s_m": 17.588198781732757, "d_m": 0.0, "x_m": -5.993978310422266, "y_m": -4.4533551864862275, "d_right": 0.43869775824536567, "d_left": 2.3626258190683975, "psi_rad": 1.5451830030963474, "kappa_radpm": -0.08210764852021525, "vx_mps": 6.203792545218542, "ax_mps2": -8.988602682740687}, {"id": 177, "s_m": 17.688131729356236, "d_m": 0.0, "x_m": -5.9909925263514054, "y_m": -4.353219868293048, "d_right": 0.43570994831483645, "d_left": 2.3656102822605085, "psi_rad": 1.536715066998848, "kappa_radpm": -0.0857649288629274, "vx_mps": 6.0572705752594524, "ax_mps2": -8.985759059652919}, {"id": 178, "s_m": 17.78806467697972, "d_m": 0.0, "x_m": -5.987193805767402, "y_m": -4.253709553608763, "d_right": 0.4319596932550361, "d_left": 2.3694122629212657, "psi_rad": 1.5287628507861015, "kappa_radpm": -0.07393025678053841, "vx_mps": 5.907163451519936, "ax_mps2": -9.550788379332008}, {"id": 179, "s_m": 17.8879976246032, "d_m": 0.0, "x_m": -5.982628922292782, "y_m": -4.153543327722124, "d_right": 0.42739536461953015, "d_left": 2.373975535280926, "psi_rad": 1.5219178277373455, "kappa_radpm": -0.06871443136091318, "vx_mps": 5.743318132684573, "ax_mps2": -7.996045958883412}, {"id": 180, "s_m": 17.98793057222668, "d_m": 0.0, "x_m": -5.9773150298750215, "y_m": -4.054037632806643, "d_right": 0.42213692775543493, "d_left": 2.3792927143537943, "psi_rad": 1.511929285128818, "kappa_radpm": -0.13143080569701265, "vx_mps": 5.6024607351783695, "ax_mps2": -6.512526024896078}, {"id": 181, "s_m": 18.087863519850163, "d_m": 0.0, "x_m": -5.970654569989598, "y_m": -3.95401368841161, "d_right": 0.41549595942847367, "d_left": 2.385952550000226, "psi_rad": 1.4956715431476588, "kappa_radpm": -0.18625916969105702, "vx_mps": 5.485064670988879, "ax_mps2": -6.458076418687055}, {"id": 182, "s_m": 18.187796467473646, "d_m": 0.0, "x_m": -5.962323100433355, "y_m": -3.8547181986725065, "d_right": 0.40767705830185474, "d_left": 2.3942888938840015, "psi_rad": 1.4791961326279757, "kappa_radpm": -0.14445460178472402, "vx_mps": 5.366114536602451, "ax_mps2": -7.915147964338031}, {"id": 183, "s_m": 18.287729415097125, "d_m": 0.0, "x_m": -5.9525002647469645, "y_m": -3.7549539572959474, "d_right": 0.40176108538217975, "d_left": 2.40411300293031, "psi_rad": 1.466797346174296, "kappa_radpm": -0.10614306007381102, "vx_mps": 5.2166289005478985, "ax_mps2": -7.103586132855608}, {"id": 184, "s_m": 18.387662362720608, "d_m": 0.0, "x_m": -5.94147260468923, "y_m": -3.655789867325686, "d_right": 0.4190396001970811, "d_left": 2.415146695954736, "psi_rad": 1.4518381012142316, "kappa_radpm": -0.19369749150078147, "vx_mps": 5.078725478318794, "ax_mps2": -5.078613503158535}, {"id": 185, "s_m": 18.48759531034409, "d_m": 0.0, "x_m": -5.92848432594957, "y_m": -3.556545192910215, "d_right": 0.4222346800833768, "d_left": 2.4293622624419418, "psi_rad": 1.4279988963637236, "kappa_radpm": -0.2831971644297971, "vx_mps": 4.977791764397377, "ax_mps2": -4.999108865632959}, {"id": 186, "s_m": 18.58752825796757, "d_m": 0.0, "x_m": -5.912929430407763, "y_m": -3.457898599545368, "d_right": 0.4067450289885389, "d_left": 2.4501077994698464, "psi_rad": 1.401639199487101, "kappa_radpm": -0.2383900418533687, "vx_mps": 4.876398207779551, "ax_mps2": -6.350283286925458}, {"id": 187, "s_m": 18.687461205591053, "d_m": 0.0, "x_m": -5.895010231621827, "y_m": -3.359537391544742, "d_right": 0.38891708861477353, "d_left": 2.477030012365016, "psi_rad": 1.3804282973729503, "kappa_radpm": -0.18575625091024534, "vx_mps": 4.744476201502376, "ax_mps2": -6.036117314807919}, {"id": 188, "s_m": 18.787394153214535, "d_m": 0.0, "x_m": -5.875062692107108, "y_m": -3.2614999996945984, "d_right": 0.3690977640585607, "d_left": 2.5096093028555315, "psi_rad": 1.357849862243356, "kappa_radpm": -0.2838124787484501, "vx_mps": 4.615586683801164, "ax_mps2": -3.6806012332034843}, {"id": 189, "s_m": 18.887327100838014, "d_m": 0.0, "x_m": -5.8523703473673, "y_m": -3.16421482383864, "d_right": 0.35423185888646075, "d_left": 2.5482635696288143, "psi_rad": 1.323353391631525, "kappa_radpm": -0.40834819356489127, "vx_mps": 4.535197214582994, "ax_mps2": -2.9651365772912253}, {"id": 190, "s_m": 18.987260048461497, "d_m": 0.0, "x_m": -5.825719112993101, "y_m": -3.0676107361831337, "d_right": 0.3631894415381582, "d_left": 2.5808421334482667, "psi_rad": 1.2792368961444294, "kappa_radpm": -0.45616569243208205, "vx_mps": 4.469382966205908, "ax_mps2": -2.6194529540439935}, {"id": 191, "s_m": 19.08719299608498, "d_m": 0.0, "x_m": -5.794839584127827, "y_m": -2.972779053795858, "d_right": 0.34488197111188407, "d_left": 2.611747067648288, "psi_rad": 1.2322644161823995, "kappa_radpm": -0.48611042959374734, "vx_mps": 4.410424558803178, "ax_mps2": -1.6071258992785096}, {"id": 192, "s_m": 19.18712594370846, "d_m": 0.0, "x_m": -5.7592179903868415, "y_m": -2.8791855839365352, "d_right": 0.32066278194115827, "d_left": 2.6474132980808815, "psi_rad": 1.180912808334335, "kappa_radpm": -0.5471240168597469, "vx_mps": 4.373858151822065, "ax_mps2": -0.17881650001579333}, {"id": 193, "s_m": 19.28705889133194, "d_m": 0.0, "x_m": -5.718696101026256, "y_m": -2.7880562258935573, "d_right": 0.32129649079399825, "d_left": 2.6880206308363057, "psi_rad": 1.1226046192666397, "kappa_radpm": -0.6229414023794623, "vx_mps": 4.369770681900796, "ax_mps2": -0.07376068462561615}, {"id": 194, "s_m": 19.386991838955424, "d_m": 0.0, "x_m": -5.672523135729449, "y_m": -2.6993705418638636, "d_right": 0.3079402384316248, "d_left": 2.7343410610581116, "psi_rad": 1.0589951800792423, "kappa_radpm": -0.6289257556433345, "vx_mps": 4.368083511922937, "ax_mps2": -0.0737606846256517}, {"id": 195, "s_m": 19.486924786578907, "d_m": 0.0, "x_m": -5.620989602886665, "y_m": -2.6139383748071796, "d_right": 0.2926028091328706, "d_left": 2.7858872431383124, "psi_rad": 0.9974653601757546, "kappa_radpm": -0.6036563466338135, "vx_mps": 4.366395690024701, "ax_mps2": -0.023780448819744508}, {"id": 196, "s_m": 19.586857734202386, "d_m": 0.0, "x_m": -5.564309020071622, "y_m": -2.5316796980261125, "d_right": 0.2823359978413111, "d_left": 2.8423463706644037, "psi_rad": 0.9372487649039576, "kappa_radpm": -0.6110705936095463, "vx_mps": 4.3658513970557395, "ax_mps2": -0.07362843077929859}, {"id": 197, "s_m": 19.68679068182587, "d_m": 0.0, "x_m": -5.502739911216829, "y_m": -2.4530630820995967, "d_right": 0.29441342239982515, "d_left": 2.9038031766397148, "psi_rad": 0.8752560730400895, "kappa_radpm": -0.6300554530898966, "vx_mps": 4.36416574031512, "ax_mps2": -0.07362843077929859}, {"id": 198, "s_m": 19.78672362944935, "d_m": 0.0, "x_m": -5.436406712349253, "y_m": -2.3784833692835257, "d_right": 0.30024893349997933, "d_left": 2.9702083221451296, "psi_rad": 0.8128456271236744, "kappa_radpm": -0.6108488504208173, "vx_mps": 4.362479432238837, "ax_mps2": 0.3012254472249547}, {"id": 199, "s_m": 19.88665657707283, "d_m": 0.0, "x_m": -5.365552425289488, "y_m": -2.3079877598157084, "d_right": 0.3058804195774528, "d_left": 3.0413883647608255, "psi_rad": 0.753426829641134, "kappa_radpm": -0.5777940741792958, "vx_mps": 4.3693742676025895, "ax_mps2": 0.8952797340620564}, {"id": 200, "s_m": 19.986589524696313, "d_m": 0.0, "x_m": -5.290878919053226, "y_m": -2.241848243956046, "d_right": 0.32625360887262916, "d_left": 3.1156998374925093, "psi_rad": 0.6963041255720553, "kappa_radpm": -0.5741893854992299, "vx_mps": 4.389802657971363, "ax_mps2": 0.8606635786508767}, {"id": 201, "s_m": 20.086522472319796, "d_m": 0.0, "x_m": -5.21231962119074, "y_m": -2.179927117769066, "d_right": 0.3261387048558265, "d_left": 3.194299539043482, "psi_rad": 0.6386509726921628, "kappa_radpm": -0.5780390974782098, "vx_mps": 4.409351956079936, "ax_mps2": 0.6863805014983709}, {"id": 202, "s_m": 20.186455419943275, "d_m": 0.0, "x_m": -5.130589413787788, "y_m": -2.1227270748054443, "d_right": 0.3418995199164806, "d_left": 3.276134364849873, "psi_rad": 0.5841959509544659, "kappa_radpm": -0.49425737948316045, "vx_mps": 4.424880645395759, "ax_mps2": 2.2469623299204415}, {"id": 203, "s_m": 20.286388367566758, "d_m": 0.0, "x_m": -5.045860062298114, "y_m": -2.069461855253008, "d_right": 0.3421377174887978, "d_left": 3.2699075603305214, "psi_rad": 0.5399757019207287, "kappa_radpm": -0.39053057782769995, "vx_mps": 4.475339078064783, "ax_mps2": 4.1007684388986165}, {"id": 204, "s_m": 20.38632131519024, "d_m": 0.0, "x_m": -4.959258408240161, "y_m": -2.019690537127272, "d_right": 0.3385300952311167, "d_left": 3.231615207178043, "psi_rad": 0.5039214152983655, "kappa_radpm": -0.34450615968395837, "vx_mps": 4.56598988379242, "ax_mps2": 4.737048862012702}, {"id": 205, "s_m": 20.48625426281372, "d_m": 0.0, "x_m": -4.870885725214513, "y_m": -1.9728756134894532, "d_right": 0.34590168810769123, "d_left": 3.199202357668391, "psi_rad": 0.47085502954679415, "kappa_radpm": -0.3169948292380279, "vx_mps": 4.668515623892617, "ax_mps2": 5.006829634995716}, {"id": 206, "s_m": 20.586187210437203, "d_m": 0.0, "x_m": -4.781147490386984, "y_m": -1.9289107487444888, "d_right": 0.35181734131240255, "d_left": 3.1586453416848084, "psi_rad": 0.4408975165251112, "kappa_radpm": -0.2797080922987459, "vx_mps": 4.774487681194384, "ax_mps2": 5.535724624688975}, {"id": 207, "s_m": 20.686120158060685, "d_m": 0.0, "x_m": -4.6901757136410795, "y_m": -1.887454676369719, "d_right": 0.36319425879510925, "d_left": 3.120206384795548, "psi_rad": 0.4149374295293855, "kappa_radpm": -0.2399233282482586, "vx_mps": 4.888980995650429, "ax_mps2": 6.172918516797992}, {"id": 208, "s_m": 20.786053105684164, "d_m": 0.0, "x_m": -4.598196381223856, "y_m": -1.8481749150382707, "d_right": 0.3561566370817511, "d_left": 3.0867779635483528, "psi_rad": 0.3929683207339969, "kappa_radpm": -0.19860085961088744, "vx_mps": 5.013570689785616, "ax_mps2": 6.4171903419829786}, {"id": 209, "s_m": 20.885986053307647, "d_m": 0.0, "x_m": -4.505537118239161, "y_m": -1.8107627074572112, "d_right": 0.3695767303013545, "d_left": 3.0581887831501207, "psi_rad": 0.37521675414509703, "kappa_radpm": -0.15679980257010342, "vx_mps": 5.1398899359955195, "ax_mps2": 6.346850023855455}, {"id": 210, "s_m": 20.98591900093113, "d_m": 0.0, "x_m": -4.412271765234297, "y_m": -1.7748397348077067, "d_right": 0.3677981427142726, "d_left": 3.0341838883941854, "psi_rad": 0.3596712368917776, "kappa_radpm": -0.1761678106255912, "vx_mps": 5.261842587550878, "ax_mps2": 6.278824177375741}, {"id": 211, "s_m": 21.08585194855461, "d_m": 0.0, "x_m": -4.318433110700867, "y_m": -1.740587528172189, "d_right": 0.38146920727627837, "d_left": 3.0150489443943638, "psi_rad": 0.33941638048297174, "kappa_radpm": -0.22916721517770827, "vx_mps": 5.379768603896785, "ax_mps2": 5.255578442738162}, {"id": 212, "s_m": 21.18578489617809, "d_m": 0.0, "x_m": -4.223786514855718, "y_m": -1.7084290719867474, "d_right": 0.38037511109584515, "d_left": 2.987853155385555, "psi_rad": 0.31609221590468106, "kappa_radpm": -0.2090724885707283, "vx_mps": 5.47652454773756, "ax_mps2": 5.613485484488489}, {"id": 213, "s_m": 21.285717843801574, "d_m": 0.0, "x_m": -4.128502305113054, "y_m": -1.6782485348269665, "d_right": 0.39307271109109687, "d_left": 2.957621576483849, "psi_rad": 0.2984937430948116, "kappa_radpm": -0.1432618547242822, "vx_mps": 5.578016262416704, "ax_mps2": 6.101925286382986}, {"id": 214, "s_m": 21.385650791425054, "d_m": 0.0, "x_m": -4.032732781238364, "y_m": -1.6494480461336503, "d_right": 0.3856030277043275, "d_left": 2.9287808744985058, "psi_rad": 0.28588720614163843, "kappa_radpm": -0.13186358369341422, "vx_mps": 5.686284567613391, "ax_mps2": 6.041171616548722}, {"id": 215, "s_m": 21.485583739048536, "d_m": 0.0, "x_m": -3.9366938409042986, "y_m": -1.621954061415793, "d_right": 0.3958609381628871, "d_left": 2.9037737503727414, "psi_rad": 0.2712785321922724, "kappa_radpm": -0.16060466710195503, "vx_mps": 5.791481361220139, "ax_mps2": 5.9820546839916275}, {"id": 216, "s_m": 21.58551668667202, "d_m": 0.0, "x_m": -3.840162329965037, "y_m": -1.5959671284869574, "d_right": 0.38561923629277994, "d_left": 2.8835542894835746, "psi_rad": 0.2548668235600373, "kappa_radpm": -0.15047933096731964, "vx_mps": 5.8937988659431335, "ax_mps2": 5.924473730764299}, {"id": 217, "s_m": 21.685449634295498, "d_m": 0.0, "x_m": -3.743286941773136, "y_m": -1.5714337528065063, "d_right": 0.39940821109883623, "d_left": 2.8681629332212513, "psi_rad": 0.24188166664108568, "kappa_radpm": -0.10938070358906629, "vx_mps": 5.993410157686428, "ax_mps2": 5.868337987040089}, {"id": 218, "s_m": 21.78538258191898, "d_m": 0.0, "x_m": -3.6460614358747274, "y_m": -1.5479489495332837, "d_right": 0.41219939847492865, "d_left": 2.8572754174948907, "psi_rad": 0.23251477881635885, "kappa_radpm": -0.08598577660942622, "vx_mps": 6.090471734081885, "ax_mps2": 5.8135653339405}, {"id": 219, "s_m": 21.885315529542464, "d_m": 0.0, "x_m": -3.5487532866634584, "y_m": -1.5253325254110621, "d_right": 0.4031691126576293, "d_left": 2.8507280129139616, "psi_rad": 0.2243651600825458, "kappa_radpm": -0.07712529995604116, "vx_mps": 6.18512565625753, "ax_mps2": 5.760081188283961}, {"id": 220, "s_m": 21.985248477165946, "d_m": 0.0, "x_m": -3.451221326427851, "y_m": -1.5034646598653656, "d_right": 0.41776334882308885, "d_left": 2.832825985758341, "psi_rad": 0.21659449113216978, "kappa_radpm": -0.0862970143654438, "vx_mps": 6.277501347438065, "ax_mps2": 5.707817565819017}, {"id": 221, "s_m": 22.085181424789425, "d_m": 0.0, "x_m": -3.3535798057614508, "y_m": -1.482459653672245, "d_right": 0.4190549579189687, "d_left": 2.8117986780471935, "psi_rad": 0.2068017389183041, "kappa_radpm": -0.10987717116963801, "vx_mps": 6.367717113282079, "ax_mps2": 5.656712289207784}, {"id": 222, "s_m": 22.185114372412908, "d_m": 0.0, "x_m": -3.2556324851297886, "y_m": -1.4625031317237285, "d_right": 0.41337134354263955, "d_left": 2.7918241552324035, "psi_rad": 0.19504188677702472, "kappa_radpm": -0.11995260686467109, "vx_mps": 6.455881434833084, "ax_mps2": 5.606708314316007}, {"id": 223, "s_m": 22.28504732003639, "d_m": 0.0, "x_m": -3.157543871052824, "y_m": -1.4437369211210025, "d_right": 0.40824102666844675, "d_left": 2.7730422971745488, "psi_rad": 0.18300961313184105, "kappa_radpm": -0.12101995381668104, "vx_mps": 6.542094074319923, "ax_mps2": 5.557753153890572}, {"id": 224, "s_m": 22.38498026765987, "d_m": 0.0, "x_m": -3.059062130473798, "y_m": -1.4261159241953383, "d_right": 0.4013336289893186, "d_left": 2.7554097703158402, "psi_rad": 0.17137057874526485, "kappa_radpm": -0.10629375507090087, "vx_mps": 6.626447025889198, "ax_mps2": 5.509798381945849}, {"id": 225, "s_m": 22.484913215283353, "d_m": 0.0, "x_m": -2.9606208144478274, "y_m": -1.409577635168846, "d_right": 0.41411014716570965, "d_left": 2.7388602778564706, "psi_rad": 0.16190735648401455, "kappa_radpm": -0.08323096216842481, "vx_mps": 6.709025337048123, "ax_mps2": 5.462799205451238}, {"id": 226, "s_m": 22.584846162906835, "d_m": 0.0, "x_m": -2.861782457903988, "y_m": -1.3938286359860053, "d_right": 0.4298766115052757, "d_left": 2.723103540699665, "psi_rad": 0.15426235802773935, "kappa_radpm": -0.07291011539233623, "vx_mps": 6.789907821679585, "ax_mps2": 5.416714092472477}, {"id": 227, "s_m": 22.684779110530314, "d_m": 0.0, "x_m": -2.763179563969037, "y_m": -1.3788530601136118, "d_right": 0.4131624707781893, "d_left": 2.7081190307221603, "psi_rad": 0.1472901048489932, "kappa_radpm": -0.06683924834303161, "vx_mps": 6.86916768162595, "ax_mps2": 5.371504447923251}, {"id": 228, "s_m": 22.784712058153797, "d_m": 0.0, "x_m": -2.664143757805332, "y_m": -1.3644982361275062, "d_right": 0.40752760950359274, "d_left": 2.6962386318316955, "psi_rad": 0.14053444210183796, "kappa_radpm": -0.06958116549069329, "vx_mps": 6.946873050776275, "ax_mps2": 5.327134329680194}, {"id": 229, "s_m": 22.88464500577728, "d_m": 0.0, "x_m": -2.5653584435773698, "y_m": -1.350879948844762, "d_right": 0.42119876906890824, "d_left": 2.688747751632752, "psi_rad": 0.13338308770147678, "kappa_radpm": -0.07381073197906404, "vx_mps": 7.023087473149117, "ax_mps2": 5.283570199080105}, {"id": 230, "s_m": 22.98457795340076, "d_m": 0.0, "x_m": -2.4661040807705352, "y_m": -1.337928034118608, "d_right": 0.4341690752127609, "d_left": 2.6856588606390677, "psi_rad": 0.1262194603195692, "kappa_radpm": -0.06900877935697874, "vx_mps": 7.0978703245018036, "ax_mps2": 5.240780700840567}, {"id": 231, "s_m": 23.08451090102424, "d_m": 0.0, "x_m": -2.367067007040823, "y_m": -1.325698508346672, "d_right": 0.4111770123993349, "d_left": 2.6869790137005185, "psi_rad": 0.11958505273917308, "kappa_radpm": -0.06521262329648712, "vx_mps": 7.171277185411944, "ax_mps2": 5.19873646826806}, {"id": 232, "s_m": 23.184443848647724, "d_m": 0.0, "x_m": -2.2677010099924475, "y_m": -1.3141010408959195, "d_right": 0.4069502625297216, "d_left": 2.692683296960312, "psi_rad": 0.11265876664948471, "kappa_radpm": -0.07325492844887073, "vx_mps": 7.243360172488546, "ax_mps2": 5.15740995028859}, {"id": 233, "s_m": 23.284376796271204, "d_m": 0.0, "x_m": -2.1684320283255483, "y_m": -1.3032496706988101, "d_right": 0.41782076360063225, "d_left": 2.6826658927872336, "psi_rad": 0.10508848469749443, "kappa_radpm": -0.07017849399929861, "vx_mps": 7.314168233316985, "ax_mps2": 5.116775257383397}, {"id": 234, "s_m": 23.384309743894686, "d_m": 0.0, "x_m": -2.068958146727374, "y_m": -1.2930523184580864, "d_right": 0.4280303708367434, "d_left": 2.672463218406613, "psi_rad": 0.09980205916984031, "kappa_radpm": -0.035461114597863636, "vx_mps": 7.383747409876489, "ax_mps2": 5.076808023961436}, {"id": 235, "s_m": 23.48424269151817, "d_m": 0.0, "x_m": -1.9695270357697614, "y_m": -1.2832197857562821, "d_right": 0.4123485710705881, "d_left": 2.6626248651259083, "psi_rad": 0.09767557652936665, "kappa_radpm": -0.01625421621913678, "vx_mps": 7.452141074453958, "ax_mps2": 5.037485285074488}, {"id": 236, "s_m": 23.584175639141648, "d_m": 0.0, "x_m": -1.8700732539199736, "y_m": -1.2735599506382425, "d_right": 0.40870248306728213, "d_left": 2.6529595344237795, "psi_rad": 0.09593636891418234, "kappa_radpm": -0.018558928494498826, "vx_mps": 7.519390141484785, "ax_mps2": 4.99878536568751}, {"id": 237, "s_m": 23.68410858676513, "d_m": 0.0, "x_m": -1.7705998784945445, "y_m": -1.2640900866498013, "d_right": 0.40671615978125414, "d_left": 2.64348445348618, "psi_rad": 0.09368465768750012, "kappa_radpm": -0.030217758445970813, "vx_mps": 7.585533258256742, "ax_mps2": 4.9606877809747}, {"id": 238, "s_m": 23.784041534388614, "d_m": 0.0, "x_m": -1.6711443136142001, "y_m": -1.2549265059946566, "d_right": 0.4158754717292672, "d_left": 2.6343154802182, "psi_rad": 0.08977326014546483, "kappa_radpm": -0.04812539687113666, "vx_mps": 7.650606976998906, "ax_mps2": 4.923173146327658}, {"id": 239, "s_m": 23.883974482012093, "d_m": 0.0, "x_m": -1.571567483767129, "y_m": -1.2462162937389893, "d_right": 0.4142517648998209, "d_left": 2.625601314180017, "psi_rad": 0.08475231462638666, "kappa_radpm": -0.04872040508238659, "vx_mps": 7.714645910529588, "ax_mps2": 4.886223095942892}, {"id": 240, "s_m": 23.983907429635575, "d_m": 0.0, "x_m": -1.4720341283954328, "y_m": -1.2379975281612619, "d_right": 0.3905370796567851, "d_left": 2.617378093359616, "psi_rad": 0.08008678178896855, "kappa_radpm": -0.04469837719463098, "vx_mps": 7.7776828733433145, "ax_mps2": 4.849820209008977}, {"id": 241, "s_m": 24.083840377259058, "d_m": 0.0, "x_m": -1.3723545266899568, "y_m": -1.2302100555709763, "d_right": 0.3912188331027005, "d_left": 2.6095878483668105, "psi_rad": 0.07596321758964786, "kappa_radpm": -0.03773552596522899, "vx_mps": 7.839749009767999, "ax_mps2": 4.813947942642748}, {"id": 242, "s_m": 24.183773324882537, "d_m": 0.0, "x_m": -1.2727332907367765, "y_m": -1.222805068167416, "d_right": 0.3985912490888875, "d_left": 2.6021794171070574, "psi_rad": 0.07253302457939759, "kappa_radpm": -0.03206353004643221, "vx_mps": 7.900873910611843, "ax_mps2": 4.778590570835646}, {"id": 243, "s_m": 24.28370627250602, "d_m": 0.0, "x_m": -1.1730331044144475, "y_m": -1.21572204063853, "d_right": 0.4056478928356535, "d_left": 2.5950938390148717, "psi_rad": 0.06930882355977697, "kappa_radpm": -0.032446178190761246, "vx_mps": 7.961085719538865, "ax_mps2": 4.743733128762624}, {"id": 244, "s_m": 24.383639220129503, "d_m": 0.0, "x_m": -1.0733485116265273, "y_m": -1.2089649883573637, "d_right": 0.4123793059854041, "d_left": 2.588334054818635, "psi_rad": 0.06604017449237731, "kappa_radpm": -0.033265463777545135, "vx_mps": 8.020411230257366, "ax_mps2": 4.70936136189053}, {"id": 245, "s_m": 24.483572167752985, "d_m": 0.0, "x_m": -0.9736244334887061, "y_m": -1.2025386239465472, "d_right": 0.41878348596323434, "d_left": 2.581905392906802, "psi_rad": 0.0626393155036582, "kappa_radpm": -0.03479365747848754, "vx_mps": 8.078875975472961, "ax_mps2": 4.675461679387197}, {"id": 246, "s_m": 24.583505115376465, "d_m": 0.0, "x_m": -0.8738838839045823, "y_m": -1.1964576283513457, "d_right": 0.40650133542120676, "d_left": 2.5758222719571813, "psi_rad": 0.059172769327763275, "kappa_radpm": -0.03341938266083562, "vx_mps": 8.136504308443385, "ax_mps2": 4.64202111139691}, {"id": 247, "s_m": 24.683438062999947, "d_m": 0.0, "x_m": -0.7741201023804888, "y_m": -1.190708995619219, "d_right": 0.3845925554689338, "d_left": 2.5700717588677233, "psi_rad": 0.05600070772241539, "kappa_radpm": -0.03006367906941774, "vx_mps": 8.193319477873569, "ax_mps2": 4.609027269794371}, {"id": 248, "s_m": 24.78337101062343, "d_m": 0.0, "x_m": -0.6743474090425342, "y_m": -1.1852712164756307, "d_right": 0.38770117759132816, "d_left": 2.564632185793573, "psi_rad": 0.05276421732356584, "kappa_radpm": -0.03670883793313143, "vx_mps": 8.249343696803859, "ax_mps2": 4.576468312080532}, {"id": 249, "s_m": 24.88330395824691, "d_m": 0.0, "x_m": -0.5745330663562269, "y_m": -1.1801984619933772, "d_right": 0.3927269097909387, "d_left": 2.559558076577064, "psi_rad": 0.04864101319812231, "kappa_radpm": -0.04548516855882327, "vx_mps": 8.304598206069988, "ax_mps2": 4.544332908113098}, {"id": 250, "s_m": 24.983236905870392, "d_m": 0.0, "x_m": -0.4747134849788584, "y_m": -1.1755078294993482, "d_right": 0.3973743395159611, "d_left": 2.5548661273452593, "psi_rad": 0.04585972988683795, "kappa_radpm": -0.010200357592883806, "vx_mps": 8.359103332848633, "ax_mps2": 4.512610209408789}, {"id": 251, "s_m": 25.083169853493875, "d_m": 0.0, "x_m": -0.3748844749440358, "y_m": -1.1709197923680845, "d_right": 0.4019217274827667, "d_left": 2.5502768731582983, "psi_rad": 0.04645469528056534, "kappa_radpm": 0.011205271574278579, "vx_mps": 8.41287854474586, "ax_mps2": 4.481289820775043}, {"id": 252, "s_m": 25.183102801117354, "d_m": 0.0, "x_m": -0.27507033813252424, "y_m": -1.1662736418319786, "d_right": 0.4065264466880963, "d_left": 2.545629351365395, "psi_rad": 0.04607418278223996, "kappa_radpm": -0.01881523216391518, "vx_mps": 8.465942499836359, "ax_mps2": 4.4503617740595445}, {"id": 253, "s_m": 25.283035748740836, "d_m": 0.0, "x_m": -0.17525004350309512, "y_m": -1.1618105120549458, "d_right": 0.4109506351606419, "d_left": 2.5411649100402802, "psi_rad": 0.04303199907838784, "kappa_radpm": -0.032747226187127526, "vx_mps": 8.518313093017936, "ax_mps2": 4.419816503827827}, {"id": 254, "s_m": 25.38296869636432, "d_m": 0.0, "x_m": -0.07540095549574467, "y_m": -1.15766083853583, "d_right": 0.38891574113113536, "d_left": 2.5370142194340914, "psi_rad": 0.040178734020126505, "kappa_radpm": -0.024363852458534615, "vx_mps": 8.57000749900755, "ax_mps2": 4.389644824797343}, {"id": 255, "s_m": 25.482901643987798, "d_m": 0.0, "x_m": 0.024446103963002085, "y_m": -1.153759111465346, "d_right": 0.3691425859902554, "d_left": 2.5331114414589844, "psi_rad": 0.03795157205977806, "kappa_radpm": -0.02278520695205525, "vx_mps": 8.621042212271666, "ax_mps2": 4.359837910875914}, {"id": 256, "s_m": 25.58283459161128, "d_m": 0.0, "x_m": 0.12433064120332836, "y_m": -1.1500846749812164, "d_right": 0.37280795341582085, "d_left": 2.5294363434732485, "psi_rad": 0.03554645556310776, "kappa_radpm": -0.025335824119857752, "vx_mps": 8.6714330841539, "ax_mps2": 4.330387275667976}, {"id": 257, "s_m": 25.682767539234764, "d_m": 0.0, "x_m": 0.22417733680822766, "y_m": -1.1466599539983455, "d_right": 0.3762291901519157, "d_left": 2.5168287675051997, "psi_rad": 0.03306305339021787, "kappa_radpm": -0.02361595509498025, "vx_mps": 8.721195357436747, "ax_mps2": 4.301284754321768}, {"id": 258, "s_m": 25.782700486858243, "d_m": 0.0, "x_m": 0.3240988395773554, "y_m": -1.143468713016982, "d_right": 0.3794105138510451, "d_left": 2.497647948154831, "psi_rad": 0.03083412937807206, "kappa_radpm": -0.021039565985052355, "vx_mps": 8.770343698550866, "ax_mps2": 4.272522486611346}, {"id": 259, "s_m": 25.882633434481725, "d_m": 0.0, "x_m": 0.42394629218771623, "y_m": -1.1404957256107495, "d_right": 0.3823826655313998, "d_left": 2.4825728309988575, "psi_rad": 0.028682126699686394, "kappa_radpm": -0.022045390694352972, "vx_mps": 8.818892227624751, "ax_mps2": 4.24409290114558}, {"id": 260, "s_m": 25.982566382105208, "d_m": 0.0, "x_m": 0.523865575224344, "y_m": -1.1377408413275822, "d_right": 0.3851305047841557, "d_left": 2.471659621851189, "psi_rad": 0.02643465880353113, "kappa_radpm": -0.02247286171625261, "vx_mps": 8.866854546549131, "ax_mps2": 4.215988700621006}, {"id": 261, "s_m": 26.082499329728687, "d_m": 0.0, "x_m": 0.6237452423673076, "y_m": -1.1352093167694557, "d_right": 0.3876603863147735, "d_left": 2.4649792372272232, "psi_rad": 0.024274241754184578, "kappa_radpm": -0.020775667790558824, "vx_mps": 8.914243765214168, "ax_mps2": 4.188202848028424}, {"id": 262, "s_m": 26.18243227735217, "d_m": 0.0, "x_m": 0.7236587353544812, "y_m": -1.1328852721345515, "d_right": 0.38998046305317685, "d_left": 2.462546147596526, "psi_rad": 0.02222363663171678, "kappa_radpm": -0.022015922470430407, "vx_mps": 8.961072526062758, "ax_mps2": 4.160728553744329}, {"id": 263, "s_m": 26.282365224975653, "d_m": 0.0, "x_m": 0.8235681888248283, "y_m": -1.1307838355519793, "d_right": 0.39207958516982183, "d_left": 2.460444011648042, "psi_rad": 0.019743888107976337, "kappa_radpm": -0.02760538451618604, "vx_mps": 9.007353027090172, "ax_mps2": 4.1335592634337}, {"id": 264, "s_m": 26.382298172599132, "d_m": 0.0, "x_m": 0.9234823868258754, "y_m": -1.1289491553760727, "d_right": 0.39391290929172845, "d_left": 2.4586086741447684, "psi_rad": 0.017159677590278255, "kappa_radpm": -0.017758149362397568, "vx_mps": 9.053097043408572, "ax_mps2": 4.106688646708397}, {"id": 265, "s_m": 26.482231120222615, "d_m": 0.0, "x_m": 1.0234208206184443, "y_m": -1.1272884781543426, "d_right": 0.39557069452019367, "d_left": 2.456947772416798, "psi_rad": 0.016414025762537587, "kappa_radpm": 0.002818081048660599, "vx_mps": 9.098315947484345, "ax_mps2": 4.080110586478053}, {"id": 266, "s_m": 26.582164067846097, "d_m": 0.0, "x_m": 1.1233247118749103, "y_m": -1.1256165133319704, "d_right": 0.3972432588448418, "d_left": 2.455274922887969, "psi_rad": 0.017088304942348698, "kappa_radpm": 0.006899475239214618, "vx_mps": 9.143020728146743, "ax_mps2": 4.05381916894676}, {"id": 267, "s_m": 26.682097015469576, "d_m": 0.0, "x_m": 1.223270096458293, "y_m": -1.1238753518565716, "d_right": 0.3989804606786142, "d_left": 2.453533684893423, "psi_rad": 0.017736659292421297, "kappa_radpm": 0.006072943619635305, "vx_mps": 9.187222008457825, "ax_mps2": 4.027808674207297}, {"id": 268, "s_m": 26.78202996309306, "d_m": 0.0, "x_m": 1.3231511456561875, "y_m": -1.122096501615344, "d_right": 0.40076171662518467, "d_left": 2.451753532238403, "psi_rad": 0.01761267908406139, "kappa_radpm": -0.00926613757162915, "vx_mps": 9.230930062525973, "ax_mps2": 4.002073567387811}, {"id": 269, "s_m": 26.881962910716542, "d_m": 0.0, "x_m": 1.4231048623618456, "y_m": -1.1204088332784268, "d_right": 0.4024449187415516, "d_left": 2.4500659369867197, "psi_rad": 0.01590110578437476, "kappa_radpm": -0.022728166981336468, "vx_mps": 9.274154831338322, "ax_mps2": 3.976608490314879}, {"id": 270, "s_m": 26.981895858340025, "d_m": 0.0, "x_m": 1.5230271256130334, "y_m": -1.118926545973714, "d_right": 0.4039269991696576, "d_left": 2.4485830825992303, "psi_rad": 0.013833000887407465, "kappa_radpm": -0.018676440700231414, "vx_mps": 9.316905937681211, "ax_mps2": 3.9514082536536983}, {"id": 271, "s_m": 27.081828805963504, "d_m": 0.0, "x_m": 1.6229763211213917, "y_m": -1.1176308430097366, "d_right": 0.37301866988670745, "d_left": 2.4472872942034605, "psi_rad": 0.012133369523714022, "kappa_radpm": -0.016827753934799322, "vx_mps": 9.359192700212029, "ax_mps2": 3.9264678294943605}, {"id": 272, "s_m": 27.181761753586986, "d_m": 0.0, "x_m": 1.7229158046194886, "y_m": -1.1165074050172303, "d_right": 0.35485734965127175, "d_left": 2.4461635531512504, "psi_rad": 0.010296167884102259, "kappa_radpm": -0.019942452318334518, "vx_mps": 9.401024146740738, "ax_mps2": 3.9017823443525588}, {"id": 273, "s_m": 27.28169470121047, "d_m": 0.0, "x_m": 1.8228427910217995, "y_m": -1.1155818619349722, "d_right": 0.35578527559869594, "d_left": 2.433496339686624, "psi_rad": 0.0082373097585835, "kappa_radpm": -0.01927816789644595, "vx_mps": 9.442409026774643, "ax_mps2": 3.877347072557546}, {"id": 274, "s_m": 27.38162764883395, "d_m": 0.0, "x_m": 1.9227639145267086, "y_m": -1.1148469651366222, "d_right": 0.3565231979612694, "d_left": 2.4170180580830483, "psi_rad": 0.00655266084406847, "kappa_radpm": -0.014432852097756273, "vx_mps": 9.48335582337577, "ax_mps2": 3.8531574300002975}, {"id": 275, "s_m": 27.48156059645743, "d_m": 0.0, "x_m": 2.0226951432955995, "y_m": -1.1142664742892319, "d_right": 0.35710639233619157, "d_left": 2.404735350134267, "psi_rad": 0.004880886613403357, "kappa_radpm": -0.023934063323809058, "vx_mps": 9.523872764376351, "ax_mps2": 3.8292089682185666}, {"id": 276, "s_m": 27.581493544080914, "d_m": 0.0, "x_m": 2.1226121948429446, "y_m": -1.1139265103100475, "d_right": 0.35745026467056407, "d_left": 2.396801204970808, "psi_rad": 0.0016411201778137041, "kappa_radpm": -0.04092111207186698, "vx_mps": 9.563967832994335, "ax_mps2": 3.805497368798711}, {"id": 277, "s_m": 27.681426491704393, "d_m": 0.0, "x_m": 2.2225540902290364, "y_m": -1.1139726065315323, "d_right": 0.35740729715009334, "d_left": 2.393401982018866, "psi_rad": -0.0024927260470701817, "kappa_radpm": -0.03874766318595253, "vx_mps": 9.60364877788777, "ax_mps2": 3.7820184380705757}, {"id": 278, "s_m": 27.781359439327876, "d_m": 0.0, "x_m": 2.3224704257802156, "y_m": -1.1144054061674489, "d_right": 0.35697974568268437, "d_left": 2.393835419180072, "psi_rad": -0.006073806077630639, "kappa_radpm": -0.03321475103361364, "vx_mps": 9.642923122683845, "ax_mps2": 3.7587681020781023}, {"id": 279, "s_m": 27.88129238695136, "d_m": 0.0, "x_m": 2.4224094307445494, "y_m": -1.1151883765568382, "d_right": 0.3562013285309091, "d_left": 2.3946186858472016, "psi_rad": -0.009695564941449852, "kappa_radpm": -0.03926172591435663, "vx_mps": 9.681798175015752, "ax_mps2": 3.7357424018110086}, {"id": 280, "s_m": 27.981225334574837, "d_m": 0.0, "x_m": 2.5223284056635107, "y_m": -1.1163628820418183, "d_right": 0.35503323552735644, "d_left": 2.3957937247094794, "psi_rad": -0.013866609549534115, "kappa_radpm": -0.04014111718438041, "vx_mps": 9.720281035098127, "ax_mps2": 3.712937488676103}, {"id": 281, "s_m": 28.08115828219832, "d_m": 0.0, "x_m": 2.622252870781871, "y_m": -1.1179181045099265, "d_right": 0.35348481886441463, "d_left": 2.3973493703588122, "psi_rad": -0.016949111306723497, "kappa_radpm": -0.02154559240717113, "vx_mps": 9.758378603869527, "ax_mps2": 3.69034962019809}, {"id": 282, "s_m": 28.181091229821803, "d_m": 0.0, "x_m": 2.7221668342304364, "y_m": -1.11969078708167, "d_right": 0.3599130839740848, "d_left": 2.3991225995633285, "psi_rad": -0.01835832409787308, "kappa_radpm": -0.012352300370430709, "vx_mps": 9.79609759072835, "ax_mps2": 3.6679751559332114}, {"id": 283, "s_m": 28.281024177445282, "d_m": 0.0, "x_m": 2.8220805123165, "y_m": -1.1215956155806193, "d_right": 0.3924319231022843, "d_left": 2.4010279665440395, "psi_rad": -0.019853439460218558, "kappa_radpm": -0.017569626124467955, "vx_mps": 9.833444520886767, "ax_mps2": 3.645810553583962}, {"id": 284, "s_m": 28.380957125068765, "d_m": 0.0, "x_m": 2.9219867461114934, "y_m": -1.123673225513763, "d_right": 0.3971195182161124, "d_left": 2.4031062010180353, "psi_rad": -0.021737928641337945, "kappa_radpm": -0.01824796149026909, "vx_mps": 9.870425742365466, "ax_mps2": 3.6238523653036694}, {"id": 285, "s_m": 28.480890072692247, "d_m": 0.0, "x_m": 3.0218951539857475, "y_m": -1.1259321947743588, "d_right": 0.39486062600013866, "d_left": 2.3909284214783653, "psi_rad": -0.023431982727221357, "kappa_radpm": -0.015654953066147996, "vx_mps": 9.907047432650412, "ax_mps2": 3.602097234176983}, {"id": 286, "s_m": 28.580823020315727, "d_m": 0.0, "x_m": 3.1217909164063613, "y_m": -1.1283528435822539, "d_right": 0.39244009004372554, "d_left": 2.3781472572058684, "psi_rad": -0.025085926885850096, "kappa_radpm": -0.018779538808800428, "vx_mps": 9.943315605031376, "ax_mps2": 3.5805418908689197}, {"id": 287, "s_m": 28.68075596793921, "d_m": 0.0, "x_m": 3.22169847869538, "y_m": -1.1309615414810323, "d_right": 0.38983151431883006, "d_left": 2.36970097096934, "psi_rad": -0.027205200495204584, "kappa_radpm": -0.02362786634350444, "vx_mps": 9.979236114640653, "ax_mps2": 3.559183150432684}, {"id": 288, "s_m": 28.780688915562692, "d_m": 0.0, "x_m": 3.3215779147324938, "y_m": -1.1337739773095823, "d_right": 0.38701927186008034, "d_left": 2.3656556809134774, "psi_rad": -0.028814873349581882, "kappa_radpm": -0.007609170561493737, "vx_mps": 10.014814664209089, "ax_mps2": 3.538017909263787}, {"id": 289, "s_m": 28.88062186318617, "d_m": 0.0, "x_m": 3.421478799712158, "y_m": -1.1366631545090948, "d_right": 0.38413028133925886, "d_left": 2.3659038670284387, "psi_rad": -0.028745895708357505, "kappa_radpm": 0.006268600987889295, "vx_mps": 10.050056809555466, "ax_mps2": 3.5170431421967487}, {"id": 290, "s_m": 28.980554810809654, "d_m": 0.0, "x_m": 3.521356852770294, "y_m": -1.1395136152186758, "d_right": 0.3812800869163118, "d_left": 2.36875475569669, "psi_rad": -0.028416320737701506, "kappa_radpm": 0.00033075422642672795, "vx_mps": 10.084967964824159, "ax_mps2": 3.496255899733255}, {"id": 291, "s_m": 29.080487758433136, "d_m": 0.0, "x_m": 3.621252815691873, "y_m": -1.1423605787068567, "d_right": 0.3784333820426307, "d_left": 2.3716020533762476, "psi_rad": -0.028614392736068694, "kappa_radpm": -0.0015323199526533944, "vx_mps": 10.119553407485046, "ax_mps2": 3.4756533053960297}, {"id": 292, "s_m": 29.180420706056616, "d_m": 0.0, "x_m": 3.7211380582928992, "y_m": -1.145215921297415, "d_right": 0.3755783599297783, "d_left": 2.3744577890319665, "psi_rad": -0.028430113422927006, "kappa_radpm": 0.0052159563255428434, "vx_mps": 10.153818283108736, "ax_mps2": 3.4552325532001746}, {"id": 293, "s_m": 29.2803536536801, "d_m": 0.0, "x_m": 3.821026558500611, "y_m": -1.1480251050745227, "d_right": 0.37276952307179845, "d_left": 2.377267350717695, "psi_rad": -0.02792200233879205, "kappa_radpm": -0.002004074291489859, "vx_mps": 10.187767609929324, "ax_mps2": 3.43499090523774}, {"id": 294, "s_m": 29.38028660130358, "d_m": 0.0, "x_m": 3.920926039011606, "y_m": -1.150860308393203, "d_right": 0.3699346636536801, "d_left": 2.362826580253587, "psi_rad": -0.029174218333168467, "kappa_radpm": -0.023036212376836392, "vx_mps": 10.221406283206122, "ax_mps2": 3.41492568936745}, {"id": 295, "s_m": 29.480219548927064, "d_m": 0.0, "x_m": 4.020794703815616, "y_m": -1.1539107631268073, "d_right": 0.3668847046741784, "d_left": 2.3513471045421075, "psi_rad": -0.03190992927533376, "kappa_radpm": -0.02594400000053941, "vx_mps": 10.25473907939509, "ax_mps2": 3.3950342970038183}, {"id": 296, "s_m": 29.580152496550543, "d_m": 0.0, "x_m": 4.120699303337211, "y_m": -1.1572201683491419, "d_right": 0.36357569655073674, "d_left": 2.3443291626481733, "psi_rad": -0.03422422763531929, "kappa_radpm": -0.020365691978155537, "vx_mps": 10.287770660140012, "ax_mps2": 3.375314181003625}, {"id": 297, "s_m": 29.680085444174026, "d_m": 0.0, "x_m": 4.2205370385450784, "y_m": -1.1607378885845094, "d_right": 0.36005871360765945, "d_left": 2.341772024036351, "psi_rad": -0.036229699678993255, "kappa_radpm": -0.02062603978928669, "vx_mps": 10.320505576092856, "ax_mps2": 3.3557628536403614}, {"id": 298, "s_m": 29.78001839179751, "d_m": 0.0, "x_m": 4.32044316156753, "y_m": -1.1644642542373185, "d_right": 0.3563328238261263, "d_left": 2.3436834381373344, "psi_rad": -0.03835363325336183, "kappa_radpm": -0.021839942808031476, "vx_mps": 10.35294827057216, "ax_mps2": 3.336377884664621}, {"id": 299, "s_m": 29.879951339420987, "d_m": 0.0, "x_m": 4.4202516906201135, "y_m": -1.1684039132151898, "d_right": 0.3523942077285586, "d_left": 2.3476225841913845, "psi_rad": -0.04055700643897331, "kappa_radpm": -0.022276406692684384, "vx_mps": 10.38510308306777, "ax_mps2": 3.317156899445573}, {"id": 300, "s_m": 29.97988428704447, "d_m": 0.0, "x_m": 4.520126921003487, "y_m": -1.1725688395424854, "d_right": 0.3482300459516777, "d_left": 2.350706949784998, "psi_rad": -0.04279857454230629, "kappa_radpm": -0.022014539235375403, "vx_mps": 10.416974252599747, "ax_mps2": 3.298097577190429}, {"id": 301, "s_m": 30.079817234667953, "d_m": 0.0, "x_m": 4.619934670104566, "y_m": -1.1769478636990907, "d_right": 0.3574610925791877, "d_left": 2.337024523203823, "psi_rad": -0.0448426751685842, "kappa_radpm": -0.01891007022718613, "vx_mps": 10.448565920938771, "ax_mps2": 3.2791976492343644}, {"id": 302, "s_m": 30.179750182291432, "d_m": 0.0, "x_m": 4.719776407146019, "y_m": -1.1815185759657976, "d_right": 0.38970311600598906, "d_left": 2.327739952376998, "psi_rad": -0.046674025391782115, "kappa_radpm": -0.021162313233330544, "vx_mps": 10.479882135694991, "ax_mps2": 3.2604548974030525}, {"id": 303, "s_m": 30.279683129914915, "d_m": 0.0, "x_m": 4.819585765309648, "y_m": -1.1863058186082873, "d_right": 0.38491242545773674, "d_left": 2.322941198138819, "psi_rad": -0.049375624247718575, "kappa_radpm": -0.032893850671218965, "vx_mps": 10.510926853281818, "ax_mps2": 3.2418671524385183}, {"id": 304, "s_m": 30.379616077538397, "d_m": 0.0, "x_m": 4.919384206066066, "y_m": -1.1914190695142608, "d_right": 0.37979557837831585, "d_left": 2.3227619775164383, "psi_rad": -0.05311577480765339, "kappa_radpm": -0.0395497974211008, "vx_mps": 10.541703941760776, "ax_mps2": 3.2234322924898025}, {"id": 305, "s_m": 30.479549025161877, "d_m": 0.0, "x_m": 5.019178744073623, "y_m": -1.1969258670038951, "d_right": 0.3742854452994031, "d_left": 2.327271716485575, "psi_rad": -0.05716828090928394, "kappa_radpm": -0.04154080499661175, "vx_mps": 10.572217183573231, "ax_mps2": 3.205148241661281}, {"id": 306, "s_m": 30.57948197278536, "d_m": 0.0, "x_m": 5.118912023864602, "y_m": -1.202833418943261, "d_right": 0.36837211453854996, "d_left": 2.3321957293146114, "psi_rad": -0.060918176618965925, "kappa_radpm": -0.028675918873874065, "vx_mps": 10.602470278164423, "ax_mps2": 3.1870129686196007}, {"id": 307, "s_m": 30.679414920408842, "d_m": 0.0, "x_m": 5.218689744432031, "y_m": -1.2090294073757293, "d_right": 0.3621727825636959, "d_left": 2.332535037684675, "psi_rad": -0.06278585255285529, "kappa_radpm": -0.00871842882480666, "vx_mps": 10.63246684450494, "ax_mps2": 3.1690244852545066}, {"id": 308, "s_m": 30.77934786803232, "d_m": 0.0, "x_m": 5.318381166325046, "y_m": -1.2153342764770887, "d_right": 0.3558605982092045, "d_left": 2.3214963552805514, "psi_rad": -0.06364578203926863, "kappa_radpm": -0.012722675054083277, "vx_mps": 10.662210423514523, "ax_mps2": 3.1511808453902694}, {"id": 309, "s_m": 30.879280815655804, "d_m": 0.0, "x_m": 5.418167385279748, "y_m": -1.2217727749936078, "d_right": 0.3494194550620152, "d_left": 2.3148421517304922, "psi_rad": -0.06537283554395046, "kappa_radpm": -0.021807808232298703, "vx_mps": 10.691704480392767, "ax_mps2": -1.8773123006777617}, {"id": 310, "s_m": 30.979213763279287, "d_m": 0.0, "x_m": 5.517811388537973, "y_m": -1.2284185330367814, "d_right": 0.36160391926492147, "d_left": 2.312712829544966, "psi_rad": -0.06795258524996628, "kappa_radpm": -0.029807809514478822, "vx_mps": 10.67414324395254, "ax_mps2": -8.356925788702428}, {"id": 311, "s_m": 31.079146710902766, "d_m": 0.0, "x_m": 5.617556454038013, "y_m": -1.2353694292831268, "d_right": 0.3871775061164037, "d_left": 2.3151965068860703, "psi_rad": -0.07132013809194904, "kappa_radpm": -0.03631590237938627, "vx_mps": 10.595615580896952, "ax_mps2": -8.352955676734004}, {"id": 312, "s_m": 31.17907965852625, "d_m": 0.0, "x_m": 5.717158651246023, "y_m": -1.2426583378299814, "d_right": 0.3798843695441871, "d_left": 2.322322164033095, "psi_rad": -0.07469644879453141, "kappa_radpm": -0.031306822942026656, "vx_mps": 10.516539286944997, "ax_mps2": -8.962996444315527}, {"id": 313, "s_m": 31.27901260614973, "d_m": 0.0, "x_m": 5.81689395760472, "y_m": -1.2502710026502937, "d_right": 0.37228215070545495, "d_left": 2.3299287891653977, "psi_rad": -0.07760196691925336, "kappa_radpm": -0.028265600127724343, "vx_mps": 10.431021103680076, "ax_mps2": -9.026671719813272}, {"id": 314, "s_m": 31.37894555377321, "d_m": 0.0, "x_m": 5.916571884920598, "y_m": -1.2581689752168772, "d_right": 0.3643909834609209, "d_left": 2.3281104950989406, "psi_rad": -0.08059390593503313, "kappa_radpm": -0.03165340812255023, "vx_mps": 10.344180849203973, "ax_mps2": -9.025517962600835}, {"id": 315, "s_m": 31.478878501396693, "d_m": 0.0, "x_m": 6.016272731133106, "y_m": -1.266385667845344, "d_right": 0.35618555486131687, "d_left": 2.3197489718804643, "psi_rad": -0.08385150900786265, "kappa_radpm": -0.03016609352745403, "vx_mps": 10.256616606531388, "ax_mps2": -9.227215759798609}, {"id": 316, "s_m": 31.578811449020176, "d_m": 0.0, "x_m": 6.115903612434124, "y_m": -1.274893209422441, "d_right": 0.34768446830615857, "d_left": 2.31597941164366, "psi_rad": -0.0863398649013265, "kappa_radpm": -0.019567851560410448, "vx_mps": 10.166315875227681, "ax_mps2": -10.375531263533242}, {"id": 317, "s_m": 31.678744396643655, "d_m": 0.0, "x_m": 6.215501837162944, "y_m": -1.2835967547387697, "d_right": 0.3631362639800668, "d_left": 2.316721552538672, "psi_rad": -0.08791329267587122, "kappa_radpm": -0.01486303030248952, "vx_mps": 10.063809598271298, "ax_mps2": -10.806234114652538}, {"id": 318, "s_m": 31.778677344267138, "d_m": 0.0, "x_m": 6.3149550966135575, "y_m": -1.2924387312688723, "d_right": 0.38102496330751956, "d_left": 2.321913204967765, "psi_rad": -0.08944954175375086, "kappa_radpm": -0.015909419152366797, "vx_mps": 9.955926173625645, "ax_mps2": -9.866808641013156}, {"id": 319, "s_m": 31.87861029189062, "d_m": 0.0, "x_m": 6.414600326135898, "y_m": -1.3014644314419082, "d_right": 0.3721065957119335, "d_left": 2.3309427402490432, "psi_rad": -0.0913961527844862, "kappa_radpm": -0.02582389657060465, "vx_mps": 9.856390182638753, "ax_mps2": -8.51465621782375}, {"id": 320, "s_m": 31.978543239514103, "d_m": 0.0, "x_m": 6.513874833880926, "y_m": -1.3107158737797966, "d_right": 0.3630168247980859, "d_left": 2.327292488349325, "psi_rad": -0.09469000913407699, "kappa_radpm": -0.0403819831774438, "vx_mps": 9.769679526203616, "ax_mps2": -8.510466365264245}, {"id": 321, "s_m": 32.07847618713758, "d_m": 0.0, "x_m": 6.613609254052895, "y_m": -1.3203903419442529, "d_right": 0.35448210024106774, "d_left": 2.3211597997684903, "psi_rad": -0.09858853931388611, "kappa_radpm": -0.03496539873783243, "vx_mps": 9.682235592344334, "ax_mps2": -9.07920421746175}, {"id": 322, "s_m": 32.17840913476106, "d_m": 0.0, "x_m": 6.712770322545798, "y_m": -1.3303587604411176, "d_right": 0.37314775237349823, "d_left": 2.319690072193259, "psi_rad": -0.10165078996829902, "kappa_radpm": -0.02628240171529232, "vx_mps": 9.588068772521737, "ax_mps2": -9.934791748944686}, {"id": 323, "s_m": 32.27834208238455, "d_m": 0.0, "x_m": 6.812423680838751, "y_m": -1.3406388910378, "d_right": 0.3810996450928737, "d_left": 2.322786408096629, "psi_rad": -0.10376536063113218, "kappa_radpm": -0.015835353724793805, "vx_mps": 9.483956808189893, "ax_mps2": -10.921943038165884}, {"id": 324, "s_m": 32.37827503000803, "d_m": 0.0, "x_m": 6.9117200807259875, "y_m": -1.3510417347403025, "d_right": 0.37077458554644344, "d_left": 2.3303151270005404, "psi_rad": -0.10488123017670081, "kappa_radpm": -0.00922821521386285, "vx_mps": 9.368164858522299, "ax_mps2": -11.457922021275584}, {"id": 325, "s_m": 32.478207977631506, "d_m": 0.0, "x_m": 7.0110981070456, "y_m": -1.361550960927899, "d_right": 0.3603429124387375, "d_left": 2.340828536070883, "psi_rad": -0.10585192726236303, "kappa_radpm": -0.010207968644361853, "vx_mps": 9.245131960875412, "ax_mps2": -11.213945526606237}, {"id": 326, "s_m": 32.57814092525499, "d_m": 0.0, "x_m": 7.11056641966519, "y_m": -1.3721738769383305, "d_right": 0.355838866916756, "d_left": 2.33550447901777, "psi_rad": -0.10699060601274368, "kappa_radpm": -0.013310063688845079, "vx_mps": 9.123112391726526, "ax_mps2": -10.874149231631222}, {"id": 327, "s_m": 32.67807387287847, "d_m": 0.0, "x_m": 7.209623372987959, "y_m": -1.3828863977128696, "d_right": 0.37842867630390215, "d_left": 2.3313109061417268, "psi_rad": -0.10853600896961169, "kappa_radpm": -0.017755312407466698, "vx_mps": 9.003210990576923, "ax_mps2": -10.873515368257902}, {"id": 328, "s_m": 32.77800682050195, "d_m": 0.0, "x_m": 7.309263515780998, "y_m": -1.3938302835541856, "d_right": 0.37707606363120444, "d_left": 2.3315523438107024, "psi_rad": -0.11020840079947147, "kappa_radpm": -0.015251462448268669, "vx_mps": 8.88169821921949, "ax_mps2": -11.101629207190946}, {"id": 329, "s_m": 32.87793976812544, "d_m": 0.0, "x_m": 7.408440156175958, "y_m": -1.4048765745554295, "d_right": 0.36605482836104203, "d_left": 2.33622096658872, "psi_rad": -0.11161149526005287, "kappa_radpm": -0.014320674566268541, "vx_mps": 8.755896652947174, "ax_mps2": -10.908626538041437}, {"id": 330, "s_m": 32.977872715748916, "d_m": 0.0, "x_m": 7.507766348744858, "y_m": -1.4160877045130897, "d_right": 0.365760481016719, "d_left": 2.3448853191539167, "psi_rad": -0.11325070387984737, "kappa_radpm": -0.018517999959761576, "vx_mps": 8.630496149593668, "ax_mps2": -10.906433953599983}, {"id": 331, "s_m": 33.077805663372395, "d_m": 0.0, "x_m": 7.607134979630416, "y_m": -1.4274797935993004, "d_right": 0.37356349630158375, "d_left": 2.337831080846018, "psi_rad": -0.11485226054335507, "kappa_radpm": -0.008635203020310452, "vx_mps": 8.503272287893823, "ax_mps2": -11.655132082641838}, {"id": 332, "s_m": 33.17773861099588, "d_m": 0.0, "x_m": 7.706134925827967, "y_m": -1.4389140435052232, "d_right": 0.38196967334023413, "d_left": 2.335129920560864, "psi_rad": -0.11482692855233378, "kappa_radpm": 0.008560963476928566, "vx_mps": 8.36517639946368, "ax_mps2": -11.43585052455425}, {"id": 333, "s_m": 33.27767155861936, "d_m": 0.0, "x_m": 7.805630383569596, "y_m": -1.4503400114033542, "d_right": 0.3705356004662355, "d_left": 2.3366329966213812, "psi_rad": -0.11378875442946956, "kappa_radpm": 0.012200076876847167, "vx_mps": 8.227426067194022, "ax_mps2": -11.434498235170917}, {"id": 334, "s_m": 33.37760450624285, "d_m": 0.0, "x_m": 7.904892549425114, "y_m": -1.4616223853587147, "d_right": 0.37479919199989353, "d_left": 2.3422855859117866, "psi_rad": -0.11276120594136718, "kappa_radpm": -9.965438922114493e-05, "vx_mps": 8.08734650331438, "ax_mps2": -10.258475503818815}, {"id": 335, "s_m": 33.477537453866326, "d_m": 0.0, "x_m": 8.004018884635393, "y_m": -1.4728996183071106, "d_right": 0.3988046594079465, "d_left": 2.348118538943266, "psi_rad": -0.11431692921678627, "kappa_radpm": -0.031354247466938205, "vx_mps": 7.959576249665028, "ax_mps2": -10.257983876790405}, {"id": 336, "s_m": 33.577470401489805, "d_m": 0.0, "x_m": 8.103449219184288, "y_m": -1.4844824888668937, "d_right": 0.38721015334653675, "d_left": 2.3420131910504165, "psi_rad": -0.11757419122218771, "kappa_radpm": -0.03082189860127523, "vx_mps": 7.829727513985913, "ax_mps2": -10.345101065134125}, {"id": 337, "s_m": 33.67740334911329, "d_m": 0.0, "x_m": 8.202586755121121, "y_m": -1.4963401466003787, "d_right": 0.39493114162407744, "d_left": 2.3404838184194987, "psi_rad": -0.12041055467955997, "kappa_radpm": -0.02438537217191104, "vx_mps": 7.696557675835645, "ax_mps2": -10.781698920416009}, {"id": 338, "s_m": 33.77733629673677, "d_m": 0.0, "x_m": 8.301708054752968, "y_m": -1.5084375612355716, "d_right": 0.40886532285794425, "d_left": 2.3434519753592156, "psi_rad": -0.12229701453621988, "kappa_radpm": -0.013311753056095329, "vx_mps": 7.5552700911650055, "ax_mps2": -10.311711423989248}, {"id": 339, "s_m": 33.87726924436025, "d_m": 0.0, "x_m": 8.400948171173765, "y_m": -1.5207226157274578, "d_right": 0.4025493559872198, "d_left": 2.35084640319881, "psi_rad": -0.12444266127901837, "kappa_radpm": -0.034550191089177125, "vx_mps": 7.417624061326414, "ax_mps2": -9.438918013847795}, {"id": 340, "s_m": 33.977202191983736, "d_m": 0.0, "x_m": 8.500012240692767, "y_m": -1.5333319704603807, "d_right": 0.3993925311368898, "d_left": 2.355095906011457, "psi_rad": -0.12909228147245866, "kappa_radpm": -0.05206569871715841, "vx_mps": 7.289350376828384, "ax_mps2": -9.437062598234562}, {"id": 341, "s_m": 34.077135139607215, "d_m": 0.0, "x_m": 8.59904926061334, "y_m": -1.5464472710573933, "d_right": 0.4104764979664186, "d_left": 2.3513479154698, "psi_rad": -0.13419960914684737, "kappa_radpm": -0.05011768527527191, "vx_mps": 7.1588045057446825, "ax_mps2": -9.514412540838771}, {"id": 342, "s_m": 34.177068087230694, "d_m": 0.0, "x_m": 8.698020541259229, "y_m": -1.5600656962118296, "d_right": 0.4124433838570298, "d_left": 2.352348655320719, "psi_rad": -0.13936290334838564, "kappa_radpm": -0.054235535914986976, "vx_mps": 7.024733117439177, "ax_mps2": -9.220695563093077}, {"id": 343, "s_m": 34.27700103485418, "d_m": 0.0, "x_m": 8.796899101063694, "y_m": -1.5742179419722149, "d_right": 0.4012828251674779, "d_left": 2.3581248565263597, "psi_rad": -0.14508523731929546, "kappa_radpm": -0.06237261183447669, "vx_mps": 6.8923125870588136, "ax_mps2": -8.690789698758971}, {"id": 344, "s_m": 34.37693398247766, "d_m": 0.0, "x_m": 8.895748457171349, "y_m": -1.5889993842488574, "d_right": 0.4140176106782803, "d_left": 2.357586622074724, "psi_rad": -0.15201506435055112, "kappa_radpm": -0.07617146187590589, "vx_mps": 6.765129735207141, "ax_mps2": -8.679772983026668}, {"id": 345, "s_m": 34.47686693010114, "d_m": 0.0, "x_m": 8.99432237107916, "y_m": -1.6044744996778841, "d_right": 0.4238282725430878, "d_left": 2.356973206490018, "psi_rad": -0.15913584297191896, "kappa_radpm": -0.061957423637157796, "vx_mps": 6.635675529770188, "ax_mps2": -9.433429905632334}, {"id": 346, "s_m": 34.576799877724625, "d_m": 0.0, "x_m": 9.092926353433603, "y_m": -1.620580468264133, "d_right": 0.4238329944997765, "d_left": 2.361205984009558, "psi_rad": -0.16441656261517856, "kappa_radpm": -0.04704402638879627, "vx_mps": 6.4920542837419415, "ax_mps2": -10.177718239678635}, {"id": 347, "s_m": 34.676732825348104, "d_m": 0.0, "x_m": 9.191516259226306, "y_m": -1.6371681850694801, "d_right": 0.43412915407969793, "d_left": 2.3701292186111855, "psi_rad": -0.16887941548191776, "kappa_radpm": -0.042187367307793135, "vx_mps": 6.333450091025225, "ax_mps2": -7.6427054829878855}, {"id": 348, "s_m": 34.77666577297158, "d_m": 0.0, "x_m": 9.289779870258748, "y_m": -1.6542106230894316, "d_right": 0.4279455606259907, "d_left": 2.3698997177624017, "psi_rad": -0.17598374712242904, "kappa_radpm": -0.11679277788327862, "vx_mps": 6.211688488812137, "ax_mps2": -5.5038281720786}, {"id": 349, "s_m": 34.87659872059507, "d_m": 0.0, "x_m": 9.388194517450891, "y_m": -1.6724597458655797, "d_right": 0.4436143773683932, "d_left": 2.372778238950586, "psi_rad": -0.19194238006456454, "kappa_radpm": -0.17716618760621664, "vx_mps": 6.122503273755206, "ax_mps2": -5.432659279675968}, {"id": 350, "s_m": 34.97653166821855, "d_m": 0.0, "x_m": 9.486004032421729, "y_m": -1.6922824132703673, "d_right": 0.4430470996955723, "d_left": 2.381488968514457, "psi_rad": -0.20715203654219216, "kappa_radpm": -0.12784158395940712, "vx_mps": 6.033178517716767, "ax_mps2": -6.454223894178543}, {"id": 351, "s_m": 35.07646461584203, "d_m": 0.0, "x_m": 9.583504292062932, "y_m": -1.7133973137595109, "d_right": 0.4583625215446284, "d_left": 2.3956373880655653, "psi_rad": -0.22008660922217027, "kappa_radpm": -0.1618234630453922, "vx_mps": 5.925307062921278, "ax_mps2": -3.9096055339217703}, {"id": 352, "s_m": 35.176397563465514, "d_m": 0.0, "x_m": 9.681307449745065, "y_m": -1.7362500124996114, "d_right": 0.45316773618599626, "d_left": 2.4070342467063983, "psi_rad": -0.2402977738400316, "kappa_radpm": -0.23954591373490622, "vx_mps": 5.858998803533329, "ax_mps2": -3.853598438894283}, {"id": 353, "s_m": 35.27633051108899, "d_m": 0.0, "x_m": 9.777654168248818, "y_m": -1.7610309355730265, "d_right": 0.46202248597184825, "d_left": 2.417290239616916, "psi_rad": -0.2627199672780778, "kappa_radpm": -0.21119261766699893, "vx_mps": 5.792897727208128, "ax_mps2": -4.9957065545850226}, {"id": 354, "s_m": 35.37626345871247, "d_m": 0.0, "x_m": 9.874096255211056, "y_m": -1.788018071482987, "d_right": 0.4555042112644344, "d_left": 2.4337659174362076, "psi_rad": -0.28253188437580556, "kappa_radpm": -0.18423550043294115, "vx_mps": 5.706066308322211, "ax_mps2": -6.0883106152434605}, {"id": 355, "s_m": 35.47619640633596, "d_m": 0.0, "x_m": 9.969791341899203, "y_m": -1.816708783938797, "d_right": 0.4563711370455587, "d_left": 2.455202313261658, "psi_rad": -0.2996028927193941, "kappa_radpm": -0.15796690455600182, "vx_mps": 5.598423623066817, "ax_mps2": -6.574664922362456}, {"id": 356, "s_m": 35.57612935395944, "d_m": 0.0, "x_m": 10.065109840365864, "y_m": -1.8469691458294455, "d_right": 0.4508756525147207, "d_left": 2.476592838207675, "psi_rad": -0.3157153282835452, "kappa_radpm": -0.1845399250129525, "vx_mps": 5.479808005090675, "ax_mps2": -4.9814419518119015}, {"id": 357, "s_m": 35.67606230158292, "d_m": 0.0, "x_m": 10.159919784374184, "y_m": -1.8790166178151246, "d_right": 0.4471871570486291, "d_left": 2.490935589354422, "psi_rad": -0.3372245123837847, "kappa_radpm": -0.2456126904019427, "vx_mps": 5.388197789366701, "ax_mps2": -4.929573489810224}, {"id": 358, "s_m": 35.7759952492064, "d_m": 0.0, "x_m": 10.253829645442892, "y_m": -1.913283672433703, "d_right": 0.43899818512077976, "d_left": 2.511504364612059, "psi_rad": -0.36262362422588446, "kappa_radpm": -0.2559541196531963, "vx_mps": 5.295981665244843, "ax_mps2": -4.907805044315108}, {"id": 359, "s_m": 35.87592819682988, "d_m": 0.0, "x_m": 10.34679555801146, "y_m": -1.9499285688154941, "d_right": 0.4507716146666075, "d_left": 2.5295016484563027, "psi_rad": -0.3883410468584019, "kappa_radpm": -0.24993156932610086, "vx_mps": 5.2025492741280175, "ax_mps2": -5.219108430091513}, {"id": 360, "s_m": 35.97586114445336, "d_m": 0.0, "x_m": 10.43878937310165, "y_m": -1.9887690284395545, "d_right": 0.4454916215708755, "d_left": 2.551454469261246, "psi_rad": -0.40933476153586335, "kappa_radpm": -0.17008779180568623, "vx_mps": 5.101313279044796, "ax_mps2": -7.660931977645192}, {"id": 361, "s_m": 36.07579409207685, "d_m": 0.0, "x_m": 10.530225984671429, "y_m": -2.029237381593353, "d_right": 0.43574127492068854, "d_left": 2.578775482967256, "psi_rad": -0.42372560163133444, "kappa_radpm": -0.16454866864270762, "vx_mps": 4.948963340217884, "ax_mps2": -5.438619779437508}, {"id": 362, "s_m": 36.17572703970033, "d_m": 0.0, "x_m": 10.620940852988111, "y_m": -2.0712727751207605, "d_right": 0.44348993430624917, "d_left": 2.611266642919743, "psi_rad": -0.4461151400051673, "kappa_radpm": -0.2842038781218332, "vx_mps": 4.837896602005407, "ax_mps2": -5.397024552146396}, {"id": 363, "s_m": 36.275659987323806, "d_m": 0.0, "x_m": 10.71045073288954, "y_m": -2.1158075068462474, "d_right": 0.45290400807834097, "d_left": 2.644688542694266, "psi_rad": -0.4773288073570088, "kappa_radpm": -0.2996111129941194, "vx_mps": 4.725099193446727, "ax_mps2": -5.3074208294960785}, {"id": 364, "s_m": 36.37559293494729, "d_m": 0.0, "x_m": 10.798499540123027, "y_m": -2.1629340336071823, "d_right": 0.45450345624232324, "d_left": 2.6756492780307077, "psi_rad": -0.5046683019326275, "kappa_radpm": -0.24729355040724982, "vx_mps": 4.611484573580535, "ax_mps2": -6.820764604347818}, {"id": 365, "s_m": 36.47552588257077, "d_m": 0.0, "x_m": 10.885281686154412, "y_m": -2.212277387414267, "d_right": 0.4428159533558361, "d_left": 2.69889176410925, "psi_rad": -0.5296756255988138, "kappa_radpm": -0.2614593450624596, "vx_mps": 4.461227605542504, "ax_mps2": -6.594389474497924}, {"id": 366, "s_m": 36.57545883019425, "d_m": 0.0, "x_m": 10.970900466433825, "y_m": -2.2639635276981616, "d_right": 0.4286585343979629, "d_left": 2.677500496087397, "psi_rad": -0.5569925419979924, "kappa_radpm": -0.29473153273272584, "vx_mps": 4.310981117161946, "ax_mps2": -4.929047652065412}, {"id": 367, "s_m": 36.67539177781774, "d_m": 0.0, "x_m": 11.054858222157323, "y_m": -2.318198841164994, "d_right": 0.4344739922250943, "d_left": 2.626526150904538, "psi_rad": -0.5919469290688903, "kappa_radpm": -0.40563796500405835, "vx_mps": 4.195165034993477, "ax_mps2": -4.475636407996704}, {"id": 368, "s_m": 36.775324725441216, "d_m": 0.0, "x_m": 11.136448405516358, "y_m": -2.37570571690159, "d_right": 0.4285344880681477, "d_left": 2.5718929737590095, "psi_rad": -0.6369535621339661, "kappa_radpm": -0.45429483467726817, "vx_mps": 4.087160700700142, "ax_mps2": -4.3256837035721}, {"id": 369, "s_m": 36.875257673064695, "d_m": 0.0, "x_m": 11.215420796901533, "y_m": -2.436807539065552, "d_right": 0.42849203486495535, "d_left": 2.511706948420343, "psi_rad": -0.6788695862583505, "kappa_radpm": -0.38319168548554566, "vx_mps": 3.9799906968959187, "ax_mps2": -5.5498448653328145}, {"id": 370, "s_m": 36.97519062068818, "d_m": 0.0, "x_m": 11.291916799335223, "y_m": -2.500924226013123, "d_right": 0.411916390430879, "d_left": 2.4505795757323274, "psi_rad": -0.7174859241143032, "kappa_radpm": -0.44172550348565576, "vx_mps": 3.838111675666369, "ax_mps2": -3.8863252510067134}, {"id": 371, "s_m": 37.07512356831166, "d_m": 0.0, "x_m": 11.365722095921818, "y_m": -2.5685834746990883, "d_right": 0.4063256027319746, "d_left": 2.3930895408248722, "psi_rad": -0.7688691020671814, "kappa_radpm": -0.585309645715877, "vx_mps": 3.7355531530649095, "ax_mps2": -3.8211378757801437}, {"id": 372, "s_m": 37.17505651593514, "d_m": 0.0, "x_m": 11.435124434030127, "y_m": -2.639854224999517, "d_right": 0.40499272174004497, "d_left": 2.3343492147875646, "psi_rad": -0.8281742815763535, "kappa_radpm": -0.5813905034121744, "vx_mps": 3.6318923740893436, "ax_mps2": -4.258509184299407}, {"id": 373, "s_m": 37.274989463558626, "d_m": 0.0, "x_m": 11.500880787903313, "y_m": -2.7157124755504407, "d_right": 0.3978546751887279, "d_left": 2.281734094471381, "psi_rad": -0.8842522031486229, "kappa_radpm": -0.5444830837485914, "vx_mps": 3.512764077821178, "ax_mps2": -2.49552907641185}, {"id": 374, "s_m": 37.374922411182105, "d_m": 0.0, "x_m": 11.561514152654706, "y_m": -2.794627373543996, "d_right": 0.3849019382008793, "d_left": 2.232066542734068, "psi_rad": -0.9514143191676601, "kappa_radpm": -0.8065581199950993, "vx_mps": 3.441037679749962, "ax_mps2": -0.045738982845254954}, {"id": 375, "s_m": 37.474855358805584, "d_m": 0.0, "x_m": 11.615967693840197, "y_m": -2.878761656321561, "d_right": 0.37892920701908583, "d_left": 2.177505067609248, "psi_rad": -1.0454186669776773, "kappa_radpm": -1.014233186424475, "vx_mps": 3.4397090939067727, "ax_mps2": -0.04573898284524281}, {"id": 376, "s_m": 37.57478830642907, "d_m": 0.0, "x_m": 11.661679380558878, "y_m": -2.9673132915673532, "d_right": 0.3692211980263853, "d_left": 2.131784884829253, "psi_rad": -1.1413945963158945, "kappa_radpm": -0.9115740492180222, "vx_mps": 3.4383799946996696, "ax_mps2": 1.1772513690827155}, {"id": 377, "s_m": 37.67472125405255, "d_m": 0.0, "x_m": 11.699305350275012, "y_m": -3.0600655353160673, "d_right": 0.347042151049289, "d_left": 2.0941854327287275, "psi_rad": -1.2281975735148114, "kappa_radpm": -0.8462528557114463, "vx_mps": 3.472427016765554, "ax_mps2": 1.7494819042066765}, {"id": 378, "s_m": 37.77465420167603, "d_m": 0.0, "x_m": 11.72880612899911, "y_m": -3.155433366213644, "d_right": 0.33734825757032993, "d_left": 2.064715340564919, "psi_rad": -1.313805787059235, "kappa_radpm": -0.8709424573467965, "vx_mps": 3.5224155282655034, "ax_mps2": 1.1458938626864925}, {"id": 379, "s_m": 37.874587149299515, "d_m": 0.0, "x_m": 11.749934972061528, "y_m": -3.2531268632384127, "d_right": 0.3284424803727929, "d_left": 2.030673179108128, "psi_rad": -1.401607184053904, "kappa_radpm": -0.8503776800851601, "vx_mps": 3.5547765410064516, "ax_mps2": 0.3989605015287876}, {"id": 380, "s_m": 37.974520096922994, "d_m": 0.0, "x_m": 11.762741471241332, "y_m": -3.3521218259391383, "d_right": 0.29570138478159236, "d_left": 2.0030573392373983, "psi_rad": -1.4807747397074436, "kappa_radpm": -0.7357864809259193, "vx_mps": 3.5659746009045015, "ax_mps2": -2.6487955647652104}, {"id": 381, "s_m": 38.07445304454647, "d_m": 0.0, "x_m": 11.768209990541617, "y_m": -3.4520668503666943, "d_right": 0.27564757571566656, "d_left": 1.9835950635778667, "psi_rad": -1.5515383479783535, "kappa_radpm": -0.746523993960464, "vx_mps": 3.490955593733333, "ax_mps2": -0.9447211812546235}, {"id": 382, "s_m": 38.17438599216996, "d_m": 0.0, "x_m": 11.766115187021231, "y_m": -3.5519927188801486, "d_right": 0.273565295257184, "d_left": 1.9639919720069414, "psi_rad": -1.6349555369315736, "kappa_radpm": -0.9252962167266021, "vx_mps": 3.4638062031193106, "ax_mps2": -0.6878358974094724}, {"id": 383, "s_m": 38.27431893979344, "d_m": 0.0, "x_m": 11.754860939146566, "y_m": -3.651221485963092, "d_right": 0.27248531334316817, "d_left": 1.958488050918315, "psi_rad": -1.733101187851461, "kappa_radpm": -0.957635457424206, "vx_mps": 3.443904539232915, "ax_mps2": -0.2932876994856602}, {"id": 384, "s_m": 38.37425188741692, "d_m": 0.0, "x_m": 11.734249486410244, "y_m": -3.748956923222748, "d_right": 0.2908257780435037, "d_left": 1.9638105775226393, "psi_rad": -1.8218926301418215, "kappa_radpm": -0.8204288252951855, "vx_mps": 3.435383569083146, "ax_mps2": -2.324508577521788}, {"id": 385, "s_m": 38.474184835040404, "d_m": 0.0, "x_m": 11.705596383185458, "y_m": -3.844742415785518, "d_right": 0.2775377061833739, "d_left": 1.9644832671927295, "psi_rad": -1.9016911593024126, "kappa_radpm": -0.8572892041370735, "vx_mps": 3.3670863188921656, "ax_mps2": -0.04379415450974348}, {"id": 386, "s_m": 38.57411778266388, "d_m": 0.0, "x_m": 11.668816272929979, "y_m": -3.9376183396041524, "d_right": 0.2909604913611828, "d_left": 1.9766455893876096, "psi_rad": -1.9974009002759026, "kappa_radpm": -1.0592736595621146, "vx_mps": 3.3657862856950858, "ax_mps2": -0.04379415450974036}, {"id": 387, "s_m": 38.67405073028737, "d_m": 0.0, "x_m": 11.622621057587121, "y_m": -4.026069440743774, "d_right": 0.29489231824266315, "d_left": 1.9886965584663463, "psi_rad": -2.1047632058454724, "kappa_radpm": -0.9503619707607441, "vx_mps": 3.364485750166799, "ax_mps2": 1.1983661143229143}, {"id": 388, "s_m": 38.77398367791085, "d_m": 0.0, "x_m": 11.568204889957359, "y_m": -4.10994458605309, "d_right": 0.29313471650245715, "d_left": 2.0072202024284223, "psi_rad": -2.1819936390146015, "kappa_radpm": -0.5985651239519749, "vx_mps": 3.399893657064617, "ax_mps2": 5.036333769524584}, {"id": 389, "s_m": 38.87391662553433, "d_m": 0.0, "x_m": 11.508645905533248, "y_m": -4.190451463391539, "d_right": 0.3079773425391586, "d_left": 2.0364397313838434, "psi_rad": -2.232469724169947, "kappa_radpm": -0.5233530368780571, "vx_mps": 3.5448368420784524, "ax_mps2": 5.375037150839598}, {"id": 390, "s_m": 38.973849573157814, "d_m": 0.0, "x_m": 11.445081420671713, "y_m": -4.267478147418318, "d_right": 0.3175142600791212, "d_left": 2.0666130753986773, "psi_rad": -2.2911217137975686, "kappa_radpm": -0.6511204071262123, "vx_mps": 3.693258026335965, "ax_mps2": 3.0658862625672962}, {"id": 391, "s_m": 39.07378252078129, "d_m": 0.0, "x_m": 11.376657045323515, "y_m": -4.340299272996726, "d_right": 0.3206250077461389, "d_left": 2.102787409596513, "psi_rad": -2.3589975982549825, "kappa_radpm": -0.658263554296025, "vx_mps": 3.775304087313814, "ax_mps2": 2.5627221850812916}, {"id": 392, "s_m": 39.17371546840477, "d_m": 0.0, "x_m": 11.303612326846947, "y_m": -4.408470934249077, "d_right": 0.3270289898696259, "d_left": 2.1394140086005957, "psi_rad": -2.4212143727589477, "kappa_radpm": -0.58832605923197, "vx_mps": 3.8425410492900274, "ax_mps2": 3.256214634348521}, {"id": 393, "s_m": 39.27364841602826, "d_m": 0.0, "x_m": 11.22650868607934, "y_m": -4.472300581568016, "d_right": 0.34653762496008317, "d_left": 2.1710608009471724, "psi_rad": -2.479373196630247, "kappa_radpm": -0.6037595557479192, "vx_mps": 3.9263122606956857, "ax_mps2": 2.6328907774015056}, {"id": 394, "s_m": 39.37358136365174, "d_m": 0.0, "x_m": 11.145920804811311, "y_m": -4.531179883522267, "d_right": 0.3536636090419104, "d_left": 2.2122114149565797, "psi_rad": -2.5429673027208892, "kappa_radpm": -0.6711847993814675, "vx_mps": 3.9927625825738846, "ax_mps2": 1.2382395105230162}, {"id": 395, "s_m": 39.47351431127522, "d_m": 0.0, "x_m": 11.061283736242771, "y_m": -4.584843433411521, "d_right": 0.3571575729899663, "d_left": 2.2403502301117393, "psi_rad": -2.608231628579289, "kappa_radpm": -0.5803894837207471, "vx_mps": 4.023634537219169, "ax_mps2": 2.5411197425472736}, {"id": 396, "s_m": 39.5734472588987, "d_m": 0.0, "x_m": 10.974125169214407, "y_m": -4.63326557625277, "d_right": 0.3679884678636721, "d_left": 2.2102513448873196, "psi_rad": -2.6580766535086564, "kappa_radpm": -0.41976609520584485, "vx_mps": 4.086259666415839, "ax_mps2": 4.9263982297516655}, {"id": 397, "s_m": 39.67338020652218, "d_m": 0.0, "x_m": 10.884360780568931, "y_m": -4.678150405671583, "d_right": 0.3746593630259237, "d_left": 2.180748396466307, "psi_rad": -2.6978327052702396, "kappa_radpm": -0.40533607477987726, "vx_mps": 4.205013323868217, "ax_mps2": 4.764435786398031}, {"id": 398, "s_m": 39.77331315414566, "d_m": 0.0, "x_m": 10.79379065658008, "y_m": -4.718945240721412, "d_right": 0.38119540593503004, "d_left": 2.159684342796599, "psi_rad": -2.739342243077269, "kappa_radpm": -0.4294832171259113, "vx_mps": 4.316756337541455, "ax_mps2": 3.9248068428432146}, {"id": 399, "s_m": 39.87324610176915, "d_m": 0.0, "x_m": 10.700743565095664, "y_m": -4.7564134531973234, "d_right": 0.37631799238121316, "d_left": 2.1370303207320123, "psi_rad": -2.77541569560508, "kappa_radpm": -0.27369358979159736, "vx_mps": 4.406679056956681, "ax_mps2": 6.6101234459061695}, {"id": 400, "s_m": 39.97317904939263, "d_m": 0.0, "x_m": 10.607439032773932, "y_m": -4.791057635809566, "d_right": 0.38507813458020895, "d_left": 2.1185399047515765, "psi_rad": -2.7938266767813715, "kappa_radpm": -0.11702818594774961, "vx_mps": 4.554114464001708, "ax_mps2": 6.671996082565724}, {"id": 401, "s_m": 40.073111997016106, "d_m": 0.0, "x_m": 10.513080471151474, "y_m": -4.8245656375698935, "d_right": 0.37798096292677363, "d_left": 2.1059518322730635, "psi_rad": -2.80759549091813, "kappa_radpm": -0.15791163629110477, "vx_mps": 4.698240417577177, "ax_mps2": 6.592242243800847}, {"id": 402, "s_m": 40.17304494463959, "d_m": 0.0, "x_m": 10.41861558269891, "y_m": -4.856454275671765, "d_right": 0.38759149068753657, "d_left": 2.096579871502658, "psi_rad": -2.824466487120464, "kappa_radpm": -0.14724543738060003, "vx_mps": 4.83642713364917, "ax_mps2": 6.515624140575533}, {"id": 403, "s_m": 40.27297789226307, "d_m": 0.0, "x_m": 10.323501183718367, "y_m": -4.887088660553011, "d_right": 0.4185636871000503, "d_left": 2.0829997011404764, "psi_rad": -2.833714771765912, "kappa_radpm": -0.03751595414881292, "vx_mps": 4.969233187429098, "ax_mps2": 6.441850234873845}, {"id": 404, "s_m": 40.37291083988655, "d_m": 0.0, "x_m": 10.22837337553764, "y_m": -4.917285570553974, "d_right": 0.416538678092079, "d_left": 2.074577624092603, "psi_rad": -2.8343630963220487, "kappa_radpm": -0.010223956156782994, "vx_mps": 5.097134943798, "ax_mps2": 6.370671765512605}, {"id": 405, "s_m": 40.47284378751004, "d_m": 0.0, "x_m": 10.133061227241068, "y_m": -4.947416010236568, "d_right": 0.4278481655896409, "d_left": 2.066425047713369, "psi_rad": -2.836988364683635, "kappa_radpm": -0.04212969596440876, "vx_mps": 5.220542562897599, "ax_mps2": 6.301874430691366}, {"id": 406, "s_m": 40.572776735133516, "d_m": 0.0, "x_m": 10.037889736511778, "y_m": -4.977133286293879, "d_right": 0.4439763468386271, "d_left": 2.057192472425955, "psi_rad": -2.840308347788082, "kappa_radpm": -0.014305098491648198, "vx_mps": 5.339812208856176, "ax_mps2": 6.2352720422039}, {"id": 407, "s_m": 40.672709682756995, "d_m": 0.0, "x_m": 9.94223189463346, "y_m": -5.006852320443363, "d_right": 0.4524818689628437, "d_left": 2.0409980708006814, "psi_rad": -2.8397797041029555, "kappa_radpm": 0.021987738004886986, "vx_mps": 5.455255507734985, "ax_mps2": 6.170701608339576}, {"id": 408, "s_m": 40.77264263038048, "d_m": 0.0, "x_m": 9.847159254973402, "y_m": -5.036542292589234, "d_right": 0.4664594643078056, "d_left": 2.025784969185156, "psi_rad": -2.8382379990776307, "kappa_radpm": 0.009071714034309534, "vx_mps": 5.567146976317907, "ax_mps2": 6.108019470863605}, {"id": 409, "s_m": 40.87257557800396, "d_m": 0.0, "x_m": 9.751641021270814, "y_m": -5.066467111347678, "d_right": 0.49245093195668055, "d_left": 2.0093971112072, "psi_rad": -2.837913654363616, "kappa_radpm": -0.00020269498113888748, "vx_mps": 5.675729929767238, "ax_mps2": 6.047098232311372}, {"id": 410, "s_m": 40.97250852562744, "d_m": 0.0, "x_m": 9.656448533521642, "y_m": -5.096296760780314, "d_right": 0.48904597009033973, "d_left": 1.9887720692975206, "psi_rad": -2.8379322841141814, "kappa_radpm": -0.00017108748374771476, "vx_mps": 5.781221232361103, "ax_mps2": 5.987824284471605}, {"id": 411, "s_m": 41.072441473250926, "d_m": 0.0, "x_m": 9.561021647227678, "y_m": -5.126197688975287, "d_right": 0.5057568425912357, "d_left": 1.972950516876428, "psi_rad": -2.8379739562232835, "kappa_radpm": -0.0013862026873247548, "vx_mps": 5.883815156741441, "ax_mps2": 5.930095800208363}, {"id": 412, "s_m": 41.172374420874405, "d_m": 0.0, "x_m": 9.465669289258333, "y_m": -5.156059869533345, "d_right": 0.5357830018495987, "d_left": 1.962125973542156, "psi_rad": -2.838255062563814, "kappa_radpm": -0.004210997847410835, "vx_mps": 5.983686547999417, "ax_mps2": 5.873821086646221}, {"id": 413, "s_m": 41.272307368497884, "d_m": 0.0, "x_m": 9.37031070116176, "y_m": -5.185880711396942, "d_right": 0.5657883053345657, "d_left": 1.95033825898664, "psi_rad": -2.83877779335716, "kappa_radpm": -0.005703312668542987, "vx_mps": 6.080993439785328, "ax_mps2": 5.818917223257856}, {"id": 414, "s_m": 41.37224031612137, "d_m": 0.0, "x_m": 9.274821684595626, "y_m": -5.215682946429438, "d_right": 0.5846524485851922, "d_left": 1.9352650272281091, "psi_rad": -2.839372582909613, "kappa_radpm": -0.006186418760884418, "vx_mps": 6.175879234158214, "ax_mps2": 5.765308926808645}, {"id": 415, "s_m": 41.47217326374485, "d_m": 0.0, "x_m": 9.179484319944743, "y_m": -5.245373697061981, "d_right": 0.586290463624999, "d_left": 1.9253521159119633, "psi_rad": -2.8399912756156116, "kappa_radpm": -0.005956131121470178, "vx_mps": 6.268474530931631, "ax_mps2": 5.712927598597005}, {"id": 416, "s_m": 41.57210621136833, "d_m": 0.0, "x_m": 9.083913822207501, "y_m": -5.275074696454123, "d_right": 0.6046474747067518, "d_left": 1.9123973384538684, "psi_rad": -2.8405576014235203, "kappa_radpm": -0.005368028702441551, "vx_mps": 6.35889867303397, "ax_mps2": 5.661710519420886}, {"id": 417, "s_m": 41.672039158991815, "d_m": 0.0, "x_m": 8.988546323557035, "y_m": -5.304658363777558, "d_right": 0.6343843298108977, "d_left": 1.898193670122145, "psi_rad": -2.8409888815011612, "kappa_radpm": -0.0026471339791498947, "vx_mps": 6.447261059977829, "ax_mps2": 5.611600165190555}, {"id": 418, "s_m": 41.771972106615294, "d_m": 0.0, "x_m": 8.89295255319301, "y_m": -5.3342845312688345, "d_right": 0.6641719294392635, "d_left": 1.8875878194860694, "psi_rad": -2.8410774903841816, "kappa_radpm": 0.0008558410784785412, "vx_mps": 6.533662270602164, "ax_mps2": 5.562543621790362}, {"id": 419, "s_m": 41.87190505423877, "d_m": 0.0, "x_m": 8.797528734329852, "y_m": -5.363865863809581, "d_right": 0.6939373027357273, "d_left": 1.8637435640566913, "psi_rad": -2.8408604237775092, "kappa_radpm": 0.003212622479821073, "vx_mps": 6.618195027884084, "ax_mps2": 5.514492082135731}, {"id": 420, "s_m": 41.97183800186226, "d_m": 0.0, "x_m": 8.701996857554489, "y_m": -5.3935142725089165, "d_right": 0.7072741812671192, "d_left": 1.8449563148768642, "psi_rad": -2.8404403800533142, "kappa_radpm": 0.00518452418705553, "vx_mps": 6.700945032153153, "ax_mps2": 5.4674004117333}, {"id": 421, "s_m": 42.07177094948574, "d_m": 0.0, "x_m": 8.606592374516765, "y_m": -5.423173407160592, "d_right": 0.7130620596729202, "d_left": 1.8314121509727872, "psi_rad": -2.8399724728184133, "kappa_radpm": 0.003260583736054402, "vx_mps": 6.781991684004241, "ax_mps2": 5.421226771667997}, {"id": 422, "s_m": 42.17170389710922, "d_m": 0.0, "x_m": 8.511129176147083, "y_m": -5.452884815310066, "d_right": 0.7326082833012936, "d_left": 1.823213642734418, "psi_rad": -2.839802183800554, "kappa_radpm": 0.0001513659239996896, "vx_mps": 6.861408714248036, "ax_mps2": 5.3759322899976425}, {"id": 423, "s_m": 42.271636844732704, "d_m": 0.0, "x_m": 8.415769154757273, "y_m": -5.482566738819158, "d_right": 0.7624513748798689, "d_left": 1.8071048494519213, "psi_rad": -2.839903484916733, "kappa_radpm": -0.0019553305848928836, "vx_mps": 6.939264735106045, "ax_mps2": 5.33148077416579}, {"id": 424, "s_m": 42.37156979235618, "d_m": 0.0, "x_m": 8.320294300490334, "y_m": -5.512263983049619, "d_right": 0.7923194596352865, "d_left": 1.7890060630035356, "psi_rad": -2.8401891441102673, "kappa_radpm": -0.0037543403893498107, "vx_mps": 7.0156237243602915, "ax_mps2": 5.287838458338542}, {"id": 425, "s_m": 42.47150273997966, "d_m": 0.0, "x_m": 8.224923207442236, "y_m": -5.541890684556824, "d_right": 0.8103151903827236, "d_left": 1.7764074778644308, "psi_rad": -2.8406179968618552, "kappa_radpm": -0.004628947802350335, "vx_mps": 7.090545452164036, "ax_mps2": 5.244973780614206}, {"id": 426, "s_m": 42.57143568760315, "d_m": 0.0, "x_m": 8.129416531957661, "y_m": -5.5715110969535475, "d_right": 0.8185400470825062, "d_left": 1.7506443734191273, "psi_rad": -2.841111126714903, "kappa_radpm": -0.005232811347405216, "vx_mps": 7.164085858601462, "ax_mps2": 5.202857185898498}, {"id": 427, "s_m": 42.67136863522663, "d_m": 0.0, "x_m": 8.034012559124768, "y_m": -5.601045375158282, "d_right": 0.8386090088588445, "d_left": 1.7275936832109715, "psi_rad": -2.841649027862611, "kappa_radpm": -0.005450532176677312, "vx_mps": 7.236297388769696, "ax_mps2": 5.161460950917198}, {"id": 428, "s_m": 42.77130158285011, "d_m": 0.0, "x_m": 7.938476990993672, "y_m": -5.630563390093196, "d_right": 0.8604468394859637, "d_left": 1.7101099143811418, "psi_rad": -2.842199096483011, "kappa_radpm": -0.005551412465519094, "vx_mps": 7.307229291082387, "ax_mps2": 5.120759028400735}, {"id": 429, "s_m": 42.87123453047359, "d_m": 0.0, "x_m": 7.84303517475371, "y_m": -5.65999451569343, "d_right": 0.8900417455220163, "d_left": 1.698408245455782, "psi_rad": -2.842755869131212, "kappa_radpm": -0.005580337139482561, "vx_mps": 7.376927883611696, "ax_mps2": 5.080726907932256}, {"id": 430, "s_m": 42.97116747809707, "d_m": 0.0, "x_m": 7.747471817293556, "y_m": -5.689404773575328, "d_right": 0.9196221374200196, "d_left": 1.6816229514487626, "psi_rad": -2.8433141486104017, "kappa_radpm": -0.005586941230304014, "vx_mps": 7.445436792557366, "ax_mps2": 5.041341491329771}, {"id": 431, "s_m": 43.07110042572055, "d_m": 0.0, "x_m": 7.651985979507258, "y_m": -5.718732939583475, "d_right": 0.9261590542151189, "d_left": 1.653432972804909, "psi_rad": -2.8438678630303658, "kappa_radpm": -0.005464498116621577, "vx_mps": 7.512797166327411, "ax_mps2": 5.002580980748263}, {"id": 432, "s_m": 43.17103337334404, "d_m": 0.0, "x_m": 7.556399606376059, "y_m": -5.748034875331726, "d_right": 0.9364911807223532, "d_left": 1.6309195871027, "psi_rad": -2.8444057607585034, "kappa_radpm": -0.005296634291371356, "vx_mps": 7.5790478682114095, "ax_mps2": 4.964424777948594}, {"id": 433, "s_m": 43.27096632096752, "d_m": 0.0, "x_m": 7.460868659311588, "y_m": -5.777264579522929, "d_right": 0.9571402022591493, "d_left": 1.6143571672746913, "psi_rad": -2.844923589699113, "kappa_radpm": -0.005043264854157416, "vx_mps": 7.644225650206225, "ax_mps2": 4.926853393399352}, {"id": 434, "s_m": 43.370899268590996, "d_m": 0.0, "x_m": 7.365263178929125, "y_m": -5.8064644033740755, "d_right": 0.9864891564661195, "d_left": 1.603903602181949, "psi_rad": -2.8454133143721627, "kappa_radpm": -0.00475560749595553, "vx_mps": 7.708365310199891, "ax_mps2": 4.889848364062394}, {"id": 435, "s_m": 43.47083221621448, "d_m": 0.0, "x_m": 7.2696890434272206, "y_m": -5.835605111196054, "d_right": 1.0157908007126495, "d_left": 1.58546114348623, "psi_rad": -2.8458691735759754, "kappa_radpm": -0.004314490473579649, "vx_mps": 7.771499834420531, "ax_mps2": 4.853392178869855}, {"id": 436, "s_m": 43.57076516383796, "d_m": 0.0, "x_m": 7.1740684628814275, "y_m": -5.86471493656659, "d_right": 1.0215860985416665, "d_left": 1.5564447250955074, "psi_rad": -2.8462743969120403, "kappa_radpm": -0.0037949577249858195, "vx_mps": 7.833660526804359, "ax_mps2": 4.817468211027648}, {"id": 437, "s_m": 43.67069811146145, "d_m": 0.0, "x_m": 7.07845618995418, "y_m": -5.89378250116978, "d_right": 1.0333095227856282, "d_left": 1.5282609466529542, "psi_rad": -2.8466329903340046, "kappa_radpm": -0.003449057949000747, "vx_mps": 7.894877126721709, "ax_mps2": 4.782060656398509}, {"id": 438, "s_m": 43.77063105908493, "d_m": 0.0, "x_m": 6.982823785368791, "y_m": -5.922820144891542, "d_right": 1.0543849718025018, "d_left": 1.5062244518640793, "psi_rad": -2.8469661336264025, "kappa_radpm": -0.0032183083673960372, "vx_mps": 7.955177916316515, "ax_mps2": 4.747154477307888}, {"id": 439, "s_m": 43.870564006708406, "d_m": 0.0, "x_m": 6.8871809526501, "y_m": -5.9518271175999375, "d_right": 1.0818243798658984, "d_left": 1.4906091196807767, "psi_rad": -2.847288844536, "kappa_radpm": -0.003444337280734462, "vx_mps": 8.014589818557948, "ax_mps2": 4.7127353512004655}, {"id": 440, "s_m": 43.97049695433189, "d_m": 0.0, "x_m": 6.791535266972382, "y_m": -5.980798873782368, "d_right": 1.1109458921998505, "d_left": 1.481620842041609, "psi_rad": -2.8476630406879115, "kappa_radpm": -0.004044578837100725, "vx_mps": 8.073138486967906, "ax_mps2": 4.678789623646067}, {"id": 441, "s_m": 44.07042990195537, "d_m": 0.0, "x_m": 6.695862518870154, "y_m": -6.009736314974939, "d_right": 1.1376398972032293, "d_left": 1.4614686205673235, "psi_rad": -2.8481144782414223, "kappa_radpm": -0.005341941366817928, "vx_mps": 8.130848387872243, "ax_mps2": 4.645304265249871}, {"id": 442, "s_m": 44.17036284957885, "d_m": 0.0, "x_m": 6.600188656332336, "y_m": -6.038618021390201, "d_right": 1.1419746126081358, "d_left": 1.432705642420074, "psi_rad": -2.8487492711098827, "kappa_radpm": -0.007363483135050858, "vx_mps": 8.187742875923336, "ax_mps2": 4.612266832080013}, {"id": 443, "s_m": 44.27029579720234, "d_m": 0.0, "x_m": 6.504461704769121, "y_m": -6.06743954454243, "d_right": 1.1549069718426053, "d_left": 1.404019180001739, "psi_rad": -2.84954301833875, "kappa_radpm": -0.007370737214164859, "vx_mps": 8.243844263554772, "ax_mps2": 4.579665429265094}, {"id": 444, "s_m": 44.370228744825816, "d_m": 0.0, "x_m": 6.408725480787198, "y_m": -6.096188401471358, "d_right": 1.176151036313057, "d_left": 1.3756063505642524, "psi_rad": -2.8501485668157445, "kappa_radpm": -0.004745430863044683, "vx_mps": 8.299173884953642, "ax_mps2": 4.547488677459561}, {"id": 445, "s_m": 44.470161692449295, "d_m": 0.0, "x_m": 6.312972690039275, "y_m": -6.124893077557378, "d_right": 1.204993575169182, "d_left": 1.354039690725866, "psi_rad": -2.850465264889122, "kappa_radpm": -0.0007321483698929427, "vx_mps": 8.353752155070342, "ax_mps2": 4.5157256819006015}, {"id": 446, "s_m": 44.57009464007278, "d_m": 0.0, "x_m": 6.217189483149671, "y_m": -6.153600826616418, "d_right": 1.2337973603029162, "d_left": 1.339606657129923, "psi_rad": -2.8502219259071397, "kappa_radpm": 0.00562159940225283, "vx_mps": 8.407598624128367, "ax_mps2": 4.484366003821791}, {"id": 447, "s_m": 44.67002758769626, "d_m": 0.0, "x_m": 6.12150355471214, "y_m": -6.182337940618239, "d_right": 1.2567897277170055, "d_left": 1.3324878412921142, "psi_rad": -2.849354287813579, "kappa_radpm": 0.011075311197102644, "vx_mps": 8.460732028046632, "ax_mps2": 4.453399634000494}, {"id": 448, "s_m": 44.76996053531974, "d_m": 0.0, "x_m": 6.025733664905538, "y_m": -6.2112144287884545, "d_right": 1.2631259186635175, "d_left": 1.3103049440542534, "psi_rad": -2.848072064704077, "kappa_radpm": 0.014583581138455516, "vx_mps": 8.51317033514284, "ax_mps2": 4.422816968253627}, {"id": 449, "s_m": 44.869893482943226, "d_m": 0.0, "x_m": 5.9301644942746465, "y_m": -6.240182493982254, "d_right": 1.2774016550033152, "d_left": 1.2815105619333154, "psi_rad": -2.8464382959479657, "kappa_radpm": 0.018013548380053323, "vx_mps": 8.564930789447722, "ax_mps2": 4.392608784706115}, {"id": 450, "s_m": 44.969826430566705, "d_m": 0.0, "x_m": 5.834453281433637, "y_m": -6.269381659447114, "d_right": 1.2994440601824229, "d_left": 1.252319142833348, "psi_rad": -2.8444813170409047, "kappa_radpm": 0.02112897565552323, "vx_mps": 8.616029950926036, "ax_mps2": 4.362766222675632}, {"id": 451, "s_m": 45.069759378190184, "d_m": 0.0, "x_m": 5.739025293531592, "y_m": -6.298714902891666, "d_right": 1.3288001480069913, "d_left": 1.222839158081025, "psi_rad": -2.8422169427859547, "kappa_radpm": 0.023905979432253612, "vx_mps": 8.666483732870141, "ax_mps2": 4.33328076304027}, {"id": 452, "s_m": 45.16969232581367, "d_m": 0.0, "x_m": 5.643427609016871, "y_m": -6.3283496652978535, "d_right": 1.3498815830487128, "d_left": 1.1930733407348206, "psi_rad": -2.8397377183411177, "kappa_radpm": 0.02565840177406895, "vx_mps": 8.71630743670531, "ax_mps2": 4.304144209959481}, {"id": 453, "s_m": 45.26962527343715, "d_m": 0.0, "x_m": 5.548156768678674, "y_m": -6.358151200929971, "d_right": 1.3587409020550418, "d_left": 1.16314091249327, "psi_rad": -2.8370873964715715, "kappa_radpm": 0.027300096674897686, "vx_mps": 8.765515784422492, "ax_mps2": -3.384975567406083}, {"id": 454, "s_m": 45.36955822106063, "d_m": 0.0, "x_m": 5.45273197831137, "y_m": -6.3882867007983535, "d_right": 1.3751259671296643, "d_left": 1.1398866277670057, "psi_rad": -2.834293312867505, "kappa_radpm": 0.028560666933035345, "vx_mps": 8.726839393204802, "ax_mps2": -10.103838663523119}, {"id": 455, "s_m": 45.469491168684115, "d_m": 0.0, "x_m": 5.357602899496141, "y_m": -6.41862772079918, "d_right": 1.3987129193464816, "d_left": 1.1174258445354377, "psi_rad": -2.831383423735695, "kappa_radpm": 0.029441830732422875, "vx_mps": 8.610360795859552, "ax_mps2": -10.103630081668568}, {"id": 456, "s_m": 45.569424116307594, "d_m": 0.0, "x_m": 5.262416528684547, "y_m": -6.449295356425082, "d_right": 1.4292315194919298, "d_left": 1.1022304464160146, "psi_rad": -2.828431599344535, "kappa_radpm": 0.029595074474939843, "vx_mps": 8.492287204479036, "ax_mps2": -10.144014272375864}, {"id": 457, "s_m": 45.66935706393107, "d_m": 0.0, "x_m": 5.167405988185571, "y_m": -6.480216669701206, "d_right": 1.4495300571484933, "d_left": 1.0911594850625204, "psi_rad": -2.825480130325891, "kappa_radpm": 0.0291799304082037, "vx_mps": 8.372066618787265, "ax_mps2": -10.225046356781471}, {"id": 458, "s_m": 45.76929001155456, "d_m": 0.0, "x_m": 5.0725137294133065, "y_m": -6.5114053235912595, "d_right": 1.4610840114397812, "d_left": 1.059829351890896, "psi_rad": -2.822620522357264, "kappa_radpm": 0.028060042989031336, "vx_mps": 8.249112765950779, "ax_mps2": -10.352769517376757}, {"id": 459, "s_m": 45.86922295917804, "d_m": 0.0, "x_m": 4.9775922498341005, "y_m": -6.542898263569822, "d_right": 1.4796071198005716, "d_left": 1.0282121824015733, "psi_rad": -2.819896368042807, "kappa_radpm": 0.026116887205480766, "vx_mps": 8.12272712070867, "ax_mps2": -10.530954743559317}, {"id": 460, "s_m": 45.96915590680152, "d_m": 0.0, "x_m": 4.883013210984637, "y_m": -6.574551388127581, "d_right": 1.5047360255657034, "d_left": 0.9964455386896689, "psi_rad": -2.8174191342994224, "kappa_radpm": 0.02352165679866353, "vx_mps": 7.992115938840571, "ax_mps2": -10.743534037530758}, {"id": 461, "s_m": 46.069088854425004, "d_m": 0.0, "x_m": 4.788165265181246, "y_m": -6.6065418604580435, "d_right": 1.5362863792754207, "d_left": 0.9643683665156729, "psi_rad": -2.815222590105069, "kappa_radpm": 0.020214919846519585, "vx_mps": 7.856631029349799, "ax_mps2": -10.98998192063495}, {"id": 462, "s_m": 46.16902180204848, "d_m": 0.0, "x_m": 4.6938455321374635, "y_m": -6.638566149104853, "d_right": 1.5681629486201512, "d_left": 0.9322740392055179, "psi_rad": -2.8133919007222543, "kappa_radpm": 0.016495088032309906, "vx_mps": 7.715577007329166, "ax_mps2": -11.247635792257936}, {"id": 463, "s_m": 46.26895474967196, "d_m": 0.0, "x_m": 4.599062490762153, "y_m": -6.670922946906116, "d_right": 1.5890494050194923, "d_left": 0.8998796886626418, "psi_rad": -2.8119018303471606, "kappa_radpm": 0.01324456404194454, "vx_mps": 7.568494550370974, "ax_mps2": -11.46238132387745}, {"id": 464, "s_m": 46.36888769729545, "d_m": 0.0, "x_m": 4.5047217039413034, "y_m": -6.703268137572252, "d_right": 1.6029199164097065, "d_left": 0.8675257103055013, "psi_rad": -2.8107491539323224, "kappa_radpm": 0.009905714297473861, "vx_mps": 7.415603188819921, "ax_mps2": -11.667639918207334}, {"id": 465, "s_m": 46.46882064491893, "d_m": 0.0, "x_m": 4.410209288741349, "y_m": -6.735776863583677, "d_right": 1.6229578857856832, "d_left": 0.8350439833670752, "psi_rad": -2.8099170844072408, "kappa_radpm": 0.006717610195936054, "vx_mps": 7.256666407956517, "ax_mps2": -11.849742063510002}, {"id": 466, "s_m": 46.56875359254241, "d_m": 0.0, "x_m": 4.315859166441772, "y_m": -6.768300635068158, "d_right": 1.6488426989883134, "d_left": 0.8025889624713725, "psi_rad": -2.809401079277822, "kappa_radpm": 0.0038672482012734534, "vx_mps": 7.091604053413837, "ax_mps2": -11.999928790452014}, {"id": 467, "s_m": 46.66868654016589, "d_m": 0.0, "x_m": 4.221402105587845, "y_m": -6.800902411317738, "d_right": 1.6803451391637672, "d_left": 0.7742434804593978, "psi_rad": -2.8091284221911037, "kappa_radpm": 0.0015929154266885208, "vx_mps": 6.9204386811669645, "ax_mps2": -12.10888488976766}, {"id": 468, "s_m": 46.76861948778937, "d_m": 0.0, "x_m": 4.12697586905243, "y_m": -6.833510855405004, "d_right": 1.7005516773329565, "d_left": 0.7580937982327963, "psi_rad": -2.809062027233699, "kappa_radpm": -5.50188279186434e-05, "vx_mps": 6.74331657427235, "ax_mps2": -12.107441872082381}, {"id": 469, "s_m": 46.86855243541285, "d_m": 0.0, "x_m": 4.03242500040091, "y_m": -6.866161839089868, "d_right": 1.7155190611950342, "d_left": 0.7546756833087731, "psi_rad": -2.809133418188356, "kappa_radpm": -0.0013702289434722834, "vx_mps": 6.561436863366279, "ax_mps2": -12.033725901132296}, {"id": 470, "s_m": 46.96848538303634, "d_m": 0.0, "x_m": 3.9378978171457084, "y_m": -6.898789669302955, "d_right": 1.7361091901190786, "d_left": 0.7221322999839307, "psi_rad": -2.8093514763817673, "kappa_radpm": -0.003036112739896016, "vx_mps": 6.375525257698807, "ax_mps2": -11.959631862245216}, {"id": 471, "s_m": 47.06841833065982, "d_m": 0.0, "x_m": 3.8434319422605188, "y_m": -6.931364222052037, "d_right": 1.7620913386280899, "d_left": 0.6896947505346368, "psi_rad": -2.809742519336872, "kappa_radpm": -0.0049210159106327965, "vx_mps": 6.185224311420221, "ax_mps2": -11.846737516343468}, {"id": 472, "s_m": 47.168351278283296, "d_m": 0.0, "x_m": 3.748811798920975, "y_m": -6.963938010293848, "d_right": 1.7932736294778597, "d_left": 0.657311771645905, "psi_rad": -2.81039486782794, "kappa_radpm": -0.008136262644635189, "vx_mps": 5.990762971702689, "ax_mps2": -11.76121112891919}, {"id": 473, "s_m": 47.26828422590678, "d_m": 0.0, "x_m": 3.654310146780308, "y_m": -6.996385020366348, "d_right": 1.8123808910305008, "d_left": 0.6251266575140965, "psi_rad": -2.811365767605664, "kappa_radpm": -0.010985660223131593, "vx_mps": 5.79124995071478, "ax_mps2": -11.717276981246654}, {"id": 474, "s_m": 47.36821717353026, "d_m": 0.0, "x_m": 3.559713980948258, "y_m": -7.028749135013058, "d_right": 1.8278170797150348, "d_left": 0.5930975519794652, "psi_rad": -2.8125601547752517, "kappa_radpm": -0.012928428961620672, "vx_mps": 5.5853998906023286, "ax_mps2": -11.538050930456151}, {"id": 475, "s_m": 47.46815012115374, "d_m": 0.0, "x_m": 3.465064049908197, "y_m": -7.060992153669842, "d_right": 1.8484137480665879, "d_left": 0.5612751619985212, "psi_rad": -2.814093313940319, "kappa_radpm": -0.019855414415459044, "vx_mps": 5.375000377611139, "ax_mps2": -11.281917340589192}, {"id": 476, "s_m": 47.56808306877723, "d_m": 0.0, "x_m": 3.370555222423518, "y_m": -7.09297655346489, "d_right": 1.8738735110785347, "d_left": 0.5298269432300735, "psi_rad": -2.8166175986540125, "kappa_radpm": -0.03082517993669124, "vx_mps": 5.160984261741231, "ax_mps2": -11.278947947620937}, {"id": 477, "s_m": 47.668016016400706, "d_m": 0.0, "x_m": 3.27566072708856, "y_m": -7.124803848729256, "d_right": 1.9040729308889264, "d_left": 0.49838168105091835, "psi_rad": -2.8189650262626635, "kappa_radpm": -0.010836933224530393, "vx_mps": 4.937760780044491, "ax_mps2": -11.593030950558292}, {"id": 478, "s_m": 47.767948964024185, "d_m": 0.0, "x_m": 3.181063880521145, "y_m": -7.15641855007483, "d_right": 1.9356513794514723, "d_left": 0.48600396670349244, "psi_rad": -2.8186663586867997, "kappa_radpm": 0.022310408551427914, "vx_mps": 4.697279000803183, "ax_mps2": -10.067347969945862}, {"id": 479, "s_m": 47.86788191164767, "d_m": 0.0, "x_m": 3.08623275523335, "y_m": -7.188406501607192, "d_right": 1.9538398955154173, "d_left": 0.48412385789683143, "psi_rad": -2.8125597103623257, "kappa_radpm": 0.10024634872981326, "vx_mps": 4.4779806270919185, "ax_mps2": -9.685949529173941}, {"id": 480, "s_m": 47.96781485927115, "d_m": 0.0, "x_m": 2.9920095756452927, "y_m": -7.221229971816084, "d_right": 1.9704716986212167, "d_left": 0.4527045255889728, "psi_rad": -2.7996160590444426, "kappa_radpm": 0.13159805212804526, "vx_mps": 4.256338746228421, "ax_mps2": -9.66460325519256}, {"id": 481, "s_m": 48.06774780689463, "d_m": 0.0, "x_m": 2.8981222659618178, "y_m": -7.255286486228142, "d_right": 1.993227376687675, "d_left": 0.4407862290513237, "psi_rad": -2.7881991339360397, "kappa_radpm": 0.09649902267480355, "vx_mps": 4.023033052416994, "ax_mps2": -8.26772512358134}, {"id": 482, "s_m": 48.167680754518116, "d_m": 0.0, "x_m": 2.804631743338607, "y_m": -7.290424729955138, "d_right": 2.0217673366838445, "d_left": 0.4347256409263512, "psi_rad": -2.7728062800627846, "kappa_radpm": 0.26069096114170254, "vx_mps": 3.812133084948521, "ax_mps2": -5.689986587957197}, {"id": 483, "s_m": 48.267613702141595, "d_m": 0.0, "x_m": 2.71200961412086, "y_m": -7.328026233517496, "d_right": 2.0572335683203478, "d_left": 0.42188608400664557, "psi_rad": -2.7353217475643143, "kappa_radpm": 0.4749337547717251, "vx_mps": 3.6599350259279024, "ax_mps2": -5.647499250880261}, {"id": 484, "s_m": 48.367546649765075, "d_m": 0.0, "x_m": 2.62134643424939, "y_m": -7.369625559504986, "d_right": 2.0854113380597483, "d_left": 0.4114304068284613, "psi_rad": -2.687345273792089, "kappa_radpm": 0.48495552500414174, "vx_mps": 3.502339489588376, "ax_mps2": -5.608904374420988}, {"id": 485, "s_m": 48.46747959738856, "d_m": 0.0, "x_m": 2.53270871909409, "y_m": -7.41562662519649, "d_right": 2.1162400805865085, "d_left": 0.3922461039115728, "psi_rad": -2.6370988389829932, "kappa_radpm": 0.5772972447984789, "vx_mps": 3.338465696421315, "ax_mps2": -3.5964511498463305}, {"id": 486, "s_m": 48.56741254501204, "d_m": 0.0, "x_m": 2.4468538870903562, "y_m": -7.466772914763502, "d_right": 2.1566620689733624, "d_left": 0.3887857490996706, "psi_rad": -2.5676611854590385, "kappa_radpm": 0.8098421775232583, "vx_mps": 3.2290161469719947, "ax_mps2": -1.8968188094010894}, {"id": 487, "s_m": 48.667345492635526, "d_m": 0.0, "x_m": 2.3655571996836198, "y_m": -7.524546903787082, "d_right": 2.2077691599921163, "d_left": 0.38252287264891105, "psi_rad": -2.4765672341397416, "kappa_radpm": 1.0094140446896291, "vx_mps": 3.1697690590867373, "ax_mps2": -0.03881172000665995}, {"id": 488, "s_m": 48.767278440259005, "d_m": 0.0, "x_m": 2.29014091934833, "y_m": -7.590530602760242, "d_right": 2.2704704507701603, "d_left": 0.3665007801893276, "psi_rad": -2.3659272989802087, "kappa_radpm": 1.195257368315705, "vx_mps": 3.1685452101521947, "ax_mps2": -0.03881172000665995}, {"id": 489, "s_m": 48.867211387882485, "d_m": 0.0, "x_m": 2.223416859481561, "y_m": -7.664159106221194, "d_right": 2.341074232900923, "d_left": 0.34171304026547084, "psi_rad": -2.2494463840121606, "kappa_radpm": 1.1326966146695578, "vx_mps": 3.167320888323949, "ax_mps2": 0.5980946219575624}, {"id": 490, "s_m": 48.96714433550597, "d_m": 0.0, "x_m": 2.1649037360688976, "y_m": -7.745605179723348, "d_right": 2.4102344460488787, "d_left": 0.33380471356011615, "psi_rad": -2.1392570294020086, "kappa_radpm": 1.0590196982149995, "vx_mps": 3.1861356415998925, "ax_mps2": 1.2101596995014876}, {"id": 491, "s_m": 49.06707728312945, "d_m": 0.0, "x_m": 2.1156845904468833, "y_m": -7.83202106614312, "d_right": 2.4877774149160254, "d_left": 0.32178805050937354, "psi_rad": -2.0397172263823595, "kappa_radpm": 0.9441598463251839, "vx_mps": 3.2238687905071157, "ax_mps2": -0.4280134838383917}, {"id": 492, "s_m": 49.16701023075293, "d_m": 0.0, "x_m": 2.074493598917101, "y_m": -7.9234762571343165, "d_right": 2.5728232871357433, "d_left": 0.30585938321585016, "psi_rad": -1.948983274588815, "kappa_radpm": 0.9213653720017099, "vx_mps": 3.2105738864384796, "ax_mps2": -0.8798684506464239}, {"id": 493, "s_m": 49.266943178376415, "d_m": 0.0, "x_m": 2.042208865488961, "y_m": -8.017951107149132, "d_right": 2.662887688510657, "d_left": 0.2852351372444763, "psi_rad": -1.848183304790374, "kappa_radpm": 1.1013993396729236, "vx_mps": 3.1830691140301477, "ax_mps2": -0.0391381040164678}, {"id": 494, "s_m": 49.366876125999894, "d_m": 0.0, "x_m": 2.0204543225549583, "y_m": -8.115524239867149, "d_right": 2.757711625978502, "d_left": 0.2755628459387318, "psi_rad": -1.7305711774503294, "kappa_radpm": 1.1852897701797835, "vx_mps": 3.1818401299397725, "ax_mps2": -0.03913810401645891}, {"id": 495, "s_m": 49.466809073623374, "d_m": 0.0, "x_m": 2.0103222928141125, "y_m": -8.214871445668717, "d_right": 2.855677363822269, "d_left": 0.28568599182644716, "psi_rad": -1.61529733436464, "kappa_radpm": 1.124935314224043, "vx_mps": 3.180610670971477, "ax_mps2": 0.5807267453280737}, {"id": 496, "s_m": 49.56674202124686, "d_m": 0.0, "x_m": 2.011418295181536, "y_m": -8.314743431353602, "d_right": 2.8638147232578124, "d_left": 0.28461240277430466, "psi_rad": -1.5048809482878966, "kappa_radpm": 1.0925023201652002, "vx_mps": 3.1988047316375043, "ax_mps2": 0.7815754533503855}, {"id": 497, "s_m": 49.66667496887034, "d_m": 0.0, "x_m": 2.0234088806866857, "y_m": -8.413935126577401, "d_right": 2.771488215635209, "d_left": 0.27686089731592145, "psi_rad": -1.396286859695353, "kappa_radpm": 1.0820644814786917, "vx_mps": 3.223129223104995, "ax_mps2": 0.7187456139435232}, {"id": 498, "s_m": 49.76660791649382, "d_m": 0.0, "x_m": 2.045973511144102, "y_m": -8.511191586024308, "d_right": 2.6816878442714254, "d_left": 0.2785283711785288, "psi_rad": -1.2909610916253675, "kappa_radpm": 0.9925177077926687, "vx_mps": 3.245337382217611, "ax_mps2": 1.505874601973606}, {"id": 499, "s_m": 49.866540864117304, "d_m": 0.0, "x_m": 2.078106234867398, "y_m": -8.605877685492695, "d_right": 2.597489590353401, "d_left": 0.2840264740660893, "psi_rad": -1.1985216004821861, "kappa_radpm": 0.859429445574125, "vx_mps": 3.2913808196366747, "ax_mps2": 2.647760208314257}, {"id": 500, "s_m": 49.966473811740784, "d_m": 0.0, "x_m": 2.1182791521072524, "y_m": -8.697495121772366, "d_right": 2.519591845166766, "d_left": 0.287812533502763, "psi_rad": -1.1187134495489692, "kappa_radpm": 0.7335595820131908, "vx_mps": 3.3708136501898456, "ax_mps2": 3.6210887749800156}, {"id": 501, "s_m": 50.06640675936426, "d_m": 0.0, "x_m": 2.1650226933738344, "y_m": -8.78583286776974, "d_right": 2.4484059434647136, "d_left": 0.31753144992839627, "psi_rad": -1.0515000013947255, "kappa_radpm": 0.6133128577222672, "vx_mps": 3.4765092857759323, "ax_mps2": 4.540706250462988}, {"id": 502, "s_m": 50.16633970698775, "d_m": 0.0, "x_m": 2.217255230336494, "y_m": -8.871271141295594, "d_right": 2.3789526631370923, "d_left": 0.34036612955052536, "psi_rad": -0.9931738428062848, "kappa_radpm": 0.5732542709068709, "vx_mps": 3.6046704612056555, "ax_mps2": 4.5011038635453655}, {"id": 503, "s_m": 50.26627265461123, "d_m": 0.0, "x_m": 2.2741071007194003, "y_m": -8.953289576586755, "d_right": 2.315487586486856, "d_left": 0.35776811605064074, "psi_rad": -0.9362680632217328, "kappa_radpm": 0.5678551552295685, "vx_mps": 3.7273672058405554, "ax_mps2": 4.056928070510315}, {"id": 504, "s_m": 50.36620560223471, "d_m": 0.0, "x_m": 2.33577807531465, "y_m": -9.032253955529642, "d_right": 2.2563098893034708, "d_left": 0.39081896816779077, "psi_rad": -0.8790555019124984, "kappa_radpm": 0.5772981824588923, "vx_mps": 3.83459357011153, "ax_mps2": 3.4545016414149323}, {"id": 505, "s_m": 50.466138549858194, "d_m": 0.0, "x_m": 2.4015432164865422, "y_m": -9.107117036400247, "d_right": 2.2012206231453204, "d_left": 0.418804028009992, "psi_rad": -0.820636810361286, "kappa_radpm": 0.596206926998798, "vx_mps": 3.9235882698282984, "ax_mps2": 2.7621529484119574}, {"id": 506, "s_m": 50.56607149748167, "d_m": 0.0, "x_m": 2.4721391219535764, "y_m": -9.1786753549077, "d_right": 2.152421395534881, "d_left": 0.44541916442112534, "psi_rad": -0.7661816041648457, "kappa_radpm": 0.46422627902015723, "vx_mps": 3.993320057668506, "ax_mps2": 4.535519949396878}, {"id": 507, "s_m": 50.66600444510515, "d_m": 0.0, "x_m": 2.5450310958690077, "y_m": -9.24600615592597, "d_right": 2.1058947639593764, "d_left": 0.47386959157188696, "psi_rad": -0.7279730069903225, "kappa_radpm": 0.30467012121270376, "vx_mps": 4.1052528348536885, "ax_mps2": 6.800212453848393}, {"id": 508, "s_m": 50.76593739272864, "d_m": 0.0, "x_m": 2.6213359357514636, "y_m": -9.312200969889371, "d_right": 2.064187239085241, "d_left": 0.5057867469756436, "psi_rad": -0.7031770347513797, "kappa_radpm": 0.184181926660661, "vx_mps": 4.267579101555385, "ax_mps2": 6.830076846730923}, {"id": 509, "s_m": 50.86587034035212, "d_m": 0.0, "x_m": 2.697434816777, "y_m": -9.375806482129166, "d_right": 2.021784631353736, "d_left": 0.5354237737109171, "psi_rad": -0.6912736064074081, "kappa_radpm": 0.07510400052873208, "vx_mps": 4.424627759666305, "ax_mps2": 6.743512152417476}, {"id": 510, "s_m": 50.965803287975596, "d_m": 0.0, "x_m": 2.7748704436662215, "y_m": -9.439400267010331, "d_right": 1.9831455407030558, "d_left": 0.5610142664612282, "psi_rad": -0.6839230291579623, "kappa_radpm": 0.07085728851862119, "vx_mps": 4.574399294449636, "ax_mps2": 6.660780937755873}, {"id": 511, "s_m": 51.06573623559908, "d_m": 0.0, "x_m": 2.852101267325659, "y_m": -9.50192707831801, "d_right": 1.9407284251662387, "d_left": 0.5927862471927724, "psi_rad": -0.6775525443986528, "kappa_radpm": 0.05083934469493088, "vx_mps": 4.717668052145029, "ax_mps2": 6.581479443823312}, {"id": 512, "s_m": 51.16566918322256, "d_m": 0.0, "x_m": 2.930008108937793, "y_m": -9.564361729240709, "d_right": 1.8995471873225858, "d_left": 0.6285797880561359, "psi_rad": -0.6742254175512379, "kappa_radpm": 0.015562891702953427, "vx_mps": 4.855080342416495, "ax_mps2": 6.50527049462764}, {"id": 513, "s_m": 51.26560213084604, "d_m": 0.0, "x_m": 3.0077440731431304, "y_m": -9.626418591775245, "d_right": 1.8631155440525073, "d_left": 0.6749423098909708, "psi_rad": -0.6732099972901247, "kappa_radpm": 0.010503665445856994, "vx_mps": 4.9871822547959335, "ax_mps2": 6.431869048037568}, {"id": 514, "s_m": 51.36553507846953, "d_m": 0.0, "x_m": 3.0861432695912474, "y_m": -9.688870193705394, "d_right": 1.8268841897314199, "d_left": 0.7173016942505, "psi_rad": -0.6720699545524815, "kappa_radpm": 0.012688683939140221, "vx_mps": 5.114440155867382, "ax_mps2": 6.361031546280959}, {"id": 515, "s_m": 51.465468026093006, "d_m": 0.0, "x_m": 3.1639697964589404, "y_m": -9.75069850240358, "d_right": 1.785983761789816, "d_left": 0.7525731511763462, "psi_rad": -0.6705143694492621, "kappa_radpm": 0.018455005146879436, "vx_mps": 5.23725609194742, "ax_mps2": 6.292547911556757}, {"id": 516, "s_m": 51.565400973716486, "d_m": 0.0, "x_m": 3.2424193398951733, "y_m": -9.812787132007664, "d_right": 1.7450438756669633, "d_left": 0.7989065129748245, "psi_rad": -0.6683949002775309, "kappa_radpm": 0.024545840921830313, "vx_mps": 5.355979564409113, "ax_mps2": 6.226235425329179}, {"id": 517, "s_m": 51.66533392133997, "d_m": 0.0, "x_m": 3.3208672570018254, "y_m": -9.874561512648096, "d_right": 1.6991865818980534, "d_left": 0.8425051796919051, "psi_rad": -0.6655783377271307, "kappa_radpm": 0.03168328422124549, "vx_mps": 5.470916670144946, "ax_mps2": 6.161933976139809}, {"id": 518, "s_m": 51.76526686896345, "d_m": 0.0, "x_m": 3.3994914334084667, "y_m": -9.936075281086346, "d_right": 1.6548903067933747, "d_left": 0.8871438844951216, "psi_rad": -0.6621632039544392, "kappa_radpm": 0.03564053344393808, "vx_mps": 5.582337293845983, "ax_mps2": 6.099502319459215}, {"id": 519, "s_m": 51.86519981658693, "d_m": 0.0, "x_m": 3.478612142011927, "y_m": -9.9975251827637, "d_right": 1.6088988525870225, "d_left": 0.9384536625553388, "psi_rad": -0.6584990933853248, "kappa_radpm": 0.03747121687166402, "vx_mps": 5.690480836792556, "ax_mps2": 6.038815097921869}, {"id": 520, "s_m": 51.965132764210416, "d_m": 0.0, "x_m": 3.557569583809704, "y_m": -10.058377677744184, "d_right": 1.5685000470647474, "d_left": 0.9899855661341613, "psi_rad": -0.6547453354699009, "kappa_radpm": 0.03719224757657639, "vx_mps": 5.795560830470197, "ax_mps2": 5.979760441070778}, {"id": 521, "s_m": 52.065065711833896, "d_m": 0.0, "x_m": 3.637228010587226, "y_m": -10.119299577929274, "d_right": 1.5336871784079524, "d_left": 1.0339588327646982, "psi_rad": -0.6510706418240719, "kappa_radpm": 0.03613608837521548, "vx_mps": 5.897768689394096, "ax_mps2": 5.922238012497121}, {"id": 522, "s_m": 52.164998659457375, "d_m": 0.0, "x_m": 3.7166407633082272, "y_m": -10.179581770457505, "d_right": 1.5052611975619345, "d_left": 1.0755286792103436, "psi_rad": -0.6475777962862406, "kappa_radpm": 0.03340463558033436, "vx_mps": 5.997276791663918, "ax_mps2": 5.866157406452072}, {"id": 523, "s_m": 52.26493160708086, "d_m": 0.0, "x_m": 3.796668507987788, "y_m": -10.239910377857257, "d_right": 1.4664748246853, "d_left": 1.1244123437734548, "psi_rad": -0.6443907074796753, "kappa_radpm": 0.03027231104928122, "vx_mps": 6.094241028834588, "ax_mps2": 5.811436820375819}, {"id": 524, "s_m": 52.36486455470434, "d_m": 0.0, "x_m": 3.8765652188856885, "y_m": -10.299762255084918, "d_right": 1.426990647382449, "d_left": 1.1793284270030102, "psi_rad": -0.6415452516732034, "kappa_radpm": 0.02642633180414666, "vx_mps": 6.188802932741226, "ax_mps2": 5.758001947418179}, {"id": 525, "s_m": 52.46479750232782, "d_m": 0.0, "x_m": 3.9568289840872697, "y_m": -10.35955845318825, "d_right": 1.3891527402273927, "d_left": 1.233181607060061, "psi_rad": -0.6391031412695676, "kappa_radpm": 0.02244004560213201, "vx_mps": 6.2810914620279865, "ax_mps2": 5.705785045950782}, {"id": 526, "s_m": 52.564730449951306, "d_m": 0.0, "x_m": 4.037141943357035, "y_m": -10.419111942698041, "d_right": 1.3498591217661, "d_left": 1.2726513114591234, "psi_rad": -0.6370808478675478, "kappa_radpm": 0.017537313898940594, "vx_mps": 6.371224512655052, "ax_mps2": 5.654724152664927}, {"id": 527, "s_m": 52.664663397574785, "d_m": 0.0, "x_m": 4.117554064826755, "y_m": -10.478520674209044, "d_right": 1.317168933589101, "d_left": 1.3183806786736836, "psi_rad": -0.6356032946544996, "kappa_radpm": 0.012071711937391856, "vx_mps": 6.459310202785092, "ax_mps2": 5.604762413057304}, {"id": 528, "s_m": 52.764596345198264, "d_m": 0.0, "x_m": 4.198119491202174, "y_m": -10.537892468246937, "d_right": 1.2904941305283189, "d_left": 1.3669747600007438, "psi_rad": -0.6346728886959987, "kappa_radpm": 0.00621543207922005, "vx_mps": 6.545447971921845, "ax_mps2": 5.555847508575283}, {"id": 529, "s_m": 52.86452929282175, "d_m": 0.0, "x_m": 4.278607519558941, "y_m": -10.597130275244332, "d_right": 1.247038437211978, "d_left": 1.4056150557981655, "psi_rad": -0.6343730841788391, "kappa_radpm": -0.00019708310649972283, "vx_mps": 6.629729526103825, "ax_mps2": 5.507931163885395}, {"id": 530, "s_m": 52.96446224044523, "d_m": 0.0, "x_m": 4.359198217767205, "y_m": -10.656446273100507, "d_right": 1.2077616130116324, "d_left": 1.4501878140804898, "psi_rad": -0.6347259488619086, "kappa_radpm": -0.007446487254579972, "vx_mps": 6.71223965471447, "ax_mps2": 5.460968720973417}, {"id": 531, "s_m": 53.06439518806871, "d_m": 0.0, "x_m": 4.439689259797896, "y_m": -10.715783120915129, "d_right": 1.1756580141813098, "d_left": 1.5001497627959388, "psi_rad": -0.6359246207959255, "kappa_radpm": -0.016554621214345304, "vx_mps": 6.7930569396004925, "ax_mps2": 5.414918769314137}, {"id": 532, "s_m": 53.164328135692195, "d_m": 0.0, "x_m": 4.520015793519205, "y_m": -10.775204213293797, "d_right": 1.1365698091107113, "d_left": 1.55503363402129, "psi_rad": -0.6380283941688738, "kappa_radpm": -0.02438135143539875, "vx_mps": 6.872254373360536, "ax_mps2": 5.369742823339456}, {"id": 533, "s_m": 53.264261083315674, "d_m": 0.0, "x_m": 4.600372758797242, "y_m": -10.834943175723042, "d_right": 1.104321674208404, "d_left": 1.601269822859111, "psi_rad": -0.6405526938640875, "kappa_radpm": -0.026066139080018823, "vx_mps": 6.949899900632072, "ax_mps2": 5.325405040011628}, {"id": 534, "s_m": 53.36419403093915, "d_m": 0.0, "x_m": 4.680226956822751, "y_m": -10.894632051271893, "d_right": 1.0645709982054754, "d_left": 1.644987640695353, "psi_rad": -0.6432410757775191, "kappa_radpm": -0.0276110554677608, "vx_mps": 7.026056893783331, "ax_mps2": 5.2818719705663915}, {"id": 535, "s_m": 53.46412697856264, "d_m": 0.0, "x_m": 4.760384671821075, "y_m": -10.954886110574053, "d_right": 1.032054789019347, "d_left": 1.6939819438901016, "psi_rad": -0.6458861400965583, "kappa_radpm": -0.02513759323537423, "vx_mps": 7.100784572472074, "ax_mps2": 5.239112341501494}, {"id": 536, "s_m": 53.56405992618612, "d_m": 0.0, "x_m": 4.839815826152527, "y_m": -11.014906878439321, "d_right": 0.9915901492644869, "d_left": 1.7367636678592315, "psi_rad": -0.6482648551728647, "kappa_radpm": -0.022639194255790654, "vx_mps": 7.174138374961205, "ax_mps2": 5.197096860705752}, {"id": 537, "s_m": 53.6639928738096, "d_m": 0.0, "x_m": 4.919765115509733, "y_m": -11.075607429991011, "d_right": 0.9588773377264045, "d_left": 1.7807095812972866, "psi_rad": -0.6504984384310819, "kappa_radpm": -0.02191210226650839, "vx_mps": 7.246170287803145, "ax_mps2": 5.155798045285162}, {"id": 538, "s_m": 53.763925821433084, "d_m": 0.0, "x_m": 4.998913514269764, "y_m": -11.135973712018865, "d_right": 0.9177154024536133, "d_left": 1.8288798999862168, "psi_rad": -0.6526468303000073, "kappa_radpm": -0.021256313445185818, "vx_mps": 7.3169291394597105, "ax_mps2": 1.1021070252385}, {"id": 539, "s_m": 53.86385876905656, "d_m": 0.0, "x_m": 5.078596582056066, "y_m": -11.197016344019605, "d_right": 0.8849072929954734, "d_left": 1.8817219219093861, "psi_rad": -0.6547565809060778, "kappa_radpm": -0.02079634802262018, "vx_mps": 7.331966014591985, "ax_mps2": -11.089649585552442}, {"id": 540, "s_m": 53.96379171668005, "d_m": 0.0, "x_m": 5.157471353718672, "y_m": -11.257700353063145, "d_right": 0.8430619689530106, "d_left": 1.9379935833286446, "psi_rad": -0.6568043117411553, "kappa_radpm": -0.020356265102408254, "vx_mps": 7.179225786722425, "ax_mps2": -11.149832432822512}, {"id": 541, "s_m": 54.06372466430353, "d_m": 0.0, "x_m": 5.236900899428279, "y_m": -11.319068480279487, "d_right": 0.8097412797959193, "d_left": 1.982096550156204, "psi_rad": -0.6588157187118111, "kappa_radpm": -0.01969386562287657, "vx_mps": 7.022308143032501, "ax_mps2": -11.219254496557319}, {"id": 542, "s_m": 54.16365761192701, "d_m": 0.0, "x_m": 5.315498056556281, "y_m": -11.38004085032359, "d_right": 0.7676779639010247, "d_left": 2.029500390837489, "psi_rad": -0.6607391538929672, "kappa_radpm": -0.01897040197967648, "vx_mps": 6.860791886636898, "ax_mps2": -11.288671381467879}, {"id": 543, "s_m": 54.263590559550494, "d_m": 0.0, "x_m": 5.394703514705458, "y_m": -11.441724088122816, "d_right": 0.7348122493187884, "d_left": 2.078542389060125, "psi_rad": -0.6625578883751491, "kappa_radpm": -0.0171551414376743, "vx_mps": 6.694344247193801, "ax_mps2": -11.404137069122948}, {"id": 544, "s_m": 54.36352350717397, "d_m": 0.0, "x_m": 5.473024779483447, "y_m": -11.502934562834563, "d_right": 0.6916327387309558, "d_left": 2.1216735986777877, "psi_rad": -0.6641627795250322, "kappa_radpm": -0.015107648490098491, "vx_mps": 6.521882154339915, "ax_mps2": -11.52153848332018}, {"id": 545, "s_m": 54.46345645479745, "d_m": 0.0, "x_m": 5.552052898083981, "y_m": -11.564888899437625, "d_right": 0.6588639648938737, "d_left": 2.169134695117028, "psi_rad": -0.6655527768144096, "kappa_radpm": -0.012533785181378794, "vx_mps": 6.342884535564744, "ax_mps2": -11.651048254841253}, {"id": 546, "s_m": 54.56338940242094, "d_m": 0.0, "x_m": 5.63029222394872, "y_m": -11.626383155980479, "d_right": 0.6370445700481513, "d_left": 2.219757653298534, "psi_rad": -0.6666633480541315, "kappa_radpm": -0.009705206555800136, "vx_mps": 6.156584852130835, "ax_mps2": -11.778503084691673}, {"id": 547, "s_m": 54.66332235004442, "d_m": 0.0, "x_m": 5.709047623900241, "y_m": -11.688405460622663, "d_right": 0.603240641372251, "d_left": 2.274098886287131, "psi_rad": -0.6674599455243122, "kappa_radpm": -0.006143740603017708, "vx_mps": 5.962333098527446, "ax_mps2": -11.918975904769894}, {"id": 548, "s_m": 54.7632552976679, "d_m": 0.0, "x_m": 5.787312182602111, "y_m": -11.750119067101659, "d_right": 0.5714571755102921, "d_left": 2.3277900956309097, "psi_rad": -0.6678966194682125, "kappa_radpm": -0.003275314559168825, "vx_mps": 5.759098817363888, "ax_mps2": -12.019586132857832}, {"id": 549, "s_m": 54.86318824529138, "d_m": 0.0, "x_m": 5.865832588592733, "y_m": -11.812079434275843, "d_right": 0.5508025603553668, "d_left": 2.3742075777839626, "psi_rad": -0.668218319452841, "kappa_radpm": -0.0031512671071982764, "vx_mps": 5.546612826331076, "ax_mps2": -12.021995914217333}, {"id": 550, "s_m": 54.96312119291486, "d_m": 0.0, "x_m": 5.944136411463935, "y_m": -11.873907785419927, "d_right": 0.5145750649594073, "d_left": 2.423763145282665, "psi_rad": -0.6684637114479117, "kappa_radpm": -3.8796247462321873e-05, "vx_mps": 5.325610469154695, "ax_mps2": -11.911183853921557}, {"id": 551, "s_m": 55.06305414053834, "d_m": 0.0, "x_m": 6.022545031098125, "y_m": -11.935816254925193, "d_right": 0.4839646460714428, "d_left": 2.469633175106018, "psi_rad": -0.6681019868538858, "kappa_radpm": 0.0072842724800263915, "vx_mps": 5.097203884950546, "ax_mps2": -11.911125311998028}, {"id": 552, "s_m": 55.16298708816183, "d_m": 0.0, "x_m": 6.1008585197807665, "y_m": -11.99757163262216, "d_right": 0.4700891770804654, "d_left": 2.5152379104516935, "psi_rad": -0.6675715587283828, "kappa_radpm": -0.004001021258838283, "vx_mps": 4.858071605161206, "ax_mps2": -11.507923012602696}, {"id": 553, "s_m": 55.26292003578531, "d_m": 0.0, "x_m": 6.179354157600914, "y_m": -12.059525228128438, "d_right": 0.443265124298517, "d_left": 2.564083515783288, "psi_rad": -0.6691290189484458, "kappa_radpm": -0.026967151245150714, "vx_mps": 4.615280964960494, "ax_mps2": -9.017803118067796}, {"id": 554, "s_m": 55.362852983408786, "d_m": 0.0, "x_m": 6.257357067511899, "y_m": -12.121572195986746, "d_right": 0.41621094812512, "d_left": 2.615987276643321, "psi_rad": -0.6771680993224298, "kappa_radpm": -0.15681102941453884, "vx_mps": 4.4157068621199524, "ax_mps2": -6.434008479469087}, {"id": 555, "s_m": 55.46278593103227, "d_m": 0.0, "x_m": 6.33482783428197, "y_m": -12.185201708515203, "d_right": 0.40853183708121105, "d_left": 2.6722220668260728, "psi_rad": -0.7006148833956329, "kappa_radpm": -0.30947916951634286, "vx_mps": 4.267613879839358, "ax_mps2": -6.3516443848552395}, {"id": 556, "s_m": 55.56271887865575, "d_m": 0.0, "x_m": 6.4099887314394035, "y_m": -12.250528707784696, "d_right": 0.39447107689658595, "d_left": 2.727496964919665, "psi_rad": -0.7293859883675387, "kappa_radpm": -0.2576530730853287, "vx_mps": 4.116193768049328, "ax_mps2": -7.641403031931115}, {"id": 557, "s_m": 55.66265182627923, "d_m": 0.0, "x_m": 6.483959311013245, "y_m": -12.318244490454601, "d_right": 0.38406015453683695, "d_left": 2.7815527508631814, "psi_rad": -0.7522152611915955, "kappa_radpm": -0.2115745731554996, "vx_mps": 3.9262953630882627, "ax_mps2": -7.064801126391696}, {"id": 558, "s_m": 55.76258477390272, "d_m": 0.0, "x_m": 6.555910897603345, "y_m": -12.387343861766839, "d_right": 0.3627305028909911, "d_left": 2.8397529109163773, "psi_rad": -0.7805492430036556, "kappa_radpm": -0.35628482265365363, "vx_mps": 3.7421628073001174, "ax_mps2": -5.639470049458816}, {"id": 559, "s_m": 55.862517721526196, "d_m": 0.0, "x_m": 6.62561216375031, "y_m": -12.459227426234872, "d_right": 0.34918708345954924, "d_left": 2.895446715518903, "psi_rad": -0.8234703276937552, "kappa_radpm": -0.49782447471966157, "vx_mps": 3.5884042060764005, "ax_mps2": -4.577726623329776}, {"id": 560, "s_m": 55.962450669149675, "d_m": 0.0, "x_m": 6.691541156601484, "y_m": -12.534341176071575, "d_right": 0.3426884259084517, "d_left": 2.9281333525970714, "psi_rad": -0.8794914079289677, "kappa_radpm": -0.6243683629179123, "vx_mps": 3.458570993404525, "ax_mps2": -3.689762906356947}, {"id": 561, "s_m": 56.06238361677316, "d_m": 0.0, "x_m": 6.752648276984459, "y_m": -12.613416275194707, "d_right": 0.3299684997450951, "d_left": 2.879430928624444, "psi_rad": -0.9483429690791079, "kappa_radpm": -0.7442478614675653, "vx_mps": 3.3502620121254783, "ax_mps2": -3.2339043828639085}, {"id": 562, "s_m": 56.16231656439664, "d_m": 0.0, "x_m": 6.807735092831544, "y_m": -12.69680224982957, "d_right": 0.3269105206453702, "d_left": 2.8358415869140265, "psi_rad": -1.0271071036684942, "kappa_radpm": -0.832583129580279, "vx_mps": 3.252369652309974, "ax_mps2": -2.4730012573911333}, {"id": 563, "s_m": 56.26224951202012, "d_m": 0.0, "x_m": 6.855676062104015, "y_m": -12.784450467282845, "d_right": 0.33724788304549075, "d_left": 2.7880433325534524, "psi_rad": -1.1153125153620147, "kappa_radpm": -0.9486634439922175, "vx_mps": 3.1754747275032074, "ax_mps2": -0.9265230622001367}, {"id": 564, "s_m": 56.362182459643606, "d_m": 0.0, "x_m": 6.895068437669282, "y_m": -12.876276347375372, "d_right": 0.3295588360411103, "d_left": 2.746002605456213, "psi_rad": -1.2186914861324754, "kappa_radpm": -1.1225729476268143, "vx_mps": 3.1461817149869096, "ax_mps2": -0.03823624637993344}, {"id": 565, "s_m": 56.462115407267085, "d_m": 0.0, "x_m": 6.923908264219938, "y_m": -12.971734423277288, "d_right": 0.30402370826625646, "d_left": 2.703931250045239, "psi_rad": -1.3376688675378063, "kappa_radpm": -1.213246558095533, "vx_mps": 3.144966973134116, "ax_mps2": -0.03823624637993344}, {"id": 566, "s_m": 56.562048354890564, "d_m": 0.0, "x_m": 6.941071973701596, "y_m": -13.070091214524114, "d_right": 0.2982194059017638, "d_left": 2.673017900084401, "psi_rad": -1.4581626566093906, "kappa_radpm": -1.199380970245106, "vx_mps": 3.1437517619065845, "ax_mps2": 0.10810110768080959}, {"id": 567, "s_m": 56.66198130251405, "d_m": 0.0, "x_m": 6.946348323547776, "y_m": -13.169572727201482, "d_right": 0.30351783502327684, "d_left": 2.6469366711470124, "psi_rad": -1.5774681923685119, "kappa_radpm": -1.199372145666095, "vx_mps": 3.1471861821561444, "ax_mps2": 0.0821914940716379}, {"id": 568, "s_m": 56.76191425013753, "d_m": 0.0, "x_m": 6.939685661500013, "y_m": -13.269275984268868, "d_right": 0.3068798602394375, "d_left": 2.636083816897375, "psi_rad": -1.6976363603531341, "kappa_radpm": -1.202934434881918, "vx_mps": 3.1497949364520355, "ax_mps2": 0.027083358278677618}, {"id": 569, "s_m": 56.86184719776101, "d_m": 0.0, "x_m": 6.921251346838763, "y_m": -13.367068787873572, "d_right": 0.3024477043520123, "d_left": 2.6377324324194156, "psi_rad": -1.8155941382962428, "kappa_radpm": -1.149120237368793, "vx_mps": 3.15065408785978, "ax_mps2": 0.5547440534723711}, {"id": 570, "s_m": 56.961780145384495, "d_m": 0.0, "x_m": 6.891547808012769, "y_m": -13.46270050774252, "d_right": 0.3126495214639704, "d_left": 2.6400432070685156, "psi_rad": -1.9271762907157424, "kappa_radpm": -1.0812180373619134, "vx_mps": 3.1682006878081026, "ax_mps2": 1.1084754289438647}, {"id": 571, "s_m": 57.061713093007974, "d_m": 0.0, "x_m": 6.851919443799761, "y_m": -13.554180716510663, "d_right": 0.31830410878794213, "d_left": 2.6444297736659337, "psi_rad": -2.029729903276394, "kappa_radpm": -0.9546883202227022, "vx_mps": 3.202973935609351, "ax_mps2": 2.16615265339585}, {"id": 572, "s_m": 57.16164604063145, "d_m": 0.0, "x_m": 6.803511557866554, "y_m": -13.641873057054356, "d_right": 0.3353797142902613, "d_left": 2.65359633035342, "psi_rad": -2.118404230119488, "kappa_radpm": -0.8203649793940213, "vx_mps": 3.2698596409487353, "ax_mps2": 3.187338932602183}, {"id": 573, "s_m": 57.26157898825494, "d_m": 0.0, "x_m": 6.748139094500539, "y_m": -13.725163125088878, "d_right": 0.32727004388031156, "d_left": 2.6618383665965935, "psi_rad": -2.1947153941186315, "kappa_radpm": -0.7061846131030263, "vx_mps": 3.365861319294878, "ax_mps2": 3.955822577843534}, {"id": 574, "s_m": 57.36151193587842, "d_m": 0.0, "x_m": 6.687009053794416, "y_m": -13.804336094803533, "d_right": 0.34221424274184314, "d_left": 2.6380953677125243, "psi_rad": -2.2602030651640437, "kappa_radpm": -0.6057163727621255, "vx_mps": 3.4813296944823087, "ax_mps2": 4.61207309490079}, {"id": 575, "s_m": 57.4614448835019, "d_m": 0.0, "x_m": 6.621060772144511, "y_m": -13.87976642880163, "d_right": 0.3753101365636916, "d_left": 2.5812683533215672, "psi_rad": -2.317273244728252, "kappa_radpm": -0.5448271956923119, "vx_mps": 3.6112951360614436, "ax_mps2": 4.8442458982798655}, {"id": 576, "s_m": 57.561377831125384, "d_m": 0.0, "x_m": 6.551275005777948, "y_m": -13.951294729057453, "d_right": 0.38739930221670305, "d_left": 2.5319959387173343, "psi_rad": -2.369855408767963, "kappa_radpm": -0.5088249087078203, "vx_mps": 3.742946981056133, "ax_mps2": 4.817381074213073}, {"id": 577, "s_m": 57.66131077874886, "d_m": 0.0, "x_m": 6.477614674913947, "y_m": -14.019486910231967, "d_right": 0.41431516893365794, "d_left": 2.4809859490009427, "psi_rad": -2.4185567366777723, "kappa_radpm": -0.44887048305218497, "vx_mps": 3.8694291935814733, "ax_mps2": 5.221413530624028}, {"id": 578, "s_m": 57.76124372637234, "d_m": 0.0, "x_m": 6.401301356639655, "y_m": -14.084013452984072, "d_right": 0.43053437526439353, "d_left": 2.4297986955382895, "psi_rad": -2.4595513606986437, "kappa_radpm": -0.3725493905196074, "vx_mps": 4.002007592932992, "ax_mps2": 5.97130940047942}, {"id": 579, "s_m": 57.86117667399583, "d_m": 0.0, "x_m": 6.32226695634923, "y_m": -14.145883192720923, "d_right": 0.44072567908544463, "d_left": 2.384890383540104, "psi_rad": -2.495380289424581, "kappa_radpm": -0.37503023618667797, "vx_mps": 4.148436557670468, "ax_mps2": 5.479378296564068}, {"id": 580, "s_m": 57.96110962161931, "d_m": 0.0, "x_m": 6.241522229828566, "y_m": -14.204310758725859, "d_right": 0.4589499575435519, "d_left": 2.3471874843409237, "psi_rad": -2.536192717127891, "kappa_radpm": -0.4460179259930893, "vx_mps": 4.278395344244888, "ax_mps2": 3.7650277307158677}, {"id": 581, "s_m": 58.06104256924279, "d_m": 0.0, "x_m": 6.157675535265315, "y_m": -14.259585461053756, "d_right": 0.4763094996019186, "d_left": 2.3163288234486274, "psi_rad": -2.5794589240078327, "kappa_radpm": -0.3512924307036855, "vx_mps": 4.365451564235421, "ax_mps2": 5.231689532099584}, {"id": 582, "s_m": 58.16097551686627, "d_m": 0.0, "x_m": 6.073066631787508, "y_m": -14.311251568426119, "d_right": 0.5019677640509742, "d_left": 2.278302550850008, "psi_rad": -2.6036324978355054, "kappa_radpm": -0.1286624560728573, "vx_mps": 4.483615022687919, "ax_mps2": 6.71094930688921}, {"id": 583, "s_m": 58.26090846448975, "d_m": 0.0, "x_m": 5.986259719192079, "y_m": -14.362466000635711, "d_right": 0.5152141065845117, "d_left": 2.237225522685105, "psi_rad": -2.613677306560483, "kappa_radpm": -0.11181262257674235, "vx_mps": 4.630776777480334, "ax_mps2": 6.629594058396888}, {"id": 584, "s_m": 58.36084141211323, "d_m": 0.0, "x_m": 5.900566588552614, "y_m": -14.411739499760674, "d_right": 0.5452370175009534, "d_left": 2.2017188211509735, "psi_rad": -2.6263427078280817, "kappa_radpm": -0.13593918612345066, "vx_mps": 4.771700254045361, "ax_mps2": 6.551530564464226}, {"id": 585, "s_m": 58.46077435973672, "d_m": 0.0, "x_m": 5.81291602888976, "y_m": -14.460666544944157, "d_right": 0.5630539622157503, "d_left": 2.170899940350066, "psi_rad": -2.637858110867489, "kappa_radpm": -0.09160501329869235, "vx_mps": 4.906989997540356, "ax_mps2": 6.476443372757931}, {"id": 586, "s_m": 58.5607073073602, "d_m": 0.0, "x_m": 5.725373069158345, "y_m": -14.508483883000286, "d_right": 0.5921279248441683, "d_left": 2.145384730389289, "psi_rad": -2.644906233406478, "kappa_radpm": -0.05751898953209692, "vx_mps": 5.037159019593644, "ax_mps2": 6.404064651886581}, {"id": 587, "s_m": 58.660640254983676, "d_m": 0.0, "x_m": 5.637899015728946, "y_m": -14.555613209741269, "d_right": 0.6074227360604294, "d_left": 2.11660103255219, "psi_rad": -2.649523987787078, "kappa_radpm": -0.03481167772515676, "vx_mps": 5.162647102363507, "ax_mps2": 6.3341646805349985}, {"id": 588, "s_m": 58.76057320260716, "d_m": 0.0, "x_m": 5.549566835377912, "y_m": -14.6028018588212, "d_right": 0.6362294853864158, "d_left": 2.0859146568458318, "psi_rad": -2.6520396819227514, "kappa_radpm": -0.015072235931592145, "vx_mps": 5.283834649008161, "ax_mps2": 6.266544649097596}, {"id": 589, "s_m": 58.86050615023064, "d_m": 0.0, "x_m": 5.461554790717638, "y_m": -14.64964682251021, "d_right": 0.651434643266018, "d_left": 2.053110015120559, "psi_rad": -2.6526731529512366, "kappa_radpm": -0.0008023356604915855, "vx_mps": 5.401053337494097, "ax_mps2": 6.201031121447238}, {"id": 590, "s_m": 58.96043909785413, "d_m": 0.0, "x_m": 5.37334588319516, "y_m": -14.69658488135618, "d_right": 0.6811182778848864, "d_left": 2.0205341118959073, "psi_rad": -2.652347080771884, "kappa_radpm": 0.007060992347481646, "vx_mps": 5.514594435767558, "ax_mps2": 6.137471711447026}, {"id": 591, "s_m": 59.06037204547761, "d_m": 0.0, "x_m": 5.285351415714842, "y_m": -14.743475016309269, "d_right": 0.7234444986795786, "d_left": 1.9837495925512971, "psi_rad": -2.651633014707893, "kappa_radpm": 0.007235032757019911, "vx_mps": 5.624715376724386, "ax_mps2": 6.075731663521233}, {"id": 592, "s_m": 59.160304993101086, "d_m": 0.0, "x_m": 5.197343649961825, "y_m": -14.790452251196317, "d_right": 0.7696648130523182, "d_left": 1.9460809220177389, "psi_rad": -2.650979187696814, "kappa_radpm": 0.004628490611752746, "vx_mps": 5.731645018436654, "ax_mps2": 6.015691116370934}, {"id": 593, "s_m": 59.26023794072457, "d_m": 0.0, "x_m": 5.1088469136682555, "y_m": -14.837742406176769, "d_right": 0.7910207999744845, "d_left": 1.912655775276258, "psi_rad": -2.6507537303694892, "kappa_radpm": -7.537488259056735e-05, "vx_mps": 5.835587897364965, "ax_mps2": 5.957242890028719}, {"id": 594, "s_m": 59.36017088834805, "d_m": 0.0, "x_m": 5.021197321209004, "y_m": -14.884575607342802, "d_right": 0.820658006957308, "d_left": 1.884242938404995, "psi_rad": -2.6510808749455554, "kappa_radpm": -0.00638169048484857, "vx_mps": 5.93672770061855, "ax_mps2": 5.900290678839501}, {"id": 595, "s_m": 59.46010383597153, "d_m": 0.0, "x_m": 4.933011431447147, "y_m": -14.931623815472598, "d_right": 0.8610154149564799, "d_left": 1.8536284996756844, "psi_rad": -2.652008057256891, "kappa_radpm": -0.012165579492612058, "vx_mps": 6.035230125689919, "ax_mps2": 5.844747562876749}, {"id": 596, "s_m": 59.56003678359502, "d_m": 0.0, "x_m": 4.844558912234694, "y_m": -14.978676555218884, "d_right": 0.908358422574453, "d_left": 1.8203787927042456, "psi_rad": -2.6534988269104245, "kappa_radpm": -0.017463706533666072, "vx_mps": 6.131245254773461, "ax_mps2": 5.790534771757571}, {"id": 597, "s_m": 59.659969731218496, "d_m": 0.0, "x_m": 4.756658016976915, "y_m": -15.025240732410131, "d_right": 0.955347827556735, "d_left": 1.7924704976047134, "psi_rad": -2.6554510860175995, "kappa_radpm": -0.02160968758712515, "vx_mps": 6.224909540732142, "ax_mps2": 5.737580650421537}, {"id": 598, "s_m": 59.759902678841975, "d_m": 0.0, "x_m": 4.667772448611634, "y_m": -15.072081289083396, "d_right": 0.9791334642907487, "d_left": 1.7526319650250652, "psi_rad": -2.657803026507999, "kappa_radpm": -0.02501133328944537, "vx_mps": 6.316347479639335, "ax_mps2": 5.685819787935186}, {"id": 599, "s_m": 59.85983562646546, "d_m": 0.0, "x_m": 4.579680448428351, "y_m": -15.118224293076363, "d_right": 1.0077374525812908, "d_left": 1.714896042929939, "psi_rad": -2.6603985226524536, "kappa_radpm": -0.027139876415160854, "vx_mps": 6.405673028314417, "ax_mps2": 5.635192278959721}, {"id": 600, "s_m": 59.95976857408894, "d_m": 0.0, "x_m": 4.490862601756111, "y_m": -15.164441723959829, "d_right": 1.0450937893939376, "d_left": 1.682253440996233, "psi_rad": -2.6632036975203803, "kappa_radpm": -0.02859779807139098, "vx_mps": 6.4929908128225335, "ax_mps2": 5.585643093984906}, {"id": 601, "s_m": 60.05970152171242, "d_m": 0.0, "x_m": 4.402103749663489, "y_m": -15.210306899407417, "d_right": 1.0900389501042518, "d_left": 1.6553620361134436, "psi_rad": -2.6660944490171827, "kappa_radpm": -0.02925999192790717, "vx_mps": 6.578397164424409, "ax_mps2": 5.537121539359877}, {"id": 602, "s_m": 60.159634469335906, "d_m": 0.0, "x_m": 4.313265167915538, "y_m": -15.25588524631894, "d_right": 1.135318710700345, "d_left": 1.6175554172397286, "psi_rad": -2.66902945242352, "kappa_radpm": -0.029275222178088346, "vx_mps": 6.6619810121661684, "ax_mps2": 5.48958079194462}, {"id": 603, "s_m": 60.259567416959385, "d_m": 0.0, "x_m": 4.223990608327042, "y_m": -15.301357635627058, "d_right": 1.1717155057888922, "d_left": 1.5799285385339343, "psi_rad": -2.671943609097857, "kappa_radpm": -0.028911772059647806, "vx_mps": 6.74382465563682, "ax_mps2": 5.44297749614408}, {"id": 604, "s_m": 60.359500364582864, "d_m": 0.0, "x_m": 4.13504473361197, "y_m": -15.346339972702474, "d_right": 1.1988157074810755, "d_left": 1.548306823009943, "psi_rad": -2.674787433070591, "kappa_radpm": -0.027987604096502115, "vx_mps": 6.824004436989396, "ax_mps2": 5.397271413395343}, {"id": 605, "s_m": 60.45943331220635, "d_m": 0.0, "x_m": 4.045401316658371, "y_m": -15.391360399578987, "d_right": 1.2333833727243715, "d_left": 1.5226926727811658, "psi_rad": -2.6775416174012037, "kappa_radpm": -0.026948856762480343, "vx_mps": 6.902591327826102, "ax_mps2": 5.352425115990579}, {"id": 606, "s_m": 60.55936625982983, "d_m": 0.0, "x_m": 3.9562755931277147, "y_m": -15.435821151628678, "d_right": 1.268943986128464, "d_left": 1.4947068967070134, "psi_rad": -2.680156668222658, "kappa_radpm": -0.025471824629349937, "vx_mps": 6.979651443770662, "ax_mps2": 5.308403718566122}, {"id": 607, "s_m": 60.65929920745331, "d_m": 0.0, "x_m": 3.866385387973809, "y_m": -15.48037767122668, "d_right": 1.30962092504452, "d_left": 1.4637293071022555, "psi_rad": -2.6826375613832205, "kappa_radpm": -0.02401264004149286, "vx_mps": 7.055246497329018, "ax_mps2": 5.26517464173969}, {"id": 608, "s_m": 60.759232155076795, "d_m": 0.0, "x_m": 3.777030929889279, "y_m": -15.524402188557303, "d_right": 1.3376019264933836, "d_left": 1.4394790619648976, "psi_rad": -2.6849439324065614, "kappa_radpm": -0.02224233509103088, "vx_mps": 7.129434197850229, "ax_mps2": 5.222707403311685}, {"id": 609, "s_m": 60.859165102700274, "d_m": 0.0, "x_m": 3.6869857271567428, "y_m": -15.568518436462739, "d_right": 1.3639254009542696, "d_left": 1.4035768957564527, "psi_rad": -2.6870872452669694, "kappa_radpm": -0.020535064797879258, "vx_mps": 7.202268605949944, "ax_mps2": 5.180973433197001}, {"id": 610, "s_m": 60.95909805032375, "d_m": 0.0, "x_m": 3.597382121436315, "y_m": -15.612190691787038, "d_right": 1.3965618094297898, "d_left": 1.366863852778703, "psi_rad": -2.68904210632755, "kappa_radpm": -0.01865202132055391, "vx_mps": 7.273800448577674, "ax_mps2": 5.139945908870977}, {"id": 611, "s_m": 61.05903099794724, "d_m": 0.0, "x_m": 3.507245165629296, "y_m": -15.655915068156888, "d_right": 1.4354326497356125, "d_left": 1.3366362584638432, "psi_rad": -2.6908184813202647, "kappa_radpm": -0.016834201184125007, "vx_mps": 7.344077399941145, "ax_mps2": 5.099599608614144}, {"id": 612, "s_m": 61.15896394557072, "d_m": 0.0, "x_m": 3.417399698083324, "y_m": -15.699311521898666, "d_right": 1.479059679163098, "d_left": 1.3136173203037316, "psi_rad": -2.692403854919819, "kappa_radpm": -0.01490818491612542, "vx_mps": 7.413144332704105, "ax_mps2": 5.059910780257136}, {"id": 613, "s_m": 61.2588968931942, "d_m": 0.0, "x_m": 3.327210490929137, "y_m": -15.742708329935011, "d_right": 1.5082537688504745, "d_left": 1.285843112561585, "psi_rad": -2.693800698183689, "kappa_radpm": -0.013023191339760147, "vx_mps": 7.48104354321433, "ax_mps2": 5.02085702346834}, {"id": 614, "s_m": 61.358829840817684, "d_m": 0.0, "x_m": 3.237156188010094, "y_m": -15.785895826335404, "d_right": 1.5338418370445386, "d_left": 1.256334163184454, "psi_rad": -2.6950108186162414, "kappa_radpm": -0.011216191849723278, "vx_mps": 7.547814953969882, "ax_mps2": 4.982417183914088}, {"id": 615, "s_m": 61.45876278844116, "d_m": 0.0, "x_m": 3.146935924489256, "y_m": -15.82903852064749, "d_right": 1.5653347752845606, "d_left": 1.2309912923673485, "psi_rad": -2.696044991378775, "kappa_radpm": -0.00947913155133288, "vx_mps": 7.613496296073715, "ax_mps2": 4.944571257858686}, {"id": 616, "s_m": 61.55869573606464, "d_m": 0.0, "x_m": 3.0567215022678007, "y_m": -15.87207363355288, "d_right": 1.602352411056234, "d_left": 1.199156364658163, "psi_rad": -2.696895612230784, "kappa_radpm": -0.007364115148405758, "vx_mps": 7.678123274042459, "ax_mps2": 4.907300305971336}, {"id": 617, "s_m": 61.65862868368813, "d_m": 0.0, "x_m": 2.966478059119785, "y_m": -15.915041120100062, "d_right": 1.6445529204666316, "d_left": 1.162238189365134, "psi_rad": -2.697512599821316, "kappa_radpm": -0.004991781311887637, "vx_mps": 7.741729715011445, "ax_mps2": 4.870586375275856}, {"id": 618, "s_m": 61.75856163131161, "d_m": 0.0, "x_m": 2.8761767910066713, "y_m": -15.95798085356792, "d_right": 1.6757258089500904, "d_left": 1.1329985819367068, "psi_rad": -2.6978938680654787, "kappa_radpm": -0.0026082591799134447, "vx_mps": 7.8043477041046385, "ax_mps2": 4.834412428322329}, {"id": 619, "s_m": 61.85849457893509, "d_m": 0.0, "x_m": 2.785923258733631, "y_m": -16.00086904323147, "d_right": 1.7011692125190085, "d_left": 1.1120483759202828, "psi_rad": -2.698033334973525, "kappa_radpm": -0.00018734624441584842, "vx_mps": 7.86600770750595, "ax_mps2": 4.798762278778248}, {"id": 620, "s_m": 61.95842752655857, "d_m": 0.0, "x_m": 2.695603523749595, "y_m": -16.043786729878157, "d_right": 1.7320348801351646, "d_left": 1.0830550168593427, "psi_rad": -2.697921709015416, "kappa_radpm": 0.002830574622674781, "vx_mps": 7.926738684570624, "ax_mps2": 4.7636205327430545}, {"id": 621, "s_m": 62.05836047418205, "d_m": 0.0, "x_m": 2.605342086813491, "y_m": -16.086709069272338, "d_right": 1.7680324203449638, "d_left": 1.0541239528694568, "psi_rad": -2.6974252780405887, "kappa_radpm": 0.007105980668769826, "vx_mps": 7.986568190146623, "ax_mps2": 4.728972535175103}, {"id": 622, "s_m": 62.15829342180553, "d_m": 0.0, "x_m": 2.515105825393779, "y_m": -16.129698023351942, "d_right": 1.7985429591648245, "d_left": 1.0340108622298738, "psi_rad": -2.696507982861359, "kappa_radpm": 0.010587754340435625, "vx_mps": 8.045522468131137, "ax_mps2": 4.6948043208956}, {"id": 623, "s_m": 62.25822636942902, "d_m": 0.0, "x_m": 2.4248619918000336, "y_m": -16.17280370952208, "d_right": 1.824450923777342, "d_left": 1.003587955409034, "psi_rad": -2.695447010837306, "kappa_radpm": 0.01063481723707764, "vx_mps": 8.103626537162736, "ax_mps2": 4.6611025697033}, {"id": 624, "s_m": 62.3581593170525, "d_m": 0.0, "x_m": 2.3348156263765176, "y_m": -16.215932686629024, "d_right": 1.855438676072001, "d_left": 0.9689819488781299, "psi_rad": -2.694381815903391, "kappa_radpm": 0.01062053383502464, "vx_mps": 8.160904269242456, "ax_mps2": 4.627854565180692}, {"id": 625, "s_m": 62.458092264675976, "d_m": 0.0, "x_m": 2.2446004027429884, "y_m": -16.25925804485693, "d_right": 1.8781977435234973, "d_left": 0.939896901240107, "psi_rad": -2.693390013092989, "kappa_radpm": 0.00919693975210291, "vx_mps": 8.21737846198423, "ax_mps2": 4.595048156832872}, {"id": 626, "s_m": 62.55802521229946, "d_m": 0.0, "x_m": 2.1546893478663045, "y_m": -16.302539064474978, "d_right": 1.904631978032994, "d_left": 0.9182590990351391, "psi_rad": -2.6925438665440797, "kappa_radpm": 0.007758936593023543, "vx_mps": 8.273070905114416, "ax_mps2": 4.562671725228573}, {"id": 627, "s_m": 62.65795815992294, "d_m": 0.0, "x_m": 2.0645291501803746, "y_m": -16.346027527822308, "d_right": 1.9360347528238888, "d_left": 0.879084923288007, "psi_rad": -2.6918001078460705, "kappa_radpm": 0.007148710645964709, "vx_mps": 8.328002441770263, "ax_mps2": 4.530714149863843}, {"id": 628, "s_m": 62.75789110754642, "d_m": 0.0, "x_m": 1.9746686938931193, "y_m": -16.389450586218285, "d_right": 1.9719759908993848, "d_left": 0.849955088337382, "psi_rad": -2.6911146960099224, "kappa_radpm": 0.006585653711174835, "vx_mps": 8.3821930250861, "ax_mps2": 4.4991647794868905}, {"id": 629, "s_m": 62.85782405516991, "d_m": 0.0, "x_m": 1.88458818024109, "y_m": -16.433053708353842, "d_right": 2.0033252635846086, "d_left": 0.8317521650168878, "psi_rad": -2.690465395134403, "kappa_radpm": 0.006462412764343629, "vx_mps": 8.435661770502529, "ax_mps2": 4.468013404660955}, {"id": 630, "s_m": 62.957757002793386, "d_m": 0.0, "x_m": 1.7947664806118022, "y_m": -16.47660319360688, "d_right": 2.030195621161895, "d_left": 0.7979732441288614, "psi_rad": -2.6898220503385026, "kappa_radpm": 0.006427894325229558, "vx_mps": 8.48842700418728, "ax_mps2": 4.437250232360614}, {"id": 631, "s_m": 63.057689950416865, "d_m": 0.0, "x_m": 1.7047677930323442, "y_m": -16.520309909874353, "d_right": 2.0616912104947254, "d_left": 0.7689726703735004, "psi_rad": -2.689180867607808, "kappa_radpm": 0.006387523112936305, "vx_mps": 8.540506307915319, "ax_mps2": 4.406865862419727}, {"id": 632, "s_m": 63.15762289804035, "d_m": 0.0, "x_m": 1.614981252700913, "y_m": -16.56398446329057, "d_right": 2.0845557890443107, "d_left": 0.7522186685414393, "psi_rad": -2.688545185338956, "kappa_radpm": 0.006346086379046273, "vx_mps": 8.59191656071957, "ax_mps2": 4.376851265671046}, {"id": 633, "s_m": 63.25755584566383, "d_m": 0.0, "x_m": 1.5250642423993916, "y_m": -16.60779292433663, "d_right": 2.1118916677561868, "d_left": 0.7164424655792406, "psi_rad": -2.6879162734519735, "kappa_radpm": 0.006193039824106891, "vx_mps": 8.64267397759185, "ax_mps2": 4.347197763626866}, {"id": 634, "s_m": 63.35748879328731, "d_m": 0.0, "x_m": 1.4353130410632335, "y_m": -16.651589348459282, "d_right": 2.14305696121744, "d_left": 0.6877764519846636, "psi_rad": -2.687308224102182, "kappa_radpm": 0.005983453424560098, "vx_mps": 8.692794145485454, "ax_mps2": 4.317897009574067}, {"id": 635, "s_m": 63.457421740910796, "d_m": 0.0, "x_m": 1.3454724392894817, "y_m": -16.69549586897435, "d_right": 2.166395660298363, "d_left": 0.6727826234510542, "psi_rad": -2.6867228911425647, "kappa_radpm": 0.005694901878432028, "vx_mps": 8.742292056845786, "ax_mps2": -7.9017901491522915}, {"id": 636, "s_m": 63.557354688534275, "d_m": 0.0, "x_m": 1.2557571629097306, "y_m": -16.73940439673848, "d_right": 2.19406873848801, "d_left": 0.650909711044577, "psi_rad": -2.6861710241220855, "kappa_radpm": 0.005353692067571649, "vx_mps": 8.65149536467396, "ax_mps2": -11.888626230236225}, {"id": 637, "s_m": 63.657287636157754, "d_m": 0.0, "x_m": 1.1659828820264526, "y_m": -16.78340130204092, "d_right": 2.2248939488471, "d_left": 0.6280678073756211, "psi_rad": -2.685655042196573, "kappa_radpm": 0.004941838849802175, "vx_mps": 8.513062969355529, "ax_mps2": -11.922011844062215}, {"id": 638, "s_m": 63.75722058378124, "d_m": 0.0, "x_m": 1.0763036983484384, "y_m": -16.827406517015813, "d_right": 2.2418670210762444, "d_left": 0.5962611877088706, "psi_rad": -2.6851845813951822, "kappa_radpm": 0.004474961238189323, "vx_mps": 8.371943475075179, "ax_mps2": -11.957301952920234}, {"id": 639, "s_m": 63.85715353140472, "d_m": 0.0, "x_m": 0.986582049781475, "y_m": -16.871482315402215, "d_right": 2.2618986234631104, "d_left": 0.5689518022713322, "psi_rad": -2.6847627126087676, "kappa_radpm": 0.003940644929188767, "vx_mps": 8.227975491595442, "ax_mps2": -11.99493467516298}, {"id": 640, "s_m": 63.957086479028206, "d_m": 0.0, "x_m": 0.8969377395451514, "y_m": -16.915563921278707, "d_right": 2.286149900374571, "d_left": 0.558315456897752, "psi_rad": -2.6843983885466827, "kappa_radpm": 0.0033503253546398816, "vx_mps": 8.080977807976883, "ax_mps2": -12.033667390478604}, {"id": 641, "s_m": 64.05701942665168, "d_m": 0.0, "x_m": 0.8072532694909198, "y_m": -16.95970256822085, "d_right": 2.314512794547237, "d_left": 0.5321740218765179, "psi_rad": -2.6840928755734463, "kappa_radpm": 0.002772709363964243, "vx_mps": 7.930768098167598, "ax_mps2": -12.06876126128177}, {"id": 642, "s_m": 64.15695237427516, "d_m": 0.0, "x_m": 0.7176400423873934, "y_m": -17.003836991625978, "d_right": 2.343883203991385, "d_left": 0.5157356893347126, "psi_rad": -2.6838443349435632, "kappa_radpm": 0.0022006121880624114, "vx_mps": 7.777207008489927, "ax_mps2": -12.100733623071154}, {"id": 643, "s_m": 64.25688532189865, "d_m": 0.0, "x_m": 0.6279777997382581, "y_m": -17.048019942935777, "d_right": 2.360800870804279, "d_left": 0.48778533452705114, "psi_rad": -2.683658009837881, "kappa_radpm": 0.0014668440481922361, "vx_mps": 7.6201328659141225, "ax_mps2": -12.139320576079163}, {"id": 644, "s_m": 64.35681826952212, "d_m": 0.0, "x_m": 0.5383881350125536, "y_m": -17.09218340434374, "d_right": 2.380453138994042, "d_left": 0.46330786368533355, "psi_rad": -2.6835537649775034, "kappa_radpm": 0.0006169809730054712, "vx_mps": 7.459235129660203, "ax_mps2": -12.176610343622997}, {"id": 645, "s_m": 64.45675121714561, "d_m": 0.0, "x_m": 0.4487366478983722, "y_m": -17.136384793199785, "d_right": 2.397838967708296, "d_left": 0.4370979943987786, "psi_rad": -2.6835099861484615, "kappa_radpm": 0.0005464950911343542, "vx_mps": 7.294278551862076, "ax_mps2": -12.149014310076073}, {"id": 646, "s_m": 64.5566841647691, "d_m": 0.0, "x_m": 0.35915849931735677, "y_m": -17.180556218252953, "d_right": 2.4192199883319243, "d_left": 0.41391728758020674, "psi_rad": -2.6834362377455765, "kappa_radpm": 0.0009312282378412068, "vx_mps": 7.125891240448698, "ax_mps2": -10.010314470602635}, {"id": 647, "s_m": 64.65661711239257, "d_m": 0.0, "x_m": 0.26952195331580686, "y_m": -17.224804901747024, "d_right": 2.4375335202821033, "d_left": 0.4141548262863271, "psi_rad": -2.6818342387259175, "kappa_radpm": 0.04465679643198442, "vx_mps": 6.984096613545165, "ax_mps2": -7.035104689714357}, {"id": 648, "s_m": 64.75655006001605, "d_m": 0.0, "x_m": 0.18016355638173598, "y_m": -17.269417427974943, "d_right": 2.4543546868392125, "d_left": 0.3969533204992861, "psi_rad": -2.6741843236387712, "kappa_radpm": 0.10867341494135471, "vx_mps": 6.882697727662251, "ax_mps2": -6.252997792746683}, {"id": 649, "s_m": 64.85648300763954, "d_m": 0.0, "x_m": 0.09118999768637748, "y_m": -17.315005021960914, "d_right": 2.4698642060922094, "d_left": 0.38514618484294444, "psi_rad": -2.6617714147184426, "kappa_radpm": 0.1284708204826251, "vx_mps": 6.791300833311866, "ax_mps2": -6.1877207336873585}, {"id": 650, "s_m": 64.95641595526301, "d_m": 0.0, "x_m": 0.002896699377723189, "y_m": -17.36168285281392, "d_right": 2.4810625736180625, "d_left": 0.3795253232227727, "psi_rad": -2.6486964943149918, "kappa_radpm": 0.1333583681530041, "vx_mps": 6.699630785690055, "ax_mps2": -6.186459459900365}, {"id": 651, "s_m": 65.0563489028865, "d_m": 0.0, "x_m": -0.08485453552533072, "y_m": -17.40957806393167, "d_right": 2.4891209248533737, "d_left": 0.36702633009020746, "psi_rad": -2.635213947866795, "kappa_radpm": 0.1359389919879469, "vx_mps": 6.606707985540443, "ax_mps2": -6.232943740366397}, {"id": 652, "s_m": 65.15628185050998, "d_m": 0.0, "x_m": -0.1718634285467875, "y_m": -17.458613439988007, "d_right": 2.5024806603620466, "d_left": 0.3472456089328433, "psi_rad": -2.6215394543228037, "kappa_radpm": 0.13786289533904977, "vx_mps": 6.511746119552844, "ax_mps2": -3.460169176237238}, {"id": 653, "s_m": 65.25621479813346, "d_m": 0.0, "x_m": -0.2582346280453971, "y_m": -17.50897609022447, "d_right": 2.5211918370009156, "d_left": 0.34438647822218654, "psi_rad": -2.604579735873431, "kappa_radpm": 0.20860261722278572, "vx_mps": 6.458426102031127, "ax_mps2": -0.16112429695972072}, {"id": 654, "s_m": 65.35614774575694, "d_m": 0.0, "x_m": -0.34344120542639045, "y_m": -17.56106993526148, "d_right": 2.5456848308724895, "d_left": 0.3294960598636222, "psi_rad": -2.5797906820544183, "kappa_radpm": 0.28791433191830934, "vx_mps": 6.455932501470185, "ax_mps2": -0.16112429695968516}, {"id": 655, "s_m": 65.45608069338043, "d_m": 0.0, "x_m": -0.4272841771010845, "y_m": -17.61551821552922, "d_right": 2.5620406642533764, "d_left": 0.31207320102373765, "psi_rad": -2.5518153063615756, "kappa_radpm": 0.2696127905597826, "vx_mps": 6.453437937385096, "ax_mps2": 0.6104737260922342}, {"id": 656, "s_m": 65.5560136410039, "d_m": 0.0, "x_m": -0.5095628369142632, "y_m": -17.67215927848378, "d_right": 2.569950941888287, "d_left": 0.31980696672355324, "psi_rad": -2.525903006330747, "kappa_radpm": 0.2508270215018825, "vx_mps": 6.462884347524049, "ax_mps2": 1.3617662346879946}, {"id": 657, "s_m": 65.65594658862739, "d_m": 0.0, "x_m": -0.5904245788797392, "y_m": -17.73091048886809, "d_right": 2.5779809002650085, "d_left": 0.30768064835322323, "psi_rad": -2.5005107373338937, "kappa_radpm": 0.25723241134055014, "vx_mps": 6.483906593797013, "ax_mps2": 1.0231570400301029}, {"id": 658, "s_m": 65.75587953625087, "d_m": 0.0, "x_m": -0.6697137401299725, "y_m": -17.791693007998678, "d_right": 2.5923787901929933, "d_left": 0.3140952385808271, "psi_rad": -2.4745066323807716, "kappa_radpm": 0.26218080080676154, "vx_mps": 6.499656830546382, "ax_mps2": 0.7607165842788953}, {"id": 659, "s_m": 65.85581248387435, "d_m": 0.0, "x_m": -0.74740767307272, "y_m": -17.85453999131714, "d_right": 2.5952155825986707, "d_left": 0.32449717872080164, "psi_rad": -2.448423977061104, "kappa_radpm": 0.2598131959734632, "vx_mps": 6.511342428103005, "ax_mps2": 0.820647223770303}, {"id": 660, "s_m": 65.95574543149783, "d_m": 0.0, "x_m": -0.8234352033387596, "y_m": -17.919373139519717, "d_right": 2.591448529249854, "d_left": 0.3323516890086943, "psi_rad": -2.4227739185713504, "kappa_radpm": 0.24180380921005554, "vx_mps": 6.523925168797932, "ax_mps2": 1.5439070583730665}, {"id": 661, "s_m": 66.05567837912132, "d_m": 0.0, "x_m": -0.8979025112587302, "y_m": -17.985987719289106, "d_right": 2.548159757200261, "d_left": 0.3602148591206145, "psi_rad": -2.4019263684877283, "kappa_radpm": 0.1754883048291956, "vx_mps": 6.547531899462192, "ax_mps2": 4.311056914240293}, {"id": 662, "s_m": 66.15561132674479, "d_m": 0.0, "x_m": -0.9711922421839566, "y_m": -18.053904827045276, "d_right": 2.506839148245935, "d_left": 0.3782591684813998, "psi_rad": -2.3873585158712545, "kappa_radpm": 0.12975627726833522, "vx_mps": 6.6130028900719635, "ax_mps2": 5.517445077448977}, {"id": 663, "s_m": 66.25554427436828, "d_m": 0.0, "x_m": -1.0435620351228814, "y_m": -18.122775918473316, "d_right": 2.4543038496674106, "d_left": 0.3807070435370059, "psi_rad": -2.374647862958652, "kappa_radpm": 0.12464061921118483, "vx_mps": 6.695861133863253, "ax_mps2": 5.470295101289508}, {"id": 664, "s_m": 66.35547722199176, "d_m": 0.0, "x_m": -1.115069773022455, "y_m": -18.19254475640989, "d_right": 2.4058675922694888, "d_left": 0.4053840600769288, "psi_rad": -2.3624018804755393, "kappa_radpm": 0.12221998187039544, "vx_mps": 6.777011269849331, "ax_mps2": 5.42406566187702}, {"id": 665, "s_m": 66.45541016961523, "d_m": 0.0, "x_m": -1.1857227433836222, "y_m": -18.26318692517688, "d_right": 2.3617686810021157, "d_left": 0.44361996023587374, "psi_rad": -2.3501162155282604, "kappa_radpm": 0.12364786773369461, "vx_mps": 6.856527363837623, "ax_mps2": 5.378717711940525}, {"id": 666, "s_m": 66.55534311723872, "d_m": 0.0, "x_m": -1.255476415684487, "y_m": -18.334653424507763, "d_right": 2.3095805265571756, "d_left": 0.4807011279258113, "psi_rad": -2.338579649203139, "kappa_radpm": 0.0896780072206451, "vx_mps": 6.934478330907945, "ax_mps2": 5.334214900364832}, {"id": 667, "s_m": 66.6552760648622, "d_m": 0.0, "x_m": -1.3246419742214837, "y_m": -18.40677861501063, "d_right": 2.2599282599170887, "d_left": 0.507042202156075, "psi_rad": -2.333065312698979, "kappa_radpm": 0.021002818183325923, "vx_mps": 7.010928423421038, "ax_mps2": 5.290523317516994}, {"id": 668, "s_m": 66.7552090124857, "d_m": 0.0, "x_m": -1.3935534721575202, "y_m": -18.478986492892055, "d_right": 2.213943086423132, "d_left": 0.5266461097424849, "psi_rad": -2.3327311509770747, "kappa_radpm": 0.01106520066189904, "vx_mps": 7.085937661136564, "ax_mps2": 5.247611270733139}, {"id": 669, "s_m": 66.85514196010917, "d_m": 0.0, "x_m": -1.4624882100520284, "y_m": -18.551398914297742, "d_right": 2.1716221440679764, "d_left": 0.5523033524287585, "psi_rad": -2.3298851710126396, "kappa_radpm": 0.0455606796371439, "vx_mps": 7.159562211619265, "ax_mps2": 5.205449085709935}, {"id": 670, "s_m": 66.95507490773265, "d_m": 0.0, "x_m": -1.5309913456074682, "y_m": -18.623992432893417, "d_right": 2.1275993812714367, "d_left": 0.5862018676451914, "psi_rad": -2.3244602140893553, "kappa_radpm": 0.0523718905726853, "vx_mps": 7.23185472778073, "ax_mps2": 5.164008930235322}, {"id": 671, "s_m": 67.05500785535614, "d_m": 0.0, "x_m": -1.5992567569584688, "y_m": -18.69708973677493, "d_right": 2.0780755336224086, "d_left": 0.6212861050965252, "psi_rad": -2.3197771818545263, "kappa_radpm": 0.04136722273979037, "vx_mps": 7.302864648316395, "ax_mps2": 5.123264657260843}, {"id": 672, "s_m": 67.15494080297961, "d_m": 0.0, "x_m": -1.6671144341938167, "y_m": -18.77035731849371, "d_right": 2.032140330366549, "d_left": 0.661347424294379, "psi_rad": -2.316129148278488, "kappa_radpm": 0.032368896852674876, "vx_mps": 7.372638465904849, "ax_mps2": 5.083191664781157}, {"id": 673, "s_m": 67.2548737506031, "d_m": 0.0, "x_m": -1.734829302459054, "y_m": -18.843947705962556, "d_right": 1.9827175778205575, "d_left": 0.6903281179452989, "psi_rad": -2.3132726693170484, "kappa_radpm": 0.0248308519601711, "vx_mps": 7.441219967299263, "ax_mps2": 5.043766770370665}, {"id": 674, "s_m": 67.35480669822658, "d_m": 0.0, "x_m": -1.8023137617434533, "y_m": -18.917655255875513, "d_right": 1.9357396410153311, "d_left": 0.7244696267691781, "psi_rad": -2.3111256362464427, "kappa_radpm": 0.018596592858233355, "vx_mps": 7.50865044882969, "ax_mps2": 5.004968098543484}, {"id": 675, "s_m": 67.45473964585005, "d_m": 0.0, "x_m": -1.8696786030137857, "y_m": -18.99150800826076, "d_right": 1.881887815319258, "d_left": 0.763710569808669, "psi_rad": -2.3095294184039576, "kappa_radpm": 0.013384592710113457, "vx_mps": 7.574968910326174, "ax_mps2": 4.96677497937069}, {"id": 676, "s_m": 67.55467259347354, "d_m": 0.0, "x_m": -1.9369788296655996, "y_m": -19.065489415270907, "d_right": 1.83200486455991, "d_left": 0.7923236409167136, "psi_rad": -2.3084165529785245, "kappa_radpm": 0.00942437431497192, "vx_mps": 7.64021223004638, "ax_mps2": 4.929167857007143}, {"id": 677, "s_m": 67.65460554109703, "d_m": 0.0, "x_m": -2.0041496527490343, "y_m": -19.139469354635704, "d_right": 1.782276775286032, "d_left": 0.8312983270219129, "psi_rad": -2.3076127625902325, "kappa_radpm": 0.006682704895702334, "vx_mps": 7.704415322833629, "ax_mps2": 4.892128206968869}, {"id": 678, "s_m": 67.7545384887205, "d_m": 0.0, "x_m": -2.071360994979662, "y_m": -19.213593456513447, "d_right": 1.7318040037430706, "d_left": 0.8799614467340479, "psi_rad": -2.3070787601546123, "kappa_radpm": 0.0039586332205221895, "vx_mps": 7.767611283429564, "ax_mps2": 4.855638461158799}, {"id": 679, "s_m": 67.85447143634399, "d_m": 0.0, "x_m": -2.1384524630444357, "y_m": -19.28764423271218, "d_right": 1.6858593429357778, "d_left": 0.9196294857079761, "psi_rad": -2.3068220629405696, "kappa_radpm": 0.0011869449207960094, "vx_mps": 7.829831516609882, "ax_mps2": 4.819681939769859}, {"id": 680, "s_m": 67.95440438396747, "d_m": 0.0, "x_m": -2.205608587120413, "y_m": -19.361784048480416, "d_right": 1.6403235431893832, "d_left": 0.9672252864332437, "psi_rad": -2.306842346432505, "kappa_radpm": -0.0016661213401420925, "vx_mps": 7.891105855594334, "ax_mps2": 4.784242789310754}, {"id": 681, "s_m": 68.05433733159094, "d_m": 0.0, "x_m": -2.2727418735480884, "y_m": -19.435873505623526, "d_right": 1.5887872998125603, "d_left": 0.9991525701785111, "psi_rad": -2.3071647522681347, "kappa_radpm": -0.004788939335609484, "vx_mps": 7.951462669997232, "ax_mps2": 4.749305926092789}, {"id": 682, "s_m": 68.15427027921443, "d_m": 0.0, "x_m": -2.3398758676227205, "y_m": -19.509892449763235, "d_right": 1.53669640622146, "d_left": 1.0378442840647935, "psi_rad": -2.3078007425770135, "kappa_radpm": -0.007891675267828083, "vx_mps": 8.010928964426023, "ax_mps2": 4.714856984601067}, {"id": 683, "s_m": 68.25420322683792, "d_m": 0.0, "x_m": -2.4071813612308217, "y_m": -19.58398330086528, "d_right": 1.4840094265192263, "d_left": 1.0783832523351593, "psi_rad": -2.3087332065420476, "kappa_radpm": -0.010758609650808913, "vx_mps": 8.069530468699435, "ax_mps2": -10.489580325815954}, {"id": 684, "s_m": 68.35413617446139, "d_m": 0.0, "x_m": -2.4743387823960057, "y_m": -19.657751530354258, "d_right": 1.4364303229944453, "d_left": 1.1171165739499915, "psi_rad": -2.3099541708036164, "kappa_radpm": -0.013680595449384752, "vx_mps": 7.93856489692467, "ax_mps2": -11.261805713487906}, {"id": 685, "s_m": 68.45406912208487, "d_m": 0.0, "x_m": -2.541931113260535, "y_m": -19.731795047620633, "d_right": 1.3929408949506619, "d_left": 1.163503131623829, "psi_rad": -2.311441302444227, "kappa_radpm": -0.016013187660462922, "vx_mps": 7.795509075208678, "ax_mps2": -11.144083927079535}, {"id": 686, "s_m": 68.55400206970836, "d_m": 0.0, "x_m": -2.609176792233987, "y_m": -19.805222413971904, "d_right": 1.344513868495432, "d_left": 1.2117891045804456, "psi_rad": -2.3131582663639225, "kappa_radpm": -0.018486220345347498, "vx_mps": 7.651316189445298, "ax_mps2": -11.116138230079615}, {"id": 687, "s_m": 68.65393501733183, "d_m": 0.0, "x_m": -2.6771355171554414, "y_m": -19.879157045863266, "d_right": 1.2878901854090172, "d_left": 1.2578712201534867, "psi_rad": -2.3150674517283636, "kappa_radpm": -0.019559149736673356, "vx_mps": 7.504725345528914, "ax_mps2": -11.085670398833553}, {"id": 688, "s_m": 68.75386796495532, "d_m": 0.0, "x_m": -2.744580645283162, "y_m": -19.95224553304217, "d_right": 1.2318881265445094, "d_left": 1.3096761900493896, "psi_rad": -2.317071338408593, "kappa_radpm": -0.020764923344049103, "vx_mps": 7.355627442519662, "ax_mps2": -11.06609853604631}, {"id": 689, "s_m": 68.8538009125788, "d_m": 0.0, "x_m": -2.81287707217626, "y_m": -20.025949343700184, "d_right": 1.1809450109834656, "d_left": 1.364529639169104, "psi_rad": -2.3192125058261426, "kappa_radpm": -0.021862327895330574, "vx_mps": 7.20371566501276, "ax_mps2": -11.0476061548748}, {"id": 690, "s_m": 68.95373386020228, "d_m": 0.0, "x_m": -2.8805822532109078, "y_m": -20.098695615973245, "d_right": 1.1293805764547427, "d_left": 1.4155451489166264, "psi_rad": -2.3214425745589073, "kappa_radpm": -0.02303428712649641, "vx_mps": 7.0487927823046785, "ax_mps2": -11.015451823534182}, {"id": 691, "s_m": 69.05366680782576, "d_m": 0.0, "x_m": -2.9492385235017804, "y_m": -20.17212324947972, "d_right": 1.0695329904430433, "d_left": 1.4640625251412658, "psi_rad": -2.323835309781746, "kappa_radpm": -0.024600205353837976, "vx_mps": 6.8908538329883315, "ax_mps2": -10.981448541834146}, {"id": 692, "s_m": 69.15359975544925, "d_m": 0.0, "x_m": -3.0172831457226215, "y_m": -20.244538891622724, "d_right": 1.0164878203105117, "d_left": 1.5091356449162583, "psi_rad": -2.3263637348161605, "kappa_radpm": -0.026355849084833332, "vx_mps": 6.729713924357241, "ax_mps2": -10.914365294857966}, {"id": 693, "s_m": 69.25353270307272, "d_m": 0.0, "x_m": -3.0862110611190414, "y_m": -20.317506565989422, "d_right": 0.9700793854885017, "d_left": 1.5572406755317192, "psi_rad": -2.3291458429620286, "kappa_radpm": -0.029050108832430113, "vx_mps": 6.565640876028689, "ax_mps2": -10.914281788989214}, {"id": 694, "s_m": 69.35346565069621, "d_m": 0.0, "x_m": -3.1547590810849386, "y_m": -20.38965174508418, "d_right": 0.921463443457021, "d_left": 1.602412860520047, "psi_rad": -2.332150534617512, "kappa_radpm": -0.029989120122616706, "vx_mps": 6.397362535627062, "ax_mps2": -10.928786027435745}, {"id": 695, "s_m": 69.4533985983197, "d_m": 0.0, "x_m": -3.2238889372904, "y_m": -20.461991716562625, "d_right": 0.8647306672016106, "d_left": 1.6513874253809122, "psi_rad": -2.334717319029422, "kappa_radpm": -0.021203967895107225, "vx_mps": 6.224303640481292, "ax_mps2": -11.327024735214803}, {"id": 696, "s_m": 69.55333154594317, "d_m": 0.0, "x_m": -3.2929778698322782, "y_m": -20.533983312723958, "d_right": 0.816122396879843, "d_left": 1.6966805014360173, "psi_rad": -2.3363784859003967, "kappa_radpm": -0.012330985758416632, "vx_mps": 6.0397077636025305, "ax_mps2": -11.69071332905065}, {"id": 697, "s_m": 69.65326449356665, "d_m": 0.0, "x_m": -3.362289656815622, "y_m": -20.60602813477869, "d_right": 0.7566895325171651, "d_left": 1.746711579977575, "psi_rad": -2.3372139969606485, "kappa_radpm": -0.00436871906127321, "vx_mps": 5.843072392511859, "ax_mps2": -11.982822496066508}, {"id": 698, "s_m": 69.75319744119014, "d_m": 0.0, "x_m": -3.431595017801864, "y_m": -20.678002701706887, "d_right": 0.7064494658497202, "d_left": 1.7986881401219288, "psi_rad": -2.3372869223061676, "kappa_radpm": 0.001831667784371968, "vx_mps": 5.634406573754894, "ax_mps2": -11.953781534792666}, {"id": 699, "s_m": 69.85313038881361, "d_m": 0.0, "x_m": -3.500898501333121, "y_m": -20.749999554402752, "d_right": 0.6634258323436522, "d_left": 1.8480549618239932, "psi_rad": -2.3369239543415548, "kappa_radpm": 0.005440171530537985, "vx_mps": 5.418245490039616, "ax_mps2": -11.882276124175196}, {"id": 700, "s_m": 69.9530633364371, "d_m": 0.0, "x_m": -3.570140619375286, "y_m": -20.822010355464972, "d_right": 0.6114833473814448, "d_left": 1.9013335336438069, "psi_rad": -2.336222558758566, "kappa_radpm": 0.008228800632792741, "vx_mps": 5.1944703710007465, "ax_mps2": -11.840832446155483}, {"id": 701, "s_m": 70.05299628406058, "d_m": 0.0, "x_m": -3.6393302444727524, "y_m": -20.894084732380183, "d_right": 0.5584511493642623, "d_left": 1.9582015640391168, "psi_rad": -2.3352950762540523, "kappa_radpm": 0.010331867831131951, "vx_mps": 4.961445742712941, "ax_mps2": -11.840574590992249}, {"id": 702, "s_m": 70.15292923168406, "d_m": 0.0, "x_m": -3.7084080897053338, "y_m": -20.96617873391072, "d_right": 0.5194266194536369, "d_left": 2.0086723936696584, "psi_rad": -2.3345288297791513, "kappa_radpm": 0.0020635201443121314, "vx_mps": 4.716928748350719, "ax_mps2": -11.873033957499977}, {"id": 703, "s_m": 70.25286217930754, "d_m": 0.0, "x_m": -3.7775622214151547, "y_m": -21.038381375009315, "d_right": 0.48327687430743543, "d_left": 2.0557842951699805, "psi_rad": -2.3349400074254865, "kappa_radpm": -0.010253610731348782, "vx_mps": 4.458295891459431, "ax_mps2": -10.256145759539464}, {"id": 704, "s_m": 70.35279512693103, "d_m": 0.0, "x_m": -3.846757239378756, "y_m": -21.11033523065127, "d_right": 0.45735416141932334, "d_left": 2.1036600857052385, "psi_rad": -2.3400138232225407, "kappa_radpm": -0.10168926964454857, "vx_mps": 4.222149748859016, "ax_mps2": -8.783296912829266}, {"id": 705, "s_m": 70.4527280745545, "d_m": 0.0, "x_m": -3.9168463163924874, "y_m": -21.181752018067726, "d_right": 0.43586470874720545, "d_left": 2.1560838534080715, "psi_rad": -2.355314037336338, "kappa_radpm": -0.2040207501998052, "vx_mps": 4.008873532688193, "ax_mps2": -7.367375531930061}, {"id": 706, "s_m": 70.55266102217799, "d_m": 0.0, "x_m": -3.988280733135981, "y_m": -21.25159613127761, "d_right": 0.40866384723148524, "d_left": 2.213382495297728, "psi_rad": -2.38153766283956, "kappa_radpm": -0.3211997448880371, "vx_mps": 3.8208088011281154, "ax_mps2": -6.206307188668338}, {"id": 707, "s_m": 70.65259396980147, "d_m": 0.0, "x_m": -4.061976771503033, "y_m": -21.31916035241988, "d_right": 0.3849059684948142, "d_left": 2.2761712674367836, "psi_rad": -2.4195837514196454, "kappa_radpm": -0.43758550849036276, "vx_mps": 3.65488040191976, "ax_mps2": -5.412860055685529}, {"id": 708, "s_m": 70.75252691742494, "d_m": 0.0, "x_m": -4.138566010019369, "y_m": -21.383466247102604, "d_right": 0.3762705255811362, "d_left": 2.3376250839996193, "psi_rad": -2.4684416019312803, "kappa_radpm": -0.5404393492444716, "vx_mps": 3.5037557893582045, "ax_mps2": -4.694057572496207}, {"id": 709, "s_m": 70.85245986504843, "d_m": 0.0, "x_m": -4.218449422902442, "y_m": -21.44348649106552, "d_right": 0.3623499774389979, "d_left": 2.397434342032232, "psi_rad": -2.527815019379041, "kappa_radpm": -0.648235511797246, "vx_mps": 3.367212884923279, "ax_mps2": -3.9884486445269074}, {"id": 710, "s_m": 70.95239281267192, "d_m": 0.0, "x_m": -4.302120777553799, "y_m": -21.498243120068384, "d_right": 0.34216043950205355, "d_left": 2.4647658160611705, "psi_rad": -2.598339965094583, "kappa_radpm": -0.7639052849186175, "vx_mps": 3.246685656697982, "ax_mps2": -3.4411118567865855}, {"id": 711, "s_m": 71.05232576029539, "d_m": 0.0, "x_m": -4.389633570923819, "y_m": -21.54640372151338, "d_right": 0.3195288493297355, "d_left": 2.5393860541051714, "psi_rad": -2.680482801334504, "kappa_radpm": -0.8725056850621107, "vx_mps": 3.138981817645155, "ax_mps2": -3.0747849287334397}, {"id": 712, "s_m": 71.15225870791888, "d_m": 0.0, "x_m": -4.480995297475526, "y_m": -21.58675890039002, "d_right": 0.31403867994757484, "d_left": 2.6209275285816536, "psi_rad": -2.7724536643845337, "kappa_radpm": -0.9699380703031554, "vx_mps": 3.039516772290239, "ax_mps2": -2.2869270948130125}, {"id": 713, "s_m": 71.25219165554236, "d_m": 0.0, "x_m": -4.575901209634182, "y_m": -21.61807624206282, "d_right": 0.2899285212178148, "d_left": 2.706413293882111, "psi_rad": -2.8756364837278374, "kappa_radpm": -1.1099388924245601, "vx_mps": 2.9633736649069946, "ax_mps2": -0.9405691367149762}, {"id": 714, "s_m": 71.35212460316583, "d_m": 0.0, "x_m": -4.67351058812609, "y_m": -21.638637938315767, "d_right": 0.2731848457986382, "d_left": 2.7322064784552613, "psi_rad": -2.995330115280659, "kappa_radpm": -1.2908045183148875, "vx_mps": 2.93148354682627, "ax_mps2": -0.03319575632927056}, {"id": 715, "s_m": 71.45205755078932, "d_m": 0.0, "x_m": -4.772994727959577, "y_m": -21.646571672933234, "d_right": 0.27954530364551905, "d_left": 2.724269970185138, "psi_rad": -3.1303023384264845, "kappa_radpm": -1.3974676116682954, "vx_mps": 2.930351700010765, "ax_mps2": -2.655228069158743}, {"id": 716, "s_m": 71.55199049841288, "d_m": 0.0, "x_m": -4.872636852913675, "y_m": -21.640579720016227, "d_right": 0.2735770428740584, "d_left": 2.6842308797667562, "psi_rad": 3.0086376549374845, "kappa_radpm": -1.4895227804311206, "vx_mps": 2.8383571922202284, "ax_mps2": -0.031144199286108686}]}, "trackbounds_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 864, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 865, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 866, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 867, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 868, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 869, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 870, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 871, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 872, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 873, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 874, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 875, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 876, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 877, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 878, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 879, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 880, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 881, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 882, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 883, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 884, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 885, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 886, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 887, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 888, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 889, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 890, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 891, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 892, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 893, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 894, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 895, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 896, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 897, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 898, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 899, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 900, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 901, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 902, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 903, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 904, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 905, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 906, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 907, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 908, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 909, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 910, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 911, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 912, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 913, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 914, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 915, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 916, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 917, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 918, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 919, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 920, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 921, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 922, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 923, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 924, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 925, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 926, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 927, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 928, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 929, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 930, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 931, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 932, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 933, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 934, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 935, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 936, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 937, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 938, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 939, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 940, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 941, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 942, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 943, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 944, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 945, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 946, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 947, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 948, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 949, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 950, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 951, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 952, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 953, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 954, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 955, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 956, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 957, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 958, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 959, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 960, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 961, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 962, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 963, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 964, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 965, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 966, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 967, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 968, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 969, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 970, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 971, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 972, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 973, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 974, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 975, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 976, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 977, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 978, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 979, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 980, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 981, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 982, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 983, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 984, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 985, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 986, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 987, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 988, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 989, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 990, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 991, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 992, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 993, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 994, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 995, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 996, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 997, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 998, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 999, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1000, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1001, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1002, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1003, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1004, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1005, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1006, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1007, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1008, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1009, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1010, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1011, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1012, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1013, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1014, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1015, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1016, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1017, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1018, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1019, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1020, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1021, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1022, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1023, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1024, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1025, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1026, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1027, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1028, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1029, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1030, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1031, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1032, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1033, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1034, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1035, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1036, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1037, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1038, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1039, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1040, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1041, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1042, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1043, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1044, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1045, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1046, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1047, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1048, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1049, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1050, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1051, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1052, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1053, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1054, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1055, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1056, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1057, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1058, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1059, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1060, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1061, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1062, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1063, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1064, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1065, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1066, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1067, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1068, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1069, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1070, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1071, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1072, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1073, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1074, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1075, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1076, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1077, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1078, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1079, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1080, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1081, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1082, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1083, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1084, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1085, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1086, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1087, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1088, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1089, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1090, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1091, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1092, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1093, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1094, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1095, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1096, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1097, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1098, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1099, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1100, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1101, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1102, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1103, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1104, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1105, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1106, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1107, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1108, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1109, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1110, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1111, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1112, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1113, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1114, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1115, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1116, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1117, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1118, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1119, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1120, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1121, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1122, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1123, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1124, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1125, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1126, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1127, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1128, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1129, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1130, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1131, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1132, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1133, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1134, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1135, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1136, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1137, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1138, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1139, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1140, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1141, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1142, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1143, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1144, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1145, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1146, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1147, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1148, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1149, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1150, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1151, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1152, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1153, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1154, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1155, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1156, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1157, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1158, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1159, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1160, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1161, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1162, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1163, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1164, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1165, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1166, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1167, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1168, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1169, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1170, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1171, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1172, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1173, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1174, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1175, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1176, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1177, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1178, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1179, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1180, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1181, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1182, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1183, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1184, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1185, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1186, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1187, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1188, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1189, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1190, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1191, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1192, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1193, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1194, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1195, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1196, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1197, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1198, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1199, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1200, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1201, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1202, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1203, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1204, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1205, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1206, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1207, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1208, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1209, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1210, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1211, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1212, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1213, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1214, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1215, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1216, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1217, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1218, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1219, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1220, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1221, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1222, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1223, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1224, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1225, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1226, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1227, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1228, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1229, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1230, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1231, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1232, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1233, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1234, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1235, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1236, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1237, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1238, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1239, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1240, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1241, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1242, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1243, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1244, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1245, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1246, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1247, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1248, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1249, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1250, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1251, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1252, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1253, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1254, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1255, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1256, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1257, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1258, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1259, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1260, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1261, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1262, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1263, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1264, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1265, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1266, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1267, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1268, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1269, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1270, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1271, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1272, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1273, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1274, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1275, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1276, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1277, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1278, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1279, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1280, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1281, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1282, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1283, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1284, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1285, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1286, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1287, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1288, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1289, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1290, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1291, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1292, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1293, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1294, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1295, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1296, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1297, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1298, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1299, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1300, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1301, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1302, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1303, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1304, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1305, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1306, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1307, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1308, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1309, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1310, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1311, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1312, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1313, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1314, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1315, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1316, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1317, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1318, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1319, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1320, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1321, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1322, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1323, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1324, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1325, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1326, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1327, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1328, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1329, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1330, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1331, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1332, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1333, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1334, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1335, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1336, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1337, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1338, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1339, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1340, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1341, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1342, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1343, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1344, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1345, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1346, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1347, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1348, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1349, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1350, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1351, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1352, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1353, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1354, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1355, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1356, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1357, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1358, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1359, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1360, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1361, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1362, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1363, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1364, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1365, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1366, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1367, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1368, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1369, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1370, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1371, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1372, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1373, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1374, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1375, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1376, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1377, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1378, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1379, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1380, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1381, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1382, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1383, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1384, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1385, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1386, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1387, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1388, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1389, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1390, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1391, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1392, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1393, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1394, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1395, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1396, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1397, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1398, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1399, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1400, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1401, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1402, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1403, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1404, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1405, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1406, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1407, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1408, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1409, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1410, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1411, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1412, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1413, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1414, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1415, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1416, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1417, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1418, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1419, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1420, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1421, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1422, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1423, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1424, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1425, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1426, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1427, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1428, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1429, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1430, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1431, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1432, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1433, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1434, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1435, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1436, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1437, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1438, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1439, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1440, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1441, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1442, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1443, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1444, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1445, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1446, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1447, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1448, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1449, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1450, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1451, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1452, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1453, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1454, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1455, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1456, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1457, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1458, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1459, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1460, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1461, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1462, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1463, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1464, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1465, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1466, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1467, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1468, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1469, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1470, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1471, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1472, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1473, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1474, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1475, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1476, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1477, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1478, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1479, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1480, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1481, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1482, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1483, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1484, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1485, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1486, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1487, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1488, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1489, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1490, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1491, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1492, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1493, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1494, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1495, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1496, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1497, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1498, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1499, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1500, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1501, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1502, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1503, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1504, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1505, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1506, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1507, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1508, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1509, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1510, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1511, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1512, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1513, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1514, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1515, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1516, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1517, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1518, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1519, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1520, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1521, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1522, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1523, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1524, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1525, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1526, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1527, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1528, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1529, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1530, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1531, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1532, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1533, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1534, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1535, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1536, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1537, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1538, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1539, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1540, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1541, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1542, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1543, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1544, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1545, "type": 2, "action": 0, "pose": {"position": {"x": -5.606539910593034, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1546, "type": 2, "action": 0, "pose": {"position": {"x": -5.656539911338092, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1547, "type": 2, "action": 0, "pose": {"position": {"x": -5.70653991208315, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1548, "type": 2, "action": 0, "pose": {"position": {"x": -5.756539912828208, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1549, "type": 2, "action": 0, "pose": {"position": {"x": -5.806539913573266, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1550, "type": 2, "action": 0, "pose": {"position": {"x": -5.856539914318324, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1551, "type": 2, "action": 0, "pose": {"position": {"x": -5.906539915063382, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1552, "type": 2, "action": 0, "pose": {"position": {"x": -5.95653991580844, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1553, "type": 2, "action": 0, "pose": {"position": {"x": -6.006539916553498, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1554, "type": 2, "action": 0, "pose": {"position": {"x": -6.056539917298556, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1555, "type": 2, "action": 0, "pose": {"position": {"x": -6.106539918043614, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1556, "type": 2, "action": 0, "pose": {"position": {"x": -6.156539918788672, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1557, "type": 2, "action": 0, "pose": {"position": {"x": -6.20653991953373, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1558, "type": 2, "action": 0, "pose": {"position": {"x": -6.256539920278788, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1559, "type": 2, "action": 0, "pose": {"position": {"x": -6.306539921023846, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1560, "type": 2, "action": 0, "pose": {"position": {"x": -6.3565399217689045, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1561, "type": 2, "action": 0, "pose": {"position": {"x": -6.4065399225139625, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1562, "type": 2, "action": 0, "pose": {"position": {"x": -6.456539923259021, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1563, "type": 2, "action": 0, "pose": {"position": {"x": -6.506539924004079, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1564, "type": 2, "action": 0, "pose": {"position": {"x": -6.556539924749137, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1565, "type": 2, "action": 0, "pose": {"position": {"x": -6.606539925494195, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1566, "type": 2, "action": 0, "pose": {"position": {"x": -6.656539926239253, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1567, "type": 2, "action": 0, "pose": {"position": {"x": -6.706539926984311, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1568, "type": 2, "action": 0, "pose": {"position": {"x": -6.756539927729369, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1569, "type": 2, "action": 0, "pose": {"position": {"x": -6.806539928474427, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1570, "type": 2, "action": 0, "pose": {"position": {"x": -6.856539929219485, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1571, "type": 2, "action": 0, "pose": {"position": {"x": -6.906539929964543, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1572, "type": 2, "action": 0, "pose": {"position": {"x": -6.956539930709601, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1573, "type": 2, "action": 0, "pose": {"position": {"x": -7.006539931454659, "y": -23.770792959021808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1574, "type": 2, "action": 0, "pose": {"position": {"x": -7.056539932199717, "y": -23.72079295827675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1575, "type": 2, "action": 0, "pose": {"position": {"x": -7.106539932944775, "y": -23.67079295753169, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1576, "type": 2, "action": 0, "pose": {"position": {"x": -7.156539933689833, "y": -23.620792956786634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1577, "type": 2, "action": 0, "pose": {"position": {"x": -7.2065399344348915, "y": -23.570792956041576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1578, "type": 2, "action": 0, "pose": {"position": {"x": -7.2565399351799496, "y": -23.520792955296518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1579, "type": 2, "action": 0, "pose": {"position": {"x": -7.306539935925008, "y": -23.47079295455146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1580, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": -23.4207929538064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1581, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": -23.370792953061343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1582, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": -23.320792952316285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1583, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": -23.270792951571227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1584, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.22079295082617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1585, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.17079295008111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1586, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.120792949336053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1587, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.070792948590995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1588, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.020792947845937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1589, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.97079294710088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1590, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.92079294635582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1591, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.870792945610763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1592, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.820792944865705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1593, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.770792944120647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1594, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.72079294337559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1595, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.67079294263053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1596, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.620792941885473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1597, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.570792941140414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1598, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.520792940395356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1599, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.4707929396503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1600, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.42079293890524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1601, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.370792938160182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1602, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.320792937415124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1603, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.270792936670066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1604, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.220792935925008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1605, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.17079293517995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1606, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.120792934434892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1607, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.070792933689834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1608, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.020792932944776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1609, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.970792932199718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1610, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.92079293145466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1611, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.8707929307096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1612, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.820792929964544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1613, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.770792929219486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1614, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.720792928474427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1615, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.67079292772937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1616, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.62079292698431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1617, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.570792926239253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1618, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.520792925494195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1619, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.470792924749137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1620, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.42079292400408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1621, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1622, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1623, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1624, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1625, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1626, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1627, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1628, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1629, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1630, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1631, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1632, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1633, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1634, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1635, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1636, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1637, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1638, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1639, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1640, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1641, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1642, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1643, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1644, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1645, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1646, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1647, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1648, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1649, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1650, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1651, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1652, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1653, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1654, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1655, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1656, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1657, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1658, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1659, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1660, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1661, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1662, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1663, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1664, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1665, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1666, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1667, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1668, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1669, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1670, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1671, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1672, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1673, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1674, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1675, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1676, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1677, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1678, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1679, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1680, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1681, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1682, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1683, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1684, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1685, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1686, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1687, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1688, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1689, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1690, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1691, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1692, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1693, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1694, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1695, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1696, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1697, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1698, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1699, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1700, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1701, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1702, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1703, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1704, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1705, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1706, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1707, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1708, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1709, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1710, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1711, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1712, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1713, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1714, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1715, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1716, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1717, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1718, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1719, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1720, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1721, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1722, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1723, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1724, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1725, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1726, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1727, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1728, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1729, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1730, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1731, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1732, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1733, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1734, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1735, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1736, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1737, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1738, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1739, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1740, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1741, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1742, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1743, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1744, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1745, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1746, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1747, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1748, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1749, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1750, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1751, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1752, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1753, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1754, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1755, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1756, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1757, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1758, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1759, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1760, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1761, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1762, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1763, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1764, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1765, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1766, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1767, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1768, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1769, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1770, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1771, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1772, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1773, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1774, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1775, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1776, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1777, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1778, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1779, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1780, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1781, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1782, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1783, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1784, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1785, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1786, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1787, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1788, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1789, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1790, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1791, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1792, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1793, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1794, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1795, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1796, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1797, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1798, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1799, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1800, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1801, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1802, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1803, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1804, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1805, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1806, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1807, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1808, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1809, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1810, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1811, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1812, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1813, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1814, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1815, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1816, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1817, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1818, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1819, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1820, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1821, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1822, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1823, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1824, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1825, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1826, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1827, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1828, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1829, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1830, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1831, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1832, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1833, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1834, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1835, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1836, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1837, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1838, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1839, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1840, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1841, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1842, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1843, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1844, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1845, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1846, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1847, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1848, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1849, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1850, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1851, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1852, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1853, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1854, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1855, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1856, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1857, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1858, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1859, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1860, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1861, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1862, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1863, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1864, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1865, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1866, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1867, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1868, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1869, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1870, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1871, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1872, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1873, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1874, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1875, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1876, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1877, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1878, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1879, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1880, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1881, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1882, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1883, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1884, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1885, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1886, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1887, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1888, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1889, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1890, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1891, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1892, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1893, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1894, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1895, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1896, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1897, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1898, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1899, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1900, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1901, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1902, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1903, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1904, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1905, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1906, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1907, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1908, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1909, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1910, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1911, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1912, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1913, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1914, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1915, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1916, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1917, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1918, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1919, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1920, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1921, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1922, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1923, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1924, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1925, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1926, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1927, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1928, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1929, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1930, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1931, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1932, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1933, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1934, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1935, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1936, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1937, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1938, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1939, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1940, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1941, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1942, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1943, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1944, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1945, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1946, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1947, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1948, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1949, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1950, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1951, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1952, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1953, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1954, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1955, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1956, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1957, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1958, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1959, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1960, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1961, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1962, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1963, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1964, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1965, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1966, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1967, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1968, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1969, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1970, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1971, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1972, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1973, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1974, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1975, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1976, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1977, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1978, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1979, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1980, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1981, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1982, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1983, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1984, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1985, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1986, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1987, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1988, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1989, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1990, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1991, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1992, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1993, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1994, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1995, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1996, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1997, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1998, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1999, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2000, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2001, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2002, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2003, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2004, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2005, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2006, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2007, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2008, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2009, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2010, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2011, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2012, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2013, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2014, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2015, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2016, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2017, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2018, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2019, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2020, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.4207926259808552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2021, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.3707926252357971, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2022, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.320792624490739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2023, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.270792623745681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2024, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.220792623000623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2025, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.170792622255565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2026, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.1207926215105068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2027, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.0707926207654488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2028, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.0207926200203907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2029, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.9707926192753327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2030, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.9207926185302746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2031, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.8707926177852165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2032, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.8207926170401585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2033, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.7707926162951004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2034, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.7207926155500424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2035, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.6707926148049843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2036, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.6207926140599263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2037, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.5707926133148682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2038, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.5207926125698101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2039, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.47079261182475207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2040, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.420792611079694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2041, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.37079261033463595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2042, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.3207926095895779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2043, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.27079260884451983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2044, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.22079260809946177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2045, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.1707926073544037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2046, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2047, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.0707926058642876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2048, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.020792605119229535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2049, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2050, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2051, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.12920739711594464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2052, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2053, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2054, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2055, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2056, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2057, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2058, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2059, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2060, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2061, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2062, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2063, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2064, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2065, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2066, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2067, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2068, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2069, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2070, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2071, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2072, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2073, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2074, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2075, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2076, "type": 2, "action": 0, "pose": {"position": {"x": -7.306539935925008, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2077, "type": 2, "action": 0, "pose": {"position": {"x": -7.2565399351799496, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2078, "type": 2, "action": 0, "pose": {"position": {"x": -7.2065399344348915, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2079, "type": 2, "action": 0, "pose": {"position": {"x": -7.156539933689833, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2080, "type": 2, "action": 0, "pose": {"position": {"x": -7.106539932944775, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2081, "type": 2, "action": 0, "pose": {"position": {"x": -7.056539932199717, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2082, "type": 2, "action": 0, "pose": {"position": {"x": -7.006539931454659, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2083, "type": 2, "action": 0, "pose": {"position": {"x": -6.956539930709601, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2084, "type": 2, "action": 0, "pose": {"position": {"x": -6.906539929964543, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2085, "type": 2, "action": 0, "pose": {"position": {"x": -6.856539929219485, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2086, "type": 2, "action": 0, "pose": {"position": {"x": -6.806539928474427, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2087, "type": 2, "action": 0, "pose": {"position": {"x": -6.756539927729369, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2088, "type": 2, "action": 0, "pose": {"position": {"x": -6.706539926984311, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2089, "type": 2, "action": 0, "pose": {"position": {"x": -6.656539926239253, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2090, "type": 2, "action": 0, "pose": {"position": {"x": -6.606539925494195, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2091, "type": 2, "action": 0, "pose": {"position": {"x": -6.556539924749137, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2092, "type": 2, "action": 0, "pose": {"position": {"x": -6.506539924004079, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2093, "type": 2, "action": 0, "pose": {"position": {"x": -6.456539923259021, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2094, "type": 2, "action": 0, "pose": {"position": {"x": -6.4065399225139625, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2095, "type": 2, "action": 0, "pose": {"position": {"x": -6.3565399217689045, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2096, "type": 2, "action": 0, "pose": {"position": {"x": -6.306539921023846, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2097, "type": 2, "action": 0, "pose": {"position": {"x": -6.256539920278788, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2098, "type": 2, "action": 0, "pose": {"position": {"x": -6.20653991953373, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2099, "type": 2, "action": 0, "pose": {"position": {"x": -6.156539918788672, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2100, "type": 2, "action": 0, "pose": {"position": {"x": -6.106539918043614, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2101, "type": 2, "action": 0, "pose": {"position": {"x": -6.056539917298556, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2102, "type": 2, "action": 0, "pose": {"position": {"x": -6.006539916553498, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2103, "type": 2, "action": 0, "pose": {"position": {"x": -5.95653991580844, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2104, "type": 2, "action": 0, "pose": {"position": {"x": -5.906539915063382, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2105, "type": 2, "action": 0, "pose": {"position": {"x": -5.856539914318324, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2106, "type": 2, "action": 0, "pose": {"position": {"x": -5.806539913573266, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2107, "type": 2, "action": 0, "pose": {"position": {"x": -5.756539912828208, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2108, "type": 2, "action": 0, "pose": {"position": {"x": -5.70653991208315, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2109, "type": 2, "action": 0, "pose": {"position": {"x": -5.656539911338092, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2110, "type": 2, "action": 0, "pose": {"position": {"x": -5.606539910593034, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2111, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2112, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2113, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2114, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2115, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2116, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2117, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2118, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2119, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2120, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2121, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2122, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2123, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2124, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2125, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2126, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2127, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2128, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2129, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2130, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2131, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2132, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2133, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2134, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2135, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2136, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2137, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2138, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2139, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2140, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2141, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2142, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2143, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2144, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2145, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2146, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2147, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2148, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2149, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2150, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2151, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2152, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2153, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2154, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2155, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2156, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2157, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2158, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2159, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2160, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2161, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2162, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2163, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2164, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2165, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2166, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2167, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2168, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2169, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2170, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2171, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2172, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2173, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2174, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2175, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2176, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2177, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2178, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2179, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2180, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2181, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2182, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2183, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2184, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2185, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2186, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2187, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2188, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2189, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2190, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2191, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2192, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2193, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2194, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2195, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2196, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2197, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2198, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2199, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2200, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2201, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2202, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2203, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2204, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2205, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2206, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2207, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2208, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2209, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2210, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2211, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2212, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2213, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2214, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2215, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2216, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2217, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2218, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2219, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2220, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2221, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2222, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2223, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2224, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2225, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2226, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2227, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2228, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2229, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2230, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2231, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2232, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2233, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2234, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2235, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2236, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2237, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2238, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2239, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2240, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2241, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2242, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2243, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2244, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2245, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2246, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2247, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2248, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2249, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2250, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2251, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2252, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2253, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2254, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2255, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2256, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2257, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2258, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2259, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2260, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2261, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2262, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2263, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2264, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2265, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2266, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2267, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2268, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2269, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2270, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2271, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2272, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2273, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2274, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2275, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2276, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2277, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2278, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2279, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2280, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2281, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2282, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2283, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2284, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2285, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2286, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2287, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2288, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2289, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2290, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2291, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2292, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2293, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2294, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2295, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2296, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2297, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2298, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2299, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2300, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2301, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2302, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2303, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2304, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2305, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2306, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2307, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2308, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2309, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2310, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2311, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2312, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2313, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2314, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2315, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2316, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2317, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2318, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2319, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2320, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2321, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2322, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2323, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2324, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2325, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2326, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2327, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2328, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2329, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2330, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2331, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2332, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2333, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2334, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2335, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2336, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2337, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2338, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2339, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2340, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2341, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2342, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2343, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2344, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2345, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2346, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2347, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2348, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2349, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2350, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2351, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2352, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2353, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2354, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2355, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2356, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2357, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2358, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2359, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2360, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2361, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2362, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2363, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2364, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2365, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2366, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2367, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2368, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2369, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2370, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2371, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2372, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2373, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2374, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2375, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2376, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2377, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2378, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2379, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2380, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2381, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2382, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2383, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2384, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2385, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2386, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2387, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2388, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2389, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2390, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2391, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2392, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2393, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2394, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2395, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2396, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2397, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2398, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2399, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2400, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2401, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2402, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2403, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2404, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2405, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2406, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2407, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2408, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2409, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2410, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2411, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2412, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2413, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2414, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2415, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2416, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2417, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2418, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2419, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2420, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2421, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2422, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2423, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2424, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2425, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2426, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2427, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2428, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2429, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2430, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2431, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2432, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2433, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2434, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2435, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2436, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2437, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2438, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2439, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2440, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2441, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2442, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2443, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2444, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2445, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2446, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2447, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2448, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2449, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2450, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2451, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2452, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2453, "type": 2, "action": 0, "pose": {"position": {"x": 11.543460344961881, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2454, "type": 2, "action": 0, "pose": {"position": {"x": 11.593460345706939, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2455, "type": 2, "action": 0, "pose": {"position": {"x": 11.643460346451997, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2456, "type": 2, "action": 0, "pose": {"position": {"x": 11.693460347197055, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2457, "type": 2, "action": 0, "pose": {"position": {"x": 11.743460347942113, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2458, "type": 2, "action": 0, "pose": {"position": {"x": 11.793460348687171, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2459, "type": 2, "action": 0, "pose": {"position": {"x": 11.84346034943223, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2460, "type": 2, "action": 0, "pose": {"position": {"x": 11.893460350177287, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2461, "type": 2, "action": 0, "pose": {"position": {"x": 11.943460350922345, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2462, "type": 2, "action": 0, "pose": {"position": {"x": 11.993460351667403, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2463, "type": 2, "action": 0, "pose": {"position": {"x": 12.043460352412461, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2464, "type": 2, "action": 0, "pose": {"position": {"x": 12.09346035315752, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2465, "type": 2, "action": 0, "pose": {"position": {"x": 12.143460353902578, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2466, "type": 2, "action": 0, "pose": {"position": {"x": 12.193460354647636, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2467, "type": 2, "action": 0, "pose": {"position": {"x": 12.243460355392694, "y": 0.12920739711594464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2468, "type": 2, "action": 0, "pose": {"position": {"x": 12.293460356137752, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2469, "type": 2, "action": 0, "pose": {"position": {"x": 12.34346035688281, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2470, "type": 2, "action": 0, "pose": {"position": {"x": 12.393460357627868, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2471, "type": 2, "action": 0, "pose": {"position": {"x": 12.443460358372926, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2472, "type": 2, "action": 0, "pose": {"position": {"x": 12.493460359117984, "y": -0.020792605119229535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2473, "type": 2, "action": 0, "pose": {"position": {"x": 12.543460359863042, "y": -0.0707926058642876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2474, "type": 2, "action": 0, "pose": {"position": {"x": 12.5934603606081, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2475, "type": 2, "action": 0, "pose": {"position": {"x": 12.643460361353158, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2476, "type": 2, "action": 0, "pose": {"position": {"x": 12.693460362098216, "y": -0.1707926073544037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2477, "type": 2, "action": 0, "pose": {"position": {"x": 12.743460362843274, "y": -0.22079260809946177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2478, "type": 2, "action": 0, "pose": {"position": {"x": 12.793460363588332, "y": -0.27079260884451983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2479, "type": 2, "action": 0, "pose": {"position": {"x": 12.84346036433339, "y": -0.3207926095895779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2480, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -0.37079261033463595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2481, "type": 2, "action": 0, "pose": {"position": {"x": 12.943460365823507, "y": -0.420792611079694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2482, "type": 2, "action": 0, "pose": {"position": {"x": 12.993460366568565, "y": -0.47079261182475207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2483, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -0.5207926125698101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2484, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -0.5707926133148682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2485, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -0.6207926140599263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2486, "type": 2, "action": 0, "pose": {"position": {"x": 13.143460368803739, "y": -0.6707926148049843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2487, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -0.7207926155500424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2488, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -0.7707926162951004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2489, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -0.8207926170401585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2490, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -0.8707926177852165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2491, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -0.9207926185302746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2492, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -0.9707926192753327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2493, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -1.0207926200203907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2494, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -1.0707926207654488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2495, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -1.1207926215105068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2496, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -1.170792622255565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2497, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -1.220792623000623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2498, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.270792623745681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2499, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.320792624490739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2500, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.3707926252357971, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2501, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -1.4207926259808552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2502, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2503, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2504, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2505, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2506, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2507, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2508, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2509, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2510, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2511, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2512, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2513, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2514, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2515, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2516, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2517, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2518, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2519, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2520, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2521, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2522, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2523, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2524, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2525, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2526, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2527, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2528, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2529, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2530, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2531, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2532, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2533, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2534, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2535, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2536, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2537, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2538, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2539, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2540, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2541, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2542, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2543, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2544, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2545, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2546, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2547, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2548, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2549, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2550, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2551, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2552, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2553, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2554, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2555, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2556, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2557, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2558, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2559, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2560, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2561, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2562, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2563, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2564, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2565, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2566, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2567, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2568, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2569, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2570, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2571, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2572, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2573, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2574, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2575, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2576, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2577, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2578, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2579, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2580, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2581, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2582, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2583, "type": 2, "action": 0, "pose": {"position": {"x": 13.143460368803739, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2584, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2585, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2586, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2587, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2588, "type": 2, "action": 0, "pose": {"position": {"x": 12.993460366568565, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2589, "type": 2, "action": 0, "pose": {"position": {"x": 12.943460365823507, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2590, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2591, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2592, "type": 2, "action": 0, "pose": {"position": {"x": 12.84346036433339, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2593, "type": 2, "action": 0, "pose": {"position": {"x": 12.793460363588332, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2594, "type": 2, "action": 0, "pose": {"position": {"x": 12.743460362843274, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2595, "type": 2, "action": 0, "pose": {"position": {"x": 12.693460362098216, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2596, "type": 2, "action": 0, "pose": {"position": {"x": 12.643460361353158, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2597, "type": 2, "action": 0, "pose": {"position": {"x": 12.5934603606081, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2598, "type": 2, "action": 0, "pose": {"position": {"x": 12.543460359863042, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2599, "type": 2, "action": 0, "pose": {"position": {"x": 12.493460359117984, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2600, "type": 2, "action": 0, "pose": {"position": {"x": 12.443460358372926, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2601, "type": 2, "action": 0, "pose": {"position": {"x": 12.393460357627868, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2602, "type": 2, "action": 0, "pose": {"position": {"x": 12.34346035688281, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2603, "type": 2, "action": 0, "pose": {"position": {"x": 12.293460356137752, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2604, "type": 2, "action": 0, "pose": {"position": {"x": 12.243460355392694, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2605, "type": 2, "action": 0, "pose": {"position": {"x": 12.193460354647636, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2606, "type": 2, "action": 0, "pose": {"position": {"x": 12.143460353902578, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2607, "type": 2, "action": 0, "pose": {"position": {"x": 12.09346035315752, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2608, "type": 2, "action": 0, "pose": {"position": {"x": 12.043460352412461, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2609, "type": 2, "action": 0, "pose": {"position": {"x": 11.993460351667403, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2610, "type": 2, "action": 0, "pose": {"position": {"x": 11.943460350922345, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2611, "type": 2, "action": 0, "pose": {"position": {"x": 11.893460350177287, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2612, "type": 2, "action": 0, "pose": {"position": {"x": 11.84346034943223, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2613, "type": 2, "action": 0, "pose": {"position": {"x": 11.793460348687171, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2614, "type": 2, "action": 0, "pose": {"position": {"x": 11.743460347942113, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2615, "type": 2, "action": 0, "pose": {"position": {"x": 11.693460347197055, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2616, "type": 2, "action": 0, "pose": {"position": {"x": 11.643460346451997, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2617, "type": 2, "action": 0, "pose": {"position": {"x": 11.593460345706939, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2618, "type": 2, "action": 0, "pose": {"position": {"x": 11.543460344961881, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2619, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2620, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2621, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2622, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2623, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2624, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2625, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2626, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2627, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2628, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2629, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2630, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2631, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2632, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2633, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2634, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2635, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2636, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2637, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2638, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2639, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2640, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2641, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2642, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2643, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2644, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2645, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2646, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2647, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2648, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2649, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2650, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2651, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2652, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2653, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2654, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2655, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2656, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2657, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2658, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2659, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2660, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2661, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2662, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2663, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2664, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2665, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2666, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2667, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2668, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2669, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2670, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2671, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2672, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2673, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2674, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2675, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2676, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2677, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2678, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2679, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2680, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2681, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2682, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2683, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2684, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2685, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2686, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2687, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2688, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2689, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2690, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2691, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2692, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2693, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2694, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2695, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2696, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2697, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2698, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2699, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2700, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2701, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2702, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2703, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2704, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2705, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2706, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2707, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2708, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2709, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2710, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2711, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2712, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2713, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2714, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2715, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2716, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2717, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2718, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2719, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2720, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2721, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2722, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2723, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2724, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2725, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2726, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2727, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2728, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2729, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2730, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2731, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2732, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2733, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2734, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2735, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2736, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2737, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2738, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2739, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2740, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2741, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2742, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2743, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2744, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2745, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2746, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2747, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2748, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2749, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2750, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2751, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2752, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2753, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2754, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2755, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2756, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2757, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2758, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2759, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2760, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2761, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2762, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2763, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2764, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2765, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2766, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2767, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2768, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2769, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2770, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2771, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2772, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2773, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2774, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2775, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2776, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2777, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2778, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2779, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2780, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2781, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2782, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2783, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2784, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2785, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2786, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2787, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2788, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2789, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2790, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2791, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2792, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2793, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2794, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2795, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2796, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2797, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2798, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2799, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2800, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2801, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2802, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2803, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2804, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2805, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2806, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2807, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2808, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2809, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2810, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2811, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2812, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2813, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2814, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2815, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2816, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2817, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2818, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2819, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2820, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2821, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2822, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2823, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2824, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2825, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2826, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2827, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2828, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2829, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2830, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2831, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2832, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2833, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2834, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2835, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2836, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2837, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2838, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2839, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2840, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2841, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2842, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2843, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2844, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2845, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2846, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2847, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2848, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2849, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2850, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2851, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2852, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2853, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2854, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2855, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2856, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2857, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2858, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2859, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2860, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2861, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2862, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2863, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2864, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2865, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2866, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2867, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2868, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2869, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2870, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2871, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2872, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2873, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2874, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2875, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2876, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2877, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2878, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2879, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2880, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2881, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2882, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2883, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2884, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2885, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2886, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2887, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2888, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2889, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2890, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2891, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2892, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2893, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2894, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2895, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2896, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2897, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2898, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2899, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2900, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2901, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2902, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2903, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2904, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2905, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2906, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2907, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2908, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2909, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2910, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2911, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2912, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2913, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2914, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2915, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2916, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2917, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2918, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2919, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2920, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2921, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2922, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2923, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2924, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2925, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2926, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2927, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2928, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2929, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2930, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2931, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2932, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2933, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2934, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2935, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2936, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2937, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2938, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2939, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2940, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2941, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2942, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2943, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2944, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2945, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2946, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2947, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2948, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2949, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2950, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2951, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2952, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2953, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2954, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2955, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2956, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2957, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2958, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2959, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2960, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2961, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2962, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2963, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2964, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2965, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2966, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2967, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2968, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2969, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2970, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2971, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2972, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2973, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2974, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2975, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2976, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2977, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2978, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2979, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2980, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2981, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2982, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2983, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2984, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2985, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2986, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2987, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2988, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2989, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2990, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2991, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2992, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2993, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2994, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2995, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2996, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2997, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2998, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2999, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3000, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3001, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3002, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3003, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3004, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3005, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3006, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3007, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3008, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3009, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3010, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3011, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3012, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3013, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3014, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3015, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3016, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3017, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3018, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3019, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3020, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3021, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3022, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3023, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3024, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3025, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3026, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3027, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3028, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3029, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3030, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3031, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3032, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3033, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3034, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3035, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3036, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3037, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3038, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3039, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3040, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3041, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3042, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3043, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3044, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3045, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3046, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3047, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3048, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3049, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3050, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3051, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3052, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3053, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3054, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3055, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3056, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3057, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3058, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3059, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3060, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3061, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3062, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3063, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3064, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3065, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3066, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3067, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3068, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3069, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3070, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3071, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3072, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3073, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3074, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3075, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3076, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3077, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3078, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3079, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3080, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3081, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3082, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3083, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3084, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3085, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3086, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3087, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3088, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3089, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3090, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3091, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3092, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3093, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3094, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3095, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3096, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3097, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3098, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3099, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3100, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3101, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3102, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3103, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3104, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3105, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3106, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3107, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3108, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3109, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3110, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3111, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3112, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3113, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3114, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3115, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3116, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3117, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3118, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3119, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3120, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3121, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3122, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3123, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3124, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3125, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3126, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3127, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3128, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3129, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3130, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3131, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3132, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3133, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3134, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3135, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3136, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3137, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3138, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3139, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3140, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3141, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3142, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3143, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3144, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3145, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3146, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3147, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3148, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3149, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3150, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3151, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3152, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3153, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3154, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3155, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3156, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3157, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3158, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3159, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3160, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3161, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3162, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3163, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3164, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3165, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3166, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3167, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3168, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3169, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3170, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3171, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3172, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3173, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3174, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3175, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3176, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3177, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3178, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3179, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3180, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3181, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3182, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3183, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3184, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3185, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3186, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3187, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3188, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3189, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3190, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3191, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3192, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3193, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3194, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3195, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3196, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3197, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3198, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3199, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3200, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3201, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3202, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3203, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3204, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3205, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3206, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3207, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3208, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3209, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3210, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3211, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3212, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3213, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3214, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3215, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3216, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3217, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3218, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3219, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3220, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3221, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3222, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3223, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3224, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3225, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3226, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3227, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3228, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3229, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3230, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3231, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3232, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3233, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3234, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3235, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3236, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3237, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3238, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3239, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3240, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3241, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3242, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3243, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3244, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3245, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3246, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3247, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3248, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3249, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3250, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3251, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3252, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3253, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3254, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3255, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3256, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3257, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3258, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3259, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3260, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3261, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3262, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3263, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3264, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3265, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3266, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3267, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3268, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3269, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3270, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3271, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3272, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3273, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3274, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3275, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3276, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3277, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3278, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3279, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3280, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3281, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3282, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3283, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3284, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3285, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3286, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3287, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3288, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3289, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3290, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3291, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3292, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3293, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3294, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3295, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3296, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3297, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3298, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3299, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3300, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.42079292400408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3301, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.470792924749137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3302, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.520792925494195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3303, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.570792926239253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3304, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.62079292698431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3305, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.67079292772937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3306, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.720792928474427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3307, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.770792929219486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3308, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.820792929964544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3309, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.8707929307096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3310, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.92079293145466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3311, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.970792932199718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3312, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -22.020792932944776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3313, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.070792933689834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3314, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.120792934434892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3315, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.17079293517995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3316, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.220792935925008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3317, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.270792936670066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3318, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.320792937415124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3319, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.370792938160182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3320, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.42079293890524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3321, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.4707929396503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3322, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.520792940395356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3323, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.570792941140414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3324, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.620792941885473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3325, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.67079294263053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3326, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.72079294337559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3327, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.770792944120647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3328, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.820792944865705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3329, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.870792945610763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3330, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -22.92079294635582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3331, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -22.97079294710088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3332, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -23.020792947845937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3333, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -23.070792948590995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3334, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.120792949336053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3335, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.17079295008111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3336, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.22079295082617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3337, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.270792951571227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3338, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.320792952316285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3339, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.370792953061343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3340, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.4207929538064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3341, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.47079295455146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3342, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -23.520792955296518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3343, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -23.570792956041576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3344, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -23.620792956786634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3345, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -23.67079295753169, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3346, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -23.72079295827675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3347, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -23.770792959021808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3348, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3349, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3350, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3351, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3352, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3353, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3354, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3355, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3356, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3357, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3358, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3359, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3360, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3361, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3362, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3363, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3364, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3365, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3366, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3367, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3368, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3369, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3370, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3371, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3372, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3373, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3374, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3375, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3376, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3377, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3378, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3379, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3380, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3381, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3382, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3383, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3384, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3385, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3386, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3387, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3388, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3389, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3390, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3391, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3392, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3393, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3394, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3395, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3396, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3397, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3398, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3399, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3400, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3401, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3402, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3403, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}} \ No newline at end of file diff --git a/stack_master/maps/f/ot_sectors.yaml b/stack_master/maps/f/ot_sectors.yaml new file mode 100644 index 0000000..addd424 --- /dev/null +++ b/stack_master/maps/f/ot_sectors.yaml @@ -0,0 +1,12 @@ +n_sectors: 2 +yeet_factor: 1.25 +spline_len: 30 +ot_sector_begin: 0.5 +Overtaking_sector0: + start: 0 + end: 408 + ot_flag: false +Overtaking_sector1: + start: 409 + end: 766 + ot_flag: false diff --git a/stack_master/maps/f/speed_scaling.yaml b/stack_master/maps/f/speed_scaling.yaml new file mode 100644 index 0000000..c6cdf1d --- /dev/null +++ b/stack_master/maps/f/speed_scaling.yaml @@ -0,0 +1,8 @@ +global_limit: 0.5 +n_sectors: 1 +Sector0: + start: 0 + end: 766 + scaling: 0.5 + only_FTG: false + no_FTG: false diff --git a/stack_master/maps/test_map/global_waypoints.json b/stack_master/maps/test_map/global_waypoints.json new file mode 100644 index 0000000..685df0e --- /dev/null +++ b/stack_master/maps/test_map/global_waypoints.json @@ -0,0 +1 @@ +{"map_info_str": {"data": "IQP estimated lap time: 11.2023s; IQP maximum speed: 11.3882m/s; SP estimated lap time: 11.9381s; SP maximum speed: 11.206m/s; "}, "est_lap_time": {"data": 11.938128448159503}, "centerline_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -5.024962436856354, "y": -22.778604316253958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -5.123670944512135, "y": -22.762890402810378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -5.2215329592390765, "y": -22.742583539187446, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -5.318298747987133, "y": -22.717562504961297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -5.413733417838098, "y": -22.687855120824988, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -5.507602934557472, "y": -22.653532011028705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -5.599727916255872, "y": -22.61475657824462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -5.689134059622661, "y": -22.570150947527793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -5.77498809328744, "y": -22.518996839113235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -5.856474412812163, "y": -22.461169495719908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -5.933510124382924, "y": -22.397511286491206, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -6.004983289752657, "y": -22.32767341607033, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -6.070664505674698, "y": -22.252339578775025, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -6.130337912423816, "y": -22.17217894936661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -6.183511172552238, "y": -22.08756873568825, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -6.230819167977402, "y": -21.99953337434628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -6.272117090253706, "y": -21.90852904729845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -6.307418255494868, "y": -21.81503046320148, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -6.33706943910823, "y": -21.71958508252596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -6.36130836255311, "y": -21.62262350575625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -6.380523840185805, "y": -21.52453625337537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -6.3954623147777445, "y": -21.42570514646261, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -6.406569552505966, "y": -21.326368767615993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -6.414171192529959, "y": -21.226701602547614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -6.418833762999835, "y": -21.126851676883923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -6.420981327303555, "y": -21.026914600033717, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -6.420008742100002, "y": -20.926964835032653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -6.417098616914577, "y": -20.827044139341634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -6.413390332366062, "y": -20.727149502820133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -6.409296392802422, "y": -20.627269798346777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -6.405436785890795, "y": -20.527380849024997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -6.4024081012674685, "y": -20.42746384490367, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -6.401027527024368, "y": -20.32751160821659, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -6.402064786739443, "y": -20.22755693152622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -6.403542489147323, "y": -20.12760449413028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -6.406215877723583, "y": -20.02767743542419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -6.407908149758211, "y": -19.92773288286776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -6.408493110555328, "y": -19.82777101683875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -6.409862707236397, "y": -19.72782128214066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -6.412522828093151, "y": -19.62789314257895, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -6.415430067983339, "y": -19.527971871483487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -6.418516805687103, "y": -19.428055972771066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -6.421715465045637, "y": -19.328143587127705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -6.424958500780659, "y": -19.228232628978752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -6.428178381002756, "y": -19.12832092312922, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -6.431307568350006, "y": -19.02840634125704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -6.4327669485225325, "y": -18.92845452991675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -6.435118437970913, "y": -18.82852379697062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -6.439040700109055, "y": -18.72863734499804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -6.443480089363815, "y": -18.62877250686392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -6.448368809587651, "y": -18.528928627301323, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -6.453639211010856, "y": -18.429104142841915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -6.459223791206269, "y": -18.32929672123356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -6.465055185009409, "y": -18.229503399516506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -6.471066145393919, "y": -18.12972072074969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -6.477189517268105, "y": -18.029944869518992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -6.483358206125797, "y": -17.930171806468593, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -6.488025773540878, "y": -17.83031847948358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -6.492854799704076, "y": -17.73047165759827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -6.497939620462056, "y": -17.630637511764334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -6.503190441294616, "y": -17.53081194346026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -6.5085175675455, "y": -17.43099041054766, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -6.513831353650148, "y": -17.33116816737228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -6.519042148339443, "y": -17.231340504150854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -6.524060240326011, "y": -17.131502986433723, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -6.528795808981897, "y": -17.031651695424195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -6.533158884548101, "y": -16.931783469834397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -6.538895601101595, "y": -16.831986082268386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -6.544746419320646, "y": -16.732193880291224, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -6.550453489912237, "y": -16.632393364407807, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -6.555949584753737, "y": -16.532581022750676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -6.560506329837642, "y": -16.432725739402663, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -6.56392134718495, "y": -16.332820513808123, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -6.5673471791841225, "y": -16.232915656937518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -6.570693809058754, "y": -16.133008122862584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -6.573871190642727, "y": -16.033095079101024, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -6.576789217174213, "y": -15.933174149498353, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -6.581166626517179, "y": -15.83330822009748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -6.585795666914642, "y": -15.73345187910641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -6.5903938785590395, "y": -15.633594115783321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -6.594893902186729, "y": -15.533731886580297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -6.59922834094991, "y": -15.433862345452715, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -6.603329736914142, "y": -15.333982979721668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -6.607130552210842, "y": -15.234091746580518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -6.610563156790991, "y": -15.134187210413932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -6.612135935886979, "y": -15.03423825731962, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -6.614096599720036, "y": -14.934298083594355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -6.61743842524219, "y": -14.834390424020906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -6.621020291732224, "y": -14.734491063910319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -6.624774644150404, "y": -14.634598024013957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -6.628633981017918, "y": -14.534708976835804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -6.632530835871668, "y": -14.43482138315371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -6.636397755655501, "y": -14.334932628163838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -6.640167277979348, "y": -14.235040157477943, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -6.6437719091734495, "y": -14.135141613220574, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -6.64573510491958, "y": -14.035199370936372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -6.6475529702689515, "y": -13.935252329200475, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -6.650115709106744, "y": -13.835326030374285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -6.654187592897514, "y": -13.73544550567604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -6.658612418714436, "y": -13.635579966823352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -6.663322625176378, "y": -13.535727458891209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -6.668250755660997, "y": -13.435885452026696, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -6.673329441600393, "y": -13.336050978329542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -6.678491379514714, "y": -13.236220767821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -6.683669303720171, "y": -13.136391383718117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -6.687408563360043, "y": -13.036499696137616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -6.691159237241287, "y": -12.93660655155585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -6.6951379809314195, "y": -12.836722206659552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -6.699254815553709, "y": -12.736843443082275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -6.703419826871137, "y": -12.636966671426226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -6.707543124845461, "y": -12.537088173012704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -6.711534800638192, "y": -12.437204341280342, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -6.7170223451638735, "y": -12.337393944081226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -6.722957227967021, "y": -12.237606710600991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -6.7289874555994835, "y": -12.137825185680166, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -6.7350459217684655, "y": -12.038045368878906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -6.741065535922017, "y": -11.938263203572793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -6.7469791879107275, "y": -11.838474710675644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -6.752719713697708, "y": -11.738676122573821, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -6.758219864004426, "y": -11.638864017641058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -6.763412277796238, "y": -11.539035455657835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -6.767680050422482, "y": -11.439167380990634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -6.770568145039901, "y": -11.33924553360312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -6.773371433604454, "y": -11.239321279980173, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -6.775999795902592, "y": -11.139392290978508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -6.778979254968943, "y": -11.039476491424402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -6.78321774700482, "y": -10.939602814575526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -6.787497042587361, "y": -10.839730874207211, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -6.7917497412527466, "y": -10.739857799790585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -6.795908433131743, "y": -10.639980774371223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -6.7999056746949815, "y": -10.540097170338425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -6.803673967146334, "y": -10.440204685556463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -6.807145739397918, "y": -10.340301480077908, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -6.81025333757621, "y": -10.240386313588175, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -6.812929023027763, "y": -10.140458683629108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -6.8157004102985965, "y": -10.040536350925384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -6.819535199632317, "y": -9.940646364750473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -6.821896177785987, "y": -9.84071317732979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -6.824111118924839, "y": -9.74077416916756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -6.826503089205051, "y": -9.640839226541516, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -6.829004456723364, "y": -9.540906953065406, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -6.831547612384157, "y": -9.440975730710127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -6.834064956397778, "y": -9.341043856821505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -6.83648888354935, "y": -9.24110968103745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -6.838751769183608, "y": -9.141171742263152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -6.841367432739153, "y": -9.041245753424342, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -6.845327930000088, "y": -8.941360675847157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -6.849410203052113, "y": -8.841480494283376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -6.853569284109944, "y": -8.74160347725511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -6.857760223775241, "y": -8.641727790149714, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -6.861938080522986, "y": -8.54185155560182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -6.866057909777649, "y": -8.441972913818066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -6.870074753148475, "y": -8.342090082923702, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -6.873943628393635, "y": -8.24220141940936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -6.877619520684895, "y": -8.14230547874838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -6.8810573757476, "y": -8.04240107624185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -6.88421209545493, "y": -7.9424873481290925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -6.88703853645998, "y": -7.842563812976157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -6.889491512453713, "y": -7.742630433322995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -6.891525800640324, "y": -7.642687677532524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -6.893096153023255, "y": -7.54273658174063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -6.893669791408811, "y": -7.442779107762015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -6.894272619711892, "y": -7.342820686186375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -6.8955614514420684, "y": -7.2428654665283405, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -6.89710849701573, "y": -7.14291389537445, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": -6.898868610840296, "y": -7.0429658372562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": -6.900796663766962, "y": -6.943020868275656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": -6.902847542660888, "y": -6.843078337324422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": -6.90497614781105, "y": -6.743137427201992, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": -6.907137388760563, "y": -6.643197215642997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": -6.909286179136704, "y": -6.543256736278706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": -6.911377431058641, "y": -6.443315039568997, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": -6.913366049700316, "y": -6.343371253745307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": -6.915206928586137, "y": -6.243424645803129, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": -6.916854946198087, "y": -6.143474682575543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": -6.918264964474219, "y": -6.043521091905348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": -6.919391829780292, "y": -5.9435639239136515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": -6.9207255213607155, "y": -5.843612244471613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": -6.923364022442225, "y": -5.743683497810485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": -6.926069683021702, "y": -5.643756545105633, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": -6.928819971644149, "y": -5.543830809477894, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": -6.931592360383841, "y": -5.443905683936532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": -6.934364323103221, "y": -5.343980546582329, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": -6.937113333640847, "y": -5.244054775804176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": -6.939816864000299, "y": -5.144127765475737, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": -6.94245238261201, "y": -5.0441989401587835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": -6.944997352739983, "y": -4.944267770319497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": -6.947429231105538, "y": -4.844333787563196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": -6.949725466800359, "y": -4.744396599891957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": -6.951863500561362, "y": -4.644455906987795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": -6.953820764480064, "y": -4.544511515522631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": -6.955574682219432, "y": -4.444563354493712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": -6.957102669811308, "y": -4.344611490580461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": -6.958382137107644, "y": -4.244656143516042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": -6.95939048995879, "y": -4.144697701463198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": -6.960105133191953, "y": -4.0447367363802345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": -6.960503474462581, "y": -3.94477401935899, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": -6.960562929050881, "y": -3.8448105359118583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": -6.960712426138588, "y": -3.744849233969798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": -6.961540344943577, "y": -3.644889520903695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": -6.9615329490137565, "y": -3.5449263796404544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": -6.961139694422489, "y": -3.4449650652777297, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": -6.962528734149241, "y": -3.3450125762162264, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": -6.963548798292498, "y": -3.2450545713591104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": -6.965530839264143, "y": -3.1451146563367813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": -6.968364638321775, "y": -3.0451922515853656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": -6.972447110303119, "y": -2.9453131083580657, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": -6.977437885310097, "y": -2.8454744368420477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": -6.982635425137211, "y": -2.7456460884667973, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": -6.987399865470615, "y": -2.645796469954656, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": -6.9911779949025386, "y": -2.5459053191389076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": -6.993454997712029, "y": -2.44596946493792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": -6.993738481082044, "y": -2.346008787527806, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": -6.991610488988302, "y": -2.2460705482706285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": -6.98656101032693, "y": -2.1462377388030847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": -6.978175584147581, "y": -2.0466318190519575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": -6.966052444123763, "y": -1.9474128742330543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": -6.949903978097487, "y": -1.8487714112123743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": -6.92905337568326, "y": -1.7510197090677282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": -6.903373689051094, "y": -1.6544252155140378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": -6.872127605555509, "y": -1.5594897708145803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": -6.835424326858935, "y": -1.466526510369531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": -6.7931389960871424, "y": -1.3759664717896583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": -6.744459099517511, "y": -1.288678953325753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": -6.690039432316833, "y": -1.2048464852153795, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": -6.630029459574897, "y": -1.1249269975593856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": -6.563930157285784, "y": -1.0499640656694216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": -6.493056989141659, "y": -0.9794993394992022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": -6.417260565718212, "y": -0.9143805306011735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": -6.337383294707172, "y": -0.8543103354359359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": -6.254234067220052, "y": -0.7988546249029734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": -6.16812875570463, "y": -0.7481229538589216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": -6.079048190618537, "y": -0.7027905483328307, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": -5.988076642960412, "y": -0.6613777128245287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": -5.8955091151929455, "y": -0.6236599188143964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": -5.801331141907567, "y": -0.5901897598518863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": -5.705883353079074, "y": -0.5604956964439718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": -5.609647316191437, "y": -0.5334669242998386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": -5.512762595789084, "y": -0.5088636131321292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": -5.415330243418716, "y": -0.4865291653256133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": -5.317215814790724, "y": -0.4674365460716996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": -5.21873813208228, "y": -0.4502692444969597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": -5.12007505530256, "y": -0.43419908479183184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": -5.021245226979732, "y": -0.4191877494084041, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": -4.922349343130322, "y": -0.4046167981989716, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": -4.823437933559386, "y": -0.39015142617078813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": -4.72453372590836, "y": -0.37563794233950926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": -4.625719670603837, "y": -0.3605236258660937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": -4.526738207448544, "y": -0.3465757155000552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": -4.427645650446014, "y": -0.3334162962554026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": -4.328538415890607, "y": -0.32036749913017804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": -4.229433776071717, "y": -0.30729883994068347, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": -4.130351949889623, "y": -0.29405847541693736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": -4.031316840864777, "y": -0.28047366793175094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": -3.932155630196503, "y": -0.26784481459029774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": -3.832978148262672, "y": -0.25534186495289585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": -3.7337382257742058, "y": -0.2433452532559748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": -3.634509677692768, "y": -0.23125348767072892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": -3.5351254502286666, "y": -0.22051934329252235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": -3.4357268250114195, "y": -0.20991798769208977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": -3.3361431500655265, "y": -0.201291431902826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": -3.236536968568624, "y": -0.19286777691387272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": -3.1369069758435004, "y": -0.18471384235816177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": -3.0372032091962833, "y": -0.17752089360695655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": -2.937519330856577, "y": -0.17007182388277303, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": -2.8378108475862973, "y": -0.16294240419796108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": -2.7380355746362226, "y": -0.1568214210980421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": -2.638274825265672, "y": -0.15048463421564223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": -2.538493770251464, "y": -0.14445518461420745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": -2.438677012169393, "y": -0.1390640228434551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": -2.3388986185784018, "y": -0.13298735786969668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": -2.239076053297519, "y": -0.12768753407192104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": -2.1392103168374805, "y": -0.12327808089654874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": -2.0393625592424782, "y": -0.1185114321824399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": -1.9395093160638734, "y": -0.11382214420593435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": -1.8396243412803495, "y": -0.10986795501940684, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": -1.7397220771247643, "y": -0.10640890677427822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": -1.6398543399315926, "y": -0.10203589385956634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": -1.5399651091624147, "y": -0.0981860405759378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": -1.440054895325883, "y": -0.0949272823114693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": -1.3401254115664887, "y": -0.09232765386653642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": -1.2402162895917561, "y": -0.08911154736656685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": -1.1403132811656889, "y": -0.08563424844554551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": -1.0403981692533977, "y": -0.08252471285408923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": -0.9404710806946459, "y": -0.07982815995630375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": -0.8405327019504957, "y": -0.07758985038243266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": -0.7405843413162138, "y": -0.0758550714820803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": -0.6406279910181392, "y": -0.07466911683257085, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": -0.5406663889418003, "y": -0.07407725921669504, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": -0.44071402343450283, "y": -0.07279142213018164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": -0.34076438116458013, "y": -0.0711240889131852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": -0.24081110312337267, "y": -0.06969162173796704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": -0.14085447376129645, "y": -0.0685166128173573, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": -0.04089495204085702, "y": -0.06762165720681929, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 0.059051585250455646, "y": -0.06592271385663118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 0.15900188558778608, "y": -0.064314625840092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 0.25896158613138565, "y": -0.06347393044749705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 0.35892479530165405, "y": -0.06340082168450986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 0.458885618961065, "y": -0.0640953124926577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 0.5588381649337282, "y": -0.06555723473790731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 0.6587816858886689, "y": -0.06748468832513374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 0.7587416919745783, "y": -0.06832374317792655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": 0.8586989141251837, "y": -0.06944715579577705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": 0.9586528583802032, "y": -0.07083233106680477, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": 1.0586032082162267, "y": -0.07245667630991391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": 1.1585498091744229, "y": -0.07429760389326559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": 1.2584926534851686, "y": -0.07633253308457469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": 1.3584318647020408, "y": -0.07853889120651476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": 1.458367682353862, "y": -0.08089411417039251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": 1.5583004466203707, "y": -0.08337564646134624, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": 1.6582351315876553, "y": -0.08570393336624961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": 1.7581924610245236, "y": -0.08680815933917718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": 1.8581432036539274, "y": -0.08840225591869394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": 1.9580858887912824, "y": -0.09044097690353668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": 2.0580196490272584, "y": -0.09287908808019597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": 2.1579441583668952, "y": -0.09567138190109427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": 2.257859570362109, "y": -0.09877268702525062, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": 2.3577943935733643, "y": -0.10105123109704207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": 2.457732666459704, "y": -0.10329046647287421, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": 2.5576559233038796, "y": -0.10612321353989485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": 2.657562936877034, "y": -0.10948155248520443, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": 2.757453548254635, "y": -0.11329764753510571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": 2.8573285267623483, "y": -0.11750376778794379, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": 2.957189430617206, "y": -0.1220322948445409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": 3.0570384685208465, "y": -0.1268157192530584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": 3.156878362286644, "y": -0.13178662776573793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": 3.256712210439719, "y": -0.1368776833802305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": 3.3565433526173054, "y": -0.1420216001128567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": 3.456375234515836, "y": -0.14715111442911508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": 3.556211273080025, "y": -0.1521989552417886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": 3.6560973050867025, "y": -0.15603797649649184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": 3.7560053307019086, "y": -0.1593696256065676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": 3.855908771430234, "y": -0.16283640760886833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": 3.9558106404285964, "y": -0.16634830339946494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": 4.055703516809618, "y": -0.1700560289401394, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": 4.155527354166306, "y": -0.17531549146864298, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": 4.255404305678489, "y": -0.1794705244683588, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": 4.355253648644433, "y": -0.184244473703178, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": 4.45507637064867, "y": -0.1895469596125402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": 4.5548748816943165, "y": -0.19528785273109753, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": 4.654663286171616, "y": -0.2011829652336268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": 4.75451245538713, "y": -0.2059595177908744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": 4.85433120324924, "y": -0.21133575636047408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": 4.954122585248456, "y": -0.21719902871078284, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": 5.053891287551807, "y": -0.22343703113990399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": 5.153643245573895, "y": -0.22993776431180618, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": 5.253385267645414, "y": -0.23658945999252995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": 5.353183979983961, "y": -0.24226677594197096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": 5.453009073614617, "y": -0.24752593319361743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": 5.552821587926268, "y": -0.25301922434407204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": 5.652628579211929, "y": -0.25861218845486866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": 5.752360474640539, "y": -0.26534687611569796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": 5.852093361882833, "y": -0.27209020382041466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": 5.951841045225911, "y": -0.278654242490355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": 6.05155518739911, "y": -0.2857104263079843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": 6.151243402549936, "y": -0.2931245247503468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": 6.250914724869798, "y": -0.3007627314007622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": 6.350636162807739, "y": -0.30765822060864223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": 6.450244327701633, "y": -0.3160769262366854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": 6.549789697342154, "y": -0.3252092200037561, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": 6.649280275375941, "y": -0.33492100377161027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": 6.748815327825967, "y": -0.3441369566643108, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": 6.848363121086408, "y": -0.3532427456358569, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": 6.947854578275349, "y": -0.36294556739104966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": 7.047308362912056, "y": -0.3730238163940042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": 7.146879964888997, "y": -0.3818657658746374, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": 7.246400292605322, "y": -0.39126812836268127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": 7.345887568843153, "y": -0.40101165877782097, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": 7.445498008255442, "y": -0.4094053980242461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": 7.545068876835464, "y": -0.4182569558831856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": 7.644616244410151, "y": -0.42736935599809683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": 7.744114896962762, "y": -0.4369967131625178, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": 7.843537504028627, "y": -0.4473810441924162, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": 7.942900252979392, "y": -0.45832396848825707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": 8.042391083605889, "y": -0.4680322217174669, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": 8.14182400734843, "y": -0.4783178647963064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": 8.241206518784452, "y": -0.4890789223496207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": 8.340485506842265, "y": -0.5007551153755792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": 8.439759800521555, "y": -0.5124547854356233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": 8.539036074204752, "y": -0.5241538455747407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": 8.638307454095093, "y": -0.535877943069167, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": 8.737479045919406, "y": -0.5483785657401032, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": 8.836473975865788, "y": -0.5622492841556321, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": 8.935531040257581, "y": -0.5756709008681613, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": 9.034625993304966, "y": -0.5888112322904236, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": 9.133738750723156, "y": -0.6018175706991141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": 9.232761594689597, "y": -0.6154885807061898, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": 9.331775030720719, "y": -0.6292309975503039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": 9.430628330409577, "y": -0.644084046622884, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": 9.529375189940803, "y": -0.6596272495712736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": 9.628120597525696, "y": -0.6751719134315676, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": 9.72670052477115, "y": -0.6917338364772398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": 9.825199748983866, "y": -0.7087800565523461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": 9.923480795591548, "y": -0.7270299380672158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": 10.021627821643026, "y": -0.7459992216921804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": 10.119372123970505, "y": -0.7669258421695972, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": 10.216952624873851, "y": -0.7886219746922976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": 10.314357195699666, "y": -0.8110938431001622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": 10.411268434787381, "y": -0.8355758894766803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": 10.507674578498756, "y": -0.8619989800422381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": 10.603588732205331, "y": -0.890160653768225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": 10.698964986572093, "y": -0.9200925546242158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": 10.793633022506826, "y": -0.9521596210074986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": 10.88724418331632, "y": -0.9872190027820784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": 10.97999651003846, "y": -1.0244852661607005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": 11.071907968129057, "y": -1.0637870905445423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": 11.162609638342866, "y": -1.1057866489013903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": 11.251885355071884, "y": -1.1507498814311403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": 11.33991384012268, "y": -1.1981022953197233, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": 11.426331594184528, "y": -1.2483417517507538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": 11.5108825379524, "y": -1.3016619546915826, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": 11.593724984188453, "y": -1.3575944883226083, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": 11.674742111739244, "y": -1.416139426284319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": 11.753308035155408, "y": -1.4779249144538695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": 11.829362805658945, "y": -1.5427935869760814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": 11.903337475567469, "y": -1.6100122256954743, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": 11.974530007447177, "y": -1.6801644482067701, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": 12.042047372422088, "y": -1.7538712111049495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": 12.106568494278406, "y": -1.830221164350581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": 12.167905017255839, "y": -1.9091278563556193, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": 12.224935122234424, "y": -1.9912081091703433, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": 12.278034823583333, "y": -2.0758876878191383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": 12.32729702468944, "y": -2.1628561630512504, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": 12.3719224583977, "y": -2.2522953656090903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": 12.411131989487874, "y": -2.344234448155817, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": 12.446796562956273, "y": -2.437607189879372, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": 12.477546113494292, "y": -2.532712489396045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": 12.504027250830505, "y": -2.629091048924469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": 12.526116553319653, "y": -2.726568242125796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": 12.54373661218389, "y": -2.824950618618142, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": 12.558071613018573, "y": -2.9238749889939983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": 12.56912758520219, "y": -3.0232183381330104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": 12.576526538532148, "y": -3.1228996442471635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": 12.580126180266461, "y": -3.2227910200219, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": 12.579871851082586, "y": -3.322747737131153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": 12.575725361040515, "y": -3.422619721615542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": 12.567713025083782, "y": -3.5222567195532073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": 12.556061260067986, "y": -3.6215339331374503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": 12.541127022503673, "y": -3.7203704390927776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": 12.523075754181276, "y": -3.818683836025241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": 12.500734447553882, "y": -3.9161043511514104, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": 12.474986758519988, "y": -4.012684138290381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": 12.4451595603083, "y": -4.1080832563609375, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": 12.41164036990842, "y": -4.202257046878602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": 12.375364605420573, "y": -4.2953965163541294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": 12.33561352329416, "y": -4.38710125605391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": 12.291652336494788, "y": -4.476872530487803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": 12.24440962529041, "y": -4.5649510577621015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": 12.193491199253243, "y": -4.650962822613362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": 12.138877545154626, "y": -4.734675465464502, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": 12.080493615282757, "y": -4.81580789626265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": 12.017520443775663, "y": -4.893432214575302, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": 11.951491697738021, "y": -4.9684790448577525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": 11.882566679615858, "y": -5.0408513281291185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": 11.809915196247072, "y": -5.109493648886368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": 11.734296782385021, "y": -5.17485536011431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": 11.65543917537661, "y": -5.236259530870931, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": 11.573726823317562, "y": -5.293832042332429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": 11.489226434834007, "y": -5.347222350618158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": 11.402464184339319, "y": -5.3968318273425195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": 11.313477680479307, "y": -5.442355980318139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": 11.222955372688228, "y": -5.484743058218879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": 11.1308435408486, "y": -5.523567075178117, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": 11.036994191974342, "y": -5.557982190528637, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": 10.942252082202538, "y": -5.589854017941675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": 10.846610066663084, "y": -5.618907863718197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": 10.750266341133374, "y": -5.645551845866499, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": 10.653327155691697, "y": -5.6699375080364804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": 10.555550734769378, "y": -5.690724522842594, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": 10.457422632695588, "y": -5.7097882673262985, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": 10.358998776839792, "y": -5.727259827068332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": 10.26034520626487, "y": -5.7433850974633005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": 10.161525701761514, "y": -5.758462379125386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": 10.06241304040073, "y": -5.771449430215174, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": 9.963234723064405, "y": -5.783954512174254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": 9.864093893521074, "y": -5.796752151900406, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": 9.764796511504754, "y": -5.8082297463924855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": 9.665436944923604, "y": -5.81918914249791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": 9.566099964273272, "y": -5.830354600916744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": 9.466756104660787, "y": -5.841458576215515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": 9.367394448167488, "y": -5.852404650381463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": 9.268079782135436, "y": -5.863762834275263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": 9.168763816013342, "y": -5.875109195719736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": 9.06956184494574, "y": -5.887411022799357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": 8.970399473762901, "y": -5.900007432385066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": 8.871182129473818, "y": -5.912175178647886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": 8.772001089949562, "y": -5.924658319598182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": 8.672772402559112, "y": -5.9367558968596015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": 8.573643684133902, "y": -5.94962915126896, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": 8.474386748838542, "y": -5.96145927794469, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": 8.375078290214494, "y": -5.972865929608852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": 8.275929943009007, "y": -5.985606442880021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": 8.176755901513284, "y": -5.998144936894986, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": 8.077701762883557, "y": -6.011575294561758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": 7.9786984453375975, "y": -6.0253973916476555, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": 7.879509708581791, "y": -6.0377845036052875, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": 7.780217227698769, "y": -6.049347903106614, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": 7.680883716211683, "y": -6.060552560645215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": 7.581628767150379, "y": -6.07240944511977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": 7.482408093331667, "y": -6.084573046889011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": 7.383123802961198, "y": -6.09620501401247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": 7.283895878357061, "y": -6.108287890973278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": 7.184578645116349, "y": -6.1195942278243525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": 7.085148136299772, "y": -6.129903467796979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": 6.98579976257912, "y": -6.140945377041845, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": 6.88651308857897, "y": -6.15255862728365, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": 6.787189600714683, "y": -6.163852231070685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": 6.687811119008521, "y": -6.174650500416013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": 6.588372491386721, "y": -6.184875686773773, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": 6.489047790351872, "y": -6.196150378477735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": 6.389509617076299, "y": -6.205362623176288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": 6.289945582455503, "y": -6.214290568305007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": 6.1903412770464925, "y": -6.222756663691644, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": 6.090689187031506, "y": -6.230636691568698, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": 5.99113926667136, "y": -6.239720479827543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": 5.891475469400412, "y": -6.247389358846272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": 5.791723263065504, "y": -6.253885993021336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": 5.692015188839284, "y": -6.260977661993457, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": 5.592356138762659, "y": -6.26877429786812, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": 5.492675156604549, "y": -6.276284933581398, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": 5.39296263020996, "y": -6.283363096462087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": 5.293364432643402, "y": -6.2919020099729455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": 5.1937427552879045, "y": -6.3001621986217495, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": 5.093973919471563, "y": -6.306398017972424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": 4.9941974582819455, "y": -6.312511298082361, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": 4.894469444897446, "y": -6.319311895993703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": 4.7948037945614415, "y": -6.327023895944112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": 4.695130555793258, "y": -6.334637074250337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": 4.595439863139805, "y": -6.342017888025576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": 4.495722770592597, "y": -6.349032508584283, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": 4.396061132007931, "y": -6.356745053447792, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": 4.2963433372579, "y": -6.36375037783407, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": 4.196636105474587, "y": -6.370904690396435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": 4.096929967651576, "y": -6.378074262127756, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": 3.9972153958952035, "y": -6.38512539416683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": 3.8974366341723656, "y": -6.3911264468204045, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": 3.797717937780772, "y": -6.398106398071551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": 3.6979778890358665, "y": -6.404741916215391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": 3.5982097838110514, "y": -6.410987746624977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": 3.498476054558657, "y": -6.417761395946525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": 3.398670188223012, "y": -6.423363503509968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": 3.298813591240761, "y": -6.427973211149584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": 3.1989598271554565, "y": -6.432612004516543, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": 3.0992198323577025, "y": -6.439251876309991, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": 2.9994281440967883, "y": -6.445086765877134, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": 2.8995617979082127, "y": -6.449481063072603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": 2.7996616905800025, "y": -6.453037627152708, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": 2.6997529171302217, "y": -6.456347160165498, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": 2.599854244925924, "y": -6.459946063834001, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": 2.4999846376714276, "y": -6.464269571676381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": 2.400216765227339, "y": -6.470385246595251, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": 2.300670695943059, "y": -6.4794826116915765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": 2.2013589119179997, "y": -6.490845723224012, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": 2.1023787826593576, "y": -6.504797268048488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": 2.003850004863823, "y": -6.521636719412132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": 1.9058779516295126, "y": -6.541458528278769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": 1.8089397482818128, "y": -6.565784636849528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": 1.7132521941953363, "y": -6.594686316855616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": 1.6187479193814442, "y": -6.627252908532622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": 1.5254679944749623, "y": -6.663173944326892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": 1.4336918121305786, "y": -6.702779180419587, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": 1.343345575688173, "y": -6.745535074032427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": 1.254802438269059, "y": -6.791908044559894, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": 1.1682856282888143, "y": -6.8419676712003685, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": 1.0844522039651678, "y": -6.8963688000879415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": 1.0037489484025557, "y": -6.955343764628901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": 0.926394541258816, "y": -7.018631837230786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": 0.8528553494149465, "y": -7.086306028380798, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": 0.7831781407312971, "y": -7.157948839400953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": 0.7182703528112409, "y": -7.233950751718838, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": 0.6584395989173074, "y": -7.313996278924511, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": 0.6040508145050965, "y": -7.397853136034271, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": 0.5567839993213062, "y": -7.485908861980783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": 0.5157608921981622, "y": -7.5770448941749935, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": 0.48144897107734097, "y": -7.670906493139502, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": 0.4537413377134939, "y": -7.7669184121090105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": 0.43304378512195896, "y": -7.864680697341581, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": 0.4195353572942525, "y": -7.963692367818851, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": 0.41305171036525956, "y": -8.063417043032537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": 0.4134584886702917, "y": -8.16336001934515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": 0.4209459821537932, "y": -8.263025703205937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": 0.43512274459817235, "y": -8.361951135799528, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": 0.4558592077210276, "y": -8.459713096950727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": 0.4825521534553922, "y": -8.556019239541902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": 0.5152230763081064, "y": -8.650474438330553, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": 0.5540445366873192, "y": -8.742574986494466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": 0.5986123324284414, "y": -8.83202715849653, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": 0.6482068153053583, "y": -8.91879526030859, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": 0.7022715776100085, "y": -9.002862130764115, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 0.759808745002352, "y": -9.084597482742065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 0.8217209175059121, "y": -9.163072911780198, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 0.8866922200644689, "y": -9.239023828972604, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 0.9553182911901743, "y": -9.311690395112278, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 1.0268425128410892, "y": -9.381511119684621, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 1.1015029115649349, "y": -9.447955296015856, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 1.1789048926204329, "y": -9.511199305988173, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 1.25843802229952, "y": -9.571739943492254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 1.3405030005208871, "y": -9.628816098826704, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 1.4242360966759025, "y": -9.683414131185039, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 1.5100071737052005, "y": -9.734730265933027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 1.5971501513445665, "y": -9.78370221927017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 1.6853316111812717, "y": -9.830782336620226, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 1.774953268683179, "y": -9.87503800847607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 1.8660740794721666, "y": -9.916130368599168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 1.9582878133500576, "y": -9.954714206596607, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 2.0517556905568983, "y": -9.990111706668989, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 2.1465369176309776, "y": -10.021867726683315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 2.242122449837287, "y": -10.05109572742571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 2.338720869838465, "y": -10.076805831866194, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 2.4359736764087403, "y": -10.099885756342847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 2.533695525442962, "y": -10.120935800252765, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 2.6316251570104123, "y": -10.140997818660004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 2.7300071449908447, "y": -10.15870443633455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 2.8284201604908956, "y": -10.17624272914422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 2.926829151226238, "y": -10.19380287849957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 3.0252580688196606, "y": -10.211239426156977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 3.1236891998939593, "y": -10.228667766097157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 3.2219358403147336, "y": -10.247111177600791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 3.32029794325169, "y": -10.264926381405362, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 3.418472408743232, "y": -10.283730484297802, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 3.516723052356566, "y": -10.302147072505834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 3.6150278684717083, "y": -10.320280053672334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 3.7133680896005803, "y": -10.338211587214419, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 3.811453777582597, "y": -10.35748735546876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 3.9093749044402206, "y": -10.377577842328328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 4.007397444397877, "y": -10.397163391939952, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 4.105318733800375, "y": -10.417266390717383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 4.203113738059298, "y": -10.437958725934172, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 4.301089486202822, "y": -10.457789131808237, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 4.3989207461543955, "y": -10.47831005485282, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 4.496863648273205, "y": -10.498307617759549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 4.594731823468718, "y": -10.518667174204866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 4.692512050718217, "y": -10.539445528339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 4.7905889811529345, "y": -10.558774344362686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 4.888625608348902, "y": -10.578307085612373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 4.986567401188439, "y": -10.598309700146068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 5.084874638990984, "y": -10.616409174871366, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 5.183073062061672, "y": -10.635096589429638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 5.281364738479976, "y": -10.65329369541789, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 5.379596640531188, "y": -10.671811131665141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 5.477901239212792, "y": -10.689938602329839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 5.575906386349934, "y": -10.70960361298589, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 5.674012518193828, "y": -10.728781835792176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 5.772271614915685, "y": -10.74716011403979, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 5.870372757768548, "y": -10.766353654699525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 5.968390707695093, "y": -10.785979809815686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 6.066338614459287, "y": -10.805951828632535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 6.163971139578638, "y": -10.827390192409903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 6.2612795500950575, "y": -10.85027505387518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 6.358033737848391, "y": -10.875373065161451, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 6.454147850978981, "y": -10.902840495272907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 6.5493002667274345, "y": -10.93344310339359, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 6.643515691093814, "y": -10.966841796748112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 6.736875103949433, "y": -11.002558503961549, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 6.82861769182344, "y": -11.042248972920378, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 6.918797284070378, "y": -11.085367678358699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 7.007663486237212, "y": -11.131136516297008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 7.094990895420287, "y": -11.179748341202593, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 7.179834659588095, "y": -11.232589610831402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 7.262379293144455, "y": -11.288947837270827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 7.341944363791848, "y": -11.349457758744098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 7.418731849594219, "y": -11.413447530110355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 7.49129381536926, "y": -11.482181193726966, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 7.560372399665011, "y": -11.554424551042176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 7.625120063902387, "y": -11.630547679849531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 7.685157125406976, "y": -11.710445929924456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 7.741207776815233, "y": -11.793199349738247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 7.7918098961899265, "y": -11.879371061584063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 7.83763589341285, "y": -11.96819772198219, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 7.878210892926216, "y": -12.05953196741411, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 7.913511559997293, "y": -12.153041367180078, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 7.943157263830094, "y": -12.248487118352953, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 7.967369086162853, "y": -12.345470961170111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 7.987633129843911, "y": -12.44334192433074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 8.003871222295137, "y": -12.541974078239164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 8.015266821605344, "y": -12.641277435892562, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 8.023148557101752, "y": -12.740923756952713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 8.027546304798786, "y": -12.8407825757664, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 8.028332959831944, "y": -12.940734215819312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 8.025443527617552, "y": -13.040647072885003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 8.018931196535686, "y": -13.140390536234541, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 8.008854340327526, "y": -13.239837960752514, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 7.995213838414544, "y": -13.338861458475034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 7.978130799023368, "y": -13.437351520960005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 7.957949520359824, "y": -13.535252852752752, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 7.934884196587897, "y": -13.632514755783625, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 7.908883473729633, "y": -13.72902226218335, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 7.878909059172425, "y": -13.82437475220814, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 7.845373309037354, "y": -13.918534933575259, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 7.808372304692463, "y": -14.011389812687524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 7.766597454142467, "y": -14.102181332293464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 7.719828394810119, "y": -14.190516389017017, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 7.669182654133927, "y": -14.276678749299734, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 7.613625307205198, "y": -14.359769940386759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 7.554149129421942, "y": -14.440111266053165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 7.490361045696311, "y": -14.5170592258969, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 7.422666840847379, "y": -14.590595811531932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 7.351656128387712, "y": -14.660944012013944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 7.277797090560115, "y": -14.72828505080995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 7.200107008163365, "y": -14.791155903694808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 7.118710240098129, "y": -14.849144621647559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 7.0346076683773076, "y": -14.903153152019101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 6.948137614346467, "y": -14.953275502056055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 6.859210070602529, "y": -14.998893263559967, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 6.768022598151631, "y": -15.03983329778346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 6.675432623951255, "y": -15.0774971071011, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 6.581417729704037, "y": -15.111455167703712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 6.485931655206708, "y": -15.141022651361945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 6.389658309079223, "y": -15.167912890535483, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 6.292703122576372, "y": -15.19223846178348, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 6.194987694158617, "y": -15.21327225905564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 6.096808575672359, "y": -15.23206886782341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 5.99838236607302, "y": -15.24952759529964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 5.899729317363885, "y": -15.265659085952837, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 5.800835300149036, "y": -15.280209623811777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 5.70175164525027, "y": -15.293443553104295, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 5.602681004362926, "y": -15.30677478702819, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 5.50366620036295, "y": -15.320511856303847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 5.404487584282567, "y": -15.332990747018638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 5.305314595369168, "y": -15.345528577271548, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 5.2061389687295625, "y": -15.358047288540336, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 5.107007438164538, "y": -15.370864509492426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 5.00779358186143, "y": -15.383076888092976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 4.9085440314610365, "y": -15.394990464829103, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 4.809437782627827, "y": -15.408017731362621, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 4.710350066168057, "y": -15.421208082097143, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 4.611253360919806, "y": -15.434343296877563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 4.512300736855016, "y": -15.448511749722156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 4.413233527485806, "y": -15.46183525720324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 4.31429450827105, "y": -15.476110643127216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 4.215344564992684, "y": -15.49030994671582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 4.116182028030822, "y": -15.502914267077355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 4.017143988345989, "y": -15.516463910675354, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 3.918157911964889, "y": -15.530409211309124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 3.8192952503647652, "y": -15.545178784090439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 3.7203274768946923, "y": -15.559253168176747, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 3.6214423567000034, "y": -15.57387601932951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 3.5227416847363013, "y": -15.589702341014156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 3.4238750949102794, "y": -15.604470424969863, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 3.3250463655978333, "y": -15.619490317605813, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 3.226057954299899, "y": -15.633395920992005, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 3.127050640839644, "y": -15.647171459015903, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 3.02812619277208, "y": -15.661529218667228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 2.929176919140478, "y": -15.675732883489777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 2.830114118542417, "y": -15.689099964655936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 2.731179801802461, "y": -15.703371283258235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 2.6322599821614996, "y": -15.717761953270793, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 2.5333280328392127, "y": -15.732085359999095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 2.4346075188775873, "y": -15.747770351310114, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 2.33585110184057, "y": -15.763256695086923, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 2.2371807946104543, "y": -15.779280312610735, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 2.13849823626006, "y": -15.795194952772265, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 2.0398403128972404, "y": -15.811295166330153, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 1.9413478862165925, "y": -15.828379783190886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 1.8427174447504515, "y": -15.84464900594954, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 1.7442416329189552, "y": -15.86182914094617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 1.6459847612895555, "y": -15.880219646279663, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 1.5477681463276545, "y": -15.898815990750647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 1.4494241849365737, "y": -15.916727442897413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 1.3513117099187604, "y": -15.935863872150179, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 1.2533233274225866, "y": -15.95563201495852, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 1.155302748973502, "y": -15.975241041842352, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 1.0573700161924617, "y": -15.995251262889486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 0.9596749900085253, "y": -16.016421613448273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 0.8620153318262037, "y": -16.037754641987185, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 0.7644030330396158, "y": -16.059301712282476, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 0.6671303940410113, "y": -16.082334414653324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 0.5698388210746502, "y": -16.105286034637974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 0.4726617606030739, "y": -16.128722210578555, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 0.37565057135587454, "y": -16.152826739730703, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 0.27870495348497965, "y": -16.17720379995135, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 0.18181820329406456, "y": -16.20181366921311, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 0.08528785035167191, "y": -16.227771665023827, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": -0.010782043550674825, "y": -16.255397162826412, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": -0.10657538115100569, "y": -16.283966037389803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": -0.20203657784262377, "y": -16.313624835223557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": -0.2966469057532226, "y": -16.345879843155462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": -0.39060211786129767, "y": -16.380007754193567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": -0.4839267319650499, "y": -16.415825683635422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": -0.5762171588892302, "y": -16.454215556604748, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": -0.6672936397860846, "y": -16.495416052144346, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": -0.7575578344083644, "y": -16.538360784164063, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": -0.8462403769009973, "y": -16.58446875201201, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": -0.9335371695180381, "y": -16.633167477423413, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": -1.019224536543881, "y": -16.684620662128463, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": -1.1031517884217334, "y": -16.738919914646775, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": -1.1852636846013584, "y": -16.795909737098974, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": -1.2653058095577072, "y": -16.855783118841828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": -1.343398335802365, "y": -16.918184000446928, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": -1.4191110321858094, "y": -16.983449794304683, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": -1.4926174947063038, "y": -17.051184907474322, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": -1.5642068765759727, "y": -17.120937453696325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": -1.6327363359097953, "y": -17.19371107021168, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": -1.6994612385776982, "y": -17.26814267486951, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": -1.762980929456722, "y": -17.345315706007007, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": -1.823929880219133, "y": -17.42453927970305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": -1.882236974548463, "y": -17.505726362707165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": -1.9379109490229955, "y": -17.588744574725453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": -1.9913928070935352, "y": -17.673194568359254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": -2.0417497058583045, "y": -17.75953187919758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": -2.0899267835047697, "y": -17.84711822896458, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": -2.1355194050488575, "y": -17.936064915705384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": -2.178371606278283, "y": -18.026373619855452, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": -2.2192518830580874, "y": -18.11759227975901, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": -2.2573851169723005, "y": -18.209989291336232, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": -2.293568933464025, "y": -18.303172209015493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": -2.3275473823195925, "y": -18.397174290032527, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": -2.359450836818192, "y": -18.491908933725572, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": -2.390282576760052, "y": -18.586998078622337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": -2.419146589990838, "y": -18.682699551813496, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": -2.4468090378673693, "y": -18.77875919480724, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": -2.4740738873216968, "y": -18.874931494428267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": -2.499694053582077, "y": -18.97155589442949, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": -2.5256486909914093, "y": -19.06809122113674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": -2.551259144358697, "y": -19.16471612159381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": -2.575152939125569, "y": -19.261781518630688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": -2.599851203308354, "y": -19.358645307580456, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": -2.622787099353616, "y": -19.455937867375606, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": -2.6462313099129537, "y": -19.553112360447102, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": -2.668300692883585, "y": -19.65060781924587, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": -2.6902753750115758, "y": -19.748125176897155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": -2.7112561818341585, "y": -19.845861202776256, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": -2.7320111066067705, "y": -19.943642024844106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": -2.751926474717214, "y": -20.04159779865812, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": -2.7717013556445624, "y": -20.13958331050643, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": -2.7907703153125607, "y": -20.237706716727462, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": -2.8094903731878658, "y": -20.335898435914416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": -2.827832086389903, "y": -20.434163722283945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": -2.8452428214703502, "y": -20.532598720491464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": -2.8612533473797224, "y": -20.631270069575148, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": -2.877161507547038, "y": -20.729959221017612, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": -2.892883122563659, "y": -20.828676747189697, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": -2.9089878695378384, "y": -20.92733449507319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": -2.9257240418410952, "y": -21.025883365233785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": -2.9438454947260015, "y": -21.124190476897127, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": -2.9642577043602882, "y": -21.22204062954508, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": -2.986360715862393, "y": -21.319528712972936, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": -3.010984262949069, "y": -21.416402306532436, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": -3.0384909503497184, "y": -21.51250322565699, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": -3.0693285391817717, "y": -21.607578953568357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": -3.1037631916253563, "y": -21.701419842515364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": -3.1412245456967995, "y": -21.794092267238213, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": -3.183397664695475, "y": -21.884707497410425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": -3.2289211852673847, "y": -21.97369402380662, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": -3.279629778220867, "y": -22.059812906046425, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": -3.33501874949519, "y": -22.143006980554645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": -3.395122865915616, "y": -22.222854101121435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": -3.460255912969519, "y": -22.298654297860423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": -3.5306444729701547, "y": -22.369578249807223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": -3.605614026799297, "y": -22.43567063234638, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": -3.6851573951701093, "y": -22.496174793812738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": -3.768835082362925, "y": -22.55082446485453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": -3.8564963112689883, "y": -22.59882866302537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": -3.9470746808042643, "y": -22.641034635468444, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": -4.04034614922513, "y": -22.67697382903993, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": -4.135052683701019, "y": -22.708929999769392, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": -4.231239305361678, "y": -22.73610677306785, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": -4.328700659736979, "y": -22.758283052871164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": -4.427151881689959, "y": -22.77554055708707, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": -4.526365336919766, "y": -22.78768206148478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": -4.626039004555671, "y": -22.795102097630334, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": -4.72594840940507, "y": -22.79792525376371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": -4.825882950681985, "y": -22.79615536111711, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": -4.925636822594655, "y": -22.789813894590626, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.0, "g": 0.0, "b": 1.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "centerline_waypoints": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -5.024962436856354, "y_m": -22.778604316253958, "d_right": 1.4216261880728818, "d_left": 1.573201480886038, "psi_rad": 2.9837222720526553, "kappa_radpm": -0.23364972569625664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 1, "s_m": 0.1, "d_m": 0.0, "x_m": -5.123670944512135, "y_m": -22.762890402810378, "d_right": 1.4233051708961848, "d_left": 1.5722776915355614, "psi_rad": 2.9603572994830296, "kappa_radpm": -0.3547304073769708, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 2, "s_m": 0.2, "d_m": 0.0, "x_m": -5.2215329592390765, "y_m": -22.742583539187446, "d_right": 1.4273276930683083, "d_left": 1.5823403172458088, "psi_rad": 2.912776190577261, "kappa_radpm": -0.48084690744520486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 3, "s_m": 0.30000000000000004, "d_m": 0.0, "x_m": -5.318298747987133, "y_m": -22.717562504961297, "d_right": 1.433496405719109, "d_left": 1.6030771010202396, "psi_rad": 2.8641879179939886, "kappa_radpm": -0.486723687325159, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 4, "s_m": 0.4, "d_m": 0.0, "x_m": -5.413733417838098, "y_m": -22.687855120824988, "d_right": 1.4417383190311954, "d_left": 1.6113419799432462, "psi_rad": 2.8154314531122293, "kappa_radpm": -0.48532613792414026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 5, "s_m": 0.5, "d_m": 0.0, "x_m": -5.507602934557472, "y_m": -22.653532011028705, "d_right": 1.451996016260832, "d_left": 1.6235912003415751, "psi_rad": 2.7671226904091606, "kappa_radpm": -0.5220850265485422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 6, "s_m": 0.6000000000000001, "d_m": 0.0, "x_m": -5.599727916255872, "y_m": -22.61475657824462, "d_right": 1.4616924109371485, "d_left": 1.6420618512713971, "psi_rad": 2.711014447802521, "kappa_radpm": -0.6279724540194231, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 7, "s_m": 0.7000000000000001, "d_m": 0.0, "x_m": -5.689134059622661, "y_m": -22.570150947527793, "d_right": 1.4617203740411673, "d_left": 1.6528507403311752, "psi_rad": 2.641528199605276, "kappa_radpm": -0.7333982002969464, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 8, "s_m": 0.8, "d_m": 0.0, "x_m": -5.77498809328744, "y_m": -22.518996839113235, "d_right": 1.4611296407943344, "d_left": 1.674478818317381, "psi_rad": 2.5643348077431316, "kappa_radpm": -0.7691375977093218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 9, "s_m": 0.9, "d_m": 0.0, "x_m": -5.856474412812163, "y_m": -22.461169495719908, "d_right": 1.4593973361751693, "d_left": 1.6501474828016958, "psi_rad": 2.4877006800634116, "kappa_radpm": -0.7747729472252485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 10, "s_m": 1.0, "d_m": 0.0, "x_m": -5.933510124382924, "y_m": -22.397511286491206, "d_right": 1.4571703284605544, "d_left": 1.57315520095069, "psi_rad": 2.409380218298082, "kappa_radpm": -0.7994797930605535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 11, "s_m": 1.1, "d_m": 0.0, "x_m": -6.004983289752657, "y_m": -22.32767341607033, "d_right": 1.4534795256790907, "d_left": 1.5023880935888363, "psi_rad": 2.327804721451301, "kappa_radpm": -0.8004671567751309, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 12, "s_m": 1.2000000000000002, "d_m": 0.0, "x_m": -6.070664505674698, "y_m": -22.252339578775025, "d_right": 1.4486695099013405, "d_left": 1.4360990818470014, "psi_rad": 2.2492867869430557, "kappa_radpm": -0.7825444225278178, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 13, "s_m": 1.3, "d_m": 0.0, "x_m": -6.130337912423816, "y_m": -22.17217894936661, "d_right": 1.4403319376056742, "d_left": 1.3762131710749128, "psi_rad": 2.1712958369457374, "kappa_radpm": -0.7570239202573714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 14, "s_m": 1.4000000000000001, "d_m": 0.0, "x_m": -6.183511172552238, "y_m": -22.08756873568825, "d_right": 1.4269873974314102, "d_left": 1.3260964897454477, "psi_rad": 2.0978820028915814, "kappa_radpm": -0.7047195791757277, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 15, "s_m": 1.5, "d_m": 0.0, "x_m": -6.230819167977402, "y_m": -21.99953337434628, "d_right": 1.4137850573636437, "d_left": 1.2881044352119335, "psi_rad": 2.030351921110592, "kappa_radpm": -0.6678752941260491, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 16, "s_m": 1.6, "d_m": 0.0, "x_m": -6.272117090253706, "y_m": -21.90852904729845, "d_right": 1.4008814806030667, "d_left": 1.2634326828125202, "psi_rad": 1.9643069440663716, "kappa_radpm": -0.6422298797720505, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 17, "s_m": 1.7000000000000002, "d_m": 0.0, "x_m": -6.307418255494868, "y_m": -21.81503046320148, "d_right": 1.3885505211007139, "d_left": 1.2492302157673922, "psi_rad": 1.9019059451561817, "kappa_radpm": -0.6021201909129092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 18, "s_m": 1.8, "d_m": 0.0, "x_m": -6.33706943910823, "y_m": -21.71958508252596, "d_right": 1.3724992396086317, "d_left": 1.219651085111574, "psi_rad": 1.8438829058837898, "kappa_radpm": -0.5595112783171041, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 19, "s_m": 1.9000000000000001, "d_m": 0.0, "x_m": -6.36130836255311, "y_m": -21.62262350575625, "d_right": 1.3562296667179035, "d_left": 1.1954723459489387, "psi_rad": 1.790003689492761, "kappa_radpm": -0.5067641374212195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 20, "s_m": 2.0, "d_m": 0.0, "x_m": -6.380523840185805, "y_m": -21.52453625337537, "d_right": 1.3420654969501469, "d_left": 1.1763006229081632, "psi_rad": 1.7425300783995459, "kappa_radpm": -0.44261802857744614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 21, "s_m": 2.1, "d_m": 0.0, "x_m": -6.3954623147777445, "y_m": -21.42570514646261, "d_right": 1.3258038828534853, "d_left": 1.161391644777038, "psi_rad": 1.7014800837772717, "kappa_radpm": -0.3899823975601968, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 22, "s_m": 2.2, "d_m": 0.0, "x_m": -6.406569552505966, "y_m": -21.326368767615993, "d_right": 1.3044103656846706, "d_left": 1.1503023948165516, "psi_rad": 1.6645335988875065, "kappa_radpm": -0.34645764648015165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 23, "s_m": 2.3000000000000003, "d_m": 0.0, "x_m": -6.414171192529959, "y_m": -21.226701602547614, "d_right": 1.2869298767422856, "d_left": 1.1446374745473116, "psi_rad": 1.6321885544812413, "kappa_radpm": -0.2983174448119208, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 24, "s_m": 2.4000000000000004, "d_m": 0.0, "x_m": -6.418833762999835, "y_m": -21.126851676883923, "d_right": 1.2741198353234182, "d_left": 1.1506166626160739, "psi_rad": 1.6048701099251224, "kappa_radpm": -0.27757037022613673, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 25, "s_m": 2.5, "d_m": 0.0, "x_m": -6.420981327303555, "y_m": -21.026914600033717, "d_right": 1.2665616601463385, "d_left": 1.1648602701504247, "psi_rad": 1.576674480436014, "kappa_radpm": -0.2674873711218584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 26, "s_m": 2.6, "d_m": 0.0, "x_m": -6.420008742100002, "y_m": -20.926964835032653, "d_right": 1.2637508078863815, "d_left": 1.1852309376327785, "psi_rad": 1.5513726357007507, "kappa_radpm": -0.1949434032542563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 27, "s_m": 2.7, "d_m": 0.0, "x_m": -6.417098616914577, "y_m": -20.827044139341634, "d_right": 1.2608397572638401, "d_left": 1.1894645313183136, "psi_rad": 1.5376857997851627, "kappa_radpm": -0.09805828167475217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 28, "s_m": 2.8000000000000003, "d_m": 0.0, "x_m": -6.413390332366062, "y_m": -20.727149502820133, "d_right": 1.257130175270444, "d_left": 1.1931731906911685, "psi_rad": 1.5317609793658002, "kappa_radpm": -0.0334112120862462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 29, "s_m": 2.9000000000000004, "d_m": 0.0, "x_m": -6.409296392802422, "y_m": -20.627269798346777, "d_right": 1.2530347096242849, "d_left": 1.1972675938453723, "psi_rad": 1.5310035573679135, "kappa_radpm": 0.022870446837570668, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 30, "s_m": 3.0, "d_m": 0.0, "x_m": -6.405436785890795, "y_m": -20.527380849024997, "d_right": 1.2491737199956225, "d_left": 1.2011276131451323, "psi_rad": 1.5363350687333144, "kappa_radpm": 0.08867814822014486, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 31, "s_m": 3.1, "d_m": 0.0, "x_m": -6.4024081012674685, "y_m": -20.42746384490367, "d_right": 1.2461440594509938, "d_left": 1.2041565495576716, "psi_rad": 1.5487391870119425, "kappa_radpm": 0.16371943894029295, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 32, "s_m": 3.2, "d_m": 0.0, "x_m": -6.401027527024368, "y_m": -20.32751160821659, "d_right": 1.244762885907934, "d_left": 1.205537184074667, "psi_rad": 1.569078956521373, "kappa_radpm": 0.17318564781473977, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 33, "s_m": 3.3000000000000003, "d_m": 0.0, "x_m": -6.402064786739443, "y_m": -20.22755693152622, "d_right": 1.24579906460224, "d_left": 1.2051879545641069, "psi_rad": 1.5833763165748904, "kappa_radpm": 0.11241176635909067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 34, "s_m": 3.4000000000000004, "d_m": 0.0, "x_m": -6.403542489147323, "y_m": -20.12760449413028, "d_right": 1.247275545819968, "d_left": 1.2072360509865188, "psi_rad": 1.591561309793191, "kappa_radpm": 0.04629431123364669, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 35, "s_m": 3.5, "d_m": 0.0, "x_m": -6.406215877723583, "y_m": -20.02767743542419, "d_right": 1.2499469289572966, "d_left": 1.2163313026982792, "psi_rad": 1.5926351788216198, "kappa_radpm": -0.046869906919356774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 36, "s_m": 3.6, "d_m": 0.0, "x_m": -6.407908149758211, "y_m": -19.92773288286776, "d_right": 1.2305191175091623, "d_left": 1.2344442215248814, "psi_rad": 1.5821873284093197, "kappa_radpm": -0.060310273543480175, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 37, "s_m": 3.7, "d_m": 0.0, "x_m": -6.408493110555328, "y_m": -19.82777101683875, "d_right": 1.2143823771587274, "d_left": 1.2481134230919162, "psi_rad": 1.5805731241129237, "kappa_radpm": 0.04383583009351488, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 38, "s_m": 3.8000000000000003, "d_m": 0.0, "x_m": -6.409862707236397, "y_m": -19.72782128214066, "d_right": 1.2071248215797905, "d_left": 1.2467437307888156, "psi_rad": 1.5909544944280227, "kappa_radpm": 0.09036889398029602, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 39, "s_m": 3.9000000000000004, "d_m": 0.0, "x_m": -6.412522828093151, "y_m": -19.62789314257895, "d_right": 1.2071671035229505, "d_left": 1.2440833601506573, "psi_rad": 1.598646902908983, "kappa_radpm": 0.049135751027076235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 40, "s_m": 4.0, "d_m": 0.0, "x_m": -6.415430067983339, "y_m": -19.527971871483487, "d_right": 1.2097827888202903, "d_left": 1.2411758128895471, "psi_rad": 1.600781644633438, "kappa_radpm": 0.01796524011519751, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 41, "s_m": 4.1000000000000005, "d_m": 0.0, "x_m": -6.418516805687103, "y_m": -19.428055972771066, "d_right": 1.2128642174890785, "d_left": 1.2380887221978059, "psi_rad": 1.6022399509320224, "kappa_radpm": 0.011202358846426064, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 42, "s_m": 4.2, "d_m": 0.0, "x_m": -6.421715465045637, "y_m": -19.328143587127705, "d_right": 1.2160573849740453, "d_left": 1.2348896799309517, "psi_rad": 1.6030221164027232, "kappa_radpm": 0.004441814476485728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 43, "s_m": 4.3, "d_m": 0.0, "x_m": -6.424958500780659, "y_m": -19.228232628978752, "d_right": 1.2192948772513996, "d_left": 1.2316462493289475, "psi_rad": 1.6031283138273196, "kappa_radpm": -0.0023177017149922374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 44, "s_m": 4.4, "d_m": 0.0, "x_m": -6.428178381002756, "y_m": -19.12832092312922, "d_right": 1.2225092939224105, "d_left": 1.233506727987765, "psi_rad": 1.6025585760597247, "kappa_radpm": -0.04688922449950228, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 45, "s_m": 4.5, "d_m": 0.0, "x_m": -6.431307568350006, "y_m": -19.02840634125704, "d_right": 1.225633224194098, "d_left": 1.243516827079547, "psi_rad": 1.5937504689274191, "kappa_radpm": -0.06349506973730268, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 46, "s_m": 4.6000000000000005, "d_m": 0.0, "x_m": -6.4327669485225325, "y_m": -18.92845452991675, "d_right": 1.2270899454542619, "d_left": 1.2630210542889029, "psi_rad": 1.5898595621122642, "kappa_radpm": 0.042165021669365865, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 47, "s_m": 4.7, "d_m": 0.0, "x_m": -6.435118437970913, "y_m": -18.82852379697062, "d_right": 1.2294373717058231, "d_left": 1.2718546389742087, "psi_rad": 1.6021834732612923, "kappa_radpm": 0.11386326140482628, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 48, "s_m": 4.800000000000001, "d_m": 0.0, "x_m": -6.439040700109055, "y_m": -18.72863734499804, "d_right": 1.23335285439539, "d_left": 1.2679316351941183, "psi_rad": 1.6126322143932295, "kappa_radpm": 0.07643752168347229, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 49, "s_m": 4.9, "d_m": 0.0, "x_m": -6.443480089363815, "y_m": -18.62877250686392, "d_right": 1.2377843652399703, "d_left": 1.2634911165216358, "psi_rad": 1.6174709775979867, "kappa_radpm": 0.045001256544243695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 50, "s_m": 5.0, "d_m": 0.0, "x_m": -6.448368809587651, "y_m": -18.528928627301323, "d_right": 1.2426642060774498, "d_left": 1.258600872795898, "psi_rad": 1.6216324657020782, "kappa_radpm": 0.0382341930030039, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 51, "s_m": 5.1000000000000005, "d_m": 0.0, "x_m": -6.453639211010856, "y_m": -18.429104142841915, "d_right": 1.2479248577040656, "d_left": 1.253328571420096, "psi_rad": 1.6251178161985875, "kappa_radpm": 0.031478325602938284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 52, "s_m": 5.2, "d_m": 0.0, "x_m": -6.459223791206269, "y_m": -18.32929672123356, "d_right": 1.2534989734600996, "d_left": 1.2477417527936154, "psi_rad": 1.6279281308226659, "kappa_radpm": 0.024732911569144145, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 53, "s_m": 5.300000000000001, "d_m": 0.0, "x_m": -6.465055185009409, "y_m": -18.229503399516506, "d_right": 1.2593193620030996, "d_left": 1.2482517670405102, "psi_rad": 1.6300643985124164, "kappa_radpm": 0.017996513128619718, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 54, "s_m": 5.4, "d_m": 0.0, "x_m": -6.471066145393919, "y_m": -18.12972072074969, "d_right": 1.2653189614246836, "d_left": 1.2490445218494786, "psi_rad": 1.6315274334483898, "kappa_radpm": 0.011267147273827938, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 55, "s_m": 5.5, "d_m": 0.0, "x_m": -6.477189517268105, "y_m": -18.029944869518992, "d_right": 1.2657071081557747, "d_left": 1.2576948666094685, "psi_rad": 1.632317827967182, "kappa_radpm": -0.03250822548355847, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 56, "s_m": 5.6000000000000005, "d_m": 0.0, "x_m": -6.483358206125797, "y_m": -17.930171806468593, "d_right": 1.249110588046875, "d_left": 1.274064065530289, "psi_rad": 1.625025788351678, "kappa_radpm": -0.07001517626777032, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 57, "s_m": 5.7, "d_m": 0.0, "x_m": -6.488025773540878, "y_m": -17.83031847948358, "d_right": 1.2388721922049852, "d_left": 1.2694039578550607, "psi_rad": 1.6183147927136279, "kappa_radpm": -0.02310881686560795, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 58, "s_m": 5.800000000000001, "d_m": 0.0, "x_m": -6.492854799704076, "y_m": -17.73047165759827, "d_right": 1.2368168669047104, "d_left": 1.264582816110745, "psi_rad": 1.6204040249785565, "kappa_radpm": 0.021008263550261752, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 59, "s_m": 5.9, "d_m": 0.0, "x_m": -6.497939620462056, "y_m": -17.630637511764334, "d_right": 1.2419042135256906, "d_left": 1.2595066161072488, "psi_rad": 1.6225164454236802, "kappa_radpm": 0.016630152959671296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 60, "s_m": 6.0, "d_m": 0.0, "x_m": -6.503190441294616, "y_m": -17.53081194346026, "d_right": 1.2471577375180987, "d_left": 1.2542649484581327, "psi_rad": 1.6237300555704908, "kappa_radpm": 0.007644950331704425, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 61, "s_m": 6.1000000000000005, "d_m": 0.0, "x_m": -6.5085175675455, "y_m": -17.43099041054766, "d_right": 1.2524876513204486, "d_left": 1.2489472798481125, "psi_rad": 1.6240454354900211, "kappa_radpm": -0.001336486070585563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 62, "s_m": 6.2, "d_m": 0.0, "x_m": -6.513831353650148, "y_m": -17.33116816737228, "d_right": 1.25780421050999, "d_left": 1.2437862737997143, "psi_rad": 1.6234627583563737, "kappa_radpm": -0.01031829544262508, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 63, "s_m": 6.300000000000001, "d_m": 0.0, "x_m": -6.519042148339443, "y_m": -17.231340504150854, "d_right": 1.2630176658409422, "d_left": 1.2467482709034552, "psi_rad": 1.621981776401496, "kappa_radpm": -0.019304584638216715, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 64, "s_m": 6.4, "d_m": 0.0, "x_m": -6.524060240326011, "y_m": -17.131502986433723, "d_right": 1.2680382158258103, "d_left": 1.2578646823531268, "psi_rad": 1.6196018414287303, "kappa_radpm": -0.028299082070261106, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 65, "s_m": 6.5, "d_m": 0.0, "x_m": -6.528795808981897, "y_m": -17.031651695424195, "d_right": 1.2727759643731633, "d_left": 1.2770100308669794, "psi_rad": 1.6163219599874439, "kappa_radpm": 0.008674709130057634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 66, "s_m": 6.6000000000000005, "d_m": 0.0, "x_m": -6.533158884548101, "y_m": -16.931783469834397, "d_right": 1.2771408880069892, "d_left": 1.2736881942870986, "psi_rad": 1.6213367832547418, "kappa_radpm": 0.062330396248778674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 67, "s_m": 6.7, "d_m": 0.0, "x_m": -6.538895601101595, "y_m": -16.831986082268386, "d_right": 1.2828809166843345, "d_left": 1.2679565993925432, "psi_rad": 1.6287880392371996, "kappa_radpm": 0.03651157238309888, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 68, "s_m": 6.800000000000001, "d_m": 0.0, "x_m": -6.544746419320646, "y_m": -16.732193880291224, "d_right": 1.2887351496169976, "d_left": 1.26211111692133, "psi_rad": 1.6286390977313616, "kappa_radpm": -0.009630315972819492, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 69, "s_m": 6.9, "d_m": 0.0, "x_m": -6.550453489912237, "y_m": -16.632393364407807, "d_right": 1.2944454566447137, "d_left": 1.2564092303929117, "psi_rad": 1.6268619760426357, "kappa_radpm": -0.03768688632112993, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 70, "s_m": 7.0, "d_m": 0.0, "x_m": -6.555949584753737, "y_m": -16.532581022750676, "d_right": 1.2999445362599793, "d_left": 1.2509180627647138, "psi_rad": 1.6211017204671356, "kappa_radpm": -0.08090107372460742, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 71, "s_m": 7.1000000000000005, "d_m": 0.0, "x_m": -6.560506329837642, "y_m": -16.432725739402663, "d_right": 1.2933412733201288, "d_left": 1.2463650655872243, "psi_rad": 1.6106817612977142, "kappa_radpm": -0.08041001836070816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 72, "s_m": 7.2, "d_m": 0.0, "x_m": -6.56392134718495, "y_m": -16.332820513808123, "d_right": 1.2759344516126674, "d_left": 1.2446546349312968, "psi_rad": 1.605019716794994, "kappa_radpm": -0.03002150644506263, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 73, "s_m": 7.300000000000001, "d_m": 0.0, "x_m": -6.5673471791841225, "y_m": -16.232915656937518, "d_right": 1.2662142748001892, "d_left": 1.25094482193955, "psi_rad": 1.6046774600087017, "kappa_radpm": -0.00792818196268863, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 74, "s_m": 7.4, "d_m": 0.0, "x_m": -6.570693809058754, "y_m": -16.133008122862584, "d_right": 1.2642679872310307, "d_left": 1.2652048752014073, "psi_rad": 1.6034340804024563, "kappa_radpm": -0.01694113037782219, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 75, "s_m": 7.5, "d_m": 0.0, "x_m": -6.573871190642727, "y_m": -16.033095079101024, "d_right": 1.267446187043667, "d_left": 1.2826953817840219, "psi_rad": 1.6012892339331373, "kappa_radpm": 0.019310618141941127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 76, "s_m": 7.6000000000000005, "d_m": 0.0, "x_m": -6.576789217174213, "y_m": -15.933174149498353, "d_right": 1.2703649502306762, "d_left": 1.2797777082625845, "psi_rad": 1.6072962040308445, "kappa_radpm": 0.07285716096084416, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 77, "s_m": 7.7, "d_m": 0.0, "x_m": -6.581166626517179, "y_m": -15.83330822009748, "d_right": 1.2747437078929438, "d_left": 1.2754010479199487, "psi_rad": 1.615860666125306, "kappa_radpm": 0.04834797458814655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 78, "s_m": 7.800000000000001, "d_m": 0.0, "x_m": -6.585795666914642, "y_m": -15.73345187910641, "d_right": 1.2793742076139734, "d_left": 1.2707728394631046, "psi_rad": 1.6169657989484738, "kappa_radpm": 0.0022957107485388484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 79, "s_m": 7.9, "d_m": 0.0, "x_m": -6.5903938785590395, "y_m": -15.633594115783321, "d_right": 1.2839738665271272, "d_left": 1.266175464941401, "psi_rad": 1.6163198082750139, "kappa_radpm": -0.009833253387608876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 80, "s_m": 8.0, "d_m": 0.0, "x_m": -6.594893902186729, "y_m": -15.533731886580297, "d_right": 1.2884752897252099, "d_left": 1.2616762605645164, "psi_rad": 1.614999148270952, "kappa_radpm": -0.016581838981488684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 81, "s_m": 8.1, "d_m": 0.0, "x_m": -6.59922834094991, "y_m": -15.433862345452715, "d_right": 1.2928110469933145, "d_left": 1.2573426000398875, "psi_rad": 1.6130034404787161, "kappa_radpm": -0.023335029184311518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 82, "s_m": 8.200000000000001, "d_m": 0.0, "x_m": -6.603329736914142, "y_m": -15.333982979721668, "d_right": 1.2969136513081467, "d_left": 1.2565134469616472, "psi_rad": 1.6103321424340897, "kappa_radpm": -0.030094249682330876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 83, "s_m": 8.3, "d_m": 0.0, "x_m": -6.607130552210842, "y_m": -15.234091746580518, "d_right": 1.3007155420433005, "d_left": 1.2639155934281066, "psi_rad": 1.60698459054225, "kappa_radpm": -0.07247892481131002, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 84, "s_m": 8.4, "d_m": 0.0, "x_m": -6.610563156790991, "y_m": -15.134187210413932, "d_right": 1.304149074799455, "d_left": 1.2794724647550444, "psi_rad": 1.5958363574718277, "kappa_radpm": -0.09256545221103973, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 85, "s_m": 8.5, "d_m": 0.0, "x_m": -6.612135935886979, "y_m": -15.03423825731962, "d_right": 1.3057223454670848, "d_left": 1.2944563605755965, "psi_rad": 1.588471500100042, "kappa_radpm": 0.0074318974540354965, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 86, "s_m": 8.6, "d_m": 0.0, "x_m": -6.614096599720036, "y_m": -14.934298083594355, "d_right": 1.3043657660310208, "d_left": 1.2924955432018659, "psi_rad": 1.5973227369626348, "kappa_radpm": 0.0848143147119873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 87, "s_m": 8.700000000000001, "d_m": 0.0, "x_m": -6.61743842524219, "y_m": -14.834390424020906, "d_right": 1.2882014173067105, "d_left": 1.2891533280461032, "psi_rad": 1.6054343630424395, "kappa_radpm": 0.05088154704156023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 88, "s_m": 8.8, "d_m": 0.0, "x_m": -6.621020291732224, "y_m": -14.734491063910319, "d_right": 1.2798390875600967, "d_left": 1.2855710079414684, "psi_rad": 1.6074990463709469, "kappa_radpm": 0.017267497969838397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 89, "s_m": 8.9, "d_m": 0.0, "x_m": -6.624774644150404, "y_m": -14.634598024013957, "d_right": 1.271999084137231, "d_left": 1.2818161533814703, "psi_rad": 1.6088878626364072, "kappa_radpm": 0.010510542476747098, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 90, "s_m": 9.0, "d_m": 0.0, "x_m": -6.628633981017918, "y_m": -14.534708976835804, "d_right": 1.2720958106912252, "d_left": 1.2779562842927152, "psi_rad": 1.6096011548662963, "kappa_radpm": 0.0037562438587590563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 91, "s_m": 9.1, "d_m": 0.0, "x_m": -6.632530835871668, "y_m": -14.43482138315371, "d_right": 1.2759924874434818, "d_left": 1.2740588872659044, "psi_rad": 1.609639111408159, "kappa_radpm": -0.002997025614570603, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 92, "s_m": 9.200000000000001, "d_m": 0.0, "x_m": -6.636397755655501, "y_m": -14.334932628163838, "d_right": 1.2798592410104872, "d_left": 1.274996363981778, "psi_rad": 1.6090017497433822, "kappa_radpm": -0.0097509817833219, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 93, "s_m": 9.3, "d_m": 0.0, "x_m": -6.640167277979348, "y_m": -14.235040157477943, "d_right": 1.2836286122087164, "d_left": 1.2838376388022916, "psi_rad": 1.6076889150514946, "kappa_radpm": -0.051756572759441566, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 94, "s_m": 9.4, "d_m": 0.0, "x_m": -6.6437719091734495, "y_m": -14.135141613220574, "d_right": 1.2872331094597917, "d_left": 1.3004876223047992, "psi_rad": 1.5986504351914939, "kappa_radpm": -0.08989533482186673, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 95, "s_m": 9.5, "d_m": 0.0, "x_m": -6.64573510491958, "y_m": -14.035199370936372, "d_right": 1.289196235193351, "d_left": 1.3111888371564615, "psi_rad": 1.5897098480871212, "kappa_radpm": -0.02970357901538323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 96, "s_m": 9.600000000000001, "d_m": 0.0, "x_m": -6.6475529702689515, "y_m": -13.935252329200475, "d_right": 1.291014038919502, "d_left": 1.3093710440466242, "psi_rad": 1.5927097193884172, "kappa_radpm": 0.07139734190999669, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 97, "s_m": 9.700000000000001, "d_m": 0.0, "x_m": -6.650115709106744, "y_m": -13.835326030374285, "d_right": 1.2935766930676154, "d_left": 1.3068080939933175, "psi_rad": 1.6039893164691206, "kappa_radpm": 0.10299268002560091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 98, "s_m": 9.8, "d_m": 0.0, "x_m": -6.654187592897514, "y_m": -13.73544550567604, "d_right": 1.29764844491746, "d_left": 1.3027353331507157, "psi_rad": 1.6133082553935374, "kappa_radpm": 0.0625739818338944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 99, "s_m": 9.9, "d_m": 0.0, "x_m": -6.658612418714436, "y_m": -13.635579966823352, "d_right": 1.3020731348115695, "d_left": 1.2983093707755413, "psi_rad": 1.6165041128358995, "kappa_radpm": 0.028580256930430536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 100, "s_m": 10.0, "d_m": 0.0, "x_m": -6.663322625176378, "y_m": -13.535727458891209, "d_right": 1.3067832076972383, "d_left": 1.293597795688113, "psi_rad": 1.6190243067796235, "kappa_radpm": 0.021827350555966296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 101, "s_m": 10.100000000000001, "d_m": 0.0, "x_m": -6.668250755660997, "y_m": -13.435885452026696, "d_right": 1.2920385773206189, "d_left": 1.2886681060109224, "psi_rad": 1.6208695829470927, "kappa_radpm": 0.015081135658847611, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 102, "s_m": 10.200000000000001, "d_m": 0.0, "x_m": -6.673329441600393, "y_m": -13.336050978329542, "d_right": 1.2792985287278063, "d_left": 1.2898883157332046, "psi_rad": 1.622040533911393, "kappa_radpm": 0.00833987745280762, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 103, "s_m": 10.3, "d_m": 0.0, "x_m": -6.678491379514714, "y_m": -13.236220767821, "d_right": 1.274379709800409, "d_left": 1.298741275668476, "psi_rad": 1.6225375584376542, "kappa_radpm": -0.033128261854662444, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 104, "s_m": 10.4, "d_m": 0.0, "x_m": -6.683669303720171, "y_m": -13.136391383718117, "d_right": 1.2773052864517276, "d_left": 1.3151388232347179, "psi_rad": 1.6154148815404605, "kappa_radpm": -0.07134390047793815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 105, "s_m": 10.5, "d_m": 0.0, "x_m": -6.687408563360043, "y_m": -13.036499696137616, "d_right": 1.2810423232912143, "d_left": 1.3200221465597324, "psi_rad": 1.6082687783420666, "kappa_radpm": -0.029738550932049135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 106, "s_m": 10.600000000000001, "d_m": 0.0, "x_m": -6.691159237241287, "y_m": -12.93660655155585, "d_right": 1.28479081793507, "d_left": 1.3162766989893704, "psi_rad": 1.6094671713540507, "kappa_radpm": 0.015156385908489112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 107, "s_m": 10.700000000000001, "d_m": 0.0, "x_m": -6.6951379809314195, "y_m": -12.836722206659552, "d_right": 1.2887672305964064, "d_left": 1.3123036982708434, "psi_rad": 1.6113000555237644, "kappa_radpm": 0.013826657836216727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 108, "s_m": 10.8, "d_m": 0.0, "x_m": -6.699254815553709, "y_m": -12.736843443082275, "d_right": 1.2928816505798912, "d_left": 1.3081929503065146, "psi_rad": 1.612232502921294, "kappa_radpm": 0.004824015628436262, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 109, "s_m": 10.9, "d_m": 0.0, "x_m": -6.703419826871137, "y_m": -12.636966671426226, "d_right": 1.2970442352327876, "d_left": 1.3040341782248226, "psi_rad": 1.6122648586494517, "kappa_radpm": -0.004176783421568908, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 110, "s_m": 11.0, "d_m": 0.0, "x_m": -6.707543124845461, "y_m": -12.537088173012704, "d_right": 1.3011651652932208, "d_left": 1.2999170710762984, "psi_rad": 1.6113971462369803, "kappa_radpm": 0.029822686360385653, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 111, "s_m": 11.100000000000001, "d_m": 0.0, "x_m": -6.711534800638192, "y_m": -12.437204341280342, "d_right": 1.3051545980866504, "d_left": 1.2960081868834927, "psi_rad": 1.6182293959215288, "kappa_radpm": 0.08282049906939704, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 112, "s_m": 11.200000000000001, "d_m": 0.0, "x_m": -6.7170223451638735, "y_m": -12.337393944081226, "d_right": 1.3106386073717913, "d_left": 1.2983039661083542, "psi_rad": 1.6279612460508597, "kappa_radpm": 0.06225037583743931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 113, "s_m": 11.3, "d_m": 0.0, "x_m": -6.722957227967021, "y_m": -12.237606710600991, "d_right": 1.3165696059793432, "d_left": 1.3078124532297164, "psi_rad": 1.6306794710890167, "kappa_radpm": 0.016687396100052432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 114, "s_m": 11.4, "d_m": 0.0, "x_m": -6.7289874555994835, "y_m": -12.137825185680166, "d_right": 1.3225959207645643, "d_left": 1.3247231565786473, "psi_rad": 1.6312987252708702, "kappa_radpm": 0.002830354534300028, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 115, "s_m": 11.5, "d_m": 0.0, "x_m": -6.7350459217684655, "y_m": -12.038045368878906, "d_right": 1.328650515709094, "d_left": 1.3218117782014553, "psi_rad": 1.6312455419958767, "kappa_radpm": -0.003894084461433245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 116, "s_m": 11.600000000000001, "d_m": 0.0, "x_m": -6.741065535922017, "y_m": -11.938263203572793, "d_right": 1.3339886673013577, "d_left": 1.3157976811248338, "psi_rad": 1.6305199083785835, "kappa_radpm": -0.010619996324684466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 117, "s_m": 11.700000000000001, "d_m": 0.0, "x_m": -6.7469791879107275, "y_m": -11.838474710675644, "d_right": 1.3163910921798743, "d_left": 1.3098894543594897, "psi_rad": 1.6291215427309398, "kappa_radpm": -0.017349993110684636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 118, "s_m": 11.8, "d_m": 0.0, "x_m": -6.752719713697708, "y_m": -11.738676122573821, "d_right": 1.3060545960427667, "d_left": 1.3041541543256827, "psi_rad": 1.6270499097564466, "kappa_radpm": -0.02408646222545774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 119, "s_m": 11.9, "d_m": 0.0, "x_m": -6.758219864004426, "y_m": -11.638864017641058, "d_right": 1.3030846690325177, "d_left": 1.29865892594956, "psi_rad": 1.6243042502858482, "kappa_radpm": -0.04458092548214165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 120, "s_m": 12.0, "d_m": 0.0, "x_m": -6.763412277796238, "y_m": -11.539035455657835, "d_right": 1.3074643293523862, "d_left": 1.2934710331896437, "psi_rad": 1.6181337246600183, "kappa_radpm": -0.0885313485574335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 121, "s_m": 12.100000000000001, "d_m": 0.0, "x_m": -6.767680050422482, "y_m": -11.439167380990634, "d_right": 1.3117263681531675, "d_left": 1.289206666156658, "psi_rad": 1.6065979805743615, "kappa_radpm": -0.09433131543723272, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 122, "s_m": 12.200000000000001, "d_m": 0.0, "x_m": -6.770568145039901, "y_m": -11.33924553360312, "d_right": 1.3146109875053116, "d_left": 1.2878767683328038, "psi_rad": 1.5992674615725717, "kappa_radpm": -0.04315072631198125, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 123, "s_m": 12.3, "d_m": 0.0, "x_m": -6.773371433604454, "y_m": -11.239321279980173, "d_right": 1.3174109287669002, "d_left": 1.2943736700386197, "psi_rad": 1.5979678353119653, "kappa_radpm": -0.0020880639805820334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 124, "s_m": 12.4, "d_m": 0.0, "x_m": -6.775999795902592, "y_m": -11.139392290978508, "d_right": 1.3200361780277057, "d_left": 1.3086694694469223, "psi_rad": 1.5988498487764553, "kappa_radpm": 0.04470284925268575, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 125, "s_m": 12.5, "d_m": 0.0, "x_m": -6.778979254968943, "y_m": -11.039476491424402, "d_right": 1.3230119995393868, "d_left": 1.3275937061363332, "psi_rad": 1.6069084051625024, "kappa_radpm": 0.07281917349444944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 126, "s_m": 12.600000000000001, "d_m": 0.0, "x_m": -6.78321774700482, "y_m": -10.939602814575526, "d_right": 1.3272451032508044, "d_left": 1.3233559766924403, "psi_rad": 1.6134136834753452, "kappa_radpm": 0.03288200600567892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 127, "s_m": 12.700000000000001, "d_m": 0.0, "x_m": -6.787497042587361, "y_m": -10.839730874207211, "d_right": 1.3315189882315965, "d_left": 1.31907746871101, "psi_rad": 1.6134848063636382, "kappa_radpm": -0.0026632567713325006, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 128, "s_m": 12.8, "d_m": 0.0, "x_m": -6.7917497412527466, "y_m": -10.739857799790585, "d_right": 1.3357663661351924, "d_left": 1.3148255604793746, "psi_rad": 1.6128810321210787, "kappa_radpm": -0.009413052933073818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 129, "s_m": 12.9, "d_m": 0.0, "x_m": -6.795908433131743, "y_m": -10.639980774371223, "d_right": 1.3399199341501795, "d_left": 1.310667638828359, "psi_rad": 1.6116021957770235, "kappa_radpm": -0.016165383891127982, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 130, "s_m": 13.0, "d_m": 0.0, "x_m": -6.7999056746949815, "y_m": -10.540097170338425, "d_right": 1.343912347159053, "d_left": 1.306671124480556, "psi_rad": 1.609647955342853, "kappa_radpm": -0.02292188199999101, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 131, "s_m": 13.100000000000001, "d_m": 0.0, "x_m": -6.803673967146334, "y_m": -10.440204685556463, "d_right": 1.34767619280992, "d_left": 1.302903494900569, "psi_rad": 1.6070178193770253, "kappa_radpm": -0.029683829842171994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 132, "s_m": 13.200000000000001, "d_m": 0.0, "x_m": -6.807145739397918, "y_m": -10.340301480077908, "d_right": 1.3440145413241575, "d_left": 1.2994323026857335, "psi_rad": 1.6037111893744187, "kappa_radpm": -0.03645201145044408, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 133, "s_m": 13.3, "d_m": 0.0, "x_m": -6.81025333757621, "y_m": -10.240386313588175, "d_right": 1.325842422051418, "d_left": 1.2994047586888922, "psi_rad": 1.5997274170869364, "kappa_radpm": -0.028328991364937606, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 134, "s_m": 13.4, "d_m": 0.0, "x_m": -6.812929023027763, "y_m": -10.140458683629108, "d_right": 1.314008150351056, "d_left": 1.3074741070684288, "psi_rad": 1.5980453911014312, "kappa_radpm": 0.020593897803666827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 135, "s_m": 13.5, "d_m": 0.0, "x_m": -6.8157004102985965, "y_m": -10.040536350925384, "d_right": 1.3098141465695323, "d_left": 1.3229737655854508, "psi_rad": 1.6038461966476698, "kappa_radpm": 0.01873628067860067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 136, "s_m": 13.600000000000001, "d_m": 0.0, "x_m": -6.819535199632317, "y_m": -9.940646364750473, "d_right": 1.3136503473872878, "d_left": 1.3370463850789083, "psi_rad": 1.6017926472371513, "kappa_radpm": -0.05079821092880299, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 137, "s_m": 13.700000000000001, "d_m": 0.0, "x_m": -6.821896177785987, "y_m": -9.84071317732979, "d_right": 1.3160121079694236, "d_left": 1.3346852210549534, "psi_rad": 1.5936865544619092, "kappa_radpm": -0.03975658569800866, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 138, "s_m": 13.8, "d_m": 0.0, "x_m": -6.824111118924839, "y_m": -9.74077416916756, "d_right": 1.318227720703697, "d_left": 1.3324701354949355, "psi_rad": 1.5938413300975496, "kappa_radpm": 0.007939129884606544, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 139, "s_m": 13.9, "d_m": 0.0, "x_m": -6.826503089205051, "y_m": -9.640839226541516, "d_right": 1.3206204028664357, "d_left": 1.3300779943612433, "psi_rad": 1.5952743804388305, "kappa_radpm": 0.010947408407778747, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 140, "s_m": 14.0, "d_m": 0.0, "x_m": -6.829004456723364, "y_m": -9.540906953065406, "d_right": 1.3231225122059487, "d_left": 1.3275764385127964, "psi_rad": 1.5960308117791053, "kappa_radpm": 0.004181839561863132, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 141, "s_m": 14.100000000000001, "d_m": 0.0, "x_m": -6.831547612384157, "y_m": -9.440975730710127, "d_right": 1.3256664222472645, "d_left": 1.3250330877138823, "psi_rad": 1.5961107483512031, "kappa_radpm": -0.002583030832905564, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 142, "s_m": 14.200000000000001, "d_m": 0.0, "x_m": -6.834064956397778, "y_m": -9.341043856821505, "d_right": 1.328184513125614, "d_left": 1.3225155530406338, "psi_rad": 1.5955142056125242, "kappa_radpm": -0.009348300653231334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 143, "s_m": 14.3, "d_m": 0.0, "x_m": -6.83648888354935, "y_m": -9.24110968103745, "d_right": 1.3306091611801916, "d_left": 1.3246505667482964, "psi_rad": 1.5942410882205569, "kappa_radpm": -0.0015668588676620576, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 144, "s_m": 14.4, "d_m": 0.0, "x_m": -6.838751769183608, "y_m": -9.141171742263152, "d_right": 1.3328727292574878, "d_left": 1.3344520535474174, "psi_rad": 1.5952008338389918, "kappa_radpm": 0.04727628937869044, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 145, "s_m": 14.5, "d_m": 0.0, "x_m": -6.841367432739153, "y_m": -9.041245753424342, "d_right": 1.3354892767402855, "d_left": 1.346278016418386, "psi_rad": 1.603696346096295, "kappa_radpm": 0.0791743322524241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 146, "s_m": 14.600000000000001, "d_m": 0.0, "x_m": -6.845327930000088, "y_m": -8.941360675847157, "d_right": 1.3394512794393785, "d_left": 1.3615624076618964, "psi_rad": 1.6110357002894766, "kappa_radpm": 0.04166726543067045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 147, "s_m": 14.700000000000001, "d_m": 0.0, "x_m": -6.849410203052113, "y_m": -8.841480494283376, "d_right": 1.3435351518327348, "d_left": 1.3574792368671702, "psi_rad": 1.612029799182429, "kappa_radpm": 0.0076904733025573435, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 148, "s_m": 14.8, "d_m": 0.0, "x_m": -6.853569284109944, "y_m": -8.74160347725511, "d_right": 1.3476958938924404, "d_left": 1.353319206064727, "psi_rad": 1.612573794949988, "kappa_radpm": 0.003189949708123363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 149, "s_m": 14.9, "d_m": 0.0, "x_m": -6.857760223775241, "y_m": -8.641727790149714, "d_right": 1.3518885207399676, "d_left": 1.3491272946973545, "psi_rad": 1.6126677891240537, "kappa_radpm": -0.0013099716858000487, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 150, "s_m": 15.0, "d_m": 0.0, "x_m": -6.861938080522986, "y_m": -8.54185155560182, "d_right": 1.3560680540385877, "d_left": 1.3449484753204812, "psi_rad": 1.612311800612828, "kappa_radpm": -0.0058101220001360865, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 151, "s_m": 15.100000000000001, "d_m": 0.0, "x_m": -6.866057909777649, "y_m": -8.441972913818066, "d_right": 1.3485281436852083, "d_left": 1.3408277231534265, "psi_rad": 1.6115057647240265, "kappa_radpm": -0.010311320336588992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 152, "s_m": 15.200000000000001, "d_m": 0.0, "x_m": -6.870074753148475, "y_m": -8.342090082923702, "d_right": 1.3321841036391542, "d_left": 1.3368100254747592, "psi_rad": 1.6102495365455103, "kappa_radpm": -0.01481433016771061, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 153, "s_m": 15.3, "d_m": 0.0, "x_m": -6.873943628393635, "y_m": -8.24220141940936, "d_right": 1.3230627090765723, "d_left": 1.3329403902888077, "psi_rad": 1.6085428986904844, "kappa_radpm": -0.0193198156143759, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 154, "s_m": 15.4, "d_m": 0.0, "x_m": -6.877619520684895, "y_m": -8.14230547874838, "d_right": 1.321268538459817, "d_left": 1.3292638536867902, "psi_rad": 1.606385573422635, "kappa_radpm": -0.023828297534156384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 155, "s_m": 15.5, "d_m": 0.0, "x_m": -6.8810573757476, "y_m": -8.04240107624185, "d_right": 1.3247074385957969, "d_left": 1.3258254853219043, "psi_rad": 1.6037772391836531, "kappa_radpm": -0.028340109363660382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 156, "s_m": 15.600000000000001, "d_m": 0.0, "x_m": -6.88421209545493, "y_m": -7.9424873481290925, "d_right": 1.3278630867504966, "d_left": 1.3287092005734102, "psi_rad": 1.600717551549903, "kappa_radpm": -0.03285535268784945, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 157, "s_m": 15.700000000000001, "d_m": 0.0, "x_m": -6.88703853645998, "y_m": -7.842563812976157, "d_right": 1.3306903376173125, "d_left": 1.3393950888689283, "psi_rad": 1.5972061686460832, "kappa_radpm": -0.03737385254711789, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 158, "s_m": 15.8, "d_m": 0.0, "x_m": -6.889491512453713, "y_m": -7.742630433322995, "d_right": 1.3331440105422605, "d_left": 1.3577428957929583, "psi_rad": 1.5932427810404794, "kappa_radpm": -0.04189511254136136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 159, "s_m": 15.9, "d_m": 0.0, "x_m": -6.891525800640324, "y_m": -7.642687677532524, "d_right": 1.3351788970684138, "d_left": 1.3659024761363614, "psi_rad": 1.588827146137811, "kappa_radpm": -0.05861004347171739, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 160, "s_m": 16.0, "d_m": 0.0, "x_m": -6.893096153023255, "y_m": -7.54273658174063, "d_right": 1.3367497732872549, "d_left": 1.3643336867363702, "psi_rad": 1.581520772346136, "kappa_radpm": -0.06073039568941341, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 161, "s_m": 16.1, "d_m": 0.0, "x_m": -6.893669791408811, "y_m": -7.442779107762015, "d_right": 1.3373239716876584, "d_left": 1.3637607330905515, "psi_rad": 1.5766810669999283, "kappa_radpm": -0.0063117099015697065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 162, "s_m": 16.2, "d_m": 0.0, "x_m": -6.894272619711892, "y_m": -7.342820686186375, "d_right": 1.3379273401819982, "d_left": 1.363158574981471, "psi_rad": 1.580258430365822, "kappa_radpm": 0.041501530735135184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 163, "s_m": 16.3, "d_m": 0.0, "x_m": -6.8955614514420684, "y_m": -7.2428654665283405, "d_right": 1.339216667307637, "d_left": 1.3618709792545598, "psi_rad": 1.5849813731469553, "kappa_radpm": 0.03540243485715022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 164, "s_m": 16.400000000000002, "d_m": 0.0, "x_m": -6.89710849701573, "y_m": -7.14291389537445, "d_right": 1.3407642331667993, "d_left": 1.3603254740046093, "psi_rad": 1.587338917337252, "kappa_radpm": 0.021317813714956113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 165, "s_m": 16.5, "d_m": 0.0, "x_m": -6.898868610840296, "y_m": -7.0429658372562, "d_right": 1.3425248964182104, "d_left": 1.3585671721692045, "psi_rad": 1.5892449358899465, "kappa_radpm": 0.016803185251362818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 166, "s_m": 16.6, "d_m": 0.0, "x_m": -6.900796663766962, "y_m": -6.943020868275656, "d_right": 1.3444535272601017, "d_left": 1.35664115965768, "psi_rad": 1.5906995543875246, "kappa_radpm": 0.012289753115499735, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 167, "s_m": 16.7, "d_m": 0.0, "x_m": -6.902847542660888, "y_m": -6.843078337324422, "d_right": 1.3465050080299272, "d_left": 1.3546375101968668, "psi_rad": 1.5917028865130465, "kappa_radpm": 0.007777326948156249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 168, "s_m": 16.8, "d_m": 0.0, "x_m": -6.90497614781105, "y_m": -6.743137427201992, "d_right": 1.34863423164737, "d_left": 1.3599210143128082, "psi_rad": 1.5922550197771559, "kappa_radpm": 0.0032655957702865113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 169, "s_m": 16.900000000000002, "d_m": 0.0, "x_m": -6.907137388760563, "y_m": -6.643197215642997, "d_right": 1.3507960984809064, "d_left": 1.3724520212330196, "psi_rad": 1.5923560056671038, "kappa_radpm": -0.001245827839763125, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 170, "s_m": 17.0, "d_m": 0.0, "x_m": -6.909286179136704, "y_m": -6.543256736278706, "d_right": 1.3529455122177492, "d_left": 1.39207869942613, "psi_rad": 1.5920058542092033, "kappa_radpm": -0.005757363638917434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 171, "s_m": 17.1, "d_m": 0.0, "x_m": -6.911377431058641, "y_m": -6.443315039568997, "d_right": 1.3550373753160523, "d_left": 1.3954589882525594, "psi_rad": 1.5912045329393203, "kappa_radpm": -0.010269419644953759, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 172, "s_m": 17.2, "d_m": 0.0, "x_m": -6.913366049700316, "y_m": -6.343371253745307, "d_right": 1.3570265846174683, "d_left": 1.3934712527711322, "psi_rad": 1.5899519702802125, "kappa_radpm": -0.014782348049930949, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 173, "s_m": 17.3, "d_m": 0.0, "x_m": -6.915206928586137, "y_m": -6.243424645803129, "d_right": 1.3588680276979315, "d_left": 1.391631169846892, "psi_rad": 1.588248063329334, "kappa_radpm": -0.019296401080077796, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 174, "s_m": 17.400000000000002, "d_m": 0.0, "x_m": -6.916854946198087, "y_m": -6.143474682575543, "d_right": 1.3605165805352966, "d_left": 1.3899838395225064, "psi_rad": 1.586092690064197, "kappa_radpm": -0.02381168677250023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 175, "s_m": 17.5, "d_m": 0.0, "x_m": -6.918264964474219, "y_m": -6.043521091905348, "d_right": 1.361927107074127, "d_left": 1.3885743836857187, "psi_rad": 1.583485725974834, "kappa_radpm": -0.014942953157904837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 176, "s_m": 17.6, "d_m": 0.0, "x_m": -6.919391829780292, "y_m": -5.9435639239136515, "d_right": 1.3630544612708373, "d_left": 1.3874479464869864, "psi_rad": 1.583104099432616, "kappa_radpm": 0.03590414994821156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 177, "s_m": 17.7, "d_m": 0.0, "x_m": -6.9207255213607155, "y_m": -5.843612244471613, "d_right": 1.3643887059058897, "d_left": 1.3861148428217285, "psi_rad": 1.5906665559644764, "kappa_radpm": 0.07212979058098368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 178, "s_m": 17.8, "d_m": 0.0, "x_m": -6.923364022442225, "y_m": -5.743683497810485, "d_right": 1.3670279618041312, "d_left": 1.383477693590952, "psi_rad": 1.5975300575488127, "kappa_radpm": 0.03711422888008298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 179, "s_m": 17.900000000000002, "d_m": 0.0, "x_m": -6.926069683021702, "y_m": -5.643756545105633, "d_right": 1.3697343984954982, "d_left": 1.3807734433695948, "psi_rad": 1.598089401740493, "kappa_radpm": 0.004466158332790959, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 180, "s_m": 18.0, "d_m": 0.0, "x_m": -6.928819971644149, "y_m": -5.543830809477894, "d_right": 1.372485477944721, "d_left": 1.3780246072056361, "psi_rad": 1.598423289215371, "kappa_radpm": 0.002211693689797567, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 181, "s_m": 18.1, "d_m": 0.0, "x_m": -6.931592360383841, "y_m": -5.443905683936532, "d_right": 1.3752586651121885, "d_left": 1.3767770251570124, "psi_rad": 1.5985317404784525, "kappa_radpm": -4.263433219131585e-05, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 182, "s_m": 18.2, "d_m": 0.0, "x_m": -6.934364323103221, "y_m": -5.343980546582329, "d_right": 1.3780314264738778, "d_left": 1.3827742920773336, "psi_rad": 1.5984147623489326, "kappa_radpm": -0.0022969639318970447, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 183, "s_m": 18.3, "d_m": 0.0, "x_m": -6.937113333640847, "y_m": -5.244054775804176, "d_right": 1.3807812284720469, "d_left": 1.3959452523506275, "psi_rad": 1.598072347692073, "kappa_radpm": -0.00455143324315066, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 184, "s_m": 18.400000000000002, "d_m": 0.0, "x_m": -6.939816864000299, "y_m": -5.144127765475737, "d_right": 1.3834855359687155, "d_left": 1.416111655330859, "psi_rad": 1.5975044757003025, "kappa_radpm": -0.006806174841191837, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 185, "s_m": 18.5, "d_m": 0.0, "x_m": -6.94245238261201, "y_m": -5.0441989401587835, "d_right": 1.3861218107739002, "d_left": 1.4141128844107582, "psi_rad": 1.5967111127238347, "kappa_radpm": -0.009061310245381815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 186, "s_m": 18.6, "d_m": 0.0, "x_m": -6.944997352739983, "y_m": -4.944267770319497, "d_right": 1.3886675103204569, "d_left": 1.4115681695368423, "psi_rad": 1.5956922136512262, "kappa_radpm": -0.011316944414874186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 187, "s_m": 18.7, "d_m": 0.0, "x_m": -6.947429231105538, "y_m": -4.844333787563196, "d_right": 1.3911000865574161, "d_left": 1.4091365291114053, "psi_rad": 1.5944477238408599, "kappa_radpm": -0.01357316023335331, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 188, "s_m": 18.8, "d_m": 0.0, "x_m": -6.949725466800359, "y_m": -4.744396599891957, "d_right": 1.3933969851338293, "d_left": 1.4068405109014666, "psi_rad": 1.5929775816045555, "kappa_radpm": -0.015830012981878916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 189, "s_m": 18.900000000000002, "d_m": 0.0, "x_m": -6.951863500561362, "y_m": -4.644455906987795, "d_right": 1.3955356449453717, "d_left": 1.4047026715530273, "psi_rad": 1.591281721244484, "kappa_radpm": -0.01808752479862008, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 190, "s_m": 19.0, "d_m": 0.0, "x_m": -6.953820764480064, "y_m": -4.544511515522631, "d_right": 1.3974934981162412, "d_left": 1.4027455770026067, "psi_rad": 1.5893600766448315, "kappa_radpm": -0.0203456791250356, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 191, "s_m": 19.1, "d_m": 0.0, "x_m": -6.955574682219432, "y_m": -4.444563354493712, "d_right": 1.3992479704893757, "d_left": 1.4009918023804924, "psi_rad": 1.587212585419477, "kappa_radpm": -0.022604415141500578, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 192, "s_m": 19.200000000000003, "d_m": 0.0, "x_m": -6.957102669811308, "y_m": -4.344611490580461, "d_right": 1.4007764826984928, "d_left": 1.399463931330516, "psi_rad": 1.5848391936165314, "kappa_radpm": -0.02486362219709326, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 193, "s_m": 19.3, "d_m": 0.0, "x_m": -6.958382137107644, "y_m": -4.244656143516042, "d_right": 1.402056451896085, "d_left": 1.3981845546711962, "psi_rad": 1.5822398609800583, "kappa_radpm": -0.027123134238919988, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 194, "s_m": 19.400000000000002, "d_m": 0.0, "x_m": -6.95939048995879, "y_m": -4.144697701463198, "d_right": 1.403065294212136, "d_left": 1.3971762683234563, "psi_rad": 1.5794145667687474, "kappa_radpm": -0.029382724249775727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 195, "s_m": 19.5, "d_m": 0.0, "x_m": -6.960105133191953, "y_m": -4.0447367363802345, "d_right": 1.403780428019119, "d_left": 1.3964616704307682, "psi_rad": 1.5763633161301032, "kappa_radpm": -0.03164209870746393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 196, "s_m": 19.6, "d_m": 0.0, "x_m": -6.960503474462581, "y_m": -3.94477401935899, "d_right": 1.4041792780795133, "d_left": 1.3960633575987997, "psi_rad": 1.5730861470272546, "kappa_radpm": -0.02260919141216733, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 197, "s_m": 19.700000000000003, "d_m": 0.0, "x_m": -6.960562929050881, "y_m": -3.8448105359118583, "d_right": 1.4046786329872984, "d_left": 1.3960039201832397, "psi_rad": 1.5718414778476697, "kappa_radpm": 0.012995755353978344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 198, "s_m": 19.8, "d_m": 0.0, "x_m": -6.960712426138588, "y_m": -3.744849233969798, "d_right": 1.4066428354608118, "d_left": 1.395854455559909, "psi_rad": 1.5756852980980502, "kappa_radpm": 0.015295116921688612, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 199, "s_m": 19.900000000000002, "d_m": 0.0, "x_m": -6.961540344943577, "y_m": -3.644889520903695, "d_right": 1.4163532708919626, "d_left": 1.3950265922366671, "psi_rad": 1.5749005012320074, "kappa_radpm": -0.03446489092052918, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 200, "s_m": 20.0, "d_m": 0.0, "x_m": -6.9615329490137565, "y_m": -3.5449263796404544, "d_right": 1.4321688438042137, "d_left": 1.3979905916641135, "psi_rad": 1.5687923199139444, "kappa_radpm": 0.004384284012973749, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 201, "s_m": 20.1, "d_m": 0.0, "x_m": -6.961139694422489, "y_m": -3.4449650652777297, "d_right": 1.454323914969873, "d_left": 1.4084450510856301, "psi_rad": 1.5757773580346022, "kappa_radpm": 0.07027168034525855, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 202, "s_m": 20.200000000000003, "d_m": 0.0, "x_m": -6.962528734149241, "y_m": -3.3450125762162264, "d_right": 1.455994630028065, "d_left": 1.424101356807563, "psi_rad": 1.5828466559829961, "kappa_radpm": 0.05018015341669568, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 203, "s_m": 20.3, "d_m": 0.0, "x_m": -6.963548798292498, "y_m": -3.2450545713591104, "d_right": 1.4570147956806518, "d_left": 1.4430410857111782, "psi_rad": 1.5858133887179413, "kappa_radpm": 0.06020398377735048, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 204, "s_m": 20.400000000000002, "d_m": 0.0, "x_m": -6.965530839264143, "y_m": -3.1451146563367813, "d_right": 1.4621321733960895, "d_left": 1.4410588958111963, "psi_rad": 1.5948874527384662, "kappa_radpm": 0.09792412465915334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 205, "s_m": 20.5, "d_m": 0.0, "x_m": -6.968364638321775, "y_m": -3.0451922515853656, "d_right": 1.4748679136115557, "d_left": 1.4382248318761572, "psi_rad": 1.605398213649772, "kappa_radpm": 0.10653995855752663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 206, "s_m": 20.6, "d_m": 0.0, "x_m": -6.972447110303119, "y_m": -2.9453131083580657, "d_right": 1.4954126547937052, "d_left": 1.4341417801421081, "psi_rad": 1.6161954444499715, "kappa_radpm": 0.08190212215307024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 207, "s_m": 20.700000000000003, "d_m": 0.0, "x_m": -6.977437885310097, "y_m": -2.8454744368420477, "d_right": 1.5231240531321748, "d_left": 1.4291501256162904, "psi_rad": 1.621778638080386, "kappa_radpm": 0.022248917696533477, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 208, "s_m": 20.8, "d_m": 0.0, "x_m": -6.982635425137211, "y_m": -2.7456460884667973, "d_right": 1.5480951434501986, "d_left": 1.423951634346144, "psi_rad": 1.6206452279892782, "kappa_radpm": -0.04120037908875496, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 209, "s_m": 20.900000000000002, "d_m": 0.0, "x_m": -6.987399865470615, "y_m": -2.645796469954656, "d_right": 1.5699881522820995, "d_left": 1.4191864065673814, "psi_rad": 1.613538562262635, "kappa_radpm": -0.09778149474861442, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 210, "s_m": 21.0, "d_m": 0.0, "x_m": -6.9911779949025386, "y_m": -2.5459053191389076, "d_right": 1.5969051494418827, "d_left": 1.4154077958809386, "psi_rad": 1.6010889290395554, "kappa_radpm": -0.1496693918710934, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 211, "s_m": 21.1, "d_m": 0.0, "x_m": -6.993454997712029, "y_m": -2.44596946493792, "d_right": 1.6281107999495972, "d_left": 1.4131306237212726, "psi_rad": 1.5836046838884164, "kappa_radpm": -0.19759773794324698, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 212, "s_m": 21.200000000000003, "d_m": 0.0, "x_m": -6.993738481082044, "y_m": -2.346008787527806, "d_right": 1.662901151216085, "d_left": 1.4128471061960095, "psi_rad": 1.561569381450906, "kappa_radpm": -0.24360696346831467, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 213, "s_m": 21.3, "d_m": 0.0, "x_m": -6.991610488988302, "y_m": -2.2460705482706285, "d_right": 1.700660834022173, "d_left": 1.4149748066173373, "psi_rad": 1.5348832911947534, "kappa_radpm": -0.29017503070470685, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 214, "s_m": 21.400000000000002, "d_m": 0.0, "x_m": -6.98656101032693, "y_m": -2.1462377388030847, "d_right": 1.7326840972880775, "d_left": 1.4200230672910505, "psi_rad": 1.5035343753099646, "kappa_radpm": -0.3343617925107645, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 215, "s_m": 21.5, "d_m": 0.0, "x_m": -6.978175584147581, "y_m": -2.0466318190519575, "d_right": 1.7630261609683615, "d_left": 1.4284054573626048, "psi_rad": 1.4680109326926005, "kappa_radpm": -0.37331998128321664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 216, "s_m": 21.6, "d_m": 0.0, "x_m": -6.966052444123763, "y_m": -1.9474128742330543, "d_right": 1.7916254727346197, "d_left": 1.4405228261747711, "psi_rad": 1.4288703790533213, "kappa_radpm": -0.41712472324150207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 217, "s_m": 21.700000000000003, "d_m": 0.0, "x_m": -6.949903978097487, "y_m": -1.8487714112123743, "d_right": 1.8214355387636771, "d_left": 1.4566623302549528, "psi_rad": 1.3845859880443, "kappa_radpm": -0.46535087001916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 218, "s_m": 21.8, "d_m": 0.0, "x_m": -6.92905337568326, "y_m": -1.7510197090677282, "d_right": 1.851670132870899, "d_left": 1.4775010874473131, "psi_rad": 1.3358002050494893, "kappa_radpm": -0.5134520632975892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 219, "s_m": 21.900000000000002, "d_m": 0.0, "x_m": -6.903373689051094, "y_m": -1.6544252155140378, "d_right": 1.882071496332098, "d_left": 1.5031696198880093, "psi_rad": 1.2818955753847823, "kappa_radpm": -0.5599979780173181, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 220, "s_m": 22.0, "d_m": 0.0, "x_m": -6.872127605555509, "y_m": -1.5594897708145803, "d_right": 1.9117599503481115, "d_left": 1.5344134667953748, "psi_rad": 1.2238006094460256, "kappa_radpm": -0.5876783692392729, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 221, "s_m": 22.1, "d_m": 0.0, "x_m": -6.835424326858935, "y_m": -1.466526510369531, "d_right": 1.9406771411403834, "d_left": 1.5711405891773524, "psi_rad": 1.1643599015369277, "kappa_radpm": -0.6289629106151284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 222, "s_m": 22.200000000000003, "d_m": 0.0, "x_m": -6.7931389960871424, "y_m": -1.3759664717896583, "d_right": 1.9684992315057812, "d_left": 1.6135043152666528, "psi_rad": 1.098008027323, "kappa_radpm": -0.6790915243183859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 223, "s_m": 22.3, "d_m": 0.0, "x_m": -6.744459099517511, "y_m": -1.288678953325753, "d_right": 1.9941102361651186, "d_left": 1.6623688303580233, "psi_rad": 1.0285415966732505, "kappa_radpm": -0.6856545564930211, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 224, "s_m": 22.400000000000002, "d_m": 0.0, "x_m": -6.690039432316833, "y_m": -1.2048464852153795, "d_right": 2.0148939851607186, "d_left": 1.7171459126998354, "psi_rad": 0.9608771160243957, "kappa_radpm": -0.7055026927418495, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 225, "s_m": 22.5, "d_m": 0.0, "x_m": -6.630029459574897, "y_m": -1.1249269975593856, "d_right": 2.0289663480969535, "d_left": 1.776814085624793, "psi_rad": 0.8874410581248806, "kappa_radpm": -0.7277372092678924, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 226, "s_m": 22.6, "d_m": 0.0, "x_m": -6.563930157285784, "y_m": -1.0499640656694216, "d_right": 2.0381776719139504, "d_left": 1.8306617944906265, "psi_rad": 0.8153296741708173, "kappa_radpm": -0.706498588286979, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 227, "s_m": 22.700000000000003, "d_m": 0.0, "x_m": -6.493056989141659, "y_m": -0.9794993394992022, "d_right": 2.045718619621803, "d_left": 1.887611702305605, "psi_rad": 0.7461413404674848, "kappa_radpm": -0.6902387369058394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 228, "s_m": 22.8, "d_m": 0.0, "x_m": -6.417260565718212, "y_m": -0.9143805306011735, "d_right": 2.0508673163100593, "d_left": 1.949318100045157, "psi_rad": 0.6772819267896494, "kappa_radpm": -0.6482254637931428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 229, "s_m": 22.900000000000002, "d_m": 0.0, "x_m": -6.337383294707172, "y_m": -0.8543103354359359, "d_right": 2.054391426165887, "d_left": 1.8969321253127445, "psi_rad": 0.6164962477088562, "kappa_radpm": -0.5848549662754937, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 230, "s_m": 23.0, "d_m": 0.0, "x_m": -6.254234067220052, "y_m": -0.7988546249029734, "d_right": 2.0543990985745575, "d_left": 1.8535530987293296, "psi_rad": 0.5603109335345506, "kappa_radpm": -0.5745837961659805, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 231, "s_m": 23.1, "d_m": 0.0, "x_m": -6.16812875570463, "y_m": -0.7481229538589216, "d_right": 2.0472394197202592, "d_left": 1.81989160513486, "psi_rad": 0.5015794884756601, "kappa_radpm": -0.5567323880287667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 232, "s_m": 23.200000000000003, "d_m": 0.0, "x_m": -6.079048190618537, "y_m": -0.7027905483328307, "d_right": 2.038782168133003, "d_left": 1.7928722101018935, "psi_rad": 0.4489644559287973, "kappa_radpm": -0.47260796927971804, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 233, "s_m": 23.3, "d_m": 0.0, "x_m": -5.988076642960412, "y_m": -0.6613777128245287, "d_right": 2.0308548285455896, "d_left": 1.7642730058582192, "psi_rad": 0.40705789461971653, "kappa_radpm": -0.423833120393563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 234, "s_m": 23.400000000000002, "d_m": 0.0, "x_m": -5.8955091151929455, "y_m": -0.6236599188143964, "d_right": 2.0175454758913625, "d_left": 1.744904791142782, "psi_rad": 0.3641978318500847, "kappa_radpm": -0.4275895987399436, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 235, "s_m": 23.5, "d_m": 0.0, "x_m": -5.801331141907567, "y_m": -0.5901897598518863, "d_right": 1.9971464979621585, "d_left": 1.7220599791352662, "psi_rad": 0.3215399748717278, "kappa_radpm": -0.382447543432507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 236, "s_m": 23.6, "d_m": 0.0, "x_m": -5.705883353079074, "y_m": -0.5604956964439718, "d_right": 1.9776447953294742, "d_left": 1.7004837402840758, "psi_rad": 0.2877083231635833, "kappa_radpm": -0.3014684481458241, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 237, "s_m": 23.700000000000003, "d_m": 0.0, "x_m": -5.609647316191437, "y_m": -0.5334669242998386, "d_right": 1.960291636801094, "d_left": 1.6873327377219343, "psi_rad": 0.261246285242563, "kappa_radpm": -0.2534799537842891, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 238, "s_m": 23.8, "d_m": 0.0, "x_m": -5.512762595789084, "y_m": -0.5088636131321292, "d_right": 1.944228381016504, "d_left": 1.682545948421202, "psi_rad": 0.23701233240672548, "kappa_radpm": -0.26240267199643785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 239, "s_m": 23.900000000000002, "d_m": 0.0, "x_m": -5.415330243418716, "y_m": -0.4865291653256133, "d_right": 1.9273773966515497, "d_left": 1.6657386223922641, "psi_rad": 0.20876575084327542, "kappa_radpm": -0.27309883803860235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 240, "s_m": 24.0, "d_m": 0.0, "x_m": -5.317215814790724, "y_m": -0.4674365460716996, "d_right": 1.907617517561678, "d_left": 1.649721697091497, "psi_rad": 0.182392564799005, "kappa_radpm": -0.20869453054168097, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 241, "s_m": 24.1, "d_m": 0.0, "x_m": -5.21873813208228, "y_m": -0.4502692444969597, "d_right": 1.8854699801392851, "d_left": 1.6416076082254525, "psi_rad": 0.16702684473493923, "kappa_radpm": -0.13146319517368776, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 242, "s_m": 24.200000000000003, "d_m": 0.0, "x_m": -5.12007505530256, "y_m": -0.43419908479183184, "d_right": 1.8632047878544329, "d_left": 1.6406718196225905, "psi_rad": 0.15609992576426746, "kappa_radpm": -0.09257825967145639, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 243, "s_m": 24.3, "d_m": 0.0, "x_m": -5.021245226979732, "y_m": -0.4191877494084041, "d_right": 1.8450313986503215, "d_left": 1.6468860904366984, "psi_rad": 0.14851119280064795, "kappa_radpm": -0.05174933873843046, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 244, "s_m": 24.400000000000002, "d_m": 0.0, "x_m": -4.922349343130322, "y_m": -0.4046167981989716, "d_right": 1.8298676535860843, "d_left": 1.6339072333033176, "psi_rad": 0.14575005801658136, "kappa_radpm": -0.015257878470734676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 245, "s_m": 24.5, "d_m": 0.0, "x_m": -4.823437933559386, "y_m": -0.39015142617078813, "d_right": 1.8117537985775942, "d_left": 1.6194322195883737, "psi_rad": 0.14545961710650102, "kappa_radpm": 0.014958975613343917, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 246, "s_m": 24.6, "d_m": 0.0, "x_m": -4.72453372590836, "y_m": -0.37563794233950926, "d_right": 1.7990685563942523, "d_left": 1.608911990710174, "psi_rad": 0.14874185313925015, "kappa_radpm": 0.0021359579388602334, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 247, "s_m": 24.700000000000003, "d_m": 0.0, "x_m": -4.625719670603837, "y_m": -0.3605236258660937, "d_right": 1.786875936529193, "d_left": 1.6039548366394403, "psi_rad": 0.14588680869427306, "kappa_radpm": -0.06366112752873243, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 248, "s_m": 24.8, "d_m": 0.0, "x_m": -4.526738207448544, "y_m": -0.3465757155000552, "d_right": 1.7743060737630858, "d_left": 1.606396240418635, "psi_rad": 0.13600962763350366, "kappa_radpm": -0.0720910740572045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 249, "s_m": 24.900000000000002, "d_m": 0.0, "x_m": -4.427645650446014, "y_m": -0.3334162962554026, "d_right": 1.7595573462449863, "d_left": 1.6129422662904591, "psi_rad": 0.13146859388283216, "kappa_radpm": -0.02499504510922068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 250, "s_m": 25.0, "d_m": 0.0, "x_m": -4.328538415890607, "y_m": -0.32036749913017804, "d_right": 1.746768821728009, "d_left": 1.5998790904772089, "psi_rad": 0.13101061861165952, "kappa_radpm": 0.0025430594323516686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 251, "s_m": 25.1, "d_m": 0.0, "x_m": -4.229433776071717, "y_m": -0.30729883994068347, "d_right": 1.7313250678204408, "d_left": 1.5867962348393334, "psi_rad": 0.1319772057693025, "kappa_radpm": 0.017858089276131528, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 252, "s_m": 25.200000000000003, "d_m": 0.0, "x_m": -4.130351949889623, "y_m": -0.29405847541693736, "d_right": 1.7194292107234845, "d_left": 1.5735415124583858, "psi_rad": 0.13458223646688583, "kappa_radpm": -0.0023966875625003325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 253, "s_m": 25.3, "d_m": 0.0, "x_m": -4.031316840864777, "y_m": -0.28047366793175094, "d_right": 1.7136402199614256, "d_left": 1.5599418073618228, "psi_rad": 0.13149786825680243, "kappa_radpm": -0.042711904474618256, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 254, "s_m": 25.400000000000002, "d_m": 0.0, "x_m": -3.932155630196503, "y_m": -0.26784481459029774, "d_right": 1.7127086547043653, "d_left": 1.5523121378043012, "psi_rad": 0.12603985557196218, "kappa_radpm": -0.043224151576353176, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 255, "s_m": 25.5, "d_m": 0.0, "x_m": -3.832978148262672, "y_m": -0.25534186495289585, "d_right": 1.7044851550843683, "d_left": 1.551227303966419, "psi_rad": 0.1228530379415318, "kappa_radpm": -0.026296555367674168, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 256, "s_m": 25.6, "d_m": 0.0, "x_m": -3.7337382257742058, "y_m": -0.2433452532559748, "d_right": 1.6980091817302378, "d_left": 1.5570827315523321, "psi_rad": 0.12078054449842734, "kappa_radpm": -0.04214179773751714, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 257, "s_m": 25.700000000000003, "d_m": 0.0, "x_m": -3.634509677692768, "y_m": -0.23125348767072892, "d_right": 1.6975013812872481, "d_left": 1.5611438709273049, "psi_rad": 0.11442467839402837, "kappa_radpm": -0.06929589120247659, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 258, "s_m": 25.8, "d_m": 0.0, "x_m": -3.5351254502286666, "y_m": -0.22051934329252235, "d_right": 1.685768261917393, "d_left": 1.5503972362887393, "psi_rad": 0.10692136625793203, "kappa_radpm": -0.0904625374841328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 259, "s_m": 25.900000000000002, "d_m": 0.0, "x_m": -3.4357268250114195, "y_m": -0.20991798769208977, "d_right": 1.6696784189360065, "d_left": 1.5397838002260742, "psi_rad": 0.09633217089720181, "kappa_radpm": -0.10765861701033441, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 260, "s_m": 26.0, "d_m": 0.0, "x_m": -3.3361431500655265, "y_m": -0.201291431902826, "d_right": 1.6555738626694552, "d_left": 1.5311497573427237, "psi_rad": 0.08538964285586514, "kappa_radpm": -0.06658836249447186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 261, "s_m": 26.1, "d_m": 0.0, "x_m": -3.236536968568624, "y_m": -0.19286777691387272, "d_right": 1.6472200594312691, "d_left": 1.5227191950199819, "psi_rad": 0.08301449839830743, "kappa_radpm": -0.0427516946366413, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 262, "s_m": 26.200000000000003, "d_m": 0.0, "x_m": -3.1369069758435004, "y_m": -0.18471384235816177, "d_right": 1.6446388893787116, "d_left": 1.5145589390265273, "psi_rad": 0.07683930392853688, "kappa_radpm": -0.048555716142658634, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 263, "s_m": 26.3, "d_m": 0.0, "x_m": -3.0372032091962833, "y_m": -0.17752089360695655, "d_right": 1.6438761464532978, "d_left": 1.5073614089965441, "psi_rad": 0.07330335516977571, "kappa_radpm": -0.01927294181031325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 264, "s_m": 26.400000000000002, "d_m": 0.0, "x_m": -2.937519330856577, "y_m": -0.17007182388277303, "d_right": 1.6295293658096404, "d_left": 1.4999072916185987, "psi_rad": 0.07298471556647423, "kappa_radpm": -0.034886592141541994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 265, "s_m": 26.5, "d_m": 0.0, "x_m": -2.8378108475862973, "y_m": -0.16294240419796108, "d_right": 1.620910159453356, "d_left": 1.4927734047421595, "psi_rad": 0.06632603674146731, "kappa_radpm": -0.05315979360767442, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 266, "s_m": 26.6, "d_m": 0.0, "x_m": -2.7380355746362226, "y_m": -0.1568214210980421, "d_right": 1.6174203095313202, "d_left": 1.4866494644591506, "psi_rad": 0.06235275684493935, "kappa_radpm": -0.02216016190979775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 267, "s_m": 26.700000000000003, "d_m": 0.0, "x_m": -2.638274825265672, "y_m": -0.15048463421564223, "d_right": 1.6168348127879535, "d_left": 1.4865583302741783, "psi_rad": 0.06189400435950776, "kappa_radpm": -0.025984790522831647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 268, "s_m": 26.8, "d_m": 0.0, "x_m": -2.538493770251464, "y_m": -0.14445518461420745, "d_right": 1.6019475565136356, "d_left": 1.4934808363215961, "psi_rad": 0.05715579874037302, "kappa_radpm": -0.02250832295115912, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 269, "s_m": 26.900000000000002, "d_m": 0.0, "x_m": -2.438677012169393, "y_m": -0.1390640228434551, "d_right": 1.5925669570265724, "d_left": 1.5076464996914607, "psi_rad": 0.057392339769275935, "kappa_radpm": -0.0011061716582216885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 270, "s_m": 27.0, "d_m": 0.0, "x_m": -2.3388986185784018, "y_m": -0.13298735786969668, "d_right": 1.5901166456969997, "d_left": 1.5126480948909375, "psi_rad": 0.05693456440872868, "kappa_radpm": -0.044042197751903434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 271, "s_m": 27.1, "d_m": 0.0, "x_m": -2.239076053297519, "y_m": -0.12768753407192104, "d_right": 1.5931676468848825, "d_left": 1.5073533970746003, "psi_rad": 0.04858390021889525, "kappa_radpm": -0.0551026324299797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 272, "s_m": 27.200000000000003, "d_m": 0.0, "x_m": -2.1392103168374805, "y_m": -0.12327808089654874, "d_right": 1.5830668607927532, "d_left": 1.5029477738001946, "psi_rad": 0.04591403792273274, "kappa_radpm": -0.006343840557120339, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 273, "s_m": 27.3, "d_m": 0.0, "x_m": -2.0393625592424782, "y_m": -0.1185114321824399, "d_right": 1.573839156575767, "d_left": 1.4981855439836016, "psi_rad": 0.04731513210747118, "kappa_radpm": -0.013334961140272217, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 274, "s_m": 27.400000000000002, "d_m": 0.0, "x_m": -1.9395093160638734, "y_m": -0.11382214420593435, "d_right": 1.5657503886563584, "d_left": 1.4935005503021686, "psi_rad": 0.0432470456946783, "kappa_radpm": -0.05113243546287394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 275, "s_m": 27.5, "d_m": 0.0, "x_m": -1.8396243412803495, "y_m": -0.10986795501940684, "d_right": 1.5623065816631145, "d_left": 1.489549655399059, "psi_rad": 0.03708864501489639, "kappa_radpm": -0.020308612518085134, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 276, "s_m": 27.6, "d_m": 0.0, "x_m": -1.7397220771247643, "y_m": -0.10640890677427822, "d_right": 1.5531991262321987, "d_left": 1.4860933261408675, "psi_rad": 0.03918532319106127, "kappa_radpm": 0.020262399089455707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 277, "s_m": 27.700000000000003, "d_m": 0.0, "x_m": -1.6398543399315926, "y_m": -0.10203589385956634, "d_right": 1.538422387853597, "d_left": 1.48172422275846, "psi_rad": 0.041141124832787535, "kappa_radpm": -0.0181079446356458, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 278, "s_m": 27.8, "d_m": 0.0, "x_m": -1.5399651091624147, "y_m": -0.0981860405759378, "d_right": 1.5295244634864282, "d_left": 1.4778775867843386, "psi_rad": 0.03556373426393211, "kappa_radpm": -0.059170440639163546, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 279, "s_m": 27.900000000000002, "d_m": 0.0, "x_m": -1.440054895325883, "y_m": -0.0949272823114693, "d_right": 1.5265405226039588, "d_left": 1.4746213320995083, "psi_rad": 0.029307036704954825, "kappa_radpm": -0.0323489332221194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 280, "s_m": 28.0, "d_m": 0.0, "x_m": -1.3401254115664887, "y_m": -0.09232765386653642, "d_right": 1.5291409570765178, "d_left": 1.4720235049166883, "psi_rad": 0.02909394761950823, "kappa_radpm": 0.02089467735615136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 281, "s_m": 28.1, "d_m": 0.0, "x_m": -1.2402162895917561, "y_m": -0.08911154736656685, "d_right": 1.5323582025311717, "d_left": 1.4688099390127696, "psi_rad": 0.0334859721761851, "kappa_radpm": 0.019291351309872473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 282, "s_m": 28.200000000000003, "d_m": 0.0, "x_m": -1.1403132811656889, "y_m": -0.08563424844554551, "d_right": 1.535836706785324, "d_left": 1.465335440700701, "psi_rad": 0.032952217881482726, "kappa_radpm": -0.02220388592547584, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 283, "s_m": 28.3, "d_m": 0.0, "x_m": -1.0403981692533977, "y_m": -0.08252471285408923, "d_right": 1.5233398100619553, "d_left": 1.462228281534235, "psi_rad": 0.02904519499108993, "kappa_radpm": -0.041331562725193116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 284, "s_m": 28.400000000000002, "d_m": 0.0, "x_m": -0.9404710806946459, "y_m": -0.07982815995630375, "d_right": 1.507856534922792, "d_left": 1.4595336629854623, "psi_rad": 0.024685905336444103, "kappa_radpm": -0.04585556706494298, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 285, "s_m": 28.5, "d_m": 0.0, "x_m": -0.8405327019504957, "y_m": -0.07758985038243266, "d_right": 1.498436630531877, "d_left": 1.4572968430837885, "psi_rad": 0.019874081578101332, "kappa_radpm": -0.05038157966968049, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 286, "s_m": 28.6, "d_m": 0.0, "x_m": -0.7405843413162138, "y_m": -0.0758550714820803, "d_right": 1.4951496481843884, "d_left": 1.455563123811635, "psi_rad": 0.014609589402508005, "kappa_radpm": -0.054908032621148184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 287, "s_m": 28.700000000000003, "d_m": 0.0, "x_m": -0.6406279910181392, "y_m": -0.07466911683257085, "d_right": 1.4963360898966533, "d_left": 1.4543778324339853, "psi_rad": 0.008892475053871696, "kappa_radpm": -0.026086758865138115, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 288, "s_m": 28.8, "d_m": 0.0, "x_m": -0.5406663889418003, "y_m": -0.07407725921669504, "d_right": 1.4969284307608985, "d_left": 1.4537862961476051, "psi_rad": 0.009392237629480382, "kappa_radpm": 0.02939770065136904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 289, "s_m": 28.900000000000002, "d_m": 0.0, "x_m": -0.44071402343450283, "y_m": -0.07279142213018164, "d_right": 1.4982148084907134, "d_left": 1.4525012633774481, "psi_rad": 0.014772015184145504, "kappa_radpm": 0.03056524247478931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 290, "s_m": 29.0, "d_m": 0.0, "x_m": -0.34076438116458013, "y_m": -0.0711240889131852, "d_right": 1.4998826741951183, "d_left": 1.4508349400869542, "psi_rad": 0.015505286124438244, "kappa_radpm": -0.008647493967263165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 291, "s_m": 29.1, "d_m": 0.0, "x_m": -0.24081110312337267, "y_m": -0.06969162173796704, "d_right": 1.482738129666064, "d_left": 1.4494033077023878, "psi_rad": 0.013042516390692871, "kappa_radpm": -0.025757462683391186, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 292, "s_m": 29.200000000000003, "d_m": 0.0, "x_m": -0.14085447376129645, "y_m": -0.0685166128173573, "d_right": 1.466632005610564, "d_left": 1.4482289570485518, "psi_rad": 0.010353793587760007, "kappa_radpm": -0.00033827515351525506, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 293, "s_m": 29.3, "d_m": 0.0, "x_m": -0.04089495204085702, "y_m": -0.06762165720681929, "d_right": 1.4569410833518375, "d_left": 1.4473344865722164, "psi_rad": 0.01297486135998982, "kappa_radpm": 0.03094193812037571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 294, "s_m": 29.400000000000002, "d_m": 0.0, "x_m": 0.059051585250455646, "y_m": -0.06592271385663118, "d_right": 1.454877825755945, "d_left": 1.4456366539754797, "psi_rad": 0.01654218121183515, "kappa_radpm": -0.003630223697638213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 295, "s_m": 29.5, "d_m": 0.0, "x_m": 0.15900188558778608, "y_m": -0.064314625840092, "d_right": 1.4564860538074125, "d_left": 1.4440295478867573, "psi_rad": 0.012248816620462177, "kappa_radpm": -0.05985715224923749, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 296, "s_m": 29.6, "d_m": 0.0, "x_m": 0.25896158613138565, "y_m": -0.06347393044749705, "d_right": 1.4573268631269192, "d_left": 1.443189316984956, "psi_rad": 0.004570750761987652, "kappa_radpm": -0.0767844870117329, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 297, "s_m": 29.700000000000003, "d_m": 0.0, "x_m": 0.35892479530165405, "y_m": -0.06340082168450986, "d_right": 1.4574000790869046, "d_left": 1.4283381766234997, "psi_rad": -0.0031080807818844036, "kappa_radpm": -0.07678534997214825, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 298, "s_m": 29.8, "d_m": 0.0, "x_m": 0.458885618961065, "y_m": -0.0640953124926577, "d_right": 1.4567057086819557, "d_left": 1.4101794881351655, "psi_rad": -0.010786319232441999, "kappa_radpm": -0.06922992525594251, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 299, "s_m": 29.900000000000002, "d_m": 0.0, "x_m": 0.5588381649337282, "y_m": -0.06555723473790731, "d_right": 1.4552439406072633, "d_left": 1.3997106335480685, "psi_rad": -0.016954065833072907, "kappa_radpm": -0.015260075533696238, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 300, "s_m": 30.0, "d_m": 0.0, "x_m": 0.6587816858886689, "y_m": -0.06748468832513374, "d_right": 1.4533166768103167, "d_left": 1.3968032549583393, "psi_rad": -0.013838334339181246, "kappa_radpm": 0.035689905831528534, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 301, "s_m": 30.1, "d_m": 0.0, "x_m": 0.7587416919745783, "y_m": -0.06832374317792655, "d_right": 1.4524777497132504, "d_left": 1.3976423194949728, "psi_rad": -0.0098160846667672, "kappa_radpm": 0.006452399181262614, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 302, "s_m": 30.200000000000003, "d_m": 0.0, "x_m": 0.8586989141251837, "y_m": -0.06944715579577705, "d_right": 1.4513544774211995, "d_left": 1.3987657543088539, "psi_rad": -0.012547854502928724, "kappa_radpm": -0.026187924258751494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 303, "s_m": 30.3, "d_m": 0.0, "x_m": 0.9586528583802032, "y_m": -0.07083233106680477, "d_right": 1.449969456989902, "d_left": 1.400150972318003, "psi_rad": -0.015053669518517498, "kappa_radpm": -0.023928526969383412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 304, "s_m": 30.400000000000002, "d_m": 0.0, "x_m": 1.0586032082162267, "y_m": -0.07245667630991391, "d_right": 1.448345282497122, "d_left": 1.4017753866236735, "psi_rad": -0.017333559896805406, "kappa_radpm": -0.021669515756825852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 305, "s_m": 30.5, "d_m": 0.0, "x_m": 1.1585498091744229, "y_m": -0.07429760389326559, "d_right": 1.4465045424594172, "d_left": 1.4036164133265332, "psi_rad": -0.01938757266988267, "kappa_radpm": -0.019411031257920985, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 306, "s_m": 30.6, "d_m": 0.0, "x_m": 1.2584926534851686, "y_m": -0.07633253308457469, "d_right": 1.4444698180129283, "d_left": 1.4056514735755323, "psi_rad": -0.021215766148389603, "kappa_radpm": -0.017153161192758892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 307, "s_m": 30.700000000000003, "d_m": 0.0, "x_m": 1.3584318647020408, "y_m": -0.07853889120651476, "d_right": 1.4422636817853907, "d_left": 1.4078579949210122, "psi_rad": -0.022818204908434447, "kappa_radpm": -0.014895945935696764, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 308, "s_m": 30.8, "d_m": 0.0, "x_m": 1.458367682353862, "y_m": -0.08089411417039251, "d_right": 1.418755308446116, "d_left": 1.4102134120443035, "psi_rad": -0.024194955335528956, "kappa_radpm": -0.006210981588183895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 309, "s_m": 30.900000000000002, "d_m": 0.0, "x_m": 1.5583004466203707, "y_m": -0.08337564646134624, "d_right": 1.3996647252043408, "d_left": 1.4126951669367946, "psi_rad": -0.024060401226071226, "kappa_radpm": 0.035124034620273026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 310, "s_m": 31.0, "d_m": 0.0, "x_m": 1.6582351315876553, "y_m": -0.08570393336624961, "d_right": 1.3876835586858114, "d_left": 1.415023664410437, "psi_rad": -0.01717014841147435, "kappa_radpm": 0.05281701984680809, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 311, "s_m": 31.1, "d_m": 0.0, "x_m": 1.7581924610245236, "y_m": -0.08680815933917718, "d_right": 1.384067212485469, "d_left": 1.416127912817801, "psi_rad": -0.013496997256709609, "kappa_radpm": -0.0050081152832437414, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 312, "s_m": 31.200000000000003, "d_m": 0.0, "x_m": 1.8581432036539274, "y_m": -0.08840225591869394, "d_right": 1.3824727248123596, "d_left": 1.417722075953671, "psi_rad": -0.0181717714681231, "kappa_radpm": -0.04448628044463665, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 313, "s_m": 31.3, "d_m": 0.0, "x_m": 1.9580858887912824, "y_m": -0.09044097690353668, "d_right": 1.3804335518710555, "d_left": 1.40149323076554, "psi_rad": -0.02239425334563694, "kappa_radpm": -0.0399641353680491, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 314, "s_m": 31.400000000000002, "d_m": 0.0, "x_m": 2.0580196490272584, "y_m": -0.09287908808019597, "d_right": 1.3779949159907663, "d_left": 1.38617509583658, "psi_rad": -0.02616459854173292, "kappa_radpm": -0.03544400284151594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 315, "s_m": 31.5, "d_m": 0.0, "x_m": 2.1579441583668952, "y_m": -0.09567138190109427, "d_right": 1.3752020188832959, "d_left": 1.3783107442611, "psi_rad": -0.029483053913940127, "kappa_radpm": -0.0037415286896458344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 316, "s_m": 31.6, "d_m": 0.0, "x_m": 2.257859570362109, "y_m": -0.09877268702525062, "d_right": 1.3721000313957163, "d_left": 1.377982766976425, "psi_rad": -0.026912904279662087, "kappa_radpm": 0.034418313399683376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 317, "s_m": 31.700000000000003, "d_m": 0.0, "x_m": 2.3577943935733643, "y_m": -0.10105123109704207, "d_right": 1.3698209679135653, "d_left": 1.3802612456493737, "psi_rad": -0.022599391234003452, "kappa_radpm": 0.007704338336109728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 318, "s_m": 31.8, "d_m": 0.0, "x_m": 2.457732666459704, "y_m": -0.10329046647287421, "d_right": 1.3675812488891443, "d_left": 1.3825004232316789, "psi_rad": -0.02537203661244014, "kappa_radpm": -0.041862121639167915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 319, "s_m": 31.900000000000002, "d_m": 0.0, "x_m": 2.5576559233038796, "y_m": -0.10612321353989485, "d_right": 1.364747892033863, "d_left": 1.3853330838281805, "psi_rad": -0.030971815561837035, "kappa_radpm": -0.0526052324836912, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 320, "s_m": 32.0, "d_m": 0.0, "x_m": 2.657562936877034, "y_m": -0.10948155248520443, "d_right": 1.36138880096478, "d_left": 1.3886913071618527, "psi_rad": -0.03589308310917838, "kappa_radpm": -0.04582380913105033, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 321, "s_m": 32.1, "d_m": 0.0, "x_m": 2.757453548254635, "y_m": -0.11329764753510571, "d_right": 1.3623100508248258, "d_left": 1.3925072596918202, "psi_rad": -0.0401365773880471, "kappa_radpm": -0.03905029485561151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 322, "s_m": 32.2, "d_m": 0.0, "x_m": 2.8573285267623483, "y_m": -0.11750376778794379, "d_right": 1.3701535639731883, "d_left": 1.3967132149461314, "psi_rad": -0.04370314208030068, "kappa_radpm": -0.032285280848735054, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 323, "s_m": 32.300000000000004, "d_m": 0.0, "x_m": 2.957189430617206, "y_m": -0.1220322948445409, "d_right": 1.384868102665849, "d_left": 1.4012415605356527, "psi_rad": -0.04659363355779411, "kappa_radpm": -0.025528505848103622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 324, "s_m": 32.4, "d_m": 0.0, "x_m": 3.0570384685208465, "y_m": -0.1268157192530584, "d_right": 1.394410041568793, "d_left": 1.4060247939226536, "psi_rad": -0.04880884324992141, "kappa_radpm": -0.018779007715391538, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 325, "s_m": 32.5, "d_m": 0.0, "x_m": 3.156878362286644, "y_m": -0.13178662776573793, "d_right": 1.3894368055869986, "d_left": 1.3889271004750268, "psi_rad": -0.05034943510087242, "kappa_radpm": -0.012035273567064797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 326, "s_m": 32.6, "d_m": 0.0, "x_m": 3.256712210439719, "y_m": -0.1368776833802305, "d_right": 1.3843433100074707, "d_left": 1.3775451082770953, "psi_rad": -0.05121589796333437, "kappa_radpm": -0.005295388411911128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 327, "s_m": 32.7, "d_m": 0.0, "x_m": 3.3565433526173054, "y_m": -0.1420216001128567, "d_right": 1.379196903261224, "d_left": 1.3734166805335128, "psi_rad": -0.051408512783254645, "kappa_radpm": 0.0014428175033964763, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 328, "s_m": 32.800000000000004, "d_m": 0.0, "x_m": 3.456375234515836, "y_m": -0.14715111442911508, "d_right": 1.3740649138074352, "d_left": 1.376539883957019, "psi_rad": -0.05092733446265507, "kappa_radpm": 0.03470849872093784, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 329, "s_m": 32.9, "d_m": 0.0, "x_m": 3.556211273080025, "y_m": -0.1521989552417886, "d_right": 1.3690146767595757, "d_left": 1.3815849653820138, "psi_rad": -0.04446681303906708, "kappa_radpm": 0.0752621216735494, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 330, "s_m": 33.0, "d_m": 0.0, "x_m": 3.6560973050867025, "y_m": -0.15603797649649184, "d_right": 1.3651741277704394, "d_left": 1.3854222107874012, "psi_rad": -0.03587491012794519, "kappa_radpm": 0.05227852082874018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 331, "s_m": 33.1, "d_m": 0.0, "x_m": 3.7560053307019086, "y_m": -0.1593696256065676, "d_right": 1.3618413402830918, "d_left": 1.3887525118690338, "psi_rad": -0.03401110887331904, "kappa_radpm": 0.0048085678235387785, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 332, "s_m": 33.2, "d_m": 0.0, "x_m": 3.855908771430234, "y_m": -0.16283640760886833, "d_right": 1.3583733478002131, "d_left": 1.3922178653097121, "psi_rad": -0.034913196563237436, "kappa_radpm": -0.010541834008939155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 333, "s_m": 33.300000000000004, "d_m": 0.0, "x_m": 3.9558106404285964, "y_m": -0.16634830339946494, "d_right": 1.3548602164620103, "d_left": 1.3921620738520266, "psi_rad": -0.03611947567510687, "kappa_radpm": -0.04978102659611183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 334, "s_m": 33.4, "d_m": 0.0, "x_m": 4.055703516809618, "y_m": -0.1700560289401394, "d_right": 1.3511510927438661, "d_left": 1.3735796688173458, "psi_rad": -0.0448694018824598, "kappa_radpm": -0.0549432624739854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 335, "s_m": 33.5, "d_m": 0.0, "x_m": 4.155527354166306, "y_m": -0.17531549146864298, "d_right": 1.3458889987833969, "d_left": 1.3636475720655599, "psi_rad": -0.04710812816990395, "kappa_radpm": 0.0009652861944198232, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 336, "s_m": 33.6, "d_m": 0.0, "x_m": 4.255404305678489, "y_m": -0.1794705244683588, "d_right": 1.3417323110025248, "d_left": 1.359898799675299, "psi_rad": -0.04467634464357584, "kappa_radpm": -0.016570095791820227, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 337, "s_m": 33.7, "d_m": 0.0, "x_m": 4.355253648644433, "y_m": -0.184244473703178, "d_right": 1.3369562139426245, "d_left": 1.3641059849993304, "psi_rad": -0.050422147328268, "kappa_radpm": -0.05294493462252525, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 338, "s_m": 33.800000000000004, "d_m": 0.0, "x_m": 4.45507637064867, "y_m": -0.1895469596125402, "d_right": 1.3316510847907428, "d_left": 1.3694015243132165, "psi_rad": -0.05526533156808089, "kappa_radpm": -0.03906188464752103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 339, "s_m": 33.9, "d_m": 0.0, "x_m": 4.5548748816943165, "y_m": -0.19528785273109753, "d_right": 1.3259070863131666, "d_left": 1.3751345968103401, "psi_rad": -0.0582345242577722, "kappa_radpm": 0.009304833149905711, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 340, "s_m": 34.0, "d_m": 0.0, "x_m": 4.654663286171616, "y_m": -0.2011829652336268, "d_right": 1.3262399156368825, "d_left": 1.3735638946167936, "psi_rad": -0.053404364938099746, "kappa_radpm": 0.037149475912852115, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 341, "s_m": 34.1, "d_m": 0.0, "x_m": 4.75451245538713, "y_m": -0.2059595177908744, "d_right": 1.335196014684936, "d_left": 1.3571767660364427, "psi_rad": -0.05080462907520178, "kappa_radpm": -0.014217788017436561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 342, "s_m": 34.2, "d_m": 0.0, "x_m": 4.85433120324924, "y_m": -0.21133575636047408, "d_right": 1.3509177370095165, "d_left": 1.3486223178354633, "psi_rad": -0.05624792254158706, "kappa_radpm": -0.04880481259652236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 343, "s_m": 34.300000000000004, "d_m": 0.0, "x_m": 4.954122585248456, "y_m": -0.21719902871078284, "d_right": 1.3544217857536234, "d_left": 1.3479373955986031, "psi_rad": -0.06056559159450625, "kappa_radpm": -0.03756116700078138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 344, "s_m": 34.4, "d_m": 0.0, "x_m": 5.053891287551807, "y_m": -0.22343703113990399, "d_right": 1.348195592202197, "d_left": 1.353182093777285, "psi_rad": -0.06376015594174334, "kappa_radpm": -0.026340424916952987, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 345, "s_m": 34.5, "d_m": 0.0, "x_m": 5.153643245573895, "y_m": -0.22993776431180618, "d_right": 1.3417075794351425, "d_left": 1.3596862793914934, "psi_rad": -0.06583367657789685, "kappa_radpm": 0.010258307902829555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 346, "s_m": 34.6, "d_m": 0.0, "x_m": 5.253385267645414, "y_m": -0.23658945999252995, "d_right": 1.335069227901408, "d_left": 1.3663416485530229, "psi_rad": -0.061708494361177424, "kappa_radpm": 0.0555148704417574, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 347, "s_m": 34.7, "d_m": 0.0, "x_m": 5.353183979983961, "y_m": -0.24226677594197096, "d_right": 1.3294027332702285, "d_left": 1.3591822969925675, "psi_rad": -0.05473070248954537, "kappa_radpm": 0.03950325173103675, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 348, "s_m": 34.800000000000004, "d_m": 0.0, "x_m": 5.453009073614617, "y_m": -0.24752593319361743, "d_right": 1.3242703396713527, "d_left": 1.344541995757412, "psi_rad": -0.053807844014970074, "kappa_radpm": -0.003746191238703789, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 349, "s_m": 34.9, "d_m": 0.0, "x_m": 5.552821587926268, "y_m": -0.25301922434407204, "d_right": 1.326437605052896, "d_left": 1.337468510436558, "psi_rad": -0.055479940737286126, "kappa_radpm": -0.03947215608715915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 350, "s_m": 35.0, "d_m": 0.0, "x_m": 5.652628579211929, "y_m": -0.25861218845486866, "d_right": 1.3360024603248566, "d_left": 1.3379473704681728, "psi_rad": -0.061702275232401904, "kappa_radpm": -0.05994201738983018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 351, "s_m": 35.1, "d_m": 0.0, "x_m": 5.752360474640539, "y_m": -0.26534687611569796, "d_right": 1.3517836120277253, "d_left": 1.344684658563708, "psi_rad": -0.06746834421525216, "kappa_radpm": -0.024545587029163318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 352, "s_m": 35.2, "d_m": 0.0, "x_m": 5.852093361882833, "y_m": -0.27209020382041466, "d_right": 1.3490063386790188, "d_left": 1.3514305865929614, "psi_rad": -0.06661139263823457, "kappa_radpm": -0.003553383153649392, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 353, "s_m": 35.300000000000004, "d_m": 0.0, "x_m": 5.951841045225911, "y_m": -0.278654242490355, "d_right": 1.3424490892540943, "d_left": 1.3579970486835078, "psi_rad": -0.06817902084598204, "kappa_radpm": -0.029149419621590233, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 354, "s_m": 35.4, "d_m": 0.0, "x_m": 6.05155518739911, "y_m": -0.2857104263079843, "d_right": 1.3354006563343555, "d_left": 1.3483990561073218, "psi_rad": -0.07244127656255261, "kappa_radpm": -0.035906517102519686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 355, "s_m": 35.5, "d_m": 0.0, "x_m": 6.151243402549936, "y_m": -0.2931245247503468, "d_right": 1.3295399712163125, "d_left": 1.3372111769654504, "psi_rad": -0.07536032426648598, "kappa_radpm": -0.00159917325035841, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 356, "s_m": 35.6, "d_m": 0.0, "x_m": 6.250914724869798, "y_m": -0.3007627314007622, "d_right": 1.330956842111102, "d_left": 1.3336687312242004, "psi_rad": -0.0727611112126243, "kappa_radpm": -0.006587739767563994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 357, "s_m": 35.7, "d_m": 0.0, "x_m": 6.350636162807739, "y_m": -0.30765822060864223, "d_right": 1.3405887517342268, "d_left": 1.3368657122411558, "psi_rad": -0.07667787221999878, "kappa_radpm": -0.0756988982757778, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 358, "s_m": 35.800000000000004, "d_m": 0.0, "x_m": 6.450244327701633, "y_m": -0.3160769262366854, "d_right": 1.354750740063988, "d_left": 1.3452843410808026, "psi_rad": -0.08790089086777986, "kappa_radpm": -0.08858754814508152, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 359, "s_m": 35.9, "d_m": 0.0, "x_m": 6.549789697342154, "y_m": -0.3252092200037561, "d_right": 1.345622016724595, "d_left": 1.3544166666789377, "psi_rad": -0.09439538184901508, "kappa_radpm": -0.03457973780503165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 360, "s_m": 36.0, "d_m": 0.0, "x_m": 6.649280275375941, "y_m": -0.33492100377161027, "d_right": 1.3388528818855618, "d_left": 1.3436219733624168, "psi_rad": -0.09481683842878619, "kappa_radpm": 0.013115755493554593, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 361, "s_m": 36.1, "d_m": 0.0, "x_m": 6.748815327825967, "y_m": -0.3441369566643108, "d_right": 1.3400272373308482, "d_left": 1.3355894659673244, "psi_rad": -0.09177223075030416, "kappa_radpm": 0.0029981181207205942, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 362, "s_m": 36.2, "d_m": 0.0, "x_m": 6.848363121086408, "y_m": -0.3532427456358569, "d_right": 1.348740488075553, "d_left": 1.334903407501219, "psi_rad": -0.09421721480464207, "kappa_radpm": -0.036658807853993114, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 363, "s_m": 36.300000000000004, "d_m": 0.0, "x_m": 6.947854578275349, "y_m": -0.36294556739104966, "d_right": 1.3578743062951997, "d_left": 1.3422818309508846, "psi_rad": -0.09910399232110279, "kappa_radpm": -0.0028110150627913555, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 364, "s_m": 36.4, "d_m": 0.0, "x_m": 7.047308362912056, "y_m": -0.3730238163940042, "d_right": 1.3477929142108411, "d_left": 1.3523521715326918, "psi_rad": -0.09477941781720034, "kappa_radpm": 0.03860794169412207, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 365, "s_m": 36.5, "d_m": 0.0, "x_m": 7.146879964888997, "y_m": -0.3818657658746374, "d_right": 1.3432459597742905, "d_left": 1.3599880934875066, "psi_rad": -0.09138240398227837, "kappa_radpm": -0.00566119177115354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 366, "s_m": 36.6, "d_m": 0.0, "x_m": 7.246400292605322, "y_m": -0.39126812836268127, "d_right": 1.3455657991419494, "d_left": 1.346205430327538, "psi_rad": -0.09591165617143105, "kappa_radpm": 0.002679135045355885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 367, "s_m": 36.7, "d_m": 0.0, "x_m": 7.345887568843153, "y_m": -0.40101165877782097, "d_right": 1.3549352051545025, "d_left": 1.3401023036865671, "psi_rad": -0.0908465769732072, "kappa_radpm": 0.047730657002206245, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 368, "s_m": 36.800000000000004, "d_m": 0.0, "x_m": 7.445498008255442, "y_m": -0.4094053980242461, "d_right": 1.361654538499994, "d_left": 1.3400871629778301, "psi_rad": -0.0863655247709898, "kappa_radpm": 0.004363061045568051, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 369, "s_m": 36.9, "d_m": 0.0, "x_m": 7.545068876835464, "y_m": -0.4182569558831856, "d_right": 1.3584431171737346, "d_left": 1.3479647933616143, "psi_rad": -0.08997396476409358, "kappa_radpm": -0.03752818820001336, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 370, "s_m": 37.0, "d_m": 0.0, "x_m": 7.644616244410151, "y_m": -0.42736935599809683, "d_right": 1.3623164830985894, "d_left": 1.3508092974710453, "psi_rad": -0.09387116241099247, "kappa_radpm": -0.051448771436383156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 371, "s_m": 37.1, "d_m": 0.0, "x_m": 7.744114896962762, "y_m": -0.4369967131625178, "d_right": 1.371438656436597, "d_left": 1.3385106994423328, "psi_rad": -0.10026371905137021, "kappa_radpm": -0.06503932305330085, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 372, "s_m": 37.2, "d_m": 0.0, "x_m": 7.843537504028627, "y_m": -0.4473810441924162, "d_right": 1.3741733202645938, "d_left": 1.3343729085143232, "psi_rad": -0.10687902702165264, "kappa_radpm": -0.016082521666246352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 373, "s_m": 37.300000000000004, "d_m": 0.0, "x_m": 7.942900252979392, "y_m": -0.45832396848825707, "d_right": 1.370174489587038, "d_left": 1.3382734753514753, "psi_rad": -0.10348022338461949, "kappa_radpm": 0.033525512062897445, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 374, "s_m": 37.4, "d_m": 0.0, "x_m": 8.042391083605889, "y_m": -0.4680322217174669, "d_right": 1.3746966582458497, "d_left": 1.3479921779016946, "psi_rad": -0.10017392460907315, "kappa_radpm": -0.009937353650099068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 375, "s_m": 37.5, "d_m": 0.0, "x_m": 8.14182400734843, "y_m": -0.4783178647963064, "d_right": 1.3858566232691658, "d_left": 1.346755508762356, "psi_rad": -0.1054676941146393, "kappa_radpm": -0.06145804514545383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 376, "s_m": 37.6, "d_m": 0.0, "x_m": 8.241206518784452, "y_m": -0.4890789223496207, "d_right": 1.3914293075682127, "d_left": 1.337412652739583, "psi_rad": -0.11246553363816392, "kappa_radpm": -0.058618893342653466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 377, "s_m": 37.7, "d_m": 0.0, "x_m": 8.340485506842265, "y_m": -0.5007551153755792, "d_right": 1.3951321255093, "d_left": 1.3359268098772663, "psi_rad": -0.11719147278316999, "kappa_radpm": -0.024205603970195444, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 378, "s_m": 37.800000000000004, "d_m": 0.0, "x_m": 8.439759800521555, "y_m": -0.5124547854356233, "d_right": 1.4059267028832132, "d_left": 1.3419302622122935, "psi_rad": -0.117306654432203, "kappa_radpm": -0.0011911549136234267, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 379, "s_m": 37.9, "d_m": 0.0, "x_m": 8.539036074204752, "y_m": -0.5241538455747407, "d_right": 1.4083992584720129, "d_left": 1.3536408490565037, "psi_rad": -0.11742970376589468, "kappa_radpm": -0.02083145013047405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 380, "s_m": 38.0, "d_m": 0.0, "x_m": 8.638307454095093, "y_m": -0.535877943069167, "d_right": 1.4063381841059577, "d_left": 1.350533298426754, "psi_rad": -0.12147294445829782, "kappa_radpm": -0.074348206166307, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 381, "s_m": 38.1, "d_m": 0.0, "x_m": 8.737479045919406, "y_m": -0.5483785657401032, "d_right": 1.410591076870673, "d_left": 1.3438157771440267, "psi_rad": -0.13229934499915608, "kappa_radpm": -0.07734228208445382, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 382, "s_m": 38.2, "d_m": 0.0, "x_m": 8.836473975865788, "y_m": -0.5622492841556321, "d_right": 1.4121501400673988, "d_left": 1.3458961952245532, "psi_rad": -0.13694140087518858, "kappa_radpm": -0.004773172676684201, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 383, "s_m": 38.300000000000004, "d_m": 0.0, "x_m": 8.935531040257581, "y_m": -0.5756709008681613, "d_right": 1.4093733665403665, "d_left": 1.3549164749349996, "psi_rad": -0.13325397953449292, "kappa_radpm": 0.02891595590868823, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 384, "s_m": 38.400000000000006, "d_m": 0.0, "x_m": 9.034625993304966, "y_m": -0.5888112322904236, "d_right": 1.4139602110128273, "d_left": 1.3495946396641922, "psi_rad": -0.13115820969345093, "kappa_radpm": -0.0029150723126436517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 385, "s_m": 38.5, "d_m": 0.0, "x_m": 9.133738750723156, "y_m": -0.6018175706991141, "d_right": 1.4256926917118042, "d_left": 1.344675686339924, "psi_rad": -0.13383699399702165, "kappa_radpm": -0.03196968933209199, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 386, "s_m": 38.6, "d_m": 0.0, "x_m": 9.232761594689597, "y_m": -0.6154885807061898, "d_right": 1.4380304754013513, "d_left": 1.3478458338637396, "psi_rad": -0.13755214755986933, "kappa_radpm": -0.04844058925905781, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 387, "s_m": 38.7, "d_m": 0.0, "x_m": 9.331775030720719, "y_m": -0.6292309975503039, "d_right": 1.4433542094968381, "d_left": 1.3584560319542556, "psi_rad": -0.1435251118488332, "kappa_radpm": -0.07539265374202242, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 388, "s_m": 38.800000000000004, "d_m": 0.0, "x_m": 9.430628330409577, "y_m": -0.644084046622884, "d_right": 1.446696566527841, "d_left": 1.3512352617612098, "psi_rad": -0.15263067830827381, "kappa_radpm": -0.0630339660689383, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 389, "s_m": 38.900000000000006, "d_m": 0.0, "x_m": 9.529375189940803, "y_m": -0.6596272495712736, "d_right": 1.4509643847286726, "d_left": 1.3501758646908617, "psi_rad": -0.15613190506262087, "kappa_radpm": -0.04332369446978568, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 390, "s_m": 39.0, "d_m": 0.0, "x_m": 9.628120597525696, "y_m": -0.6751719134315676, "d_right": 1.4620684193194147, "d_left": 1.3565036833836392, "psi_rad": -0.16129541720223095, "kappa_radpm": -0.06387240482374268, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 391, "s_m": 39.1, "d_m": 0.0, "x_m": 9.72670052477115, "y_m": -0.6917338364772398, "d_right": 1.4720730625248133, "d_left": 1.3711290374293579, "psi_rad": -0.1689063860273694, "kappa_radpm": -0.08092688153547023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 392, "s_m": 39.2, "d_m": 0.0, "x_m": 9.825199748983866, "y_m": -0.7087800565523461, "d_right": 1.4825190127413406, "d_left": 1.370350446042094, "psi_rad": -0.177480793509325, "kappa_radpm": -0.09176751249518778, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 393, "s_m": 39.300000000000004, "d_m": 0.0, "x_m": 9.923480795591548, "y_m": -0.7270299380672158, "d_right": 1.4906077067540204, "d_left": 1.3731919581897112, "psi_rad": -0.18725988852640696, "kappa_radpm": -0.11717410810788587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 394, "s_m": 39.400000000000006, "d_m": 0.0, "x_m": 10.021627821643026, "y_m": -0.7459992216921804, "d_right": 1.4999690243753743, "d_left": 1.383995052442539, "psi_rad": -0.20091561513090217, "kappa_radpm": -0.13793473266408007, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 395, "s_m": 39.5, "d_m": 0.0, "x_m": 10.119372123970505, "y_m": -0.7669258421695972, "d_right": 1.5045872740954749, "d_left": 1.3975882136633788, "psi_rad": -0.21484683505922297, "kappa_radpm": -0.10922513919523813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 396, "s_m": 39.6, "d_m": 0.0, "x_m": 10.216952624873851, "y_m": -0.7886219746922976, "d_right": 1.5120476696543887, "d_left": 1.4107477045374544, "psi_rad": -0.2227606429699498, "kappa_radpm": -0.11122768720383092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 397, "s_m": 39.7, "d_m": 0.0, "x_m": 10.314357195699666, "y_m": -0.8110938431001622, "d_right": 1.5143278600652983, "d_left": 1.4122336586671551, "psi_rad": -0.23709237249998916, "kappa_radpm": -0.17359280010535771, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 398, "s_m": 39.800000000000004, "d_m": 0.0, "x_m": 10.411268434787381, "y_m": -0.8355758894766803, "d_right": 1.5194474249546943, "d_left": 1.4228199623066604, "psi_rad": -0.25747920299102134, "kappa_radpm": -0.19728549850863808, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 399, "s_m": 39.900000000000006, "d_m": 0.0, "x_m": 10.507674578498756, "y_m": -0.8619989800422381, "d_right": 1.5172543058072037, "d_left": 1.4321954452249965, "psi_rad": -0.2765494722017168, "kappa_radpm": -0.18681145794810727, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 400, "s_m": 40.0, "d_m": 0.0, "x_m": 10.603588732205331, "y_m": -0.890160653768225, "d_right": 1.519836442384894, "d_left": 1.4406491732055837, "psi_rad": -0.2948414945806428, "kappa_radpm": -0.19399204736286868, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 401, "s_m": 40.1, "d_m": 0.0, "x_m": 10.698964986572093, "y_m": -0.9200925546242158, "d_right": 1.5271257803547205, "d_left": 1.4577476367905293, "psi_rad": -0.3153478816742905, "kappa_radpm": -0.238176764080561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 402, "s_m": 40.2, "d_m": 0.0, "x_m": 10.793633022506826, "y_m": -0.9521596210074986, "d_right": 1.5386562817542144, "d_left": 1.48356559185507, "psi_rad": -0.342476847396755, "kappa_radpm": -0.27424264690970257, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 403, "s_m": 40.300000000000004, "d_m": 0.0, "x_m": 10.88724418331632, "y_m": -0.9872190027820784, "d_right": 1.535577454632274, "d_left": 1.5038442151047346, "psi_rad": -0.370196411056231, "kappa_radpm": -0.2529099480437791, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 404, "s_m": 40.400000000000006, "d_m": 0.0, "x_m": 10.97999651003846, "y_m": -1.0244852661607005, "d_right": 1.5365462400968115, "d_left": 1.5228238408727492, "psi_rad": -0.3930588370055108, "kappa_radpm": -0.24333946084871605, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 405, "s_m": 40.5, "d_m": 0.0, "x_m": 11.071907968129057, "y_m": -1.0637870905445423, "d_right": 1.541807411740579, "d_left": 1.5501445033268582, "psi_rad": -0.41886430322597423, "kappa_radpm": -0.2852419414113483, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 406, "s_m": 40.6, "d_m": 0.0, "x_m": 11.162609638342866, "y_m": -1.1057866489013903, "d_right": 1.5499312622968473, "d_left": 1.5715949702317737, "psi_rad": -0.45010722528778047, "kappa_radpm": -0.30588162681861153, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 407, "s_m": 40.7, "d_m": 0.0, "x_m": 11.251885355071884, "y_m": -1.1507498814311403, "d_right": 1.5558343633113183, "d_left": 1.5858299087886387, "psi_rad": -0.48004062858969654, "kappa_radpm": -0.2997661429581222, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 408, "s_m": 40.800000000000004, "d_m": 0.0, "x_m": 11.33991384012268, "y_m": -1.1981022953197233, "d_right": 1.55144028671503, "d_left": 1.5936006223529648, "psi_rad": -0.5100604538794049, "kappa_radpm": -0.32288140402918275, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 409, "s_m": 40.900000000000006, "d_m": 0.0, "x_m": 11.426331594184528, "y_m": -1.2483417517507538, "d_right": 1.5403539764968117, "d_left": 1.594102763775997, "psi_rad": -0.5446169093955331, "kappa_radpm": -0.34094921455417815, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 410, "s_m": 41.0, "d_m": 0.0, "x_m": 11.5108825379524, "y_m": -1.3016619546915826, "d_right": 1.5321072570410155, "d_left": 1.5980248618386457, "psi_rad": -0.5782502967902405, "kappa_radpm": -0.3259502813385451, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 411, "s_m": 41.1, "d_m": 0.0, "x_m": 11.593724984188453, "y_m": -1.3575944883226083, "d_right": 1.5272376085421722, "d_left": 1.5927884410258115, "psi_rad": -0.6098069656632421, "kappa_radpm": -0.33912549747822984, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 412, "s_m": 41.2, "d_m": 0.0, "x_m": 11.674742111739244, "y_m": -1.416139426284319, "d_right": 1.5257162338271393, "d_left": 1.5918907342774842, "psi_rad": -0.6460753962858865, "kappa_radpm": -0.3824456786847308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 413, "s_m": 41.300000000000004, "d_m": 0.0, "x_m": 11.753308035155408, "y_m": -1.4779249144538695, "d_right": 1.5172457637738241, "d_left": 1.5792786814806161, "psi_rad": -0.6862961014001883, "kappa_radpm": -0.37905032312695264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 414, "s_m": 41.400000000000006, "d_m": 0.0, "x_m": 11.829362805658945, "y_m": -1.5427935869760814, "d_right": 1.508416292659856, "d_left": 1.5566415325113396, "psi_rad": -0.721885460911277, "kappa_radpm": -0.35757557299720855, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 415, "s_m": 41.5, "d_m": 0.0, "x_m": 11.903337475567469, "y_m": -1.6100122256954743, "d_right": 1.4922442991244107, "d_left": 1.5432893516067865, "psi_rad": -0.75781121599963, "kappa_radpm": -0.40866552440036674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 416, "s_m": 41.6, "d_m": 0.0, "x_m": 11.974530007447177, "y_m": -1.6801644482067701, "d_right": 1.476941097927642, "d_left": 1.528758327103909, "psi_rad": -0.8036185657913504, "kappa_radpm": -0.4568658226616762, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 417, "s_m": 41.7, "d_m": 0.0, "x_m": 12.042047372422088, "y_m": -1.7538712111049495, "d_right": 1.4631993302553825, "d_left": 1.4982049185423374, "psi_rad": -0.8491843805319652, "kappa_radpm": -0.42990528141651607, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 418, "s_m": 41.800000000000004, "d_m": 0.0, "x_m": 12.106568494278406, "y_m": -1.830221164350581, "d_right": 1.4522151682208353, "d_left": 1.4708214008976868, "psi_rad": -0.8895996220746536, "kappa_radpm": -0.4380696221827618, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 419, "s_m": 41.900000000000006, "d_m": 0.0, "x_m": 12.167905017255839, "y_m": -1.9091278563556193, "d_right": 1.4397852728822937, "d_left": 1.440785399837848, "psi_rad": -0.9367983049685176, "kappa_radpm": -0.4876919101687882, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 420, "s_m": 42.0, "d_m": 0.0, "x_m": 12.224935122234424, "y_m": -1.9912081091703433, "d_right": 1.422061498352014, "d_left": 1.4193851816790515, "psi_rad": -0.9871380041084112, "kappa_radpm": -0.48134224277235127, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 421, "s_m": 42.1, "d_m": 0.0, "x_m": 12.278034823583333, "y_m": -2.0758876878191383, "d_right": 1.3997176230602761, "d_left": 1.3965140116255386, "psi_rad": -1.0330667535229878, "kappa_radpm": -0.47284220881073535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 422, "s_m": 42.2, "d_m": 0.0, "x_m": 12.32729702468944, "y_m": -2.1628561630512504, "d_right": 1.3768729803792832, "d_left": 1.3665850201917351, "psi_rad": -1.0817064458705583, "kappa_radpm": -0.5238392021476712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 423, "s_m": 42.300000000000004, "d_m": 0.0, "x_m": 12.3719224583977, "y_m": -2.2522953656090903, "d_right": 1.355807681796936, "d_left": 1.34300239409699, "psi_rad": -1.137834593952522, "kappa_radpm": -0.5255114352664214, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 424, "s_m": 42.400000000000006, "d_m": 0.0, "x_m": 12.411131989487874, "y_m": -2.344234448155817, "d_right": 1.3359642717280773, "d_left": 1.324381517217661, "psi_rad": -1.1868087329238426, "kappa_radpm": -0.47088283361092165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 425, "s_m": 42.5, "d_m": 0.0, "x_m": 12.446796562956273, "y_m": -2.437607189879372, "d_right": 1.3133373986065549, "d_left": 1.3047765390234611, "psi_rad": -1.2320111606747064, "kappa_radpm": -0.4677933838075843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 426, "s_m": 42.6, "d_m": 0.0, "x_m": 12.477546113494292, "y_m": -2.532712489396045, "d_right": 1.2851284729060652, "d_left": 1.2885346397428983, "psi_rad": -1.2803674096853594, "kappa_radpm": -0.4664475033178439, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 427, "s_m": 42.7, "d_m": 0.0, "x_m": 12.504027250830505, "y_m": -2.629091048924469, "d_right": 1.2598442760252, "d_left": 1.2779730402370018, "psi_rad": -1.3253006613382752, "kappa_radpm": -0.4519812522901123, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 428, "s_m": 42.800000000000004, "d_m": 0.0, "x_m": 12.526116553319653, "y_m": -2.726568242125796, "d_right": 1.23764343979093, "d_left": 1.2681383703420719, "psi_rad": -1.370763660143382, "kappa_radpm": -0.42466786513010835, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 429, "s_m": 42.900000000000006, "d_m": 0.0, "x_m": 12.54373661218389, "y_m": -2.824950618618142, "d_right": 1.21620871499392, "d_left": 1.250587349709634, "psi_rad": -1.4102342343642968, "kappa_radpm": -0.3633093931235365, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 430, "s_m": 43.0, "d_m": 0.0, "x_m": 12.558071613018573, "y_m": -2.9238749889939983, "d_right": 1.194456678730897, "d_left": 1.2363019550656098, "psi_rad": -1.4434255387680892, "kappa_radpm": -0.34049831160533284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 431, "s_m": 43.1, "d_m": 0.0, "x_m": 12.56912758520219, "y_m": -3.0232183381330104, "d_right": 1.1664187710476859, "d_left": 1.2252785268086739, "psi_rad": -1.4783338966853634, "kappa_radpm": -0.36157878073726835, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 432, "s_m": 43.2, "d_m": 0.0, "x_m": 12.576526538532148, "y_m": -3.1228996442471635, "d_right": 1.138645286356047, "d_left": 1.217896606247343, "psi_rad": -1.5157412949155429, "kappa_radpm": -0.3786235824278461, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 433, "s_m": 43.300000000000004, "d_m": 0.0, "x_m": 12.580126180266461, "y_m": -3.2227910200219, "d_right": 1.1153915592261447, "d_left": 1.2143027988578405, "psi_rad": -1.5540586131709326, "kappa_radpm": -0.3853721553825462, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 434, "s_m": 43.400000000000006, "d_m": 0.0, "x_m": 12.579871851082586, "y_m": -3.322747737131153, "d_right": 1.09693090135763, "d_left": 1.200912552088629, "psi_rad": 4.690369581187534, "kappa_radpm": -0.38803091177398663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 435, "s_m": 43.5, "d_m": 0.0, "x_m": 12.575725361040515, "y_m": -3.422619721615542, "d_right": 1.0834981295556043, "d_left": 1.1896538453836143, "psi_rad": 4.651520511653857, "kappa_radpm": -0.3825881775812756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 436, "s_m": 43.6, "d_m": 0.0, "x_m": 12.567713025083782, "y_m": -3.5222567195532073, "d_right": 1.0753226838698873, "d_left": 1.1827137239714505, "psi_rad": 4.6138519456712785, "kappa_radpm": -0.36265118978890065, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 437, "s_m": 43.7, "d_m": 0.0, "x_m": 12.556061260067986, "y_m": -3.6215339331374503, "d_right": 1.0636505073074123, "d_left": 1.1783869968721365, "psi_rad": 4.578990273696077, "kappa_radpm": -0.33619639014473846, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 438, "s_m": 43.800000000000004, "d_m": 0.0, "x_m": 12.541127022503673, "y_m": -3.7203704390927776, "d_right": 1.057801519536698, "d_left": 1.1711784625542994, "psi_rad": 4.54661266764233, "kappa_radpm": -0.35054611724376405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 439, "s_m": 43.900000000000006, "d_m": 0.0, "x_m": 12.523075754181276, "y_m": -3.818683836025241, "d_right": 1.0582224336973496, "d_left": 1.175630795737858, "psi_rad": 4.508881050247323, "kappa_radpm": -0.3860351897185166, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 440, "s_m": 44.0, "d_m": 0.0, "x_m": 12.500734447553882, "y_m": -3.9161043511514104, "d_right": 1.0636898248638784, "d_left": 1.179618465605268, "psi_rad": 4.4694056296986275, "kappa_radpm": -0.3913688590242681, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 441, "s_m": 44.1, "d_m": 0.0, "x_m": 12.474986758519988, "y_m": -4.012684138290381, "d_right": 1.0635719829494632, "d_left": 1.1797752250653994, "psi_rad": 4.43060727844247, "kappa_radpm": -0.39752438191375195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 442, "s_m": 44.2, "d_m": 0.0, "x_m": 12.4451595603083, "y_m": -4.1080832563609375, "d_right": 1.0625812402410542, "d_left": 1.1819332930575475, "psi_rad": 4.389900753315877, "kappa_radpm": -0.3744636816908642, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 443, "s_m": 44.300000000000004, "d_m": 0.0, "x_m": 12.41164036990842, "y_m": -4.202257046878602, "d_right": 1.0670941850791664, "d_left": 1.189217904049891, "psi_rad": 4.355714542104297, "kappa_radpm": -0.3386168670660039, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 444, "s_m": 44.400000000000006, "d_m": 0.0, "x_m": 12.375364605420573, "y_m": -4.2953965163541294, "d_right": 1.077969550388098, "d_left": 1.1925111967942699, "psi_rad": 4.322177379902676, "kappa_radpm": -0.37762423192843064, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 445, "s_m": 44.5, "d_m": 0.0, "x_m": 12.33561352329416, "y_m": -4.38710125605391, "d_right": 1.0930868013257184, "d_left": 1.1915202324015681, "psi_rad": 4.280189695718612, "kappa_radpm": -0.41817355968065684, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 446, "s_m": 44.6, "d_m": 0.0, "x_m": 12.291652336494788, "y_m": -4.476872530487803, "d_right": 1.0970736963512695, "d_left": 1.203479871691809, "psi_rad": 4.238542667966545, "kappa_radpm": -0.4060826215761315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 447, "s_m": 44.7, "d_m": 0.0, "x_m": 12.24440962529041, "y_m": -4.5649510577621015, "d_right": 1.1061568410584937, "d_left": 1.2155409809176938, "psi_rad": 4.198973171403384, "kappa_radpm": -0.4121885301924988, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 448, "s_m": 44.800000000000004, "d_m": 0.0, "x_m": 12.193491199253243, "y_m": -4.650962822613362, "d_right": 1.119959554137824, "d_left": 1.2288735146876315, "psi_rad": 4.156104961928046, "kappa_radpm": -0.43748425364026344, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 449, "s_m": 44.900000000000006, "d_m": 0.0, "x_m": 12.138877545154626, "y_m": -4.734675465464502, "d_right": 1.1381539789190231, "d_left": 1.2542697011833663, "psi_rad": 4.111476320675332, "kappa_radpm": -0.4819162858035564, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 450, "s_m": 45.0, "d_m": 0.0, "x_m": 12.080493615282757, "y_m": -4.81580789626265, "d_right": 1.1542122488244189, "d_left": 1.2673164115383713, "psi_rad": 4.059721704767334, "kappa_radpm": -0.503257960039647, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 451, "s_m": 45.1, "d_m": 0.0, "x_m": 12.017520443775663, "y_m": -4.893432214575302, "d_right": 1.164560614460022, "d_left": 1.2765739127881373, "psi_rad": 4.010824728667403, "kappa_radpm": -0.44307267589048793, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 452, "s_m": 45.2, "d_m": 0.0, "x_m": 11.951491697738021, "y_m": -4.9684790448577525, "d_right": 1.1709324203700755, "d_left": 1.2956085842428469, "psi_rad": 3.9711071695892364, "kappa_radpm": -0.4291114268964269, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 453, "s_m": 45.300000000000004, "d_m": 0.0, "x_m": 11.882566679615858, "y_m": -5.0408513281291185, "d_right": 1.1792730751735438, "d_left": 1.3171310005448873, "psi_rad": 3.9250024432881174, "kappa_radpm": -0.47306235718410417, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 454, "s_m": 45.400000000000006, "d_m": 0.0, "x_m": 11.809915196247072, "y_m": -5.109493648886368, "d_right": 1.1907533814807858, "d_left": 1.3388113510181074, "psi_rad": 3.8764946981524155, "kappa_radpm": -0.4811120933358559, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 455, "s_m": 45.5, "d_m": 0.0, "x_m": 11.734296782385021, "y_m": -5.17485536011431, "d_right": 1.2060864738266077, "d_left": 1.3472003021361225, "psi_rad": 3.8287800246209462, "kappa_radpm": -0.48604303797436854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 456, "s_m": 45.6, "d_m": 0.0, "x_m": 11.65543917537661, "y_m": -5.236259530870931, "d_right": 1.221584560998852, "d_left": 1.3595321215399914, "psi_rad": 3.779286090557542, "kappa_radpm": -0.49271122769834363, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 457, "s_m": 45.7, "d_m": 0.0, "x_m": 11.573726823317562, "y_m": -5.293832042332429, "d_right": 1.2280937741240743, "d_left": 1.3765854444967862, "psi_rad": 3.7302377790812775, "kappa_radpm": -0.48117361964932215, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 458, "s_m": 45.800000000000004, "d_m": 0.0, "x_m": 11.489226434834007, "y_m": -5.347222350618158, "d_right": 1.231314420445261, "d_left": 1.3904995125337236, "psi_rad": 3.6830513666276774, "kappa_radpm": -0.4625112882027915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 459, "s_m": 45.900000000000006, "d_m": 0.0, "x_m": 11.402464184339319, "y_m": -5.3968318273425195, "d_right": 1.2370330952834172, "d_left": 1.368475246352423, "psi_rad": 3.637735521440719, "kappa_radpm": -0.43029548791337024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 460, "s_m": 46.0, "d_m": 0.0, "x_m": 11.313477680479307, "y_m": -5.442355980318139, "d_right": 1.244848369893111, "d_left": 1.3504757693377936, "psi_rad": 3.5969922690450034, "kappa_radpm": -0.38866994387707354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 461, "s_m": 46.1, "d_m": 0.0, "x_m": 11.222955372688228, "y_m": -5.484743058218879, "d_right": 1.2492188062241012, "d_left": 1.327449497702508, "psi_rad": 3.5600015326653045, "kappa_radpm": -0.4010699735328416, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 462, "s_m": 46.2, "d_m": 0.0, "x_m": 11.1308435408486, "y_m": -5.523567075178117, "d_right": 1.2521335606360116, "d_left": 1.3069832972716622, "psi_rad": 3.516778274338435, "kappa_radpm": -0.4020616394377319, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 463, "s_m": 46.300000000000004, "d_m": 0.0, "x_m": 11.036994191974342, "y_m": -5.557982190528637, "d_right": 1.2455569591966167, "d_left": 1.2879556776508734, "psi_rad": 3.479589204777758, "kappa_radpm": -0.32734779389811397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 464, "s_m": 46.400000000000006, "d_m": 0.0, "x_m": 10.942252082202538, "y_m": -5.589854017941675, "d_right": 1.2422583337902275, "d_left": 1.2791848480818715, "psi_rad": 3.4513087155588122, "kappa_radpm": -0.2781680392773689, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 465, "s_m": 46.5, "d_m": 0.0, "x_m": 10.846610066663084, "y_m": -5.618907863718197, "d_right": 1.239317178969935, "d_left": 1.26264043101478, "psi_rad": 3.4239555969222844, "kappa_radpm": -0.2579532465722112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 466, "s_m": 46.6, "d_m": 0.0, "x_m": 10.750266341133374, "y_m": -5.645551845866499, "d_right": 1.2317333680418767, "d_left": 1.2526894054578264, "psi_rad": 3.39971806624437, "kappa_radpm": -0.2720120994828834, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 467, "s_m": 46.7, "d_m": 0.0, "x_m": 10.653327155691697, "y_m": -5.6699375080364804, "d_right": 1.2299040824788992, "d_left": 1.2530080118591955, "psi_rad": 3.3695531770257077, "kappa_radpm": -0.2872212235946181, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 468, "s_m": 46.800000000000004, "d_m": 0.0, "x_m": 10.555550734769378, "y_m": -5.690724522842594, "d_right": 1.2325002666450313, "d_left": 1.2512330596250418, "psi_rad": 3.3422738215254464, "kappa_radpm": -0.22088449909847707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 469, "s_m": 46.900000000000006, "d_m": 0.0, "x_m": 10.457422632695588, "y_m": -5.7097882673262985, "d_right": 1.241351758572704, "d_left": 1.250454294508902, "psi_rad": 3.3253762772060123, "kappa_radpm": -0.15914556750256992, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 470, "s_m": 47.0, "d_m": 0.0, "x_m": 10.358998776839792, "y_m": -5.727259827068332, "d_right": 1.2338054607387876, "d_left": 1.2585217080333406, "psi_rad": 3.3104447080249324, "kappa_radpm": -0.135350609231093, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 471, "s_m": 47.1, "d_m": 0.0, "x_m": 10.26034520626487, "y_m": -5.7433850974633005, "d_right": 1.2329702066351333, "d_left": 1.2617347798013379, "psi_rad": 3.2983061553597937, "kappa_radpm": -0.14001639372073438, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 472, "s_m": 47.2, "d_m": 0.0, "x_m": 10.161525701761514, "y_m": -5.758462379125386, "d_right": 1.232711005314749, "d_left": 1.2672840642144239, "psi_rad": 3.2824414292807855, "kappa_radpm": -0.1442779788718651, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 473, "s_m": 47.300000000000004, "d_m": 0.0, "x_m": 10.06241304040073, "y_m": -5.771449430215174, "d_right": 1.2246007254199804, "d_left": 1.2670448875222597, "psi_rad": 3.2694505595854206, "kappa_radpm": -0.06974252692075744, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 474, "s_m": 47.400000000000006, "d_m": 0.0, "x_m": 9.963234723064405, "y_m": -5.783954512174254, "d_right": 1.2214207851142325, "d_left": 1.2694814818438114, "psi_rad": 3.268492923896634, "kappa_radpm": -0.03065631859794138, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 475, "s_m": 47.5, "d_m": 0.0, "x_m": 9.864093893521074, "y_m": -5.796752151900406, "d_right": 1.2192300848416169, "d_left": 1.2743989221766885, "psi_rad": 3.2633192958658324, "kappa_radpm": -0.07216737078294067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 476, "s_m": 47.6, "d_m": 0.0, "x_m": 9.764796511504754, "y_m": -5.8082297463924855, "d_right": 1.2081281929016767, "d_left": 1.269188747528759, "psi_rad": 3.254059449740046, "kappa_radpm": -0.054167407801499756, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 477, "s_m": 47.7, "d_m": 0.0, "x_m": 9.665436944923604, "y_m": -5.81918914249791, "d_right": 1.2047204045894768, "d_left": 1.2723585587933153, "psi_rad": 3.2524858143055324, "kappa_radpm": -0.004231078731922189, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 478, "s_m": 47.800000000000004, "d_m": 0.0, "x_m": 9.566099964273272, "y_m": -5.830354600916744, "d_right": 1.2097988131680968, "d_left": 1.2831256006213525, "psi_rad": 3.2532132339936615, "kappa_radpm": -0.0018841579519124352, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 479, "s_m": 47.900000000000006, "d_m": 0.0, "x_m": 9.466756104660787, "y_m": -5.841458576215515, "d_right": 1.2209135803479387, "d_left": 1.2879090282243275, "psi_rad": 3.25210898271515, "kappa_radpm": 0.0008781032878379946, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 480, "s_m": 48.0, "d_m": 0.0, "x_m": 9.367394448167488, "y_m": -5.852404650381463, "d_right": 1.2202159652792948, "d_left": 1.2923542649222275, "psi_rad": 3.253388854651229, "kappa_radpm": 0.016475337663695022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 481, "s_m": 48.1, "d_m": 0.0, "x_m": 9.268079782135436, "y_m": -5.863762834275263, "d_right": 1.2104869886091498, "d_left": 1.304057391939222, "psi_rad": 3.255404050247889, "kappa_radpm": 0.03384380969441381, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 482, "s_m": 48.2, "d_m": 0.0, "x_m": 9.168763816013342, "y_m": -5.875109195719736, "d_right": 1.2089609457546413, "d_left": 1.3064238897729765, "psi_rad": 3.260157616590112, "kappa_radpm": 0.055266520240531136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 483, "s_m": 48.300000000000004, "d_m": 0.0, "x_m": 9.06956184494574, "y_m": -5.887411022799357, "d_right": 1.2166366168307419, "d_left": 1.310734698651534, "psi_rad": 3.266457354295995, "kappa_radpm": 0.02812354037733833, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 484, "s_m": 48.400000000000006, "d_m": 0.0, "x_m": 8.970399473762901, "y_m": -5.900007432385066, "d_right": 1.229237638799819, "d_left": 1.3208554399669175, "psi_rad": 3.2657823246655795, "kappa_radpm": -0.006243957765517116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 485, "s_m": 48.5, "d_m": 0.0, "x_m": 8.871182129473818, "y_m": -5.912175178647886, "d_right": 1.24141010431855, "d_left": 1.311414429172503, "psi_rad": 3.2652085627428917, "kappa_radpm": -0.004645266436638096, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 486, "s_m": 48.6, "d_m": 0.0, "x_m": 8.772001089949562, "y_m": -5.924658319598182, "d_right": 1.2379209091167422, "d_left": 1.309240116248758, "psi_rad": 3.264853271378252, "kappa_radpm": 0.008067001895906145, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 487, "s_m": 48.7, "d_m": 0.0, "x_m": 8.672772402559112, "y_m": -5.9367558968596015, "d_right": 1.2305852116847107, "d_left": 1.315071877893235, "psi_rad": 3.266821963122073, "kappa_radpm": 0.003118582065901876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 488, "s_m": 48.800000000000004, "d_m": 0.0, "x_m": 8.573643684133902, "y_m": -5.94962915126896, "d_right": 1.2321285899712109, "d_left": 1.3252470242776389, "psi_rad": 3.2654769877914323, "kappa_radpm": -0.043679247006966904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 489, "s_m": 48.900000000000006, "d_m": 0.0, "x_m": 8.474386748838542, "y_m": -5.96145927794469, "d_right": 1.2407010628849695, "d_left": 1.3249251077512376, "psi_rad": 3.2580861137206796, "kappa_radpm": -0.014024233288187915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 490, "s_m": 49.0, "d_m": 0.0, "x_m": 8.375078290214494, "y_m": -5.972865929608852, "d_right": 1.2521025168788085, "d_left": 1.3254132616326582, "psi_rad": 3.2626721411337947, "kappa_radpm": 0.05143548246032914, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 491, "s_m": 49.1, "d_m": 0.0, "x_m": 8.275929943009007, "y_m": -5.985606442880021, "d_right": 1.253021578832031, "d_left": 1.3320812174772394, "psi_rad": 3.2683732102127454, "kappa_radpm": 0.0459176648439108, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 492, "s_m": 49.2, "d_m": 0.0, "x_m": 8.176755901513284, "y_m": -5.998144936894986, "d_right": 1.2474837212410586, "d_left": 1.3228261452596448, "psi_rad": 3.271855674102577, "kappa_radpm": 0.049797520818910535, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 493, "s_m": 49.300000000000004, "d_m": 0.0, "x_m": 8.077701762883557, "y_m": -6.011575294561758, "d_right": 1.2508389661371417, "d_left": 1.3147765042920112, "psi_rad": 3.2783327143765275, "kappa_radpm": 0.006077847108469925, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 494, "s_m": 49.400000000000006, "d_m": 0.0, "x_m": 7.9786984453375975, "y_m": -6.0253973916476555, "d_right": 1.256804386315673, "d_left": 1.3139072592417322, "psi_rad": 3.273071243524271, "kappa_radpm": -0.08325888113533964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 495, "s_m": 49.5, "d_m": 0.0, "x_m": 7.879509708581791, "y_m": -6.0377845036052875, "d_right": 1.2672357611923786, "d_left": 1.3220632048971959, "psi_rad": 3.2616809381494596, "kappa_radpm": -0.0867446895342816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 496, "s_m": 49.6, "d_m": 0.0, "x_m": 7.780217227698769, "y_m": -6.049347903106614, "d_right": 1.2787834842582313, "d_left": 1.3220233720614356, "psi_rad": 3.2557223056174145, "kappa_radpm": -0.022394065760411586, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 497, "s_m": 49.7, "d_m": 0.0, "x_m": 7.680883716211683, "y_m": -6.060552560645215, "d_right": 1.2658696933135114, "d_left": 1.3108049405688595, "psi_rad": 3.2572021249973773, "kappa_radpm": 0.03154735742223025, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 498, "s_m": 49.800000000000004, "d_m": 0.0, "x_m": 7.581628767150379, "y_m": -6.07240944511977, "d_right": 1.2613657143209451, "d_left": 1.305667903007941, "psi_rad": 3.2620317771018605, "kappa_radpm": 0.018475829963691126, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 499, "s_m": 49.900000000000006, "d_m": 0.0, "x_m": 7.482408093331667, "y_m": -6.084573046889011, "d_right": 1.265078729034306, "d_left": 1.3078633968984488, "psi_rad": 3.2608972909901155, "kappa_radpm": -0.007698553115362827, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 500, "s_m": 50.0, "d_m": 0.0, "x_m": 7.383123802961198, "y_m": -6.09620501401247, "d_right": 1.276103152154884, "d_left": 1.318191098092373, "psi_rad": 3.260492066478788, "kappa_radpm": -0.01021045187013403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 501, "s_m": 50.1, "d_m": 0.0, "x_m": 7.283895878357061, "y_m": -6.108287890973278, "d_right": 1.2846469671616318, "d_left": 1.3132306824111575, "psi_rad": 3.2588552006160887, "kappa_radpm": -0.05283178906495323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 502, "s_m": 50.2, "d_m": 0.0, "x_m": 7.184578645116349, "y_m": -6.1195942278243525, "d_right": 1.2732018673631695, "d_left": 1.301952567479588, "psi_rad": 3.2499257086657973, "kappa_radpm": -0.051306159577246824, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 503, "s_m": 50.300000000000004, "d_m": 0.0, "x_m": 7.085148136299772, "y_m": -6.129903467796979, "d_right": 1.2685443065942748, "d_left": 1.292065713472898, "psi_rad": 3.2485939687006393, "kappa_radpm": 0.02615203442720926, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 504, "s_m": 50.400000000000006, "d_m": 0.0, "x_m": 6.98579976257912, "y_m": -6.140945377041845, "d_right": 1.2724863613682182, "d_left": 1.2891358393808316, "psi_rad": 3.255156115551239, "kappa_radpm": 0.03913538439580755, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 505, "s_m": 50.5, "d_m": 0.0, "x_m": 6.88651308857897, "y_m": -6.15255862728365, "d_right": 1.2824108986029485, "d_left": 1.2933722707432735, "psi_rad": 3.256421045579801, "kappa_radpm": -0.01418628580244885, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 506, "s_m": 50.6, "d_m": 0.0, "x_m": 6.787189600714683, "y_m": -6.163852231070685, "d_right": 1.2937201627552275, "d_left": 1.3055907926503947, "psi_rad": 3.2523188583907494, "kappa_radpm": -0.04738600641381652, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 507, "s_m": 50.7, "d_m": 0.0, "x_m": 6.687811119008521, "y_m": -6.174650500416013, "d_right": 1.2943524254788414, "d_left": 1.2964163205834907, "psi_rad": 3.2469438442970375, "kappa_radpm": -0.014884519817464081, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 508, "s_m": 50.800000000000004, "d_m": 0.0, "x_m": 6.588372491386721, "y_m": -6.184875686773773, "d_right": 1.2833928860940451, "d_left": 1.2862043531549496, "psi_rad": 3.2493419544272566, "kappa_radpm": -0.013464642341549649, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 509, "s_m": 50.900000000000006, "d_m": 0.0, "x_m": 6.489047790351872, "y_m": -6.196150378477735, "d_right": 1.2812241679174492, "d_left": 1.274946039308608, "psi_rad": 3.2442509158287276, "kappa_radpm": -0.0844510819635369, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 510, "s_m": 51.0, "d_m": 0.0, "x_m": 6.389509617076299, "y_m": -6.205362623176288, "d_right": 1.2847745573805338, "d_left": 1.2674604072622655, "psi_rad": 3.232451738034549, "kappa_radpm": -0.07772962332875721, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 511, "s_m": 51.1, "d_m": 0.0, "x_m": 6.289945582455503, "y_m": -6.214290568305007, "d_right": 1.2937088048261014, "d_left": 1.268121845476418, "psi_rad": 3.228704991162976, "kappa_radpm": -0.04503373621051576, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 512, "s_m": 51.2, "d_m": 0.0, "x_m": 6.1903412770464925, "y_m": -6.222756663691644, "d_right": 1.3021806007874004, "d_left": 1.2770943460817876, "psi_rad": 3.223444990792446, "kappa_radpm": -0.010792222916169436, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 513, "s_m": 51.300000000000004, "d_m": 0.0, "x_m": 6.090689187031506, "y_m": -6.230636691568698, "d_right": 1.2958548004979942, "d_left": 1.2901848315710562, "psi_rad": 3.2265465465797423, "kappa_radpm": 0.01022106193679484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 514, "s_m": 51.400000000000006, "d_m": 0.0, "x_m": 5.99113926667136, "y_m": -6.239720479827543, "d_right": 1.2851925793940784, "d_left": 1.2811041157043002, "psi_rad": 3.225489203179805, "kappa_radpm": -0.07019012912634626, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 515, "s_m": 51.5, "d_m": 0.0, "x_m": 5.891475469400412, "y_m": -6.247389358846272, "d_right": 1.2808385528329327, "d_left": 1.2734376097505589, "psi_rad": 3.212508520754473, "kappa_radpm": -0.07938144919553913, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 516, "s_m": 51.6, "d_m": 0.0, "x_m": 5.791723263065504, "y_m": -6.253885993021336, "d_right": 1.2831008688120848, "d_left": 1.2669427458337033, "psi_rad": 3.209612913340697, "kappa_radpm": 0.018118040369032862, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 517, "s_m": 51.7, "d_m": 0.0, "x_m": 5.692015188839284, "y_m": -6.260977661993457, "d_right": 1.2901935082610148, "d_left": 1.259853262454888, "psi_rad": 3.2161321288282796, "kappa_radpm": 0.04309544627489892, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 518, "s_m": 51.800000000000004, "d_m": 0.0, "x_m": 5.592356138762659, "y_m": -6.26877429786812, "d_right": 1.279955254082149, "d_left": 1.2520593080701403, "psi_rad": 3.218232002595677, "kappa_radpm": -0.007518752005779561, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 519, "s_m": 51.900000000000006, "d_m": 0.0, "x_m": 5.492675156604549, "y_m": -6.276284933581398, "d_right": 1.2689939042049072, "d_left": 1.2477263376253664, "psi_rad": 3.2146283784271237, "kappa_radpm": 0.007781536984641235, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 520, "s_m": 52.0, "d_m": 0.0, "x_m": 5.39296263020996, "y_m": -6.283363096462087, "d_right": 1.2654222305303218, "d_left": 1.2487783394345533, "psi_rad": 3.2197883099926052, "kappa_radpm": 0.055448431705169554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 521, "s_m": 52.1, "d_m": 0.0, "x_m": 5.293364432643402, "y_m": -6.2919020099729455, "d_right": 1.2711942150458522, "d_left": 1.251644956294879, "psi_rad": 3.2257180647681576, "kappa_radpm": -0.02810873510865175, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 522, "s_m": 52.2, "d_m": 0.0, "x_m": 5.1937427552879045, "y_m": -6.3001621986217495, "d_right": 1.2794496209904738, "d_left": 1.2627219629040782, "psi_rad": 3.214166562970875, "kappa_radpm": -0.11159019816831428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 523, "s_m": 52.300000000000004, "d_m": 0.0, "x_m": 5.093973919471563, "y_m": -6.306398017972424, "d_right": 1.2637418822625528, "d_left": 1.264427762139514, "psi_rad": 3.2034000251344947, "kappa_radpm": -0.03967160561419991, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 524, "s_m": 52.400000000000006, "d_m": 0.0, "x_m": 4.9941974582819455, "y_m": -6.312511298082361, "d_right": 1.2526871334961842, "d_left": 1.2583132791402836, "psi_rad": 3.206232241848035, "kappa_radpm": 0.05424079379984459, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 525, "s_m": 52.5, "d_m": 0.0, "x_m": 4.894469444897446, "y_m": -6.319311895993703, "d_right": 1.2502456322745523, "d_left": 1.2515111737961357, "psi_rad": 3.2142481838944637, "kappa_radpm": 0.06044750797534526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 526, "s_m": 52.6, "d_m": 0.0, "x_m": 4.7948037945614415, "y_m": -6.327023895944112, "d_right": 1.2566908399341505, "d_left": 1.2437972931026668, "psi_rad": 3.218321743443104, "kappa_radpm": 0.012061477802944864, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 527, "s_m": 52.7, "d_m": 0.0, "x_m": 4.695130555793258, "y_m": -6.334637074250337, "d_right": 1.2642926356593656, "d_left": 1.2361823313051559, "psi_rad": 3.2166604794550526, "kappa_radpm": -0.023315866139239638, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 528, "s_m": 52.800000000000004, "d_m": 0.0, "x_m": 4.595439863139805, "y_m": -6.342017888025576, "d_right": 1.2692698040441106, "d_left": 1.2287998883510816, "psi_rad": 3.213658570215256, "kappa_radpm": -0.006682239839523874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 529, "s_m": 52.900000000000006, "d_m": 0.0, "x_m": 4.495722770592597, "y_m": -6.349032508584283, "d_right": 1.2526710682902311, "d_left": 1.2217838378724517, "psi_rad": 3.215324031487148, "kappa_radpm": 0.008094149262571904, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 530, "s_m": 53.0, "d_m": 0.0, "x_m": 4.396061132007931, "y_m": -6.356745053447792, "d_right": 1.2446084307855372, "d_left": 1.2140695759490308, "psi_rad": 3.2152774000677704, "kappa_radpm": -0.014240133138612165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 531, "s_m": 53.1, "d_m": 0.0, "x_m": 4.2963433372579, "y_m": -6.36375037783407, "d_right": 1.2438390113862736, "d_left": 1.2070629039921854, "psi_rad": 3.2124760048594254, "kappa_radpm": -0.009888963561657249, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 532, "s_m": 53.2, "d_m": 0.0, "x_m": 4.196636105474587, "y_m": -6.370904690396435, "d_right": 1.2509990952161978, "d_left": 1.2046275360479133, "psi_rad": 3.213299607355439, "kappa_radpm": 0.001531038448816524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 533, "s_m": 53.300000000000004, "d_m": 0.0, "x_m": 4.096929967651576, "y_m": -6.378074262127756, "d_right": 1.2506959325403637, "d_left": 1.210455586874894, "psi_rad": 3.2127822125491887, "kappa_radpm": -0.031866999749046165, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 534, "s_m": 53.400000000000006, "d_m": 0.0, "x_m": 3.9972153958952035, "y_m": -6.38512539416683, "d_right": 1.2353588389081906, "d_left": 1.224560900441784, "psi_rad": 3.2069262074056297, "kappa_radpm": -0.03106320018345432, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 535, "s_m": 53.5, "d_m": 0.0, "x_m": 3.8974366341723656, "y_m": -6.3911264468204045, "d_right": 1.2269424218778717, "d_left": 1.2299582613449642, "psi_rad": 3.206569572512498, "kappa_radpm": 0.014113986584307625, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 536, "s_m": 53.6, "d_m": 0.0, "x_m": 3.797717937780772, "y_m": -6.398106398071551, "d_right": 1.2276207671356136, "d_left": 1.2229745810137294, "psi_rad": 3.2097490047224913, "kappa_radpm": -0.0025044459073431113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 537, "s_m": 53.7, "d_m": 0.0, "x_m": 3.6979778890358665, "y_m": -6.404741916215391, "d_right": 1.2342603376822054, "d_left": 1.2163357226655556, "psi_rad": 3.2060686833310292, "kappa_radpm": -0.014944047635436775, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 538, "s_m": 53.800000000000004, "d_m": 0.0, "x_m": 3.5982097838110514, "y_m": -6.410987746624977, "d_right": 1.229204580928738, "d_left": 1.2100870724043684, "psi_rad": 3.206760195195404, "kappa_radpm": -0.012669064228347793, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 539, "s_m": 53.900000000000006, "d_m": 0.0, "x_m": 3.498476054558657, "y_m": -6.417761395946525, "d_right": 1.2148175182403291, "d_left": 1.203309988758533, "psi_rad": 3.2035348704853597, "kappa_radpm": -0.07033337370898174, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 540, "s_m": 54.0, "d_m": 0.0, "x_m": 3.398670188223012, "y_m": -6.423363503509968, "d_right": 1.2073814913278624, "d_left": 1.1977057317027264, "psi_rad": 3.1926935204536075, "kappa_radpm": -0.07832854430092517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 541, "s_m": 54.1, "d_m": 0.0, "x_m": 3.298813591240761, "y_m": -6.427973211149584, "d_right": 1.2072058339317455, "d_left": 1.1930947362055377, "psi_rad": 3.1878691616251746, "kappa_radpm": 0.026736034518228813, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 542, "s_m": 54.2, "d_m": 0.0, "x_m": 3.1989598271554565, "y_m": -6.432612004516543, "d_right": 1.211845451278, "d_left": 1.19478805081161, "psi_rad": 3.1980407273572533, "kappa_radpm": 0.08081213239140794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 543, "s_m": 54.300000000000004, "d_m": 0.0, "x_m": 3.0992198323577025, "y_m": -6.439251876309991, "d_right": 1.2184868744898625, "d_left": 1.2028144217793002, "psi_rad": 3.2040315881034562, "kappa_radpm": -0.026296480883210016, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 544, "s_m": 54.400000000000006, "d_m": 0.0, "x_m": 2.9994281440967883, "y_m": -6.445086765877134, "d_right": 1.2090215791852457, "d_left": 1.2198019040218495, "psi_rad": 3.1927814311806113, "kappa_radpm": -0.11329573844913732, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 545, "s_m": 54.5, "d_m": 0.0, "x_m": 2.8995617979082127, "y_m": -6.449481063072603, "d_right": 1.19355967899121, "d_left": 1.229970612880067, "psi_rad": 3.1813724404136288, "kappa_radpm": -0.0841948546617477, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 546, "s_m": 54.6, "d_m": 0.0, "x_m": 2.7996616905800025, "y_m": -6.453037627152708, "d_right": 1.185510007655561, "d_left": 1.2422728832183387, "psi_rad": 3.1759424602482618, "kappa_radpm": -0.026090415791850674, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 547, "s_m": 54.7, "d_m": 0.0, "x_m": 2.6997529171302217, "y_m": -6.456347160165498, "d_right": 1.185615038449707, "d_left": 1.2626351112375347, "psi_rad": 3.1761543572552586, "kappa_radpm": 0.026437137792889587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 548, "s_m": 54.800000000000004, "d_m": 0.0, "x_m": 2.599854244925924, "y_m": -6.459946063834001, "d_right": 1.1892127895802314, "d_left": 1.2886364707034463, "psi_rad": 3.1812298878068397, "kappa_radpm": 0.08840705297606277, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 549, "s_m": 54.900000000000006, "d_m": 0.0, "x_m": 2.4999846376714276, "y_m": -6.464269571676381, "d_right": 1.1743521926389975, "d_left": 1.3087550608850422, "psi_rad": 3.193835767850471, "kappa_radpm": 0.18271041694822188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 550, "s_m": 55.0, "d_m": 0.0, "x_m": 2.400216765227339, "y_m": -6.470385246595251, "d_right": 1.1617666655878844, "d_left": 1.3343541689473435, "psi_rad": 3.217771971196484, "kappa_radpm": 0.25143029372907577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 551, "s_m": 55.1, "d_m": 0.0, "x_m": 2.300670695943059, "y_m": -6.4794826116915765, "d_right": 1.1606953006260539, "d_left": 1.3528716136927779, "psi_rad": 3.2441218265962863, "kappa_radpm": 0.25398708692660144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 552, "s_m": 55.2, "d_m": 0.0, "x_m": 2.2013589119179997, "y_m": -6.490845723224012, "d_right": 1.1704665996358454, "d_left": 1.3740025986614903, "psi_rad": 3.2685693885818043, "kappa_radpm": 0.26061358261960876, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 553, "s_m": 55.300000000000004, "d_m": 0.0, "x_m": 2.1023787826593576, "y_m": -6.504797268048488, "d_right": 1.184387042853982, "d_left": 1.399469393265326, "psi_rad": 3.296244543120208, "kappa_radpm": 0.28736570740269585, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 554, "s_m": 55.400000000000006, "d_m": 0.0, "x_m": 2.003850004863823, "y_m": -6.521636719412132, "d_right": 1.1778220659005576, "d_left": 1.4287269086350083, "psi_rad": 3.3260425300623435, "kappa_radpm": 0.3404672369410022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 555, "s_m": 55.5, "d_m": 0.0, "x_m": 1.9058779516295126, "y_m": -6.541458528278769, "d_right": 1.1805793033287921, "d_left": 1.459124538981867, "psi_rad": 3.3643379905084085, "kappa_radpm": 0.42575027582732794, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 556, "s_m": 55.6, "d_m": 0.0, "x_m": 1.8089397482818128, "y_m": -6.565784636849528, "d_right": 1.1962909793178265, "d_left": 1.4875580882135508, "psi_rad": 3.411192585227809, "kappa_radpm": 0.449247198916769, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 557, "s_m": 55.7, "d_m": 0.0, "x_m": 1.7132521941953363, "y_m": -6.594686316855616, "d_right": 1.2245455743891904, "d_left": 1.5165572085066779, "psi_rad": 3.4541874302917623, "kappa_radpm": 0.4006149870230402, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 558, "s_m": 55.800000000000004, "d_m": 0.0, "x_m": 1.6187479193814442, "y_m": -6.627252908532622, "d_right": 1.2547665267466657, "d_left": 1.537086386349517, "psi_rad": 3.491315582632417, "kappa_radpm": 0.3744868858617023, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 559, "s_m": 55.900000000000006, "d_m": 0.0, "x_m": 1.5254679944749623, "y_m": -6.663173944326892, "d_right": 1.2675873610865953, "d_left": 1.5603189100423625, "psi_rad": 3.529084807464103, "kappa_radpm": 0.37491750163532345, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 560, "s_m": 56.0, "d_m": 0.0, "x_m": 1.4336918121305786, "y_m": -6.702779180419587, "d_right": 1.2919017522912617, "d_left": 1.5857156979128102, "psi_rad": 3.566299082959482, "kappa_radpm": 0.3737104329166163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 561, "s_m": 56.1, "d_m": 0.0, "x_m": 1.343345575688173, "y_m": -6.745535074032427, "d_right": 1.3265593025536029, "d_left": 1.6136283707500014, "psi_rad": 3.603826894047426, "kappa_radpm": 0.3939637734248791, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 562, "s_m": 56.2, "d_m": 0.0, "x_m": 1.254802438269059, "y_m": -6.791908044559894, "d_right": 1.3712489048786727, "d_left": 1.643347271409199, "psi_rad": 3.6450918376444577, "kappa_radpm": 0.43921572447518376, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 563, "s_m": 56.300000000000004, "d_m": 0.0, "x_m": 1.1682856282888143, "y_m": -6.8419676712003685, "d_right": 1.4211862513554185, "d_left": 1.6745751675195462, "psi_rad": 3.691670038942463, "kappa_radpm": 0.49924275284056296, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 564, "s_m": 56.400000000000006, "d_m": 0.0, "x_m": 1.0844522039651678, "y_m": -6.8963688000879415, "d_right": 1.4556417072365015, "d_left": 1.7063268756813257, "psi_rad": 3.7449403882125702, "kappa_radpm": 0.5415819110011144, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 565, "s_m": 56.5, "d_m": 0.0, "x_m": 1.0037489484025557, "y_m": -6.955343764628901, "d_right": 1.5001007355123892, "d_left": 1.7352440058599816, "psi_rad": 3.7999864211426857, "kappa_radpm": 0.557266547722961, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 566, "s_m": 56.6, "d_m": 0.0, "x_m": 0.926394541258816, "y_m": -7.018631837230786, "d_right": 1.5543191319677019, "d_left": 1.7619686086970419, "psi_rad": 3.8563936977571625, "kappa_radpm": 0.5660186196365236, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 567, "s_m": 56.7, "d_m": 0.0, "x_m": 0.8528553494149465, "y_m": -7.086306028380798, "d_right": 1.6174312792470307, "d_left": 1.7857853961705132, "psi_rad": 3.9131901450699904, "kappa_radpm": 0.5841876363669707, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 568, "s_m": 56.800000000000004, "d_m": 0.0, "x_m": 0.7831781407312971, "y_m": -7.157948839400953, "d_right": 1.6880512441415831, "d_left": 1.8069563966157554, "psi_rad": 3.9732312250305566, "kappa_radpm": 0.6242322904814368, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 569, "s_m": 56.900000000000006, "d_m": 0.0, "x_m": 0.7182703528112409, "y_m": -7.233950751718838, "d_right": 1.763315889179101, "d_left": 1.823686194486605, "psi_rad": 4.038036603166278, "kappa_radpm": 0.6526596157341569, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 570, "s_m": 57.0, "d_m": 0.0, "x_m": 0.6584395989173074, "y_m": -7.313996278924511, "d_right": 1.8421732584787633, "d_left": 1.837710570055946, "psi_rad": 4.1037631481773875, "kappa_radpm": 0.7016929756194501, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 571, "s_m": 57.1, "d_m": 0.0, "x_m": 0.6040508145050965, "y_m": -7.397853136034271, "d_right": 1.9154442760398356, "d_left": 1.8504905661701754, "psi_rad": 4.178375198290167, "kappa_radpm": 0.7541281775196151, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 572, "s_m": 57.2, "d_m": 0.0, "x_m": 0.5567839993213062, "y_m": -7.485908861980783, "d_right": 1.9945464605700844, "d_left": 1.8603826046505438, "psi_rad": 4.254588783681311, "kappa_radpm": 0.7364872315879478, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 573, "s_m": 57.300000000000004, "d_m": 0.0, "x_m": 0.5157608921981622, "y_m": -7.5770448941749935, "d_right": 2.0780716680852014, "d_left": 1.868665841391632, "psi_rad": 4.325672644607757, "kappa_radpm": 0.7104458513481671, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 574, "s_m": 57.400000000000006, "d_m": 0.0, "x_m": 0.48144897107734097, "y_m": -7.670906493139502, "d_right": 2.1665097264566335, "d_left": 1.8750403131247695, "psi_rad": 4.396677953950944, "kappa_radpm": 0.7096201179896067, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 575, "s_m": 57.5, "d_m": 0.0, "x_m": 0.4537413377134939, "y_m": -7.7669184121090105, "d_right": 2.25873439337799, "d_left": 1.879788907691171, "psi_rad": 4.467596668205679, "kappa_radpm": 0.7179852564426481, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 576, "s_m": 57.6, "d_m": 0.0, "x_m": 0.43304378512195896, "y_m": -7.864680697341581, "d_right": 2.3539698518493095, "d_left": 1.8826214999354864, "psi_rad": 4.540275005239474, "kappa_radpm": 0.7226681440697025, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 577, "s_m": 57.7, "d_m": 0.0, "x_m": 0.4195353572942525, "y_m": -7.963692367818851, "d_right": 2.451412795356351, "d_left": 1.883460329201724, "psi_rad": 4.612130297019619, "kappa_radpm": 0.7084422447082206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 578, "s_m": 57.800000000000004, "d_m": 0.0, "x_m": 0.41305171036525956, "y_m": -8.063417043032537, "d_right": 2.550294019251518, "d_left": 1.882540040603697, "psi_rad": 4.681963454181118, "kappa_radpm": 0.698934135956959, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 579, "s_m": 57.900000000000006, "d_m": 0.0, "x_m": 0.4134584886702917, "y_m": -8.16336001934515, "d_right": 2.5940661743867675, "d_left": 1.880030393272926, "psi_rad": -1.5312681829685753, "kappa_radpm": 0.6954279998854318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 580, "s_m": 58.0, "d_m": 0.0, "x_m": 0.4209459821537932, "y_m": -8.263025703205937, "d_right": 2.49908006144576, "d_left": 1.872541372872935, "psi_rad": -1.4621362530213817, "kappa_radpm": 0.6807409039832213, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 581, "s_m": 58.1, "d_m": 0.0, "x_m": 0.43512274459817235, "y_m": -8.361951135799528, "d_right": 2.4069439299593363, "d_left": 1.8583594625847233, "psi_rad": -1.395120002171931, "kappa_radpm": 0.6551851634178218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 582, "s_m": 58.2, "d_m": 0.0, "x_m": 0.4558592077210276, "y_m": -8.459713096950727, "d_right": 2.3183958120919925, "d_left": 1.8407022123749366, "psi_rad": -1.3310992203378174, "kappa_radpm": 0.630093470226829, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 583, "s_m": 58.300000000000004, "d_m": 0.0, "x_m": 0.4825521534553922, "y_m": -8.556019239541902, "d_right": 2.233988992640572, "d_left": 1.8222628550122784, "psi_rad": -1.2691013081265652, "kappa_radpm": 0.6313144102952473, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 584, "s_m": 58.400000000000006, "d_m": 0.0, "x_m": 0.5152230763081064, "y_m": -8.650474438330553, "d_right": 2.1546168102469583, "d_left": 1.80296220828673, "psi_rad": -1.204836338278768, "kappa_radpm": 0.6443766719144994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 585, "s_m": 58.5, "d_m": 0.0, "x_m": 0.5540445366873192, "y_m": -8.742574986494466, "d_right": 2.081417082469741, "d_left": 1.7825281964651605, "psi_rad": -1.1402259737436653, "kappa_radpm": 0.6239200137316314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 586, "s_m": 58.6, "d_m": 0.0, "x_m": 0.5986123324284414, "y_m": -8.83202715849653, "d_right": 2.0074160463431787, "d_left": 1.7609346284964837, "psi_rad": -1.0800523355324416, "kappa_radpm": 0.5740976800804143, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 587, "s_m": 58.7, "d_m": 0.0, "x_m": 0.6482068153053583, "y_m": -8.91879526030859, "d_right": 1.931684899794999, "d_left": 1.734343123385183, "psi_rad": -1.0254064377275824, "kappa_radpm": 0.5085056370465035, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 588, "s_m": 58.800000000000004, "d_m": 0.0, "x_m": 0.7022715776100085, "y_m": -9.002862130764115, "d_right": 1.8581591088199252, "d_left": 1.7080690088668096, "psi_rad": -0.9783512081231409, "kappa_radpm": 0.47636974462215154, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 589, "s_m": 58.900000000000006, "d_m": 0.0, "x_m": 0.759808745002352, "y_m": -9.084597482742065, "d_right": 1.7902624063115955, "d_left": 1.6832166711861716, "psi_rad": -0.9301324888031521, "kappa_radpm": 0.47677367585881036, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 590, "s_m": 59.0, "d_m": 0.0, "x_m": 0.8217209175059121, "y_m": -9.163072911780198, "d_right": 1.7298134628480375, "d_left": 1.6560324695416009, "psi_rad": -0.8829964729513788, "kappa_radpm": 0.4578112142552748, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 591, "s_m": 59.1, "d_m": 0.0, "x_m": 0.8866922200644689, "y_m": -9.239023828972604, "d_right": 1.6698788893583563, "d_left": 1.6278816485077505, "psi_rad": -0.8385702459520972, "kappa_radpm": 0.4466498293466148, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 592, "s_m": 59.2, "d_m": 0.0, "x_m": 0.9553182911901743, "y_m": -9.311690395112278, "d_right": 1.6155560460232063, "d_left": 1.600675319201638, "psi_rad": -0.7936665070820559, "kappa_radpm": 0.4413899019210077, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 593, "s_m": 59.300000000000004, "d_m": 0.0, "x_m": 1.0268425128410892, "y_m": -9.381511119684621, "d_right": 1.569348762582432, "d_left": 1.575359147229071, "psi_rad": -0.7502922655678956, "kappa_radpm": 0.43756698911327163, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 594, "s_m": 59.400000000000006, "d_m": 0.0, "x_m": 1.1015029115649349, "y_m": -9.447955296015856, "d_right": 1.53258952420181, "d_left": 1.5515360475258904, "psi_rad": -0.7061531092594016, "kappa_radpm": 0.41220328268253725, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 595, "s_m": 59.5, "d_m": 0.0, "x_m": 1.1789048926204329, "y_m": -9.511199305988173, "d_right": 1.4878076357194838, "d_left": 1.529710754803274, "psi_rad": -0.6678516090313882, "kappa_radpm": 0.3849451350052324, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 596, "s_m": 59.6, "d_m": 0.0, "x_m": 1.25843802229952, "y_m": -9.571739943492254, "d_right": 1.4466178096248299, "d_left": 1.51077399268243, "psi_rad": -0.6291640822583551, "kappa_radpm": 0.37547517865458513, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 597, "s_m": 59.7, "d_m": 0.0, "x_m": 1.3405030005208871, "y_m": -9.628816098826704, "d_right": 1.4154061597054746, "d_left": 1.4931474346426652, "psi_rad": -0.5927565733004712, "kappa_radpm": 0.35337413316745225, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 598, "s_m": 59.800000000000004, "d_m": 0.0, "x_m": 1.4242360966759025, "y_m": -9.683414131185039, "d_right": 1.3835453186125115, "d_left": 1.4726078887343377, "psi_rad": -0.5584892556248646, "kappa_radpm": 0.33590855021699895, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 599, "s_m": 59.900000000000006, "d_m": 0.0, "x_m": 1.5100071737052005, "y_m": -9.734730265933027, "d_right": 1.3593116053196705, "d_left": 1.448876072196058, "psi_rad": -0.5255748632570714, "kappa_radpm": 0.2864784046897162, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 600, "s_m": 60.0, "d_m": 0.0, "x_m": 1.5971501513445665, "y_m": -9.78370221927017, "d_right": 1.3375967513763058, "d_left": 1.4290571067755573, "psi_rad": -0.5011935746869214, "kappa_radpm": 0.2551743022425379, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 601, "s_m": 60.1, "d_m": 0.0, "x_m": 1.6853316111812717, "y_m": -9.830782336620226, "d_right": 1.315353582543306, "d_left": 1.4138874371184529, "psi_rad": -0.4745400028085638, "kappa_radpm": 0.3001287861617663, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 602, "s_m": 60.2, "d_m": 0.0, "x_m": 1.774953268683179, "y_m": -9.87503800847607, "d_right": 1.2930674185330884, "d_left": 1.4025163796800133, "psi_rad": -0.4411678174545681, "kappa_radpm": 0.32285407304682323, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 603, "s_m": 60.300000000000004, "d_m": 0.0, "x_m": 1.8660740794721666, "y_m": -9.916130368599168, "d_right": 1.2809994902076096, "d_left": 1.388148390774062, "psi_rad": -0.40996918819919914, "kappa_radpm": 0.31007313694421224, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 604, "s_m": 60.400000000000006, "d_m": 0.0, "x_m": 1.9582878133500576, "y_m": -9.954714206596607, "d_right": 1.2656194212003746, "d_left": 1.371739920161495, "psi_rad": -0.3791531900657257, "kappa_radpm": 0.3365709814653728, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 605, "s_m": 60.5, "d_m": 0.0, "x_m": 2.0517556905568983, "y_m": -9.990111706668989, "d_right": 1.2588516769260267, "d_left": 1.3586619955648593, "psi_rad": -0.3426549919061246, "kappa_radpm": 0.34566324252928493, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 606, "s_m": 60.6, "d_m": 0.0, "x_m": 2.1465369176309776, "y_m": -10.021867726683315, "d_right": 1.2516936765800557, "d_left": 1.3454589013221474, "psi_rad": -0.3100205415598687, "kappa_radpm": 0.32109347044271264, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 607, "s_m": 60.7, "d_m": 0.0, "x_m": 2.242122449837287, "y_m": -10.05109572742571, "d_right": 1.2505149474779496, "d_left": 1.3336632989195654, "psi_rad": -0.27843629781758206, "kappa_radpm": 0.3172689891071301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 608, "s_m": 60.800000000000004, "d_m": 0.0, "x_m": 2.338720869838465, "y_m": -10.076805831866194, "d_right": 1.2507469406688394, "d_left": 1.3205818768632713, "psi_rad": -0.24656674373844267, "kappa_radpm": 0.2792484726777045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 609, "s_m": 60.900000000000006, "d_m": 0.0, "x_m": 2.4359736764087403, "y_m": -10.099885756342847, "d_right": 1.2549875847150218, "d_left": 1.3022757801030511, "psi_rad": -0.22258660328204116, "kappa_radpm": 0.19725470444295068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 610, "s_m": 61.0, "d_m": 0.0, "x_m": 2.533695525442962, "y_m": -10.120935800252765, "d_right": 1.2610944134066362, "d_left": 1.2835499330248998, "psi_rad": -0.20711580284985254, "kappa_radpm": 0.162588738356374, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 611, "s_m": 61.1, "d_m": 0.0, "x_m": 2.6316251570104123, "y_m": -10.140997818660004, "d_right": 1.2674994707509752, "d_left": 1.2683550049184205, "psi_rad": -0.19006885561076636, "kappa_radpm": 0.14950023667782308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 612, "s_m": 61.2, "d_m": 0.0, "x_m": 2.7300071449908447, "y_m": -10.15870443633455, "d_right": 1.2736426837780352, "d_left": 1.2543720934523088, "psi_rad": -0.17721575551428792, "kappa_radpm": 0.06799022766470042, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 613, "s_m": 61.300000000000004, "d_m": 0.0, "x_m": 2.8284201604908956, "y_m": -10.17624272914422, "d_right": 1.2848151858908623, "d_left": 1.248091400181354, "psi_rad": -0.17647081007782628, "kappa_radpm": 0.006299612806499599, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 614, "s_m": 61.400000000000006, "d_m": 0.0, "x_m": 2.926829151226238, "y_m": -10.19380287849957, "d_right": 1.2977848243887473, "d_left": 1.2460877461563993, "psi_rad": -0.175955832952988, "kappa_radpm": 0.005917410123637001, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 615, "s_m": 61.5, "d_m": 0.0, "x_m": 3.0252580688196606, "y_m": -10.211239426156977, "d_right": 1.305139374215652, "d_left": 1.2332330322388607, "psi_rad": -0.17528732805309888, "kappa_radpm": -0.022248094676073915, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 616, "s_m": 61.6, "d_m": 0.0, "x_m": 3.1236891998939593, "y_m": -10.228667766097157, "d_right": 1.3162606468189997, "d_left": 1.2283959071917625, "psi_rad": -0.18040545188820278, "kappa_radpm": -0.03541862720047195, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 617, "s_m": 61.7, "d_m": 0.0, "x_m": 3.2219358403147336, "y_m": -10.247111177600791, "d_right": 1.314201855950711, "d_left": 1.2279605104326425, "psi_rad": -0.18237105349319327, "kappa_radpm": -0.019026730299626093, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 618, "s_m": 61.800000000000004, "d_m": 0.0, "x_m": 3.32029794325169, "y_m": -10.264926381405362, "d_right": 1.317997692666142, "d_left": 1.2244698094733624, "psi_rad": -0.184210797948128, "kappa_radpm": -0.02449547058341328, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 619, "s_m": 61.900000000000006, "d_m": 0.0, "x_m": 3.418472408743232, "y_m": -10.283730484297802, "d_right": 1.3164457713822777, "d_left": 1.230127893204994, "psi_rad": -0.18727014760987593, "kappa_radpm": 0.0018011218480173952, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 620, "s_m": 62.0, "d_m": 0.0, "x_m": 3.516723052356566, "y_m": -10.302147072505834, "d_right": 1.3228623702125406, "d_left": 1.2362354609515218, "psi_rad": -0.18385057357852452, "kappa_radpm": 0.02943392974077419, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 621, "s_m": 62.1, "d_m": 0.0, "x_m": 3.6150278684717083, "y_m": -10.320280053672334, "d_right": 1.3370285857360673, "d_left": 1.2341944810954455, "psi_rad": -0.1813833616617211, "kappa_radpm": -0.016765131283519308, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 622, "s_m": 62.2, "d_m": 0.0, "x_m": 3.7133680896005803, "y_m": -10.338211587214419, "d_right": 1.3546854308717295, "d_left": 1.232511369400217, "psi_rad": -0.18720359983522838, "kappa_radpm": -0.08410484165596643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 623, "s_m": 62.300000000000004, "d_m": 0.0, "x_m": 3.811453777582597, "y_m": -10.35748735546876, "d_right": 1.354906703805401, "d_left": 1.24027743372087, "psi_rad": -0.19820432999291437, "kappa_radpm": -0.06291057678572076, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 624, "s_m": 62.400000000000006, "d_m": 0.0, "x_m": 3.9093749044402206, "y_m": -10.377577842328328, "d_right": 1.3616553298945342, "d_left": 1.2567905962352017, "psi_rad": -0.19978571519237254, "kappa_radpm": -0.008212813579014933, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 625, "s_m": 62.5, "d_m": 0.0, "x_m": 4.007397444397877, "y_m": -10.397163391939952, "d_right": 1.3635849006770708, "d_left": 1.2573559132161598, "psi_rad": -0.19984689270871736, "kappa_radpm": -0.028565132095037526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 626, "s_m": 62.6, "d_m": 0.0, "x_m": 4.105318733800375, "y_m": -10.417266390717383, "d_right": 1.3712442547457677, "d_left": 1.2593309515614837, "psi_rad": -0.20549874161138004, "kappa_radpm": -0.021307236022809484, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 627, "s_m": 62.7, "d_m": 0.0, "x_m": 4.203113738059298, "y_m": -10.437958725934172, "d_right": 1.3854958147216536, "d_left": 1.2695399516009, "psi_rad": -0.20410833991327926, "kappa_radpm": 0.011333799252007948, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 628, "s_m": 62.800000000000004, "d_m": 0.0, "x_m": 4.301089486202822, "y_m": -10.457789131808237, "d_right": 1.3881084864894997, "d_left": 1.2646271518835734, "psi_rad": -0.20323198176097845, "kappa_radpm": 0.0001214949616856753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 629, "s_m": 62.900000000000006, "d_m": 0.0, "x_m": 4.3989207461543955, "y_m": -10.47831005485282, "d_right": 1.3900784313108545, "d_left": 1.26830628915399, "psi_rad": -0.20408404092094212, "kappa_radpm": -0.00012129317705000808, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 630, "s_m": 63.0, "d_m": 0.0, "x_m": 4.496863648273205, "y_m": -10.498307617759549, "d_right": 1.3997361989472732, "d_left": 1.2792777270131093, "psi_rad": -0.20325624039638845, "kappa_radpm": -0.015807268346564873, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 631, "s_m": 63.1, "d_m": 0.0, "x_m": 4.594731823468718, "y_m": -10.518667174204866, "d_right": 1.4037445075000983, "d_left": 1.295603369408504, "psi_rad": -0.2072454945902551, "kappa_radpm": 0.006355136250194571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 632, "s_m": 63.2, "d_m": 0.0, "x_m": 4.692512050718217, "y_m": -10.539445528339, "d_right": 1.412635650784229, "d_left": 1.2931747382522238, "psi_rad": -0.20198521314634954, "kappa_radpm": 0.05810643941726479, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 633, "s_m": 63.300000000000004, "d_m": 0.0, "x_m": 4.7905889811529345, "y_m": -10.558774344362686, "d_right": 1.4177901356439488, "d_left": 1.296985914930464, "psi_rad": -0.19562420670680214, "kappa_radpm": 0.014618309798348772, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 634, "s_m": 63.400000000000006, "d_m": 0.0, "x_m": 4.888625608348902, "y_m": -10.578307085612373, "d_right": 1.4271206728480952, "d_left": 1.3010411725046127, "psi_rad": -0.19906155118667979, "kappa_radpm": 0.019291266106348237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 635, "s_m": 63.5, "d_m": 0.0, "x_m": 4.986567401188439, "y_m": -10.598309700146068, "d_right": 1.432540840449957, "d_left": 1.2990914739903086, "psi_rad": -0.1917659534855325, "kappa_radpm": 0.06999183133846287, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 636, "s_m": 63.6, "d_m": 0.0, "x_m": 5.084874638990984, "y_m": -10.616409174871366, "d_right": 1.44251310897753, "d_left": 1.3028886657208283, "psi_rad": -0.1850631849189872, "kappa_radpm": 0.03104218939098069, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 637, "s_m": 63.7, "d_m": 0.0, "x_m": 5.183073062061672, "y_m": -10.635096589429638, "d_right": 1.4501912185928305, "d_left": 1.3148903194476573, "psi_rad": -0.18555751560733635, "kappa_radpm": 0.0018609274423009303, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 638, "s_m": 63.800000000000004, "d_m": 0.0, "x_m": 5.281364738479976, "y_m": -10.65329369541789, "d_right": 1.459277617659554, "d_left": 1.3218516042477897, "psi_rad": -0.18469099943052703, "kappa_radpm": 0.006103860541164519, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 639, "s_m": 63.900000000000006, "d_m": 0.0, "x_m": 5.379596640531188, "y_m": -10.671811131665141, "d_right": 1.468024821172634, "d_left": 1.3198058348384099, "psi_rad": -0.18433674349910345, "kappa_radpm": -0.027483780510615397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 640, "s_m": 64.0, "d_m": 0.0, "x_m": 5.477901239212792, "y_m": -10.689938602329839, "d_right": 1.4764125776269272, "d_left": 1.3249230369404355, "psi_rad": -0.1901877555326501, "kappa_radpm": -0.05599885820556816, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 641, "s_m": 64.10000000000001, "d_m": 0.0, "x_m": 5.575906386349934, "y_m": -10.70960361298589, "d_right": 1.4848723061269284, "d_left": 1.3243570340684063, "psi_rad": -0.19553651514021708, "kappa_radpm": 0.0060576363809594636, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 642, "s_m": 64.2, "d_m": 0.0, "x_m": 5.674012518193828, "y_m": -10.728781835792176, "d_right": 1.4914357105556442, "d_left": 1.3242158757946219, "psi_rad": -0.1889762282564582, "kappa_radpm": 0.032401720677482926, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 643, "s_m": 64.3, "d_m": 0.0, "x_m": 5.772271614915685, "y_m": -10.74716011403979, "d_right": 1.502064490781929, "d_left": 1.3307904352087927, "psi_rad": -0.1890561710047205, "kappa_radpm": -0.03218601834919843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 644, "s_m": 64.4, "d_m": 0.0, "x_m": 5.870372757768548, "y_m": -10.766353654699525, "d_right": 1.5183962692946231, "d_left": 1.3456004010010247, "psi_rad": -0.1954134319262979, "kappa_radpm": -0.05162904040470928, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 645, "s_m": 64.5, "d_m": 0.0, "x_m": 5.968390707695093, "y_m": -10.785979809815686, "d_right": 1.5402865356823585, "d_left": 1.347092075050158, "psi_rad": -0.19938197908566235, "kappa_radpm": -0.06617893978399403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 646, "s_m": 64.60000000000001, "d_m": 0.0, "x_m": 6.066338614459287, "y_m": -10.805951828632535, "d_right": 1.5525787263037392, "d_left": 1.3491074110994234, "psi_rad": -0.2086492198830967, "kappa_radpm": -0.1209234967824202, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 647, "s_m": 64.7, "d_m": 0.0, "x_m": 6.163971139578638, "y_m": -10.827390192409903, "d_right": 1.5678503301717701, "d_left": 1.3593604268224668, "psi_rad": -0.2235666784421464, "kappa_radpm": -0.1687194286433391, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 648, "s_m": 64.8, "d_m": 0.0, "x_m": 6.2612795500950575, "y_m": -10.85027505387518, "d_right": 1.5859670151499023, "d_left": 1.358184309785565, "psi_rad": -0.24239310561176453, "kappa_radpm": -0.21258217289712333, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 649, "s_m": 64.9, "d_m": 0.0, "x_m": 6.358033737848391, "y_m": -10.875373065161451, "d_right": 1.5925492171663476, "d_left": 1.3666180687630445, "psi_rad": -0.26608311302157106, "kappa_radpm": -0.26185218304885627, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 650, "s_m": 65.0, "d_m": 0.0, "x_m": 6.454147850978981, "y_m": -10.902840495272907, "d_right": 1.602913182641566, "d_left": 1.3846514967053154, "psi_rad": -0.2947635422215358, "kappa_radpm": -0.29918856679508554, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 651, "s_m": 65.10000000000001, "d_m": 0.0, "x_m": 6.5493002667274345, "y_m": -10.93344310339359, "d_right": 1.6161647192332507, "d_left": 1.4078841993628604, "psi_rad": -0.32592082638058817, "kappa_radpm": -0.29134267850304485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 652, "s_m": 65.2, "d_m": 0.0, "x_m": 6.643515691093814, "y_m": -10.966841796748112, "d_right": 1.6294633911912746, "d_left": 1.4228111417092122, "psi_rad": -0.35303207792214475, "kappa_radpm": -0.3046644119199393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 653, "s_m": 65.3, "d_m": 0.0, "x_m": 6.736875103949433, "y_m": -11.002558503961549, "d_right": 1.6325138182821317, "d_left": 1.4431990168241489, "psi_rad": -0.38685370876457603, "kappa_radpm": -0.3706477100516081, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 654, "s_m": 65.4, "d_m": 0.0, "x_m": 6.82861769182344, "y_m": -11.042248972920378, "d_right": 1.6373880062933779, "d_left": 1.4685066231416501, "psi_rad": -0.4271616199324664, "kappa_radpm": -0.36975514366750617, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 655, "s_m": 65.5, "d_m": 0.0, "x_m": 6.918797284070378, "y_m": -11.085367678358699, "d_right": 1.644580446817334, "d_left": 1.4908317106092657, "psi_rad": -0.46080473749807727, "kappa_radpm": -0.32304435962475453, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 656, "s_m": 65.60000000000001, "d_m": 0.0, "x_m": 7.007663486237212, "y_m": -11.131136516297008, "d_right": 1.6548544282987836, "d_left": 1.5222104373334882, "psi_rad": -0.4917704918574173, "kappa_radpm": -0.35839078536882507, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 657, "s_m": 65.7, "d_m": 0.0, "x_m": 7.094990895420287, "y_m": -11.179748341202593, "d_right": 1.6650796803358086, "d_left": 1.562313288437065, "psi_rad": -0.5324828945718423, "kappa_radpm": -0.4313518811728412, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 658, "s_m": 65.8, "d_m": 0.0, "x_m": 7.179834659588095, "y_m": -11.232589610831402, "d_right": 1.6678792366971988, "d_left": 1.6024054569826012, "psi_rad": -0.5780408680919855, "kappa_radpm": -0.4607293804114443, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 659, "s_m": 65.9, "d_m": 0.0, "x_m": 7.262379293144455, "y_m": -11.288947837270827, "d_right": 1.6684192019912394, "d_left": 1.6447731165701613, "psi_rad": -0.6246287706541311, "kappa_radpm": -0.47212420230529517, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 660, "s_m": 66.0, "d_m": 0.0, "x_m": 7.341944363791848, "y_m": -11.349457758744098, "d_right": 1.662579292447356, "d_left": 1.694975177292271, "psi_rad": -0.6724657085530445, "kappa_radpm": -0.5094761922944091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 661, "s_m": 66.10000000000001, "d_m": 0.0, "x_m": 7.418731849594219, "y_m": -11.413447530110355, "d_right": 1.6582867866628175, "d_left": 1.7481492802098002, "psi_rad": -0.726524009113013, "kappa_radpm": -0.5529233027656089, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 662, "s_m": 66.2, "d_m": 0.0, "x_m": 7.49129381536926, "y_m": -11.482181193726966, "d_right": 1.6536604759009366, "d_left": 1.7853576414145433, "psi_rad": -0.7830503691061663, "kappa_radpm": -0.5517726911801968, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 663, "s_m": 66.3, "d_m": 0.0, "x_m": 7.560372399665011, "y_m": -11.554424551042176, "d_right": 1.6501241728712557, "d_left": 1.7798365532234028, "psi_rad": -0.8368785473490523, "kappa_radpm": -0.5656578205358453, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 664, "s_m": 66.4, "d_m": 0.0, "x_m": 7.625120063902387, "y_m": -11.630547679849531, "d_right": 1.6420750840085128, "d_left": 1.770210468142132, "psi_rad": -0.8961819332133354, "kappa_radpm": -0.5702156934010638, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 665, "s_m": 66.5, "d_m": 0.0, "x_m": 7.685157125406976, "y_m": -11.710445929924456, "d_right": 1.6280154603265002, "d_left": 1.7568439481544513, "psi_rad": -0.9509216860292651, "kappa_radpm": -0.5572690866962571, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 666, "s_m": 66.60000000000001, "d_m": 0.0, "x_m": 7.741207776815233, "y_m": -11.793199349738247, "d_right": 1.6137729201616144, "d_left": 1.7457761601325268, "psi_rad": -1.0076357505525868, "kappa_radpm": -0.5812320337427512, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 667, "s_m": 66.7, "d_m": 0.0, "x_m": 7.7918098961899265, "y_m": -11.879371061584063, "d_right": 1.5992289268267963, "d_left": 1.718199469642947, "psi_rad": -1.0671680927778153, "kappa_radpm": -0.5799229191331801, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 668, "s_m": 66.8, "d_m": 0.0, "x_m": 7.83763589341285, "y_m": -11.96819772198219, "d_right": 1.5853927044490808, "d_left": 1.6995796816862425, "psi_rad": -1.1236203343792228, "kappa_radpm": -0.5705765026803666, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 669, "s_m": 66.9, "d_m": 0.0, "x_m": 7.878210892926216, "y_m": -12.05953196741411, "d_right": 1.5719768321778518, "d_left": 1.676664218640492, "psi_rad": -1.1812833933138887, "kappa_radpm": -0.5805643413367911, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 670, "s_m": 67.0, "d_m": 0.0, "x_m": 7.913511559997293, "y_m": -12.153041367180078, "d_right": 1.5591488980069086, "d_left": 1.6553402867096865, "psi_rad": -1.239733202646581, "kappa_radpm": -0.5830695637183325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 671, "s_m": 67.10000000000001, "d_m": 0.0, "x_m": 7.943157263830094, "y_m": -12.248487118352953, "d_right": 1.5466970917435487, "d_left": 1.6457922276228596, "psi_rad": -1.2978973060575552, "kappa_radpm": -0.5332809749443856, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 672, "s_m": 67.2, "d_m": 0.0, "x_m": 7.967369086162853, "y_m": -12.345470961170111, "d_right": 1.5184690384793598, "d_left": 1.6385978269792747, "psi_rad": -1.3463893976354582, "kappa_radpm": -0.44616948189369676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 673, "s_m": 67.3, "d_m": 0.0, "x_m": 7.987633129843911, "y_m": -12.44334192433074, "d_right": 1.4912510866551325, "d_left": 1.6335979816428992, "psi_rad": -1.3871312024362945, "kappa_radpm": -0.4284696617316852, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 674, "s_m": 67.4, "d_m": 0.0, "x_m": 8.003871222295137, "y_m": -12.541974078239164, "d_right": 1.4663173092136224, "d_left": 1.634308378179469, "psi_rad": -1.4320833299817952, "kappa_radpm": -0.4353556935441594, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 675, "s_m": 67.5, "d_m": 0.0, "x_m": 8.015266821605344, "y_m": -12.641277435892562, "d_right": 1.4430578779550989, "d_left": 1.6283014701582919, "psi_rad": -1.4742023411451264, "kappa_radpm": -0.38620418229018405, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 676, "s_m": 67.60000000000001, "d_m": 0.0, "x_m": 8.023148557101752, "y_m": -12.740923756952713, "d_right": 1.4229477448687928, "d_left": 1.620416591301675, "psi_rad": -1.509324166439832, "kappa_radpm": -0.353266012747655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 677, "s_m": 67.7, "d_m": 0.0, "x_m": 8.027546304798786, "y_m": -12.8407825757664, "d_right": 1.4061883049507666, "d_left": 1.6160179092214886, "psi_rad": -1.5448555436946574, "kappa_radpm": -0.3599639311458347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 678, "s_m": 67.8, "d_m": 0.0, "x_m": 8.028332959831944, "y_m": -12.940734215819312, "d_right": 1.3927995758910536, "d_left": 1.6152311411952998, "psi_rad": 4.701868354510587, "kappa_radpm": -0.3649787922477543, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 679, "s_m": 67.9, "d_m": 0.0, "x_m": 8.025443527617552, "y_m": -13.040647072885003, "d_right": 1.382833080760963, "d_left": 1.6039091278164945, "psi_rad": 4.665334005035378, "kappa_radpm": -0.362852414347139, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 680, "s_m": 68.0, "d_m": 0.0, "x_m": 8.018931196535686, "y_m": -13.140390536234541, "d_right": 1.3763336614367858, "d_left": 1.5960397687150067, "psi_rad": 4.6292978716411595, "kappa_radpm": -0.3594071561195844, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 681, "s_m": 68.10000000000001, "d_m": 0.0, "x_m": 8.008854340327526, "y_m": -13.239837960752514, "d_right": 1.366335892257473, "d_left": 1.5928354769771498, "psi_rad": 4.5934525738114615, "kappa_radpm": -0.3561188027471318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 682, "s_m": 68.2, "d_m": 0.0, "x_m": 7.995213838414544, "y_m": -13.338861458475034, "d_right": 1.3600226748230617, "d_left": 1.5855415834667645, "psi_rad": 4.558074111091733, "kappa_radpm": -0.3428978756521861, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 683, "s_m": 68.3, "d_m": 0.0, "x_m": 7.978130799023368, "y_m": -13.437351520960005, "d_right": 1.3563489975618765, "d_left": 1.5841370492220177, "psi_rad": 4.524872998681024, "kappa_radpm": -0.31876693681199386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 684, "s_m": 68.4, "d_m": 0.0, "x_m": 7.957949520359824, "y_m": -13.535252852752752, "d_right": 1.3510579417287618, "d_left": 1.592170985465024, "psi_rad": 4.494320723729334, "kappa_radpm": -0.3024489321302859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 685, "s_m": 68.5, "d_m": 0.0, "x_m": 7.934884196587897, "y_m": -13.632514755783625, "d_right": 1.3501992136093324, "d_left": 1.5913740203872206, "psi_rad": 4.464383212254967, "kappa_radpm": -0.32901285689767024, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 686, "s_m": 68.60000000000001, "d_m": 0.0, "x_m": 7.908883473729633, "y_m": -13.72902226218335, "d_right": 1.353704525629639, "d_left": 1.5884340797462067, "psi_rad": 4.428518152349801, "kappa_radpm": -0.37677570522727466, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 687, "s_m": 68.7, "d_m": 0.0, "x_m": 7.878909059172425, "y_m": -13.82437475220814, "d_right": 1.3604359309708938, "d_left": 1.5904764889583176, "psi_rad": 4.389028071209512, "kappa_radpm": -0.3840113971223702, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 688, "s_m": 68.8, "d_m": 0.0, "x_m": 7.845373309037354, "y_m": -13.918534933575259, "d_right": 1.367457599932972, "d_left": 1.590504172834219, "psi_rad": 4.351715872925326, "kappa_radpm": -0.40927014048999455, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 689, "s_m": 68.9, "d_m": 0.0, "x_m": 7.808372304692463, "y_m": -14.011389812687524, "d_right": 1.3745739993579151, "d_left": 1.5844969069277683, "psi_rad": 4.307174043111512, "kappa_radpm": -0.4920574246865428, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 690, "s_m": 69.0, "d_m": 0.0, "x_m": 7.766597454142467, "y_m": -14.102181332293464, "d_right": 1.3837244477243906, "d_left": 1.5885651285489335, "psi_rad": 4.253304387988018, "kappa_radpm": -0.5197361935060774, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 691, "s_m": 69.10000000000001, "d_m": 0.0, "x_m": 7.719828394810119, "y_m": -14.190516389017017, "d_right": 1.394485158712105, "d_left": 1.590887382419733, "psi_rad": 4.203226804410297, "kappa_radpm": -0.506477758910695, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 692, "s_m": 69.2, "d_m": 0.0, "x_m": 7.669182654133927, "y_m": -14.276678749299734, "d_right": 1.3990671464888524, "d_left": 1.5883628217028478, "psi_rad": 4.152008836205878, "kappa_radpm": -0.5207467163499113, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 693, "s_m": 69.3, "d_m": 0.0, "x_m": 7.613625307205198, "y_m": -14.359769940386759, "d_right": 1.4004086858749685, "d_left": 1.5978865880261097, "psi_rad": 4.099077461140315, "kappa_radpm": -0.5216462368727504, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 694, "s_m": 69.4, "d_m": 0.0, "x_m": 7.554149129421942, "y_m": -14.440111266053165, "d_right": 1.4040937214350497, "d_left": 1.604962235469616, "psi_rad": 4.047679588831329, "kappa_radpm": -0.5239828743646591, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 695, "s_m": 69.5, "d_m": 0.0, "x_m": 7.490361045696311, "y_m": -14.5170592258969, "d_right": 1.4093975864682677, "d_left": 1.5965599051969965, "psi_rad": 3.9942808862673833, "kappa_radpm": -0.5118041296665288, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 696, "s_m": 69.60000000000001, "d_m": 0.0, "x_m": 7.422666840847379, "y_m": -14.590595811531932, "d_right": 1.4165854561132643, "d_left": 1.5963748160479045, "psi_rad": 3.945318762898023, "kappa_radpm": -0.4634851633459358, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 697, "s_m": 69.7, "d_m": 0.0, "x_m": 7.351656128387712, "y_m": -14.660944012013944, "d_right": 1.4261915123993116, "d_left": 1.5868819646903118, "psi_rad": 3.901583853598196, "kappa_radpm": -0.46955895100270206, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 698, "s_m": 69.8, "d_m": 0.0, "x_m": 7.277797090560115, "y_m": -14.72828505080995, "d_right": 1.4385988931261993, "d_left": 1.5751605923732983, "psi_rad": 3.8514069726974824, "kappa_radpm": -0.5515289839133475, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 699, "s_m": 69.9, "d_m": 0.0, "x_m": 7.200107008163365, "y_m": -14.791155903694808, "d_right": 1.4481957538486494, "d_left": 1.5482965286813242, "psi_rad": 3.7912780568155267, "kappa_radpm": -0.5744087697874845, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 700, "s_m": 70.0, "d_m": 0.0, "x_m": 7.118710240098129, "y_m": -14.849144621647559, "d_right": 1.4493559211728713, "d_left": 1.5198133426071343, "psi_rad": 3.7365252187399856, "kappa_radpm": -0.5079845015151463, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 701, "s_m": 70.10000000000001, "d_m": 0.0, "x_m": 7.0346076683773076, "y_m": -14.903153152019101, "d_right": 1.4525927152511757, "d_left": 1.4910205466987887, "psi_rad": 3.6896811565124974, "kappa_radpm": -0.47642023903952335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 702, "s_m": 70.2, "d_m": 0.0, "x_m": 6.948137614346467, "y_m": -14.953275502056055, "d_right": 1.457490027568755, "d_left": 1.4599637107300345, "psi_rad": 3.641241170932081, "kappa_radpm": -0.5005285841931073, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 703, "s_m": 70.3, "d_m": 0.0, "x_m": 6.859210070602529, "y_m": -14.998893263559967, "d_right": 1.4486487118934634, "d_left": 1.4402474021010647, "psi_rad": 3.589575439673876, "kappa_radpm": -0.4774145710876043, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 704, "s_m": 70.4, "d_m": 0.0, "x_m": 6.768022598151631, "y_m": -15.03983329778346, "d_right": 1.4384034909097179, "d_left": 1.42471515089174, "psi_rad": 3.54575825671456, "kappa_radpm": -0.4075290501710871, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 705, "s_m": 70.5, "d_m": 0.0, "x_m": 6.675432623951255, "y_m": -15.0774971071011, "d_right": 1.4315006363794016, "d_left": 1.4060176957957944, "psi_rad": 3.5080696296396585, "kappa_radpm": -0.40356563463031403, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 706, "s_m": 70.60000000000001, "d_m": 0.0, "x_m": 6.581417729704037, "y_m": -15.111455167703712, "d_right": 1.4247246058087435, "d_left": 1.386750090136312, "psi_rad": 3.465045129788497, "kappa_radpm": -0.4007384427457916, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 707, "s_m": 70.7, "d_m": 0.0, "x_m": 6.485931655206708, "y_m": -15.141022651361945, "d_right": 1.416713310729584, "d_left": 1.3791210090250983, "psi_rad": 3.4279219410905, "kappa_radpm": -0.32178592297033237, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 708, "s_m": 70.8, "d_m": 0.0, "x_m": 6.389658309079223, "y_m": -15.167912890535483, "d_right": 1.4117955989537931, "d_left": 1.3796244776293853, "psi_rad": 3.4006879451944307, "kappa_radpm": -0.2870403294897361, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 709, "s_m": 70.9, "d_m": 0.0, "x_m": 6.292703122576372, "y_m": -15.19223846178348, "d_right": 1.399352712460241, "d_left": 1.3783892076375834, "psi_rad": 3.370513875192553, "kappa_radpm": -0.2925197410386682, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 710, "s_m": 71.0, "d_m": 0.0, "x_m": 6.194987694158617, "y_m": -15.21327225905564, "d_right": 1.3906085531451216, "d_left": 1.3693775828581378, "psi_rad": 3.342183996986697, "kappa_radpm": -0.23281599867357894, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 711, "s_m": 71.10000000000001, "d_m": 0.0, "x_m": 6.096808575672359, "y_m": -15.23206886782341, "d_right": 1.3843379157010072, "d_left": 1.360662151877241, "psi_rad": 3.323950675457837, "kappa_radpm": -0.15886715752109204, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 712, "s_m": 71.2, "d_m": 0.0, "x_m": 5.99838236607302, "y_m": -15.24952759529964, "d_right": 1.3728838050181005, "d_left": 1.3606218278977353, "psi_rad": 3.3104105654824787, "kappa_radpm": -0.14137048623514836, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 713, "s_m": 71.3, "d_m": 0.0, "x_m": 5.899729317363885, "y_m": -15.265659085952837, "d_right": 1.3631374657229332, "d_left": 1.3692435791547266, "psi_rad": 3.2956765782108075, "kappa_radpm": -0.14693565848904022, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 714, "s_m": 71.4, "d_m": 0.0, "x_m": 5.800835300149036, "y_m": -15.280209623811777, "d_right": 1.3496526693207889, "d_left": 1.3739112486968617, "psi_rad": 3.2810234337846707, "kappa_radpm": -0.10407760217676643, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 715, "s_m": 71.5, "d_m": 0.0, "x_m": 5.70175164525027, "y_m": -15.293443553104295, "d_right": 1.3369995034987654, "d_left": 1.3826257163929916, "psi_rad": 3.274861057775454, "kappa_radpm": -0.01811151046168913, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 716, "s_m": 71.60000000000001, "d_m": 0.0, "x_m": 5.602681004362926, "y_m": -15.30677478702819, "d_right": 1.3231599685979476, "d_left": 1.3816055938571061, "psi_rad": 3.277401131692333, "kappa_radpm": -0.008786165226859488, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 717, "s_m": 71.7, "d_m": 0.0, "x_m": 5.50366620036295, "y_m": -15.320511856303847, "d_right": 1.3171944072699984, "d_left": 1.3835382449624063, "psi_rad": 3.2731038247300823, "kappa_radpm": -0.05173903542138092, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 718, "s_m": 71.8, "d_m": 0.0, "x_m": 5.404487584282567, "y_m": -15.332990747018638, "d_right": 1.317533184783129, "d_left": 1.3884769096956064, "psi_rad": 3.2670533246080566, "kappa_radpm": -0.02925508545632116, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 719, "s_m": 71.9, "d_m": 0.0, "x_m": 5.305314595369168, "y_m": -15.345528577271548, "d_right": 1.325491186222576, "d_left": 1.3823028837846074, "psi_rad": 3.267252807638818, "kappa_radpm": 0.008059867692824518, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 720, "s_m": 72.0, "d_m": 0.0, "x_m": 5.2061389687295625, "y_m": -15.358047288540336, "d_right": 1.3197250569387786, "d_left": 1.3833628297283165, "psi_rad": 3.2686652981466215, "kappa_radpm": -0.0006583907062962524, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 721, "s_m": 72.10000000000001, "d_m": 0.0, "x_m": 5.107007438164538, "y_m": -15.370864509492426, "d_right": 1.3141459502851351, "d_left": 1.391320759977471, "psi_rad": 3.267121129497559, "kappa_radpm": -0.03051228147095575, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 722, "s_m": 72.2, "d_m": 0.0, "x_m": 5.00779358186143, "y_m": -15.383076888092976, "d_right": 1.3155472415801341, "d_left": 1.396489597890543, "psi_rad": 3.2625628418524304, "kappa_radpm": -0.002234958642590712, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 723, "s_m": 72.3, "d_m": 0.0, "x_m": 4.9085440314610365, "y_m": -15.394990464829103, "d_right": 1.3242143378358768, "d_left": 1.3993335414100299, "psi_rad": 3.2666741377690407, "kappa_radpm": 0.05274421680161012, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 724, "s_m": 72.4, "d_m": 0.0, "x_m": 4.809437782627827, "y_m": -15.408017731362621, "d_right": 1.3372373177259913, "d_left": 1.4081661885093917, "psi_rad": 3.2731116852127524, "kappa_radpm": 0.03489543791302285, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 725, "s_m": 72.5, "d_m": 0.0, "x_m": 4.710350066168057, "y_m": -15.421208082097143, "d_right": 1.3290553800342135, "d_left": 1.4015706171686364, "psi_rad": 3.2736532253516453, "kappa_radpm": 0.027401713926966664, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 726, "s_m": 72.60000000000001, "d_m": 0.0, "x_m": 4.611253360919806, "y_m": -15.434343296877563, "d_right": 1.3251997598924499, "d_left": 1.3972856171189159, "psi_rad": 3.2785920279981458, "kappa_radpm": 0.029459859154843393, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 727, "s_m": 72.7, "d_m": 0.0, "x_m": 4.512300736855016, "y_m": -15.448511749722156, "d_right": 1.3299137585210035, "d_left": 1.3991011191093243, "psi_rad": 3.279545197182614, "kappa_radpm": 0.007461620295980964, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 728, "s_m": 72.8, "d_m": 0.0, "x_m": 4.413233527485806, "y_m": -15.46183525720324, "d_right": 1.3412344308931, "d_left": 1.408874184003313, "psi_rad": 3.280084352057342, "kappa_radpm": 0.02479387928740806, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 729, "s_m": 72.9, "d_m": 0.0, "x_m": 4.31429450827105, "y_m": -15.476110643127216, "d_right": 1.355490523701672, "d_left": 1.3976795113689353, "psi_rad": 3.2845039730400956, "kappa_radpm": -0.02006641071701676, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 730, "s_m": 73.0, "d_m": 0.0, "x_m": 4.215344564992684, "y_m": -15.49030994671582, "d_right": 1.3545399722376055, "d_left": 1.3935561006066017, "psi_rad": 3.2760710699139386, "kappa_radpm": -0.05856135434575194, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 731, "s_m": 73.10000000000001, "d_m": 0.0, "x_m": 4.116182028030822, "y_m": -15.502914267077355, "d_right": 1.3513692634399004, "d_left": 1.3981983580622694, "psi_rad": 3.272791702170945, "kappa_radpm": 0.0174298246474347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 732, "s_m": 73.2, "d_m": 0.0, "x_m": 4.017143988345989, "y_m": -15.516463910675354, "d_right": 1.355206259922676, "d_left": 1.408587482937871, "psi_rad": 3.2795570348434255, "kappa_radpm": 0.06465034986945284, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 733, "s_m": 73.3, "d_m": 0.0, "x_m": 3.918157911964889, "y_m": -15.530409211309124, "d_right": 1.3610062624395167, "d_left": 1.405920171358244, "psi_rad": 3.2857217721448357, "kappa_radpm": 0.03408430369399973, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 734, "s_m": 73.4, "d_m": 0.0, "x_m": 3.8192952503647652, "y_m": -15.545178784090439, "d_right": 1.3678061911590487, "d_left": 1.409519593149852, "psi_rad": 3.2863738955822255, "kappa_radpm": -0.00045147768708009295, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 735, "s_m": 73.5, "d_m": 0.0, "x_m": 3.7203274768946923, "y_m": -15.559253168176747, "d_right": 1.3603279612147978, "d_left": 1.4118000241147457, "psi_rad": 3.2856314766074197, "kappa_radpm": 0.04060998723548703, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 736, "s_m": 73.60000000000001, "d_m": 0.0, "x_m": 3.6214423567000034, "y_m": -15.57387601932951, "d_right": 1.3607291104128987, "d_left": 1.4025875041109486, "psi_rad": 3.294495893029323, "kappa_radpm": 0.047982526080772026, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 737, "s_m": 73.7, "d_m": 0.0, "x_m": 3.5227416847363013, "y_m": -15.589702341014156, "d_right": 1.3696603891626746, "d_left": 1.3992496986215466, "psi_rad": 3.295227981823574, "kappa_radpm": -0.016760256718235667, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 738, "s_m": 73.8, "d_m": 0.0, "x_m": 3.4238750949102794, "y_m": -15.604470424969863, "d_right": 1.3844578919798691, "d_left": 1.404111937181625, "psi_rad": 3.2911438416856758, "kappa_radpm": -0.04220450946999854, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 739, "s_m": 73.9, "d_m": 0.0, "x_m": 3.3250463655978333, "y_m": -15.619490317605813, "d_right": 1.3877533792608765, "d_left": 1.4086008666522056, "psi_rad": 3.2867870799295744, "kappa_radpm": -0.05322386892494091, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 740, "s_m": 74.0, "d_m": 0.0, "x_m": 3.226057954299899, "y_m": -15.633395920992005, "d_right": 1.3815348344678395, "d_left": 1.408377709559453, "psi_rad": 3.2804990679006876, "kappa_radpm": -0.020019110858444655, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 741, "s_m": 74.10000000000001, "d_m": 0.0, "x_m": 3.127050640839644, "y_m": -15.647171459015903, "d_right": 1.382403258598505, "d_left": 1.4134581004440372, "psi_rad": 3.2827832577578855, "kappa_radpm": 0.02222589344243797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 742, "s_m": 74.2, "d_m": 0.0, "x_m": 3.02812619277208, "y_m": -15.661529218667228, "d_right": 1.3910598571466075, "d_left": 1.410581975058803, "psi_rad": 3.284944246589175, "kappa_radpm": -0.014211929762848463, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 743, "s_m": 74.3, "d_m": 0.0, "x_m": 2.929176919140478, "y_m": -15.675732883489777, "d_right": 1.4052829689734723, "d_left": 1.4041961853126668, "psi_rad": 3.279940871805316, "kappa_radpm": -0.023289404982933526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 744, "s_m": 74.4, "d_m": 0.0, "x_m": 2.830114118542417, "y_m": -15.689099964655936, "d_right": 1.403260841804015, "d_left": 1.405755186669104, "psi_rad": 3.2802863655925885, "kappa_radpm": 0.027576170587177984, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 745, "s_m": 74.5, "d_m": 0.0, "x_m": 2.731179801802461, "y_m": -15.703371283258235, "d_right": 1.3987855976385208, "d_left": 1.413487475177648, "psi_rad": 3.2854561059227514, "kappa_radpm": 0.027146427321720346, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 746, "s_m": 74.60000000000001, "d_m": 0.0, "x_m": 2.6322599821614996, "y_m": -15.717761953270793, "d_right": 1.4015639047675652, "d_left": 1.4142330946115167, "psi_rad": 3.2857156510569325, "kappa_radpm": 0.034049654833934184, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 747, "s_m": 74.7, "d_m": 0.0, "x_m": 2.5333280328392127, "y_m": -15.732085359999095, "d_right": 1.4113666576893464, "d_left": 1.415982377183173, "psi_rad": 3.2922660368895382, "kappa_radpm": 0.06216630906303422, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 748, "s_m": 74.8, "d_m": 0.0, "x_m": 2.4346075188775873, "y_m": -15.747770351310114, "d_right": 1.4082259053947128, "d_left": 1.4233912830449547, "psi_rad": 3.2981489128695394, "kappa_radpm": 0.03797539856273957, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 749, "s_m": 74.9, "d_m": 0.0, "x_m": 2.33585110184057, "y_m": -15.763256695086923, "d_right": 1.4062263554207655, "d_left": 1.4199484274336904, "psi_rad": 3.299861116602086, "kappa_radpm": 0.019429951556735325, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 750, "s_m": 75.0, "d_m": 0.0, "x_m": 2.2371807946104543, "y_m": -15.779280312610735, "d_right": 1.4097919209099599, "d_left": 1.414324413557651, "psi_rad": 3.3020349031808864, "kappa_radpm": 0.012809470871308903, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 751, "s_m": 75.10000000000001, "d_m": 0.0, "x_m": 2.13849823626006, "y_m": -15.795194952772265, "d_right": 1.402271387241755, "d_left": 1.415862897584853, "psi_rad": 3.302423010776348, "kappa_radpm": 0.03158514390400047, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 752, "s_m": 75.2, "d_m": 0.0, "x_m": 2.0398403128972404, "y_m": -15.811295166330153, "d_right": 1.402043067577866, "d_left": 1.4139190301374467, "psi_rad": 3.3083519319616865, "kappa_radpm": 0.03392687606294409, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 753, "s_m": 75.3, "d_m": 0.0, "x_m": 1.9413478862165925, "y_m": -15.828379783190886, "d_right": 1.409917295029206, "d_left": 1.4081928291415553, "psi_rad": 3.3092083859889367, "kappa_radpm": 0.006706971957868291, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 754, "s_m": 75.4, "d_m": 0.0, "x_m": 1.8427174447504515, "y_m": -15.84464900594954, "d_right": 1.4206636777378194, "d_left": 1.4103762321375757, "psi_rad": 3.30969332635326, "kappa_radpm": 0.05629370049276439, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 755, "s_m": 75.5, "d_m": 0.0, "x_m": 1.7442416329189552, "y_m": -15.86182914094617, "d_right": 1.4157163205079162, "d_left": 1.4147786243946614, "psi_rad": 3.3204671260874896, "kappa_radpm": 0.08987613148192963, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 756, "s_m": 75.60000000000001, "d_m": 0.0, "x_m": 1.6459847612895555, "y_m": -15.880219646279663, "d_right": 1.4190447373020418, "d_left": 1.4088822826301741, "psi_rad": 3.327668552649646, "kappa_radpm": 0.023829992513464404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 757, "s_m": 75.7, "d_m": 0.0, "x_m": 1.5477681463276545, "y_m": -15.898815990750647, "d_right": 1.4207956357428182, "d_left": 1.409856117069367, "psi_rad": 3.3252331245901825, "kappa_radpm": 0.001578948242109135, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 758, "s_m": 75.8, "d_m": 0.0, "x_m": 1.4494241849365737, "y_m": -15.916727442897413, "d_right": 1.417732129988222, "d_left": 1.4116022064088438, "psi_rad": 3.327984342298068, "kappa_radpm": 0.06103568441914842, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 759, "s_m": 75.9, "d_m": 0.0, "x_m": 1.3513117099187604, "y_m": -15.935863872150179, "d_right": 1.4229503832801784, "d_left": 1.4060920116618019, "psi_rad": 3.337440261474012, "kappa_radpm": 0.05932026014868086, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 760, "s_m": 76.0, "d_m": 0.0, "x_m": 1.2533233274225866, "y_m": -15.95563201495852, "d_right": 1.4238064427614607, "d_left": 1.4070335528870657, "psi_rad": 3.339848394327804, "kappa_radpm": 0.018250624603446397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 761, "s_m": 76.10000000000001, "d_m": 0.0, "x_m": 1.155302748973502, "y_m": -15.975241041842352, "d_right": 1.4236125567926243, "d_left": 1.415215012103008, "psi_rad": 3.3410903863947015, "kappa_radpm": 0.04609915364992112, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 762, "s_m": 76.2, "d_m": 0.0, "x_m": 1.0573700161924617, "y_m": -15.995251262889486, "d_right": 1.4308292101708935, "d_left": 1.4210137026938305, "psi_rad": 3.3490682250577883, "kappa_radpm": 0.07366935751261128, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 763, "s_m": 76.3, "d_m": 0.0, "x_m": 0.9596749900085253, "y_m": -16.016421613448273, "d_right": 1.4310560558211236, "d_left": 1.415246296013476, "psi_rad": 3.3558242578972237, "kappa_radpm": 0.04342619509183354, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 764, "s_m": 76.4, "d_m": 0.0, "x_m": 0.8620153318262037, "y_m": -16.037754641987185, "d_right": 1.4237436091134552, "d_left": 1.4096800850544522, "psi_rad": 3.357753464076155, "kappa_radpm": 0.053242489480345156, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 765, "s_m": 76.5, "d_m": 0.0, "x_m": 0.7644030330396158, "y_m": -16.059301712282476, "d_right": 1.4206452465697228, "d_left": 1.410971600640173, "psi_rad": 3.3664727557932927, "kappa_radpm": 0.07962794925731931, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 766, "s_m": 76.60000000000001, "d_m": 0.0, "x_m": 0.6671303940410113, "y_m": -16.082334414653324, "d_right": 1.426090674636522, "d_left": 1.4178052492269508, "psi_rad": 3.373679053927619, "kappa_radpm": 0.046401397500202, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 767, "s_m": 76.7, "d_m": 0.0, "x_m": 0.5698388210746502, "y_m": -16.105286034637974, "d_right": 1.4370726304184642, "d_left": 1.4189405777238497, "psi_rad": 3.375753035293333, "kappa_radpm": 0.04004406237068103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 768, "s_m": 76.80000000000001, "d_m": 0.0, "x_m": 0.4726617606030739, "y_m": -16.128722210578555, "d_right": 1.4360767712062579, "d_left": 1.4195786147044673, "psi_rad": 3.381687866401755, "kappa_radpm": 0.05390670918398843, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 769, "s_m": 76.9, "d_m": 0.0, "x_m": 0.37565057135587454, "y_m": -16.152826739730703, "d_right": 1.4307731212139596, "d_left": 1.413505856059434, "psi_rad": 3.386534377130131, "kappa_radpm": 0.037248157401341686, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 770, "s_m": 77.0, "d_m": 0.0, "x_m": 0.27870495348497965, "y_m": -16.17720379995135, "d_right": 1.4299280034541224, "d_left": 1.4106064880970175, "psi_rad": 3.3891374978820235, "kappa_radpm": 0.053895125508818253, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 771, "s_m": 77.10000000000001, "d_m": 0.0, "x_m": 0.18181820329406456, "y_m": -16.20181366921311, "d_right": 1.426095304425316, "d_left": 1.4048277418161597, "psi_rad": 3.3973134022318945, "kappa_radpm": 0.11902042186185291, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 772, "s_m": 77.2, "d_m": 0.0, "x_m": 0.08528785035167191, "y_m": -16.227771665023827, "d_right": 1.4286267800936843, "d_left": 1.4047562188398883, "psi_rad": 3.412941582254394, "kappa_radpm": 0.1459912785898787, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 773, "s_m": 77.30000000000001, "d_m": 0.0, "x_m": -0.010782043550674825, "y_m": -16.255397162826412, "d_right": 1.4288590271896089, "d_left": 1.4100586254997165, "psi_rad": 3.4265116579498702, "kappa_radpm": 0.12093257891836018, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 774, "s_m": 77.4, "d_m": 0.0, "x_m": -0.10657538115100569, "y_m": -16.283966037389803, "d_right": 1.4281495679413336, "d_left": 1.4214123200331152, "psi_rad": 3.437128098038066, "kappa_radpm": 0.14990806515273292, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 775, "s_m": 77.5, "d_m": 0.0, "x_m": -0.20203657784262377, "y_m": -16.313624835223557, "d_right": 1.4314868668896141, "d_left": 1.4263252198774368, "psi_rad": 3.456493270980417, "kappa_radpm": 0.21478517347068848, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 776, "s_m": 77.60000000000001, "d_m": 0.0, "x_m": -0.2966469057532226, "y_m": -16.345879843155462, "d_right": 1.42617845216742, "d_left": 1.4289740543343712, "psi_rad": 3.4800851327322038, "kappa_radpm": 0.21269730141674437, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 777, "s_m": 77.7, "d_m": 0.0, "x_m": -0.39060211786129767, "y_m": -16.380007754193567, "d_right": 1.4265284474421276, "d_left": 1.4360080678860214, "psi_rad": 3.4990327312637657, "kappa_radpm": 0.2091820229239616, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 778, "s_m": 77.80000000000001, "d_m": 0.0, "x_m": -0.4839267319650499, "y_m": -16.415825683635422, "d_right": 1.4185045515631016, "d_left": 1.4322536093321538, "psi_rad": 3.521921537316996, "kappa_radpm": 0.2603539375864372, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 779, "s_m": 77.9, "d_m": 0.0, "x_m": -0.5762171588892302, "y_m": -16.454215556604748, "d_right": 1.4202716798091854, "d_left": 1.4293273658179848, "psi_rad": 3.551103518781053, "kappa_radpm": 0.27060285235493975, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 780, "s_m": 78.0, "d_m": 0.0, "x_m": -0.6672936397860846, "y_m": -16.495416052144346, "d_right": 1.4320786366286375, "d_left": 1.4303268930213846, "psi_rad": 3.576042107787984, "kappa_radpm": 0.261271664145033, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 781, "s_m": 78.10000000000001, "d_m": 0.0, "x_m": -0.7575578344083644, "y_m": -16.538360784164063, "d_right": 1.4465017807204312, "d_left": 1.4312919505475932, "psi_rad": 3.6033578516100597, "kappa_radpm": 0.2985296950034888, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 782, "s_m": 78.2, "d_m": 0.0, "x_m": -0.8462403769009973, "y_m": -16.58446875201201, "d_right": 1.4546309299916103, "d_left": 1.4227659468780756, "psi_rad": 3.635748046788682, "kappa_radpm": 0.3152218415268404, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 783, "s_m": 78.30000000000001, "d_m": 0.0, "x_m": -0.9335371695180381, "y_m": -16.633167477423413, "d_right": 1.4571318193935978, "d_left": 1.4169502517958987, "psi_rad": 3.666402219915428, "kappa_radpm": 0.3167743685317559, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 784, "s_m": 78.4, "d_m": 0.0, "x_m": -1.019224536543881, "y_m": -16.684620662128463, "d_right": 1.4637336043012241, "d_left": 1.4149850932995933, "psi_rad": 3.699102920495033, "kappa_radpm": 0.32837628683704434, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 785, "s_m": 78.5, "d_m": 0.0, "x_m": -1.1031517884217334, "y_m": -16.738919914646775, "d_right": 1.4639300185388509, "d_left": 1.416731978608631, "psi_rad": 3.7320774772828367, "kappa_radpm": 0.3348438939892384, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 786, "s_m": 78.60000000000001, "d_m": 0.0, "x_m": -1.1852636846013584, "y_m": -16.795909737098974, "d_right": 1.4712075754963623, "d_left": 1.4158467830323438, "psi_rad": 3.7660716992928807, "kappa_radpm": 0.3385885736632366, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 787, "s_m": 78.7, "d_m": 0.0, "x_m": -1.2653058095577072, "y_m": -16.855783118841828, "d_right": 1.488014561650862, "d_left": 1.4115954293730981, "psi_rad": 3.799795192015484, "kappa_radpm": 0.34160448909569485, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 788, "s_m": 78.80000000000001, "d_m": 0.0, "x_m": -1.343398335802365, "y_m": -16.918184000446928, "d_right": 1.4956069378106303, "d_left": 1.411224816775428, "psi_rad": 3.8343925971120196, "kappa_radpm": 0.3489603687803733, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 789, "s_m": 78.9, "d_m": 0.0, "x_m": -1.4191110321858094, "y_m": -16.983449794304683, "d_right": 1.495394448699606, "d_left": 1.4142073815763803, "psi_rad": 3.8695872657715586, "kappa_radpm": 0.3284052628830314, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 790, "s_m": 79.0, "d_m": 0.0, "x_m": -1.4926174947063038, "y_m": -17.051184907474322, "d_right": 1.5051391634997815, "d_left": 1.4182890035535487, "psi_rad": 3.900073649688626, "kappa_radpm": 0.32960232847003335, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 791, "s_m": 79.10000000000001, "d_m": 0.0, "x_m": -1.5642068765759727, "y_m": -17.120937453696325, "d_right": 1.5152432404886995, "d_left": 1.4195879880230742, "psi_rad": 3.9355077314655653, "kappa_radpm": 0.34600963511878247, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 792, "s_m": 79.2, "d_m": 0.0, "x_m": -1.6327363359097953, "y_m": -17.19371107021168, "d_right": 1.5156362122354623, "d_left": 1.419224965219948, "psi_rad": 3.9692755767123824, "kappa_radpm": 0.3356192179395223, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 793, "s_m": 79.30000000000001, "d_m": 0.0, "x_m": -1.6994612385776982, "y_m": -17.26814267486951, "d_right": 1.5020827118053346, "d_left": 1.4234461545520667, "psi_rad": 4.00263157505347, "kappa_radpm": 0.3545324832405372, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 794, "s_m": 79.4, "d_m": 0.0, "x_m": -1.762980929456722, "y_m": -17.345315706007007, "d_right": 1.4906638739913483, "d_left": 1.4304514613069914, "psi_rad": 4.04018207336049, "kappa_radpm": 0.3523327112259622, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 795, "s_m": 79.5, "d_m": 0.0, "x_m": -1.823929880219133, "y_m": -17.42453927970305, "d_right": 1.478423540618386, "d_left": 1.427407237953103, "psi_rad": 4.073098117298662, "kappa_radpm": 0.3271314367296063, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 796, "s_m": 79.60000000000001, "d_m": 0.0, "x_m": -1.882236974548463, "y_m": -17.505726362707165, "d_right": 1.455660402919999, "d_left": 1.4217056817966307, "psi_rad": 4.105608360706411, "kappa_radpm": 0.3082553505745045, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 797, "s_m": 79.7, "d_m": 0.0, "x_m": -1.9379109490229955, "y_m": -17.588744574725453, "d_right": 1.4354020033920911, "d_left": 1.419814128264656, "psi_rad": 4.134749187413563, "kappa_radpm": 0.3024959907237701, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 798, "s_m": 79.80000000000001, "d_m": 0.0, "x_m": -1.9913928070935352, "y_m": -17.673194568359254, "d_right": 1.4190604649356637, "d_left": 1.422338260735037, "psi_rad": 4.166107558851165, "kappa_radpm": 0.3109493279770925, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 799, "s_m": 79.9, "d_m": 0.0, "x_m": -2.0417497058583045, "y_m": -17.75953187919758, "d_right": 1.3973814912240585, "d_left": 1.4282244824367374, "psi_rad": 4.196939053008982, "kappa_radpm": 0.2900350453834588, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 800, "s_m": 80.0, "d_m": 0.0, "x_m": -2.0899267835047697, "y_m": -17.84711822896458, "d_right": 1.3724877772642794, "d_left": 1.4385537605098846, "psi_rad": 4.224114567927857, "kappa_radpm": 0.2854764490901318, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 801, "s_m": 80.10000000000001, "d_m": 0.0, "x_m": -2.1355194050488575, "y_m": -17.936064915705384, "d_right": 1.3574288276742774, "d_left": 1.4437077786371506, "psi_rad": 4.254034342827008, "kappa_radpm": 0.2804546274505282, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 802, "s_m": 80.2, "d_m": 0.0, "x_m": -2.178371606278283, "y_m": -18.026373619855452, "d_right": 1.3444062769861074, "d_left": 1.431834227446492, "psi_rad": 4.280205493417963, "kappa_radpm": 0.25993238478413394, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 803, "s_m": 80.30000000000001, "d_m": 0.0, "x_m": -2.2192518830580874, "y_m": -18.11759227975901, "d_right": 1.3216784296164779, "d_left": 1.4226200300375043, "psi_rad": 4.306020819783835, "kappa_radpm": 0.2564097937707577, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 804, "s_m": 80.4, "d_m": 0.0, "x_m": -2.2573851169723005, "y_m": -18.209989291336232, "d_right": 1.309198721328107, "d_left": 1.4174088551996715, "psi_rad": 4.331487452172114, "kappa_radpm": 0.23873943731875347, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 805, "s_m": 80.5, "d_m": 0.0, "x_m": -2.293568933464025, "y_m": -18.303172209015493, "d_right": 1.3063838203719513, "d_left": 1.413493558948314, "psi_rad": 4.3537687072475855, "kappa_radpm": 0.22528732323530587, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 806, "s_m": 80.60000000000001, "d_m": 0.0, "x_m": -2.3275473823195925, "y_m": -18.397174290032527, "d_right": 1.3022167107939155, "d_left": 1.408867736554804, "psi_rad": 4.376544916819175, "kappa_radpm": 0.19714663975506586, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 807, "s_m": 80.7, "d_m": 0.0, "x_m": -2.359450836818192, "y_m": -18.491908933725572, "d_right": 1.2907370930804172, "d_left": 1.405121472056387, "psi_rad": 4.393198035198599, "kappa_radpm": 0.1630369263975373, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 808, "s_m": 80.80000000000001, "d_m": 0.0, "x_m": -2.390282576760052, "y_m": -18.586998078622337, "d_right": 1.2871740914991907, "d_left": 1.3942130687496856, "psi_rad": 4.409152302098683, "kappa_radpm": 0.16267110309821753, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 809, "s_m": 80.9, "d_m": 0.0, "x_m": -2.419146589990838, "y_m": -18.682699551813496, "d_right": 1.2798221408368722, "d_left": 1.3843264797669426, "psi_rad": 4.425732255818242, "kappa_radpm": 0.12459166976780178, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 810, "s_m": 81.0, "d_m": 0.0, "x_m": -2.4468090378673693, "y_m": -18.77875919480724, "d_right": 1.2784678877416158, "d_left": 1.3748940318229246, "psi_rad": 4.434070636052243, "kappa_radpm": 0.0946858231419423, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 811, "s_m": 81.10000000000001, "d_m": 0.0, "x_m": -2.4740738873216968, "y_m": -18.874931494428267, "d_right": 1.2663547801490331, "d_left": 1.3617562168014459, "psi_rad": 4.444669420446631, "kappa_radpm": 0.08699592794433553, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 812, "s_m": 81.2, "d_m": 0.0, "x_m": -2.499694053582077, "y_m": -18.97155589442949, "d_right": 1.2637728982796939, "d_left": 1.3541753688316942, "psi_rad": 4.45146982164111, "kappa_radpm": 0.034239926844330526, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 813, "s_m": 81.30000000000001, "d_m": 0.0, "x_m": -2.5256486909914093, "y_m": -19.06809122113674, "d_right": 1.2567529952593355, "d_left": 1.3542983436789118, "psi_rad": 4.451517405815497, "kappa_radpm": 0.05345695628546476, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 814, "s_m": 81.4, "d_m": 0.0, "x_m": -2.551259144358697, "y_m": -19.16471612159381, "d_right": 1.2551452217325962, "d_left": 1.3503499911195467, "psi_rad": 4.462161212898203, "kappa_radpm": 0.0768014182950183, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 815, "s_m": 81.5, "d_m": 0.0, "x_m": -2.575152939125569, "y_m": -19.261781518630688, "d_right": 1.259783406419733, "d_left": 1.3456483156723191, "psi_rad": 4.466877689474501, "kappa_radpm": 0.04820271077743632, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 816, "s_m": 81.60000000000001, "d_m": 0.0, "x_m": -2.599851203308354, "y_m": -19.358645307580456, "d_right": 1.252708404082331, "d_left": 1.332316985099007, "psi_rad": 4.47180175505369, "kappa_radpm": 0.056932434506828944, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 817, "s_m": 81.7, "d_m": 0.0, "x_m": -2.622787099353616, "y_m": -19.455937867375606, "d_right": 1.248882128779564, "d_left": 1.3245931977479537, "psi_rad": 4.478264176375866, "kappa_radpm": 0.054569707703353565, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 818, "s_m": 81.80000000000001, "d_m": 0.0, "x_m": -2.6462313099129537, "y_m": -19.553112360447102, "d_right": 1.243967904440795, "d_left": 1.3131020291535518, "psi_rad": 4.4827156965943615, "kappa_radpm": 0.059997076064342014, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 819, "s_m": 81.9, "d_m": 0.0, "x_m": -2.668300692883585, "y_m": -19.65060781924587, "d_right": 1.2484803213238649, "d_left": 1.3055789261454716, "psi_rad": 4.490263591588734, "kappa_radpm": 0.06562113299719563, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 820, "s_m": 82.0, "d_m": 0.0, "x_m": -2.6902753750115758, "y_m": -19.748125176897155, "d_right": 1.2517276934916022, "d_left": 1.3055906709655847, "psi_rad": 4.495839923193801, "kappa_radpm": 0.05909101289312657, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 821, "s_m": 82.10000000000001, "d_m": 0.0, "x_m": -2.7112561818341585, "y_m": -19.845861202776256, "d_right": 1.2505186176172556, "d_left": 1.2989360719958956, "psi_rad": 4.50208179416736, "kappa_radpm": 0.058416711977815616, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 822, "s_m": 82.2, "d_m": 0.0, "x_m": -2.7320111066067705, "y_m": -19.943642024844106, "d_right": 1.2427592391661404, "d_left": 1.2987292469328795, "psi_rad": 4.507523265589363, "kappa_radpm": 0.05224715167481797, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 823, "s_m": 82.30000000000001, "d_m": 0.0, "x_m": -2.751926474717214, "y_m": -20.04159779865812, "d_right": 1.2438723340033282, "d_left": 1.3016055389801224, "psi_rad": 4.5125312245023235, "kappa_radpm": 0.046619630791318034, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 824, "s_m": 82.4, "d_m": 0.0, "x_m": -2.7717013556445624, "y_m": -20.13958331050643, "d_right": 1.2415324886838515, "d_left": 1.301267662679294, "psi_rad": 4.516847191747627, "kappa_radpm": 0.0484605038673136, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 825, "s_m": 82.5, "d_m": 0.0, "x_m": -2.7907703153125607, "y_m": -20.237706716727462, "d_right": 1.2367568375866913, "d_left": 1.2931632306176142, "psi_rad": 4.522223325275786, "kappa_radpm": 0.045411777373518536, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 826, "s_m": 82.60000000000001, "d_m": 0.0, "x_m": -2.8094903731878658, "y_m": -20.335898435914416, "d_right": 1.2404012567607878, "d_left": 1.2855666312613263, "psi_rad": 4.525929547222331, "kappa_radpm": 0.05183734602253631, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 827, "s_m": 82.7, "d_m": 0.0, "x_m": -2.827832086389903, "y_m": -20.434163722283945, "d_right": 1.2513536563152097, "d_left": 1.2757329115292046, "psi_rad": 4.532590794480294, "kappa_radpm": 0.09248699147115902, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 828, "s_m": 82.80000000000001, "d_m": 0.0, "x_m": -2.8452428214703502, "y_m": -20.532598720491464, "d_right": 1.2498366260095424, "d_left": 1.267843939509745, "psi_rad": 4.5444269455165625, "kappa_radpm": 0.09729337354075884, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 829, "s_m": 82.9, "d_m": 0.0, "x_m": -2.8612533473797224, "y_m": -20.631270069575148, "d_right": 1.255764512078513, "d_left": 1.2547533184315176, "psi_rad": 4.552049469188445, "kappa_radpm": 0.045429815159701015, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 830, "s_m": 83.0, "d_m": 0.0, "x_m": -2.877161507547038, "y_m": -20.729959221017612, "d_right": 1.2566896131694616, "d_left": 1.2463886857194775, "psi_rad": 4.553512908548503, "kappa_radpm": 0.0023383421104772317, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 831, "s_m": 83.10000000000001, "d_m": 0.0, "x_m": -2.892883122563659, "y_m": -20.828676747189697, "d_right": 1.2657217117815553, "d_left": 1.2393020580378757, "psi_rad": 4.552517137610541, "kappa_radpm": -0.030700644268613075, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 832, "s_m": 83.2, "d_m": 0.0, "x_m": -2.9089878695378384, "y_m": -20.92733449507319, "d_right": 1.27829628487869, "d_left": 1.23211549839944, "psi_rad": 4.54737277969478, "kappa_radpm": -0.07691631302856994, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 833, "s_m": 83.30000000000001, "d_m": 0.0, "x_m": -2.9257240418410952, "y_m": -21.025883365233785, "d_right": 1.2826733295384924, "d_left": 1.2336575059687973, "psi_rad": 4.537133875004827, "kappa_radpm": -0.14478274847054218, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 834, "s_m": 83.4, "d_m": 0.0, "x_m": -2.9438454947260015, "y_m": -21.124190476897127, "d_right": 1.2907484022658458, "d_left": 1.2287158902757842, "psi_rad": 4.518416230000671, "kappa_radpm": -0.19525936612479589, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 835, "s_m": 83.5, "d_m": 0.0, "x_m": -2.9642577043602882, "y_m": -21.22204062954508, "d_right": 1.3041468731041979, "d_left": 1.2249373225334463, "psi_rad": 4.498082001779867, "kappa_radpm": -0.20980097170233858, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 836, "s_m": 83.60000000000001, "d_m": 0.0, "x_m": -2.986360715862393, "y_m": -21.319528712972936, "d_right": 1.3209561512875063, "d_left": 1.2182269967415418, "psi_rad": 4.476456035660204, "kappa_radpm": -0.2476790994975353, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 837, "s_m": 83.7, "d_m": 0.0, "x_m": -3.010984262949069, "y_m": -21.416402306532436, "d_right": 1.337992926695862, "d_left": 1.2222874380188127, "psi_rad": 4.44854618188036, "kappa_radpm": -0.3013703269472301, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 838, "s_m": 83.80000000000001, "d_m": 0.0, "x_m": -3.0384909503497184, "y_m": -21.51250322565699, "d_right": 1.3592910358793528, "d_left": 1.2373937117679434, "psi_rad": 4.416181970270758, "kappa_radpm": -0.34412415654921036, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 839, "s_m": 83.9, "d_m": 0.0, "x_m": -3.0693285391817717, "y_m": -21.607578953568357, "d_right": 1.3783892566791578, "d_left": 1.2472875371511978, "psi_rad": 4.379721350570518, "kappa_radpm": -0.35857226774636874, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 840, "s_m": 84.0, "d_m": 0.0, "x_m": -3.1037631916253563, "y_m": -21.701419842515364, "d_right": 1.3991993346162959, "d_left": 1.2550897254280051, "psi_rad": 4.344467516721484, "kappa_radpm": -0.38601794873688533, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 841, "s_m": 84.10000000000001, "d_m": 0.0, "x_m": -3.1412245456967995, "y_m": -21.794092267238213, "d_right": 1.4130480370150786, "d_left": 1.2669335702395115, "psi_rad": 4.302517760823141, "kappa_radpm": -0.43154690936529905, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 842, "s_m": 84.2, "d_m": 0.0, "x_m": -3.183397664695475, "y_m": -21.884707497410425, "d_right": 1.4269577758439569, "d_left": 1.2914240414785714, "psi_rad": 4.258158134848424, "kappa_radpm": -0.4631965748218514, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 843, "s_m": 84.30000000000001, "d_m": 0.0, "x_m": -3.2289211852673847, "y_m": -21.97369402380662, "d_right": 1.4440196764558442, "d_left": 1.3137539700088698, "psi_rad": 4.209878445858771, "kappa_radpm": -0.5277196410323937, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 844, "s_m": 84.4, "d_m": 0.0, "x_m": -3.279629778220867, "y_m": -22.059812906046425, "d_right": 1.461950877107815, "d_left": 1.347742188618816, "psi_rad": 4.152614206641946, "kappa_radpm": -0.5690458502495188, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 845, "s_m": 84.5, "d_m": 0.0, "x_m": -3.33501874949519, "y_m": -22.143006980554645, "d_right": 1.4810574726748775, "d_left": 1.3855393806623915, "psi_rad": 4.096069275808867, "kappa_radpm": -0.5888887698954859, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 846, "s_m": 84.60000000000001, "d_m": 0.0, "x_m": -3.395122865915616, "y_m": -22.222854101121435, "d_right": 1.4949847185791036, "d_left": 1.4235721290322603, "psi_rad": 4.034836452662848, "kappa_radpm": -0.6470427299502068, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 847, "s_m": 84.7, "d_m": 0.0, "x_m": -3.460255912969519, "y_m": -22.298654297860423, "d_right": 1.502515893359455, "d_left": 1.4682093057536025, "psi_rad": 3.966660729818826, "kappa_radpm": -0.6868929906636101, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 848, "s_m": 84.80000000000001, "d_m": 0.0, "x_m": -3.5306444729701547, "y_m": -22.369578249807223, "d_right": 1.5028924476599113, "d_left": 1.5180124321345534, "psi_rad": 3.8974578545301264, "kappa_radpm": -0.6932661334292556, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 849, "s_m": 84.9, "d_m": 0.0, "x_m": -3.605614026799297, "y_m": -22.43567063234638, "d_right": 1.5025548742873798, "d_left": 1.5779594720606467, "psi_rad": 3.8280075031329748, "kappa_radpm": -0.707259276079315, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 850, "s_m": 85.0, "d_m": 0.0, "x_m": -3.6851573951701093, "y_m": -22.496174793812738, "d_right": 1.5016433183556206, "d_left": 1.6470812871587384, "psi_rad": 3.7560059993142634, "kappa_radpm": -0.7331854277682748, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 851, "s_m": 85.10000000000001, "d_m": 0.0, "x_m": -3.768835082362925, "y_m": -22.55082446485453, "d_right": 1.5002156659874597, "d_left": 1.7157635006967846, "psi_rad": 3.68137041757932, "kappa_radpm": -0.729418818283305, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 852, "s_m": 85.2, "d_m": 0.0, "x_m": -3.8564963112689883, "y_m": -22.59882866302537, "d_right": 1.497696922843499, "d_left": 1.6895471033930753, "psi_rad": 3.6101222356576024, "kappa_radpm": -0.6893286164752155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 853, "s_m": 85.30000000000001, "d_m": 0.0, "x_m": -3.9470746808042643, "y_m": -22.641034635468444, "d_right": 1.49070562642339, "d_left": 1.6666103129366021, "psi_rad": 3.5435046942842767, "kappa_radpm": -0.6096143152933386, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 854, "s_m": 85.4, "d_m": 0.0, "x_m": -4.04034614922513, "y_m": -22.67697382903993, "d_right": 1.4757910783722843, "d_left": 1.651843449511542, "psi_rad": 3.4881993725989346, "kappa_radpm": -0.5075817876925637, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 855, "s_m": 85.5, "d_m": 0.0, "x_m": -4.135052683701019, "y_m": -22.708929999769392, "d_right": 1.4633251299131604, "d_left": 1.6322743095435734, "psi_rad": 3.441988336745764, "kappa_radpm": -0.48529767233120413, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 856, "s_m": 85.60000000000001, "d_m": 0.0, "x_m": -4.231239305361678, "y_m": -22.73610677306785, "d_right": 1.4526246994365986, "d_left": 1.6205935428576825, "psi_rad": 3.391139838132694, "kappa_radpm": -0.5088360078836818, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 857, "s_m": 85.7, "d_m": 0.0, "x_m": -4.328700659736979, "y_m": -22.758283052871164, "d_right": 1.4435991380228308, "d_left": 1.6127555139532566, "psi_rad": 3.3402211351690276, "kappa_radpm": -0.5094891642578103, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 858, "s_m": 85.80000000000001, "d_m": 0.0, "x_m": -4.427151881689959, "y_m": -22.77554055708707, "d_right": 1.4364472999296225, "d_left": 1.5955281069867149, "psi_rad": 3.2892420052811318, "kappa_radpm": -0.5029440895711534, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 859, "s_m": 85.9, "d_m": 0.0, "x_m": -4.526365336919766, "y_m": -22.78768206148478, "d_right": 1.4310602809958695, "d_left": 1.58340299308619, "psi_rad": 3.239632317254797, "kappa_radpm": -0.4818569589333155, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 860, "s_m": 86.0, "d_m": 0.0, "x_m": -4.626039004555671, "y_m": -22.795102097630334, "d_right": 1.4279013727582088, "d_left": 1.5759900017256658, "psi_rad": 3.1928706134944687, "kappa_radpm": -0.46384641337530397, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 861, "s_m": 86.10000000000001, "d_m": 0.0, "x_m": -4.72594840940507, "y_m": -22.79792525376371, "d_right": 1.4271329332797487, "d_left": 1.5731684893117246, "psi_rad": 3.146863034579736, "kappa_radpm": -0.459378601732896, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 862, "s_m": 86.2, "d_m": 0.0, "x_m": -4.825882950681985, "y_m": -22.79615536111711, "d_right": 1.4253630985401196, "d_left": 1.5749386599934776, "psi_rad": 3.1009948931478895, "kappa_radpm": -0.3437804164144098, "vx_mps": 0.0, "ax_mps2": 0.0}, {"id": 863, "s_m": 86.30000000000001, "d_m": 0.0, "x_m": -4.925636822594655, "y_m": -22.789813894590626, "d_right": 1.4224273040464306, "d_left": 1.5812830655382197, "psi_rad": 3.078106951296854, "kappa_radpm": -0.22887941851035265, "vx_mps": 0.0, "ax_mps2": 0.0}]}, "global_traj_markers_iqp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.888001810270651, "y": -21.76619431591025, "z": 0.18085436302363186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36170872604726373}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.987328641385195, "y": -21.756514451068742, "z": 0.18078452174346593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36156904348693186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.085924586665892, "y": -21.740390912772842, "z": 0.18174408711539738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36348817423079477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.183256323198033, "y": -21.71844397152357, "z": 0.18361955221437815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3672391044287563}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.27935286962664, "y": -21.69095016892718, "z": 0.18568148898438366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3713629779687673}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.3736868527244965, "y": -21.65828400567249, "z": 0.18785600766963378}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37571201533926757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.466258780932494, "y": -21.620755817941255, "z": 0.19033896084603802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38067792169207604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.556779406247484, "y": -21.5787222606137, "z": 0.1930052327689665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.386010465537933}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.645218381608817, "y": -21.532228859076092, "z": 0.195373117431801}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.390746234863602}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.731223192880465, "y": -21.481540687915317, "z": 0.19758010270171517}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39516020540343033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.8148643304676915, "y": -21.42687184403528, "z": 0.20003109462476595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4000621892495319}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.895954640516902, "y": -21.368608557058934, "z": 0.2026575367725919}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4053150735451838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.974557567933246, "y": -21.306992027085332, "z": 0.20548697945552866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4109739589110573}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -6.050622179549216, "y": -21.242312185677996, "z": 0.20846005827463246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4169201165492649}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -6.1241651773720065, "y": -21.1747172279909, "z": 0.2113966927990312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4227933855980624}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -6.1951025391070775, "y": -21.104448459848353, "z": 0.21431697693810373}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42863395387620745}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -6.263490984238516, "y": -21.03163991432468, "z": 0.21727333847539507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43454667695079013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -6.329281044727562, "y": -20.956526316219254, "z": 0.22024948899160074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4404989779832015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -6.39252604755383, "y": -20.879210370906716, "z": 0.22321238769290563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44642477538581127}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -6.453192915198592, "y": -20.799897242675755, "z": 0.2261680315149916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4523360630299832}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -6.511342347568044, "y": -20.718680013661796, "z": 0.2291292727065885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.458258545413177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -6.566964281378424, "y": -20.63574747411907, "z": 0.23209717395564747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46419434791129494}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -6.62012372704667, "y": -20.55118234594882, "z": 0.23507707211320952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47015414422641905}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -6.670830596787517, "y": -20.465153732610137, "z": 0.23807275931550165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4761455186310033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -6.719154890056551, "y": -20.377736896359995, "z": 0.24109337390919505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4821867478183901}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -6.765122105978396, "y": -20.289082958545393, "z": 0.2441383614818669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4882767229637338}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -6.808802785853721, "y": -20.199257220310013, "z": 0.24720782480827067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49441564961654133}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -6.85023301718287, "y": -20.10839261027738, "z": 0.25030376403940147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5006075280788029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -6.889485040535962, "y": -20.01654605932992, "z": 0.25343001256576037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5068600251315207}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -6.926603869306486, "y": -19.923835009347094, "z": 0.25658844081885196}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5131768816377039}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -6.961662806566765, "y": -19.830308446720462, "z": 0.2597821156176913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5195642312353826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -6.994713723042071, "y": -19.73606912356074, "z": 0.2630130240729935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.526026048145987}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -7.025830353049214, "y": -19.64115888565012, "z": 0.26628396599473203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5325679319894641}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -7.055069889057413, "y": -19.54566692598871, "z": 0.2695974558669758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5391949117339516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -7.082506348738753, "y": -19.449628884962667, "z": 0.272956752717331}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.545913505434662}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -7.10820110197509, "y": -19.353121441553903, "z": 0.27636449257446327}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5527289851489265}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -7.132228038647969, "y": -19.256174922495436, "z": 0.27982376868304143}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5596475373660829}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -7.1546517235658875, "y": -19.15885418650489, "z": 0.28333758737599535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5666751747519907}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -7.175545760520291, "y": -19.061185311937912, "z": 0.2869093447545308}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5738186895090616}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -7.194977187796355, "y": -18.963221999052784, "z": 0.2905422976475109}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5810845952950218}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -7.213019136794923, "y": -18.864987130239243, "z": 0.29417401234189544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5883480246837909}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -7.229740498138719, "y": -18.766523753346945, "z": 0.2977309977217005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.595461995443401}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -7.245213858167873, "y": -18.66785264622217, "z": 0.3012164874987248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6024329749974496}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -7.259509479764153, "y": -18.56900665920588, "z": 0.30463349095838843}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6092669819167769}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -7.272699381098899, "y": -18.47000545993994, "z": 0.30798481418133034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6159696283626607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -7.284854786922116, "y": -18.37087218898148, "z": 0.3112730787523881}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6225461575047762}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -7.296047136005994, "y": -18.271626624342986, "z": 0.31450073831128067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6290014766225613}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -7.306348326489435, "y": -18.172282512290213, "z": 0.3176700932417403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6353401864834806}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -7.315829420403444, "y": -18.072859799906407, "z": 0.32078330374878955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6415666074975791}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -7.3245627418250985, "y": -17.97336419740324, "z": 0.3238424015352179}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6476848030704359}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -7.332619061304899, "y": -17.873817037157494, "z": 0.326849300256408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.653698600512816}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -7.340070938009884, "y": -17.77421624544039, "z": 0.3298058049061975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.659611609812395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -7.346988806711488, "y": -17.674585035231996, "z": 0.3327136202644088}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6654272405288176}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -7.353446413485899, "y": -17.574914178588692, "z": 0.335574358518221}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.671148717036442}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -7.3595168382733736, "y": -17.475229661305615, "z": 0.33838954615404565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6767790923080913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -7.365273499202138, "y": -17.375517228775145, "z": 0.34116063020348003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6823212604069601}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -7.3707832969900124, "y": -17.27580077085761, "z": 0.34388898391582595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6877779678316519}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -7.376102569179133, "y": -17.176066320899718, "z": 0.3465759119202395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.693151823840479}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -7.381264701104864, "y": -17.076328120346446, "z": 0.34922265493254084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6984453098650817}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -7.386299958531932, "y": -16.976579592480974, "z": 0.35183039405483446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7036607881096689}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -7.391234224394779, "y": -16.876827410390984, "z": 0.35440025471018727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7088005094203745}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -7.396093407494366, "y": -16.77707016055152, "z": 0.3569333102495255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.713866620499051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -7.400903097324233, "y": -16.677312046373594, "z": 0.3594305852635213}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7188611705270426}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -7.405688321232015, "y": -16.577551616924566, "z": 0.36189305862843696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7237861172568739}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -7.4104723640623025, "y": -16.47779218940466, "z": 0.3643216663115913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7286433326231826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -7.41527295877665, "y": -16.378032884184794, "z": 0.36671730395923663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7334346079184733}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -7.420098016772194, "y": -16.278274657658493, "z": 0.3690808292871262}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7381616585742524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -7.424951760039426, "y": -16.178517868794405, "z": 0.37141306429185267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7428261285837053}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -7.429833686666752, "y": -16.078762154406032, "z": 0.3737147972991153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7474295945982306}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -7.434742678860938, "y": -15.979008012114521, "z": 0.3759867848633768}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7519735697267536}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -7.439677484630936, "y": -15.879255094376957, "z": 0.3782297535318811}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7564595070637622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -7.444636827839702, "y": -15.779503443408155, "z": 0.38044440148468495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7608888029693699}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -7.449619462934483, "y": -15.679752915500783, "z": 0.38263140006119173}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7652628001223835}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -7.45462413548623, "y": -15.580003531845197, "z": 0.38479139518264394}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7695827903652879}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -7.459649594748591, "y": -15.48025514437913, "z": 0.386925008679111}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.773850017358222}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -7.464694580776134, "y": -15.38050779055367, "z": 0.3890328395286968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7780656790573937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -7.469757844468976, "y": -15.280761313705296, "z": 0.3911154650159603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7822309300319206}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -7.4748381269080415, "y": -15.181015751602196, "z": 0.3931734418158964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7863468836317928}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -7.479934179010032, "y": -15.081270945929194, "z": 0.39520730700924067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7904146140184813}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -7.485044741920666, "y": -14.981526930646735, "z": 0.39721757903434307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7944351580686861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -7.490168566734699, "y": -14.881783546863137, "z": 0.39920475858038895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7984095171607779}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -7.4953043946573965, "y": -14.782040829190057, "z": 0.4011693294263237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8023386588526474}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -7.50045097696214, "y": -14.6822986173337, "z": 0.40311175922946363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8062235184589273}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -7.505607054994664, "y": -14.582556944292861, "z": 0.4050325002674316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8100650005348632}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -7.5107713801440585, "y": -14.482815649508368, "z": 0.40693199013675085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8138639802735017}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -7.5159426938647025, "y": -14.383074765118888, "z": 0.4088106524111525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.817621304822305}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -7.52111974765515, "y": -14.283334130267232, "z": 0.41066889726240025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8213377945248005}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -7.526301283082538, "y": -14.18359377617333, "z": 0.41250712204620893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8250142440924179}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -7.531486051710417, "y": -14.08385354235727, "z": 0.41432571185562544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8286514237112509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -7.5366727952186325, "y": -13.984113459091462, "z": 0.4161250400440547}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8322500800881094}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -7.5418602652742335, "y": -13.884373365250683, "z": 0.41790546871994133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8358109374398827}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -7.5470472036228, "y": -13.784633291227353, "z": 0.41966734921496157}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8393346984299231}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -7.552232358566041, "y": -13.684893122039947, "z": 0.42141102252744006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8428220450548801}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -7.557414386210261, "y": -13.5851528645452, "z": 0.42313681974257455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8462736394851491}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -7.562591802961288, "y": -13.48541229746597, "z": 0.42484506243093495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8496901248618699}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -7.567762787950377, "y": -13.385671566983373, "z": 0.4265360630265932}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8530721260531864}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -7.57292503567262, "y": -13.285930072111418, "z": 0.4282101251861435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.856420250372287}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -7.578076065476617, "y": -13.186188336730591, "z": 0.4298675441297795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.859735088259559}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -7.583213358319734, "y": -13.086445450460417, "z": 0.4315086069655123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8630172139310246}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -7.58833429778192, "y": -12.986702166930383, "z": 0.43313359299753834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8662671859950767}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -7.593436357532333, "y": -12.886957470142029, "z": 0.43474277401969225}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8694855480393845}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -7.598516922641376, "y": -12.787212124610654, "z": 0.4363364145948585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.872672829189717}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -7.603573467754306, "y": -12.68746510881605, "z": 0.437914772321154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.875829544642308}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -7.608602878230354, "y": -12.587717173081813, "z": 0.439478098085639}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.878956196171278}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -7.613601247622049, "y": -12.487967220056177, "z": 0.44102663630626404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8820532726125281}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -7.618562481251828, "y": -12.388215869334116, "z": 0.44256062516271216}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8851212503254243}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -7.62347710394422, "y": -12.288461754642558, "z": 0.44408029681675315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8881605936335063}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -7.628334704221601, "y": -12.188705302659153, "z": 0.44558587762268714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8911717552453743}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -7.633124091580525, "y": -12.088945101369728, "z": 0.4470775883284164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8941551766568328}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -7.637833902794235, "y": -11.989181564874041, "z": 0.4485556442676506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8971112885353012}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -7.642452861196959, "y": -11.889413331678377, "z": 0.4500202555437191}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9000405110874382}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -7.646969602796542, "y": -11.78964087310038, "z": 0.451471627205434}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.902943254410868}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -7.65137283266313, "y": -11.689863152386863, "z": 0.45290995941541956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9058199188308391}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -7.655651455751213, "y": -11.590080637288622, "z": 0.45433544761129924}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9086708952225985}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -7.659794938772686, "y": -11.490291733674967, "z": 0.45574828266010786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9114965653202157}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -7.663793416172172, "y": -11.39049809656253, "z": 0.45714865100627283}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9142973020125457}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -7.66763852384089, "y": -11.290696377424531, "z": 0.4585367348134891}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9170734696269782}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -7.6713216293016515, "y": -11.190890598670888, "z": 0.4599127121007934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9198254242015867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -7.674834221064, "y": -11.091076175030228, "z": 0.4612767568731249}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9225535137462498}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -7.678167404352044, "y": -10.991257956385729, "z": 0.4626290392466427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9252580784932855}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -7.681312563489033, "y": -10.891431448617622, "z": 0.4639697255690557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9279394511381114}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -7.684260788749267, "y": -10.791600988136947, "z": 0.4652989785352049}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9305979570704098}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -7.687003416137566, "y": -10.691762690649853, "z": 0.46661695729812575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9332339145962515}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -7.6895314583817, "y": -10.59192047805647, "z": 0.46792381757580376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9358476351516075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -7.69183592662783, "y": -10.492071254745667, "z": 0.46921971175382726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9384394235076545}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -7.693906495504354, "y": -10.39221826012186, "z": 0.4705047889841264}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9410095779682528}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -7.695730915026939, "y": -10.292359471932851, "z": 0.47177919527998197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9435583905599639}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -7.697296005423902, "y": -10.192497174360485, "z": 0.47304307360747166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9460861472149433}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -7.698587528854806, "y": -10.092630322913914, "z": 0.474296563973519}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.948593127947038}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -7.699591197434273, "y": -9.992760754538624, "z": 0.47553980351069486}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9510796070213897}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -7.700292935820535, "y": -9.892888078107873, "z": 0.47677292655891973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9535458531178395}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -7.700678662970907, "y": -9.793014154934191, "z": 0.47799606474420137}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9559921294884027}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -7.700734299277563, "y": -9.693139101458776, "z": 0.47920934705454044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9584186941090809}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -7.700445767664492, "y": -9.59326480262031, "z": 0.48041289991312675}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9608257998262535}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -7.6997990052128635, "y": -9.493391895883514, "z": 0.48160684724894287}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9632136944978857}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -7.69877996754193, "y": -9.393522324261907, "z": 0.4827913105648875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.965582621129775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -7.6973746256239775, "y": -9.293657272159571, "z": 0.4839664090035239}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9679328180070478}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -7.695568972907496, "y": -9.19379876397415, "z": 0.48513225941055355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9702645188211071}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -7.693349020346065, "y": -9.093948574695464, "z": 0.48628897639611113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9725779527922223}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -7.690700798888447, "y": -8.994108790668957, "z": 0.48743667239397054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9748733447879411}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -7.6876103727162315, "y": -8.894281831786701, "z": 0.48857545771874933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9771509154374987}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -7.684063812730352, "y": -8.794469845541373, "z": 0.48788999102403835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9757799820480767}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -7.680047249146354, "y": -8.694675949176204, "z": 0.48530231082368963}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9706046216473793}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -7.675546792713204, "y": -8.59490233936925, "z": 0.4827452851291047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9654905702582094}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -7.670548655132714, "y": -8.495152883669592, "z": 0.4802183793233337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9604367586466674}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -7.665038987045264, "y": -8.395429816663228, "z": 0.4777209530173169}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9554419060346337}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -7.6590041011344905, "y": -8.295737825097948, "z": 0.47525250754580795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9505050150916159}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -7.6524301843022275, "y": -8.196079156516737, "z": 0.4728124384628449}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9456248769256898}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -7.645303665130768, "y": -8.096459370910537, "z": 0.4704002598250123}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9408005196500246}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -7.637610763892236, "y": -7.996880717355951, "z": 0.46801535080477646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9360307016095529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -7.629338055989873, "y": -7.8973496747868195, "z": 0.4656572626153136}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9313145252306272}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -7.620471794946658, "y": -7.797868484369505, "z": 0.4633254195377804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9266508390755608}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -7.610998728874211, "y": -7.6984446794500405, "z": 0.4610194077343005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.922038815468601}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -7.600905125509948, "y": -7.599080401793481, "z": 0.45873866083593967}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9174773216718793}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -7.590177929100171, "y": -7.499784238677646, "z": 0.45648282491881637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9129656498376327}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -7.578803411356503, "y": -7.400558290227233, "z": 0.4542514897199677}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9085029794399354}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -7.566768704094021, "y": -7.3014122142861595, "z": 0.4520446724301977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9040893448603954}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -7.55405996156995, "y": -7.202348114504089, "z": 0.44986290624974007}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8997258124994801}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -7.540664301054515, "y": -7.103376962995979, "z": 0.44770601553778355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8954120310755671}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -7.526567605586369, "y": -7.004500673875479, "z": 0.44557386804163734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8911477360832747}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -7.5117571845651065, "y": -6.90573153746314, "z": 0.4434660818940166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8869321637880332}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -7.496218851681064, "y": -6.807071353551465, "z": 0.4413819509152358}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8827639018304716}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -7.479940327293059, "y": -6.708533691643895, "z": 0.43932127925259307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8786425585051861}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -7.462907435489623, "y": -6.610120304887941, "z": 0.43728377318415096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8745675463683019}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -7.4451082677235085, "y": -6.511846180914042, "z": 0.43526922735836276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8705384547167255}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -7.4265285493786, "y": -6.413712859257609, "z": 0.4332772249472991}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8665544498945982}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -7.407156833901872, "y": -6.315736824885823, "z": 0.43130761532231343}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8626152306446269}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -7.386978757934465, "y": -6.2179194227311925, "z": 0.42936008445888074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8587201689177615}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -7.365983376196333, "y": -6.120278678756595, "z": 0.4274345238373719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8548690476747438}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -7.344156204503314, "y": -6.022815761475119, "z": 0.4255306346341956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8510612692683912}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -7.3214868651600495, "y": -5.9255502991297275, "z": 0.4236483696935366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8472967393870732}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -7.297960719501295, "y": -5.828483242924612, "z": 0.42178751623959626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8435750324791925}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -7.273568008722514, "y": -5.731635873035316, "z": 0.41994806482012365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8398961296402473}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -7.2482939125845265, "y": -5.635008953767501, "z": 0.41812981983638}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.83625963967276}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -7.222129360574426, "y": -5.538625436262514, "z": 0.41633283930226395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8326656786045279}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -7.195059329667469, "y": -5.44248592343526, "z": 0.4145570177691684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8291140355383368}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -7.167075503923965, "y": -5.3466151021320565, "z": 0.4128024938735592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8256049877471184}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -7.138162612898875, "y": -5.251013420627683, "z": 0.41106925818980017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8221385163796003}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -7.108313125975867, "y": -5.155707241877065, "z": 0.4093573808610114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8187147617220228}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -7.077511555481321, "y": -5.0606969770699965, "z": 0.40766662416662514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8153332483332503}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -7.045751314847695, "y": -4.966010657211503, "z": 0.40599758057865387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8119951611573077}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -7.013016617416832, "y": -4.871648723996626, "z": 0.4043512122204771}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8087024244409542}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -6.97930156614327, "y": -4.777641004549652, "z": 0.4027268929484766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8054537858969532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -6.944590170322299, "y": -4.6839879398748145, "z": 0.4011223562654868}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8022447125309736}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -6.908878205563361, "y": -4.590720661370822, "z": 0.3995363248172201}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7990726496344402}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -6.872150384648839, "y": -4.497839471111751, "z": 0.39796501144280383}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7959300228856077}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -6.834404940338637, "y": -4.405377031862542, "z": 0.3964089664721692}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7928179329443384}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -6.79562692460619, "y": -4.313333135626986, "z": 0.39486855298402923}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7897371059680585}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -6.755815393959406, "y": -4.221741371454632, "z": 0.39334441643288953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7866888328657791}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -6.714955250742816, "y": -4.130602495231768, "z": 0.39183789687238735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7836757937447747}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -6.673046124397046, "y": -4.0399511045039755, "z": 0.3903497648686085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.780699529737217}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -6.630072781540963, "y": -3.9497893588608313, "z": 0.3888807731237545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.777761546247509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -6.586035624813587, "y": -3.8601528376029672, "z": 0.3874320549510995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.774864109902199}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -6.540919050040117, "y": -3.7710444234743363, "z": 0.38600529784600546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7720105956920109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -6.494723963608404, "y": -3.68250063068469, "z": 0.38460187059313866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7692037411862773}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -6.447434726413898, "y": -3.5945262218156517, "z": 0.383223836219535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.76644767243907}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -6.399052476097036, "y": -3.507158256138846, "z": 0.38187272036073483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7637454407214697}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -6.349561714306759, "y": -3.420403710351196, "z": 0.3805506321697737}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7611012643395474}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -6.2989635307782486, "y": -3.3342996478597042, "z": 0.37926023969588246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7585204793917649}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -6.24724278571088, "y": -3.24885602821434, "z": 0.3780058729620388}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7560117459240776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -6.19440050156168, "y": -3.164111261018131, "z": 0.3767888195787615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.753577639157523}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -6.1404215869251315, "y": -3.0800775293631877, "z": 0.37560970876920485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7512194175384097}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -6.085305811581348, "y": -2.9967904210401417, "z": 0.37447749186731577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7489549837346315}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -6.02903957824835, "y": -2.9142688061353432, "z": 0.37340842962302356}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7468168592460471}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -5.971621783312147, "y": -2.8325557045328527, "z": 0.3723951218065515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.744790243613103}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -5.913036969925586, "y": -2.7516688422244044, "z": 0.37142014655224803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7428402931044961}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -5.853289084193588, "y": -2.6716457082609635, "z": 0.37050951365696655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7410190273139331}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -5.792362461384828, "y": -2.592507828178532, "z": 0.3697042647058235}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.739408529411647}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -5.730235337817661, "y": -2.514284903261853, "z": 0.36901544394360203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7380308878872041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -5.6669074203847964, "y": -2.437038015840924, "z": 0.3684702388804723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7369404777609446}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -5.602396848598518, "y": -2.360853921099886, "z": 0.3679584906011425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.735916981202285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -5.536663859722487, "y": -2.285701245750051, "z": 0.36745115890535957}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7349023178107191}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -5.469716514685657, "y": -2.2115356891925715, "z": 0.3667875226758195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.733575045351639}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -5.4016588624492785, "y": -2.1383798861663, "z": 0.36585895422740333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7317179084548067}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -5.332573413350658, "y": -2.066226506176882, "z": 0.3648062023617625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.729612404723525}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -5.262459523727022, "y": -1.99514931949984, "z": 0.36432460677589373}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7286492135517875}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -5.19124527861145, "y": -1.925288313792058, "z": 0.36413583891367374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7282716778273475}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -5.118757998471932, "y": -1.8565918591344466, "z": 0.3639953275887777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7279906551775553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -5.045004822727316, "y": -1.7890877224242878, "z": 0.3638547620020359}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7277095240040719}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -4.970230904609758, "y": -1.7228026059969594, "z": 0.36427252659841297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7285450531968259}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -4.894601514476324, "y": -1.6575289492343834, "z": 0.3656836704466428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7313673408932856}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -4.818226569507722, "y": -1.5932580097263387, "z": 0.36730648714271685}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7346129742854337}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -4.74102033817569, "y": -1.5300062259716014, "z": 0.368588853210487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.737177706420974}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -4.6629245108703055, "y": -1.4677164526536266, "z": 0.3698803623934592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7397607247869185}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -4.584050909117972, "y": -1.4063983662962523, "z": 0.37138245688612387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7427649137722477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -4.504471403871489, "y": -1.3460661943352243, "z": 0.3729528254062613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7459056508125226}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -4.4241705453515925, "y": -1.2866943798251738, "z": 0.3745128714795371}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7490257429590742}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -4.3431642066356595, "y": -1.2282773202450197, "z": 0.37608177668975357}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7521635533795071}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -4.2614777107702615, "y": -1.1708134994631316, "z": 0.3776679578903452}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7553359157806904}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -4.179130979925689, "y": -1.1143021538524926, "z": 0.3792537325797897}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7585074651595795}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -4.0961393480884425, "y": -1.058742163322699, "z": 0.38083051793861444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7616610358772289}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -4.01251849414397, "y": -1.0041301958457753, "z": 0.38240792115033084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7648158423006617}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -3.9282890002217146, "y": -0.9504646681578819, "z": 0.3839903000602633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7679806001205266}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -3.8434646224336833, "y": -0.8977405395719174, "z": 0.38557382552729935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7711476510545987}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -3.758066406011933, "y": -0.8459577702026164, "z": 0.3871572535959298}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7743145071918596}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -3.6721032894747565, "y": -0.7951087063955891, "z": 0.3887415645538289}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7774831291076578}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -3.585600262786563, "y": -0.745195088338783, "z": 0.39032735391160256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7806547078232051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -3.4985618006790413, "y": -0.6962067964239124, "z": 0.39191426526051554}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7838285305210311}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -3.4110162453872257, "y": -0.6481472755516622, "z": 0.39350235897117863}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7870047179423573}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -3.3229632952790746, "y": -0.6010040986244197, "z": 0.39509162776516177}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7901832555303235}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -3.234434956089846, "y": -0.5547822714618854, "z": 0.39668227779646914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7933645555929383}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -3.1454259393424975, "y": -0.5094671367105781, "z": 0.398274299061199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.796548598122398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -3.055972129329787, "y": -0.4650651968060329, "z": 0.39986785505366895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7997357101073379}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -2.9660632943417733, "y": -0.4215598202421753, "z": 0.4014629611361928}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8029259222723856}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -2.875739096644332, "y": -0.37895876444831106, "z": 0.40305977594904474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8061195518980895}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -2.7849844511068134, "y": -0.33724366655940713, "z": 0.4046583847274472}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8093167694548944}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -2.6938427309778095, "y": -0.2964233220175354, "z": 0.40625893768650506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8125178753730101}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -2.6022941606223564, "y": -0.2564778944528149, "z": 0.4078615826782149}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8157231653564297}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -2.51038560913852, "y": -0.21741695822786133, "z": 0.4094664635526079}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8189329271052158}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -2.4180929540726916, "y": -0.17921955520558355, "z": 0.4110736240011342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8221472480022683}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -2.325466158242664, "y": -0.14189574593474039, "z": 0.4126831606285339}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8253663212570678}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -2.232477292763626, "y": -0.10542368812250485, "z": 0.4142957967223004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8285915934446008}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -2.1391790230699392, "y": -0.06981347921381652, "z": 0.41591166840097304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8318233368019461}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -2.045539999869233, "y": -0.03504253869725684, "z": 0.41753192468774564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8350638493754913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -1.95161532281578, "y": -0.001120751956254816, "z": 0.41915669916242076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8383133983248415}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -1.8573704522999739, "y": 0.03197482536129301, "z": 0.4207862026236482}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8415724052472964}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -1.762862567399286, "y": 0.06423449062606133, "z": 0.4224204923720274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8448409847440548}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -1.6680542252426165, "y": 0.09568128973626859, "z": 0.4240596906360904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8481193812721808}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -1.5730043800222042, "y": 0.1263058457408605, "z": 0.4257038525449322}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8514077050898644}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -1.4776733039364685, "y": 0.15613106394665097, "z": 0.42735326585883565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8547065317176713}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": -1.3821205704130939, "y": 0.18514832207919982, "z": 0.4290079805376733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8580159610753466}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": -1.2863059007221713, "y": 0.21337980245272112, "z": 0.4306575108860745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.861315021772149}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": -1.190287322307257, "y": 0.24081825585790917, "z": 0.432290820187719}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.864581640375438}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": -1.0940258256360882, "y": 0.2674846316032617, "z": 0.43390818410502546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8678163682100509}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": -0.9975772231034045, "y": 0.2933731746723546, "z": 0.4355098709259085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.871019741851817}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": -0.9009038996680329, "y": 0.3185036451462071, "z": 0.43709614183674156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8741922836734831}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": -0.8040593678670462, "y": 0.3428717048880174, "z": 0.4386672511824591}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8773345023649182}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": -0.7070075075674557, "y": 0.3664959777859428, "z": 0.4402234467145348}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8804468934290696}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": -0.6097994684661872, "y": 0.3893734627533225, "z": 0.4417649698275161}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8835299396550322}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": -0.5124006895610494, "y": 0.41152171015955563, "z": 0.4432920557847568}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8865841115695136}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": -0.41485993198905197, "y": 0.43293896794653325, "z": 0.4448049339339432}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8896098678678864}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": -0.317144234309257, "y": 0.4536417804563787, "z": 0.44630382791297263}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8926076558259453}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": -0.21929996040858565, "y": 0.4736295561036226, "z": 0.447788955846707}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.895577911693414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": -0.12129576941215976, "y": 0.49291790288324494, "z": 0.449260530535091}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.898521061070182}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": -0.023175637719992107, "y": 0.5115073007510236, "z": 0.45071875963309443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9014375192661889}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": 0.0750901495224773, "y": 0.5294124917041435, "z": 0.4521638458229066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9043276916458132}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": 0.17345998087013526, "y": 0.546634940045234, "z": 0.45359598697879056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9071919739575811}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": 0.2719619507837271, "y": 0.5631885910343427, "z": 0.4550153763249721}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9100307526499442}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": 0.3705567813096517, "y": 0.5790758089126352, "z": 0.456422202586922}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.912844405173844}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": 0.46927096043813443, "y": 0.5943098095875361, "z": 0.45781665013636696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9156333002727339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": 0.5680675054134414, "y": 0.6088937762611359, "z": 0.4591988991303419}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9183977982606838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": 0.6669713172161837, "y": 0.6228402602234853, "z": 0.46056912564458213}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9211382512891643}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": 0.765947666110823, "y": 0.6361531866066699, "z": 0.46192750180153413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9238550036030683}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": 0.8650198890584173, "y": 0.6488445038211511, "z": 0.4632741958932467}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9265483917864934}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": 0.9641554646883116, "y": 0.6609188060251783, "z": 0.4646093724993929}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9292187449987858}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": 1.0633761908399424, "y": 0.6723874972520796, "z": 0.46593319260065374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9318663852013075}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": 1.1626517089764346, "y": 0.6832557719894125, "z": 0.4672458136876877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9344916273753754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": 1.262002303466512, "y": 0.6935345451096213, "z": 0.46854738986589106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9370947797317821}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": 1.3613997330453018, "y": 0.7032295468766137, "z": 0.4698380719561486}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9396761439122971}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": 1.4608627941500767, "y": 0.7123512549630279, "z": 0.47111800759175965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9422360151835193}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": 1.560365317919229, "y": 0.720905874877118, "z": 0.47238734131171567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9447746826234313}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": 1.6599246378438335, "y": 0.7289034958989047, "z": 0.4736462146504954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9472924293009908}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": 1.7595166135340572, "y": 0.7363507420831447, "z": 0.47489476622453614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9497895324490723}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": 1.8591571398275792, "y": 0.7432573601218433, "z": 0.47613313181552974}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9522662636310595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": 1.958824061943646, "y": 0.7496303395625066, "z": 0.47736144445068435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9547228889013687}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": 2.0585318591358917, "y": 0.7554791274267305, "z": 0.47857983448008673}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9571596689601735}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": 2.1582603204904247, "y": 0.7608110291545794, "z": 0.479788429651292}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.959576859302584}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": 2.2580225331722916, "y": 0.7656352323774205, "z": 0.4809873551812604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9619747103625208}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": 2.357800188201831, "y": 0.7699593120489864, "z": 0.4821767338257569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9643534676515138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": 2.457605003372626, "y": 0.7737922340463878, "z": 0.4833566859463213}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9667133718926426}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": 2.557420531052695, "y": 0.7771417995415744, "z": 0.48452732957491246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9690546591498249}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": 2.6572571403303145, "y": 0.7800167877812404, "z": 0.48568878047632347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9713775609526469}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": 2.757100204749958, "y": 0.7824251859982418, "z": 0.4868411522084633}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9736823044169266}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": 2.8569587718907865, "y": 0.7843756202364544, "z": 0.48798455618059133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9759691123611827}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": 2.956819989770811, "y": 0.7858762263564733, "z": 0.4891191017095898}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9782382034191796}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": 3.0566916116360527, "y": 0.7869355067436694, "z": 0.4902448960743543}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9804897921487086}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": 3.156562516098079, "y": 0.7875617095582369, "z": 0.49136204456837973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9827240891367595}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": 3.25643918399583, "y": 0.7877632391730977, "z": 0.49247065055061223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9849413011012245}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": 3.3563121835521743, "y": 0.7875484224757802, "z": 0.4935708154946387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9871416309892774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": 3.456186755005078, "y": 0.7869255930082405, "z": 0.4946626390362783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9893252780725565}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": 3.556055100813869, "y": 0.7859031289507371, "z": 0.49574621901963933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9914924380392787}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": 3.6559212637417415, "y": 0.7844893189492606, "z": 0.4968216515417029}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9936433030834058}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": 3.755779022570981, "y": 0.7826925674531162, "z": 0.49788903099548815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9957780619909763}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": 3.8556312438372076, "y": 0.7805211389972602, "z": 0.49894845011185546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9978969002237109}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": 3.9554732311601644, "y": 0.7779834400894345, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": 4.055306770131932, "y": 0.7750877311879483, "z": 0.49808427411982953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9961685482396591}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": 4.155128606752556, "y": 0.7718424006409413, "z": 0.49498887784147994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9899777556829599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": 4.2549393566552345, "y": 0.7682557171962927, "z": 0.49181319807024265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9836263961404853}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": 4.354737196996597, "y": 0.7643360317123252, "z": 0.4885563843045139}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9771127686090278}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": 4.454521920525248, "y": 0.7600916591202679, "z": 0.48521738840865064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9704347768173013}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": 4.554292818575933, "y": 0.7555309032673027, "z": 0.4817953665372178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9635907330744355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": 4.654048829319926, "y": 0.7506619976790468, "z": 0.4782899346367571}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9565798692735142}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": 4.75379067684215, "y": 0.7454933076451459, "z": 0.4746995239846348}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9493990479692695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": 4.853515356266968, "y": 0.7400340583882301, "z": 0.47101880172142385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9420376034428477}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": 4.953225507890373, "y": 0.7342942716560056, "z": 0.4672443317893593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9344886635787186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": 5.052918878491316, "y": 0.7282870031387946, "z": 0.46335739365279}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.92671478730558}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": 5.152596943994148, "y": 0.7220251897701289, "z": 0.4593576980748825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.918715396149765}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": 5.252260311850227, "y": 0.715520714411349, "z": 0.45525094184156895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9105018836831379}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": 5.351908916543915, "y": 0.708784929064854, "z": 0.45103672148925406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9020734429785081}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": 5.451540298150303, "y": 0.7018282668930939, "z": 0.44672032041891163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8934406408378233}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": 5.551158195103487, "y": 0.6946567553871641, "z": 0.44232061156036934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8846412231207387}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": 5.650757378111554, "y": 0.6872664668965722, "z": 0.43790499858337945}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8758099971667589}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": 5.750337591705245, "y": 0.6796433686032061, "z": 0.4336025956602203}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8672051913204406}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": 5.849902340319952, "y": 0.6717507493518521, "z": 0.42940692426568317}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8588138485313663}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": 5.9494340959217995, "y": 0.6635512490699546, "z": 0.42529030240701793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8505806048140359}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": 6.04894886320233, "y": 0.6550091092456466, "z": 0.4212496232341865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.842499246468373}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": 6.1484189987216915, "y": 0.6460932872090958, "z": 0.41727875339632114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8345575067926423}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": 6.24786366038804, "y": 0.6367692879656783, "z": 0.4133753537654675}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.826750707530935}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": 6.347254423318501, "y": 0.6270070744295596, "z": 0.4095377099475904}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8190754198951808}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": 6.446609252164107, "y": 0.6167720530728557, "z": 0.405763477850364}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.811526955700728}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": 6.545899551328582, "y": 0.6060343149304546, "z": 0.4020504877576969}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8041009755153938}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": 6.6451415660430655, "y": 0.5947592132353404, "z": 0.3983965663460762}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7967931326921524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": 6.744306586289442, "y": 0.5829170801567789, "z": 0.3947997985328093}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7895995970656186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": 6.84340840544703, "y": 0.5704732658087386, "z": 0.3912581036159217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7825162072318435}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": 6.9424188510211895, "y": 0.5573982442076714, "z": 0.38776965434465505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7755393086893101}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": 7.041348690496841, "y": 0.5436574442745481, "z": 0.3843324828924354}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7686649657848708}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": 7.1401704175764005, "y": 0.529221452005371, "z": 0.38094487065077265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7618897413015453}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": 7.2388912677715, "y": 0.5140558705965629, "z": 0.37760495049108234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7552099009821647}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": 7.337484680007271, "y": 0.49813132572450697, "z": 0.3743111392581929}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7486222785163859}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": 7.43595388497978, "y": 0.48141370615744017, "z": 0.3710616618868717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7421233237737433}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": 7.534273392232238, "y": 0.4638736046891877, "z": 0.36785500164867363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7357100032973473}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": 7.632442083029577, "y": 0.44547733041597765, "z": 0.364689471877602}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.729378943755204}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": 7.730435614016762, "y": 0.42619537152718195, "z": 0.3615637302295363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7231274604590726}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": 7.828248071135301, "y": 0.4059946162717923, "z": 0.3584761905569766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7169523811139532}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": 7.925856381416027, "y": 0.3848453240974546, "z": 0.35542561059588546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7108512211917709}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": 8.02324952562806, "y": 0.3627151375567328, "z": 0.3524104442116054}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7048208884232108}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": 8.120405578794642, "y": 0.3395740417882448, "z": 0.3494292553836833}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6988585107673666}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": 8.217308485187116, "y": 0.3153906394406008, "z": 0.34648062536299573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6929612507259915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": 8.313937206934119, "y": 0.29013460695692633, "z": 0.3435642744942023}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6871285489884046}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": 8.410270043827515, "y": 0.2637755514471201, "z": 0.34067888451196726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6813577690239345}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": 8.506287094366533, "y": 0.23628242774565536, "z": 0.33782352961042206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6756470592208441}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": 8.601960672214695, "y": 0.20762628243775172, "z": 0.3349967534341338}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6699935068682676}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": 8.697271791226992, "y": 0.17777567273383474, "z": 0.3321946067208738}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6643892134417476}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": 8.792187564101184, "y": 0.14670397862213375, "z": 0.3294156946875182}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6588313893750364}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": 8.886689375694584, "y": 0.11438013049318481, "z": 0.32665740530018295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6533148106003659}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": 8.980738816109122, "y": 0.08077997234799902, "z": 0.32391854801209835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6478370960241967}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": 9.074317838928307, "y": 0.04587210607813013, "z": 0.3211989073672299}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6423978147344598}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": 9.167381808465596, "y": 0.009634609472442936, "z": 0.31849727093731456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6369945418746291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": 9.259912867759109, "y": -0.02796483253831888, "z": 0.3158127290587672}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6316254581175345}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": 9.351860634160936, "y": -0.06694567193415694, "z": 0.31314407902210056}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6262881580442011}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": 9.443206517655744, "y": -0.1073406988488535, "z": 0.3104904641601374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6209809283202748}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": 9.533894638358246, "y": -0.14916663839892333, "z": 0.30785074926450234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6157014985290047}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": 9.623905224996463, "y": -0.1924566883543409, "z": 0.30522426570457034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6104485314091407}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": 9.713176903416834, "y": -0.2372245719514343, "z": 0.3026098954656698}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6052197909313396}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": 9.801688201052222, "y": -0.2835037774393832, "z": 0.30000700431959076}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6000140086391815}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": 9.88937248387678, "y": -0.3313047932832974, "z": 0.29741451083995146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5948290216799029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": 9.976205846655901, "y": -0.3806610932642568, "z": 0.29483192016077414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5896638403215483}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": 10.062116588302205, "y": -0.4315797019689549, "z": 0.29225819273702025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5845163854740405}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": 10.147077722338746, "y": -0.4840937811775421, "z": 0.28969299057477765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5793859811495553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": 10.231012598735953, "y": -0.5382066255904033, "z": 0.28713533046429335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5742706609285867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": 10.313890480781184, "y": -0.5939507125134605, "z": 0.28458508890594686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5691701778118937}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": 10.395629907872275, "y": -0.6513253623019452, "z": 0.2820413400826686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5640826801653372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": 10.476195739854505, "y": -0.7103619366091692, "z": 0.2795041556476877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5590083112953754}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": 10.555501568139642, "y": -0.7710553128236951, "z": 0.2769727582870125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.553945516574025}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": 10.633507361311363, "y": -0.8334353507368716, "z": 0.27444743965993196}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5488948793198639}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": 10.710121758223723, "y": -0.8974920893853913, "z": 0.27192748531474337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5438549706294867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": 10.785299027851023, "y": -0.9632531821533431, "z": 0.2694142578392604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5388285156785207}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": 10.858942880000859, "y": -1.030703694230811, "z": 0.266907266830495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.53381453366099}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": 10.931001265668211, "y": -1.0998685174262535, "z": 0.26440586400510824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5288117280102165}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": 11.001372447387464, "y": -1.1707258698602254, "z": 0.26190994093874587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5238198818774917}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": 11.06999884033305, "y": -1.2432974833688255, "z": 0.2594184780690769}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5188369561381538}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": 11.13677307220183, "y": -1.3175534183977002, "z": 0.25693140189334746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5138628037866949}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": 11.20163175806481, "y": -1.393511461700681, "z": 0.25444832897999564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5088966579599913}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": 11.26446164842911, "y": -1.4711323193073256, "z": 0.25196972678317575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5039394535663515}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": 11.325193178848314, "y": -1.550429364929903, "z": 0.2494946788738637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4989893577477274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": 11.383707147070583, "y": -1.6313523724888594, "z": 0.24702385701977994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4940477140395599}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": 11.439927149759747, "y": -1.713909311572847, "z": 0.24456356943990404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4891271388798081}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": 11.493726860075116, "y": -1.798039515447203, "z": 0.24211513798602358}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48423027597204715}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": 11.5450213689626, "y": -1.8837442774967483, "z": 0.23966663977529046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4793332795505809}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": 11.593681631074295, "y": -1.9709466539268186, "z": 0.23722022809548204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4744404561909641}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": 11.639618185310447, "y": -2.059639696527776, "z": 0.23479607967398713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46959215934797427}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": 11.682690305695171, "y": -2.149731417929385, "z": 0.23239778258042781}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46479556516085563}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": 11.722795470973088, "y": -2.241208645231875, "z": 0.23002261274565666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4600452254913133}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": 11.759789033355162, "y": -2.3339617852696923, "z": 0.22767557749817985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4553511549963597}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": 11.793559175195915, "y": -2.4279637945467685, "z": 0.2253881576267464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4507763152534928}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": 11.823947045267285, "y": -2.5230835570497057, "z": 0.22317040014475145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4463408002895029}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": 11.850824458486446, "y": -2.6192855481863546, "z": 0.22102152244266604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4420430448853321}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": 11.874028176970185, "y": -2.716404674248853, "z": 0.21895415632428802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43790831264857605}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": 11.89342568124949, "y": -2.8143927004621516, "z": 0.21697797959614185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4339559591922837}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": 11.90885158181182, "y": -2.9130420334022027, "z": 0.2151131292041197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4302262584082394}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": 11.920165720929525, "y": -3.0122945876091993, "z": 0.21337795110868926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4267559022173785}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": 11.927201851252812, "y": -3.111887550325105, "z": 0.21180154848121271}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42360309696242543}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": 11.929809260133412, "y": -3.2117568404331447, "z": 0.2104225400081676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4208450800163352}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": 11.927822889009256, "y": -3.3115709620445264, "z": 0.20928363375795644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4185672675159129}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": 11.921075059171486, "y": -3.4112699637847177, "z": 0.20841857649592854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4168371529918571}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": 11.90942286122367, "y": -3.5103966534258513, "z": 0.20788834291991576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4157766858398315}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": 11.892692226877775, "y": -3.6089175969842415, "z": 0.20759046290264224}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4151809258052845}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": 11.870838162549182, "y": -3.7062883851540906, "z": 0.2075103587001412}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4150207174002824}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": 11.843792402233552, "y": -3.802457455293429, "z": 0.20743022356346544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4148604471269309}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": 11.811750741628396, "y": -3.896994916644544, "z": 0.20757155602838853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41514311205677706}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": 11.774866898015523, "y": -3.9898063624451776, "z": 0.20791851997652805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4158370399530561}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": 11.733401543388656, "y": -4.08063753840557, "z": 0.20855632268252414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4171126453650483}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": 11.687592732262331, "y": -4.1693651132506, "z": 0.20946143811041723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41892287622083446}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": 11.63770465273562, "y": -4.255881982673297, "z": 0.2106749200726468}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4213498401452936}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": 11.58401826739591, "y": -4.3400714192438805, "z": 0.21215628813904888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42431257627809776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": 11.52676076320666, "y": -4.421907678571651, "z": 0.21387205080908425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4277441016181685}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": 11.466204950437593, "y": -4.501294480292228, "z": 0.21578572520353415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4315714504070683}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": 11.40253354190463, "y": -4.578250910090238, "z": 0.2178610091960074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4357220183920148}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": 11.336004611941071, "y": -4.65270068460635, "z": 0.2200783833518007}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4401567667036014}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": 11.266763281465268, "y": -4.724694966814756, "z": 0.22241644255488852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44483288510977703}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": 11.195057126872767, "y": -4.7941728207720615, "z": 0.22486054203125164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4497210840625033}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": 11.120999790492995, "y": -4.861204573339357, "z": 0.22739535808411793}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45479071616823585}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": 11.044821981332378, "y": -4.925746919848827, "z": 0.23000782942256223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46001565884512446}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": 10.966606515599494, "y": -4.987880802421851, "z": 0.23268296569434427}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46536593138868854}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": 10.886570628106345, "y": -5.047573805195714, "z": 0.23541328649297838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47082657298595676}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": 10.804770034145179, "y": -5.104912876630597, "z": 0.23818650651772635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4763730130354527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": 10.72141205275413, "y": -5.159873191598029, "z": 0.24099814788003496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4819962957600699}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": 10.636530098360517, "y": -5.212545888630681, "z": 0.2438432673778801}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4876865347557602}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": 10.550320587924206, "y": -5.262915366598605, "z": 0.24671781187232258}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49343562374464517}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": 10.462795267503875, "y": -5.311074304738512, "z": 0.24961655248449183}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49923310496898365}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": 10.37414497658779, "y": -5.357012466422244, "z": 0.25253847640296273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5050769528059255}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": 10.28436097610818, "y": -5.400824435416454, "z": 0.255481712124758}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.510963424249516}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": 10.193631194177083, "y": -5.442504433700476, "z": 0.2584450277688962}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5168900555377924}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": 10.101927469632793, "y": -5.482147415302304, "z": 0.2614272770878459}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5228545541756918}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": 10.009434445235822, "y": -5.519752228798596, "z": 0.2644280915787026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5288561831574052}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": 9.916107485245501, "y": -5.5554125685652105, "z": 0.26744721289663365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5348944257932673}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": 9.82212773971137, "y": -5.589131960189671, "z": 0.270484625716391}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.540969251432782}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": 9.727438365118173, "y": -5.6210011671751685, "z": 0.2735410274452023}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5470820548904046}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": 9.632213073645412, "y": -5.651029644473444, "z": 0.2766165951158732}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5532331902317464}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": 9.536390021333132, "y": -5.679303004478874, "z": 0.2797125910612865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.559425182122573}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": 9.440128983849695, "y": -5.705838001922817, "z": 0.2828292731972993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5656585463945986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": 9.343372038992559, "y": -5.730713172991408, "z": 0.2859683928177376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5719367856354752}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": 9.24625623541502, "y": -5.753953979890861, "z": 0.289130659640208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.578261319280416}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": 9.148740587211018, "y": -5.775630343314872, "z": 0.2923192914503169}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5846385829006338}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": 9.050926896733193, "y": -5.795777813043608, "z": 0.29553450240913154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5910690048182631}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": 8.95280425386308, "y": -5.814456262543263, "z": 0.29877869373564736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5975573874712947}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": 8.854427509112407, "y": -5.831711242996177, "z": 0.3020527262452239}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6041054524904478}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": 8.755827325004917, "y": -5.847593392759048, "z": 0.30536052219290977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6107210443858195}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": 8.657002664811309, "y": -5.862157705355647, "z": 0.3086980527485221}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6173961054970442}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": 8.558035719351395, "y": -5.875447864283178, "z": 0.31197306660480845}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6239461332096169}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": 8.458860987850391, "y": -5.887527567322914, "z": 0.31518798322166647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6303759664433329}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": 8.359616839973425, "y": -5.898435669894962, "z": 0.3183450717470827}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6366901434941654}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": 8.260178260958474, "y": -5.9082409337557795, "z": 0.3214464637761592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6428929275523184}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": 8.160729347861515, "y": -5.916980619852902, "z": 0.3244941647504034}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6489883295008068}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": 8.0611006956127, "y": -5.924724697204714, "z": 0.32749006417031135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6549801283406227}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": 7.961506638359291, "y": -5.931512135454531, "z": 0.33043594476884497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6608718895376899}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": 7.861746309237436, "y": -5.937412305121832, "z": 0.33333349077217567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6666669815443513}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": 7.7620543701467986, "y": -5.942467628085936, "z": 0.3361842953563048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6723685907126096}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": 7.662208075373222, "y": -5.946746044661157, "z": 0.33898986739321385}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6779797347864277}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": 7.562454676331459, "y": -5.950294332203073, "z": 0.341751637567572}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.683503275135144}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": 7.462556761500126, "y": -5.95317890905801, "z": 0.3444709639343346}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6889419278686691}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 3, "action": 0, "pose": {"position": {"x": 7.362768691189134, "y": -5.955451267239498, "z": 0.3471491369784575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.694298273956915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 3, "action": 0, "pose": {"position": {"x": 7.262843365434013, "y": -5.957176685299105, "z": 0.34978738423018124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6995747684603625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 3, "action": 0, "pose": {"position": {"x": 7.163039120764797, "y": -5.95841134379186, "z": 0.35238687448269335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7047737489653867}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 3, "action": 0, "pose": {"position": {"x": 7.063101936745659, "y": -5.95922001001513, "z": 0.3549487216532522}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7098974433065044}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 3, "action": 0, "pose": {"position": {"x": 6.963292980530196, "y": -5.959663311334508, "z": 0.35747398832393473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7149479766478695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 3, "action": 0, "pose": {"position": {"x": 6.863352423751055, "y": -5.95980625962659, "z": 0.3599636889939149}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7199273779878298}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 3, "action": 0, "pose": {"position": {"x": 6.76354457619177, "y": -5.959713554805897, "z": 0.36241879307148883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7248375861429777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 3, "action": 0, "pose": {"position": {"x": 6.663603868836399, "y": -5.959451243004632, "z": 0.36484022763085683}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7296804552617137}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 3, "action": 0, "pose": {"position": {"x": 6.563798855964449, "y": -5.959087620033579, "z": 0.36722887995588477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7344577599117695}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 3, "action": 0, "pose": {"position": {"x": 6.4638579683809265, "y": -5.958690566669889, "z": 0.36958559989062406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7391711997812481}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 3, "action": 0, "pose": {"position": {"x": 6.364055212398458, "y": -5.958331385078498, "z": 0.3664018265998702}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7328036531997404}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 3, "action": 0, "pose": {"position": {"x": 6.2641131104509835, "y": -5.958080599895165, "z": 0.3605584491772872}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7211168983545744}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 3, "action": 0, "pose": {"position": {"x": 6.164311818897658, "y": -5.958011793067236, "z": 0.35486507788419347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7097301557683869}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 3, "action": 0, "pose": {"position": {"x": 6.064368952955953, "y": -5.958198954552253, "z": 0.34931980090410775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6986396018082155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 3, "action": 0, "pose": {"position": {"x": 5.964570550476759, "y": -5.958717072727887, "z": 0.3439166132218279}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6878332264436559}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 3, "action": 0, "pose": {"position": {"x": 5.864631623862463, "y": -5.95964441835928, "z": 0.3386538812834752}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6773077625669504}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 3, "action": 0, "pose": {"position": {"x": 5.764842525469329, "y": -5.9610563892599515, "z": 0.3335254540587727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6670509081175454}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 3, "action": 0, "pose": {"position": {"x": 5.664919451385078, "y": -5.963036288696338, "z": 0.3285299314717372}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6570598629434744}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 3, "action": 0, "pose": {"position": {"x": 5.565141361821274, "y": -5.965659258478544, "z": 0.3236612054297052}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6473224108594104}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 3, "action": 0, "pose": {"position": {"x": 5.465269564960661, "y": -5.96901307498564, "z": 0.3189175670602725}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.637835134120545}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 3, "action": 0, "pose": {"position": {"x": 5.36553042876099, "y": -5.9731731282511475, "z": 0.3142931292636669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6285862585273339}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 3, "action": 0, "pose": {"position": {"x": 5.265744221618646, "y": -5.9782305625082515, "z": 0.3097858054897425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.619571610979485}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 3, "action": 0, "pose": {"position": {"x": 5.1660889741012515, "y": -5.9842614664058935, "z": 0.3053901459274824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6107802918549649}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 3, "action": 0, "pose": {"position": {"x": 5.066440177602227, "y": -5.991359067464164, "z": 0.3011038863669915}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.602207772733983}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 3, "action": 0, "pose": {"position": {"x": 4.966931958440219, "y": -5.999600994713236, "z": 0.296920920849419}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.593841841698838}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 3, "action": 0, "pose": {"position": {"x": 4.867490257169182, "y": -6.0090807722773745, "z": 0.2928372161967186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5856744323934372}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 3, "action": 0, "pose": {"position": {"x": 4.76821958527324, "y": -6.019876826697543, "z": 0.2888491664400511}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5776983328801022}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 3, "action": 0, "pose": {"position": {"x": 4.669085228862647, "y": -6.032082185706599, "z": 0.2849542971749714}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5699085943499428}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 3, "action": 0, "pose": {"position": {"x": 4.570167665548092, "y": -6.045777694237697, "z": 0.28114695820404073}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5622939164080815}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 3, "action": 0, "pose": {"position": {"x": 4.47146597844669, "y": -6.061054565231113, "z": 0.2774238618763593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5548477237527186}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 3, "action": 0, "pose": {"position": {"x": 4.3730459436969005, "y": -6.0779949909099855, "z": 0.27378073158508043}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5475614631701609}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 3, "action": 0, "pose": {"position": {"x": 4.274937389078907, "y": -6.096686925672255, "z": 0.2702140692997888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5404281385995776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 3, "action": 0, "pose": {"position": {"x": 4.17720020182604, "y": -6.117213281843181, "z": 0.2667192943343901}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5334385886687802}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 3, "action": 0, "pose": {"position": {"x": 4.079883117328346, "y": -6.139658972612522, "z": 0.2632926898248759}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5265853796497518}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 3, "action": 0, "pose": {"position": {"x": 3.983051505445976, "y": -6.164105264974587, "z": 0.2599298089989653}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5198596179979306}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 3, "action": 0, "pose": {"position": {"x": 3.886766977365478, "y": -6.190634038292662, "z": 0.25662669333144467}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5132533866628893}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 3, "action": 0, "pose": {"position": {"x": 3.791107638932032, "y": -6.219322452234673, "z": 0.2533801222230535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.506760244446107}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 3, "action": 0, "pose": {"position": {"x": 3.6961426372819743, "y": -6.250250324263795, "z": 0.25018715041602424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5003743008320485}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 3, "action": 0, "pose": {"position": {"x": 3.6019684928487083, "y": -6.283488493493229, "z": 0.24704073614949398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49408147229898797}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 3, "action": 0, "pose": {"position": {"x": 3.5086613128272655, "y": -6.319113356278158, "z": 0.24393728454019425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4878745690803885}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 3, "action": 0, "pose": {"position": {"x": 3.4163372303982453, "y": -6.357185229754236, "z": 0.24086580431942484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4817316086388497}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 3, "action": 0, "pose": {"position": {"x": 3.3250784749575173, "y": -6.397775094568647, "z": 0.2378216575216278}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4756433150432556}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 3, "action": 0, "pose": {"position": {"x": 3.2350212554165396, "y": -6.440928739487366, "z": 0.23479793754642067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46959587509284134}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 3, "action": 0, "pose": {"position": {"x": 3.146251947720974, "y": -6.486713677986409, "z": 0.23179119709566592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46358239419133185}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 3, "action": 0, "pose": {"position": {"x": 3.0589322881038217, "y": -6.535158463366204, "z": 0.22879797805533542}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45759595611067083}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 3, "action": 0, "pose": {"position": {"x": 2.973151155994092, "y": -6.586330549484493, "z": 0.22581500601773874}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4516300120354775}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 3, "action": 0, "pose": {"position": {"x": 2.8890978264613483, "y": -6.640238195589225, "z": 0.22283851046282355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4456770209256471}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 3, "action": 0, "pose": {"position": {"x": 2.8068719208169854, "y": -6.696944400218319, "z": 0.219865935249079}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.439731870498158}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 3, "action": 0, "pose": {"position": {"x": 2.726677315685458, "y": -6.756441548256596, "z": 0.21688682593038922}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43377365186077843}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 3, "action": 0, "pose": {"position": {"x": 2.648634839586201, "y": -6.818777650315557, "z": 0.21389819295527462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42779638591054925}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 3, "action": 0, "pose": {"position": {"x": 2.572957438473604, "y": -6.88392929560864, "z": 0.2109037216519018}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4218074433038036}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 3, "action": 0, "pose": {"position": {"x": 2.499799408616969, "y": -6.9519229223272685, "z": 0.20789717090285775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4157943418057155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 3, "action": 0, "pose": {"position": {"x": 2.4293817582563677, "y": -7.02272085628209, "z": 0.20484981231600746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4096996246320149}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 3, "action": 0, "pose": {"position": {"x": 2.361868574332328, "y": -7.096327215415736, "z": 0.20177136509174803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40354273018349607}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 3, "action": 0, "pose": {"position": {"x": 2.2974998950167893, "y": -7.172678221230814, "z": 0.1987215763847458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3974431527694916}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 3, "action": 0, "pose": {"position": {"x": 2.2365119994280853, "y": -7.251744872811958, "z": 0.19567725146704162}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39135450293408325}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 3, "action": 0, "pose": {"position": {"x": 2.1791524643555746, "y": -7.333462379796682, "z": 0.19258820319287825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3851764063857565}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 3, "action": 0, "pose": {"position": {"x": 2.125614873383091, "y": -7.417782514549295, "z": 0.18941278065564474}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37882556131128947}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 3, "action": 0, "pose": {"position": {"x": 2.0761843805347304, "y": -7.50456386868138, "z": 0.18634218683692244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3726843736738449}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 3, "action": 0, "pose": {"position": {"x": 2.031136561655107, "y": -7.593816556395597, "z": 0.18332633082218722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36665266164437443}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 3, "action": 0, "pose": {"position": {"x": 1.9908748130790084, "y": -7.685245762570594, "z": 0.18035320638338784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3607064127667757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 3, "action": 0, "pose": {"position": {"x": 1.9557689382798076, "y": -7.778539929827258, "z": 0.17793637184557815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3558727436911563}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 3, "action": 0, "pose": {"position": {"x": 1.9262511325148175, "y": -7.873837802044182, "z": 0.1762270555879573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3524541111759146}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 3, "action": 0, "pose": {"position": {"x": 1.9028596262956319, "y": -7.971132641731099, "z": 0.17464594165949238}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34929188331898475}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 3, "action": 0, "pose": {"position": {"x": 1.8854414742397472, "y": -8.069622016425225, "z": 0.17212382450364538}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34424764900729077}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 3, "action": 0, "pose": {"position": {"x": 1.873445365678306, "y": -8.16897881073765, "z": 0.16920719315428145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3384143863085629}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 3, "action": 0, "pose": {"position": {"x": 1.8678276132978193, "y": -8.268378956058854, "z": 0.16914190013900735}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3382838002780147}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 3, "action": 0, "pose": {"position": {"x": 1.8699746406162352, "y": -8.367797749683405, "z": 0.16907658190925656}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3381531638185131}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 3, "action": 0, "pose": {"position": {"x": 1.8791340131504952, "y": -8.467413958169235, "z": 0.1707902620356888}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3415805240713776}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 3, "action": 0, "pose": {"position": {"x": 1.8935748248144963, "y": -8.566180247017789, "z": 0.1755059920370612}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3510119840741224}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 3, "action": 0, "pose": {"position": {"x": 1.9135651310587973, "y": -8.664127200539093, "z": 0.1787286147944166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3574572295888332}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 3, "action": 0, "pose": {"position": {"x": 1.9398039770854827, "y": -8.760307649992242, "z": 0.1795741233360416}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3591482466720832}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 3, "action": 0, "pose": {"position": {"x": 1.97199126523975, "y": -8.855024822625461, "z": 0.18136805477456455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3627361095491291}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 3, "action": 0, "pose": {"position": {"x": 2.00916453328968, "y": -8.947598181426583, "z": 0.18434778472461003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36869556944922005}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 3, "action": 0, "pose": {"position": {"x": 2.0512160364900436, "y": -9.038314543436488, "z": 0.18716555863663856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3743311172732771}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 3, "action": 0, "pose": {"position": {"x": 2.0977619969290613, "y": -9.12654182053741, "z": 0.1897211668050199}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3794423336100398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 3, "action": 0, "pose": {"position": {"x": 2.148676635661148, "y": -9.2125908152619, "z": 0.1925427067804716}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3850854135609432}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 3, "action": 0, "pose": {"position": {"x": 2.2033790975313026, "y": -9.296024525628713, "z": 0.19560410632101854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3912082126420371}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 3, "action": 0, "pose": {"position": {"x": 2.2618022517502547, "y": -9.377137320617324, "z": 0.19873535257308977}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39747070514617955}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 3, "action": 0, "pose": {"position": {"x": 2.3234666596739446, "y": -9.455594369986484, "z": 0.20192014500951852}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40384029001903704}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 3, "action": 0, "pose": {"position": {"x": 2.3883108037131824, "y": -9.531648851904423, "z": 0.20520627585256687}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41041255170513374}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 3, "action": 0, "pose": {"position": {"x": 2.4558950028492164, "y": -9.605088625841274, "z": 0.2085832967135699}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4171665934271398}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 3, "action": 0, "pose": {"position": {"x": 2.526170048389798, "y": -9.676139533765253, "z": 0.21204088884114303}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42408177768228605}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 3, "action": 0, "pose": {"position": {"x": 2.598748324597365, "y": -9.74466580928984, "z": 0.21557424460197663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43114848920395327}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 3, "action": 0, "pose": {"position": {"x": 2.673590547063713, "y": -9.810874297658543, "z": 0.21918857923049329}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43837715846098657}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 3, "action": 0, "pose": {"position": {"x": 2.7503556027908287, "y": -9.87469183988296, "z": 0.22288361507700205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4457672301540041}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 3, "action": 0, "pose": {"position": {"x": 2.829010349639803, "y": -9.936309452377431, "z": 0.22666258133939682}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45332516267879364}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 3, "action": 0, "pose": {"position": {"x": 2.909259440669276, "y": -9.995702530356343, "z": 0.23052697546008488}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46105395092016976}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 3, "action": 0, "pose": {"position": {"x": 2.9910717393440267, "y": -10.053047480006564, "z": 0.23448150743526494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4689630148705299}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 3, "action": 0, "pose": {"position": {"x": 3.074196455696421, "y": -10.1083594971178, "z": 0.23853053020797038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47706106041594076}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 3, "action": 0, "pose": {"position": {"x": 3.158601083744315, "y": -10.161802395099349, "z": 0.24267959608251088}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48535919216502177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 3, "action": 0, "pose": {"position": {"x": 3.2440772340566273, "y": -10.21342315736749, "z": 0.24693442221980255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4938688444396051}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 3, "action": 0, "pose": {"position": {"x": 3.3305859292266957, "y": -10.263372881826836, "z": 0.25130103651990576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5026020730398115}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 3, "action": 0, "pose": {"position": {"x": 3.417962326553957, "y": -10.311726055430805, "z": 0.2557867577534159}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5115735155068318}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 3, "action": 0, "pose": {"position": {"x": 3.5061551422356914, "y": -10.35862061340882, "z": 0.26023608078768495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5204721615753699}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 3, "action": 0, "pose": {"position": {"x": 3.595043697007652, "y": -10.404155103222084, "z": 0.26456908388989603}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5291381677797921}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 3, "action": 0, "pose": {"position": {"x": 3.6845580044283865, "y": -10.448454535161234, "z": 0.2687924062207818}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5375848124415636}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 3, "action": 0, "pose": {"position": {"x": 3.7746223231143743, "y": -10.491639832187895, "z": 0.2729120822545803}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5458241645091606}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 3, "action": 0, "pose": {"position": {"x": 3.865142437109689, "y": -10.53382302610843, "z": 0.2769336161939679}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5538672323879358}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 3, "action": 0, "pose": {"position": {"x": 3.956087971976981, "y": -10.575145378743786, "z": 0.2808620450082017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5617240900164034}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 3, "action": 0, "pose": {"position": {"x": 4.047335895749075, "y": -10.615705026147412, "z": 0.28470199215080283}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5694039843016057}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 3, "action": 0, "pose": {"position": {"x": 4.138901246817739, "y": -10.655661537198924, "z": 0.28845771358777733}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5769154271755547}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 3, "action": 0, "pose": {"position": {"x": 4.230628384192136, "y": -10.695099100321011, "z": 0.2921331374404175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.584266274880835}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 3, "action": 0, "pose": {"position": {"x": 4.322575742910041, "y": -10.73419453717637, "z": 0.2957318982931508}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5914637965863015}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 3, "action": 0, "pose": {"position": {"x": 4.414553475654174, "y": -10.773018460848343, "z": 0.2992573670185811}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5985147340371622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 3, "action": 0, "pose": {"position": {"x": 4.506658984486723, "y": -10.811763585889173, "z": 0.30271267681552433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6054253536310487}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 3, "action": 0, "pose": {"position": {"x": 4.598669151352457, "y": -10.850487723076668, "z": 0.3061007460316918}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6122014920633836}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 3, "action": 0, "pose": {"position": {"x": 4.690713286824841, "y": -10.889397863521664, "z": 0.3075658782354995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.615131756470999}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 3, "action": 0, "pose": {"position": {"x": 4.782538573096159, "y": -10.928540222499294, "z": 0.3011769998827501}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6023539997655002}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 3, "action": 0, "pose": {"position": {"x": 4.874296491317396, "y": -10.968133942809581, "z": 0.295022228072869}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.590044456145738}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 3, "action": 0, "pose": {"position": {"x": 4.96571055885015, "y": -11.008215313391045, "z": 0.2890880766036694}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5781761532073388}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 3, "action": 0, "pose": {"position": {"x": 5.056942462161692, "y": -11.049012827362361, "z": 0.2833629182892703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5667258365785406}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 3, "action": 0, "pose": {"position": {"x": 5.147699622171596, "y": -11.090554879091247, "z": 0.27783479171771736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5556695834354347}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 3, "action": 0, "pose": {"position": {"x": 5.238140553309909, "y": -11.133075727505554, "z": 0.27249402503308623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5449880500661725}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 3, "action": 0, "pose": {"position": {"x": 5.327965476522937, "y": -11.176598399353988, "z": 0.2673298428881637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5346596857763274}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 3, "action": 0, "pose": {"position": {"x": 5.417315884982092, "y": -11.221358348946692, "z": 0.262335065756681}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.524670131513362}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 3, "action": 0, "pose": {"position": {"x": 5.5058920280833155, "y": -11.267375574926305, "z": 0.2574999868997107}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5149999737994214}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 3, "action": 0, "pose": {"position": {"x": 5.593806114793017, "y": -11.31488184879333, "z": 0.25281725791167764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5056345158233553}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 3, "action": 0, "pose": {"position": {"x": 5.680765413851717, "y": -11.363896157271915, "z": 0.24827809936999382}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49655619873998763}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 3, "action": 0, "pose": {"position": {"x": 5.766841521872543, "y": -11.4146399283557, "z": 0.24387884557000133}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48775769114000267}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 3, "action": 0, "pose": {"position": {"x": 5.851753505199228, "y": -11.4671342493005, "z": 0.23961241470757746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47922482941515493}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 3, "action": 0, "pose": {"position": {"x": 5.9355223680086695, "y": -11.521584080114502, "z": 0.23547964829349116}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4709592965869823}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 3, "action": 0, "pose": {"position": {"x": 6.017880670799529, "y": -11.578015871721556, "z": 0.23147104977463973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46294209954927945}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 3, "action": 0, "pose": {"position": {"x": 6.098794830473283, "y": -11.636611016069281, "z": 0.22757519503207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45515039006414}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 3, "action": 0, "pose": {"position": {"x": 6.17800557799102, "y": -11.69739073762609, "z": 0.22378926264378304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4475785252875661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 3, "action": 0, "pose": {"position": {"x": 6.255429720656708, "y": -11.76050838419532, "z": 0.2201145349576462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4402290699152924}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 3, "action": 0, "pose": {"position": {"x": 6.330802565880101, "y": -11.825976505793536, "z": 0.2165599434782879}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4331198869565758}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 3, "action": 0, "pose": {"position": {"x": 6.403988042912825, "y": -11.893922797506265, "z": 0.21314800435281805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4262960087056361}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 3, "action": 0, "pose": {"position": {"x": 6.474757989799567, "y": -11.964409360543955, "z": 0.20987433372802639}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41974866745605277}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 3, "action": 0, "pose": {"position": {"x": 6.542868955373817, "y": -12.037484876031387, "z": 0.2068070414567317}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4136140829134634}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 3, "action": 0, "pose": {"position": {"x": 6.608016061885416, "y": -12.113161439633702, "z": 0.2039487432046319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4078974864092638}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 3, "action": 0, "pose": {"position": {"x": 6.669943770138574, "y": -12.191489976532134, "z": 0.20119624342293085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4023924868458617}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 3, "action": 0, "pose": {"position": {"x": 6.728390727978706, "y": -12.272443404586154, "z": 0.19854653492763816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3970930698552763}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 3, "action": 0, "pose": {"position": {"x": 6.783104578589435, "y": -12.356002729275053, "z": 0.1960935008225937}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3921870016451874}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 3, "action": 0, "pose": {"position": {"x": 6.833746074548604, "y": -12.442072231344946, "z": 0.1938894606465981}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3877789212931962}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 3, "action": 0, "pose": {"position": {"x": 6.879981779737057, "y": -12.530572991255513, "z": 0.19193309921309387}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38386619842618774}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 3, "action": 0, "pose": {"position": {"x": 6.921488977111862, "y": -12.621415698069207, "z": 0.1902303780806198}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3804607561612396}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 3, "action": 0, "pose": {"position": {"x": 6.957912686360207, "y": -12.714413480436063, "z": 0.1889028878911586}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3778057757823172}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 3, "action": 0, "pose": {"position": {"x": 6.988860730422121, "y": -12.809337804176213, "z": 0.18814804172006178}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37629608344012355}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 3, "action": 0, "pose": {"position": {"x": 7.0139055132670505, "y": -12.905984794186546, "z": 0.18804468224861057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37608936449722113}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 3, "action": 0, "pose": {"position": {"x": 7.032622854442417, "y": -13.004002690406843, "z": 0.18797212029612262}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37594424059224524}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 3, "action": 0, "pose": {"position": {"x": 7.044909250315653, "y": -13.103150850954123, "z": 0.18789953032208218}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37579906064416435}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 3, "action": 0, "pose": {"position": {"x": 7.050781180756379, "y": -13.202798959087831, "z": 0.18798541622441872}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37597083244883744}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 3, "action": 0, "pose": {"position": {"x": 7.050472540169911, "y": -13.302700768520491, "z": 0.18855703159524423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37711406319048846}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 3, "action": 0, "pose": {"position": {"x": 7.044306634263358, "y": -13.402316418472049, "z": 0.18967724062598598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37935448125197196}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 3, "action": 0, "pose": {"position": {"x": 7.032530027453402, "y": -13.501541457342633, "z": 0.19110086453277328}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38220172906554656}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 3, "action": 0, "pose": {"position": {"x": 7.015397460319825, "y": -13.5998846799456, "z": 0.19271884422456112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38543768844912224}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 3, "action": 0, "pose": {"position": {"x": 6.9931327244138, "y": -13.69728829403147, "z": 0.1945601850881661}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3891203701763322}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 3, "action": 0, "pose": {"position": {"x": 6.966027039317001, "y": -13.793379697925335, "z": 0.19658285856952165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3931657171390433}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 3, "action": 0, "pose": {"position": {"x": 6.934290302895129, "y": -13.888102750136541, "z": 0.1987446274963652}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3974892549927304}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 3, "action": 0, "pose": {"position": {"x": 6.898192925313215, "y": -13.981192385403604, "z": 0.20101366386442335}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4020273277288467}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 3, "action": 0, "pose": {"position": {"x": 6.857927028874234, "y": -14.072610639675267, "z": 0.2033773851054817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4067547702109634}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 3, "action": 0, "pose": {"position": {"x": 6.813752633314055, "y": -14.162157388744326, "z": 0.20581896011200523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41163792022401047}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 3, "action": 0, "pose": {"position": {"x": 6.7658520318297, "y": -14.249811443506976, "z": 0.20833744069737628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41667488139475256}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 3, "action": 0, "pose": {"position": {"x": 6.71446643639103, "y": -14.335436296507, "z": 0.21091798803133302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42183597606266604}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 3, "action": 0, "pose": {"position": {"x": 6.65977532186641, "y": -14.419010943770285, "z": 0.21355982261430456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4271196452286091}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 3, "action": 0, "pose": {"position": {"x": 6.60199338678623, "y": -14.500453541074403, "z": 0.21625326841317158}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43250653682634316}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 3, "action": 0, "pose": {"position": {"x": 6.541273598805074, "y": -14.579758521717263, "z": 0.2189690460668509}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4379380921337018}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 3, "action": 0, "pose": {"position": {"x": 6.477813672396171, "y": -14.656859639788896, "z": 0.22170753235500212}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44341506471000425}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 3, "action": 0, "pose": {"position": {"x": 6.411749347760455, "y": -14.731772834368767, "z": 0.22447507188263088}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44895014376526177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 3, "action": 0, "pose": {"position": {"x": 6.343263557905152, "y": -14.804457510728723, "z": 0.22726596846173086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4545319369234617}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 3, "action": 0, "pose": {"position": {"x": 6.272491520579825, "y": -14.874929822681485, "z": 0.23008715215413061}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46017430430826123}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 3, "action": 0, "pose": {"position": {"x": 6.199589576082354, "y": -14.94318370196622, "z": 0.2329374970599763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4658749941199526}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 3, "action": 0, "pose": {"position": {"x": 6.124680786795893, "y": -15.009243404728979, "z": 0.23581279234958097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47162558469916194}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 3, "action": 0, "pose": {"position": {"x": 6.047909419214807, "y": -15.073113888219464, "z": 0.23871483445270975}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4774296689054195}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 3, "action": 0, "pose": {"position": {"x": 5.969382859696238, "y": -15.13483098267221, "z": 0.24164293072792373}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48328586145584745}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 3, "action": 0, "pose": {"position": {"x": 5.889233538945262, "y": -15.194409718024898, "z": 0.24459775132395856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4891955026479171}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 3, "action": 0, "pose": {"position": {"x": 5.807557509812637, "y": -15.251892971502288, "z": 0.24758096020470036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4951619204094007}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 3, "action": 0, "pose": {"position": {"x": 5.724474194217901, "y": -15.307306642014556, "z": 0.25059464957387684}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5011892991477537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 3, "action": 0, "pose": {"position": {"x": 5.640067272910783, "y": -15.36070081986515, "z": 0.25364031413724497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5072806282744899}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 3, "action": 0, "pose": {"position": {"x": 5.554447231833994, "y": -15.4121081103805, "z": 0.25672034225126256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5134406845025251}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 3, "action": 0, "pose": {"position": {"x": 5.467685369895877, "y": -15.46158510520619, "z": 0.25983695368611825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5196739073722365}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 3, "action": 0, "pose": {"position": {"x": 5.379883901095171, "y": -15.509170251100121, "z": 0.26299288327369424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5259857665473885}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 3, "action": 0, "pose": {"position": {"x": 5.291102170767505, "y": -15.554925639977947, "z": 0.2661906255511252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5323812511022504}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 3, "action": 0, "pose": {"position": {"x": 5.201435425769073, "y": -15.598894327614465, "z": 0.26943323232649197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5388664646529839}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 3, "action": 0, "pose": {"position": {"x": 5.110931460006402, "y": -15.641142971842127, "z": 0.27272326197178126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5454465239435625}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 3, "action": 0, "pose": {"position": {"x": 5.019679522190097, "y": -15.68171828774063, "z": 0.27606397192555504}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5521279438511101}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 3, "action": 0, "pose": {"position": {"x": 4.927716242360918, "y": -15.720690668754763, "z": 0.27945804772834953}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5589160954566991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 3, "action": 0, "pose": {"position": {"x": 4.835125802091339, "y": -15.758109768114865, "z": 0.2829090637596283}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5658181275192566}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 3, "action": 0, "pose": {"position": {"x": 4.741934375055028, "y": -15.794048984012134, "z": 0.2864200540230044}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5728401080460088}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 3, "action": 0, "pose": {"position": {"x": 4.6482216525765025, "y": -15.828560276945067, "z": 0.28999448014568785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5799889602913757}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 3, "action": 0, "pose": {"position": {"x": 4.554004112770907, "y": -15.861718713556801, "z": 0.2936339892911422}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5872679785822844}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 3, "action": 0, "pose": {"position": {"x": 4.459357054604702, "y": -15.893578128341929, "z": 0.29720197441816765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5944039488363353}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 3, "action": 0, "pose": {"position": {"x": 4.36428935016064, "y": -15.924215398347352, "z": 0.30069799364982885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6013959872996577}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 3, "action": 0, "pose": {"position": {"x": 4.268872281028006, "y": -15.953687489432314, "z": 0.30412508852274955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6082501770454991}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 3, "action": 0, "pose": {"position": {"x": 4.173108052268801, "y": -15.982074795836905, "z": 0.3074860943546006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6149721887092012}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 3, "action": 0, "pose": {"position": {"x": 4.07706498537355, "y": -16.00943803890122, "z": 0.31078365930588997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6215673186117799}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 3, "action": 0, "pose": {"position": {"x": 3.9807392290546737, "y": -16.035859195951584, "z": 0.31402026123425886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6280405224685177}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 3, "action": 0, "pose": {"position": {"x": 3.8841956952784717, "y": -16.061400654977913, "z": 0.3171982226459399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6343964452918798}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 3, "action": 0, "pose": {"position": {"x": 3.787425297110101, "y": -16.0861440257942, "z": 0.32031972400054315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6406394480010863}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 3, "action": 0, "pose": {"position": {"x": 3.690489270547622, "y": -16.11015232972669, "z": 0.3233868155855592}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6467736311711184}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 3, "action": 0, "pose": {"position": {"x": 3.5933739674251703, "y": -16.133507153210946, "z": 0.32640142814414597}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6528028562882919}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 3, "action": 0, "pose": {"position": {"x": 3.4961384449442714, "y": -16.156272085450663, "z": 0.32936538241254254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6587307648250851}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 3, "action": 0, "pose": {"position": {"x": 3.3987652316448504, "y": -16.178528573981946, "z": 0.3322803977008099}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6645607954016198}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 3, "action": 0, "pose": {"position": {"x": 3.3013113717282314, "y": -16.200340540383735, "z": 0.33514809963164155}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6702961992632831}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 3, "action": 0, "pose": {"position": {"x": 3.203756848829674, "y": -16.221788994845518, "z": 0.33797002713606095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6759400542721219}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 3, "action": 0, "pose": {"position": {"x": 3.1061567093220974, "y": -16.2429380007674, "z": 0.34074763879140985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6814952775828197}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 3, "action": 0, "pose": {"position": {"x": 3.008489622852224, "y": -16.26386796383218, "z": 0.3434823185756675}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.686964637151335}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 3, "action": 0, "pose": {"position": {"x": 2.910808726049356, "y": -16.284642943507123, "z": 0.34617538110247964}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6923507622049593}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 3, "action": 0, "pose": {"position": {"x": 2.813092723870174, "y": -16.305342552474766, "z": 0.34882807639305563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6976561527861113}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 3, "action": 0, "pose": {"position": {"x": 2.7153927246853615, "y": -16.32603072503243, "z": 0.35144159423405463}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7028831884681093}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 3, "action": 0, "pose": {"position": {"x": 2.617689015716801, "y": -16.34678603043759, "z": 0.3540170681645286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7080341363290572}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 3, "action": 0, "pose": {"position": {"x": 2.520030349073672, "y": -16.367672241008105, "z": 0.3565555791298082}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7131111582596164}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 3, "action": 0, "pose": {"position": {"x": 2.4223999045877895, "y": -16.388766793664512, "z": 0.3590581588357146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7181163176714292}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 3, "action": 0, "pose": {"position": {"x": 2.3248439466172472, "y": -16.41013324108126, "z": 0.36152579283260877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7230515856652175}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 3, "action": 0, "pose": {"position": {"x": 2.227350439389361, "y": -16.431847356223745, "z": 0.3639594233554013}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7279188467108026}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 3, "action": 0, "pose": {"position": {"x": 2.129962351427338, "y": -16.453972590064826, "z": 0.3663599519427236}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7327199038854472}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 3, "action": 0, "pose": {"position": {"x": 2.032674289031688, "y": -16.476583081892993, "z": 0.36335698483533446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7267139696706689}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 3, "action": 0, "pose": {"position": {"x": 1.9355253634679117, "y": -16.499742489792276, "z": 0.35909874417844273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7181974883568855}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 3, "action": 0, "pose": {"position": {"x": 1.838518025260933, "y": -16.52352259161644, "z": 0.35498848477984485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7099769695596897}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 3, "action": 0, "pose": {"position": {"x": 1.7416873171565792, "y": -16.54798664048128, "z": 0.35101691889213227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7020338377842645}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 3, "action": 0, "pose": {"position": {"x": 1.6450451552996663, "y": -16.573202282631524, "z": 0.3471802580783381}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6943605161566762}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 3, "action": 0, "pose": {"position": {"x": 1.5486210883297586, "y": -16.59923226048511, "z": 0.34347276594447984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6869455318889597}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 3, "action": 0, "pose": {"position": {"x": 1.452439228943658, "y": -16.6261400228103, "z": 0.3398922346670742}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6797844693341484}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 3, "action": 0, "pose": {"position": {"x": 1.3565227914803926, "y": -16.653989330084986, "z": 0.33643622650027727}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6728724530005545}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 3, "action": 0, "pose": {"position": {"x": 1.2609079440391993, "y": -16.682840138570135, "z": 0.33310312263092046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6662062452618409}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 3, "action": 0, "pose": {"position": {"x": 1.165613139750495, "y": -16.71275780010996, "z": 0.32989150909741877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6597830181948375}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 3, "action": 0, "pose": {"position": {"x": 1.0706892851364789, "y": -16.743797589159875, "z": 0.3268010286389717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6536020572779434}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 3, "action": 0, "pose": {"position": {"x": 0.9761482835912358, "y": -16.776027557714883, "z": 0.3238301774615951}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6476603549231902}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 3, "action": 0, "pose": {"position": {"x": 0.8820576345474344, "y": -16.809496848170067, "z": 0.3209794635585746}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6419589271171492}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 3, "action": 0, "pose": {"position": {"x": 0.7884218359056028, "y": -16.844276889000344, "z": 0.3182493023994229}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6364986047988458}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 3, "action": 0, "pose": {"position": {"x": 0.695324853071354, "y": -16.880410135315106, "z": 0.3156413891520597}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6312827783041194}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 3, "action": 0, "pose": {"position": {"x": 0.602766809912427, "y": -16.91797130939783, "z": 0.3131571056561425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.626314211312285}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 3, "action": 0, "pose": {"position": {"x": 0.5108474483355001, "y": -16.9569954702522, "z": 0.31079955970484807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6215991194096961}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 3, "action": 0, "pose": {"position": {"x": 0.41956370688088745, "y": -16.99756091912929, "z": 0.3085723060558569}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6171446121117138}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 3, "action": 0, "pose": {"position": {"x": 0.3290304935885623, "y": -17.039694839173713, "z": 0.3064798691795925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.612959738359185}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 3, "action": 0, "pose": {"position": {"x": 0.23924416492743075, "y": -17.083478939343824, "z": 0.30452726793636337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6090545358727267}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 3, "action": 0, "pose": {"position": {"x": 0.15033356456602223, "y": -17.128931930582045, "z": 0.30272105060595406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6054421012119081}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 3, "action": 0, "pose": {"position": {"x": 0.06229733166288812, "y": -17.176138294025403, "z": 0.30106924357826226}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6021384871565245}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 3, "action": 0, "pose": {"position": {"x": -0.024724157691578826, "y": -17.22510881440166, "z": 0.2995809652111824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5991619304223648}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 3, "action": 0, "pose": {"position": {"x": -0.11072605774112224, "y": -17.275929824442454, "z": 0.2982695533865821}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5965391067731642}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 3, "action": 0, "pose": {"position": {"x": -0.19555435464013307, "y": -17.3286029289461, "z": 0.29714591582911515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5942918316582303}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 3, "action": 0, "pose": {"position": {"x": -0.2791963337857027, "y": -17.383215726847016, "z": 0.29621824152991927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5924364830598385}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 3, "action": 0, "pose": {"position": {"x": -0.3614958505470747, "y": -17.439763790776954, "z": 0.29550469365776005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5910093873155201}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 3, "action": 0, "pose": {"position": {"x": -0.44242269804561474, "y": -17.49833004747075, "z": 0.2950448411234994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5900896822469988}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 3, "action": 0, "pose": {"position": {"x": -0.521805831756612, "y": -17.558905664508927, "z": 0.2948141787032817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5896283574065634}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 3, "action": 0, "pose": {"position": {"x": -0.5996109231145603, "y": -17.621562534738487, "z": 0.29469732971782686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5893946594356537}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 3, "action": 0, "pose": {"position": {"x": -0.6756746723420165, "y": -17.686224647293134, "z": 0.2945836130554804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5891672261109608}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 3, "action": 0, "pose": {"position": {"x": -0.7500233808662797, "y": -17.752905570610604, "z": 0.2944698524786951}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5889397049573902}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 3, "action": 0, "pose": {"position": {"x": -0.8226230407519142, "y": -17.821450265159847, "z": 0.2946620151222539}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5893240302445077}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 3, "action": 0, "pose": {"position": {"x": -0.8935310110990927, "y": -17.891761773443104, "z": 0.2951671355496811}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5903342710993622}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 3, "action": 0, "pose": {"position": {"x": -0.9627938777795347, "y": -17.963726347366382, "z": 0.29598611689528337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5919722337905667}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 3, "action": 0, "pose": {"position": {"x": -1.0304327287150319, "y": -18.037192637151996, "z": 0.2971181778078724}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5942363556157448}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 3, "action": 0, "pose": {"position": {"x": -1.0965379176722063, "y": -18.112071543502097, "z": 0.2985732569470927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5971465138941854}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 3, "action": 0, "pose": {"position": {"x": -1.1611472177566573, "y": -18.188214405594348, "z": 0.3003358458310514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6006716916621028}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 3, "action": 0, "pose": {"position": {"x": -1.2243634619733916, "y": -18.265545131895923, "z": 0.3024000048680765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.604800009736153}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 3, "action": 0, "pose": {"position": {"x": -1.2862397274210593, "y": -18.343928192182304, "z": 0.3047556492134318}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6095112984268636}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 3, "action": 0, "pose": {"position": {"x": -1.3468837093970265, "y": -18.423297421652123, "z": 0.30739218081012853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6147843616202571}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 3, "action": 0, "pose": {"position": {"x": -1.4063539117268333, "y": -18.503523835122774, "z": 0.31030278527033267}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6206055705406653}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 3, "action": 0, "pose": {"position": {"x": -1.4647630786012735, "y": -18.58455035448836, "z": 0.3134839330205775}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.626967866041155}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 3, "action": 0, "pose": {"position": {"x": -1.5221800592902803, "y": -18.66626088515237, "z": 0.3166715312452645}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.633343062490529}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 3, "action": 0, "pose": {"position": {"x": -1.578719252824384, "y": -18.748603912696964, "z": 0.31980231466478304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6396046293295661}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 3, "action": 0, "pose": {"position": {"x": -1.6344563293696661, "y": -18.831472325364928, "z": 0.3228783545327372}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6457567090654744}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 3, "action": 0, "pose": {"position": {"x": -1.689507468527752, "y": -18.9148182688419, "z": 0.3259016008634672}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6518032017269344}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 3, "action": 0, "pose": {"position": {"x": -1.7439542524150609, "y": -18.998542616913404, "z": 0.3288738921416786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6577477842833572}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 3, "action": 0, "pose": {"position": {"x": -1.7979122764780278, "y": -19.082598331867903, "z": 0.33179696405448567}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6635939281089713}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 3, "action": 0, "pose": {"position": {"x": -1.8514682489210281, "y": -19.166896965163524, "z": 0.33467245736353884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6693449147270777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 3, "action": 0, "pose": {"position": {"x": -1.9047336981229266, "y": -19.251392452618237, "z": 0.33750192501853654}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6750038500370731}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 3, "action": 0, "pose": {"position": {"x": -1.9577977096752592, "y": -19.336004449528843, "z": 0.3402868385996112}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6805736771992223}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 3, "action": 0, "pose": {"position": {"x": -2.0107687752531582, "y": -19.420684246405465, "z": 0.3357964550349125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.671592910069825}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 3, "action": 0, "pose": {"position": {"x": -2.063739583116936, "y": -19.505357173092527, "z": 0.32912043237593974}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6582408647518795}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 3, "action": 0, "pose": {"position": {"x": -2.1168157896682995, "y": -19.589967939715176, "z": 0.3226804963803588}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6453609927607176}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 3, "action": 0, "pose": {"position": {"x": -2.1700956884029634, "y": -19.674448922704926, "z": 0.3164630745789807}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6329261491579614}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 3, "action": 0, "pose": {"position": {"x": -2.223680129089335, "y": -19.758735805110586, "z": 0.3104553480087971}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6209106960175942}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 3, "action": 0, "pose": {"position": {"x": -2.2776716955404845, "y": -19.84276601689348, "z": 0.3046456455911913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6092912911823826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 3, "action": 0, "pose": {"position": {"x": -2.3321659347605856, "y": -19.92646485060779, "z": 0.2990227819971507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5980455639943014}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 3, "action": 0, "pose": {"position": {"x": -2.387268777987566, "y": -20.00977229117413, "z": 0.29357651365684573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5871530273136915}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 3, "action": 0, "pose": {"position": {"x": -2.443070123878524, "y": -20.092602543183855, "z": 0.2882969253137939}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5765938506275878}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 3, "action": 0, "pose": {"position": {"x": -2.4996781667214845, "y": -20.174895616950757, "z": 0.283174929004608}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.566349858009216}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 3, "action": 0, "pose": {"position": {"x": -2.557176830325466, "y": -20.25655436159899, "z": 0.27820166301236166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5564033260247233}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 3, "action": 0, "pose": {"position": {"x": -2.615674456210991, "y": -20.337514990978388, "z": 0.27336895254322213}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5467379050864443}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 3, "action": 0, "pose": {"position": {"x": -2.6752494950044605, "y": -20.417670184405313, "z": 0.26866904012158105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5373380802431621}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 3, "action": 0, "pose": {"position": {"x": -2.7360073153123077, "y": -20.49694747242637, "z": 0.26409510023460875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5281902004692175}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 3, "action": 0, "pose": {"position": {"x": -2.798021401085021, "y": -20.575230156684245, "z": 0.25963977193187743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5192795438637549}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 3, "action": 0, "pose": {"position": {"x": -2.861390706834301, "y": -20.652432681266035, "z": 0.25529617973540025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5105923594708005}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 3, "action": 0, "pose": {"position": {"x": -2.926184874229755, "y": -20.72843142873735, "z": 0.25105874171934106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5021174834386821}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 3, "action": 0, "pose": {"position": {"x": -2.9924915232854428, "y": -20.80312222028964, "z": 0.2469233787508413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4938467575016826}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 3, "action": 0, "pose": {"position": {"x": -3.060377100713731, "y": -20.87637377829177, "z": 0.24288357778133646}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4857671555626729}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 3, "action": 0, "pose": {"position": {"x": -3.1299137455678108, "y": -20.948060281757932, "z": 0.23893298795648105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4778659759129621}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 3, "action": 0, "pose": {"position": {"x": -3.2011660592461717, "y": -21.01804648521031, "z": 0.23506963316907858}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47013926633815717}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 3, "action": 0, "pose": {"position": {"x": -3.2741832182984876, "y": -21.08617887248592, "z": 0.23129447340815026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46258894681630053}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 3, "action": 0, "pose": {"position": {"x": -3.349024199093401, "y": -21.15230929172708, "z": 0.22760004330467276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4552000866093455}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 3, "action": 0, "pose": {"position": {"x": -3.425717980444262, "y": -21.216263460528882, "z": 0.22397563361845943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44795126723691886}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 3, "action": 0, "pose": {"position": {"x": -3.5043205729650797, "y": -21.27789120070275, "z": 0.22043155130270325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4408631026054065}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 3, "action": 0, "pose": {"position": {"x": -3.584821644624489, "y": -21.336981253728815, "z": 0.21698608285701051}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43397216571402103}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 3, "action": 0, "pose": {"position": {"x": -3.667258634716331, "y": -21.393349368144214, "z": 0.21362748903439463}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42725497806878926}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 3, "action": 0, "pose": {"position": {"x": -3.7516137576277826, "y": -21.446777337874387, "z": 0.210328806715978}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.420657613431956}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 3, "action": 0, "pose": {"position": {"x": -3.837896587644496, "y": -21.497073884317846, "z": 0.2071520969852157}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4143041939704314}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 3, "action": 0, "pose": {"position": {"x": -3.926058271858062, "y": -21.54398330930996, "z": 0.2041565239661993}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4083130479323986}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 3, "action": 0, "pose": {"position": {"x": -4.016110151132794, "y": -21.58725616276877, "z": 0.20131617591042086}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4026323518208417}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 3, "action": 0, "pose": {"position": {"x": -4.107881219194888, "y": -21.62657173573348, "z": 0.19864525309992634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3972905061998527}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 3, "action": 0, "pose": {"position": {"x": -4.201340250900629, "y": -21.661685013214623, "z": 0.19609583439545514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3921916687909103}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 3, "action": 0, "pose": {"position": {"x": -4.296377772864761, "y": -21.69234175486315, "z": 0.19360388122322889}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38720776244645777}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 3, "action": 0, "pose": {"position": {"x": -4.392818413594931, "y": -21.718304581521622, "z": 0.19116244120056228}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38232488240112456}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 3, "action": 0, "pose": {"position": {"x": -4.490450117776402, "y": -21.73933562537034, "z": 0.18888000827568285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3777600165513657}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 3, "action": 0, "pose": {"position": {"x": -4.58906032384148, "y": -21.755130561545716, "z": 0.18733530592538505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3746706118507701}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 3, "action": 0, "pose": {"position": {"x": -4.688398201135424, "y": -21.7651894446417, "z": 0.18662130517557146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3732426103511429}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 3, "action": 0, "pose": {"position": {"x": -4.788182712751786, "y": -21.7690094216015, "z": 0.1865492924703067}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3730985849406134}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 3, "action": 0, "pose": {"position": {"x": -4.888001810270651, "y": -21.76619431591025, "z": 0.18085436302363186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36170872604726373}, "color": {"r": 1.0, "g": 0.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_iqp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.888001810270651, "y_m": -21.76619431591025, "d_right": 0.400040493272586, "d_left": 2.593548394036493, "psi_rad": 3.07882081099369, "kappa_radpm": -0.7072231653667203, "vx_mps": 4.119195308287687, "ax_mps2": -0.06559456277268509}, {"id": 1, "s_m": 0.09987487824162611, "d_m": 0.0, "x_m": -4.987328641385195, "y_m": -21.756514451068742, "d_right": 0.41761772262403357, "d_left": 2.554180395810017, "psi_rad": 3.011011555486092, "kappa_radpm": -0.6506184872142172, "vx_mps": 4.1176045815350975, "ax_mps2": 0.9034359758093752}, {"id": 2, "s_m": 0.19974975648325222, "d_m": 0.0, "x_m": -5.085924586665892, "y_m": -21.740390912772842, "d_right": 0.45112355130915305, "d_left": 2.459803477689965, "psi_rad": 2.948973166978729, "kappa_radpm": -0.5925948766012663, "vx_mps": 4.139459941350436, "ax_mps2": 1.7795690349356101}, {"id": 3, "s_m": 0.2996246347248783, "d_m": 0.0, "x_m": -5.183256323198033, "y_m": -21.71844397152357, "d_right": 0.47340466045941215, "d_left": 2.368243832567603, "psi_rad": 2.8910482367481243, "kappa_radpm": -0.5691511590542849, "vx_mps": 4.182176118651447, "ax_mps2": 1.977590670190092}, {"id": 4, "s_m": 0.39949951296650443, "d_m": 0.0, "x_m": -5.27935286962664, "y_m": -21.69095016892718, "d_right": 0.4970629261631381, "d_left": 2.277199911629804, "psi_rad": 2.8351293213085014, "kappa_radpm": -0.5491207473842821, "vx_mps": 4.229139432817568, "ax_mps2": 2.1094919714198754}, {"id": 5, "s_m": 0.49937439120813054, "d_m": 0.0, "x_m": -5.3736868527244965, "y_m": -21.65828400567249, "d_right": 0.5336472151746711, "d_left": 2.183225319993615, "psi_rad": 2.7818497601772654, "kappa_radpm": -0.5184080890226646, "vx_mps": 4.278666947754522, "ax_mps2": 2.438736091008928}, {"id": 6, "s_m": 0.5992492694497566, "d_m": 0.0, "x_m": -5.466258780932494, "y_m": -21.620755817941255, "d_right": 0.5785913792628387, "d_left": 2.0903982394169165, "psi_rad": 2.731495899143093, "kappa_radpm": -0.4933934350133723, "vx_mps": 4.335219462739222, "ax_mps2": 2.6544457747777512}, {"id": 7, "s_m": 0.6991241476913828, "d_m": 0.0, "x_m": -5.556779406247484, "y_m": -21.5787222606137, "d_right": 0.6201295802833285, "d_left": 1.9998596391965593, "psi_rad": 2.6822355513009395, "kappa_radpm": -0.4935200573278607, "vx_mps": 4.395947302598475, "ax_mps2": 2.388339636369615}, {"id": 8, "s_m": 0.7989990259330089, "d_m": 0.0, "x_m": -5.645218381608817, "y_m": -21.532228859076092, "d_right": 0.6700340301108719, "d_left": 1.9116162242224952, "psi_rad": 2.632985366842977, "kappa_radpm": -0.4884082900791132, "vx_mps": 4.449878981274315, "ax_mps2": 2.2522718853416372}, {"id": 9, "s_m": 0.898873904174635, "d_m": 0.0, "x_m": -5.731223192880465, "y_m": -21.481540687915317, "d_right": 0.7246029508776578, "d_left": 1.8253970772446204, "psi_rad": 2.5854859791572458, "kappa_radpm": -0.4637119745723085, "vx_mps": 4.500145965256905, "ax_mps2": 2.5309351385090726}, {"id": 10, "s_m": 0.9987487824162611, "d_m": 0.0, "x_m": -5.8148643304676915, "y_m": -21.42687184403528, "d_right": 0.7761861160051463, "d_left": 1.7419034430995688, "psi_rad": 2.540235569110225, "kappa_radpm": -0.4419268129077813, "vx_mps": 4.55597052077931, "ax_mps2": 2.7467411700591766}, {"id": 11, "s_m": 1.0986236606578872, "d_m": 0.0, "x_m": -5.895954640516902, "y_m": -21.368608557058934, "d_right": 0.8330900560614198, "d_left": 1.660857912132115, "psi_rad": 2.497270809072715, "kappa_radpm": -0.4186005414190435, "vx_mps": 4.615791185273868, "ax_mps2": 2.9991307213503062}, {"id": 12, "s_m": 1.1984985388995133, "d_m": 0.0, "x_m": -5.974557567933246, "y_m": -21.306992027085332, "d_right": 0.8910650092238711, "d_left": 1.5820039278559268, "psi_rad": 2.456585880652423, "kappa_radpm": -0.3980504195847007, "vx_mps": 4.6802354531906945, "ax_mps2": 3.1961836903195397}, {"id": 13, "s_m": 1.2983734171411394, "d_m": 0.0, "x_m": -6.050622179549216, "y_m": -21.242312185677996, "d_right": 0.9395230448112931, "d_left": 1.5069743410218819, "psi_rad": 2.4174247694503004, "kappa_radpm": -0.386406471393828, "vx_mps": 4.747951222487461, "ax_mps2": 3.202075517765553}, {"id": 14, "s_m": 1.3982482953827655, "d_m": 0.0, "x_m": -6.1241651773720065, "y_m": -21.1747172279909, "d_right": 0.9925549039408362, "d_left": 1.4377334573755483, "psi_rad": 2.379394505059773, "kappa_radpm": -0.3744917494410656, "vx_mps": 4.8148369251756415, "ax_mps2": 3.2286668481661915}, {"id": 15, "s_m": 1.4981231736243916, "d_m": 0.0, "x_m": -6.1951025391070775, "y_m": -21.104448459848353, "d_right": 1.0494520906953064, "d_left": 1.375230333816656, "psi_rad": 2.3426940095690973, "kappa_radpm": -0.36068340448797687, "vx_mps": 4.881350226394494, "ax_mps2": 3.3136738712335063}, {"id": 16, "s_m": 1.5979980518660177, "d_m": 0.0, "x_m": -6.263490984238516, "y_m": -21.03163991432468, "d_right": 1.1096943977344682, "d_left": 1.3200850575191614, "psi_rad": 2.307319728422256, "kappa_radpm": -0.34805220630078776, "vx_mps": 4.948685237673273, "ax_mps2": 3.3817082540894203}, {"id": 17, "s_m": 1.6978729301076438, "d_m": 0.0, "x_m": -6.329281044727562, "y_m": -20.956526316219254, "d_right": 1.1727446451299872, "d_left": 1.2674708514176802, "psi_rad": 2.2731002199086783, "kappa_radpm": -0.3373881337572496, "vx_mps": 5.016470968900064, "ax_mps2": 3.4123504201178627}, {"id": 18, "s_m": 1.79774780834927, "d_m": 0.0, "x_m": -6.39252604755383, "y_m": -20.879210370906716, "d_right": 1.2362501191822042, "d_left": 1.214684910516336, "psi_rad": 2.2399148644276163, "kappa_radpm": -0.32695429169769685, "vx_mps": 5.08395487266274, "ax_mps2": 3.449425512357999}, {"id": 19, "s_m": 1.897622686590896, "d_m": 0.0, "x_m": -6.453192915198592, "y_m": -20.799897242675755, "d_right": 1.297476817572207, "d_left": 1.153515541712825, "psi_rad": 2.207795707547689, "kappa_radpm": -0.316403244176164, "vx_mps": 5.151273537036433, "ax_mps2": 3.50146177720454}, {"id": 20, "s_m": 1.9974975648325222, "d_m": 0.0, "x_m": -6.511342347568044, "y_m": -20.718680013661796, "d_right": 1.355254176536058, "d_left": 1.0951980204084688, "psi_rad": 2.176699313474008, "kappa_radpm": -0.30621133477885, "vx_mps": 5.218719688841686, "ax_mps2": 3.5550374275335823}, {"id": 21, "s_m": 2.097372443074148, "d_m": 0.0, "x_m": -6.566964281378424, "y_m": -20.63574747411907, "d_right": 1.4105382916270544, "d_left": 1.039699792949283, "psi_rad": 2.146624599072856, "kappa_radpm": -0.29617054921334457, "vx_mps": 5.2863175321903, "ax_mps2": 3.615437382061042}, {"id": 22, "s_m": 2.1972473213157744, "d_m": 0.0, "x_m": -6.62012372704667, "y_m": -20.55118234594882, "d_right": 1.4635859515815979, "d_left": 0.986917979877145, "psi_rad": 2.1175296746503967, "kappa_radpm": -0.2863221512367429, "vx_mps": 5.354188620864013, "ax_mps2": 3.681083618328985}, {"id": 23, "s_m": 2.2971221995574007, "d_m": 0.0, "x_m": -6.670830596787517, "y_m": -20.465153732610137, "d_right": 1.5143341365098903, "d_left": 0.9368102863135043, "psi_rad": 2.0894333769733, "kappa_radpm": -0.2764182552418149, "vx_mps": 5.422419325738779, "ax_mps2": 3.758910285924715}, {"id": 24, "s_m": 2.3969970777990266, "d_m": 0.0, "x_m": -6.719154890056551, "y_m": -20.377736896359995, "d_right": 1.5628000350215918, "d_left": 0.8883790257426709, "psi_rad": 2.0623041689212114, "kappa_radpm": -0.26684238259909604, "vx_mps": 5.491217784644973, "ax_mps2": 3.837207199691445}, {"id": 25, "s_m": 2.4968719560406525, "d_m": 0.0, "x_m": -6.765122105978396, "y_m": -20.289082958545393, "d_right": 1.6089714649800084, "d_left": 0.8419777291349562, "psi_rad": 2.0361213606757342, "kappa_radpm": -0.25755782526926513, "vx_mps": 5.5605713701125525, "ax_mps2": 3.9167925260483165}, {"id": 26, "s_m": 2.596746834282279, "d_m": 0.0, "x_m": -6.808802785853721, "y_m": -20.199257220310013, "d_right": 1.6528909004123042, "d_left": 0.7986989897661011, "psi_rad": 2.010849217020137, "kappa_radpm": -0.24847683444028554, "vx_mps": 5.630482422971318, "ax_mps2": 4.000148903908092}, {"id": 27, "s_m": 2.696621712523905, "d_m": 0.0, "x_m": -6.85023301718287, "y_m": -20.10839261027738, "d_right": 1.6942989363397094, "d_left": 0.7651948839355972, "psi_rad": 1.9864838068985802, "kappa_radpm": -0.2395138655295935, "vx_mps": 5.70099649928338, "ax_mps2": 4.0898285419337554}, {"id": 28, "s_m": 2.796496590765531, "d_m": 0.0, "x_m": -6.889485040535962, "y_m": -20.01654605932992, "d_right": 1.7201000877536978, "d_left": 0.7460515229712577, "psi_rad": 1.9629995246381207, "kappa_radpm": -0.23073562465959302, "vx_mps": 5.772200909544892, "ax_mps2": 4.183477474334704}, {"id": 29, "s_m": 2.896371469007157, "d_m": 0.0, "x_m": -6.926603869306486, "y_m": -19.923835009347094, "d_right": 1.7407507631250596, "d_left": 0.7301292614301215, "psi_rad": 1.9403896771241467, "kappa_radpm": -0.22208610731302372, "vx_mps": 5.844138255286437, "ax_mps2": 4.282848293035541}, {"id": 30, "s_m": 2.9962463472487832, "d_m": 0.0, "x_m": -6.961662806566765, "y_m": -19.830308446720462, "d_right": 1.764688699951139, "d_left": 0.694954291208543, "psi_rad": 1.9186320107109913, "kappa_radpm": -0.21359865938153552, "vx_mps": 5.91687838733322, "ax_mps2": 4.386687764622211}, {"id": 31, "s_m": 3.0961212254904096, "d_m": 0.0, "x_m": -6.994713723042071, "y_m": -19.73606912356074, "d_right": 1.791844371380342, "d_left": 0.6618424039098233, "psi_rad": 1.8977188572993036, "kappa_radpm": -0.2052349505196284, "vx_mps": 5.9904665647378685, "ax_mps2": 4.496274179312859}, {"id": 32, "s_m": 3.1959961037320355, "d_m": 0.0, "x_m": -7.025830353049214, "y_m": -19.64115888565012, "d_right": 1.8205135544275843, "d_left": 0.6307097327361062, "psi_rad": 1.877631646507126, "kappa_radpm": -0.19699905889867328, "vx_mps": 6.064966556844481, "ax_mps2": 4.611422110691146}, {"id": 33, "s_m": 3.2958709819736614, "d_m": 0.0, "x_m": -7.055069889057413, "y_m": -19.54566692598871, "d_right": 1.848753849562928, "d_left": 0.601490021424394, "psi_rad": 1.8583648158766084, "kappa_radpm": -0.18885720916666776, "vx_mps": 6.14043563432547, "ax_mps2": 4.733387379087576}, {"id": 34, "s_m": 3.3957458602152877, "d_m": 0.0, "x_m": -7.082506348738753, "y_m": -19.449628884962667, "d_right": 1.8761305276677012, "d_left": 0.5741014905245657, "psi_rad": 1.83990343084444, "kappa_radpm": -0.18082715225747506, "vx_mps": 6.2169480258087795, "ax_mps2": 4.861534351370994}, {"id": 35, "s_m": 3.495620738456914, "d_m": 0.0, "x_m": -7.10820110197509, "y_m": -19.353121441553903, "d_right": 1.901780757532057, "d_left": 0.548476503714, "psi_rad": 1.8222412324708075, "kappa_radpm": -0.17288781572654385, "vx_mps": 6.29456377030442, "ax_mps2": 4.9967494693469945}, {"id": 36, "s_m": 3.59549561669854, "d_m": 0.0, "x_m": -7.132228038647969, "y_m": -19.256174922495436, "d_right": 1.9257748566072597, "d_left": 0.5245353078191222, "psi_rad": 1.8053658491441782, "kappa_radpm": -0.16503852810042927, "vx_mps": 6.3733533205165145, "ax_mps2": 5.139166922026261}, {"id": 37, "s_m": 3.695370494940166, "d_m": 0.0, "x_m": -7.1546517235658875, "y_m": -19.15885418650489, "d_right": 1.9481742895898828, "d_left": 0.5085449457700614, "psi_rad": 1.7892720317027682, "kappa_radpm": -0.15726222946596705, "vx_mps": 6.453385149620345, "ax_mps2": 5.2896317311694325}, {"id": 38, "s_m": 3.795245373181792, "d_m": 0.0, "x_m": -7.175545760520291, "y_m": -19.061185311937912, "d_right": 1.969050605420238, "d_left": 0.5134599110764114, "psi_rad": 1.7739500490020144, "kappa_radpm": -0.1495612636332984, "vx_mps": 6.534736608274858, "ax_mps2": 5.448236062793529}, {"id": 39, "s_m": 3.8951202514234184, "d_m": 0.0, "x_m": -7.194977187796355, "y_m": -18.963221999052784, "d_right": 1.9884690684117294, "d_left": 0.511565078243686, "psi_rad": 1.7593946874943174, "kappa_radpm": -0.1419254464750228, "vx_mps": 6.617481875028739, "ax_mps2": 5.514897695628564}, {"id": 40, "s_m": 3.9949951296650443, "d_m": 0.0, "x_m": -7.213019136794923, "y_m": -18.864987130239243, "d_right": 2.006501639864627, "d_left": 0.49353165975420493, "psi_rad": 1.74559829742085, "kappa_radpm": -0.1343503771484144, "vx_mps": 6.700198940185711, "ax_mps2": 5.46782523695792}, {"id": 41, "s_m": 4.09487000790667, "d_m": 0.0, "x_m": -7.229740498138719, "y_m": -18.766523753346945, "d_right": 2.0232162161498684, "d_left": 0.47682336256398766, "psi_rad": 1.7325560951253791, "kappa_radpm": -0.12682969170079672, "vx_mps": 6.781213947195668, "ax_mps2": 5.421670102739172}, {"id": 42, "s_m": 4.194744886148296, "d_m": 0.0, "x_m": -7.245213858167873, "y_m": -18.66785264622217, "d_right": 2.0386847235020578, "d_left": 0.4613660273966563, "psi_rad": 1.7202623704302709, "kappa_radpm": -0.11935786724232618, "vx_mps": 6.86060054808584, "ax_mps2": 5.376393462765479}, {"id": 43, "s_m": 4.294619764389923, "d_m": 0.0, "x_m": -7.259509479764153, "y_m": -18.56900665920588, "d_right": 2.0529768821465786, "d_left": 0.4470882956540174, "psi_rad": 1.708712545194051, "kappa_radpm": -0.11193253875582844, "vx_mps": 6.938427283278343, "ax_mps2": 5.331959162550861}, {"id": 44, "s_m": 4.394494642631549, "d_m": 0.0, "x_m": -7.272699381098899, "y_m": -18.47000545993994, "d_right": 2.0661643407206745, "d_left": 0.4339172154335262, "psi_rad": 1.6979025434764408, "kappa_radpm": -0.10454558226947473, "vx_mps": 7.014758064939906, "ax_mps2": 5.288333471085245}, {"id": 45, "s_m": 4.494369520873175, "d_m": 0.0, "x_m": -7.284854786922116, "y_m": -18.37087218898148, "d_right": 2.0783180373750687, "d_left": 0.4217809448119539, "psi_rad": 1.6878279861636085, "kappa_radpm": -0.0971986376122145, "vx_mps": 7.089652603103411, "ax_mps2": 5.245484858404942}, {"id": 46, "s_m": 4.594244399114801, "d_m": 0.0, "x_m": -7.296047136005994, "y_m": -18.271626624342986, "d_right": 2.089509204743203, "d_left": 0.41682928713059525, "psi_rad": 1.6784861732996936, "kappa_radpm": -0.08988004845642308, "vx_mps": 7.1631667826314045, "ax_mps2": 5.203383798779067}, {"id": 47, "s_m": 4.694119277356427, "d_m": 0.0, "x_m": -7.306348326489435, "y_m": -18.172282512290213, "d_right": 2.0998095960026846, "d_left": 0.4168009152617675, "psi_rad": 1.6698733432328776, "kappa_radpm": -0.0825898798406477, "vx_mps": 7.235352997780341, "ax_mps2": 5.162002595993231}, {"id": 48, "s_m": 4.793994155598053, "d_m": 0.0, "x_m": -7.315829420403444, "y_m": -18.072859799906407, "d_right": 2.093626492865787, "d_left": 0.4408202763014871, "psi_rad": 1.6619883256114243, "kappa_radpm": -0.07531548581143467, "vx_mps": 7.306260450052717, "ax_mps2": 5.121315227770763}, {"id": 49, "s_m": 4.893869033839679, "d_m": 0.0, "x_m": -7.3245627418250985, "y_m": -17.97336419740324, "d_right": 2.0866415359996933, "d_left": 0.43207871941290377, "psi_rad": 1.654828188867372, "kappa_radpm": -0.06806266610844797, "vx_mps": 7.375935414144141, "ax_mps2": 5.081297206826788}, {"id": 50, "s_m": 4.993743912081305, "d_m": 0.0, "x_m": -7.332619061304899, "y_m": -17.873817037157494, "d_right": 2.083745499092119, "d_left": 0.42401528287164547, "psi_rad": 1.6483923118845958, "kappa_radpm": -0.06082735214153827, "vx_mps": 7.4444214760657115, "ax_mps2": 5.041925456432642}, {"id": 51, "s_m": 5.093618790322932, "d_m": 0.0, "x_m": -7.340070938009884, "y_m": -17.77421624544039, "d_right": 2.0850273865664217, "d_left": 0.4165574097290648, "psi_rad": 1.642677001908207, "kappa_radpm": -0.05361636107225444, "vx_mps": 7.511759746919328, "ax_mps2": 5.003178198677909}, {"id": 52, "s_m": 5.193493668564558, "d_m": 0.0, "x_m": -7.346988806711488, "y_m": -17.674585035231996, "d_right": 2.0905509164544966, "d_left": 0.4096341558763562, "psi_rad": 1.6376836804545758, "kappa_radpm": -0.04632057952199213, "vx_mps": 7.5779890553012645, "ax_mps2": 4.965034853880088}, {"id": 53, "s_m": 5.2933685468061835, "d_m": 0.0, "x_m": -7.353446413485899, "y_m": -17.574914178588692, "d_right": 2.097005039371557, "d_left": 0.40317194853826194, "psi_rad": 1.6334315737216725, "kappa_radpm": -0.0388224340029615, "vx_mps": 7.6431461208889075, "ax_mps2": 4.9274759498123455}, {"id": 54, "s_m": 5.39324342504781, "d_m": 0.0, "x_m": -7.3595168382733736, "y_m": -17.475229661305615, "d_right": 2.1030721992054975, "d_left": 0.3970971846150335, "psi_rad": 1.6299260540651093, "kappa_radpm": -0.031525931279305065, "vx_mps": 7.707265711412268, "ax_mps2": 4.890483039600355}, {"id": 55, "s_m": 5.493118303289436, "d_m": 0.0, "x_m": -7.365273499202138, "y_m": -17.375517228775145, "d_right": 2.108825934495054, "d_left": 0.391336724564864, "psi_rad": 1.627117161402649, "kappa_radpm": -0.024717872275059068, "vx_mps": 7.770380784913755, "ax_mps2": 4.854038627298083}, {"id": 56, "s_m": 5.592993181531062, "d_m": 0.0, "x_m": -7.3707832969900124, "y_m": -17.27580077085761, "d_right": 2.1143329078778694, "d_left": 0.4003568759033666, "psi_rad": 1.624973557049317, "kappa_radpm": -0.01895861383548662, "vx_mps": 7.832522618947231, "ax_mps2": 4.818126100280836}, {"id": 57, "s_m": 5.692868059772688, "d_m": 0.0, "x_m": -7.376102569179133, "y_m": -17.176066320899718, "d_right": 2.119649577657126, "d_left": 0.42393163699784153, "psi_rad": 1.6232402493928528, "kappa_radpm": -0.01574949767118245, "vx_mps": 7.8937209281527485, "ax_mps2": 4.782729667706913}, {"id": 58, "s_m": 5.792742938014314, "d_m": 0.0, "x_m": -7.381264701104864, "y_m": -17.076328120346446, "d_right": 2.1248091918702334, "d_left": 0.42615815733836526, "psi_rad": 1.6218250995142032, "kappa_radpm": -0.012719017720538094, "vx_mps": 7.954003971460309, "ax_mps2": 4.747834304394797}, {"id": 59, "s_m": 5.892617816255941, "d_m": 0.0, "x_m": -7.386299958531932, "y_m": -16.976579592480974, "d_right": 2.1298420702925656, "d_left": 0.421119349684013, "psi_rad": 1.6206840572988959, "kappa_radpm": -0.010130159874547783, "vx_mps": 8.013398650019358, "ax_mps2": 4.713425699545137}, {"id": 60, "s_m": 5.9924926944975665, "d_m": 0.0, "x_m": -7.391234224394779, "y_m": -16.876827410390984, "d_right": 2.1347740322280653, "d_left": 0.416181585772455, "psi_rad": 1.6198015915576642, "kappa_radpm": -0.0075426366698740956, "vx_mps": 8.071930596816236, "ax_mps2": 4.679490209802725}, {"id": 61, "s_m": 6.092367572739192, "d_m": 0.0, "x_m": -7.396093407494366, "y_m": -16.77707016055152, "d_right": 2.1396309954784956, "d_left": 0.4113191025323105, "psi_rad": 1.6191772772519584, "kappa_radpm": -0.004959131522032754, "vx_mps": 8.129624258825986, "ax_mps2": 4.646014816219944}, {"id": 62, "s_m": 6.192242450980819, "d_m": 0.0, "x_m": -7.400903097324233, "y_m": -16.677312046373594, "d_right": 2.144438510912599, "d_left": 0.40650609156165995, "psi_rad": 1.6188099743971682, "kappa_radpm": -0.002446694248388883, "vx_mps": 8.186502972444918, "ax_mps2": 4.612987084731446}, {"id": 63, "s_m": 6.292117329222445, "d_m": 0.0, "x_m": -7.405688321232015, "y_m": -16.577551616924566, "d_right": 2.1492216162588718, "d_left": 0.40171767380968787, "psi_rad": 1.6186824649365998, "kappa_radpm": -0.00010662243102886497, "vx_mps": 8.242589032863702, "ax_mps2": 4.5803951297953605}, {"id": 64, "s_m": 6.391992207464071, "d_m": 0.0, "x_m": -7.4104723640623025, "y_m": -16.47779218940466, "d_right": 2.1348086230522747, "d_left": 0.3969303980403175, "psi_rad": 1.6187816769637458, "kappa_radpm": 0.001754523991543414, "vx_mps": 8.297903757965543, "ax_mps2": 4.548227580896243}, {"id": 65, "s_m": 6.491867085705697, "d_m": 0.0, "x_m": -7.41527295877665, "y_m": -16.378032884184794, "d_right": 2.1249479126941795, "d_left": 0.3921266285565475, "psi_rad": 1.6189920498285157, "kappa_radpm": 0.0024581981100294426, "vx_mps": 8.352467547268478, "ax_mps2": 4.516473551639584}, {"id": 66, "s_m": 6.591741963947323, "d_m": 0.0, "x_m": -7.420098016772194, "y_m": -16.278274657658493, "d_right": 2.1197766613994165, "d_left": 0.40637433544090107, "psi_rad": 1.619269258169159, "kappa_radpm": 0.002926626996580889, "vx_mps": 8.406299936373681, "ax_mps2": 4.4851226111948295}, {"id": 67, "s_m": 6.6916168421889495, "d_m": 0.0, "x_m": -7.424951760039426, "y_m": -16.178517868794405, "d_right": 2.119333442372014, "d_left": 0.4340586294193401, "psi_rad": 1.6195565993571912, "kappa_radpm": 0.0028274101358664555, "vx_mps": 8.459419647331599, "ax_mps2": 4.4541647578759385}, {"id": 68, "s_m": 6.791491720430575, "d_m": 0.0, "x_m": -7.429833686666752, "y_m": -16.078762154406032, "d_right": 2.123620714589146, "d_left": 0.42918219025882254, "psi_rad": 1.619833907530346, "kappa_radpm": 0.002719547301679409, "vx_mps": 8.511844635293919, "ax_mps2": 4.423590394661869}, {"id": 69, "s_m": 6.891366598672201, "d_m": 0.0, "x_m": -7.434742678860938, "y_m": -15.979008012114521, "d_right": 2.128524745610105, "d_left": 0.4242789045374616, "psi_rad": 1.620099088548527, "kappa_radpm": 0.0025907192312977787, "vx_mps": 8.563592131780753, "ax_mps2": 4.393390306489849}, {"id": 70, "s_m": 6.991241476913828, "d_m": 0.0, "x_m": -7.439677484630936, "y_m": -15.879255094376957, "d_right": 2.1334546153282554, "d_left": 0.41935006578904926, "psi_rad": 1.6203514187239874, "kappa_radpm": 0.0024629539349706317, "vx_mps": 8.614678684858447, "ax_mps2": 4.363555639164865}, {"id": 71, "s_m": 7.091116355155454, "d_m": 0.0, "x_m": -7.444636827839702, "y_m": -15.779503443408155, "d_right": 2.1384090474928956, "d_left": 0.414396950148072, "psi_rad": 1.6205911531118977, "kappa_radpm": 0.002337741490530513, "vx_mps": 8.665120196493454, "ax_mps2": 4.334077879746111}, {"id": 72, "s_m": 7.19099123339708, "d_m": 0.0, "x_m": -7.449619462934483, "y_m": -15.679752915500783, "d_right": 2.1433867995901186, "d_left": 0.4094208239846422, "psi_rad": 1.6208183785059693, "kappa_radpm": 0.0022122909213275737, "vx_mps": 8.714931957321152, "ax_mps2": 4.304948838287881}, {"id": 73, "s_m": 7.290866111638706, "d_m": 0.0, "x_m": -7.45462413548623, "y_m": -15.580003531845197, "d_right": 2.148386617359568, "d_left": 0.404422944901512, "psi_rad": 1.6210330374637316, "kappa_radpm": 0.002086267805325927, "vx_mps": 8.76412867904496, "ax_mps2": 4.276160630820834}, {"id": 74, "s_m": 7.390740989880332, "d_m": 0.0, "x_m": -7.459649594748591, "y_m": -15.48025514437913, "d_right": 2.153407253033506, "d_left": 0.3994045860271527, "psi_rad": 1.6212351107533338, "kappa_radpm": 0.0019602965595171902, "vx_mps": 8.812724524660242, "ax_mps2": 4.2477056634711}, {"id": 75, "s_m": 7.490615868121958, "d_m": 0.0, "x_m": -7.464694580776134, "y_m": -15.38050779055367, "d_right": 2.158447446484071, "d_left": 0.3943670095114069, "psi_rad": 1.6214246106398493, "kappa_radpm": 0.0018344503598307594, "vx_mps": 8.86073313667887, "ax_mps2": 4.219576617628452}, {"id": 76, "s_m": 7.590490746363584, "d_m": 0.0, "x_m": -7.469757844468976, "y_m": -15.280761313705296, "d_right": 2.163505951602195, "d_left": 0.41281338488819824, "psi_rad": 1.6216015417024803, "kappa_radpm": 0.0017085983504803199, "vx_mps": 8.908167663513787, "ax_mps2": 4.191766436076541}, {"id": 77, "s_m": 7.69036562460521, "d_m": 0.0, "x_m": -7.4748381269080415, "y_m": -15.181015751602196, "d_right": 2.1685815092069913, "d_left": 0.4331320399201478, "psi_rad": 1.6217659021799973, "kappa_radpm": 0.0015827302902104003, "vx_mps": 8.955040784168078, "ax_mps2": 4.164268310012146}, {"id": 78, "s_m": 7.790240502846837, "d_m": 0.0, "x_m": -7.479934179010032, "y_m": -15.081270945929194, "d_right": 2.173672873099749, "d_left": 0.42807125116928807, "psi_rad": 1.6219176917645228, "kappa_radpm": 0.0014568665885680149, "vx_mps": 9.001364731359878, "ax_mps2": 4.137075666884364}, {"id": 79, "s_m": 7.890115381088463, "d_m": 0.0, "x_m": -7.485044741920666, "y_m": -14.981526930646735, "d_right": 2.1681678356617584, "d_left": 0.4229970321038537, "psi_rad": 1.6220569112717216, "kappa_radpm": 0.0013310126362167142, "vx_mps": 9.047151313202539, "ax_mps2": 4.110182158990651}, {"id": 80, "s_m": 7.989990259330089, "d_m": 0.0, "x_m": -7.490168566734699, "y_m": -14.881783546863137, "d_right": 2.1594332824136124, "d_left": 0.41791065780757064, "psi_rad": 1.6221835612668591, "kappa_radpm": 0.0012051613581859925, "vx_mps": 9.09241193354891, "ax_mps2": 4.083581652772791}, {"id": 81, "s_m": 8.089865137571715, "d_m": 0.0, "x_m": -7.4953043946573965, "y_m": -14.782040829190057, "d_right": 2.152777566616882, "d_left": 0.41281343082522215, "psi_rad": 1.6222976421462583, "kappa_radpm": 0.0010793153087665646, "vx_mps": 9.13715761109895, "ax_mps2": 4.057268218761681}, {"id": 82, "s_m": 8.18974001581334, "d_m": 0.0, "x_m": -7.50045097696214, "y_m": -14.6822986173337, "d_right": 2.148841862895548, "d_left": 0.40770662831638305, "psi_rad": 1.6223991542887986, "kappa_radpm": 0.0009534720031357738, "vx_mps": 9.181398997361368, "ax_mps2": 4.031236122123266}, {"id": 83, "s_m": 8.289614894054967, "d_m": 0.0, "x_m": -7.505607054994664, "y_m": -14.582556944292861, "d_right": 2.1495539787423077, "d_left": 0.40259155563456966, "psi_rad": 1.6224880981443668, "kappa_radpm": 0.0008276342391236504, "vx_mps": 9.225146393552189, "ax_mps2": 4.005479813761091}, {"id": 84, "s_m": 8.389489772296592, "d_m": 0.0, "x_m": -7.5107713801440585, "y_m": -14.482815649508368, "d_right": 2.1547225436562063, "d_left": 0.39746949237626417, "psi_rad": 1.6225644740770795, "kappa_radpm": 0.0007017991198406391, "vx_mps": 9.268409766506135, "ax_mps2": 3.9799939219373495}, {"id": 85, "s_m": 8.489364650538219, "d_m": 0.0, "x_m": -7.5159426938647025, "y_m": -14.383074765118888, "d_right": 2.1598981139036364, "d_left": 0.39564672469211365, "psi_rad": 1.6226282825362017, "kappa_radpm": 0.0005759692833823626, "vx_mps": 9.31119876367045, "ax_mps2": 3.954773244375634}, {"id": 86, "s_m": 8.589239528779846, "d_m": 0.0, "x_m": -7.52111974765515, "y_m": -14.283334130267232, "d_right": 2.165079437799021, "d_left": 0.4183731961098086, "psi_rad": 1.6226795238493257, "kappa_radpm": 0.00045014194678965973, "vx_mps": 9.353522727244995, "ax_mps2": 3.929812740810944}, {"id": 87, "s_m": 8.68911440702147, "d_m": 0.0, "x_m": -7.526301283082538, "y_m": -14.18359377617333, "d_right": 2.170265257831081, "d_left": 0.43056256041689456, "psi_rad": 1.6227181984577443, "kappa_radpm": 0.00032431957325926877, "vx_mps": 9.395390707527303, "ax_mps2": 3.905107525956826}, {"id": 88, "s_m": 8.788989285263098, "d_m": 0.0, "x_m": -7.531486051710417, "y_m": -14.08385354235727, "d_right": 2.1754543223549963, "d_left": 0.425390664152189, "psi_rad": 1.622744306648674, "kappa_radpm": 0.00019849939574934105, "vx_mps": 9.436811475516569, "ax_mps2": 3.8806528628629264}, {"id": 89, "s_m": 8.888864163504724, "d_m": 0.0, "x_m": -7.5366727952186325, "y_m": -13.984113459091462, "d_right": 2.1806453739450924, "d_left": 0.4202172394126388, "psi_rad": 1.6227578488149557, "kappa_radpm": 7.268344884112224e-05, "vx_mps": 9.477793534826242, "ax_mps2": 3.856444156633971}, {"id": 90, "s_m": 8.98873904174635, "d_m": 0.0, "x_m": -7.5418602652742335, "y_m": -13.884373365250683, "d_right": 2.1858371610142555, "d_left": 0.41504354382049297, "psi_rad": 1.6227588252061698, "kappa_radpm": -5.31294258243488e-05, "vx_mps": 9.518345132951053, "ax_mps2": 3.832476948487886}, {"id": 91, "s_m": 9.088613919987976, "d_m": 0.0, "x_m": -7.5470472036228, "y_m": -13.784633291227353, "d_right": 2.191028426198686, "d_left": 0.4098708530867555, "psi_rad": 1.6227472364506967, "kappa_radpm": -0.00017893596006781788, "vx_mps": 9.5584742719307, "ax_mps2": 3.808746910132251}, {"id": 92, "s_m": 9.188488798229603, "d_m": 0.0, "x_m": -7.552232358566041, "y_m": -13.684893122039947, "d_right": 2.1962179155248958, "d_left": 0.4047004307495337, "psi_rad": 1.6227229748603211, "kappa_radpm": -0.0003120888938302888, "vx_mps": 9.598188718449247, "ax_mps2": 3.785249838435406}, {"id": 93, "s_m": 9.288363676471228, "d_m": 0.0, "x_m": -7.557414386210261, "y_m": -13.5851528645452, "d_right": 2.1929597940527867, "d_left": 0.39953363811009013, "psi_rad": 1.6226842759364783, "kappa_radpm": -0.0004628588995467634, "vx_mps": 9.63749601340629, "ax_mps2": 3.761981650375993}, {"id": 94, "s_m": 9.388238554712855, "d_m": 0.0, "x_m": -7.562591802961288, "y_m": -13.48541229746597, "d_right": 2.180832062731359, "d_left": 0.39437196614439746, "psi_rad": 1.6226301373169267, "kappa_radpm": -0.0006396040861959201, "vx_mps": 9.676403480993297, "ax_mps2": 3.738938378252484}, {"id": 95, "s_m": 9.48811343295448, "d_m": 0.0, "x_m": -7.567762787950377, "y_m": -13.385671566983373, "d_right": 2.1732248872471653, "d_left": 0.3972200283657644, "psi_rad": 1.6225543205916753, "kappa_radpm": -0.0008786299249294452, "vx_mps": 9.714918237306016, "ax_mps2": 3.7161161651364747}, {"id": 96, "s_m": 9.587988311196106, "d_m": 0.0, "x_m": -7.57292503567262, "y_m": -13.285930072111418, "d_right": 2.170183445521689, "d_left": 0.42425834043663935, "psi_rad": 1.6224545495533882, "kappa_radpm": -0.001123237790918298, "vx_mps": 9.753047198521624, "ax_mps2": 3.6935112605542906}, {"id": 97, "s_m": 9.687863189437733, "d_m": 0.0, "x_m": -7.578076065476617, "y_m": -13.186188336730591, "d_right": 2.1717244896557903, "d_left": 0.4284674866246294, "psi_rad": 1.6223294817247744, "kappa_radpm": -0.0013812551764398188, "vx_mps": 9.790797088667214, "ax_mps2": 3.671120016383846}, {"id": 98, "s_m": 9.787738067679358, "d_m": 0.0, "x_m": -7.583213358319734, "y_m": -13.086445450460417, "d_right": 2.1768646682896, "d_left": 0.4233293696541969, "psi_rad": 1.6221786438284789, "kappa_radpm": -0.001639311052704305, "vx_mps": 9.828174447004278, "ax_mps2": 3.648938882954428}, {"id": 99, "s_m": 9.887612945920985, "d_m": 0.0, "x_m": -7.58833429778192, "y_m": -12.986702166930383, "d_right": 2.181988505293475, "d_left": 0.4182077060865537, "psi_rad": 1.6220020258216847, "kappa_radpm": -0.0018974794765893482, "vx_mps": 9.8651856350522, "ax_mps2": 3.6269644053341694}, {"id": 100, "s_m": 9.98748782416261, "d_m": 0.0, "x_m": -7.593436357532333, "y_m": -12.886957470142029, "d_right": 2.1870934607723176, "d_left": 0.41310502808794547, "psi_rad": 1.6217996264452659, "kappa_radpm": -0.0021554124868648577, "vx_mps": 9.901836843272019, "ax_mps2": 3.605193219797732}, {"id": 101, "s_m": 10.087362702404237, "d_m": 0.0, "x_m": -7.598516922641376, "y_m": -12.787212124610654, "d_right": 2.1921769299624234, "d_left": 0.4080239507087307, "psi_rad": 1.6215715019582388, "kappa_radpm": -0.0024128005017782805, "vx_mps": 9.938134097430405, "ax_mps2": 3.5836220504623437}, {"id": 102, "s_m": 10.187237580645863, "d_m": 0.0, "x_m": -7.603573467754306, "y_m": -12.68746510881605, "d_right": 2.197236373668707, "d_left": 0.40296700397345864, "psi_rad": 1.6213170421378218, "kappa_radpm": -0.002712941191444346, "vx_mps": 9.974083264662308, "ax_mps2": 3.562247706081789}, {"id": 103, "s_m": 10.287112458887488, "d_m": 0.0, "x_m": -7.608602878230354, "y_m": -12.587717173081813, "d_right": 2.202268687364474, "d_left": 0.3979373032375016, "psi_rad": 1.6210259785022794, "kappa_radpm": -0.00311563315260035, "vx_mps": 10.009690059249566, "ax_mps2": 3.5410670769896755}, {"id": 104, "s_m": 10.386987337129115, "d_m": 0.0, "x_m": -7.613601247622049, "y_m": -12.487967220056177, "d_right": 2.207269949650859, "d_left": 0.39293875835521924, "psi_rad": 1.620692161291243, "kappa_radpm": -0.003690859680233518, "vx_mps": 10.044960048131557, "ax_mps2": 3.520077132184617}, {"id": 105, "s_m": 10.486862215370742, "d_m": 0.0, "x_m": -7.618562481251828, "y_m": -12.388215869334116, "d_right": 2.2122340745211075, "d_left": 0.4006495684645323, "psi_rad": 1.6202741350817074, "kappa_radpm": -0.004680146817982747, "vx_mps": 10.079898656162932, "ax_mps2": 3.4992749165481074}, {"id": 106, "s_m": 10.586737093612367, "d_m": 0.0, "x_m": -7.62347710394422, "y_m": -12.288461754642558, "d_right": 2.2171515684117726, "d_left": 0.4205479316973403, "psi_rad": 1.619756671010312, "kappa_radpm": -0.005712548021665149, "vx_mps": 10.114511171132479, "ax_mps2": 3.478657548187818}, {"id": 107, "s_m": 10.686611971853994, "d_m": 0.0, "x_m": -7.628334704221601, "y_m": -12.188705302659153, "d_right": 2.22201202624302, "d_left": 0.42868572286220946, "psi_rad": 1.6191294016547018, "kappa_radpm": -0.006848572367324995, "vx_mps": 10.148802748556248, "ax_mps2": 3.4582222159005496}, {"id": 108, "s_m": 10.78648685009562, "d_m": 0.0, "x_m": -7.633124091580525, "y_m": -12.088945101369728, "d_right": 2.226804238323527, "d_left": 0.4238919599466926, "psi_rad": 1.618388673240763, "kappa_radpm": -0.007984461399063973, "vx_mps": 10.182778416257223, "ax_mps2": 3.4379661767469636}, {"id": 109, "s_m": 10.886361728337246, "d_m": 0.0, "x_m": -7.637833902794235, "y_m": -11.989181564874041, "d_right": 2.2196408952231153, "d_left": 0.4191778428765844, "psi_rad": 1.6175345159877481, "kappa_radpm": -0.009120112572450203, "vx_mps": 10.216443078743053, "ax_mps2": 3.4178867537331006}, {"id": 110, "s_m": 10.986236606578872, "d_m": 0.0, "x_m": -7.642452861196959, "y_m": -11.889413331678377, "d_right": 2.2079312528533332, "d_left": 0.414554700214925, "psi_rad": 1.6165669316043805, "kappa_radpm": -0.010255921521678799, "vx_mps": 10.249801521392614, "ax_mps2": 3.3979813335927402}, {"id": 111, "s_m": 11.086111484820497, "d_m": 0.0, "x_m": -7.646969602796542, "y_m": -11.78964087310038, "d_right": 2.2005943760497146, "d_left": 0.4100338607984544, "psi_rad": 1.6154858818026807, "kappa_radpm": -0.011392200071434301, "vx_mps": 10.282858414461522, "ax_mps2": 3.3782473646647118}, {"id": 112, "s_m": 11.185986363062124, "d_m": 0.0, "x_m": -7.65137283266313, "y_m": -11.689863152386863, "d_right": 2.197662672600902, "d_left": 0.40562665603459985, "psi_rad": 1.6142916799169753, "kappa_radpm": -0.012505705629829219, "vx_mps": 10.315618316916058, "ax_mps2": 3.3586823548603153}, {"id": 113, "s_m": 11.285861241303751, "d_m": 0.0, "x_m": -7.655651455751213, "y_m": -11.590080637288622, "d_right": 2.1991427022700356, "d_left": 0.40134414610229063, "psi_rad": 1.612989831100842, "kappa_radpm": -0.013563922265847333, "vx_mps": 10.348085680104415, "ax_mps2": 3.3392838697184395}, {"id": 114, "s_m": 11.385736119545376, "d_m": 0.0, "x_m": -7.659794938772686, "y_m": -11.490291733674967, "d_right": 2.2032872326595423, "d_left": 0.39719692818585095, "psi_rad": 1.6115832634584097, "kappa_radpm": -0.01455729240693859, "vx_mps": 10.38026485127363, "ax_mps2": 3.3200495305400493}, {"id": 115, "s_m": 11.485610997787003, "d_m": 0.0, "x_m": -7.663793416172172, "y_m": -11.39049809656253, "d_right": 2.2072867489856494, "d_left": 0.3931947776078583, "psi_rad": 1.6100875151373242, "kappa_radpm": -0.015395353270979847, "vx_mps": 10.412160076940062, "ax_mps2": 3.3009770125998066}, {"id": 116, "s_m": 11.585485876028628, "d_m": 0.0, "x_m": -7.66763852384089, "y_m": -11.290696377424531, "d_right": 2.211132867583906, "d_left": 0.40657528231529877, "psi_rad": 1.608507930689978, "kappa_radpm": -0.01624265487811605, "vx_mps": 10.443775506120767, "ax_mps2": 3.282064043433194}, {"id": 117, "s_m": 11.685360754270254, "d_m": 0.0, "x_m": -7.6713216293016515, "y_m": -11.190890598670888, "d_right": 2.2148169770439754, "d_left": 0.4369761372281252, "psi_rad": 1.6068421952725886, "kappa_radpm": -0.017114177459888236, "vx_mps": 10.475115193432782, "ax_mps2": 3.263308401191353}, {"id": 118, "s_m": 11.785235632511881, "d_m": 0.0, "x_m": -7.674834221064, "y_m": -11.091076175030228, "d_right": 2.2183305390194605, "d_left": 0.433464118431685, "psi_rad": 1.605089341381891, "kappa_radpm": -0.017987825265375342, "vx_mps": 10.506183102066803, "ax_mps2": 3.2447079130624683}, {"id": 119, "s_m": 11.885110510753506, "d_m": 0.0, "x_m": -7.678167404352044, "y_m": -10.991257956385729, "d_right": 2.221664685212466, "d_left": 0.43013118006759415, "psi_rad": 1.6032489472758553, "kappa_radpm": -0.018866550065176554, "vx_mps": 10.536983106641461, "ax_mps2": 3.2262604537571313}, {"id": 120, "s_m": 11.984985388995133, "d_m": 0.0, "x_m": -7.681312563489033, "y_m": -10.891431448617622, "d_right": 2.2248107731420004, "d_left": 0.42698629787214637, "psi_rad": 1.6013207426510667, "kappa_radpm": -0.019745561341092274, "vx_mps": 10.56751899594399, "ax_mps2": 3.2079639440532675}, {"id": 121, "s_m": 12.08486026723676, "d_m": 0.0, "x_m": -7.684260788749267, "y_m": -10.791600988136947, "d_right": 2.2277599174015723, "d_left": 0.4240379421979767, "psi_rad": 1.5993047499865691, "kappa_radpm": -0.020625178431672296, "vx_mps": 10.59779447556277, "ax_mps2": 3.1898163493971503}, {"id": 122, "s_m": 12.184735145478385, "d_m": 0.0, "x_m": -7.687003416137566, "y_m": -10.691762690649853, "d_right": 2.2305034303141555, "d_left": 0.4212950832113946, "psi_rad": 1.5972007366650893, "kappa_radpm": -0.021513327932045297, "vx_mps": 10.62781317041691, "ax_mps2": 3.171815678560011}, {"id": 123, "s_m": 12.284610023720012, "d_m": 0.0, "x_m": -7.6895314583817, "y_m": -10.59192047805647, "d_right": 2.2330323471906772, "d_left": 0.41876630264426395, "psi_rad": 1.5950067158173526, "kappa_radpm": -0.022422426787913695, "vx_mps": 10.657578627187757, "ax_mps2": 3.1539599823467954}, {"id": 124, "s_m": 12.384484901961638, "d_m": 0.0, "x_m": -7.69183592662783, "y_m": -10.492071254745667, "d_right": 2.235337659932208, "d_left": 0.4164608238816248, "psi_rad": 1.5927204203251129, "kappa_radpm": -0.02343052354120067, "vx_mps": 10.687094316656935, "ax_mps2": 3.136247352351716}, {"id": 125, "s_m": 12.484359780203263, "d_m": 0.0, "x_m": -7.693906495504354, "y_m": -10.39221826012186, "d_right": 2.2224010039892477, "d_left": 0.41438862186746805, "psi_rad": 1.590317795326692, "kappa_radpm": -0.02468245668548198, "vx_mps": 10.71636363595527, "ax_mps2": 3.1186759197649656}, {"id": 126, "s_m": 12.58423465844489, "d_m": 0.0, "x_m": -7.695730915026939, "y_m": -10.292359471932851, "d_right": 2.208737722769449, "d_left": 0.41256207105355625, "psi_rad": 1.5877893110120715, "kappa_radpm": -0.025988723361777457, "vx_mps": 10.745389910726725, "ax_mps2": 3.1012438542204017}, {"id": 127, "s_m": 12.684109536686515, "d_m": 0.0, "x_m": -7.697296005423902, "y_m": -10.192497174360485, "d_right": 2.199270553533499, "d_left": 0.43183844697770457, "psi_rad": 1.5851217709710606, "kappa_radpm": -0.027429107699553177, "vx_mps": 10.774176397211223, "ax_mps2": 3.0839493626886454}, {"id": 128, "s_m": 12.783984414928142, "d_m": 0.0, "x_m": -7.698587528854806, "y_m": -10.092630322913914, "d_right": 2.194039469444223, "d_left": 0.45982591140209356, "psi_rad": 1.5823104715477128, "kappa_radpm": -0.028860747706664122, "vx_mps": 10.802726284250062, "ax_mps2": 3.0667906884099074}, {"id": 129, "s_m": 12.883859293169769, "d_m": 0.0, "x_m": -7.699591197434273, "y_m": -9.992760754538624, "d_right": 2.1930606289902417, "d_left": 0.4588350720278442, "psi_rad": 1.5793576310541135, "kappa_radpm": -0.03027024260158321, "vx_mps": 10.831042695217397, "ax_mps2": 3.0497661098664137}, {"id": 130, "s_m": 12.983734171411394, "d_m": 0.0, "x_m": -7.700292935820535, "y_m": -9.892888078107873, "d_right": 2.1937620101834385, "d_left": 0.4581447048262341, "psi_rad": 1.5762639795913282, "kappa_radpm": -0.03168042722272692, "vx_mps": 10.8591286898811, "ax_mps2": 3.032873939791809}, {"id": 131, "s_m": 13.08360904965302, "d_m": 0.0, "x_m": -7.700678662970907, "y_m": -9.793014154934191, "d_right": 2.194147391956941, "d_left": 0.45776897090959656, "psi_rad": 1.5730294205264064, "kappa_radpm": -0.03309198992317116, "vx_mps": 10.886987266196128, "ax_mps2": 3.0161125242168842}, {"id": 132, "s_m": 13.183483927894645, "d_m": 0.0, "x_m": -7.700734299277563, "y_m": -9.693139101458776, "d_right": 2.1942026940735966, "d_left": 0.45772187673930403, "psi_rad": 1.5696538555810293, "kappa_radpm": -0.0345032517529947, "vx_mps": 10.914621362033364, "ax_mps2": 2.9994802415487394}, {"id": 133, "s_m": 13.283358806136272, "d_m": 0.0, "x_m": -7.700445767664492, "y_m": -9.59326480262031, "d_right": 2.1939138340877773, "d_left": 0.45801759324875246, "psi_rad": 1.5661374501844985, "kappa_radpm": -0.0359131401850605, "vx_mps": 10.942033856846757, "ax_mps2": 2.9829755016829433}, {"id": 134, "s_m": 13.383233684377899, "d_m": 0.0, "x_m": -7.6997990052128635, "y_m": -9.493391895883514, "d_right": 2.1932667474183813, "d_left": 0.4586701695154622, "psi_rad": 1.5624802090282774, "kappa_radpm": -0.03732251061833371, "vx_mps": 10.96922757328142, "ax_mps2": 2.9665967451465693}, {"id": 135, "s_m": 13.483108562619524, "d_m": 0.0, "x_m": -7.69877996754193, "y_m": -9.393522324261907, "d_right": 2.1922473847852695, "d_left": 0.4596937619670689, "psi_rad": 1.5586823552643014, "kappa_radpm": -0.03872989356053077, "vx_mps": 10.996205278725222, "ax_mps2": 2.9503424422721585}, {"id": 136, "s_m": 13.58298344086115, "d_m": 0.0, "x_m": -7.6973746256239775, "y_m": -9.293657272159571, "d_right": 2.190841714618861, "d_left": 0.46278202472347246, "psi_rad": 1.554743909533449, "kappa_radpm": -0.04013695313843043, "vx_mps": 11.022969686806297, "ax_mps2": 2.934211092398611}, {"id": 137, "s_m": 13.682858319102778, "d_m": 0.0, "x_m": -7.695568972907496, "y_m": -9.19379876397415, "d_right": 2.1890357260411526, "d_left": 0.4788616358010186, "psi_rad": 1.5506650695736373, "kappa_radpm": -0.04154219256263193, "vx_mps": 11.049523458838738, "ax_mps2": 2.9182012231019376}, {"id": 138, "s_m": 13.782733197344402, "d_m": 0.0, "x_m": -7.693349020346065, "y_m": -9.093948574695464, "d_right": 2.186815426803791, "d_left": 0.5040170635969164, "psi_rad": 1.546445850168552, "kappa_radpm": -0.04294710927318659, "vx_mps": 11.075869205218673, "ax_mps2": 2.902311389449256}, {"id": 139, "s_m": 13.88260807558603, "d_m": 0.0, "x_m": -7.690700798888447, "y_m": -8.994108790668957, "d_right": 2.184166844448106, "d_left": 0.5163021617085206, "psi_rad": 1.5420864652787112, "kappa_radpm": -0.04434993405140059, "vx_mps": 11.102009486772761, "ax_mps2": 2.886540173280424}, {"id": 140, "s_m": 13.982482953827656, "d_m": 0.0, "x_m": -7.6876103727162315, "y_m": -8.894281831786701, "d_right": 2.181076039678708, "d_left": 0.5193957064311575, "psi_rad": 1.5375869388239638, "kappa_radpm": -0.04575254919366571, "vx_mps": 11.127946816061096, "ax_mps2": -1.7382961493235298}, {"id": 141, "s_m": 14.082357832069281, "d_m": 0.0, "x_m": -7.684063812730352, "y_m": -8.794469845541373, "d_right": 2.1775290814130277, "d_left": 0.5229456098793237, "psi_rad": 1.532947476343745, "kappa_radpm": -0.047153021531653294, "vx_mps": 11.112334413099758, "ax_mps2": -6.5401814393930735}, {"id": 142, "s_m": 14.182232710310908, "d_m": 0.0, "x_m": -7.680047249146354, "y_m": -8.694675949176204, "d_right": 2.173512096813266, "d_left": 0.5269658613529943, "psi_rad": 1.5281681044866569, "kappa_radpm": -0.04855339925972742, "vx_mps": 11.053396602795273, "ax_mps2": -6.428539724674825}, {"id": 143, "s_m": 14.282107588552533, "d_m": 0.0, "x_m": -7.675546792713204, "y_m": -8.59490233936925, "d_right": 2.1690111969120083, "d_left": 0.5314704306821898, "psi_rad": 1.5232490215509626, "kappa_radpm": -0.04995153081213666, "vx_mps": 10.995156989062929, "ax_mps2": -6.319452916855958}, {"id": 144, "s_m": 14.38198246679416, "d_m": 0.0, "x_m": -7.670548655132714, "y_m": -8.495152883669592, "d_right": 2.147044681388548, "d_left": 0.5364732576682907, "psi_rad": 1.5181902612341218, "kappa_radpm": -0.051349671532644296, "vx_mps": 10.937603395300545, "ax_mps2": -6.213141099091374}, {"id": 145, "s_m": 14.481857345035786, "d_m": 0.0, "x_m": -7.665038987045264, "y_m": -8.395429816663228, "d_right": 2.1264173270137423, "d_left": 0.5419882740315112, "psi_rad": 1.5129920165001707, "kappa_radpm": -0.05274541961812977, "vx_mps": 10.880721235807414, "ax_mps2": -6.109207456614134}, {"id": 146, "s_m": 14.581732223277411, "d_m": 0.0, "x_m": -7.6590041011344905, "y_m": -8.295737825097948, "d_right": 2.1097992015559144, "d_left": 0.5480293538357024, "psi_rad": 1.5076543273000191, "kappa_radpm": -0.05414153063233477, "vx_mps": 10.824499152828555, "ax_mps2": -6.00787295648795}, {"id": 147, "s_m": 14.681607101519038, "d_m": 0.0, "x_m": -7.6524301843022275, "y_m": -8.196079156516737, "d_right": 2.0972719902495713, "d_left": 0.5546103940233177, "psi_rad": 1.502177325537392, "kappa_radpm": -0.055535592185381205, "vx_mps": 10.768923379314447, "ax_mps2": -5.908804690450604}, {"id": 148, "s_m": 14.781481979760663, "d_m": 0.0, "x_m": -7.645303665130768, "y_m": -8.096459370910537, "d_right": 2.0888959807526404, "d_left": 0.5617451918411508, "psi_rad": 1.496561052200888, "kappa_radpm": -0.056929911945241246, "vx_mps": 10.713982847266497, "ax_mps2": -5.812293934138846}, {"id": 149, "s_m": 14.88135685800229, "d_m": 0.0, "x_m": -7.637610763892236, "y_m": -7.996880717355951, "d_right": 2.0811989053409476, "d_left": 0.5739396989264269, "psi_rad": 1.4908056820808857, "kappa_radpm": -0.05832145091425392, "vx_mps": 10.659663416523403, "ax_mps2": -5.717882050364465}, {"id": 150, "s_m": 14.981231736243917, "d_m": 0.0, "x_m": -7.629338055989873, "y_m": -7.8973496747868195, "d_right": 2.0729215905118967, "d_left": 0.6032067495608618, "psi_rad": 1.4849112869005947, "kappa_radpm": -0.05971369294940159, "vx_mps": 10.605954865376672, "ax_mps2": -5.6258411860955}, {"id": 151, "s_m": 15.081106614485542, "d_m": 0.0, "x_m": -7.620471794946658, "y_m": -7.797868484369505, "d_right": 2.0640502896051127, "d_left": 0.636084091227035, "psi_rad": 1.4788779544683055, "kappa_radpm": -0.06110375201732784, "vx_mps": 10.552844081074594, "ax_mps2": -5.535744920221486}, {"id": 152, "s_m": 15.180981492727168, "d_m": 0.0, "x_m": -7.610998728874211, "y_m": -7.6984446794500405, "d_right": 2.054571699923031, "d_left": 0.6455609332938106, "psi_rad": 1.472705740286828, "kappa_radpm": -0.06249494006584891, "vx_mps": 10.500321637916786, "ax_mps2": -5.447926357448142}, {"id": 153, "s_m": 15.280856370968795, "d_m": 0.0, "x_m": -7.600905125509948, "y_m": -7.599080401793481, "d_right": 2.0444721044916028, "d_left": 0.6556591397181987, "psi_rad": 1.4663946814487732, "kappa_radpm": -0.06388380223517001, "vx_mps": 10.448374636107976, "ax_mps2": -5.361844852165786}, {"id": 154, "s_m": 15.38073124921042, "d_m": 0.0, "x_m": -7.590177929100171, "y_m": -7.499784238677646, "d_right": 2.033738405804153, "d_left": 0.6663919578230983, "psi_rad": 1.4599448655750005, "kappa_radpm": -0.06527479070174719, "vx_mps": 10.396995014567594, "ax_mps2": -5.2776069827214505}, {"id": 155, "s_m": 15.480606127452047, "d_m": 0.0, "x_m": -7.578803411356503, "y_m": -7.400558290227233, "d_right": 2.022356912422284, "d_left": 0.6777732748316769, "psi_rad": 1.4533560201106304, "kappa_radpm": -0.06666651937550484, "vx_mps": 10.346173429018599, "ax_mps2": -5.194180623943849}, {"id": 156, "s_m": 15.580481005693674, "d_m": 0.0, "x_m": -7.566768704094021, "y_m": -7.3014122142861595, "d_right": 2.0103147332179283, "d_left": 0.6898162168812414, "psi_rad": 1.446628020968464, "kappa_radpm": -0.0680681822661249, "vx_mps": 10.295910271004097, "ax_mps2": -5.110351476908969}, {"id": 157, "s_m": 15.680355883935299, "d_m": 0.0, "x_m": -7.55405996156995, "y_m": -7.202348114504089, "d_right": 1.9975980898700214, "d_left": 0.7025348375604858, "psi_rad": 1.4397586265515034, "kappa_radpm": -0.06949092256388409, "vx_mps": 10.246217684858705, "ax_mps2": -5.027782431904693}, {"id": 158, "s_m": 15.780230762176926, "d_m": 0.0, "x_m": -7.540664301054515, "y_m": -7.103376962995979, "d_right": 1.984194107207105, "d_left": 0.7159423624497248, "psi_rad": 1.4327470489013021, "kappa_radpm": -0.07091884373356336, "vx_mps": 10.197091670132593, "ax_mps2": -4.94635551476092}, {"id": 159, "s_m": 15.88010564041855, "d_m": 0.0, "x_m": -7.526567605586369, "y_m": -7.004500673875479, "d_right": 1.9700887812757237, "d_left": 0.7300531725195163, "psi_rad": 1.4255923740971026, "kappa_radpm": -0.07235270850204863, "vx_mps": 10.148529214597279, "ax_mps2": -4.866630257405421}, {"id": 160, "s_m": 15.979980518660177, "d_m": 0.0, "x_m": -7.5117571845651065, "y_m": -6.90573153746314, "d_right": 1.9552694788730873, "d_left": 0.7448804042262691, "psi_rad": 1.41829450463782, "kappa_radpm": -0.0737867522313786, "vx_mps": 10.10052162072453, "ax_mps2": -4.789324105323011}, {"id": 161, "s_m": 16.079855396901802, "d_m": 0.0, "x_m": -7.496218851681064, "y_m": -6.807071353551465, "d_right": 1.9397221896266192, "d_left": 0.7652370399121161, "psi_rad": 1.4108537414678977, "kappa_radpm": -0.07521354441726733, "vx_mps": 10.053052804345855, "ax_mps2": -4.71323308076662}, {"id": 162, "s_m": 16.17973027514343, "d_m": 0.0, "x_m": -7.479940327293059, "y_m": -6.708533691643895, "d_right": 1.9234347678555197, "d_left": 0.7983626471639196, "psi_rad": 1.403270432460501, "kappa_radpm": -0.07664441849631208, "vx_mps": 10.00611830465911, "ax_mps2": -4.63856246524199}, {"id": 163, "s_m": 16.279605153385056, "d_m": 0.0, "x_m": -7.462907435489623, "y_m": -6.610120304887941, "d_right": 1.906393300901809, "d_left": 0.8427655354085352, "psi_rad": 1.3955439567201149, "kappa_radpm": -0.0780769757741611, "vx_mps": 9.95971143176195, "ax_mps2": -4.565091600919134}, {"id": 164, "s_m": 16.37948003162668, "d_m": 0.0, "x_m": -7.4451082677235085, "y_m": -6.511846180914042, "d_right": 1.8885861259788996, "d_left": 0.8614358257396164, "psi_rad": 1.3876743809355003, "kappa_radpm": -0.0795130412004283, "vx_mps": 9.913827508503582, "ax_mps2": -4.493279553868071}, {"id": 165, "s_m": 16.47935490986831, "d_m": 0.0, "x_m": -7.4265285493786, "y_m": -6.413712859257609, "d_right": 1.8699993542476416, "d_left": 0.8800118012186197, "psi_rad": 1.3796612827350099, "kappa_radpm": -0.0809476125114077, "vx_mps": 9.868457041081244, "ax_mps2": -4.422504701081582}, {"id": 166, "s_m": 16.579229788109934, "d_m": 0.0, "x_m": -7.407156833901872, "y_m": -6.315736824885823, "d_right": 1.8506219455080146, "d_left": 0.8993838537096356, "psi_rad": 1.371504897215572, "kappa_radpm": -0.08238661835134431, "vx_mps": 9.823596598729964, "ax_mps2": -4.353117425729068}, {"id": 167, "s_m": 16.67910466635156, "d_m": 0.0, "x_m": -7.386978757934465, "y_m": -6.2179194227311925, "d_right": 1.8304400911695997, "d_left": 0.9195671137539181, "psi_rad": 1.363204537462593, "kappa_radpm": -0.08382611137911895, "vx_mps": 9.77923902912934, "ax_mps2": -4.284641103781341}, {"id": 168, "s_m": 16.778979544593184, "d_m": 0.0, "x_m": -7.365983376196333, "y_m": -6.120278678756595, "d_right": 1.809443479875086, "d_left": 0.9405733958625537, "psi_rad": 1.3547604034616123, "kappa_radpm": -0.08527065862251393, "vx_mps": 9.735381860602494, "ax_mps2": -4.217484466884267}, {"id": 169, "s_m": 16.878854422834813, "d_m": 0.0, "x_m": -7.344156204503314, "y_m": -6.022815761475119, "d_right": 1.7876184154155386, "d_left": 0.9624180719979261, "psi_rad": 1.3461717047170978, "kappa_radpm": -0.08671564850206134, "vx_mps": 9.692018287050228, "ax_mps2": -4.151074520795514}, {"id": 170, "s_m": 16.978729301076438, "d_m": 0.0, "x_m": -7.3214868651600495, "y_m": -5.9255502991297275, "d_right": 1.7649554732069992, "d_left": 0.9851126066989716, "psi_rad": 1.3374386930799107, "kappa_radpm": -0.08816675770765475, "vx_mps": 9.649147234437006, "ax_mps2": -4.085764965974364}, {"id": 171, "s_m": 17.078604179318063, "d_m": 0.0, "x_m": -7.297960719501295, "y_m": -5.828483242924612, "d_right": 1.7414411246647314, "d_left": 1.0086726539915654, "psi_rad": 1.3285603171711946, "kappa_radpm": -0.08961989719998983, "vx_mps": 9.606763856514958, "ax_mps2": -4.021096884755359}, {"id": 172, "s_m": 17.17847905755969, "d_m": 0.0, "x_m": -7.273568008722514, "y_m": -5.731635873035316, "d_right": 1.717067008889292, "d_left": 1.0331093084426515, "psi_rad": 1.31953683367922, "kappa_radpm": -0.0910796380479194, "vx_mps": 9.56486793799667, "ax_mps2": -3.9574670511099486}, {"id": 173, "s_m": 17.278353935801317, "d_m": 0.0, "x_m": -7.2482939125845265, "y_m": -5.635008953767501, "d_right": 1.6918198616110194, "d_left": 1.0584385406420243, "psi_rad": 1.3103670818452824, "kappa_radpm": -0.09254135994682369, "vx_mps": 9.523455023864342, "ax_mps2": -3.894312594183698}, {"id": 174, "s_m": 17.37822881404294, "d_m": 0.0, "x_m": -7.222129360574426, "y_m": -5.538625436262514, "d_right": 1.6656926281753903, "d_left": 1.0846710390859402, "psi_rad": 1.3010513740135887, "kappa_radpm": -0.09401085028968727, "vx_mps": 9.482526435460601, "ax_mps2": -3.8319806227393935}, {"id": 175, "s_m": 17.47810369228457, "d_m": 0.0, "x_m": -7.195059329667469, "y_m": -5.44248592343526, "d_right": 1.638672461443501, "d_left": 1.1138342585170358, "psi_rad": 1.291588273413434, "kappa_radpm": -0.09548396405761374, "vx_mps": 9.442079771055123, "ax_mps2": -3.76993689469385}, {"id": 176, "s_m": 17.577978570526195, "d_m": 0.0, "x_m": -7.167075503923965, "y_m": -5.3466151021320565, "d_right": 1.610753920549695, "d_left": 1.1518179494667504, "psi_rad": 1.2819780860534347, "kappa_radpm": -0.09696627703486287, "vx_mps": 9.402118188275239, "ax_mps2": -3.708495559091761}, {"id": 177, "s_m": 17.67785344876782, "d_m": 0.0, "x_m": -7.138162612898875, "y_m": -5.251013420627683, "d_right": 1.581924777901638, "d_left": 1.1977975956422702, "psi_rad": 1.2722190580047914, "kappa_radpm": -0.0984539436783811, "vx_mps": 9.362641472439723, "ax_mps2": -3.647480030119609}, {"id": 178, "s_m": 17.77772832700945, "d_m": 0.0, "x_m": -7.108313125975867, "y_m": -5.155707241877065, "d_right": 1.5521815739435996, "d_left": 1.2483871026384958, "psi_rad": 1.2623115603369521, "kappa_radpm": -0.09994859611527275, "vx_mps": 9.323651221150131, "ax_mps2": -3.587537599737232}, {"id": 179, "s_m": 17.877603205251074, "d_m": 0.0, "x_m": -7.077511555481321, "y_m": -5.0606969770699965, "d_right": 1.5215130873487925, "d_left": 1.2792719089565996, "psi_rad": 1.2522543380750981, "kappa_radpm": -0.10144251220951205, "vx_mps": 9.285142020008758, "ax_mps2": -3.526902211316451}, {"id": 180, "s_m": 17.9774780834927, "d_m": 0.0, "x_m": -7.045751314847695, "y_m": -4.966010657211503, "d_right": 1.4899184782350225, "d_left": 1.3111373936652233, "psi_rad": 1.242047858785547, "kappa_radpm": -0.10295553889138705, "vx_mps": 9.247127363342717, "ax_mps2": -3.4648108383925966}, {"id": 181, "s_m": 18.077352961734327, "d_m": 0.0, "x_m": -7.013016617416832, "y_m": -4.871648723996626, "d_right": 1.4572828569134078, "d_left": 1.3440013767288206, "psi_rad": 1.2316879561491716, "kappa_radpm": -0.10449615527799737, "vx_mps": 9.2096291647738, "ax_mps2": -3.404610952017014}, {"id": 182, "s_m": 18.177227839975952, "d_m": 0.0, "x_m": -6.97930156614327, "y_m": -4.777641004549652, "d_right": 1.4233956325259178, "d_left": 1.3778726205710652, "psi_rad": 1.2211746076455463, "kappa_radpm": -0.10602503396710879, "vx_mps": 9.172633163059915, "ax_mps2": -3.349691335912218}, {"id": 183, "s_m": 18.277102718217577, "d_m": 0.0, "x_m": -6.944590170322299, "y_m": -4.6839879398748145, "d_right": 1.3885205565698104, "d_left": 1.4127693429058188, "psi_rad": 1.2105112938318543, "kappa_radpm": -0.10750193762010432, "vx_mps": 9.136087735755607, "ax_mps2": -3.297917143286239}, {"id": 184, "s_m": 18.376977596459206, "d_m": 0.0, "x_m": -6.908878205563361, "y_m": -4.590720661370822, "d_right": 1.3526580122763883, "d_left": 1.4483657271247072, "psi_rad": 1.1997011432403213, "kappa_radpm": -0.1089515967947804, "vx_mps": 9.099963789441727, "ax_mps2": -3.254428657644974}, {"id": 185, "s_m": 18.47685247470083, "d_m": 0.0, "x_m": -6.872150384648839, "y_m": -4.497839471111751, "d_right": 1.3157993549413423, "d_left": 1.4848776147401301, "psi_rad": 1.1887513124307196, "kappa_radpm": -0.11031238941934295, "vx_mps": 9.064175066562536, "ax_mps2": -3.2101674170557235}, {"id": 186, "s_m": 18.576727352942456, "d_m": 0.0, "x_m": -6.834404940338637, "y_m": -4.405377031862542, "d_right": 1.277950283840681, "d_left": 1.5224418381857476, "psi_rad": 1.1776655622144794, "kappa_radpm": -0.11169267265218588, "vx_mps": 9.028734101603979, "ax_mps2": -3.1655317163063463}, {"id": 187, "s_m": 18.67660223118408, "d_m": 0.0, "x_m": -6.79562692460619, "y_m": -4.313333135626986, "d_right": 1.2391057273699329, "d_left": 1.5610772339446304, "psi_rad": 1.166440218251314, "kappa_radpm": -0.1130874322485769, "vx_mps": 8.993649164159919, "ax_mps2": -3.119952512645035}, {"id": 188, "s_m": 18.77647710942571, "d_m": 0.0, "x_m": -6.755815393959406, "y_m": -4.221741371454632, "d_right": 1.199276543005644, "d_left": 1.600788140818911, "psi_rad": 1.1550757908487805, "kappa_radpm": -0.11450337553246741, "vx_mps": 8.958934955303238, "ax_mps2": -3.072032544690353}, {"id": 189, "s_m": 18.876351987667334, "d_m": 0.0, "x_m": -6.714955250742816, "y_m": -4.130602495231768, "d_right": 1.1584624748384744, "d_left": 1.6415937156648366, "psi_rad": 1.1435668127995233, "kappa_radpm": -0.11595739904457454, "vx_mps": 8.924621996513002, "ax_mps2": -3.02296380240855}, {"id": 190, "s_m": 18.97622686590896, "d_m": 0.0, "x_m": -6.673046124397046, "y_m": -4.0399511045039755, "d_right": 1.1166816583180696, "d_left": 1.6834982852957256, "psi_rad": 1.1319124904334863, "kappa_radpm": -0.11743445180835019, "vx_mps": 8.890727838442414, "ax_mps2": -2.972801068907772}, {"id": 191, "s_m": 19.076101744150588, "d_m": 0.0, "x_m": -6.630072781540963, "y_m": -3.9497893588608313, "d_right": 1.0739416233108308, "d_left": 1.7265213565890583, "psi_rad": 1.120108482837741, "kappa_radpm": -0.11893349314399539, "vx_mps": 8.85726962487128, "ax_mps2": -2.920795828264964}, {"id": 192, "s_m": 19.175976622392213, "d_m": 0.0, "x_m": -6.586035624813587, "y_m": -3.8601528376029672, "d_right": 1.030707158819131, "d_left": 1.7706670959409783, "psi_rad": 1.1081546707897376, "kappa_radpm": -0.12046350901194804, "vx_mps": 8.824273168495761, "ax_mps2": -2.865864912465551}, {"id": 193, "s_m": 19.275851500633838, "d_m": 0.0, "x_m": -6.540919050040117, "y_m": -3.7710444234743363, "d_right": 0.9860552483661285, "d_left": 1.81595563975646, "psi_rad": 1.0960443900359786, "kappa_radpm": -0.12203770393932015, "vx_mps": 8.791776904235874, "ax_mps2": -2.8086878751463535}, {"id": 194, "s_m": 19.375726378875466, "d_m": 0.0, "x_m": -6.494723963608404, "y_m": -3.68250063068469, "d_right": 0.9486951570165453, "d_left": 1.8623913024262198, "psi_rad": 1.083776712979495, "kappa_radpm": -0.12364683505139472, "vx_mps": 8.759812007957555, "ax_mps2": -2.7479145774979554}, {"id": 195, "s_m": 19.47560125711709, "d_m": 0.0, "x_m": -6.447434726413898, "y_m": -3.5945262218156517, "d_right": 0.9194992279613386, "d_left": 1.9095602915758876, "psi_rad": 1.0713442012790813, "kappa_radpm": -0.12530752731525588, "vx_mps": 8.728425467807202, "ax_mps2": -2.6846604691912064}, {"id": 196, "s_m": 19.575476135358716, "d_m": 0.0, "x_m": -6.399052476097036, "y_m": -3.507158256138846, "d_right": 0.8931498320464147, "d_left": 1.9617370406132095, "psi_rad": 1.0587455630676847, "kappa_radpm": -0.12700455184609913, "vx_mps": 8.697652032135123, "ax_mps2": -2.617804109446315}, {"id": 197, "s_m": 19.675351013600345, "d_m": 0.0, "x_m": -6.349561714306759, "y_m": -3.420403710351196, "d_right": 0.8432708422711215, "d_left": 2.0185477655769577, "psi_rad": 1.0459734151363282, "kappa_radpm": -0.1287515618512146, "vx_mps": 8.667539739667852, "ax_mps2": -2.5462899380792208}, {"id": 198, "s_m": 19.77522589184197, "d_m": 0.0, "x_m": -6.2989635307782486, "y_m": -3.3342996478597042, "d_right": 0.7924511188219117, "d_left": 2.0796086416461392, "psi_rad": 1.033026003248297, "kappa_radpm": -0.1305612368620081, "vx_mps": 8.638149358725768, "ax_mps2": -2.4669115577636465}, {"id": 199, "s_m": 19.875100770083595, "d_m": 0.0, "x_m": -6.24724278571088, "y_m": -3.24885602821434, "d_right": 0.7407455408576291, "d_left": 2.1445697881380976, "psi_rad": 1.0198904053157383, "kappa_radpm": -0.132474352652433, "vx_mps": 8.60957951126101, "ax_mps2": -2.3857173817714252}, {"id": 200, "s_m": 19.97497564832522, "d_m": 0.0, "x_m": -6.19440050156168, "y_m": -3.164111261018131, "d_right": 0.6921340967520648, "d_left": 2.212150584290376, "psi_rad": 1.0065635026022643, "kappa_radpm": -0.1344089809691323, "vx_mps": 8.581859524291847, "ax_mps2": -2.3040032495707354}, {"id": 201, "s_m": 20.07485052656685, "d_m": 0.0, "x_m": -6.1404215869251315, "y_m": -3.0800775293631877, "d_right": 0.6539661606461801, "d_left": 2.266234582370815, "psi_rad": 0.9930423710654481, "kappa_radpm": -0.13634636225344832, "vx_mps": 8.555003729200841, "ax_mps2": -2.2055754429687124}, {"id": 202, "s_m": 20.174725404808473, "d_m": 0.0, "x_m": -6.085305811581348, "y_m": -2.9967904210401417, "d_right": 0.6281419634916234, "d_left": 2.3215724087069174, "psi_rad": 0.9793240164640785, "kappa_radpm": -0.13850167744195313, "vx_mps": 8.529216004358306, "ax_mps2": -2.076437573961437}, {"id": 203, "s_m": 20.2746002830501, "d_m": 0.0, "x_m": -6.02903957824835, "y_m": -2.9142688061353432, "d_right": 0.5811369469374608, "d_left": 2.3778872440580185, "psi_rad": 0.9653635292773634, "kappa_radpm": -0.1410590318309185, "vx_mps": 8.504866709669846, "ax_mps2": -1.962665863473523}, {"id": 204, "s_m": 20.374475161291727, "d_m": 0.0, "x_m": -5.971621783312147, "y_m": -2.8325557045328527, "d_right": 0.5379455678519729, "d_left": 2.435042826700653, "psi_rad": 0.9511509695446876, "kappa_radpm": -0.1433881330749148, "vx_mps": 8.4817872951969, "ax_mps2": -1.8833854503160479}, {"id": 205, "s_m": 20.474350039533352, "d_m": 0.0, "x_m": -5.913036969925586, "y_m": -2.7516688422244044, "d_right": 0.5094745790998172, "d_left": 2.4935091806592307, "psi_rad": 0.9367376017706209, "kappa_radpm": -0.14522940201900586, "vx_mps": 8.459580955100485, "ax_mps2": -1.7546342274420703}, {"id": 206, "s_m": 20.574224917774977, "d_m": 0.0, "x_m": -5.853289084193588, "y_m": -2.6716457082609635, "d_right": 0.4893735360336864, "d_left": 2.553291380049669, "psi_rad": 0.9221296043468257, "kappa_radpm": -0.14773308623843348, "vx_mps": 8.438840096615772, "ax_mps2": -1.5479889693903963}, {"id": 207, "s_m": 20.674099796016606, "d_m": 0.0, "x_m": -5.792362461384828, "y_m": -2.592507828178532, "d_right": 0.45936396948585645, "d_left": 2.6144146179149765, "psi_rad": 0.9071980985793862, "kappa_radpm": -0.1512748841168141, "vx_mps": 8.420499495669814, "ax_mps2": -1.321497798562236}, {"id": 208, "s_m": 20.77397467425823, "d_m": 0.0, "x_m": -5.730235337817661, "y_m": -2.514284903261853, "d_right": 0.4322026318845202, "d_left": 2.676650216933925, "psi_rad": 0.8919049380876338, "kappa_radpm": -0.15503195381873253, "vx_mps": 8.404810699422066, "ax_mps2": -1.044224799010892}, {"id": 209, "s_m": 20.873849552499856, "d_m": 0.0, "x_m": -5.6669074203847964, "y_m": -2.437038015840924, "d_right": 0.42169426365100154, "d_left": 2.7397076834467766, "psi_rad": 0.8762043996231209, "kappa_radpm": -0.15941636210024054, "vx_mps": 8.392392939073066, "ax_mps2": -0.9787406877128992}, {"id": 210, "s_m": 20.973724430741484, "d_m": 0.0, "x_m": -5.602396848598518, "y_m": -2.360853921099886, "d_right": 0.4299618058015111, "d_left": 2.804145275011232, "psi_rad": 0.8601269678989819, "kappa_radpm": -0.16078166917205425, "vx_mps": 8.380737200853666, "ax_mps2": -0.9689510753408713}, {"id": 211, "s_m": 21.07359930898311, "d_m": 0.0, "x_m": -5.536663859722487, "y_m": -2.285701245750051, "d_right": 0.43663003087109575, "d_left": 2.870015652493231, "psi_rad": 0.844256330298568, "kappa_radpm": -0.1568959421035186, "vx_mps": 8.369182056116895, "ax_mps2": -1.2654584111326848}, {"id": 212, "s_m": 21.173474187224734, "d_m": 0.0, "x_m": -5.469716514685657, "y_m": -2.2115356891925715, "d_right": 0.4445220340641887, "d_left": 2.9371815197028237, "psi_rad": 0.8288662412137929, "kappa_radpm": -0.15026045771860025, "vx_mps": 8.35406687063047, "ax_mps2": -1.766806211434869}, {"id": 213, "s_m": 21.273349065466363, "d_m": 0.0, "x_m": -5.4016588624492785, "y_m": -2.1383798861663, "d_right": 0.472450268406551, "d_left": 3.0049414894262907, "psi_rad": 0.8142205461199125, "kappa_radpm": -0.14323587406376304, "vx_mps": 8.332917506400646, "ax_mps2": -1.997675513670765}, {"id": 214, "s_m": 21.373223943707988, "d_m": 0.0, "x_m": -5.332573413350658, "y_m": -2.066226506176882, "d_right": 0.4873354185173162, "d_left": 3.07397902185587, "psi_rad": 0.7999217429240056, "kappa_radpm": -0.1487462623736425, "vx_mps": 8.308939701977026, "ax_mps2": -0.9119446425518225}, {"id": 215, "s_m": 21.473098821949613, "d_m": 0.0, "x_m": -5.262459523727022, "y_m": -1.99514931949984, "d_right": 0.5132648996167247, "d_left": 3.1443058387503973, "psi_rad": 0.7842507642890774, "kappa_radpm": -0.16489761090294008, "vx_mps": 8.297970730896449, "ax_mps2": -0.3571203197469957}, {"id": 216, "s_m": 21.57297370019124, "d_m": 0.0, "x_m": -5.19124527861145, "y_m": -1.925288313792058, "d_right": 0.5412820822689832, "d_left": 3.112761505255675, "psi_rad": 0.7672260581486509, "kappa_radpm": -0.17313067932316928, "vx_mps": 8.293671295265412, "ax_mps2": -0.26570607165975557}, {"id": 217, "s_m": 21.672848578432866, "d_m": 0.0, "x_m": -5.118757998471932, "y_m": -1.8565918591344466, "d_right": 0.5605534006816264, "d_left": 3.050506032975482, "psi_rad": 0.7498582541595759, "kappa_radpm": -0.17459139727285894, "vx_mps": 8.290470965560358, "ax_mps2": -0.26570607165975557}, {"id": 218, "s_m": 21.77272345667449, "d_m": 0.0, "x_m": -5.045004822727316, "y_m": -1.7890877224242878, "d_right": 0.583555586985374, "d_left": 2.9916310962495904, "psi_rad": 0.732781063729476, "kappa_radpm": -0.159357873683682, "vx_mps": 8.287269399970604, "ax_mps2": 0.7899861358732952}, {"id": 219, "s_m": 21.872598334916116, "d_m": 0.0, "x_m": -4.970230904609758, "y_m": -1.7228026059969594, "d_right": 0.6145711478505309, "d_left": 2.936342203335252, "psi_rad": 0.7182641059259105, "kappa_radpm": -0.13159760523866842, "vx_mps": 8.296784536551192, "ax_mps2": 2.6751529392093225}, {"id": 220, "s_m": 21.972473213157745, "d_m": 0.0, "x_m": -4.894601514476324, "y_m": -1.6575289492343834, "d_right": 0.6458660997542236, "d_left": 2.8846067846089287, "psi_rad": 0.7059081510323357, "kappa_radpm": -0.12458533026639328, "vx_mps": 8.328925188409217, "ax_mps2": 3.089215031489853}, {"id": 221, "s_m": 22.07234809139937, "d_m": 0.0, "x_m": -4.818226569507722, "y_m": -1.5932580097263387, "d_right": 0.6806981174509887, "d_left": 2.8225407996570433, "psi_rad": 0.6930579244217125, "kappa_radpm": -0.1325745148704887, "vx_mps": 8.365886966985748, "ax_mps2": 2.450804109321973}, {"id": 222, "s_m": 22.172222969640995, "d_m": 0.0, "x_m": -4.74102033817569, "y_m": -1.5300062259716014, "d_right": 0.7048052768166773, "d_left": 2.760947550875617, "psi_rad": 0.6797198264478477, "kappa_radpm": -0.13125635093297394, "vx_mps": 8.395094536001796, "ax_mps2": 2.476911121807925}, {"id": 223, "s_m": 22.272097847882623, "d_m": 0.0, "x_m": -4.6629245108703055, "y_m": -1.4677164526536266, "d_right": 0.7376575797150274, "d_left": 2.702656028050942, "psi_rad": 0.6669532331164421, "kappa_radpm": -0.12447032023738235, "vx_mps": 8.424510351457764, "ax_mps2": 2.891678459745797}, {"id": 224, "s_m": 22.37197272612425, "d_m": 0.0, "x_m": -4.584050909117972, "y_m": -1.4063983662962523, "d_right": 0.7735365608556773, "d_left": 2.6478939855843167, "psi_rad": 0.6547363397960428, "kappa_radpm": -0.12142219687642457, "vx_mps": 8.458722523524525, "ax_mps2": 3.0356431349634505}, {"id": 225, "s_m": 22.471847604365873, "d_m": 0.0, "x_m": -4.504471403871489, "y_m": -1.3460661943352243, "d_right": 0.8045616820134647, "d_left": 2.596891609154254, "psi_rad": 0.6426565445116756, "kappa_radpm": -0.120470102963614, "vx_mps": 8.494489726108338, "ax_mps2": 3.028371987583816}, {"id": 226, "s_m": 22.571722482607502, "d_m": 0.0, "x_m": -4.4241705453515925, "y_m": -1.2866943798251738, "d_right": 0.8452367150222604, "d_left": 2.549847915474897, "psi_rad": 0.6306906436043446, "kappa_radpm": -0.11902483849519374, "vx_mps": 8.530021821426994, "ax_mps2": 3.05831840161824}, {"id": 227, "s_m": 22.671597360849127, "d_m": 0.0, "x_m": -4.3431642066356595, "y_m": -1.2282773202450197, "d_right": 0.8746862684812998, "d_left": 2.5069782240661715, "psi_rad": 0.6188862638934034, "kappa_radpm": -0.11736552534148618, "vx_mps": 8.565755695208226, "ax_mps2": 3.104992100365748}, {"id": 228, "s_m": 22.771472239090752, "d_m": 0.0, "x_m": -4.2614777107702615, "y_m": -1.1708134994631316, "d_right": 0.9127484627386694, "d_left": 2.4500215099050724, "psi_rad": 0.6072317453813485, "kappa_radpm": -0.1161835428028336, "vx_mps": 8.601883052327707, "ax_mps2": 3.117259531118522}, {"id": 229, "s_m": 22.87134711733238, "d_m": 0.0, "x_m": -4.179130979925689, "y_m": -1.1143021538524926, "d_right": 0.9404087380862448, "d_left": 2.393587609585098, "psi_rad": 0.595674853033776, "kappa_radpm": -0.11524497739830795, "vx_mps": 8.638001150622676, "ax_mps2": 3.1125392840284425}, {"id": 230, "s_m": 22.971221995574005, "d_m": 0.0, "x_m": -4.0961393480884425, "y_m": -1.058742163322699, "d_right": 0.9756794813062762, "d_left": 2.3382314112641334, "psi_rad": 0.5842198658227042, "kappa_radpm": -0.1140727356682724, "vx_mps": 8.673914505123273, "ax_mps2": 3.1266803515659274}, {"id": 231, "s_m": 23.07109687381563, "d_m": 0.0, "x_m": -4.01251849414397, "y_m": -1.0041301958457753, "d_right": 1.0017890360059702, "d_left": 2.2838278446961224, "psi_rad": 0.5728904853907771, "kappa_radpm": -0.11280058814379454, "vx_mps": 8.709841932033793, "ax_mps2": 3.1495282135631766}, {"id": 232, "s_m": 23.170971752057255, "d_m": 0.0, "x_m": -3.9282890002217146, "y_m": -0.9504646681578819, "d_right": 1.0358628003352948, "d_left": 2.233549262666813, "psi_rad": 0.5616841978520721, "kappa_radpm": -0.11164098297462524, "vx_mps": 8.74588268699681, "ax_mps2": 3.1648300646002645}, {"id": 233, "s_m": 23.270846630298884, "d_m": 0.0, "x_m": -3.8434646224336833, "y_m": -0.8977405395719174, "d_right": 1.0771527756676742, "d_left": 2.187674366088878, "psi_rad": 0.550589602912622, "kappa_radpm": -0.1105278333565381, "vx_mps": 8.78194955630157, "ax_mps2": 3.1776586898434287}, {"id": 234, "s_m": 23.37072150854051, "d_m": 0.0, "x_m": -3.758066406011933, "y_m": -0.8459577702026164, "d_right": 1.1126930347541246, "d_left": 2.1464836779463474, "psi_rad": 0.5396069460283364, "kappa_radpm": -0.10940362588132302, "vx_mps": 8.818014207229904, "ax_mps2": 3.1924642705987862}, {"id": 235, "s_m": 23.470596386782134, "d_m": 0.0, "x_m": -3.6721032894747565, "y_m": -0.7951087063955891, "d_right": 1.143631623672063, "d_left": 2.110242715779347, "psi_rad": 0.5287363191840115, "kappa_radpm": -0.1082777136811824, "vx_mps": 8.854098967119242, "ax_mps2": 3.208498984912599}, {"id": 236, "s_m": 23.570471265023762, "d_m": 0.0, "x_m": -3.585600262786563, "y_m": -0.745195088338783, "d_right": 1.181239291473157, "d_left": 2.074408251700842, "psi_rad": 0.5179778728873428, "kappa_radpm": -0.10717418853824892, "vx_mps": 8.890217399504643, "ax_mps2": 3.223844709625001}, {"id": 237, "s_m": 23.670346143265387, "d_m": 0.0, "x_m": -3.4985618006790413, "y_m": -0.6962067964239124, "d_right": 1.2141818430901845, "d_left": 2.025492523895031, "psi_rad": 0.5073280970198732, "kappa_radpm": -0.10608228950423106, "vx_mps": 8.926361386709733, "ax_mps2": 3.239341569620199}, {"id": 238, "s_m": 23.770221021507012, "d_m": 0.0, "x_m": -3.4110162453872257, "y_m": -0.6481472755516622, "d_right": 1.242281234513487, "d_left": 1.9775857818617795, "psi_rad": 0.49678763908276347, "kappa_radpm": -0.10500352425200633, "vx_mps": 8.962532303754347, "ax_mps2": 3.2548527521299953}, {"id": 239, "s_m": 23.87009589974864, "d_m": 0.0, "x_m": -3.3229632952790746, "y_m": -0.6010040986244197, "d_right": 1.2628027556991843, "d_left": 1.9306715588644874, "psi_rad": 0.4863535007828057, "kappa_radpm": -0.10393226990369164, "vx_mps": 8.998729984862699, "ax_mps2": 3.2708177963044482}, {"id": 240, "s_m": 23.969970777990266, "d_m": 0.0, "x_m": -3.234434956089846, "y_m": -0.5547822714618854, "d_right": 1.2893297505015675, "d_left": 1.8845605787553819, "psi_rad": 0.47602686315349985, "kappa_radpm": -0.10287374451420565, "vx_mps": 9.034959125462601, "ax_mps2": 3.2867963809777123}, {"id": 241, "s_m": 24.06984565623189, "d_m": 0.0, "x_m": -3.1454259393424975, "y_m": -0.5094671367105781, "d_right": 1.3219317003494206, "d_left": 1.8390158090827715, "psi_rad": 0.4658042773050397, "kappa_radpm": -0.10182338898645064, "vx_mps": 9.071219497702073, "ax_mps2": 3.303148552556207}, {"id": 242, "s_m": 24.16972053447352, "d_m": 0.0, "x_m": -3.055972129329787, "y_m": -0.4650651968060329, "d_right": 1.3601702962487114, "d_left": 1.794445576348946, "psi_rad": 0.4556873474996179, "kappa_radpm": -0.10078469471678198, "vx_mps": 9.10751482537862, "ax_mps2": 3.319570867496779}, {"id": 243, "s_m": 24.269595412715145, "d_m": 0.0, "x_m": -2.9660632943417733, "y_m": -0.4215598202421753, "d_right": 1.3898625013022208, "d_left": 1.7508302726700051, "psi_rad": 0.4456723199431283, "kappa_radpm": -0.09975389588835262, "vx_mps": 9.143845458389087, "ax_mps2": 3.336363829314492}, {"id": 244, "s_m": 24.36947029095677, "d_m": 0.0, "x_m": -2.875739096644332, "y_m": -0.37895876444831106, "d_right": 1.412934663025799, "d_left": 1.7081741406089581, "psi_rad": 0.4357612802888231, "kappa_radpm": -0.09873260412568317, "vx_mps": 9.180215009973777, "ax_mps2": 3.3533784584022497}, {"id": 245, "s_m": 24.469345169198398, "d_m": 0.0, "x_m": -2.7849844511068134, "y_m": -0.33724366655940713, "d_right": 1.4416397504604832, "d_left": 1.6664558731641355, "psi_rad": 0.42595024761836564, "kappa_radpm": -0.0977190156385247, "vx_mps": 9.216625421476664, "ax_mps2": 3.3707547516336693}, {"id": 246, "s_m": 24.569220047440023, "d_m": 0.0, "x_m": -2.6938427309778095, "y_m": -0.2964233220175354, "d_right": 1.4756463762763992, "d_left": 1.6279648727167106, "psi_rad": 0.4162417454457228, "kappa_radpm": -0.09671298494221481, "vx_mps": 9.253080114243769, "ax_mps2": 3.388492754019614}, {"id": 247, "s_m": 24.669094925681648, "d_m": 0.0, "x_m": -2.6022941606223564, "y_m": -0.2564778944528149, "d_right": 1.5053534139029003, "d_left": 1.5957222384119614, "psi_rad": 0.4066315839891148, "kappa_radpm": -0.09571441397735372, "vx_mps": 9.289582455798223, "ax_mps2": 3.406588942293402}, {"id": 248, "s_m": 24.768969803923277, "d_m": 0.0, "x_m": -2.51038560913852, "y_m": -0.21741695822786133, "d_right": 1.5252167651307746, "d_left": 1.5701186951414532, "psi_rad": 0.3971225152012203, "kappa_radpm": -0.09472557227356324, "vx_mps": 9.326135722513147, "ax_mps2": 3.4248343331273516}, {"id": 249, "s_m": 24.8688446821649, "d_m": 0.0, "x_m": -2.4180929540726916, "y_m": -0.17921955520558355, "d_right": 1.5503674946455654, "d_left": 1.5514654000988386, "psi_rad": 0.3877098783374402, "kappa_radpm": -0.09374501098936411, "vx_mps": 9.362740909518616, "ax_mps2": 3.44334388598991}, {"id": 250, "s_m": 24.968719560406527, "d_m": 0.0, "x_m": -2.325466158242664, "y_m": -0.14189574593474039, "d_right": 1.5805501275305827, "d_left": 1.5212861911426636, "psi_rad": 0.378397424538109, "kappa_radpm": -0.09275729987438203, "vx_mps": 9.399400217114284, "ax_mps2": 3.463469471413837}, {"id": 251, "s_m": 25.06859443864815, "d_m": 0.0, "x_m": -2.232477292763626, "y_m": -0.10542368812250485, "d_right": 1.615501774082929, "d_left": 1.4849459024488738, "psi_rad": 0.36918133472824666, "kappa_radpm": -0.09177635317067244, "vx_mps": 9.436130119121405, "ax_mps2": 3.483966997246526}, {"id": 252, "s_m": 25.16846931688978, "d_m": 0.0, "x_m": -2.1391790230699392, "y_m": -0.06981347921381652, "d_right": 1.6357662080468613, "d_left": 1.4494994188610253, "psi_rad": 0.3600660769622004, "kappa_radpm": -0.0907775358772251, "vx_mps": 9.472933715818233, "ax_mps2": 3.5070378792793067}, {"id": 253, "s_m": 25.268344195131405, "d_m": 0.0, "x_m": -2.045539999869233, "y_m": -0.03504253869725684, "d_right": 1.6574885108765787, "d_left": 1.4149209332656025, "psi_rad": 0.35104825665855177, "kappa_radpm": -0.08978487892952876, "vx_mps": 9.509837177714948, "ax_mps2": 3.5305102832424033}, {"id": 254, "s_m": 25.36821907337303, "d_m": 0.0, "x_m": -1.95161532281578, "y_m": -0.001120751956254816, "d_right": 1.6791000505440994, "d_left": 1.3812194268030886, "psi_rad": 0.3421314895778136, "kappa_radpm": -0.08879640469256939, "vx_mps": 9.546843547266745, "ax_mps2": 3.5545578003224727}, {"id": 255, "s_m": 25.46809395161466, "d_m": 0.0, "x_m": -1.8573704522999739, "y_m": 0.03197482536129301, "d_right": 1.704810739130572, "d_left": 1.3479717475450899, "psi_rad": 0.33331090793294327, "kappa_radpm": -0.087815638797384, "vx_mps": 9.583957625689335, "ax_mps2": 3.5788511160798557}, {"id": 256, "s_m": 25.567968829856284, "d_m": 0.0, "x_m": -1.762862567399286, "y_m": 0.06423449062606133, "d_right": 1.724787309893877, "d_left": 1.3155563560662962, "psi_rad": 0.3245901592918228, "kappa_radpm": -0.08684093864938394, "vx_mps": 9.62118071807902, "ax_mps2": 3.603535541146799}, {"id": 257, "s_m": 25.66784370809791, "d_m": 0.0, "x_m": -1.6680542252426165, "y_m": 0.09568128973626859, "d_right": 1.738110585643035, "d_left": 1.2839768440333132, "psi_rad": 0.3159641751238056, "kappa_radpm": -0.08587378360832083, "vx_mps": 9.65851560835092, "ax_mps2": 3.6284672405983516}, {"id": 258, "s_m": 25.767718586339537, "d_m": 0.0, "x_m": -1.5730043800222042, "y_m": 0.1263058457408605, "d_right": 1.756177850043375, "d_left": 1.253239503794287, "psi_rad": 0.30743690878493535, "kappa_radpm": -0.08490858914283167, "vx_mps": 9.695963552142475, "ax_mps2": 3.6541648539139686}, {"id": 259, "s_m": 25.867593464581162, "d_m": 0.0, "x_m": -1.4776733039364685, "y_m": 0.15613106394665097, "d_right": 1.7788618303121286, "d_left": 1.223321046544947, "psi_rad": 0.29900345903499126, "kappa_radpm": -0.0839508052419408, "vx_mps": 9.733531103571524, "ax_mps2": 3.68010876323923}, {"id": 260, "s_m": 25.967468342822787, "d_m": 0.0, "x_m": -1.3821205704130939, "y_m": 0.18514832207919982, "d_right": 1.8059844674547425, "d_left": 1.194227473177292, "psi_rad": 0.2906676955227909, "kappa_radpm": -0.08299636956421744, "vx_mps": 9.771219400539689, "ax_mps2": 3.682733843937644}, {"id": 261, "s_m": 26.067343221064416, "d_m": 0.0, "x_m": -1.2863059007221713, "y_m": 0.21337980245272112, "d_right": 1.8341914673874453, "d_left": 1.1659360605894526, "psi_rad": 0.2824247564976652, "kappa_radpm": -0.08204919708853597, "vx_mps": 9.808789617582915, "ax_mps2": 3.6604439198049343}, {"id": 262, "s_m": 26.16721809930604, "d_m": 0.0, "x_m": -1.190287322307257, "y_m": 0.24081825585790917, "d_right": 1.8616160370140533, "d_left": 1.1384519267921778, "psi_rad": 0.2742783663621593, "kappa_radpm": -0.08110435250042987, "vx_mps": 9.845990379012363, "ax_mps2": 3.6383624359538778}, {"id": 263, "s_m": 26.267092977547666, "d_m": 0.0, "x_m": -1.0940258256360882, "y_m": 0.2674846316032617, "d_right": 1.876864302590717, "d_left": 1.1117533945413982, "psi_rad": 0.26622398692084026, "kappa_radpm": -0.08016646059444628, "vx_mps": 9.882827963401144, "ax_mps2": 3.616485981674862}, {"id": 264, "s_m": 26.36696785578929, "d_m": 0.0, "x_m": -0.9975772231034045, "y_m": 0.2933731746723546, "d_right": 1.8854010818461344, "d_left": 1.0858445539811914, "psi_rad": 0.2582651057566552, "kappa_radpm": -0.07923082535800902, "vx_mps": 9.919308481358378, "ax_mps2": 3.5948112358297637}, {"id": 265, "s_m": 26.46684273403092, "d_m": 0.0, "x_m": -0.9009038996680329, "y_m": 0.3185036451462071, "d_right": 1.8983812900905628, "d_left": 1.0607047476985942, "psi_rad": 0.25039745504772903, "kappa_radpm": -0.07830188830041604, "vx_mps": 9.955437881746263, "ax_mps2": 3.5733349635635534}, {"id": 266, "s_m": 26.566717612272544, "d_m": 0.0, "x_m": -0.8040593678670462, "y_m": 0.3428717048880174, "d_right": 1.9157169375406489, "d_left": 1.036337075494266, "psi_rad": 0.2426242985248328, "kappa_radpm": -0.0773748806946378, "vx_mps": 9.991221957604257, "ax_mps2": 3.5520540131729237}, {"id": 267, "s_m": 26.66659249051417, "d_m": 0.0, "x_m": -0.7070075075674557, "y_m": 0.3664959777859428, "d_right": 1.9373067912032322, "d_left": 1.0127218669685774, "psi_rad": 0.234941650866217, "kappa_radpm": -0.07645427213966113, "vx_mps": 10.026666351797095, "ax_mps2": 3.530965313116935}, {"id": 268, "s_m": 26.766467368755798, "d_m": 0.0, "x_m": -0.6097994684661872, "y_m": 0.3893734627533225, "d_right": 1.9601741098655272, "d_left": 0.989861271230779, "psi_rad": 0.22735255310124947, "kappa_radpm": -0.07553538148243578, "vx_mps": 10.061776562402189, "ax_mps2": 3.510065869168}, {"id": 269, "s_m": 26.866342246997423, "d_m": 0.0, "x_m": -0.5124006895610494, "y_m": 0.41152171015955563, "d_right": 1.9823166241883095, "d_left": 0.9677365640327877, "psi_rad": 0.21985328966175777, "kappa_radpm": -0.07462259606198969, "vx_mps": 10.096557947850965, "ax_mps2": 3.489352761690876}, {"id": 270, "s_m": 26.966217125239048, "d_m": 0.0, "x_m": -0.41485993198905197, "y_m": 0.43293896794653325, "d_right": 2.003731673272388, "d_left": 0.9463489919185221, "psi_rad": 0.21244668691969482, "kappa_radpm": -0.07371130197547435, "vx_mps": 10.13101573183777, "ax_mps2": 3.468823143043511}, {"id": 271, "s_m": 27.066092003480676, "d_m": 0.0, "x_m": -0.317144234309257, "y_m": 0.4536417804563787, "d_right": 2.0108574398527326, "d_left": 0.9256807319503609, "psi_rad": 0.20512929199802676, "kappa_radpm": -0.07280581918248048, "vx_mps": 10.165155008009018, "ax_mps2": 3.448474235095056}, {"id": 272, "s_m": 27.1659668817223, "d_m": 0.0, "x_m": -0.21929996040858565, "y_m": 0.4736295561036226, "d_right": 2.0144214062499906, "d_left": 0.9057321777019235, "psi_rad": 0.19790372277935386, "kappa_radpm": -0.07190164180551664, "vx_mps": 10.198980744444507, "ax_mps2": 3.4283033268522716}, {"id": 273, "s_m": 27.265841759963926, "d_m": 0.0, "x_m": -0.12129576941215976, "y_m": 0.49291790288324494, "d_right": 2.0222039861334986, "d_left": 0.8864863607239021, "psi_rad": 0.19076677831712585, "kappa_radpm": -0.0710029785979731, "vx_mps": 10.232497787942066, "ax_mps2": 3.408307772190456}, {"id": 274, "s_m": 27.365716638205555, "d_m": 0.0, "x_m": -0.023175637719992107, "y_m": 0.5115073007510236, "d_right": 2.0341623375418085, "d_left": 0.8679428729574226, "psi_rad": 0.18372087739221654, "kappa_radpm": -0.07010544045213365, "vx_mps": 10.265710868115969, "ax_mps2": 3.3884849876815744}, {"id": 275, "s_m": 27.46559151644718, "d_m": 0.0, "x_m": 0.0750901495224773, "y_m": 0.5294124917041435, "d_right": 2.050235932127722, "d_left": 0.8500855526906402, "psi_rad": 0.1767630606236299, "kappa_radpm": -0.06921312672634335, "vx_mps": 10.298624601318899, "ax_mps2": 3.3688324505159972}, {"id": 276, "s_m": 27.565466394688805, "d_m": 0.0, "x_m": 0.17345998087013526, "y_m": 0.546634940045234, "d_right": 2.0674499256076504, "d_left": 0.8329132414797128, "psi_rad": 0.1698955558630968, "kappa_radpm": -0.06832178174188626, "vx_mps": 10.331243494396707, "ax_mps2": 3.349347696512294}, {"id": 277, "s_m": 27.665341272930434, "d_m": 0.0, "x_m": 0.2719619507837271, "y_m": 0.5631885910343427, "d_right": 2.083997044434816, "d_left": 0.8164105370653663, "psi_rad": 0.1631156340592248, "kappa_radpm": -0.06743537386865248, "vx_mps": 10.363571948284548, "ax_mps2": 3.3300283182110104}, {"id": 278, "s_m": 27.76521615117206, "d_m": 0.0, "x_m": 0.3705567813096517, "y_m": 0.5790758089126352, "d_right": 2.09987919315389, "d_left": 0.800575580881225, "psi_rad": 0.1564253415804966, "kappa_radpm": -0.06654978920175994, "vx_mps": 10.395614261452536, "ax_mps2": 3.3108719630461376}, {"id": 279, "s_m": 27.865091029413684, "d_m": 0.0, "x_m": 0.46927096043813443, "y_m": 0.5943098095875361, "d_right": 2.115109433392944, "d_left": 0.7635300026222697, "psi_rad": 0.14982216864833275, "kappa_radpm": -0.06566886230558987, "vx_mps": 10.427374633208546, "ax_mps2": 3.2918763315951396}, {"id": 280, "s_m": 27.964965907655312, "d_m": 0.0, "x_m": 0.5680675054134414, "y_m": 0.6088937762611359, "d_right": 2.1296906274583476, "d_left": 0.7284148964649786, "psi_rad": 0.14330798893459606, "kappa_radpm": -0.0647886300010166, "vx_mps": 10.458857166865325, "ax_mps2": 3.273039175896972}, {"id": 281, "s_m": 28.064840785896937, "d_m": 0.0, "x_m": 0.6669713172161837, "y_m": 0.6228402602234853, "d_right": 2.1436352022180936, "d_left": 0.7064301162150127, "psi_rad": 0.13688050078156344, "kappa_radpm": -0.06391278262234364, "vx_mps": 10.49006587277867, "ax_mps2": 3.254358297840559}, {"id": 282, "s_m": 28.164715664138562, "d_m": 0.0, "x_m": 0.765947666110823, "y_m": 0.6361531866066699, "d_right": 2.1569468669347622, "d_left": 0.6931325729330579, "psi_rad": 0.13054141418695941, "kappa_radpm": -0.06303751294381865, "vx_mps": 10.521004671263036, "ax_mps2": 3.235831547616822}, {"id": 283, "s_m": 28.264590542380187, "d_m": 0.0, "x_m": 0.8650198890584173, "y_m": 0.6488445038211511, "d_right": 2.169637467667815, "d_left": 0.6804569933168025, "psi_rad": 0.12428862479397496, "kappa_radpm": -0.06216636378970233, "vx_mps": 10.55167739539055, "ax_mps2": 3.2174568222334994}, {"id": 284, "s_m": 28.364465420621816, "d_m": 0.0, "x_m": 0.9641554646883116, "y_m": 0.6609188060251783, "d_right": 2.1817114613265485, "d_left": 0.6683989657460585, "psi_rad": 0.11812368748149327, "kappa_radpm": -0.061295689035239465, "vx_mps": 10.582087793679111, "ax_mps2": 3.1992320640865}, {"id": 285, "s_m": 28.46434029886344, "d_m": 0.0, "x_m": 1.0633761908399424, "y_m": 0.6723874972520796, "d_right": 2.1931801661049235, "d_left": 0.6569464037594506, "psi_rad": 0.11204468459181616, "kappa_radpm": -0.06042887873122869, "vx_mps": 10.61223953267486, "ax_mps2": 3.1811552595886794}, {"id": 286, "s_m": 28.564215177105066, "d_m": 0.0, "x_m": 1.1626517089764346, "y_m": 0.6832557719894125, "d_right": 2.204048697277522, "d_left": 0.6460944036811718, "psi_rad": 0.1060530242293709, "kappa_radpm": -0.05956245139751412, "vx_mps": 10.642136199434086, "ax_mps2": 3.163224437851662}, {"id": 287, "s_m": 28.664090055346694, "d_m": 0.0, "x_m": 1.262002303466512, "y_m": 0.6935345451096213, "d_right": 2.214327896423137, "d_left": 0.6358313829590178, "psi_rad": 0.10014696522277444, "kappa_radpm": -0.05869964114129346, "vx_mps": 10.671781303909302, "ax_mps2": 3.1454376694171335}, {"id": 288, "s_m": 28.76396493358832, "d_m": 0.0, "x_m": 1.3613997330453018, "y_m": 0.7032295468766137, "d_right": 2.207268827325035, "d_left": 0.6261519866888127, "psi_rad": 0.09432777690459004, "kappa_radpm": -0.057837133907402145, "vx_mps": 10.70117828124396, "ax_mps2": 3.1277930650375}, {"id": 289, "s_m": 28.863839811829944, "d_m": 0.0, "x_m": 1.4608627941500767, "y_m": 0.7123512549630279, "d_right": 2.201306774150789, "d_left": 0.6170450943352239, "psi_rad": 0.08859388473972452, "kappa_radpm": -0.0569780053905559, "vx_mps": 10.730330493980075, "ax_mps2": 3.110288774501974}, {"id": 290, "s_m": 28.963714690071573, "d_m": 0.0, "x_m": 1.560365317919229, "y_m": 0.720905874877118, "d_right": 2.199299672414735, "d_left": 0.6085049383634504, "psi_rad": 0.08294642690315412, "kappa_radpm": -0.056119111521878914, "vx_mps": 10.759241234182737, "ax_mps2": 3.0929229855074456}, {"id": 291, "s_m": 29.063589568313198, "d_m": 0.0, "x_m": 1.6599246378438335, "y_m": 0.7289034958989047, "d_right": 2.201266507793944, "d_left": 0.6005208196987512, "psi_rad": 0.0773839860128609, "kappa_radpm": -0.05526336668367361, "vx_mps": 10.787913725485323, "ax_mps2": 3.075693922569428}, {"id": 292, "s_m": 29.163464446554823, "d_m": 0.0, "x_m": 1.7595166135340572, "y_m": 0.7363507420831447, "d_right": 2.2072047314264447, "d_left": 0.5930865947487555, "psi_rad": 0.07190757642888324, "kappa_radpm": -0.05440779882916153, "vx_mps": 10.81635112505899, "ax_mps2": 3.058599845975182}, {"id": 293, "s_m": 29.26333932479645, "d_m": 0.0, "x_m": 1.8591571398275792, "y_m": 0.7432573601218433, "d_right": 2.214108549678969, "d_left": 0.5861919465559539, "psi_rad": 0.06651592879840762, "kappa_radpm": -0.05355515906534886, "vx_mps": 10.844556525509844, "ax_mps2": 3.0416390507741844}, {"id": 294, "s_m": 29.363214203038076, "d_m": 0.0, "x_m": 1.958824061943646, "y_m": 0.7496303395625066, "d_right": 2.220479004186129, "d_left": 0.5798303902446817, "psi_rad": 0.06120994070038299, "kappa_radpm": -0.05270264915879559, "vx_mps": 10.872532956707017, "ax_mps2": 3.0248098658043383}, {"id": 295, "s_m": 29.4630890812797, "d_m": 0.0, "x_m": 2.0585318591358917, "y_m": 0.7554791274267305, "d_right": 2.2263256265683418, "d_left": 0.5594190413316615, "psi_rad": 0.05598848199459461, "kappa_radpm": -0.0518528556940409, "vx_mps": 10.900283387544691, "ax_mps2": 3.008110652754324}, {"id": 296, "s_m": 29.562963959521326, "d_m": 0.0, "x_m": 2.1582603204904247, "y_m": 0.7608110291545794, "d_right": 2.231655564009037, "d_left": 0.5273729710775342, "psi_rad": 0.0508523402303489, "kappa_radpm": -0.05100315391696675, "vx_mps": 10.927810727640972, "ax_mps2": 2.991539805259004}, {"id": 297, "s_m": 29.662838837762955, "d_m": 0.0, "x_m": 2.2580225331722916, "y_m": 0.7656352323774205, "d_right": 2.236478081404818, "d_left": 0.5135802201472836, "psi_rad": 0.045800516152642246, "kappa_radpm": -0.050155963737466856, "vx_mps": 10.955117828976354, "ax_mps2": 2.975095748026634}, {"id": 298, "s_m": 29.76271371600458, "d_m": 0.0, "x_m": 2.357800188201831, "y_m": 0.7699593120489864, "d_right": 2.2408006193108863, "d_left": 0.5092551804953304, "psi_rad": 0.04083369361324829, "kappa_radpm": -0.049308842921263446, "vx_mps": 10.982207487474376, "ax_mps2": 2.958776935996392}, {"id": 299, "s_m": 29.862588594246205, "d_m": 0.0, "x_m": 2.457605003372626, "y_m": 0.7737922340463878, "d_right": 2.2446322131437917, "d_left": 0.5054214812706403, "psi_rad": 0.03595099549928826, "kappa_radpm": -0.048464040021989764, "vx_mps": 11.009082444526964, "ax_mps2": 2.942581853526237}, {"id": 300, "s_m": 29.962463472487833, "d_m": 0.0, "x_m": 2.557420531052695, "y_m": 0.7771417995415744, "d_right": 2.2479805496284704, "d_left": 0.502071223673187, "psi_rad": 0.031153008406589855, "kappa_radpm": -0.047619289120653906, "vx_mps": 11.035745388466776, "ax_mps2": 2.9265090136069105}, {"id": 301, "s_m": 30.06233835072946, "d_m": 0.0, "x_m": 2.6572571403303145, "y_m": 0.7800167877812404, "d_right": 2.2508544696191564, "d_left": 0.49919566907595336, "psi_rad": 0.026438969758854736, "kappa_radpm": -0.04677666348131757, "vx_mps": 11.062198955988801, "ax_mps2": 2.910556957105599}, {"id": 302, "s_m": 30.162213228971083, "d_m": 0.0, "x_m": 2.757100204749958, "y_m": 0.7824251859982418, "d_right": 2.2561041245098887, "d_left": 0.49678675499091896, "psi_rad": 0.0218093781555575, "kappa_radpm": -0.045934035606907564, "vx_mps": 11.08844573352335, "ax_mps2": 2.89472425203239}, {"id": 303, "s_m": 30.262088107212712, "d_m": 0.0, "x_m": 2.8569587718907865, "y_m": 0.7843756202364544, "d_right": 2.2652936951822453, "d_left": 0.4948358895557397, "psi_rad": 0.017263579953604058, "kappa_radpm": -0.04509336324287972, "vx_mps": 11.114488258562417, "ax_mps2": 2.8790094928336014}, {"id": 304, "s_m": 30.361962985454337, "d_m": 0.0, "x_m": 2.956819989770811, "y_m": 0.7858762263564733, "d_right": 2.278382658938699, "d_left": 0.49333487915881086, "psi_rad": 0.012801981520007999, "kappa_radpm": -0.0442528008784501, "vx_mps": 11.140329020941362, "ax_mps2": 2.8634112997073804}, {"id": 305, "s_m": 30.461837863695962, "d_m": 0.0, "x_m": 3.0566916116360527, "y_m": 0.7869355067436694, "d_right": 2.2953135321388602, "d_left": 0.4922752496414294, "psi_rad": 0.008424022516755114, "kappa_radpm": -0.043414064422803475, "vx_mps": 11.16597046407773, "ax_mps2": 2.8479283179433557}, {"id": 306, "s_m": 30.56171274193759, "d_m": 0.0, "x_m": 3.156562516098079, "y_m": 0.7875617095582369, "d_right": 2.308608879764135, "d_left": 0.49164870918931813, "psi_rad": 0.004130013701899804, "kappa_radpm": -0.04257567925712482, "vx_mps": 11.191414986168962, "ax_mps2": 2.832559217282767}, {"id": 307, "s_m": 30.661587620179215, "d_m": 0.0, "x_m": 3.25643918399583, "y_m": 0.7877632391730977, "d_right": 2.3088086294996035, "d_left": 0.4758275870079624, "psi_rad": -8.052377554013113e-05, "kappa_radpm": -0.04173893693787383, "vx_mps": 11.216664941350608, "ax_mps2": 2.8173026913001724}, {"id": 308, "s_m": 30.76146249842084, "d_m": 0.0, "x_m": 3.3563121835521743, "y_m": 0.7875484224757802, "d_right": 2.3085920304939003, "d_left": 0.4484449954798277, "psi_rad": -0.004207342574716444, "kappa_radpm": -0.040902422984131395, "vx_mps": 11.241722640816693, "ax_mps2": 2.802157456805123}, {"id": 309, "s_m": 30.86133737666247, "d_m": 0.0, "x_m": 3.456186755005078, "y_m": 0.7869255930082405, "d_right": 2.307967492016004, "d_left": 0.4428363989040238, "psi_rad": -0.008250830772716489, "kappa_radpm": -0.040067356430203586, "vx_mps": 11.26659035390367, "ax_mps2": 2.787122253263616}, {"id": 310, "s_m": 30.961212254904094, "d_m": 0.0, "x_m": 3.556055100813869, "y_m": 0.7859031289507371, "d_right": 2.3069432760183584, "d_left": 0.4438527183984775, "psi_rad": -0.012210793509717766, "kappa_radpm": -0.03923234456597332, "vx_mps": 11.291270309139431, "ax_mps2": 2.772195842236876}, {"id": 311, "s_m": 31.06108713314572, "d_m": 0.0, "x_m": 3.6559212637417415, "y_m": 0.7844893189492606, "d_right": 2.3055277293497416, "d_left": 0.44525984913831623, "psi_rad": -0.016087534106628665, "kappa_radpm": -0.038398644703752614, "vx_mps": 11.31576469525875, "ax_mps2": 2.7573770068395738}, {"id": 312, "s_m": 31.160962011387348, "d_m": 0.0, "x_m": 3.755779022570981, "y_m": 0.7826925674531162, "d_right": 2.3037291645326934, "d_left": 0.4470491166707914, "psi_rad": -0.019880926037873614, "kappa_radpm": -0.03756514295073519, "vx_mps": 11.340075662186434, "ax_mps2": 2.7426645512134966}, {"id": 313, "s_m": 31.260836889628973, "d_m": 0.0, "x_m": 3.8556312438372076, "y_m": 0.7805211389972602, "d_right": 2.3015558872306676, "d_left": 0.4492124396640846, "psi_rad": -0.023591208980465295, "kappa_radpm": -0.03673279841159639, "vx_mps": 11.364205321989445, "ax_mps2": 2.728057300019205}, {"id": 314, "s_m": 31.360711767870598, "d_m": 0.0, "x_m": 3.9554732311601644, "y_m": 0.7779834400894345, "d_right": 2.2990162352152415, "d_left": 0.4517412298199878, "psi_rad": -0.02721829574251755, "kappa_radpm": -0.03590042559817409, "vx_mps": 11.388155749799193, "ax_mps2": -4.965707202041155}, {"id": 315, "s_m": 31.460586646112223, "d_m": 0.0, "x_m": 4.055306770131932, "y_m": 0.7750877311879483, "d_right": 2.2961184945719553, "d_left": 0.4546273635757956, "psi_rad": -0.030762349922136112, "kappa_radpm": -0.03506912493692161, "vx_mps": 11.344522580404588, "ax_mps2": -7.9832186816787}, {"id": 316, "s_m": 31.56046152435385, "d_m": 0.0, "x_m": 4.155128606752556, "y_m": 0.7718424006409413, "d_right": 2.292871006636857, "d_left": 0.4340443724989219, "psi_rad": -0.03422339073436542, "kappa_radpm": -0.03423877309670101, "vx_mps": 11.2740208705542, "ax_mps2": -8.138554688076884}, {"id": 317, "s_m": 31.660336402595476, "d_m": 0.0, "x_m": 4.2549393566552345, "y_m": 0.7682557171962927, "d_right": 2.2892820492463537, "d_left": 0.4150350499774257, "psi_rad": -0.037601574387616354, "kappa_radpm": -0.0334090616029925, "vx_mps": 11.201690598861527, "ax_mps2": -8.292076157360134}, {"id": 318, "s_m": 31.7602112808371, "d_m": 0.0, "x_m": 4.354737196996597, "y_m": 0.7643360317123252, "d_right": 2.285359947596841, "d_left": 0.4169640186477797, "psi_rad": -0.040896725146349455, "kappa_radpm": -0.03257662251201114, "vx_mps": 11.127512394037108, "ax_mps2": -8.4441217704756}, {"id": 319, "s_m": 31.86008615907873, "d_m": 0.0, "x_m": 4.454521920525248, "y_m": 0.7600916591202679, "d_right": 2.28111301441079, "d_left": 0.4211693791381892, "psi_rad": -0.04410877547995451, "kappa_radpm": -0.03174630930389274, "vx_mps": 11.051462383417046, "ax_mps2": -8.594003228490353}, {"id": 320, "s_m": 31.959961037320355, "d_m": 0.0, "x_m": 4.554292818575933, "y_m": 0.7555309032673027, "d_right": 2.276549544460309, "d_left": 0.42568913416448384, "psi_rad": -0.04723857736557302, "kappa_radpm": -0.03092816310111406, "vx_mps": 10.973521347314852, "ax_mps2": -8.740411591955523}, {"id": 321, "s_m": 32.05983591556198, "d_m": 0.0, "x_m": 4.654048829319926, "y_m": 0.7506619976790468, "d_right": 2.2752772087883373, "d_left": 0.43051515824387104, "psi_rad": -0.05028662867929401, "kappa_radpm": -0.030098219463610222, "vx_mps": 10.893680538409331, "ax_mps2": -8.886131781434617}, {"id": 322, "s_m": 32.159710793803605, "d_m": 0.0, "x_m": 4.75379067684215, "y_m": 0.7454933076451459, "d_right": 2.2780867886847327, "d_left": 0.4356393660841949, "psi_rad": -0.05324680261173187, "kappa_radpm": -0.02917913278546528, "vx_mps": 10.811904226985117, "ax_mps2": -9.040144695582255}, {"id": 323, "s_m": 32.25958567204523, "d_m": 0.0, "x_m": 4.853515356266968, "y_m": 0.7400340583882301, "d_right": 2.2849720985865103, "d_left": 0.41416603869620455, "psi_rad": -0.05611487544917115, "kappa_radpm": -0.028209264940497775, "vx_mps": 10.728070950174718, "ax_mps2": -9.197316915084123}, {"id": 324, "s_m": 32.35946055028686, "d_m": 0.0, "x_m": 4.953225507890373, "y_m": 0.7342942716560056, "d_right": 2.2959066446767653, "d_left": 0.3978392180156738, "psi_rad": -0.058865316726677275, "kappa_radpm": -0.026867947493078366, "vx_mps": 10.642102447256148, "ax_mps2": -9.39403147708428}, {"id": 325, "s_m": 32.45933542852848, "d_m": 0.0, "x_m": 5.052918878491316, "y_m": 0.7282870031387946, "d_right": 2.2995923310965862, "d_left": 0.40282389181966644, "psi_rad": -0.06148180169021722, "kappa_radpm": -0.025545506207302723, "vx_mps": 10.553572333477977, "ax_mps2": -9.584624230004781}, {"id": 326, "s_m": 32.55921030677011, "d_m": 0.0, "x_m": 5.152596943994148, "y_m": 0.7220251897701289, "d_right": 2.2933386552583612, "d_left": 0.40908420694750225, "psi_rad": -0.06397451643376018, "kappa_radpm": -0.024371382378373725, "vx_mps": 10.46247402109199, "ax_mps2": -9.754718782899703}, {"id": 327, "s_m": 32.65908518501174, "d_m": 0.0, "x_m": 5.252260311850227, "y_m": 0.715520714411349, "d_right": 2.2868427782887877, "d_left": 0.41558772303440816, "psi_rad": -0.06635010199569624, "kappa_radpm": -0.02321693330192644, "vx_mps": 10.368937261869123, "ax_mps2": -9.91890743823191}, {"id": 328, "s_m": 32.75896006325336, "d_m": 0.0, "x_m": 5.351908916543915, "y_m": 0.708784929064854, "d_right": 2.280116064035116, "d_left": 0.4223231537323474, "psi_rad": -0.06861853486221947, "kappa_radpm": -0.02220857417353343, "vx_mps": 10.272952866396851, "ax_mps2": -10.06378015544358}, {"id": 329, "s_m": 32.85883494149499, "d_m": 0.0, "x_m": 5.451540298150303, "y_m": 0.7018282668930939, "d_right": 2.2731725961689015, "d_left": 0.4292803481974052, "psi_rad": -0.07078750976291426, "kappa_radpm": -0.021395745998140963, "vx_mps": 10.174641171061532, "ax_mps2": -10.15842139896157}, {"id": 330, "s_m": 32.95870981973662, "d_m": 0.0, "x_m": 5.551158195103487, "y_m": 0.6946567553871641, "d_right": 2.270389858377618, "d_left": 0.40282717228420606, "psi_rad": -0.07295514736438435, "kappa_radpm": -0.02201050467487898, "vx_mps": 10.074432031591831, "ax_mps2": -10.094051827537882}, {"id": 331, "s_m": 33.05858469797824, "d_m": 0.0, "x_m": 5.650757378111554, "y_m": 0.6872664668965722, "d_right": 2.271778923322249, "d_left": 0.39246947331719756, "psi_rad": -0.07518635021348774, "kappa_radpm": -0.023025347104589654, "vx_mps": 9.97386065496624, "ax_mps2": -9.737843372092716}, {"id": 332, "s_m": 33.15845957621987, "d_m": 0.0, "x_m": 5.750337591705245, "y_m": 0.6796433686032061, "d_right": 2.277317925427614, "d_left": 0.4001023239234568, "psi_rad": -0.07768745053577497, "kappa_radpm": -0.027059645102919194, "vx_mps": 9.875867785791584, "ax_mps2": -9.403674378926654}, {"id": 333, "s_m": 33.2583344544615, "d_m": 0.0, "x_m": 5.849902340319952, "y_m": 0.6717507493518521, "d_right": 2.286941250579999, "d_left": 0.4080051350315799, "psi_rad": -0.08059074433594948, "kappa_radpm": -0.03100861025852974, "vx_mps": 9.780305867159653, "ax_mps2": -9.13763485834202}, {"id": 334, "s_m": 33.35820933270312, "d_m": 0.0, "x_m": 5.9494340959217995, "y_m": 0.6635512490699546, "d_right": 2.28455813785279, "d_left": 0.416216124970518, "psi_rad": -0.08385551817078474, "kappa_radpm": -0.034371974819978925, "vx_mps": 9.686544405380637, "ax_mps2": -8.883463942079665}, {"id": 335, "s_m": 33.45808421094475, "d_m": 0.0, "x_m": 6.04894886320233, "y_m": 0.6550091092456466, "d_right": 2.2760234579536363, "d_left": 0.4247701745625197, "psi_rad": -0.08745639299166541, "kappa_radpm": -0.03772110565060939, "vx_mps": 9.59451263787029, "ax_mps2": -8.647368066070815}, {"id": 336, "s_m": 33.55795908918637, "d_m": 0.0, "x_m": 6.1484189987216915, "y_m": 0.6460932872090958, "d_right": 2.267896665539075, "d_left": 0.43298971618827176, "psi_rad": -0.0913864179334094, "kappa_radpm": -0.0409822925804749, "vx_mps": 9.504070869518708, "ax_mps2": -8.420614053326368}, {"id": 337, "s_m": 33.657833967428, "d_m": 0.0, "x_m": 6.24786366038804, "y_m": 0.6367692879656783, "d_right": 2.263741092933852, "d_left": 0.40555439427761175, "psi_rad": -0.09564260278357306, "kappa_radpm": -0.04424455603203962, "vx_mps": 9.415165823618969, "ax_mps2": -8.20161068059861}, {"id": 338, "s_m": 33.757708845669626, "d_m": 0.0, "x_m": 6.347254423318501, "y_m": 0.6270070744295596, "d_right": 2.263547123127119, "d_left": 0.4022109070893406, "psi_rad": -0.1002249359803562, "kappa_radpm": -0.04752192863507401, "vx_mps": 9.327758452598491, "ax_mps2": -7.991479832234035}, {"id": 339, "s_m": 33.85758372391125, "d_m": 0.0, "x_m": 6.446609252164107, "y_m": 0.6167720530728557, "d_right": 2.267283103969454, "d_left": 0.4124504405681602, "psi_rad": -0.10513507413248058, "kappa_radpm": -0.05079808301224307, "vx_mps": 9.24179536668028, "ax_mps2": -7.789609318060958}, {"id": 340, "s_m": 33.957458602152876, "d_m": 0.0, "x_m": 6.545899551328582, "y_m": 0.6060343149304546, "d_right": 2.2748962227406464, "d_left": 0.4231939680659145, "psi_rad": -0.11037194049783938, "kappa_radpm": -0.05407631846418039, "vx_mps": 9.157227147734773, "ax_mps2": -7.595779377856023}, {"id": 341, "s_m": 34.057333480394504, "d_m": 0.0, "x_m": 6.6451415660430655, "y_m": 0.5947592132353404, "d_right": 2.2671517743133522, "d_left": 0.43447613584718825, "psi_rad": -0.11593685441024193, "kappa_radpm": -0.05735564899613959, "vx_mps": 9.074004295468646, "ax_mps2": -7.409239740091942}, {"id": 342, "s_m": 34.157208358636126, "d_m": 0.0, "x_m": 6.744306586289442, "y_m": 0.5829170801567789, "d_right": 2.261234776172037, "d_left": 0.4373241201205432, "psi_rad": -0.12182902794715722, "kappa_radpm": -0.06064172682761713, "vx_mps": 8.99208319136195, "ax_mps2": -7.23013181572781}, {"id": 343, "s_m": 34.257083236877754, "d_m": 0.0, "x_m": 6.84340840544703, "y_m": 0.5704732658087386, "d_right": 2.259115509626198, "d_left": 0.41765230129524245, "psi_rad": -0.12805010018260798, "kappa_radpm": -0.06392964582887602, "vx_mps": 8.911416444698375, "ax_mps2": -7.057743544790108}, {"id": 344, "s_m": 34.35695811511938, "d_m": 0.0, "x_m": 6.9424188510211895, "y_m": 0.5573982442076714, "d_right": 2.2607724123608612, "d_left": 0.42201448727263774, "psi_rad": -0.13459930657677655, "kappa_radpm": -0.06722520291595488, "vx_mps": 8.831962437445458, "ax_mps2": -6.892177913630038}, {"id": 345, "s_m": 34.456832993361004, "d_m": 0.0, "x_m": 7.041348690496841, "y_m": 0.5436574442745481, "d_right": 2.264451048767186, "d_left": 0.43571874249235737, "psi_rad": -0.1414784490633907, "kappa_radpm": -0.07052421840716135, "vx_mps": 8.753676349772176, "ax_mps2": -6.732759235580677}, {"id": 346, "s_m": 34.55670787160263, "d_m": 0.0, "x_m": 7.1401704175764005, "y_m": 0.529221452005371, "d_right": 2.2522763219718267, "d_left": 0.45011994884129275, "psi_rad": -0.14868692644392256, "kappa_radpm": -0.07383265069820105, "vx_mps": 8.676519038116213, "ax_mps2": -6.579618674053995}, {"id": 347, "s_m": 34.65658274984426, "d_m": 0.0, "x_m": 7.2388912677715, "y_m": 0.5140558705965629, "d_right": 2.243748004662147, "d_left": 0.4652534373809846, "psi_rad": -0.15622668692218378, "kappa_radpm": -0.07714620971188771, "vx_mps": 8.600447976175317, "ax_mps2": -6.432038176579625}, {"id": 348, "s_m": 34.75645762808588, "d_m": 0.0, "x_m": 7.337484680007271, "y_m": 0.49813132572450697, "d_right": 2.238876597457164, "d_left": 0.4630537831365273, "psi_rad": -0.16409741000454825, "kappa_radpm": -0.08047203957102647, "vx_mps": 8.525427105514153, "ax_mps2": -6.290245376918719}, {"id": 349, "s_m": 34.85633250632751, "d_m": 0.0, "x_m": 7.43595388497978, "y_m": 0.48141370615744017, "d_right": 2.237652344074954, "d_left": 0.4536069089475311, "psi_rad": -0.17230120216160194, "kappa_radpm": -0.08380479152362766, "vx_mps": 8.451415996694044, "ax_mps2": -6.153595377375433}, {"id": 350, "s_m": 34.95620738456914, "d_m": 0.0, "x_m": 7.534273392232238, "y_m": 0.4638736046891877, "d_right": 2.237662248134241, "d_left": 0.466055780738076, "psi_rad": -0.18083799659471378, "kappa_radpm": -0.08715120883260033, "vx_mps": 8.378380104235468, "ax_mps2": -6.022279777041753}, {"id": 351, "s_m": 35.05608226281076, "d_m": 0.0, "x_m": 7.632442083029577, "y_m": 0.44547733041597765, "d_right": 2.2265704032245623, "d_left": 0.48433174957634884, "psi_rad": -0.18970994188759205, "kappa_radpm": -0.09050661122174038, "vx_mps": 8.306281012108288, "ax_mps2": -5.89551391454309}, {"id": 352, "s_m": 35.15595714105239, "d_m": 0.0, "x_m": 7.730435614016762, "y_m": 0.42619537152718195, "d_right": 2.2190197049914597, "d_left": 0.5034999947980225, "psi_rad": -0.19891747306842555, "kappa_radpm": -0.09388035989044001, "vx_mps": 8.235088146664676, "ax_mps2": -5.773639336137965}, {"id": 353, "s_m": 35.25583201929402, "d_m": 0.0, "x_m": 7.828248071135301, "y_m": 0.4059946162717923, "d_right": 2.215012615292036, "d_left": 0.49927876451257175, "psi_rad": -0.2084629163394509, "kappa_radpm": -0.09726582819885211, "vx_mps": 8.164765381315089, "ax_mps2": -5.655896061611034}, {"id": 354, "s_m": 35.35570689753564, "d_m": 0.0, "x_m": 7.925856381416027, "y_m": 0.3848453240974546, "d_right": 2.2093528565856437, "d_left": 0.4981857781256497, "psi_rad": -0.2183472231255672, "kappa_radpm": -0.100672677694593, "vx_mps": 8.095284421866843, "ax_mps2": -5.542739807456636}, {"id": 355, "s_m": 35.45558177577727, "d_m": 0.0, "x_m": 8.02324952562806, "y_m": 0.3627151375567328, "d_right": 2.1951169954816288, "d_left": 0.5177306669595333, "psi_rad": -0.2285727129649313, "kappa_radpm": -0.10409265420133244, "vx_mps": 8.026610053075363, "ax_mps2": -5.433853739678691}, {"id": 356, "s_m": 35.5554566540189, "d_m": 0.0, "x_m": 8.120405578794642, "y_m": 0.3395740417882448, "d_right": 2.1843226904082558, "d_left": 0.5406400974590487, "psi_rad": -0.23914037718776604, "kappa_radpm": -0.10752918281652638, "vx_mps": 7.958709567691487, "ax_mps2": -5.329099324062846}, {"id": 357, "s_m": 35.65533153226052, "d_m": 0.0, "x_m": 8.217308485187116, "y_m": 0.3153906394406008, "d_right": 2.176987726085436, "d_left": 0.555497223282358, "psi_rad": -0.2500521769391111, "kappa_radpm": -0.11098317241190424, "vx_mps": 7.8915506518432395, "ax_mps2": -5.226339917822682}, {"id": 358, "s_m": 35.75520641050215, "d_m": 0.0, "x_m": 8.313937206934119, "y_m": 0.29013460695692633, "d_right": 2.1731136117969467, "d_left": 0.5602675067988392, "psi_rad": -0.2613114773302785, "kappa_radpm": -0.11448760627548937, "vx_mps": 7.825126936013476, "ax_mps2": -5.127380091295387}, {"id": 359, "s_m": 35.855081288743776, "d_m": 0.0, "x_m": 8.410270043827515, "y_m": 0.2637755514471201, "d_right": 2.1604183733462063, "d_left": 0.568228943733292, "psi_rad": -0.27292174042225814, "kappa_radpm": -0.11801299141205603, "vx_mps": 7.75940839498027, "ax_mps2": -5.031436802865358}, {"id": 360, "s_m": 35.9549561669854, "d_m": 0.0, "x_m": 8.506287094366533, "y_m": 0.23628242774565536, "d_right": 2.150348275849099, "d_left": 0.5942529664223, "psi_rad": -0.2848859279727731, "kappa_radpm": -0.12157130807468554, "vx_mps": 7.694373942300771, "ax_mps2": -4.939363940750507}, {"id": 361, "s_m": 36.054831045227026, "d_m": 0.0, "x_m": 8.601960672214695, "y_m": 0.20762628243775172, "d_right": 2.1425445186835144, "d_left": 0.6225891124994857, "psi_rad": -0.29720631016990806, "kappa_radpm": -0.1251476910920717, "vx_mps": 7.629990407569987, "ax_mps2": -4.855364212017753}, {"id": 362, "s_m": 36.154705923468654, "d_m": 0.0, "x_m": 8.697271791226992, "y_m": 0.17777567273383474, "d_right": 2.121829854499605, "d_left": 0.6507204763850564, "psi_rad": -0.30988133321086186, "kappa_radpm": -0.1286697316223192, "vx_mps": 7.566167841161201, "ax_mps2": -4.774826407372511}, {"id": 363, "s_m": 36.254580801710276, "d_m": 0.0, "x_m": 8.792187564101184, "y_m": 0.14670397862213375, "d_right": 2.10418911920873, "d_left": 0.6508662858321482, "psi_rad": -0.322908887432656, "kappa_radpm": -0.1322149615100897, "vx_mps": 7.502874475059511, "ax_mps2": -4.6997265425705965}, {"id": 364, "s_m": 36.354455679951904, "d_m": 0.0, "x_m": 8.886689375694584, "y_m": 0.11438013049318481, "d_right": 2.0898636359156075, "d_left": 0.6674411314070443, "psi_rad": -0.3362903919316931, "kappa_radpm": -0.13574837949863283, "vx_mps": 7.440050816767528, "ax_mps2": -4.627516108052097}, {"id": 365, "s_m": 36.45433055819353, "d_m": 0.0, "x_m": 8.980738816109122, "y_m": 0.08077997234799902, "d_right": 2.066165181627935, "d_left": 0.6993057548739576, "psi_rad": -0.3500256499438201, "kappa_radpm": -0.139314710502161, "vx_mps": 7.377669750021168, "ax_mps2": -4.556494445232113}, {"id": 366, "s_m": 36.554205436435154, "d_m": 0.0, "x_m": 9.074317838928307, "y_m": 0.04587210607813013, "d_right": 2.044910764798169, "d_left": 0.727815724298792, "psi_rad": -0.36412120937766757, "kappa_radpm": -0.14294516953630765, "vx_mps": 7.315726367526675, "ax_mps2": -4.488292883647127}, {"id": 367, "s_m": 36.65408031467678, "d_m": 0.0, "x_m": 9.167381808465596, "y_m": 0.009634609472442936, "d_right": 2.0269483028631514, "d_left": 0.7366020935408629, "psi_rad": -0.3785800587553303, "kappa_radpm": -0.14661067606929187, "vx_mps": 7.25419305464026, "ax_mps2": -4.4223414399420635}, {"id": 368, "s_m": 36.75395519291841, "d_m": 0.0, "x_m": 9.259912867759109, "y_m": -0.02796483253831888, "d_right": 2.012330470662073, "d_left": 0.759952109505768, "psi_rad": -0.39340845629682275, "kappa_radpm": -0.15032244504054898, "vx_mps": 7.1930490925807495, "ax_mps2": -4.359061298251628}, {"id": 369, "s_m": 36.85383007116003, "d_m": 0.0, "x_m": 9.351860634160936, "y_m": -0.06694567193415694, "d_right": 1.9986913928169348, "d_left": 0.7966109823933317, "psi_rad": -0.4086082062933334, "kappa_radpm": -0.1540732987213344, "vx_mps": 7.132267088062214, "ax_mps2": -4.297823564185752}, {"id": 370, "s_m": 36.95370494940166, "d_m": 0.0, "x_m": 9.443206517655744, "y_m": -0.1073406988488535, "d_right": 1.9769615465759336, "d_left": 0.8286587684037048, "psi_rad": -0.42418656664050536, "kappa_radpm": -0.15787626595015755, "vx_mps": 7.071827529366178, "ax_mps2": -4.239022737281165}, {"id": 371, "s_m": 37.05357982764328, "d_m": 0.0, "x_m": 9.533894638358246, "y_m": -0.14916663839892333, "d_right": 1.951952061116008, "d_left": 0.8456607628747705, "psi_rad": -0.4401454365089994, "kappa_radpm": -0.16172477699010507, "vx_mps": 7.0117045606330635, "ax_mps2": -4.181853681130488}, {"id": 372, "s_m": 37.15345470588491, "d_m": 0.0, "x_m": 9.623905224996463, "y_m": -0.1924566883543409, "d_right": 1.9274000300246426, "d_left": 0.8753369369738063, "psi_rad": -0.4564934944599366, "kappa_radpm": -0.16563617027249072, "vx_mps": 6.951882952923479, "ax_mps2": -4.126983423562747}, {"id": 373, "s_m": 37.25332958412654, "d_m": 0.0, "x_m": 9.713176903416834, "y_m": -0.2372245719514343, "d_right": 1.9061442343854509, "d_left": 0.9164778431572869, "psi_rad": -0.47323288219465764, "kappa_radpm": -0.16959850292759496, "vx_mps": 6.892337241987001, "ax_mps2": -4.073594935558835}, {"id": 374, "s_m": 37.35320446236816, "d_m": 0.0, "x_m": 9.801688201052222, "y_m": -0.2835037774393832, "d_right": 1.886537382626413, "d_left": 0.9627138966257545, "psi_rad": -0.49037341077854935, "kappa_radpm": -0.173630257543921, "vx_mps": 6.833052982444357, "ax_mps2": -4.0223426207853805}, {"id": 375, "s_m": 37.45307934060979, "d_m": 0.0, "x_m": 9.88937248387678, "y_m": -0.3313047932832974, "d_right": 1.8623771796475623, "d_left": 0.9876024395001198, "psi_rad": -0.5079173655248401, "kappa_radpm": -0.1777196718459952, "vx_mps": 6.774005543391415, "ax_mps2": -3.9722681729527842}, {"id": 376, "s_m": 37.55295421885142, "d_m": 0.0, "x_m": 9.976205846655901, "y_m": -0.3806610932642568, "d_right": 1.8395401115336598, "d_left": 1.0230784855543429, "psi_rad": -0.5258759362560097, "kappa_radpm": -0.1818892228220242, "vx_mps": 6.715183653606513, "ax_mps2": -3.924170292744727}, {"id": 377, "s_m": 37.65282909709304, "d_m": 0.0, "x_m": 10.062116588302205, "y_m": -0.4315797019689549, "d_right": 1.8122754886100656, "d_left": 1.067667070004072, "psi_rad": -0.544251825005134, "kappa_radpm": -0.18612399062058846, "vx_mps": 6.656563636088036, "ax_mps2": -3.8769364480508637}, {"id": 378, "s_m": 37.75270397533467, "d_m": 0.0, "x_m": 10.147077722338746, "y_m": -0.4840937811775421, "d_right": 1.78561173446547, "d_left": 1.1138847024807037, "psi_rad": -0.5630576832411691, "kappa_radpm": -0.19045098851504788, "vx_mps": 6.598137792581355, "ax_mps2": -3.8315097448778634}, {"id": 379, "s_m": 37.8525788535763, "d_m": 0.0, "x_m": 10.231012598735953, "y_m": -0.5382066255904033, "d_right": 1.7550229210984254, "d_left": 1.1645259380413873, "psi_rad": -0.5822967845159832, "kappa_radpm": -0.19485192429442227, "vx_mps": 6.539883729194868, "ax_mps2": -3.786566177251558}, {"id": 380, "s_m": 37.95245373181792, "d_m": 0.0, "x_m": 10.313890480781184, "y_m": -0.5939507125134605, "d_right": 1.7244973517591966, "d_left": 1.1991655235869465, "psi_rad": -0.6019834110523288, "kappa_radpm": -0.1993599497726708, "vx_mps": 6.481798633062747, "ax_mps2": -3.7432736923429224}, {"id": 381, "s_m": 38.05232861005955, "d_m": 0.0, "x_m": 10.395629907872275, "y_m": -0.6513253623019452, "d_right": 1.6903448079171353, "d_left": 1.2417663093057285, "psi_rad": -0.6221216205836582, "kappa_radpm": -0.20395130772569414, "vx_mps": 6.423861417487025, "ax_mps2": -3.7001345388439324}, {"id": 382, "s_m": 38.152203488301176, "d_m": 0.0, "x_m": 10.476195739854505, "y_m": -0.7103619366091692, "d_right": 1.6559587272270642, "d_left": 1.2924394776055126, "psi_rad": -0.642727311207862, "kappa_radpm": -0.2086647831807217, "vx_mps": 6.366073714463966, "ax_mps2": -3.6583731745291654}, {"id": 383, "s_m": 38.2520783665428, "d_m": 0.0, "x_m": 10.555501568139642, "y_m": -0.7710553128236951, "d_right": 1.6179781298990834, "d_left": 1.3328384988179713, "psi_rad": -0.6638055355827586, "kappa_radpm": -0.2134747997680394, "vx_mps": 6.308417819647968, "ax_mps2": -3.616424318958582}, {"id": 384, "s_m": 38.351953244784426, "d_m": 0.0, "x_m": 10.633507361311363, "y_m": -0.8334353507368716, "d_right": 1.5833571257535153, "d_left": 1.3799007208325478, "psi_rad": -0.6853741441143693, "kappa_radpm": -0.21842354740669884, "vx_mps": 6.250900375961843, "ax_mps2": -3.5757237700027193}, {"id": 385, "s_m": 38.451828123026054, "d_m": 0.0, "x_m": 10.710121758223723, "y_m": -0.8974920893853913, "d_right": 1.5523005329642185, "d_left": 1.4341887207000181, "psi_rad": -0.7074391195462648, "kappa_radpm": -0.22347961847742304, "vx_mps": 6.193505110831061, "ax_mps2": -3.53332710543627}, {"id": 386, "s_m": 38.551703001267676, "d_m": 0.0, "x_m": 10.785299027851023, "y_m": -0.9632531821533431, "d_right": 1.524982259499412, "d_left": 1.494946471464563, "psi_rad": -0.7300215631524738, "kappa_radpm": -0.22872202027374858, "vx_mps": 6.13626305898011, "ax_mps2": -3.491873745493802}, {"id": 387, "s_m": 38.651577879509304, "d_m": 0.0, "x_m": 10.858942880000859, "y_m": -1.030703694230811, "d_right": 1.4849618536671056, "d_left": 1.5526247389111265, "psi_rad": -0.7531303561107126, "kappa_radpm": -0.23408757826693366, "vx_mps": 6.079163050837777, "ax_mps2": -3.4515543330729987}, {"id": 388, "s_m": 38.75145275775093, "d_m": 0.0, "x_m": 10.931001265668211, "y_m": -1.0998685174262535, "d_right": 1.4477413938202102, "d_left": 1.6054161921243242, "psi_rad": -0.7767845088561902, "kappa_radpm": -0.23957593858749845, "vx_mps": 6.022190320900794, "ax_mps2": -3.411600233914238}, {"id": 389, "s_m": 38.851327635992554, "d_m": 0.0, "x_m": 11.001372447387464, "y_m": -1.1707258698602254, "d_right": 1.4143173548998338, "d_left": 1.664436942457045, "psi_rad": -0.8009904998747994, "kappa_radpm": -0.24521260711304785, "vx_mps": 5.965342399662291, "ax_mps2": -3.3732330629478327}, {"id": 390, "s_m": 38.95120251423418, "d_m": 0.0, "x_m": 11.06999884033305, "y_m": -1.2432974833688255, "d_right": 1.384918637889665, "d_left": 1.7268497722412623, "psi_rad": -0.8257692397135679, "kappa_radpm": -0.2509696551841287, "vx_mps": 5.908596065253028, "ax_mps2": -3.335137140546315}, {"id": 391, "s_m": 39.05107739247581, "d_m": 0.0, "x_m": 11.13677307220183, "y_m": -1.3175534183977002, "d_right": 1.3534162411280326, "d_left": 1.7813032642739377, "psi_rad": -0.8511270072435186, "kappa_radpm": -0.2568891428482535, "vx_mps": 5.851949643551384, "ax_mps2": -3.297717977094127}, {"id": 392, "s_m": 39.15095227071743, "d_m": 0.0, "x_m": 11.20163175806481, "y_m": -1.393511461700681, "d_right": 1.318158187018923, "d_left": 1.827430577172611, "psi_rad": -0.8770878297529263, "kappa_radpm": -0.26296568190420266, "vx_mps": 5.795394401400668, "ax_mps2": -3.259841924746206}, {"id": 393, "s_m": 39.25082714895906, "d_m": 0.0, "x_m": 11.26446164842911, "y_m": -1.4711323193073256, "d_right": 1.2704143323655976, "d_left": 1.8688526489773307, "psi_rad": -0.9036608448419288, "kappa_radpm": -0.2692382435532292, "vx_mps": 5.7389409856823095, "ax_mps2": -3.2233261453784596}, {"id": 394, "s_m": 39.35070202720069, "d_m": 0.0, "x_m": 11.325193178848314, "y_m": -1.550429364929903, "d_right": 1.2248945659479136, "d_left": 1.9055669474522239, "psi_rad": -0.9308723657244373, "kappa_radpm": -0.2756602910118133, "vx_mps": 5.682568523523388, "ax_mps2": -3.1860855220728546}, {"id": 395, "s_m": 39.45057690544231, "d_m": 0.0, "x_m": 11.383707147070583, "y_m": -1.6313523724888594, "d_right": 1.1835065933065247, "d_left": 1.9378064590007753, "psi_rad": -0.9587311284317508, "kappa_radpm": -0.28230110297754896, "vx_mps": 5.626292315314761, "ax_mps2": -3.140994453317987}, {"id": 396, "s_m": 39.55045178368394, "d_m": 0.0, "x_m": 11.439927149759747, "y_m": -1.713909311572847, "d_right": 1.1466509012086628, "d_left": 1.970471976922397, "psi_rad": -0.9872802332664725, "kappa_radpm": -0.2893845984326473, "vx_mps": 5.570256039016915, "ax_mps2": -3.0946449188312557}, {"id": 397, "s_m": 39.65032666192557, "d_m": 0.0, "x_m": 11.493726860075116, "y_m": -1.798039515447203, "d_right": 1.107738313027574, "d_left": 1.9782584107045653, "psi_rad": -1.0165439378307344, "kappa_radpm": -0.2967126882554522, "vx_mps": 5.514489801537919, "ax_mps2": -3.0635903288653337}, {"id": 398, "s_m": 39.75020154016719, "d_m": 0.0, "x_m": 11.5450213689626, "y_m": -1.8837442774967483, "d_right": 1.065079727556231, "d_left": 1.993113505528418, "psi_rad": -1.0465309576800235, "kappa_radpm": -0.30376903885227907, "vx_mps": 5.458722043584052, "ax_mps2": -3.029880038585558}, {"id": 399, "s_m": 39.85007641840882, "d_m": 0.0, "x_m": 11.593681631074295, "y_m": -1.9709466539268186, "d_right": 1.0215187009107, "d_left": 1.996252456467596, "psi_rad": -1.0772319107397412, "kappa_radpm": -0.3111413973535446, "vx_mps": 5.4030018091084795, "ax_mps2": -2.9716437183163182}, {"id": 400, "s_m": 39.94995129665044, "d_m": 0.0, "x_m": 11.639618185310447, "y_m": -2.059639696527776, "d_right": 0.9724569491507753, "d_left": 1.9884137692735269, "psi_rad": -1.1087279804797658, "kappa_radpm": -0.3195553921447582, "vx_mps": 5.347788649539252, "ax_mps2": -2.90991724853958}, {"id": 401, "s_m": 40.04982617489207, "d_m": 0.0, "x_m": 11.682690305695171, "y_m": -2.149731417929385, "d_right": 0.9286178932470195, "d_left": 1.9807555506057448, "psi_rad": -1.1410744466673144, "kappa_radpm": -0.3283078474110599, "vx_mps": 5.293164287867763, "ax_mps2": -2.852411499825204}, {"id": 402, "s_m": 40.1497010531337, "d_m": 0.0, "x_m": 11.722795470973088, "y_m": -2.241208645231875, "d_right": 0.8907158757644245, "d_left": 1.9732549100312975, "psi_rad": -1.17430562500338, "kappa_radpm": -0.33713778699638114, "vx_mps": 5.239066679846566, "ax_mps2": -2.7898402525599657}, {"id": 403, "s_m": 40.24957593137532, "d_m": 0.0, "x_m": 11.759789033355162, "y_m": -2.3339617852696923, "d_right": 0.8510556708210875, "d_left": 1.958872783987295, "psi_rad": -1.2084302422852353, "kappa_radpm": -0.3463712791221756, "vx_mps": 5.185609873949497, "ax_mps2": -2.691446303612326}, {"id": 404, "s_m": 40.34945080961695, "d_m": 0.0, "x_m": 11.793559175195915, "y_m": -2.4279637945467685, "d_right": 0.8082716725620994, "d_left": 1.9446591778477027, "psi_rad": -1.2435594966278565, "kappa_radpm": -0.35709229671160475, "vx_mps": 5.1335108864273575, "ax_mps2": -2.5835313083026157}, {"id": 405, "s_m": 40.449325687858575, "d_m": 0.0, "x_m": 11.823947045267285, "y_m": -2.5230835570497057, "d_right": 0.7624009392448221, "d_left": 1.9333332707539077, "psi_rad": -1.2797769836170891, "kappa_radpm": -0.36832434253822116, "vx_mps": 5.082998551186876, "ax_mps2": -2.478922134460513}, {"id": 406, "s_m": 40.5492005661002, "d_m": 0.0, "x_m": 11.850824458486446, "y_m": -2.6192855481863546, "d_right": 0.7188458624632768, "d_left": 1.920668917889122, "psi_rad": -1.3171259649924258, "kappa_radpm": -0.37957362047188015, "vx_mps": 5.034055043269637, "ax_mps2": -2.3622540022164134}, {"id": 407, "s_m": 40.649075444341825, "d_m": 0.0, "x_m": 11.874028176970185, "y_m": -2.716404674248853, "d_right": 0.6835165149158271, "d_left": 1.9133823748722176, "psi_rad": -1.3556162192281858, "kappa_radpm": -0.3913931318759381, "vx_mps": 4.986968068573744, "ax_mps2": -2.23730500974376}, {"id": 408, "s_m": 40.748950322583454, "d_m": 0.0, "x_m": 11.89342568124949, "y_m": -2.8143927004621516, "d_right": 0.64484206952195, "d_left": 1.900519863406642, "psi_rad": -1.3953172480846519, "kappa_radpm": -0.4036003135694631, "vx_mps": 4.941958051835229, "ax_mps2": -2.0926656955511973}, {"id": 409, "s_m": 40.848825200825075, "d_m": 0.0, "x_m": 11.90885158181182, "y_m": -2.9130420334022027, "d_right": 0.6015395150323168, "d_left": 1.8850683987657848, "psi_rad": -1.43626198908694, "kappa_radpm": -0.4165864785359917, "vx_mps": 4.899483638406385, "ax_mps2": -1.9309292951405437}, {"id": 410, "s_m": 40.948700079066704, "d_m": 0.0, "x_m": 11.920165720929525, "y_m": -3.0122945876091993, "d_right": 0.5685000372523787, "d_left": 1.8737413205508737, "psi_rad": -1.4785499945582448, "kappa_radpm": -0.43017387114376915, "vx_mps": 4.859962681597581, "ax_mps2": -1.7406842331882952}, {"id": 411, "s_m": 41.04857495730833, "d_m": 0.0, "x_m": 11.927201851252812, "y_m": -3.111887550325105, "d_right": 0.5369632467537861, "d_left": 1.8666987342312533, "psi_rad": -1.5222213766388624, "kappa_radpm": -0.4447183730732912, "vx_mps": 4.82405804430539, "ax_mps2": -1.512134668366086}, {"id": 412, "s_m": 41.148449835549954, "d_m": 0.0, "x_m": 11.929809260133412, "y_m": -3.2117568404331447, "d_right": 0.5092427358370446, "d_left": 1.860230316284351, "psi_rad": -1.5674290038501963, "kappa_radpm": -0.4604657173529831, "vx_mps": 4.792649317762729, "ax_mps2": -1.2414060654547927}, {"id": 413, "s_m": 41.24832471379158, "d_m": 0.0, "x_m": 11.927822889009256, "y_m": -3.3115709620445264, "d_right": 0.4638435771084701, "d_left": 1.8463155024370792, "psi_rad": -1.6142425234309403, "kappa_radpm": -0.4773638818954424, "vx_mps": 4.76670923423908, "ax_mps2": -0.938408987866229}, {"id": 414, "s_m": 41.34819959203321, "d_m": 0.0, "x_m": 11.921075059171486, "y_m": -3.4112699637847177, "d_right": 0.4322347282407646, "d_left": 1.8380121379300598, "psi_rad": -1.6627976791839139, "kappa_radpm": -0.4947487951143041, "vx_mps": 4.747006420574143, "ax_mps2": -0.5732728622582396}, {"id": 415, "s_m": 41.44807447027483, "d_m": 0.0, "x_m": 11.90942286122367, "y_m": -3.5103966534258513, "d_right": 0.41752597327040425, "d_left": 1.8326322550034173, "psi_rad": -1.7131408941534039, "kappa_radpm": -0.5135425494309732, "vx_mps": 4.73492965547933, "ax_mps2": -0.32141842903687046}, {"id": 416, "s_m": 41.54794934851646, "d_m": 0.0, "x_m": 11.892692226877775, "y_m": -3.6089175969842415, "d_right": 0.40073052192255887, "d_left": 1.829103110263483, "psi_rad": -1.7650904988775222, "kappa_radpm": -0.5262722658172517, "vx_mps": 4.728145047416403, "ax_mps2": -0.08635538466855631}, {"id": 417, "s_m": 41.64782422675809, "d_m": 0.0, "x_m": 11.870838162549182, "y_m": -3.7062883851540906, "d_right": 0.39979591082427807, "d_left": 1.8362544205736113, "psi_rad": -1.8182832913082114, "kappa_radpm": -0.5371986297438963, "vx_mps": 4.726320569147812, "ax_mps2": -0.0863553846685269}, {"id": 418, "s_m": 41.74769910499971, "d_m": 0.0, "x_m": 11.843792402233552, "y_m": -3.802457455293429, "d_right": 0.40330565831774895, "d_left": 1.844973715712935, "psi_rad": -1.8714385489686167, "kappa_radpm": -0.5269235875427776, "vx_mps": 4.724495386312822, "ax_mps2": 0.15232543305392693}, {"id": 419, "s_m": 41.84757398324134, "d_m": 0.0, "x_m": 11.811750741628396, "y_m": -3.896994916644544, "d_right": 0.3952311772463485, "d_left": 1.8481361074498395, "psi_rad": -1.9235462646822619, "kappa_radpm": -0.5162657658189265, "vx_mps": 4.727714418558916, "ax_mps2": 0.37439111641831724}, {"id": 420, "s_m": 41.94744886148297, "d_m": 0.0, "x_m": 11.774866898015523, "y_m": -3.9898063624451776, "d_right": 0.4069846910339689, "d_left": 1.8604753532604585, "psi_rad": -1.9743198914948064, "kappa_radpm": -0.5004645895198025, "vx_mps": 4.7356169775208725, "ax_mps2": 0.6898515736760408}, {"id": 421, "s_m": 42.04732373972459, "d_m": 0.0, "x_m": 11.733401543388656, "y_m": -4.08063753840557, "d_right": 0.4181679194374538, "d_left": 1.865332430339919, "psi_rad": -2.023521866390843, "kappa_radpm": -0.48441017825215804, "vx_mps": 4.750143770627926, "ax_mps2": 0.9826055915859357}, {"id": 422, "s_m": 42.14719861796622, "d_m": 0.0, "x_m": 11.687592732262331, "y_m": -4.1693651132506, "d_right": 0.4232270526424081, "d_left": 1.874536477180044, "psi_rad": -2.070933713131364, "kappa_radpm": -0.4651976397685375, "vx_mps": 4.770758961556711, "ax_mps2": 1.3240491925406888}, {"id": 423, "s_m": 42.24707349620785, "d_m": 0.0, "x_m": 11.63770465273562, "y_m": -4.255881982673297, "d_right": 0.4465860366334231, "d_left": 1.8935367238633716, "psi_rad": -2.116464846264808, "kappa_radpm": -0.4466644549328154, "vx_mps": 4.798397604727596, "ax_mps2": 1.6267115174408742}, {"id": 424, "s_m": 42.34694837444947, "d_m": 0.0, "x_m": 11.58401826739591, "y_m": -4.3400714192438805, "d_right": 0.46788815724400695, "d_left": 1.9103337771683422, "psi_rad": -2.160168805849308, "kappa_radpm": -0.4287612695337035, "vx_mps": 4.832137705253528, "ax_mps2": 1.8983497636070816}, {"id": 425, "s_m": 42.4468232526911, "d_m": 0.0, "x_m": 11.52676076320666, "y_m": -4.421907678571651, "d_right": 0.48510521198327916, "d_left": 1.9336593866180407, "psi_rad": -2.202135699707622, "kappa_radpm": -0.41185936948196444, "vx_mps": 4.871216450285636, "ax_mps2": 2.135360727355298}, {"id": 426, "s_m": 42.546698130932725, "d_m": 0.0, "x_m": 11.466204950437593, "y_m": -4.501294480292228, "d_right": 0.49832134722787497, "d_left": 1.9525721705649735, "psi_rad": -2.2424744619875217, "kappa_radpm": -0.3961629113758331, "vx_mps": 4.914802894402432, "ax_mps2": 2.337190678399317}, {"id": 427, "s_m": 42.64657300917435, "d_m": 0.0, "x_m": 11.40253354190463, "y_m": -4.578250910090238, "d_right": 0.5235231245668581, "d_left": 1.9656138250830952, "psi_rad": -2.2812829347717143, "kappa_radpm": -0.38107499023308766, "vx_mps": 4.962070209065133, "ax_mps2": 2.521932869660777}, {"id": 428, "s_m": 42.746447887415975, "d_m": 0.0, "x_m": 11.336004611941071, "y_m": -4.65270068460635, "d_right": 0.557508170045369, "d_left": 1.9873023430590433, "psi_rad": -2.3186169591223114, "kappa_radpm": -0.3667933831027948, "vx_mps": 5.01257381354864, "ax_mps2": 2.686855000710884}, {"id": 429, "s_m": 42.846322765657604, "d_m": 0.0, "x_m": 11.266763281465268, "y_m": -4.724694966814756, "d_right": 0.5815746589950019, "d_left": 1.9962123624379327, "psi_rad": -2.3545647898410156, "kappa_radpm": -0.3531101852136217, "vx_mps": 5.065826178262671, "ax_mps2": 2.8390690704630197}, {"id": 430, "s_m": 42.946197643899225, "d_m": 0.0, "x_m": 11.195057126872767, "y_m": -4.7941728207720615, "d_right": 0.6050180047377277, "d_left": 1.9977859895527401, "psi_rad": -2.389171341500413, "kappa_radpm": -0.3401250863233465, "vx_mps": 5.1214937492723225, "ax_mps2": 2.9772219980920602}, {"id": 431, "s_m": 43.046072522140854, "d_m": 0.0, "x_m": 11.120999790492995, "y_m": -4.861204573339357, "d_right": 0.6342309137181745, "d_left": 1.9590744762442986, "psi_rad": -2.422520079733996, "kappa_radpm": -0.32779665671421593, "vx_mps": 5.179227509286588, "ax_mps2": 3.103353513004553}, {"id": 432, "s_m": 43.14594740038248, "d_m": 0.0, "x_m": 11.044821981332378, "y_m": -4.925746919848827, "d_right": 0.664779796184474, "d_left": 1.9108726648487384, "psi_rad": -2.4546716917284357, "kappa_radpm": -0.31625433864815344, "vx_mps": 5.238729970274768, "ax_mps2": 3.214528633621936}, {"id": 433, "s_m": 43.245822278624104, "d_m": 0.0, "x_m": 10.966606515599494, "y_m": -4.987880802421851, "d_right": 0.6923646209603734, "d_left": 1.861266325368304, "psi_rad": -2.485702638977652, "kappa_radpm": -0.305210201202071, "vx_mps": 5.29965970730475, "ax_mps2": 3.3191690363742135}, {"id": 434, "s_m": 43.34569715686573, "d_m": 0.0, "x_m": 10.886570628106345, "y_m": -5.047573805195714, "d_right": 0.7191449989593556, "d_left": 1.8185884031717776, "psi_rad": -2.5156595929196115, "kappa_radpm": -0.2948897313971427, "vx_mps": 5.3618463443082724, "ax_mps2": 3.4109579102621916}, {"id": 435, "s_m": 43.445572035107354, "d_m": 0.0, "x_m": 10.804770034145179, "y_m": -5.104912876630597, "d_right": 0.7389204691055987, "d_left": 1.77788888922524, "psi_rad": -2.544618523004667, "kappa_radpm": -0.28498203182595383, "vx_mps": 5.425010067448857, "ax_mps2": 3.4989952609820487}, {"id": 436, "s_m": 43.54544691334898, "d_m": 0.0, "x_m": 10.72141205275413, "y_m": -5.159873191598029, "d_right": 0.7685692518660174, "d_left": 1.735264826023809, "psi_rad": -2.5725985650961567, "kappa_radpm": -0.2755115509592745, "vx_mps": 5.489048886941952, "ax_mps2": 3.5824550610991643}, {"id": 437, "s_m": 43.64532179159061, "d_m": 0.0, "x_m": 10.636530098360517, "y_m": -5.212545888630681, "d_right": 0.7848649662006864, "d_left": 1.700017171584542, "psi_rad": -2.5996632529963275, "kappa_radpm": -0.2664446488929897, "vx_mps": 5.553850214878454, "ax_mps2": 3.6622050155231447}, {"id": 438, "s_m": 43.74519666983223, "d_m": 0.0, "x_m": 10.550320587924206, "y_m": -5.262915366598605, "d_right": 0.8102298679445754, "d_left": 1.672589105488, "psi_rad": -2.62583527133118, "kappa_radpm": -0.25782986125907137, "vx_mps": 5.619321735703332, "ax_mps2": 3.7364934853158025}, {"id": 439, "s_m": 43.84507154807386, "d_m": 0.0, "x_m": 10.462795267503875, "y_m": -5.311074304738512, "d_right": 0.8443522349618193, "d_left": 1.6406926666686767, "psi_rad": -2.651173729309882, "kappa_radpm": -0.24949610961745902, "vx_mps": 5.685344354842635, "ax_mps2": 3.810546352901279}, {"id": 440, "s_m": 43.94494642631549, "d_m": 0.0, "x_m": 10.37414497658779, "y_m": -5.357012466422244, "d_right": 0.8797897745658593, "d_left": 1.6129178251825458, "psi_rad": -2.675682744699799, "kappa_radpm": -0.241471976120377, "vx_mps": 5.751895004187856, "ax_mps2": 3.88317127356434}, {"id": 441, "s_m": 44.04482130455711, "d_m": 0.0, "x_m": 10.28436097610818, "y_m": -5.400824435416454, "d_right": 0.8989902459090352, "d_left": 1.5927279244326682, "psi_rad": -2.699417556104974, "kappa_radpm": -0.23372689859399157, "vx_mps": 5.8189310578042095, "ax_mps2": 3.9551199361398854}, {"id": 442, "s_m": 44.14469618279874, "d_m": 0.0, "x_m": 10.193631194177083, "y_m": -5.442504433700476, "d_right": 0.9263837527601301, "d_left": 1.569892793811334, "psi_rad": -2.7223795102768777, "kappa_radpm": -0.22625140549454947, "vx_mps": 5.8864244579867355, "ax_mps2": 4.026439324957469}, {"id": 443, "s_m": 44.24457106104037, "d_m": 0.0, "x_m": 10.101927469632793, "y_m": -5.482147415302304, "d_right": 0.9500587622700795, "d_left": 1.5481781005625117, "psi_rad": -2.74462006418164, "kappa_radpm": -0.21900906631355682, "vx_mps": 5.954349097444598, "ax_mps2": 4.098132441034592}, {"id": 444, "s_m": 44.34444593928199, "d_m": 0.0, "x_m": 10.009434445235822, "y_m": -5.519752228798596, "d_right": 0.96740267219443, "d_left": 1.5240853468845406, "psi_rad": -2.7661351944510155, "kappa_radpm": -0.21198872538932964, "vx_mps": 6.022696583040859, "ax_mps2": 4.1703347779544595}, {"id": 445, "s_m": 44.44432081752362, "d_m": 0.0, "x_m": 9.916107485245501, "y_m": -5.5554125685652105, "d_right": 0.9891608403283974, "d_left": 1.5027291135734895, "psi_rad": -2.7869732066871817, "kappa_radpm": -0.20517433861380843, "vx_mps": 6.091461030633135, "ax_mps2": 4.2433768264926375}, {"id": 446, "s_m": 44.54419569576525, "d_m": 0.0, "x_m": 9.82212773971137, "y_m": -5.589131960189671, "d_right": 1.0079994043279208, "d_left": 1.4834181701012494, "psi_rad": -2.8071260642817037, "kappa_radpm": -0.19853242536508323, "vx_mps": 6.160642091168801, "ax_mps2": 4.318275485052095}, {"id": 447, "s_m": 44.64407057400687, "d_m": 0.0, "x_m": 9.727438365118173, "y_m": -5.6210011671751685, "d_right": 1.0172241789730927, "d_left": 1.4593639273155687, "psi_rad": -2.826637920568711, "kappa_radpm": -0.19207528407033814, "vx_mps": 6.230255649012118, "ax_mps2": 4.394332861678751}, {"id": 448, "s_m": 44.7439454522485, "d_m": 0.0, "x_m": 9.632213073645412, "y_m": -5.651029644473444, "d_right": 1.0341652366610987, "d_left": 1.4437535034642306, "psi_rad": -2.845499471505674, "kappa_radpm": -0.18575691251221155, "vx_mps": 6.300305736317414, "ax_mps2": 4.473142739014339}, {"id": 449, "s_m": 44.843820330490125, "d_m": 0.0, "x_m": 9.536390021333132, "y_m": -5.679303004478874, "d_right": 1.0585260579509226, "d_left": 1.436785766924517, "psi_rad": -2.8637501356097, "kappa_radpm": -0.1796071176933249, "vx_mps": 6.37082110437164, "ax_mps2": 4.553317022381868}, {"id": 450, "s_m": 44.94369520873175, "d_m": 0.0, "x_m": 9.440128983849695, "y_m": -5.705838001922817, "d_right": 1.0850472383825613, "d_left": 1.42573526046959, "psi_rad": -2.881381419555396, "kappa_radpm": -0.17356682749326327, "vx_mps": 6.4418076275467016, "ax_mps2": 4.637097207546838}, {"id": 451, "s_m": 45.043570086973375, "d_m": 0.0, "x_m": 9.343372038992559, "y_m": -5.730713172991408, "d_right": 1.096402773207244, "d_left": 1.4163939153404979, "psi_rad": -2.8984264912110067, "kappa_radpm": -0.16766693131787486, "vx_mps": 6.513305193856306, "ax_mps2": 4.723040750527751}, {"id": 452, "s_m": 45.143444965215004, "d_m": 0.0, "x_m": 9.24625623541502, "y_m": -5.753953979890861, "d_right": 1.098571751217536, "d_left": 1.4157378091476411, "psi_rad": -2.914876029228105, "kappa_radpm": -0.16181453646240979, "vx_mps": 6.585329968049737, "ax_mps2": 4.8150105356004085}, {"id": 453, "s_m": 45.243319843456625, "d_m": 0.0, "x_m": 9.148740587211018, "y_m": -5.775630343314872, "d_right": 1.108167768550739, "d_left": 1.4076652129073444, "psi_rad": -2.930754953626159, "kappa_radpm": -0.15610804576393403, "vx_mps": 6.657955239414304, "ax_mps2": 4.908619042781666}, {"id": 454, "s_m": 45.343194721698254, "d_m": 0.0, "x_m": 9.050926896733193, "y_m": -5.795777813043608, "d_right": 1.125048793942533, "d_left": 1.4042428492919474, "psi_rad": -2.946062510417801, "kappa_radpm": -0.15046852666093985, "vx_mps": 6.7311858857491895, "ax_mps2": 5.007285582158387}, {"id": 455, "s_m": 45.44306959993988, "d_m": 0.0, "x_m": 8.95280425386308, "y_m": -5.814456262543263, "d_right": 1.1437081421322013, "d_left": 1.406342085479364, "psi_rad": -2.960815682621261, "kappa_radpm": -0.1449437353206372, "vx_mps": 6.80507659796621, "ax_mps2": 5.108767661873373}, {"id": 456, "s_m": 45.542944478181504, "d_m": 0.0, "x_m": 8.854427509112407, "y_m": -5.831711242996177, "d_right": 1.1609495148328597, "d_left": 1.3928476258665197, "psi_rad": -2.97501621701904, "kappa_radpm": -0.13942747893487634, "vx_mps": 6.879646982264136, "ax_mps2": 5.217993095046653}, {"id": 457, "s_m": 45.64281935642313, "d_m": 0.0, "x_m": 8.755827325004917, "y_m": -5.847593392759048, "d_right": 1.1592105788251843, "d_left": 1.3878258545719453, "psi_rad": -2.988670023792082, "kappa_radpm": -0.13400509987642795, "vx_mps": 6.954986373145739, "ax_mps2": 5.322498894124948}, {"id": 458, "s_m": 45.74269423466476, "d_m": 0.0, "x_m": 8.657002664811309, "y_m": -5.862157705355647, "d_right": 1.154456968236671, "d_left": 1.3913155267095774, "psi_rad": -3.0017791419790685, "kappa_radpm": -0.12847161900074086, "vx_mps": 7.031003008719793, "ax_mps2": 5.279043108010655}, {"id": 459, "s_m": 45.84256911290638, "d_m": 0.0, "x_m": 8.558035719351395, "y_m": -5.875447864283178, "d_right": 1.1570498043269608, "d_left": 1.4004579277120317, "psi_rad": -3.0143349035114095, "kappa_radpm": -0.12301662273911347, "vx_mps": 7.105595744476071, "ax_mps2": 5.236357880465665}, {"id": 460, "s_m": 45.94244399114801, "d_m": 0.0, "x_m": 8.458860987850391, "y_m": -5.887527567322914, "d_right": 1.1669978583475609, "d_left": 1.3999074313669273, "psi_rad": -3.026347643692649, "kappa_radpm": -0.11746847313933441, "vx_mps": 7.1788196867868646, "ax_mps2": 5.194414093735967}, {"id": 461, "s_m": 46.04231886938964, "d_m": 0.0, "x_m": 8.359616839973425, "y_m": -5.898435669894962, "d_right": 1.1778879684396597, "d_left": 1.4013501652730467, "psi_rad": -3.037801620735584, "kappa_radpm": -0.11198247206093002, "vx_mps": 7.250726518473553, "ax_mps2": 5.153184424561626}, {"id": 462, "s_m": 46.14219374763126, "d_m": 0.0, "x_m": 8.260178260958474, "y_m": -5.9082409337557795, "d_right": 1.1740860418023389, "d_left": 1.410997718271242, "psi_rad": -3.0487145491053207, "kappa_radpm": -0.10645166731803578, "vx_mps": 7.321364789410171, "ax_mps2": 5.112643192376609}, {"id": 463, "s_m": 46.24206862587289, "d_m": 0.0, "x_m": 8.160729347861515, "y_m": -5.916980619852902, "d_right": 1.164880120546099, "d_left": 1.4043195466700027, "psi_rad": -3.0590674312818056, "kappa_radpm": -0.10095887164245727, "vx_mps": 7.390780176157186, "ax_mps2": 5.072766223655378}, {"id": 464, "s_m": 46.34194350411451, "d_m": 0.0, "x_m": 8.0611006956127, "y_m": -5.924724697204714, "d_right": 1.163189855363587, "d_left": 1.4028109463556913, "psi_rad": -3.068878160454103, "kappa_radpm": -0.09539016305992952, "vx_mps": 7.459015714566475, "ax_mps2": 5.033530730354137}, {"id": 465, "s_m": 46.44181838235614, "d_m": 0.0, "x_m": 7.961506638359291, "y_m": -5.931512135454531, "d_right": 1.1621247424794845, "d_left": 1.4093460040938552, "psi_rad": -3.0781230467050555, "kappa_radpm": -0.08983272914307595, "vx_mps": 7.5261120087193, "ax_mps2": 4.99491520069602}, {"id": 466, "s_m": 46.54169326059777, "d_m": 0.0, "x_m": 7.861746309237436, "y_m": -5.937412305121832, "d_right": 1.1673981298417313, "d_left": 1.4237731145195947, "psi_rad": -3.0868188664331395, "kappa_radpm": -0.08418747475790621, "vx_mps": 7.592107419075576, "ax_mps2": 4.956899300800459}, {"id": 467, "s_m": 46.64156813883939, "d_m": 0.0, "x_m": 7.7620543701467986, "y_m": -5.942467628085936, "d_right": 1.171190821193349, "d_left": 1.4289630735983936, "psi_rad": -3.0949402348694326, "kappa_radpm": -0.07853056111732354, "vx_mps": 7.657038232308185, "ax_mps2": 4.919463785868654}, {"id": 468, "s_m": 46.74144301708102, "d_m": 0.0, "x_m": 7.662208075373222, "y_m": -5.946746044661157, "d_right": 1.1506466463388507, "d_left": 1.4251930122356122, "psi_rad": -3.1025013687570846, "kappa_radpm": -0.0727716034526505, "vx_mps": 7.720938814955389, "ax_mps2": 4.882590419812602}, {"id": 469, "s_m": 46.841317895322646, "d_m": 0.0, "x_m": 7.562454676331459, "y_m": -5.950294332203073, "d_right": 1.1378217158218369, "d_left": 1.4291376961156137, "psi_rad": -3.1094763819513886, "kappa_radpm": -0.06697981401581822, "vx_mps": 7.783841752736869, "ax_mps2": 4.846261902367399}, {"id": 470, "s_m": 46.94119277356427, "d_m": 0.0, "x_m": 7.462556761500126, "y_m": -5.95317890905801, "d_right": 1.1330053098131219, "d_left": 1.4406860109286896, "psi_rad": -3.1158759087409917, "kappa_radpm": -0.061069753299256985, "vx_mps": 7.8457779771353255, "ax_mps2": 4.810461802850651}, {"id": 471, "s_m": 47.041067651805896, "d_m": 0.0, "x_m": 7.362768691189134, "y_m": -5.955451267239498, "d_right": 1.1352832819465506, "d_left": 1.459571138783026, "psi_rad": -3.1216744154418956, "kappa_radpm": -0.0551085115495975, "vx_mps": 7.9067768806380965, "ax_mps2": 4.775174499842319}, {"id": 472, "s_m": 47.140942530047525, "d_m": 0.0, "x_m": 7.262843365434013, "y_m": -5.957176685299105, "d_right": 1.1335011034458553, "d_left": 1.463790570642184, "psi_rad": -3.1268785485213435, "kappa_radpm": -0.04901504983415984, "vx_mps": 7.9668664218563165, "ax_mps2": 4.740385126151316}, {"id": 473, "s_m": 47.240817408289146, "d_m": 0.0, "x_m": 7.163039120764797, "y_m": -5.95841134379186, "d_right": 1.1108818656203974, "d_left": 1.4625585694354064, "psi_rad": -3.1314639539041895, "kappa_radpm": -0.042855599002709285, "vx_mps": 8.026073221587701, "ax_mps2": 4.706079518510833}, {"id": 474, "s_m": 47.340692286530775, "d_m": 0.0, "x_m": 7.063101936745659, "y_m": -5.95922001001513, "d_right": 1.096474710558659, "d_left": 1.4636086078585941, "psi_rad": -3.1354330491028986, "kappa_radpm": -0.03654981632302895, "vx_mps": 8.084422650758714, "ax_mps2": 4.672244171516979}, {"id": 475, "s_m": 47.4405671647724, "d_m": 0.0, "x_m": 6.963292980530196, "y_m": -5.959663311334508, "d_right": 1.0907056685464014, "d_left": 1.4718087809516096, "psi_rad": -3.1387631384437276, "kappa_radpm": -0.030166786674322574, "vx_mps": 8.141938911069733, "ax_mps2": 4.638866195379501}, {"id": 476, "s_m": 47.540442043014025, "d_m": 0.0, "x_m": 6.863352423751055, "y_m": -5.95980625962659, "d_right": 1.0891542755003252, "d_left": 1.4869991488208625, "psi_rad": -3.1414524012356733, "kappa_radpm": -0.023625013094086485, "vx_mps": 8.198645109069961, "ax_mps2": 4.605933277104583}, {"id": 477, "s_m": 47.64031692125565, "d_m": 0.0, "x_m": 6.76354457619177, "y_m": -5.959713554805897, "d_right": 1.0890646111115145, "d_left": 1.508866021891883, "psi_rad": 3.139704958675532, "kappa_radpm": -0.016998899736550287, "vx_mps": 8.25456332430472, "ax_mps2": 4.5734336447784685}, {"id": 478, "s_m": 47.74019179949728, "d_m": 0.0, "x_m": 6.663603868836399, "y_m": -5.959451243004632, "d_right": 1.080293559397656, "d_left": 1.5113434596730615, "psi_rad": 3.138344350860468, "kappa_radpm": -0.010203175835815457, "vx_mps": 8.309714672104777, "ax_mps2": 4.541356034648693}, {"id": 479, "s_m": 47.8400666777389, "d_m": 0.0, "x_m": 6.563798855964449, "y_m": -5.959087620033579, "d_right": 1.0568591452068679, "d_left": 1.5117073518090711, "psi_rad": 3.1376688118679104, "kappa_radpm": -0.003320359343892958, "vx_mps": 8.364119361523853, "ax_mps2": 4.509689660744509}, {"id": 480, "s_m": 47.93994155598053, "d_m": 0.0, "x_m": 6.4638579683809265, "y_m": -5.958690566669889, "d_right": 1.0424465586180305, "d_left": 1.5121044482744683, "psi_rad": 3.1376885374442076, "kappa_radpm": 0.0037408701437899603, "vx_mps": 8.417796748874789, "ax_mps2": -6.085455052879531}, {"id": 481, "s_m": 48.03981643422216, "d_m": 0.0, "x_m": 6.364055212398458, "y_m": -5.958331385078498, "d_right": 1.0375417814322534, "d_left": 1.5155792702060484, "psi_rad": 3.1384178470695283, "kappa_radpm": 0.010887412106102182, "vx_mps": 8.345282136660478, "ax_mps2": -11.032022706915157}, {"id": 482, "s_m": 48.13969131246378, "d_m": 0.0, "x_m": 6.2641131104509835, "y_m": -5.958080599895165, "d_right": 1.0372908689387632, "d_left": 1.525499780551677, "psi_rad": 3.13987112505183, "kappa_radpm": 0.018218976394471016, "vx_mps": 8.212191552274007, "ax_mps2": -10.578236059822945}, {"id": 483, "s_m": 48.23956619070541, "d_m": 0.0, "x_m": 6.164311818897658, "y_m": -5.958011793067236, "d_right": 1.0372216180562908, "d_left": 1.5416424210323245, "psi_rad": -3.1411267352201833, "kappa_radpm": 0.025629605589491653, "vx_mps": 8.082517554219633, "ax_mps2": -10.14122615095969}, {"id": 484, "s_m": 48.33944106894704, "d_m": 0.0, "x_m": 6.064368952955953, "y_m": -5.958198954552253, "d_right": 1.025537493899656, "d_left": 1.5626939917457117, "psi_rad": -3.138186487673373, "kappa_radpm": 0.033229707294277155, "vx_mps": 7.956216598369648, "ax_mps2": -9.727739888582848}, {"id": 485, "s_m": 48.43931594718866, "d_m": 0.0, "x_m": 5.964570550476759, "y_m": -5.958717072727887, "d_right": 1.0036993006663182, "d_left": 1.5621740162588276, "psi_rad": -3.1344880579525736, "kappa_radpm": 0.04089849614459813, "vx_mps": 7.833151912627249, "ax_mps2": -9.329090144657064}, {"id": 486, "s_m": 48.53919082543029, "d_m": 0.0, "x_m": 5.864631623862463, "y_m": -5.95964441835928, "d_right": 0.9918693538987072, "d_left": 1.561246424550878, "psi_rad": -3.130008519729831, "kappa_radpm": 0.048759008577581336, "vx_mps": 7.7132862906604425, "ax_mps2": -8.952614475987108}, {"id": 487, "s_m": 48.63906570367192, "d_m": 0.0, "x_m": 5.764842525469329, "y_m": -5.9610563892599515, "d_right": 0.9905187847948898, "d_left": 1.559832566642116, "psi_rad": -3.12474791748072, "kappa_radpm": 0.05667418848719088, "vx_mps": 7.596479634687598, "ax_mps2": -8.58926058405437}, {"id": 488, "s_m": 48.73894058191354, "d_m": 0.0, "x_m": 5.664919451385078, "y_m": -5.963036288696338, "d_right": 0.9924965434210858, "d_left": 1.5578523119417642, "psi_rad": -3.118679045026325, "kappa_radpm": 0.06478190135682779, "vx_mps": 7.482700056141997, "ax_mps2": -8.246520816175437}, {"id": 489, "s_m": 48.83881546015517, "d_m": 0.0, "x_m": 5.565141361821274, "y_m": -5.965659258478544, "d_right": 0.979217251704029, "d_left": 1.555227426163508, "psi_rad": -3.1118067531219147, "kappa_radpm": 0.07293527201823434, "vx_mps": 7.37180843520247, "ax_mps2": -7.916231332046871}, {"id": 490, "s_m": 48.938690338396796, "d_m": 0.0, "x_m": 5.465269564960661, "y_m": -5.96901307498564, "d_right": 0.9611651500706432, "d_left": 1.5561817135274632, "psi_rad": -3.1041026128150033, "kappa_radpm": 0.0812652090663448, "vx_mps": 7.2637658500588245, "ax_mps2": -7.604798540820624}, {"id": 491, "s_m": 49.03856521663842, "d_m": 0.0, "x_m": 5.36553042876099, "y_m": -5.9731731282511475, "d_right": 0.954113192108384, "d_left": 1.5601545335970715, "psi_rad": -3.095573208709907, "kappa_radpm": 0.08963717868415605, "vx_mps": 7.1584382142928185, "ax_mps2": -7.305312667071771}, {"id": 492, "s_m": 49.138440094880046, "d_m": 0.0, "x_m": 5.265744221618646, "y_m": -5.9782305625082515, "d_right": 0.9583723036771604, "d_left": 1.5659767972518812, "psi_rad": -3.0861913160567447, "kappa_radpm": 0.0981669542488802, "vx_mps": 7.055778003988371, "ax_mps2": -7.0226969575303455}, {"id": 493, "s_m": 49.238314973121675, "d_m": 0.0, "x_m": 5.1660889741012515, "y_m": -5.9842614664058935, "d_right": 0.964382507273126, "d_left": 1.5771362166041156, "psi_rad": -3.075963596304014, "kappa_radpm": 0.10674258783751546, "vx_mps": 6.9556610925521465, "ax_mps2": -6.751270791780191}, {"id": 494, "s_m": 49.338189851363296, "d_m": 0.0, "x_m": 5.066440177602227, "y_m": -5.991359067464164, "d_right": 0.9507473446109019, "d_left": 1.57985945503945, "psi_rad": -3.0648643471206265, "kappa_radpm": 0.11546338219209946, "vx_mps": 6.858035909634274, "ax_mps2": -6.496568368942973}, {"id": 495, "s_m": 49.438064729604925, "d_m": 0.0, "x_m": 4.966931958440219, "y_m": -5.999600994713236, "d_right": 0.9390252059226796, "d_left": 1.571609142504777, "psi_rad": -3.0528997373554585, "kappa_radpm": 0.12419895652726963, "vx_mps": 6.762763384013964, "ax_mps2": -6.254733291426515}, {"id": 496, "s_m": 49.53793960784655, "d_m": 0.0, "x_m": 4.867490257169182, "y_m": -6.0090807722773745, "d_right": 0.9390858980334733, "d_left": 1.5621198280561652, "psi_rad": -3.0400532199809867, "kappa_radpm": 0.13301477925802138, "vx_mps": 6.669751654771701, "ax_mps2": -6.024624647262328}, {"id": 497, "s_m": 49.637814486088175, "d_m": 0.0, "x_m": 4.76821958527324, "y_m": -6.019876826697543, "d_right": 0.9499026825285526, "d_left": 1.5513107672647921, "psi_rad": -3.0263281243824114, "kappa_radpm": 0.1419221127593373, "vx_mps": 6.578918591237944, "ax_mps2": -5.804122624141071}, {"id": 498, "s_m": 49.7376893643298, "d_m": 0.0, "x_m": 4.669085228862647, "y_m": -6.032082185706599, "d_right": 0.962133320469558, "d_left": 1.5390898508916706, "psi_rad": -3.011701041432179, "kappa_radpm": 0.1509566650669886, "vx_mps": 6.4902078356062765, "ax_mps2": -5.597526924036001}, {"id": 499, "s_m": 49.837564242571425, "d_m": 0.0, "x_m": 4.570167665548092, "y_m": -6.045777694237697, "d_right": 0.9758620725547533, "d_left": 1.5253746221971791, "psi_rad": -2.996175612888246, "kappa_radpm": 0.16000584002621482, "vx_mps": 6.4034906972198, "ax_mps2": -5.40086157270746}, {"id": 500, "s_m": 49.93743912081305, "d_m": 0.0, "x_m": 4.47146597844669, "y_m": -6.061054565231113, "d_right": 0.9660997653638967, "d_left": 1.5100741876385744, "psi_rad": -2.979738035659123, "kappa_radpm": 0.16915059792378456, "vx_mps": 6.318692295517517, "ax_mps2": -5.215165086352462}, {"id": 501, "s_m": 50.03731399905468, "d_m": 0.0, "x_m": 4.3730459436969005, "y_m": -6.0779949909099855, "d_right": 0.9651387865509584, "d_left": 1.4931053907052125, "psi_rad": -2.9623870960985386, "kappa_radpm": 0.1783543042835286, "vx_mps": 6.235715225169726, "ax_mps2": -5.0389177281850985}, {"id": 502, "s_m": 50.1371888772963, "d_m": 0.0, "x_m": 4.274937389078907, "y_m": -6.096686925672255, "d_right": 0.9762249739855082, "d_left": 1.474380341459694, "psi_rad": -2.9441102413422877, "kappa_radpm": 0.1876440624484641, "vx_mps": 6.154479813946055, "ax_mps2": -4.873266206954482}, {"id": 503, "s_m": 50.23706375553793, "d_m": 0.0, "x_m": 4.17720020182604, "y_m": -6.117213281843181, "d_right": 0.9968046380311435, "d_left": 1.4590465512893878, "psi_rad": -2.924904990693406, "kappa_radpm": 0.1969803320840393, "vx_mps": 6.074881730713136, "ax_mps2": -4.716612533801488}, {"id": 504, "s_m": 50.33693863377956, "d_m": 0.0, "x_m": 4.079883117328346, "y_m": -6.139658972612522, "d_right": 1.0171365150061762, "d_left": 1.4484815373763198, "psi_rad": -2.9047619489045857, "kappa_radpm": 0.20639567499343242, "vx_mps": 5.996836319018512, "ax_mps2": -4.569602429607786}, {"id": 505, "s_m": 50.43681351202118, "d_m": 0.0, "x_m": 3.983051505445976, "y_m": -6.164105264974587, "d_right": 1.0158488874363167, "d_left": 1.4427008791110187, "psi_rad": -2.8836769615100897, "kappa_radpm": 0.21586447965319994, "vx_mps": 5.920242297791544, "ax_mps2": -4.4312080770430695}, {"id": 506, "s_m": 50.53668839026281, "d_m": 0.0, "x_m": 3.886766977365478, "y_m": -6.190634038292662, "d_right": 1.0264743728768455, "d_left": 1.4306494150751858, "psi_rad": -2.8616414178989, "kappa_radpm": 0.22540785851192982, "vx_mps": 5.845009506428891, "ax_mps2": -4.300128447840814}, {"id": 507, "s_m": 50.63656326850444, "d_m": 0.0, "x_m": 3.791107638932032, "y_m": -6.219322452234673, "d_right": 1.0487369501950206, "d_left": 1.4018625535406037, "psi_rad": -2.8386496866344206, "kappa_radpm": 0.23505719843108422, "vx_mps": 5.771064591558578, "ax_mps2": -4.1757367336330535}, {"id": 508, "s_m": 50.73643814674606, "d_m": 0.0, "x_m": 3.6961426372819743, "y_m": -6.250250324263795, "d_right": 1.0797677189345738, "d_left": 1.3708316771878148, "psi_rad": -2.8146856296357416, "kappa_radpm": 0.24482678249789508, "vx_mps": 5.698340471072244, "ax_mps2": -4.063047591032216}, {"id": 509, "s_m": 50.83631302498769, "d_m": 0.0, "x_m": 3.6019684928487083, "y_m": -6.283488493493229, "d_right": 1.1072603901739126, "d_left": 1.3374912928971494, "psi_rad": -2.7897482178156014, "kappa_radpm": 0.25456324045137346, "vx_mps": 5.62667675963097, "ax_mps2": -3.9571959674588464}, {"id": 510, "s_m": 50.93618790322932, "d_m": 0.0, "x_m": 3.5086613128272655, "y_m": -6.319113356278158, "d_right": 1.1196812030053014, "d_left": 1.3017741612715872, "psi_rad": -2.763831839326355, "kappa_radpm": 0.264411784412405, "vx_mps": 5.55599157905363, "ax_mps2": -3.867173261276474}, {"id": 511, "s_m": 51.03606278147094, "d_m": 0.0, "x_m": 3.4163372303982453, "y_m": -6.357185229754236, "d_right": 1.1432839370148813, "d_left": 1.2636332453567622, "psi_rad": -2.7369405206819053, "kappa_radpm": 0.2740901557634164, "vx_mps": 5.48603458878053, "ax_mps2": -3.7844099257395847}, {"id": 512, "s_m": 51.13593765971257, "d_m": 0.0, "x_m": 3.3250784749575173, "y_m": -6.397775094568647, "d_right": 1.1774757474270534, "d_left": 1.2230177908653113, "psi_rad": -2.709076647701118, "kappa_radpm": 0.2838730147329572, "vx_mps": 5.4167001530634, "ax_mps2": -3.711366315617198}, {"id": 513, "s_m": 51.235812537954196, "d_m": 0.0, "x_m": 3.2350212554165396, "y_m": -6.440928739487366, "d_right": 1.220929851456626, "d_left": 1.1832474723152173, "psi_rad": -2.680238475265215, "kappa_radpm": 0.29368533315646284, "vx_mps": 5.347830965020525, "ax_mps2": -3.643435542619917}, {"id": 514, "s_m": 51.33568741619582, "d_m": 0.0, "x_m": 3.146251947720974, "y_m": -6.486713677986409, "d_right": 1.2667116970852697, "d_left": 1.1479921485869609, "psi_rad": -2.650405520307176, "kappa_radpm": 0.3036903224133634, "vx_mps": 5.279348507915691, "ax_mps2": -3.580409947913172}, {"id": 515, "s_m": 51.435562294437446, "d_m": 0.0, "x_m": 3.0589322881038217, "y_m": -6.535158463366204, "d_right": 1.3111696561394655, "d_left": 1.1176294849357127, "psi_rad": -2.6195706325407464, "kappa_radpm": 0.3139073078865025, "vx_mps": 5.211174018666595, "ax_mps2": -3.521855610124102}, {"id": 516, "s_m": 51.535437172679075, "d_m": 0.0, "x_m": 2.973151155994092, "y_m": -6.586330549484493, "d_right": 1.341259704398412, "d_left": 1.0868563316744861, "psi_rad": -2.5876939123171763, "kappa_radpm": 0.3243661207190732, "vx_mps": 5.143232918343702, "ax_mps2": -3.4681417799071874}, {"id": 517, "s_m": 51.635312050920696, "d_m": 0.0, "x_m": 2.8890978264613483, "y_m": -6.640238195589225, "d_right": 1.3808830926613622, "d_left": 1.042317925567198, "psi_rad": -2.554771835252927, "kappa_radpm": 0.3350704242516234, "vx_mps": 5.075439328407783, "ax_mps2": -3.4176474797884753}, {"id": 518, "s_m": 51.735186929162325, "d_m": 0.0, "x_m": 2.8068719208169854, "y_m": -6.696944400218319, "d_right": 1.4293213432981429, "d_left": 1.0025993551787364, "psi_rad": -2.520752461755965, "kappa_radpm": 0.34610023735343265, "vx_mps": 5.007735029383552, "ax_mps2": -3.3791123246482098}, {"id": 519, "s_m": 51.83506180740395, "d_m": 0.0, "x_m": 2.726677315685458, "y_m": -6.756441548256596, "d_right": 1.4857239929417057, "d_left": 0.9682601414616803, "psi_rad": -2.485642735769786, "kappa_radpm": 0.35714567111624324, "vx_mps": 4.939881907549717, "ax_mps2": -3.343595289513532}, {"id": 520, "s_m": 51.934936685645575, "d_m": 0.0, "x_m": 2.648634839586201, "y_m": -6.818777650315557, "d_right": 1.5484245568518675, "d_left": 0.9278426313069064, "psi_rad": -2.4494010230657706, "kappa_radpm": 0.36858327542844654, "vx_mps": 4.871811871950536, "ax_mps2": -3.3035976616156453}, {"id": 521, "s_m": 52.0348115638872, "d_m": 0.0, "x_m": 2.572957438473604, "y_m": -6.88392929560864, "d_right": 1.5997897521426665, "d_left": 0.8866972772244411, "psi_rad": -2.4119907772165305, "kappa_radpm": 0.3807469249000678, "vx_mps": 4.803608860768308, "ax_mps2": -3.270067117432594}, {"id": 522, "s_m": 52.13468644212883, "d_m": 0.0, "x_m": 2.499799408616969, "y_m": -6.9519229223272685, "d_right": 1.6528915468413192, "d_left": 0.8449719174919595, "psi_rad": -2.3733309288859425, "kappa_radpm": 0.3932219106309804, "vx_mps": 4.73513072436873, "ax_mps2": -3.2665401303535995}, {"id": 523, "s_m": 52.23456132037045, "d_m": 0.0, "x_m": 2.4293817582563677, "y_m": -7.02272085628209, "d_right": 1.7132814854331417, "d_left": 0.796207186418135, "psi_rad": -2.333475213515003, "kappa_radpm": 0.40505426365371794, "vx_mps": 4.665723135943652, "ax_mps2": -3.2508897055295103}, {"id": 524, "s_m": 52.33443619861208, "d_m": 0.0, "x_m": 2.361868574332328, "y_m": -7.096327215415736, "d_right": 1.780243429637995, "d_left": 0.7537414853778477, "psi_rad": -2.292400476358314, "kappa_radpm": 0.4181306389783566, "vx_mps": 4.595607463028845, "ax_mps2": -3.172087417376724}, {"id": 525, "s_m": 52.43431107685371, "d_m": 0.0, "x_m": 2.2974998950167893, "y_m": -7.172678221230814, "d_right": 1.8530269378265785, "d_left": 0.7184605658534078, "psi_rad": -2.2498202959458897, "kappa_radpm": 0.4347903356021765, "vx_mps": 4.526144525430205, "ax_mps2": -3.1182228306956454}, {"id": 526, "s_m": 52.53418595509533, "d_m": 0.0, "x_m": 2.2365119994280853, "y_m": -7.251744872811958, "d_right": 1.9309564176344467, "d_left": 0.679328476524093, "psi_rad": -2.205544653661752, "kappa_radpm": 0.45101497977350896, "vx_mps": 4.4568060327985854, "ax_mps2": -3.114827325037018}, {"id": 527, "s_m": 52.63406083333696, "d_m": 0.0, "x_m": 2.1791524643555746, "y_m": -7.333462379796682, "d_right": 2.0083583889534324, "d_left": 0.6463726741071958, "psi_rad": -2.159870264699384, "kappa_radpm": 0.46367494208112364, "vx_mps": 4.386448907068943, "ax_mps2": -3.150260975496186}, {"id": 528, "s_m": 52.73393571157858, "d_m": 0.0, "x_m": 2.125614873383091, "y_m": -7.417782514549295, "d_right": 2.080590382763375, "d_left": 0.5980173776309765, "psi_rad": -2.1128916413238823, "kappa_radpm": 0.47935991546545514, "vx_mps": 4.314124494218068, "ax_mps2": -2.996454110715762}, {"id": 529, "s_m": 52.83381058982021, "d_m": 0.0, "x_m": 2.0761843805347304, "y_m": -7.50456386868138, "d_right": 2.158076696366119, "d_left": 0.5588110001309723, "psi_rad": -2.063825997172213, "kappa_radpm": 0.5036982497023945, "vx_mps": 4.244187692914108, "ax_mps2": -2.895366854294043}, {"id": 530, "s_m": 52.93368546806184, "d_m": 0.0, "x_m": 2.031136561655107, "y_m": -7.593816556395597, "d_right": 2.24033055263329, "d_left": 0.5306212360042448, "psi_rad": -2.0122275349920464, "kappa_radpm": 0.526076779235644, "vx_mps": 4.17549761688456, "ax_mps2": -2.808099431405899}, {"id": 531, "s_m": 53.03356034630346, "d_m": 0.0, "x_m": 1.9908748130790084, "y_m": -7.685245762570594, "d_right": 2.3266241429048082, "d_left": 0.5076336901961964, "psi_rad": -1.9586065826724717, "kappa_radpm": 0.548607749718864, "vx_mps": 4.107780808539397, "ax_mps2": -2.2488558762462993}, {"id": 532, "s_m": 53.13343522454509, "d_m": 0.0, "x_m": 1.9557689382798076, "y_m": -7.778539929827258, "d_right": 2.416253064338603, "d_left": 0.4851077729989771, "psi_rad": -1.9019625839880128, "kappa_radpm": 0.597555275213615, "vx_mps": 4.052734232263256, "ax_mps2": -1.5721959176519513}, {"id": 533, "s_m": 53.23331010278672, "d_m": 0.0, "x_m": 1.9262511325148175, "y_m": -7.873837802044182, "d_right": 2.509019680990632, "d_left": 0.4603814591880832, "psi_rad": -1.8394787944277473, "kappa_radpm": 0.6511290169317746, "vx_mps": 4.013802312728355, "ax_mps2": -1.4407666273023052}, {"id": 534, "s_m": 53.33318498102834, "d_m": 0.0, "x_m": 1.9028596262956319, "y_m": -7.971132641731099, "d_right": 2.6046428438407663, "d_left": 0.4308549515124054, "psi_rad": -1.7748582244684306, "kappa_radpm": 0.6069627787931557, "vx_mps": 3.977790369377285, "ax_mps2": -2.271365426704519}, {"id": 535, "s_m": 53.43305985926997, "d_m": 0.0, "x_m": 1.8854414742397472, "y_m": -8.069622016425225, "d_right": 2.702067023205388, "d_left": 0.41644597515783155, "psi_rad": -1.717994260465252, "kappa_radpm": 0.5364366277643209, "vx_mps": 3.9203458433972327, "ax_mps2": -2.585460005858454}, {"id": 536, "s_m": 53.532934737511596, "d_m": 0.0, "x_m": 1.873445365678306, "y_m": -8.16897881073765, "d_right": 2.8007683404436143, "d_left": 0.42031957146335436, "psi_rad": -1.6619747681671768, "kappa_radpm": 0.637727771261064, "vx_mps": 3.853915739254626, "ax_mps2": -0.05737362244202497}, {"id": 537, "s_m": 53.63280961575322, "d_m": 0.0, "x_m": 1.8678276132978193, "y_m": -8.268378956058854, "d_right": 2.8657651313157158, "d_left": 0.42591241846383504, "psi_rad": -1.589685617492182, "kappa_radpm": 0.8085596192193303, "vx_mps": 3.8524286051999947, "ax_mps2": -0.057373622442020884}, {"id": 538, "s_m": 53.732684493994846, "d_m": 0.0, "x_m": 1.8699746406162352, "y_m": -8.367797749683405, "d_right": 2.7710362488750215, "d_left": 0.4237472265019083, "psi_rad": -1.5109883137723008, "kappa_radpm": 0.7033221115934529, "vx_mps": 3.8509408968525887, "ax_mps2": 1.5125825572650564}, {"id": 539, "s_m": 53.832559372236474, "d_m": 0.0, "x_m": 1.8791340131504952, "y_m": -8.467413958169235, "d_right": 2.678571359983256, "d_left": 0.4298577359994164, "psi_rad": -1.4504694495287702, "kappa_radpm": 0.5088867362089137, "vx_mps": 3.8899722092228806, "ax_mps2": 4.241087712587229}, {"id": 540, "s_m": 53.932434250478096, "d_m": 0.0, "x_m": 1.8935748248144963, "y_m": -8.566180247017789, "d_right": 2.5891517656856267, "d_left": 0.4400248242029179, "psi_rad": -1.3994053676199472, "kappa_radpm": 0.5615810524248279, "vx_mps": 3.997379144682139, "ax_mps2": 2.9647015872713323}, {"id": 541, "s_m": 54.032309128719724, "d_m": 0.0, "x_m": 1.9135651310587973, "y_m": -8.664127200539093, "d_right": 2.5009885001320464, "d_left": 0.4583422506999428, "psi_rad": -1.3376759904262876, "kappa_radpm": 0.6728022671985283, "vx_mps": 4.070778604449361, "ax_mps2": 0.7867715648357653}, {"id": 542, "s_m": 54.13218400696135, "d_m": 0.0, "x_m": 1.9398039770854827, "y_m": -8.760307649992242, "d_right": 2.4152541158323184, "d_left": 0.4722986603560279, "psi_rad": -1.2725260710898265, "kappa_radpm": 0.6129533182457219, "vx_mps": 4.090036170368983, "ax_mps2": 1.6816050570743801}, {"id": 543, "s_m": 54.232058885202974, "d_m": 0.0, "x_m": 1.97199126523975, "y_m": -8.855024822625461, "d_right": 2.330069968383257, "d_left": 0.5004256522979639, "psi_rad": -1.2152279679173938, "kappa_radpm": 0.5335078572516011, "vx_mps": 4.130895311621704, "ax_mps2": 2.8300962487168344}, {"id": 544, "s_m": 54.3319337634446, "d_m": 0.0, "x_m": 2.00916453328968, "y_m": -8.947598181426583, "d_right": 2.249465365498604, "d_left": 0.5401326406574108, "psi_rad": -1.1627896257612758, "kappa_radpm": 0.5225952038437816, "vx_mps": 4.198762569148623, "ax_mps2": 2.7186987630995674}, {"id": 545, "s_m": 54.43180864168623, "d_m": 0.0, "x_m": 2.0512160364900436, "y_m": -9.038314543436488, "d_right": 2.173625998915029, "d_left": 0.5745987315807537, "psi_rad": -1.1107375544402989, "kappa_radpm": 0.518819466543721, "vx_mps": 4.262941065504426, "ax_mps2": 2.5014143548747954}, {"id": 546, "s_m": 54.53168351992785, "d_m": 0.0, "x_m": 2.0977619969290613, "y_m": -9.12654182053741, "d_right": 2.10218213223452, "d_left": 0.6036209945354775, "psi_rad": -1.060449734537043, "kappa_radpm": 0.48878261196646444, "vx_mps": 4.321148393218398, "ax_mps2": 2.8011088978603054}, {"id": 547, "s_m": 54.63155839816948, "d_m": 0.0, "x_m": 2.148676635661148, "y_m": -9.2125908152619, "d_right": 2.031566516512349, "d_left": 0.6423876970349577, "psi_rad": -1.0130504915256258, "kappa_radpm": 0.4596360185384638, "vx_mps": 4.385412666607856, "ax_mps2": 3.0860045813390924}, {"id": 548, "s_m": 54.73143327641111, "d_m": 0.0, "x_m": 2.2033790975313026, "y_m": -9.296024525628713, "d_right": 1.9671417587625337, "d_left": 0.6831285647028084, "psi_rad": -0.9682233598012506, "kappa_radpm": 0.43915652639170105, "vx_mps": 4.45514005616808, "ax_mps2": 3.206771303885836}, {"id": 549, "s_m": 54.83130815465273, "d_m": 0.0, "x_m": 2.2618022517502547, "y_m": -9.377137320617324, "d_right": 1.9038296431251256, "d_left": 0.7205643825122133, "psi_rad": -0.9252834056638366, "kappa_radpm": 0.42007993847384084, "vx_mps": 4.526458296187204, "ax_mps2": 3.31384940582396}, {"id": 550, "s_m": 54.93118303289436, "d_m": 0.0, "x_m": 2.3234666596739446, "y_m": -9.455594369986484, "d_right": 1.8449376648248728, "d_left": 0.759145826274709, "psi_rad": -0.8844092667834555, "kappa_radpm": 0.39921561857395776, "vx_mps": 4.59899612078087, "ax_mps2": 3.474518816304472}, {"id": 551, "s_m": 55.03105791113599, "d_m": 0.0, "x_m": 2.3883108037131824, "y_m": -9.531648851904423, "d_right": 1.7896338300000136, "d_left": 0.7988786732678059, "psi_rad": -0.8455101466853412, "kappa_radpm": 0.37933488033701057, "vx_mps": 4.6738420604905775, "ax_mps2": 3.629057211186784}, {"id": 552, "s_m": 55.13093278937761, "d_m": 0.0, "x_m": 2.4558950028492164, "y_m": -9.605088625841274, "d_right": 1.7361912507496007, "d_left": 0.840914062565549, "psi_rad": -0.8085960397422611, "kappa_radpm": 0.36047155316230456, "vx_mps": 4.750758139561424, "ax_mps2": 3.777013441901562}, {"id": 553, "s_m": 55.23080766761924, "d_m": 0.0, "x_m": 2.526170048389798, "y_m": -9.676139533765253, "d_right": 1.6881351942668161, "d_left": 0.8796340182738073, "psi_rad": -0.7734808505570592, "kappa_radpm": 0.3423876854603641, "vx_mps": 4.829509334897589, "ax_mps2": 3.9239273941487154}, {"id": 554, "s_m": 55.33068254586087, "d_m": 0.0, "x_m": 2.598748324597365, "y_m": -9.74466580928984, "d_right": 1.6400054737437675, "d_left": 0.9115584674084084, "psi_rad": -0.740194356255369, "kappa_radpm": 0.32461689902232216, "vx_mps": 4.9099861463452354, "ax_mps2": 4.08095013919498}, {"id": 555, "s_m": 55.43055742410249, "d_m": 0.0, "x_m": 2.673590547063713, "y_m": -9.810874297658543, "d_right": 1.5984431503231147, "d_left": 0.9442604481029019, "psi_rad": -0.7086208235869158, "kappa_radpm": 0.3074027351286925, "vx_mps": 4.992307357708116, "ax_mps2": 4.24221215793478}, {"id": 556, "s_m": 55.53043230234412, "d_m": 0.0, "x_m": 2.7503556027908287, "y_m": -9.87469183988296, "d_right": 1.554705589581547, "d_left": 0.9775037764636741, "psi_rad": -0.6787756220238892, "kappa_radpm": 0.29058221953695224, "vx_mps": 5.076466645150382, "ax_mps2": 4.411922461420623}, {"id": 557, "s_m": 55.630307180585746, "d_m": 0.0, "x_m": 2.829010349639803, "y_m": -9.936309452377431, "d_right": 1.5141509389819006, "d_left": 1.0138772878053626, "psi_rad": -0.6505619950175747, "kappa_radpm": 0.2742254647902075, "vx_mps": 5.162537557889158, "ax_mps2": 4.588368011662556}, {"id": 558, "s_m": 55.73018205882737, "d_m": 0.0, "x_m": 2.909259440669276, "y_m": -9.995702530356343, "d_right": 1.481578877391332, "d_left": 1.0560160634351323, "psi_rad": -0.6239865145265178, "kappa_radpm": 0.2581851772373242, "vx_mps": 5.250554202139166, "ax_mps2": 4.7756940467989155}, {"id": 559, "s_m": 55.830056937068996, "d_m": 0.0, "x_m": 2.9910717393440267, "y_m": -10.053047480006564, "d_right": 1.4507605277877214, "d_left": 1.091987495061917, "psi_rad": -0.5989790557866774, "kappa_radpm": 0.24246919606912154, "vx_mps": 5.340623854240989, "ax_mps2": 4.97396748121986}, {"id": 560, "s_m": 55.929931815310624, "d_m": 0.0, "x_m": 3.074196455696421, "y_m": -10.1083594971178, "d_right": 1.4173920671658646, "d_left": 1.1213286774157127, "psi_rad": -0.575542241812951, "kappa_radpm": 0.22702053960825005, "vx_mps": 5.432845658181096, "ax_mps2": 5.18520124943382}, {"id": 561, "s_m": 56.029806693552246, "d_m": 0.0, "x_m": 3.158601083744315, "y_m": -10.161802395099349, "d_right": 1.3872556333224737, "d_left": 1.156505123274766, "psi_rad": -0.5536234727665841, "kappa_radpm": 0.2118274211022183, "vx_mps": 5.527346074971984, "ax_mps2": 5.410235767722688}, {"id": 562, "s_m": 56.129681571793874, "d_m": 0.0, "x_m": 3.2440772340566273, "y_m": -10.21342315736749, "d_right": 1.3517439038557175, "d_left": 1.1898494004059483, "psi_rad": -0.5332192417064929, "kappa_radpm": 0.19687392494241582, "vx_mps": 5.624255320451572, "ax_mps2": 5.650150215888667}, {"id": 563, "s_m": 56.229556450035496, "d_m": 0.0, "x_m": 3.3305859292266957, "y_m": -10.263372881826836, "d_right": 1.3209672599485756, "d_left": 1.2212051652703535, "psi_rad": -0.5142919511293291, "kappa_radpm": 0.18210623411181068, "vx_mps": 5.723710687949323, "ax_mps2": 5.907394398834269}, {"id": 564, "s_m": 56.329431328277124, "d_m": 0.0, "x_m": 3.417962326553957, "y_m": -10.311726055430805, "d_right": 1.2889791423744008, "d_left": 1.2580536475043214, "psi_rad": -0.4968337533306819, "kappa_radpm": 0.16755190946414486, "vx_mps": 5.825878872064113, "ax_mps2": 5.9627059188788465}, {"id": 565, "s_m": 56.42930620651875, "d_m": 0.0, "x_m": 3.5061551422356914, "y_m": -10.35862061340882, "d_right": 1.2657225091623165, "d_left": 1.2934359469678691, "psi_rad": -0.4808191415294929, "kappa_radpm": 0.15312781180083412, "vx_mps": 5.927218039454964, "ax_mps2": 5.905648974097235}, {"id": 566, "s_m": 56.529181084760374, "d_m": 0.0, "x_m": 3.595043697007652, "y_m": -10.404155103222084, "d_right": 1.2515572278049505, "d_left": 1.3204168096756888, "psi_rad": -0.4662421456654613, "kappa_radpm": 0.13879423493355197, "vx_mps": 6.025907867839648, "ax_mps2": 5.850007370698302}, {"id": 567, "s_m": 56.629055963002, "d_m": 0.0, "x_m": 3.6845580044283865, "y_m": -10.448454535161234, "d_right": 1.2413159191485716, "d_left": 1.3459462468543137, "psi_rad": -0.4530921098825793, "kappa_radpm": 0.12454520875471951, "vx_mps": 6.122099572811114, "ax_mps2": 5.795701747468309}, {"id": 568, "s_m": 56.72893084124363, "d_m": 0.0, "x_m": 3.7746223231143743, "y_m": -10.491639832187895, "d_right": 1.2158838502125773, "d_left": 1.377095583296909, "psi_rad": -0.4413614442398126, "kappa_radpm": 0.11034932224500286, "vx_mps": 6.215930597434338, "ax_mps2": 5.74265993305436}, {"id": 569, "s_m": 56.82880571948525, "d_m": 0.0, "x_m": 3.865142437109689, "y_m": -10.53382302610843, "d_right": 1.199356783751728, "d_left": 1.4136110300394986, "psi_rad": -0.4310481249237892, "kappa_radpm": 0.09620144571169921, "vx_mps": 6.307526307144037, "ax_mps2": 5.690816063143509}, {"id": 570, "s_m": 56.92868059772688, "d_m": 0.0, "x_m": 3.956087971976981, "y_m": -10.575145378743786, "d_right": 1.1785093492093424, "d_left": 1.4423126972166802, "psi_rad": -0.42213928733390604, "kappa_radpm": 0.08216699761517655, "vx_mps": 6.397001425521024, "ax_mps2": 5.64010983244333}, {"id": 571, "s_m": 57.02855547596851, "d_m": 0.0, "x_m": 4.047335895749075, "y_m": -10.615705026147412, "d_right": 1.1646271863734146, "d_left": 1.4642972658738374, "psi_rad": -0.4146345187349878, "kappa_radpm": 0.06814604209986723, "vx_mps": 6.4844612577829, "ax_mps2": 5.590485857117641}, {"id": 572, "s_m": 57.12843035421013, "d_m": 0.0, "x_m": 4.138901246817739, "y_m": -10.655661537198924, "d_right": 1.1598909869672804, "d_left": 1.4920205537724536, "psi_rad": -0.40852366199013135, "kappa_radpm": 0.05418515344696611, "vx_mps": 6.57000273913715, "ax_mps2": 5.541893128364873}, {"id": 573, "s_m": 57.22830523245176, "d_m": 0.0, "x_m": 4.230628384192136, "y_m": -10.695099100321011, "d_right": 1.1420079939059369, "d_left": 1.5115275890971496, "psi_rad": -0.4038111251859251, "kappa_radpm": 0.04020658316462561, "vx_mps": 6.653715337697937, "ax_mps2": 5.4942845416953405}, {"id": 574, "s_m": 57.32818011069339, "d_m": 0.0, "x_m": 4.322575742910041, "y_m": -10.73419453717637, "d_right": 1.1231727367672801, "d_left": 1.532537277257259, "psi_rad": -0.4004906367044865, "kappa_radpm": 0.026251973016437558, "vx_mps": 6.7356818358923505, "ax_mps2": 5.447616489465243}, {"id": 575, "s_m": 57.42805498893501, "d_m": 0.0, "x_m": 4.414553475654174, "y_m": -10.773018460848343, "d_right": 1.1132874862433189, "d_left": 1.559403362501455, "psi_rad": -0.39856810321264646, "kappa_radpm": 0.01225198224806388, "vx_mps": 6.815979009764843, "ax_mps2": 5.401848506572207}, {"id": 576, "s_m": 57.52792986717664, "d_m": 0.0, "x_m": 4.506658984486723, "y_m": -10.811763585889173, "d_right": 1.0977788031491909, "d_left": 1.5920038253082347, "psi_rad": -0.3980435176979866, "kappa_radpm": -0.001765096929173668, "vx_mps": 6.894678222027636, "ax_mps2": 5.356942961069594}, {"id": 577, "s_m": 57.62780474541827, "d_m": 0.0, "x_m": 4.598669151352457, "y_m": -10.850487723076668, "d_right": 1.0891569950130262, "d_left": 1.6168195720564131, "psi_rad": -0.39892211457278504, "kappa_radpm": -0.01585170463323474, "vx_mps": 6.971845941877267, "ax_mps2": 2.335015926669025}, {"id": 578, "s_m": 57.72767962365989, "d_m": 0.0, "x_m": 4.690713286824841, "y_m": -10.889397863521664, "d_right": 1.072443139695554, "d_left": 1.638172296911367, "psi_rad": -0.40121218638527756, "kappa_radpm": -0.02999840161239743, "vx_mps": 7.005216249339284, "ax_mps2": -10.1004108883327}, {"id": 579, "s_m": 57.82755450190152, "d_m": 0.0, "x_m": 4.782538573096159, "y_m": -10.928540222499294, "d_right": 1.0624957438190663, "d_left": 1.6655100667073939, "psi_rad": -0.40491627454166834, "kappa_radpm": -0.04423495247893858, "vx_mps": 6.859701165844023, "ax_mps2": -9.529802370859867}, {"id": 580, "s_m": 57.927429380143145, "d_m": 0.0, "x_m": 4.874296491317396, "y_m": -10.968133942809581, "d_right": 1.0460551315816837, "d_left": 1.6837065806342622, "psi_rad": -0.4100524404909607, "kappa_radpm": -0.058574412016768995, "vx_mps": 6.7195181658932235, "ax_mps2": -9.0018966913735}, {"id": 581, "s_m": 58.02730425838477, "d_m": 0.0, "x_m": 4.96571055885015, "y_m": -11.008215313391045, "d_right": 1.03418658102897, "d_left": 1.706825707719281, "psi_rad": -0.416618972215661, "kappa_radpm": -0.0730201738171375, "vx_mps": 6.584360083544935, "ax_mps2": -8.511504714039154}, {"id": 582, "s_m": 58.127179136626395, "d_m": 0.0, "x_m": 5.056942462161692, "y_m": -11.049012827362361, "d_right": 1.0174878807174608, "d_left": 1.736116718269729, "psi_rad": -0.42464470100048013, "kappa_radpm": -0.08761593005421069, "vx_mps": 6.453962094391665, "ax_mps2": -8.05701917655474}, {"id": 583, "s_m": 58.227054014868024, "d_m": 0.0, "x_m": 5.147699622171596, "y_m": -11.090554879091247, "d_right": 1.0031161368716095, "d_left": 1.771335461609814, "psi_rad": -0.43412316481854996, "kappa_radpm": -0.10233145269216956, "vx_mps": 6.3280517615887675, "ax_mps2": -7.633195564075377}, {"id": 584, "s_m": 58.326928893109645, "d_m": 0.0, "x_m": 5.238140553309909, "y_m": -11.133075727505554, "d_right": 0.9855958231436859, "d_left": 1.79935191139191, "psi_rad": -0.4450933151057277, "kappa_radpm": -0.11723187567270722, "vx_mps": 6.206408795932933, "ax_mps2": -7.239926604336059}, {"id": 585, "s_m": 58.426803771351274, "d_m": 0.0, "x_m": 5.327965476522937, "y_m": -11.176598399353988, "d_right": 0.9681424093304257, "d_left": 1.8264041483892395, "psi_rad": -0.45754346985587624, "kappa_radpm": -0.13226197511621135, "vx_mps": 6.0887877747595125, "ax_mps2": -6.870650302833999}, {"id": 586, "s_m": 58.5266786495929, "d_m": 0.0, "x_m": 5.417315884982092, "y_m": -11.221358348946692, "d_right": 0.9492126992079778, "d_left": 1.8592322441176126, "psi_rad": -0.4715232087338954, "kappa_radpm": -0.14754137001463433, "vx_mps": 5.975025174941791, "ax_mps2": -6.5275416467620175}, {"id": 587, "s_m": 58.626553527834524, "d_m": 0.0, "x_m": 5.5058920280833155, "y_m": -11.267375574926305, "d_right": 0.9281066596515759, "d_left": 1.8842334195111528, "psi_rad": -0.48701870107383805, "kappa_radpm": -0.1629625634291983, "vx_mps": 5.864899912770315, "ax_mps2": -6.206114691646104}, {"id": 588, "s_m": 58.72642840607615, "d_m": 0.0, "x_m": 5.593806114793017, "y_m": -11.31488184879333, "d_right": 0.9071500987702735, "d_left": 1.9156907987215233, "psi_rad": -0.5040836472156043, "kappa_radpm": -0.17860476332270286, "vx_mps": 5.758244618670674, "ax_mps2": -5.907126344645021}, {"id": 589, "s_m": 58.82630328431778, "d_m": 0.0, "x_m": 5.680765413851717, "y_m": -11.363896157271915, "d_right": 0.8951286238990307, "d_left": 1.9533605563136036, "psi_rad": -0.522698940928779, "kappa_radpm": -0.19440249842852425, "vx_mps": 5.654859329779221, "ax_mps2": -5.622936315891778}, {"id": 590, "s_m": 58.9261781625594, "d_m": 0.0, "x_m": 5.766841521872543, "y_m": -11.4146399283557, "d_right": 0.8804233417385076, "d_left": 1.9970944436005338, "psi_rad": -0.54292910799805, "kappa_radpm": -0.2105492843200489, "vx_mps": 5.5546605548648005, "ax_mps2": -5.357150772498076}, {"id": 591, "s_m": 59.02605304080103, "d_m": 0.0, "x_m": 5.851753505199228, "y_m": -11.4671342493005, "d_right": 0.8578078465476712, "d_left": 2.0376236852566456, "psi_rad": -0.5647608379728433, "kappa_radpm": -0.2268987558814921, "vx_mps": 5.457486996550734, "ax_mps2": -5.099166154860659}, {"id": 592, "s_m": 59.12592791904265, "d_m": 0.0, "x_m": 5.9355223680086695, "y_m": -11.521584080114502, "d_right": 0.8417543220749659, "d_left": 2.0762764941663754, "psi_rad": -0.5882716554697063, "kappa_radpm": -0.24376460559867702, "vx_mps": 5.363357821348426, "ax_mps2": -4.861207057206879}, {"id": 593, "s_m": 59.22580279728428, "d_m": 0.0, "x_m": 6.017880670799529, "y_m": -11.578015871721556, "d_right": 0.8194845281609504, "d_left": 2.1210684627190686, "psi_rad": -0.6134566103116925, "kappa_radpm": -0.26070700042901995, "vx_mps": 5.272056732806237, "ax_mps2": -4.644508091965533}, {"id": 594, "s_m": 59.32567767552591, "d_m": 0.0, "x_m": 6.098794830473283, "y_m": -11.636611016069281, "d_right": 0.7888031001039039, "d_left": 2.161131133192218, "psi_rad": -0.640345772235051, "kappa_radpm": -0.27764165213234854, "vx_mps": 5.183323531632281, "ax_mps2": -4.437932993958558}, {"id": 595, "s_m": 59.42555255376753, "d_m": 0.0, "x_m": 6.17800557799102, "y_m": -11.69739073762609, "d_right": 0.7672186265955342, "d_left": 2.2063346030226025, "psi_rad": -0.6689253314820842, "kappa_radpm": -0.29493435643439964, "vx_mps": 5.097093956240239, "ax_mps2": -4.236376506564726}, {"id": 596, "s_m": 59.52542743200916, "d_m": 0.0, "x_m": 6.255429720656708, "y_m": -11.76050838419532, "d_right": 0.7471197745211922, "d_left": 2.257598563751058, "psi_rad": -0.699275961734358, "kappa_radpm": -0.312753262593802, "vx_mps": 5.013397213784589, "ax_mps2": -4.0311414245110075}, {"id": 597, "s_m": 59.62530231025079, "d_m": 0.0, "x_m": 6.330802565880101, "y_m": -11.825976505793536, "d_right": 0.7154594717295474, "d_left": 2.314568621827068, "psi_rad": -0.7314075936106592, "kappa_radpm": -0.3314124157100795, "vx_mps": 4.932436730996905, "ax_mps2": -3.8076339417710523}, {"id": 598, "s_m": 59.72517718849241, "d_m": 0.0, "x_m": 6.403988042912825, "y_m": -11.893922797506265, "d_right": 0.6864422754161591, "d_left": 2.376968799337289, "psi_rad": -0.7655114027693584, "kappa_radpm": -0.3514660350107456, "vx_mps": 4.854725342657536, "ax_mps2": -3.5964896247549594}, {"id": 599, "s_m": 59.82505206673404, "d_m": 0.0, "x_m": 6.474757989799567, "y_m": -11.964409360543955, "d_right": 0.6676797544009364, "d_left": 2.4343419080668744, "psi_rad": -0.8016047104579131, "kappa_radpm": -0.37163497959617253, "vx_mps": 4.780163200760197, "ax_mps2": -3.3192485803858656}, {"id": 600, "s_m": 59.92492694497567, "d_m": 0.0, "x_m": 6.542868955373817, "y_m": -12.037484876031387, "d_right": 0.6453814761199684, "d_left": 2.4950803315349916, "psi_rad": -0.8398798254921265, "kappa_radpm": -0.3951208223891437, "vx_mps": 4.710301596528878, "ax_mps2": -3.04910065383014}, {"id": 601, "s_m": 60.02480182321729, "d_m": 0.0, "x_m": 6.608016061885416, "y_m": -12.113161439633702, "d_right": 0.6200936023696801, "d_left": 2.561099917592755, "psi_rad": -0.8805793856742463, "kappa_radpm": -0.41868404854045355, "vx_mps": 4.645200105180296, "ax_mps2": -2.8961315945106163}, {"id": 602, "s_m": 60.12467670145892, "d_m": 0.0, "x_m": 6.669943770138574, "y_m": -12.191489976532134, "d_right": 0.5893628663295094, "d_left": 2.6242439729664233, "psi_rad": -0.9233407551538213, "kappa_radpm": -0.4373961251457082, "vx_mps": 4.582508312749696, "ax_mps2": -2.7508015085595274}, {"id": 603, "s_m": 60.224551579700545, "d_m": 0.0, "x_m": 6.728390727978706, "y_m": -12.272443404586154, "d_right": 0.5563078606493828, "d_left": 2.692802854712284, "psi_rad": -0.967904675329883, "kappa_radpm": -0.45615135700408604, "vx_mps": 4.5221577266777775, "ax_mps2": -2.514115683093918}, {"id": 604, "s_m": 60.32442645794217, "d_m": 0.0, "x_m": 6.783104578589435, "y_m": -12.356002729275053, "d_right": 0.5354170328547638, "d_left": 2.7664028232238125, "psi_rad": -1.0146041366407466, "kappa_radpm": -0.4794031863404569, "vx_mps": 4.466286657782146, "ax_mps2": -2.2322645823874008}, {"id": 605, "s_m": 60.424301336183795, "d_m": 0.0, "x_m": 6.833746074548604, "y_m": -12.442072231344946, "d_right": 0.5101746074155937, "d_left": 2.7706435974323, "psi_rad": -1.0637500044885364, "kappa_radpm": -0.5047285376912265, "vx_mps": 4.4160867521760405, "ax_mps2": -1.9602760778197212}, {"id": 606, "s_m": 60.524176214425424, "d_m": 0.0, "x_m": 6.879981779737057, "y_m": -12.530572991255513, "d_right": 0.4800050383289003, "d_left": 2.7409603898536714, "psi_rad": -1.1153857619382181, "kappa_radpm": -0.5292236886890458, "vx_mps": 4.371528054760748, "ax_mps2": -1.689947585874337}, {"id": 607, "s_m": 60.624051092667045, "d_m": 0.0, "x_m": 6.921488977111862, "y_m": -12.621415698069207, "d_right": 0.4626386263104029, "d_left": 2.7143919901847617, "psi_rad": -1.1694244366070379, "kappa_radpm": -0.5530706570859619, "vx_mps": 4.332746347850569, "ax_mps2": -1.307084730751367}, {"id": 608, "s_m": 60.723925970908674, "d_m": 0.0, "x_m": 6.957912686360207, "y_m": -12.714413480436063, "d_right": 0.45998595948393123, "d_left": 2.6855597808171545, "psi_rad": -1.226045712616226, "kappa_radpm": -0.5814990281550028, "vx_mps": 4.302511017782741, "ax_mps2": -0.7391609268948316}, {"id": 609, "s_m": 60.8238008491503, "d_m": 0.0, "x_m": 6.988860730422121, "y_m": -12.809337804176213, "d_right": 0.44332917942517697, "d_left": 2.654632009026005, "psi_rad": -1.2858234763207448, "kappa_radpm": -0.6170692404363195, "vx_mps": 4.28531840625556, "ax_mps2": -0.10098135650433976}, {"id": 610, "s_m": 60.923675727391924, "d_m": 0.0, "x_m": 7.0139055132670505, "y_m": -12.905984794186546, "d_right": 0.41324100247414136, "d_left": 2.6239975909810163, "psi_rad": -1.3492415082490536, "kappa_radpm": -0.6525334902468604, "vx_mps": 4.282964258737353, "ax_mps2": -0.0708592809999973}, {"id": 611, "s_m": 61.02355060563355, "d_m": 0.0, "x_m": 7.032622854442417, "y_m": -13.004002690406843, "d_right": 0.39836220549915796, "d_left": 2.591510638555693, "psi_rad": -1.414949230903841, "kappa_radpm": -0.654677745247776, "vx_mps": 4.281311565104469, "ax_mps2": -0.0708592809999973}, {"id": 612, "s_m": 61.12342548387518, "d_m": 0.0, "x_m": 7.044909250315653, "y_m": -13.103150850954123, "d_right": 0.4016941014908817, "d_left": 2.5644407871462747, "psi_rad": -1.479929146142255, "kappa_radpm": -0.6467402306822999, "vx_mps": 4.279658233243976, "ax_mps2": 0.08384117290433603}, {"id": 613, "s_m": 61.2233003621168, "d_m": 0.0, "x_m": 7.050781180756379, "y_m": -13.202798959087831, "d_right": 0.4075506971233802, "d_left": 2.5380836372905824, "psi_rad": -1.5434597582897265, "kappa_radpm": -0.6202274926914128, "vx_mps": 4.281614397309017, "ax_mps2": 0.5589827026150385}, {"id": 614, "s_m": 61.32317524035843, "d_m": 0.0, "x_m": 7.050472540169911, "y_m": -13.302700768520491, "d_right": 0.4203923000337718, "d_left": 2.5214866839980896, "psi_rad": -1.6037596926713888, "kappa_radpm": -0.5870958566700027, "vx_mps": 4.294633687052897, "ax_mps2": 1.100374396633858}, {"id": 615, "s_m": 61.42305011860006, "d_m": 0.0, "x_m": 7.044306634263358, "y_m": -13.402316418472049, "d_right": 0.430451606650689, "d_left": 2.509750526950617, "psi_rad": -1.6610948688434783, "kappa_radpm": -0.563663135135237, "vx_mps": 4.3201479168817345, "ax_mps2": 1.4078220722006562}, {"id": 616, "s_m": 61.52292499684168, "d_m": 0.0, "x_m": 7.032530027453402, "y_m": -13.501541457342633, "d_right": 0.4572275637318627, "d_left": 2.4938157591640806, "psi_rad": -1.7164435728854421, "kappa_radpm": -0.5444191461430202, "vx_mps": 4.352572818440997, "ax_mps2": 1.6128013074759833}, {"id": 617, "s_m": 61.62279987508331, "d_m": 0.0, "x_m": 7.015397460319825, "y_m": -13.5998846799456, "d_right": 0.48126759708605055, "d_left": 2.476969643155991, "psi_rad": -1.7697428416815288, "kappa_radpm": -0.5228370826254344, "vx_mps": 4.389424427901181, "ax_mps2": 1.8519902733055182}, {"id": 618, "s_m": 61.72267475332494, "d_m": 0.0, "x_m": 6.9931327244138, "y_m": -13.69728829403147, "d_right": 0.517599189146984, "d_left": 2.4573243994946874, "psi_rad": -1.8209554428487351, "kappa_radpm": -0.5025934107521293, "vx_mps": 4.431363380987588, "ax_mps2": 2.0546692460671987}, {"id": 619, "s_m": 61.82254963156656, "d_m": 0.0, "x_m": 6.966027039317001, "y_m": -13.793379697925335, "d_right": 0.5471803806343594, "d_left": 2.4399519986745037, "psi_rad": -1.8702042416096853, "kappa_radpm": -0.4840050174712697, "vx_mps": 4.477432422260919, "ax_mps2": 2.219457380413215}, {"id": 620, "s_m": 61.92242450980819, "d_m": 0.0, "x_m": 6.934290302895129, "y_m": -13.888102750136541, "d_right": 0.5743931076638384, "d_left": 2.4192504646500064, "psi_rad": -1.917687146377908, "kappa_radpm": -0.46680063070496597, "vx_mps": 4.52666954472886, "ax_mps2": 2.3556972016948086}, {"id": 621, "s_m": 62.02229938804982, "d_m": 0.0, "x_m": 6.898192925313215, "y_m": -13.981192385403604, "d_right": 0.6126406350437442, "d_left": 2.3950931501587434, "psi_rad": -1.9634660754014508, "kappa_radpm": -0.4501884655278016, "vx_mps": 4.57834982385167, "ax_mps2": 2.4824374881710725}, {"id": 622, "s_m": 62.12217426629144, "d_m": 0.0, "x_m": 6.857927028874234, "y_m": -14.072610639675267, "d_right": 0.6601075082435546, "d_left": 2.3385951826018725, "psi_rad": -2.0076456558449944, "kappa_radpm": -0.43446485068449164, "vx_mps": 4.632186675136232, "ax_mps2": 2.59467128620061}, {"id": 623, "s_m": 62.22204914453307, "d_m": 0.0, "x_m": 6.813752633314055, "y_m": -14.162157388744326, "d_right": 0.7149626987287943, "d_left": 2.261017282593402, "psi_rad": -2.0502514870312174, "kappa_radpm": -0.41893160360626713, "vx_mps": 4.6877967480344465, "ax_mps2": 2.708841000033705}, {"id": 624, "s_m": 62.321924022774695, "d_m": 0.0, "x_m": 6.7658520318297, "y_m": -14.249811443506976, "d_right": 0.7549762699468916, "d_left": 2.1866276120356125, "psi_rad": -2.0913604163457737, "kappa_radpm": -0.40428891890121205, "vx_mps": 4.745158446352548, "ax_mps2": 2.809771825695429}, {"id": 625, "s_m": 62.42179890101632, "d_m": 0.0, "x_m": 6.71446643639103, "y_m": -14.335436296507, "d_right": 0.8008836905230631, "d_left": 2.1172495111495837, "psi_rad": -2.1310147819413094, "kappa_radpm": -0.3899184169490896, "vx_mps": 4.803933796270205, "ax_mps2": 2.9123337473678554}, {"id": 626, "s_m": 62.521673779257945, "d_m": 0.0, "x_m": 6.65977532186641, "y_m": -14.419010943770285, "d_right": 0.8527841488028814, "d_left": 2.0533630126998537, "psi_rad": -2.1692723880341624, "kappa_radpm": -0.3762539228076124, "vx_mps": 4.864105043662376, "ax_mps2": 3.006549845854258}, {"id": 627, "s_m": 62.62154865749957, "d_m": 0.0, "x_m": 6.60199338678623, "y_m": -14.500453541074403, "d_right": 0.8908736304426953, "d_left": 1.9876992580976667, "psi_rad": -2.2062420828388127, "kappa_radpm": -0.3642439439196537, "vx_mps": 4.9254518041846564, "ax_mps2": 3.069629032123066}, {"id": 628, "s_m": 62.721423535741195, "d_m": 0.0, "x_m": 6.541273598805074, "y_m": -14.579758521717263, "d_right": 0.9259008502689832, "d_left": 1.9175222140439094, "psi_rad": -2.2420394023062062, "kappa_radpm": -0.35257809248897826, "vx_mps": 4.9873072019885045, "ax_mps2": 3.1340871481000354}, {"id": 629, "s_m": 62.821298413982824, "d_m": 0.0, "x_m": 6.477813672396171, "y_m": -14.656859639788896, "d_right": 0.966872693243433, "d_left": 1.8527737216403608, "psi_rad": -2.2766657377873987, "kappa_radpm": -0.34097108342786353, "vx_mps": 5.049679818724816, "ax_mps2": 3.2069116512963824}, {"id": 630, "s_m": 62.921173292224445, "d_m": 0.0, "x_m": 6.411749347760455, "y_m": -14.731772834368767, "d_right": 1.0088632934824076, "d_left": 1.7940003575666232, "psi_rad": -2.310168209245901, "kappa_radpm": -0.32994390005681234, "vx_mps": 5.11271416109354, "ax_mps2": 3.274264957204584}, {"id": 631, "s_m": 63.021048170466074, "d_m": 0.0, "x_m": 6.343263557905152, "y_m": -14.804457510728723, "d_right": 1.0519178701793084, "d_left": 1.7418077999441348, "psi_rad": -2.3425681403317946, "kappa_radpm": -0.31893489980471657, "vx_mps": 5.176280490942284, "ax_mps2": 3.3509159951713103}, {"id": 632, "s_m": 63.1209230487077, "d_m": 0.0, "x_m": 6.272491520579825, "y_m": -14.874929822681485, "d_right": 1.096384127678503, "d_left": 1.6908638601078068, "psi_rad": -2.373887464692088, "kappa_radpm": -0.3082775499614044, "vx_mps": 5.240536649517969, "ax_mps2": 3.427536240434222}, {"id": 633, "s_m": 63.220797926949324, "d_m": 0.0, "x_m": 6.199589576082354, "y_m": -14.94318370196622, "d_right": 1.1335442452140074, "d_left": 1.6376659778159475, "psi_rad": -2.4041655223205183, "kappa_radpm": -0.2981003465568987, "vx_mps": 5.305456992974803, "ax_mps2": 3.5002940584201854}, {"id": 634, "s_m": 63.32067280519095, "d_m": 0.0, "x_m": 6.124680786795893, "y_m": -15.009243404728979, "d_right": 1.1753957817710052, "d_left": 1.5785899907008625, "psi_rad": -2.4334401550821445, "kappa_radpm": -0.2881432588409363, "vx_mps": 5.370945614144167, "ax_mps2": 3.5763971484913255}, {"id": 635, "s_m": 63.42054768343258, "d_m": 0.0, "x_m": 6.047909419214807, "y_m": -15.073113888219464, "d_right": 1.2181050763662564, "d_left": 1.5250737422235523, "psi_rad": -2.461733596585413, "kappa_radpm": -0.2785006300752913, "vx_mps": 5.437043429069978, "ax_mps2": 3.6528403950954385}, {"id": 636, "s_m": 63.5204225616742, "d_m": 0.0, "x_m": 5.969382859696238, "y_m": -15.13483098267221, "d_right": 1.2545807689076132, "d_left": 1.4788581537248915, "psi_rad": -2.4890788791751577, "kappa_radpm": -0.2691079944411913, "vx_mps": 5.5037346619350656, "ax_mps2": 3.731323802211697}, {"id": 637, "s_m": 63.62029743991583, "d_m": 0.0, "x_m": 5.889233538945262, "y_m": -15.194409718024898, "d_right": 1.2922350571598027, "d_left": 1.4406054724769315, "psi_rad": -2.515494597883678, "kappa_radpm": -0.25991526337779414, "vx_mps": 5.571034576255784, "ax_mps2": 3.813177460527464}, {"id": 638, "s_m": 63.72017231815746, "d_m": 0.0, "x_m": 5.807557509812637, "y_m": -15.251892971502288, "d_right": 1.3238770053717472, "d_left": 1.4001274882924817, "psi_rad": -2.541002520297754, "kappa_radpm": -0.2508954295208111, "vx_mps": 5.638981070991927, "ax_mps2": 3.8990739871508833}, {"id": 639, "s_m": 63.82004719639908, "d_m": 0.0, "x_m": 5.724474194217901, "y_m": -15.307306642014556, "d_right": 1.357241393399498, "d_left": 1.3665582997847596, "psi_rad": -2.565617422429793, "kappa_radpm": -0.24206356758294056, "vx_mps": 5.707621798827319, "ax_mps2": 3.988371054795503}, {"id": 640, "s_m": 63.91992207464071, "d_m": 0.0, "x_m": 5.640067272910783, "y_m": -15.36070081986515, "d_right": 1.38452104493628, "d_left": 1.3227231616392991, "psi_rad": -2.5893593539432214, "kappa_radpm": -0.2333763073816122, "vx_mps": 5.77699080364588, "ax_mps2": 4.082370312277056}, {"id": 641, "s_m": 64.01979695288233, "d_m": 0.0, "x_m": 5.554447231833994, "y_m": -15.4121081103805, "d_right": 1.4161480412209146, "d_left": 1.285386815539312, "psi_rad": -2.6122391213256453, "kappa_radpm": -0.22483252485452154, "vx_mps": 5.847142483398265, "ax_mps2": 4.181014645156647}, {"id": 642, "s_m": 64.11967183112397, "d_m": 0.0, "x_m": 5.467685369895877, "y_m": -15.46158510520619, "d_right": 1.4519065748632758, "d_left": 1.2515572129725785, "psi_rad": -2.634273321534076, "kappa_radpm": -0.21640533889950275, "vx_mps": 5.918127396261749, "ax_mps2": 4.285171404186582}, {"id": 643, "s_m": 64.21954670936559, "d_m": 0.0, "x_m": 5.379883901095171, "y_m": -15.509170251100121, "d_right": 1.491550932970056, "d_left": 1.2134138126317013, "psi_rad": -2.655470048202467, "kappa_radpm": -0.20809760731398824, "vx_mps": 5.990007831619178, "ax_mps2": 4.3947106832124145}, {"id": 644, "s_m": 64.31942158760721, "d_m": 0.0, "x_m": 5.291102170767505, "y_m": -15.554925639977947, "d_right": 1.5309992515872943, "d_left": 1.1758936089772256, "psi_rad": -2.6758436455760286, "kappa_radpm": -0.1998826936521833, "vx_mps": 6.062840605825381, "ax_mps2": 4.510604284411278}, {"id": 645, "s_m": 64.41929646584884, "d_m": 0.0, "x_m": 5.201435425769073, "y_m": -15.598894327614465, "d_right": 1.5546798832712603, "d_left": 1.147808184569734, "psi_rad": -2.6954002139057573, "kappa_radpm": -0.19177413741936783, "vx_mps": 6.136695227811842, "ax_mps2": 4.632388818927281}, {"id": 646, "s_m": 64.51917134409047, "d_m": 0.0, "x_m": 5.110931460006402, "y_m": -15.641142971842127, "d_right": 1.5825023087426378, "d_left": 1.1297856791041971, "psi_rad": -2.7141527668711154, "kappa_radpm": -0.1837419722377211, "vx_mps": 6.211629967855865, "ax_mps2": 4.761275374939261}, {"id": 647, "s_m": 64.61904622233209, "d_m": 0.0, "x_m": 5.019679522190097, "y_m": -15.68171828774063, "d_right": 1.614310541673611, "d_left": 1.0986067975084544, "psi_rad": -2.732105874434758, "kappa_radpm": -0.17580352280692568, "vx_mps": 6.287719018392825, "ax_mps2": 4.896698277672496}, {"id": 648, "s_m": 64.71892110057372, "d_m": 0.0, "x_m": 4.927716242360918, "y_m": -15.720690668754763, "d_right": 1.649945388931738, "d_left": 1.0763761778335355, "psi_rad": -2.749271165164764, "kappa_radpm": -0.16792381283988742, "vx_mps": 6.365023546130522, "ax_mps2": 5.040195938398452}, {"id": 649, "s_m": 64.81879597881534, "d_m": 0.0, "x_m": 4.835125802091339, "y_m": -15.758109768114865, "d_right": 1.6852794871699173, "d_left": 1.0603886714684227, "psi_rad": -2.7656512102776727, "kappa_radpm": -0.1601197445091737, "vx_mps": 6.443624962249036, "ax_mps2": 5.19126919673898}, {"id": 650, "s_m": 64.91867085705697, "d_m": 0.0, "x_m": 4.741934375055028, "y_m": -15.794048984012134, "d_right": 1.701007664347449, "d_left": 1.0276438508202774, "psi_rad": -2.7812564804232522, "kappa_radpm": -0.1523745528211008, "vx_mps": 6.523592370159746, "ax_mps2": 5.350837688436108}, {"id": 651, "s_m": 65.0185457352986, "d_m": 0.0, "x_m": 4.6482216525765025, "y_m": -15.828560276945067, "d_right": 1.7209122489389168, "d_left": 1.001606490253722, "psi_rad": -2.7960926369216264, "kappa_radpm": -0.14475048815848424, "vx_mps": 6.605004612962286, "ax_mps2": 5.516451607587565}, {"id": 652, "s_m": 65.11842061354022, "d_m": 0.0, "x_m": 4.554004112770907, "y_m": -15.861718713556801, "d_right": 1.7449255928873098, "d_left": 0.9864844114151899, "psi_rad": -2.8101713235814696, "kappa_radpm": -0.13715567412984192, "vx_mps": 6.687899206964792, "ax_mps2": 5.474828092297449}, {"id": 653, "s_m": 65.21829549178184, "d_m": 0.0, "x_m": 4.459357054604702, "y_m": -15.893578128341929, "d_right": 1.7729401459101612, "d_left": 0.9783151523116971, "psi_rad": -2.823489224644649, "kappa_radpm": -0.1295640107891529, "vx_mps": 6.769164747643857, "ax_mps2": 5.428537875747769}, {"id": 654, "s_m": 65.31817037002348, "d_m": 0.0, "x_m": 4.36428935016064, "y_m": -15.924215398347352, "d_right": 1.8036455304694492, "d_left": 0.9474863234788617, "psi_rad": -2.836052228390715, "kappa_radpm": -0.12195994374869265, "vx_mps": 6.84879117067276, "ax_mps2": 5.383131801977781}, {"id": 655, "s_m": 65.4180452482651, "d_m": 0.0, "x_m": 4.268872281028006, "y_m": -15.953687489432314, "d_right": 1.8198872730513185, "d_left": 0.9272679743267593, "psi_rad": -2.8478427075490576, "kappa_radpm": -0.1141698760725267, "vx_mps": 6.926847751037077, "ax_mps2": 5.338573331934098}, {"id": 656, "s_m": 65.51792012650672, "d_m": 0.0, "x_m": 4.173108052268801, "y_m": -15.982074795836905, "d_right": 1.8338979041643342, "d_left": 0.9186707181129158, "psi_rad": -2.8588580788009903, "kappa_radpm": -0.10639017357941023, "vx_mps": 7.003399066815284, "ax_mps2": 5.294828385869806}, {"id": 657, "s_m": 65.61779500474836, "d_m": 0.0, "x_m": 4.07706498537355, "y_m": -16.00943803890122, "d_right": 1.8518078040311539, "d_left": 0.9126995934479338, "psi_rad": -2.8690929717954488, "kappa_radpm": -0.09858699716075664, "vx_mps": 7.078505433336009, "ax_mps2": 5.25186511672823}, {"id": 658, "s_m": 65.71766988298998, "d_m": 0.0, "x_m": 3.9807392290546737, "y_m": -16.035859195951584, "d_right": 1.869188825706031, "d_left": 0.8968727162310972, "psi_rad": -2.8785516124587147, "kappa_radpm": -0.09082450654349047, "vx_mps": 7.152223287056739, "ax_mps2": 5.2096537097256315}, {"id": 659, "s_m": 65.8175447612316, "d_m": 0.0, "x_m": 3.8841956952784717, "y_m": -16.061400654977913, "d_right": 1.885026203449509, "d_left": 0.8929227374362687, "psi_rad": -2.887238869137658, "kappa_radpm": -0.08315747151842881, "vx_mps": 7.22460552610289, "ax_mps2": 5.168166204520527}, {"id": 660, "s_m": 65.91741963947324, "d_m": 0.0, "x_m": 3.787425297110101, "y_m": -16.0861440257942, "d_right": 1.8909399094966317, "d_left": 0.885552083002109, "psi_rad": -2.895162763348809, "kappa_radpm": -0.07551203178315713, "vx_mps": 7.2957018133017515, "ax_mps2": 5.1273763369337555}, {"id": 661, "s_m": 66.01729451771486, "d_m": 0.0, "x_m": 3.690489270547622, "y_m": -16.11015232972669, "d_right": 1.9013385852816016, "d_left": 0.8625226631980732, "psi_rad": -2.902323804440716, "kappa_radpm": -0.06790475402154003, "vx_mps": 7.365558846639875, "ax_mps2": 5.087259397650916}, {"id": 662, "s_m": 66.11716939595648, "d_m": 0.0, "x_m": 3.5933739674251703, "y_m": -16.133507153210946, "d_right": 1.916227331947352, "d_left": 0.851342035853398, "psi_rad": -2.9087271637735377, "kappa_radpm": -0.06031831892653399, "vx_mps": 7.4342206013248475, "ax_mps2": 5.047792105732214}, {"id": 663, "s_m": 66.21704427419812, "d_m": 0.0, "x_m": 3.4961384449442714, "y_m": -16.156272085450663, "d_right": 1.9355700208800954, "d_left": 0.8524059223512053, "psi_rad": -2.9143738584291317, "kappa_radpm": -0.05277079778192648, "vx_mps": 7.501728547012413, "ax_mps2": 5.008952495074374}, {"id": 664, "s_m": 66.31691915243974, "d_m": 0.0, "x_m": 3.3987652316448504, "y_m": -16.178528573981946, "d_right": 1.949349771549733, "d_left": 0.8451256759610615, "psi_rad": -2.919268576483401, "kappa_radpm": -0.04524505093297482, "vx_mps": 7.568121843244082, "ax_mps2": 4.970719812237376}, {"id": 665, "s_m": 66.41679403068136, "d_m": 0.0, "x_m": 3.3013113717282314, "y_m": -16.200340540383735, "d_right": 1.9532213214201901, "d_left": 0.8372639206491346, "psi_rad": -2.923413206810114, "kappa_radpm": -0.037762155767727776, "vx_mps": 7.633437515708703, "ax_mps2": 4.933074424276521}, {"id": 666, "s_m": 66.516668908923, "d_m": 0.0, "x_m": 3.203756848829674, "y_m": -16.221788994845518, "d_right": 1.9618023858882065, "d_left": 0.8346983493060967, "psi_rad": -2.9268120161776183, "kappa_radpm": -0.030300429179244602, "vx_mps": 7.697710615578644, "ax_mps2": 4.895997735405665}, {"id": 667, "s_m": 66.61654378716462, "d_m": 0.0, "x_m": 3.1061567093220974, "y_m": -16.2429380007674, "d_right": 1.975101631558434, "d_left": 0.8280306053197363, "psi_rad": -2.929467294621647, "kappa_radpm": -0.022879369035288893, "vx_mps": 7.7609743638657855, "ax_mps2": 4.859472111478186}, {"id": 668, "s_m": 66.71641866540624, "d_m": 0.0, "x_m": 3.008489622852224, "y_m": -16.26386796383218, "d_right": 1.9931020713251695, "d_left": 0.810941068162419, "psi_rad": -2.9313826219981554, "kappa_radpm": -0.01547952650616305, "vx_mps": 7.823260282483692, "ax_mps2": 4.823480811408061}, {"id": 669, "s_m": 66.81629354364787, "d_m": 0.0, "x_m": 2.910808726049356, "y_m": -16.284642943507123, "d_right": 2.002580301907457, "d_left": 0.8061132523331695, "psi_rad": -2.932560945064427, "kappa_radpm": -0.008121149733532037, "vx_mps": 7.88459831348226, "ax_mps2": 4.788007924764345}, {"id": 670, "s_m": 66.9161684218895, "d_m": 0.0, "x_m": 2.813092723870174, "y_m": -16.305342552474766, "d_right": 2.006242283886534, "d_left": 0.8136908544128127, "psi_rad": -2.9330052741282353, "kappa_radpm": -0.0007846618745945488, "vx_mps": 7.9450169277339375, "ax_mps2": 4.753038314875142}, {"id": 671, "s_m": 67.01604330013112, "d_m": 0.0, "x_m": 2.7153927246853615, "y_m": -16.32603072503243, "d_right": 2.014845538438668, "d_left": 0.8003626441505513, "psi_rad": -2.9327194154159146, "kappa_radpm": 0.006507206813535198, "vx_mps": 8.004543224190288, "ax_mps2": 4.718557566854761}, {"id": 672, "s_m": 67.11591817837274, "d_m": 0.0, "x_m": 2.617689015716801, "y_m": -16.34678603043759, "d_right": 2.0284020435198378, "d_left": 0.7975183197028486, "psi_rad": -2.931705849527842, "kappa_radpm": 0.013780035547435381, "vx_mps": 8.063203020689858, "ax_mps2": 4.68455194004545}, {"id": 673, "s_m": 67.21579305661437, "d_m": 0.0, "x_m": 2.520030349073672, "y_m": -16.367672241008105, "d_right": 2.032795949050887, "d_left": 0.802085928294622, "psi_rad": -2.929968311671442, "kappa_radpm": 0.021015050740762653, "vx_mps": 8.121020937180212, "ax_mps2": 4.651008324421252}, {"id": 674, "s_m": 67.315667934856, "d_m": 0.0, "x_m": 2.4223999045877895, "y_m": -16.388766793664512, "d_right": 2.0376943435776873, "d_left": 0.7894925871620924, "psi_rad": -2.927508475539188, "kappa_radpm": 0.028227122617814227, "vx_mps": 8.178020472114511, "ax_mps2": 4.617914200558183}, {"id": 675, "s_m": 67.41554281309762, "d_m": 0.0, "x_m": 2.3248439466172472, "y_m": -16.41013324108126, "d_right": 2.042855589509297, "d_left": 0.7774118307584125, "psi_rad": -2.924332057026138, "kappa_radpm": 0.035383822893828916, "vx_mps": 8.23422407269477, "ax_mps2": 4.585257602821326}, {"id": 676, "s_m": 67.51541769133925, "d_m": 0.0, "x_m": 2.227350439389361, "y_m": -16.431847356223745, "d_right": 2.044273122976474, "d_left": 0.7760789249688589, "psi_rad": -2.9204406855138654, "kappa_radpm": 0.04253072020153104, "vx_mps": 8.289653199556824, "ax_mps2": 4.553027085456222}, {"id": 677, "s_m": 67.61529256958087, "d_m": 0.0, "x_m": 2.129962351427338, "y_m": -16.453972590064826, "d_right": 2.0509821169683033, "d_left": 0.767124612021698, "psi_rad": -2.915837276883222, "kappa_radpm": 0.04965709377717869, "vx_mps": 8.344328386425367, "ax_mps2": -5.690959968166879}, {"id": 678, "s_m": 67.7151674478225, "d_m": 0.0, "x_m": 2.032674289031688, "y_m": -16.476583081892993, "d_right": 2.0630026732773494, "d_left": 0.7536472107238792, "psi_rad": -2.9105218031828164, "kappa_radpm": 0.05676583869485177, "vx_mps": 8.275931872164424, "ax_mps2": -7.989543590756651}, {"id": 679, "s_m": 67.81504232606413, "d_m": 0.0, "x_m": 1.9355253634679117, "y_m": -16.499742489792276, "d_right": 2.079227267987733, "d_left": 0.7527206897541401, "psi_rad": -2.904500438954896, "kappa_radpm": 0.06381722052734601, "vx_mps": 8.178944856522804, "ax_mps2": -7.622563065019805}, {"id": 680, "s_m": 67.91491720430575, "d_m": 0.0, "x_m": 1.838518025260933, "y_m": -16.52352259161644, "d_right": 2.0836228103158647, "d_left": 0.7480371530446468, "psi_rad": -2.8977745394100847, "kappa_radpm": 0.07082724122448515, "vx_mps": 8.085328308116187, "ax_mps2": -7.281994154644484}, {"id": 681, "s_m": 68.01479208254737, "d_m": 0.0, "x_m": 1.7416873171565792, "y_m": -16.54798664048128, "d_right": 2.093481977162362, "d_left": 0.7345268991609277, "psi_rad": -2.890358724777042, "kappa_radpm": 0.07767929695203366, "vx_mps": 7.9948706863164665, "ax_mps2": -6.956840140711011}, {"id": 682, "s_m": 68.11466696078901, "d_m": 0.0, "x_m": 1.6450451552996663, "y_m": -16.573202282631524, "d_right": 2.0997319995174824, "d_left": 0.7336990965488545, "psi_rad": -2.882257764870274, "kappa_radpm": 0.08451983154825479, "vx_mps": 7.907485704503187, "ax_mps2": -6.649985296156722}, {"id": 683, "s_m": 68.21454183903063, "d_m": 0.0, "x_m": 1.5486210883297586, "y_m": -16.59923226048511, "d_right": 2.1071814919415415, "d_left": 0.7231287814114968, "psi_rad": -2.873478657991863, "kappa_radpm": 0.09128437773817065, "vx_mps": 7.823042708780121, "ax_mps2": -6.354490473878072}, {"id": 684, "s_m": 68.31441671727225, "d_m": 0.0, "x_m": 1.452439228943658, "y_m": -16.6261400228103, "d_right": 2.120217019640788, "d_left": 0.7089697459955995, "psi_rad": -2.864022871122115, "kappa_radpm": 0.09806647683996624, "vx_mps": 7.741491413071875, "ax_mps2": -6.070339109090577}, {"id": 685, "s_m": 68.41429159551389, "d_m": 0.0, "x_m": 1.3565227914803926, "y_m": -16.653989330084986, "d_right": 2.1279297326346778, "d_left": 0.707762872054792, "psi_rad": -2.8538896004643117, "kappa_radpm": 0.1048509941128365, "vx_mps": 7.662776294519752, "ax_mps2": -5.79569446716214}, {"id": 686, "s_m": 68.51416647375551, "d_m": 0.0, "x_m": 1.2609079440391993, "y_m": -16.682840138570135, "d_right": 2.1389868985036413, "d_left": 0.7047749104059242, "psi_rad": -2.8430779981114753, "kappa_radpm": 0.11165347731456156, "vx_mps": 7.586860482530764, "ax_mps2": -5.52985597581746}, {"id": 687, "s_m": 68.61404135199713, "d_m": 0.0, "x_m": 1.165613139750495, "y_m": -16.71275780010996, "d_right": 2.155717697414538, "d_left": 0.696784784185588, "psi_rad": -2.8315858945157135, "kappa_radpm": 0.11847118113276134, "vx_mps": 7.513711772275404, "ax_mps2": -5.270703817861871}, {"id": 688, "s_m": 68.71391623023877, "d_m": 0.0, "x_m": 1.0706892851364789, "y_m": -16.743797589159875, "d_right": 2.1599743771323543, "d_left": 0.6800226804265282, "psi_rad": -2.819411568282513, "kappa_radpm": 0.12532660185225333, "vx_mps": 7.443322026670392, "ax_mps2": -5.019914441471199}, {"id": 689, "s_m": 68.81379110848039, "d_m": 0.0, "x_m": 0.9761482835912358, "y_m": -16.776027557714883, "d_right": 2.166648821111703, "d_left": 0.6639938744208951, "psi_rad": -2.806551831795762, "kappa_radpm": 0.13217548357919046, "vx_mps": 7.375656994835515, "ax_mps2": -4.7738161037261335}, {"id": 690, "s_m": 68.91366598672201, "d_m": 0.0, "x_m": 0.8820576345474344, "y_m": -16.809496848170067, "d_right": 2.17919122753802, "d_left": 0.6614785497945262, "psi_rad": -2.793007697244315, "kappa_radpm": 0.139069268692702, "vx_mps": 7.310728246984084, "ax_mps2": -4.532367569219047}, {"id": 691, "s_m": 69.01354086496364, "d_m": 0.0, "x_m": 0.7884218359056028, "y_m": -16.844276889000344, "d_right": 2.197571211371361, "d_left": 0.6484277711121516, "psi_rad": -2.7787712195353595, "kappa_radpm": 0.14599434994785, "vx_mps": 7.24854524597914, "ax_mps2": -4.2932684391860585}, {"id": 692, "s_m": 69.11341574320527, "d_m": 0.0, "x_m": 0.695324853071354, "y_m": -16.880410135315106, "d_right": 2.2191703403164587, "d_left": 0.640504729304418, "psi_rad": -2.76384295855104, "kappa_radpm": 0.1529788481128309, "vx_mps": 7.189146601493267, "ax_mps2": -4.0568894809084926}, {"id": 693, "s_m": 69.21329062144689, "d_m": 0.0, "x_m": 0.602766809912427, "y_m": -16.91797130939783, "d_right": 2.2287297411422275, "d_left": 0.6199067958249634, "psi_rad": -2.748211952972662, "kappa_radpm": 0.1600004766492707, "vx_mps": 7.132563786736946, "ax_mps2": -3.8202793753596556}, {"id": 694, "s_m": 69.31316549968852, "d_m": 0.0, "x_m": 0.5108474483355001, "y_m": -16.9569954702522, "d_right": 2.243262999515897, "d_left": 0.6005968096482097, "psi_rad": -2.7318800439219224, "kappa_radpm": 0.16709993448574245, "vx_mps": 7.0788675857756465, "ax_mps2": -3.5826277239384168}, {"id": 695, "s_m": 69.41304037793014, "d_m": 0.0, "x_m": 0.41956370688088745, "y_m": -16.99756091912929, "d_right": 2.256215453290622, "d_left": 0.5784593220499239, "psi_rad": -2.714830487642166, "kappa_radpm": 0.17427613847752424, "vx_mps": 7.028138962877606, "ax_mps2": -3.3422955683407714}, {"id": 696, "s_m": 69.51291525617177, "d_m": 0.0, "x_m": 0.3290304935885623, "y_m": -17.039694839173713, "d_right": 2.27518273348105, "d_left": 0.5570734023530871, "psi_rad": -2.6970651042504254, "kappa_radpm": 0.18154317966353353, "vx_mps": 6.9804809687905625, "ax_mps2": -3.0984206168309694}, {"id": 697, "s_m": 69.6127901344134, "d_m": 0.0, "x_m": 0.23924416492743075, "y_m": -17.083478939343824, "d_right": 2.293175269122867, "d_left": 0.5513552148306963, "psi_rad": -2.6785636231319305, "kappa_radpm": 0.18889828702476133, "vx_mps": 6.936007914640272, "ax_mps2": -2.848504139662403}, {"id": 698, "s_m": 69.71266501265502, "d_m": 0.0, "x_m": 0.15033356456602223, "y_m": -17.128931930582045, "d_right": 2.31129248967762, "d_left": 0.5391301198822825, "psi_rad": -2.6593287785954027, "kappa_radpm": 0.19636996496317513, "vx_mps": 6.894868946086896, "ax_mps2": -2.5901562656108448}, {"id": 699, "s_m": 69.81253989089664, "d_m": 0.0, "x_m": 0.06229733166288812, "y_m": -17.176138294025403, "d_right": 2.329995359467032, "d_left": 0.5251601146322331, "psi_rad": -2.639333213232975, "kappa_radpm": 0.20398230628822395, "vx_mps": 6.857246874686962, "ax_mps2": -2.3215943091937086}, {"id": 700, "s_m": 69.91241476913828, "d_m": 0.0, "x_m": -0.024724157691578826, "y_m": -17.22510881440166, "d_right": 2.3455738523725813, "d_left": 0.5165757920230584, "psi_rad": -2.618578754828347, "kappa_radpm": 0.21174386816381463, "vx_mps": 6.823349383000237, "ax_mps2": -2.0361615615056037}, {"id": 701, "s_m": 70.0122896473799, "d_m": 0.0, "x_m": -0.11072605774112224, "y_m": -17.275929824442454, "d_right": 2.3560838521708654, "d_left": 0.5023199351603115, "psi_rad": -2.5970272901831866, "kappa_radpm": 0.21976056294477261, "vx_mps": 6.793480258778885, "ax_mps2": -1.7375083074721824}, {"id": 702, "s_m": 70.11216452562152, "d_m": 0.0, "x_m": -0.19555435464013307, "y_m": -17.3286029289461, "d_right": 2.3725570218929004, "d_left": 0.4758380008250431, "psi_rad": -2.5746761719862903, "kappa_radpm": 0.22791663348700303, "vx_mps": 6.76788793975737, "ax_mps2": -1.429543459121917}, {"id": 703, "s_m": 70.21203940386316, "d_m": 0.0, "x_m": -0.2791963337857027, "y_m": -17.383215726847016, "d_right": 2.395305101590751, "d_left": 0.4663720537299857, "psi_rad": -2.551501259760025, "kappa_radpm": 0.23608783147362067, "vx_mps": 6.7467589409487125, "ax_mps2": -1.0965338611490276}, {"id": 704, "s_m": 70.31191428210478, "d_m": 0.0, "x_m": -0.3614958505470747, "y_m": -17.439763790776954, "d_right": 2.4241999492333877, "d_left": 0.4467356022383077, "psi_rad": -2.527511980071557, "kappa_radpm": 0.24456191697784033, "vx_mps": 6.730506952342538, "ax_mps2": -0.7052700557332082}, {"id": 705, "s_m": 70.4117891603464, "d_m": 0.0, "x_m": -0.44242269804561474, "y_m": -17.49833004747075, "d_right": 2.450650297655156, "d_left": 0.4236612707906704, "psi_rad": -2.50261360316383, "kappa_radpm": 0.2539769598317159, "vx_mps": 6.720033207778338, "ax_mps2": -0.35335040905456266}, {"id": 706, "s_m": 70.51166403858804, "d_m": 0.0, "x_m": -0.521805831756612, "y_m": -17.558905664508927, "d_right": 2.468052239990123, "d_left": 0.41175874918930466, "psi_rad": -2.4767873356736416, "kappa_radpm": 0.262173613829576, "vx_mps": 6.714779568644208, "ax_mps2": -0.17889481889279357}, {"id": 707, "s_m": 70.61153891682966, "d_m": 0.0, "x_m": -0.5996109231145603, "y_m": -17.621562534738487, "d_right": 2.479372531705379, "d_left": 0.4084519390941718, "psi_rad": -2.4503947643837325, "kappa_radpm": 0.26625076575191575, "vx_mps": 6.712118179753077, "ax_mps2": -0.17403116593322787}, {"id": 708, "s_m": 70.71141379507128, "d_m": 0.0, "x_m": -0.6756746723420165, "y_m": -17.686224647293134, "d_right": 2.496924490705889, "d_left": 0.3936847644445077, "psi_rad": -2.423655507750156, "kappa_radpm": 0.26656141769892855, "vx_mps": 6.70952813362878, "ax_mps2": -0.1740311659332031}, {"id": 709, "s_m": 70.81128867331292, "d_m": 0.0, "x_m": -0.7500233808662797, "y_m": -17.752905570610604, "d_right": 2.514686676704296, "d_left": 0.39910253686919794, "psi_rad": -2.397536329940542, "kappa_radpm": 0.25636555983507153, "vx_mps": 6.706937087295544, "ax_mps2": 0.2940099370735461}, {"id": 710, "s_m": 70.91116355155454, "d_m": 0.0, "x_m": -0.8226230407519142, "y_m": -17.821450265159847, "d_right": 2.52285305566603, "d_left": 0.40197118199414855, "psi_rad": -2.3724776245507257, "kappa_radpm": 0.24537519958139853, "vx_mps": 6.711313843523825, "ax_mps2": 0.7737518379647822}, {"id": 711, "s_m": 71.01103842979616, "d_m": 0.0, "x_m": -0.8935310110990927, "y_m": -17.891761773443104, "d_right": 2.5167833781388347, "d_left": 0.40446086037154605, "psi_rad": -2.348550904012786, "kappa_radpm": 0.23382302322160234, "vx_mps": 6.722818623723717, "ax_mps2": 1.2573454719618906}, {"id": 712, "s_m": 71.1109133080378, "d_m": 0.0, "x_m": -0.9627938777795347, "y_m": -17.963726347366382, "d_right": 2.47967320944675, "d_left": 0.42857677971664393, "psi_rad": -2.3257807117129534, "kappa_radpm": 0.22180717075420944, "vx_mps": 6.741471997963515, "ax_mps2": 1.7437386481314556}, {"id": 713, "s_m": 71.21078818627942, "d_m": 0.0, "x_m": -1.0304327287150319, "y_m": -18.037192637151996, "d_right": 2.4453263732837, "d_left": 0.43043053816724713, "psi_rad": -2.3042710259539487, "kappa_radpm": 0.20901268326962033, "vx_mps": 6.7672561699451625, "ax_mps2": 2.251067402875773}, {"id": 714, "s_m": 71.31066306452104, "d_m": 0.0, "x_m": -1.0965379176722063, "y_m": -18.112071543502097, "d_right": 2.400409694409514, "d_left": 0.4294993630531769, "psi_rad": -2.2840249040194545, "kappa_radpm": 0.1963372600959823, "vx_mps": 6.800397505676611, "ax_mps2": 2.7415266367239792}, {"id": 715, "s_m": 71.41053794276267, "d_m": 0.0, "x_m": -1.1611472177566573, "y_m": -18.188214405594348, "d_right": 2.3606824955893932, "d_left": 0.44937922910845135, "psi_rad": -2.265057871395003, "kappa_radpm": 0.1835317035081998, "vx_mps": 6.840542779143384, "ax_mps2": 3.2311022996146983}, {"id": 716, "s_m": 71.5104128210043, "d_m": 0.0, "x_m": -1.2243634619733916, "y_m": -18.265545131895923, "d_right": 2.3256349603031086, "d_left": 0.4782139142515446, "psi_rad": -2.2473636397624306, "kappa_radpm": 0.17079392760069578, "vx_mps": 6.887556708355378, "ax_mps2": 3.7144138852179593}, {"id": 717, "s_m": 71.61028769924592, "d_m": 0.0, "x_m": -1.2862397274210593, "y_m": -18.343928192182304, "d_right": 2.2817267509293586, "d_left": 0.5054341365005676, "psi_rad": -2.2309373021659136, "kappa_radpm": 0.1582021055797138, "vx_mps": 6.941209597747458, "ax_mps2": 4.191503409315125}, {"id": 718, "s_m": 71.71016257748755, "d_m": 0.0, "x_m": -1.3468837093970265, "y_m": -18.423297421652123, "d_right": 2.2428631228721243, "d_left": 0.516702220892424, "psi_rad": -2.215759364013124, "kappa_radpm": 0.14568951314142406, "vx_mps": 7.0012600626723565, "ax_mps2": 4.669149520967873}, {"id": 719, "s_m": 71.81003745572917, "d_m": 0.0, "x_m": -1.4063539117268333, "y_m": -18.503523835122774, "d_right": 2.2092194755684167, "d_left": 0.5242967743286798, "psi_rad": -2.2018344429305925, "kappa_radpm": 0.13320082473385178, "vx_mps": 7.067552896510087, "ax_mps2": 5.15347879248726}, {"id": 720, "s_m": 71.9099123339708, "d_m": 0.0, "x_m": -1.4647630786012735, "y_m": -18.58455035448836, "d_right": 2.1809103479501957, "d_left": 0.5419963830107577, "psi_rad": -2.1891494579379884, "kappa_radpm": 0.12079296349000923, "vx_mps": 7.140007708595909, "ax_mps2": 5.216651347750493}, {"id": 721, "s_m": 72.00978721221243, "d_m": 0.0, "x_m": -1.5221800592902803, "y_m": -18.66626088515237, "d_right": 2.1454968170051214, "d_left": 0.5623820795484086, "psi_rad": -2.177703758360087, "kappa_radpm": 0.1084404654982403, "vx_mps": 7.212609438696947, "ax_mps2": 5.175044831715166}, {"id": 722, "s_m": 72.10966209045405, "d_m": 0.0, "x_m": -1.578719252824384, "y_m": -18.748603912696964, "d_right": 2.1113718574280353, "d_left": 0.583358050602401, "psi_rad": -2.16748677196332, "kappa_radpm": 0.09610669062487144, "vx_mps": 7.28391713709768, "ax_mps2": 5.134140227281852}, {"id": 723, "s_m": 72.20953696869567, "d_m": 0.0, "x_m": -1.6344563293696661, "y_m": -18.831472325364928, "d_right": 2.077257238063758, "d_left": 0.6049297150526692, "psi_rad": -2.158505850384117, "kappa_radpm": 0.08376183581670611, "vx_mps": 7.353977979315387, "ax_mps2": 5.0939125746687495}, {"id": 724, "s_m": 72.30941184693731, "d_m": 0.0, "x_m": -1.689507468527752, "y_m": -18.9148182688419, "d_right": 2.044899514534788, "d_left": 0.6227411469466563, "psi_rad": -2.1507530520723055, "kappa_radpm": 0.07145992083581758, "vx_mps": 7.422836379484111, "ax_mps2": 5.054338362643587}, {"id": 725, "s_m": 72.40928672517893, "d_m": 0.0, "x_m": -1.7439542524150609, "y_m": -18.998542616913404, "d_right": 2.006704464305891, "d_left": 0.6413859125402658, "psi_rad": -2.1442304123545357, "kappa_radpm": 0.05917236129384065, "vx_mps": 7.490534211504194, "ax_mps2": 5.015395412939189}, {"id": 726, "s_m": 72.50916160342055, "d_m": 0.0, "x_m": -1.7979122764780278, "y_m": -19.082598331867903, "d_right": 1.9712289184539469, "d_left": 0.6584144238521727, "psi_rad": -2.138928753502512, "kappa_radpm": 0.04706040895240626, "vx_mps": 7.5571110079260135, "ax_mps2": 4.977062776283179}, {"id": 727, "s_m": 72.60903648166219, "d_m": 0.0, "x_m": -1.8514682489210281, "y_m": -19.166896965163524, "d_right": 1.9373998855275125, "d_left": 0.6771778636206481, "psi_rad": -2.134823347809011, "kappa_radpm": 0.03515913669064949, "vx_mps": 7.62260413924802, "ax_mps2": 4.9393206386453326}, {"id": 728, "s_m": 72.70891135990381, "d_m": 0.0, "x_m": -1.9047336981229266, "y_m": -19.251392452618237, "d_right": 1.9026578095847437, "d_left": 0.7093138427111427, "psi_rad": -2.131904142676836, "kappa_radpm": 0.02330706353454851, "vx_mps": 7.687048975936286, "ax_mps2": 4.902150236500636}, {"id": 729, "s_m": 72.80878623814543, "d_m": 0.0, "x_m": -1.9577977096752592, "y_m": -19.336004449528843, "d_right": 1.8728306657187124, "d_left": 0.7326921407502716, "psi_rad": -2.130165923386871, "kappa_radpm": 0.011504483082447253, "vx_mps": 7.750479035158303, "ax_mps2": -7.884318738452136}, {"id": 730, "s_m": 72.90866111638707, "d_m": 0.0, "x_m": -2.0107687752531582, "y_m": -19.420684246405465, "d_right": 1.8424523151454386, "d_left": 0.7649513276058278, "psi_rad": -2.129606764463092, "kappa_radpm": -0.0003390367682210109, "vx_mps": 7.6482046603360505, "ax_mps2": -11.528311274753337}, {"id": 731, "s_m": 73.00853599462869, "d_m": 0.0, "x_m": -2.063739583116936, "y_m": -19.505357173092527, "d_right": 1.8080785930624332, "d_left": 0.7794774655132095, "psi_rad": -2.1302358806908073, "kappa_radpm": -0.012260027168809926, "vx_mps": 7.496149488676909, "ax_mps2": -10.901268966112271}, {"id": 732, "s_m": 73.10841087287031, "d_m": 0.0, "x_m": -2.1168157896682995, "y_m": -19.589967939715176, "d_right": 1.7700161006416615, "d_left": 0.8012366473453032, "psi_rad": -2.132056546288146, "kappa_radpm": -0.02420715469398343, "vx_mps": 7.349471500404081, "ax_mps2": -10.320227845137982}, {"id": 733, "s_m": 73.20828575111194, "d_m": 0.0, "x_m": -2.1700956884029634, "y_m": -19.674448922704926, "d_right": 1.7352365974154063, "d_left": 0.8246750967440079, "psi_rad": -2.135072872531815, "kappa_radpm": -0.036198200170643104, "vx_mps": 7.2078615647315, "ax_mps2": -9.781415773512474}, {"id": 734, "s_m": 73.30816062935357, "d_m": 0.0, "x_m": -2.223680129089335, "y_m": -19.758735805110586, "d_right": 1.705257231478078, "d_left": 0.8481583967027837, "psi_rad": -2.139288875071218, "kappa_radpm": -0.04823802064314185, "vx_mps": 7.071027712964584, "ax_mps2": -9.280702372955597}, {"id": 735, "s_m": 73.40803550759519, "d_m": 0.0, "x_m": -2.2776716955404845, "y_m": -19.84276601689348, "d_right": 1.6750190796620088, "d_left": 0.8828307205212402, "psi_rad": -2.144711116527006, "kappa_radpm": -0.060346524484495415, "vx_mps": 6.938704120981225, "ax_mps2": -8.815288690774816}, {"id": 736, "s_m": 73.50791038583682, "d_m": 0.0, "x_m": -2.3321659347605856, "y_m": -19.92646485060779, "d_right": 1.6360255383676983, "d_left": 0.911817775763476, "psi_rad": -2.1513457141760064, "kappa_radpm": -0.07252439864174606, "vx_mps": 6.8106360282436045, "ax_mps2": -8.381865650900673}, {"id": 737, "s_m": 73.60778526407844, "d_m": 0.0, "x_m": -2.387268777987566, "y_m": -20.00977229117413, "d_right": 1.5937425180847467, "d_left": 0.9477692904444267, "psi_rad": -2.159201425798944, "kappa_radpm": -0.08478944949843523, "vx_mps": 6.686590124014418, "ax_mps2": -7.978277237910572}, {"id": 738, "s_m": 73.70766014232007, "d_m": 0.0, "x_m": -2.443070123878524, "y_m": -20.092602543183855, "d_right": 1.5559383528062767, "d_left": 0.989795014149641, "psi_rad": -2.168285737129173, "kappa_radpm": -0.0971408462877936, "vx_mps": 6.566340575323421, "ax_mps2": -7.601768434658328}, {"id": 739, "s_m": 73.80753502056169, "d_m": 0.0, "x_m": -2.4996781667214845, "y_m": -20.174895616950757, "d_right": 1.5157667655797367, "d_left": 1.0271750325787226, "psi_rad": -2.1786096201694694, "kappa_radpm": -0.10959667780799968, "vx_mps": 6.44968039188561, "ax_mps2": -7.250642904909012}, {"id": 740, "s_m": 73.90740989880332, "d_m": 0.0, "x_m": -2.557176830325466, "y_m": -20.25655436159899, "d_right": 1.4700450366375322, "d_left": 1.0658461168732214, "psi_rad": -2.190181669792464, "kappa_radpm": -0.12215598584764181, "vx_mps": 6.336407736475848, "ax_mps2": -6.92265084090662}, {"id": 741, "s_m": 74.00728477704494, "d_m": 0.0, "x_m": -2.615674456210991, "y_m": -20.337514990978388, "d_right": 1.4287154973375076, "d_left": 1.09710298949796, "psi_rad": -2.2030151772094264, "kappa_radpm": -0.1348358441591155, "vx_mps": 6.226336417443356, "ax_mps2": -6.616068951263129}, {"id": 742, "s_m": 74.10715965528657, "d_m": 0.0, "x_m": -2.6752494950044605, "y_m": -20.417670184405313, "d_right": 1.3920671157914914, "d_left": 1.136008104838783, "psi_rad": -2.217119901286104, "kappa_radpm": -0.14764549352072476, "vx_mps": 6.119289748107227, "ax_mps2": -6.32857552046499}, {"id": 743, "s_m": 74.2070345335282, "d_m": 0.0, "x_m": -2.7360073153123077, "y_m": -20.49694747242637, "d_right": 1.3510064825851797, "d_left": 1.1701630416930757, "psi_rad": -2.232513506073481, "kappa_radpm": -0.16061479652800045, "vx_mps": 6.015112268461108, "ax_mps2": -6.059987558292123}, {"id": 744, "s_m": 74.30690941176982, "d_m": 0.0, "x_m": -2.798021401085021, "y_m": -20.575230156684245, "d_right": 1.3049846444034456, "d_left": 1.2118214332186146, "psi_rad": -2.249207860982545, "kappa_radpm": -0.17372075206963708, "vx_mps": 5.913636323205123, "ax_mps2": -5.808751366125114}, {"id": 745, "s_m": 74.40678429001144, "d_m": 0.0, "x_m": -2.861390706834301, "y_m": -20.652432681266035, "d_right": 1.2585316816182741, "d_left": 1.2491342570982005, "psi_rad": -2.2672199741675154, "kappa_radpm": -0.18698037081285682, "vx_mps": 5.814705314310933, "ax_mps2": -5.572356881144932}, {"id": 746, "s_m": 74.50665916825308, "d_m": 0.0, "x_m": -2.926184874229755, "y_m": -20.72843142873735, "d_right": 1.2084459754134473, "d_left": 1.294735007218472, "psi_rad": -2.2865637954525364, "kappa_radpm": -0.20044354316174876, "vx_mps": 5.718192106096929, "ax_mps2": -5.348203373447243}, {"id": 747, "s_m": 74.6065340464947, "d_m": 0.0, "x_m": -2.9924915232854428, "y_m": -20.80312222028964, "d_right": 1.1629628414739772, "d_left": 1.342111276138574, "psi_rad": -2.307267399762973, "kappa_radpm": -0.2141699393656869, "vx_mps": 5.624003790962474, "ax_mps2": -5.138844154775273}, {"id": 748, "s_m": 74.70640892473632, "d_m": 0.0, "x_m": -3.060377100713731, "y_m": -20.87637377829177, "d_right": 1.1195637783462795, "d_left": 1.3906331625043078, "psi_rad": -2.3293502099850807, "kappa_radpm": -0.22806510237703395, "vx_mps": 5.531992025684652, "ax_mps2": -4.94338229334988}, {"id": 749, "s_m": 74.80628380297796, "d_m": 0.0, "x_m": -3.1299137455678108, "y_m": -20.948060281757932, "d_right": 1.0667212142233986, "d_left": 1.4463057494882774, "psi_rad": -2.3528291709645597, "kappa_radpm": -0.24214033686148762, "vx_mps": 5.442012161226602, "ax_mps2": -4.755824997339561}, {"id": 750, "s_m": 74.90615868121958, "d_m": 0.0, "x_m": -3.2011660592461717, "y_m": -21.01804648521031, "d_right": 1.0138118927200215, "d_left": 1.5051268905888195, "psi_rad": -2.3777283029480247, "kappa_radpm": -0.25657970754906934, "vx_mps": 5.354019189155259, "ax_mps2": -4.5723659521908635}, {"id": 751, "s_m": 75.0060335594612, "d_m": 0.0, "x_m": -3.2741832182984876, "y_m": -21.08617887248592, "d_right": 0.9660293333556147, "d_left": 1.5584546009375686, "psi_rad": -2.4040956934319215, "kappa_radpm": -0.2715071750655988, "vx_mps": 5.268034974479606, "ax_mps2": -4.402920580939237}, {"id": 752, "s_m": 75.10590843770284, "d_m": 0.0, "x_m": -3.349024199093401, "y_m": -21.15230929172708, "d_right": 0.9222848594127826, "d_left": 1.612566975074247, "psi_rad": -2.43196621507305, "kappa_radpm": -0.2865719450679134, "vx_mps": 5.183889483629309, "ax_mps2": -4.250581552559}, {"id": 753, "s_m": 75.20578331594446, "d_m": 0.0, "x_m": -3.425717980444262, "y_m": -21.216263460528882, "d_right": 0.8775134557142455, "d_left": 1.6695009872048137, "psi_rad": -2.461336795741955, "kappa_radpm": -0.3016494335319436, "vx_mps": 5.101338799613952, "ax_mps2": -4.09039643468851}, {"id": 754, "s_m": 75.30565819418608, "d_m": 0.0, "x_m": -3.5043205729650797, "y_m": -21.27789120070275, "d_right": 0.838583508534423, "d_left": 1.7326587238664186, "psi_rad": -2.492246614994502, "kappa_radpm": -0.31765678374931106, "vx_mps": 5.020617676810072, "ax_mps2": -3.914038500395423}, {"id": 755, "s_m": 75.40553307242772, "d_m": 0.0, "x_m": -3.584821644624489, "y_m": -21.336981253728815, "d_right": 0.7974271150747867, "d_left": 1.801419758595815, "psi_rad": -2.524825045681979, "kappa_radpm": -0.3349215726429348, "vx_mps": 4.942142614228937, "ax_mps2": -3.7560012447885933}, {"id": 756, "s_m": 75.50540795066934, "d_m": 0.0, "x_m": -3.667258634716331, "y_m": -21.393349368144214, "d_right": 0.7577556474215793, "d_left": 1.8752318187101282, "psi_rad": -2.559142435665697, "kappa_radpm": -0.3520883562050662, "vx_mps": 4.8656462351244105, "ax_mps2": -3.6319688120253097}, {"id": 757, "s_m": 75.60528282891096, "d_m": 0.0, "x_m": -3.7516137576277826, "y_m": -21.446777337874387, "d_right": 0.7111318886978185, "d_left": 1.9482615014725955, "psi_rad": -2.5951255818958145, "kappa_radpm": -0.3685013652341206, "vx_mps": 4.790514419101936, "ax_mps2": -3.4442500809822714}, {"id": 758, "s_m": 75.7051577071526, "d_m": 0.0, "x_m": -3.837896587644496, "y_m": -21.497073884317846, "d_right": 0.6708794264565375, "d_left": 2.0168685639353847, "psi_rad": -2.6328518699454815, "kappa_radpm": -0.3882032137548179, "vx_mps": 4.718160688730288, "ax_mps2": -3.1998399160272397}, {"id": 759, "s_m": 75.80503258539422, "d_m": 0.0, "x_m": -3.926058271858062, "y_m": -21.54398330930996, "d_right": 0.6399609390781397, "d_left": 2.088961845548739, "psi_rad": -2.6727424003920817, "kappa_radpm": -0.4108685040629833, "vx_mps": 4.649932584529378, "ax_mps2": -2.990981381456511}, {"id": 760, "s_m": 75.90490746363584, "d_m": 0.0, "x_m": -4.016110151132794, "y_m": -21.58725616276877, "d_right": 0.6066311454656406, "d_left": 2.1659267511662055, "psi_rad": -2.714890040565537, "kappa_radpm": -0.43236832539041675, "vx_mps": 4.58523993244369, "ax_mps2": -2.7743418784557523}, {"id": 761, "s_m": 76.00478234187747, "d_m": 0.0, "x_m": -4.107881219194888, "y_m": -21.62657173573348, "d_right": 0.5692550110997564, "d_left": 2.2471768560503373, "psi_rad": -2.7591550136107372, "kappa_radpm": -0.4545519561467401, "vx_mps": 4.524406162520484, "ax_mps2": -2.6135693601626744}, {"id": 762, "s_m": 76.1046572201191, "d_m": 0.0, "x_m": -4.201340250900629, "y_m": -21.661685013214623, "d_right": 0.5277288290806539, "d_left": 2.332280175109059, "psi_rad": -2.805574078761077, "kappa_radpm": -0.47440626973366845, "vx_mps": 4.4663398079645455, "ax_mps2": -2.5220314322049546}, {"id": 763, "s_m": 76.20453209836072, "d_m": 0.0, "x_m": -4.296377772864761, "y_m": -21.69234175486315, "d_right": 0.4927089400029031, "d_left": 2.417255437279515, "psi_rad": -2.8538184396618966, "kappa_radpm": -0.49130492649748436, "vx_mps": 4.409582306271508, "ax_mps2": -2.4396281795952826}, {"id": 764, "s_m": 76.30440697660235, "d_m": 0.0, "x_m": -4.392818413594931, "y_m": -21.718304581521622, "d_right": 0.47153192695215507, "d_left": 2.505334489928278, "psi_rad": -2.9036946258677796, "kappa_radpm": -0.508181963790513, "vx_mps": 4.353975307807667, "ax_mps2": -2.2527378766890784}, {"id": 765, "s_m": 76.40428185484397, "d_m": 0.0, "x_m": -4.490450117776402, "y_m": -21.73933562537034, "d_right": 0.4380669829110804, "d_left": 2.5964223418896926, "psi_rad": -2.9555230319903742, "kappa_radpm": -0.5305422487624893, "vx_mps": 4.301989904533674, "ax_mps2": -1.509252160905465}, {"id": 766, "s_m": 76.5041567330856, "d_m": 0.0, "x_m": -4.58906032384148, "y_m": -21.755130561545716, "d_right": 0.40842942208289873, "d_left": 2.615861618782885, "psi_rad": -3.0108699878821703, "kappa_radpm": -0.5801018405523326, "vx_mps": 4.266807282629129, "ax_mps2": -0.6934264643905595}, {"id": 767, "s_m": 76.60403161132723, "d_m": 0.0, "x_m": -4.688398201135424, "y_m": -21.7651894446417, "d_right": 0.39630652494299773, "d_left": 2.605795797865791, "psi_rad": -3.0713106108728585, "kappa_radpm": -0.6296747962190146, "vx_mps": 4.250544979140428, "ax_mps2": -0.06979062269846076}, {"id": 768, "s_m": 76.70390648956885, "d_m": 0.0, "x_m": -4.788182712751786, "y_m": -21.7690094216015, "d_right": 0.4001287904138455, "d_left": 2.6019739007966955, "psi_rad": -3.1359181566566514, "kappa_radpm": -0.6647023987069067, "vx_mps": 4.248904795333389, "ax_mps2": -5.433908862260652}, {"id": 769, "s_m": 76.80378136781039, "d_m": 0.0, "x_m": -4.888001810270651, "y_m": -21.76619431591025, "d_right": 0.400040493272586, "d_left": 2.593548394036493, "psi_rad": 3.07882081099369, "kappa_radpm": -0.7072231653667203, "vx_mps": 4.119195308287687, "ax_mps2": -0.06559456277268509}]}, "global_traj_markers_sp": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 3, "action": 0, "pose": {"position": {"x": -4.899560627782515, "y": -21.81006894760004, "z": 0.13454497959127892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26908995918255785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 3, "action": 0, "pose": {"position": {"x": -4.997337797335173, "y": -21.790428481132025, "z": 0.13422486173435802}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26844972346871604}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 3, "action": 0, "pose": {"position": {"x": -5.0918157802906645, "y": -21.758218665695313, "z": 0.1341730483223492}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2683460966446984}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 3, "action": 0, "pose": {"position": {"x": -5.181205013710637, "y": -21.71414829325817, "z": 0.13412121489389883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26824242978779766}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 3, "action": 0, "pose": {"position": {"x": -5.265599245308499, "y": -21.660483433550443, "z": 0.13735431424269195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2747086284853839}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 3, "action": 0, "pose": {"position": {"x": -5.344323719139505, "y": -21.599183158565218, "z": 0.1416683794170575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.283336758834115}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 3, "action": 0, "pose": {"position": {"x": -5.416890007691375, "y": -21.530742786282307, "z": 0.14498920708169435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2899784141633887}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 3, "action": 0, "pose": {"position": {"x": -5.482987933703448, "y": -21.455796078364347, "z": 0.1480238120248943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2960476240497886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 3, "action": 0, "pose": {"position": {"x": -5.542295231042817, "y": -21.375485717838092, "z": 0.15120392383740933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30240784767481865}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 3, "action": 0, "pose": {"position": {"x": -5.595247142070062, "y": -21.290600099847516, "z": 0.15505098447702526}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3101019689540505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 3, "action": 0, "pose": {"position": {"x": -5.642195165543698, "y": -21.20240080354928, "z": 0.15973026786586184}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31946053573172367}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 3, "action": 0, "pose": {"position": {"x": -5.683660276443885, "y": -21.11139303113418, "z": 0.16470966433479414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3294193286695883}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 3, "action": 0, "pose": {"position": {"x": -5.719926559893217, "y": -21.018194755527457, "z": 0.16976329432570414}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3395265886514083}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 3, "action": 0, "pose": {"position": {"x": -5.751435177959165, "y": -20.923350580366776, "z": 0.17514008755328292}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35028017510656584}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 3, "action": 0, "pose": {"position": {"x": -5.778784752798318, "y": -20.826972931719883, "z": 0.1808880912651854}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3617761825303708}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 3, "action": 0, "pose": {"position": {"x": -5.802250193933405, "y": -20.729997658258043, "z": 0.18685585947424665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3737117189484933}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 3, "action": 0, "pose": {"position": {"x": -5.822452992022898, "y": -20.631700498639052, "z": 0.19299496741903532}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38598993483807065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 3, "action": 0, "pose": {"position": {"x": -5.83946007200482, "y": -20.533640281207276, "z": 0.1992158733348274}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3984317466696548}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 3, "action": 0, "pose": {"position": {"x": -5.85386340499217, "y": -20.434126554489165, "z": 0.2055076825520403}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4110153651040806}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 3, "action": 0, "pose": {"position": {"x": -5.865417957030765, "y": -20.335698203148304, "z": 0.21143153658669755}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4228630731733951}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 3, "action": 0, "pose": {"position": {"x": -5.874533528189421, "y": -20.235102621341515, "z": 0.2169160198212511}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4338320396425022}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 3, "action": 0, "pose": {"position": {"x": -5.881023490080334, "y": -20.136019120598913, "z": 0.22237261018810142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44474522037620284}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 3, "action": 0, "pose": {"position": {"x": -5.8852434428130715, "y": -20.035593042032932, "z": 0.22776021113247455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4555204222649491}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 3, "action": 0, "pose": {"position": {"x": -5.887208252861279, "y": -19.9358929765101, "z": 0.2330024418179562}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4660048836359124}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 3, "action": 0, "pose": {"position": {"x": -5.887290741674756, "y": -19.836793613959333, "z": 0.23832082189742576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4766416437948515}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 3, "action": 0, "pose": {"position": {"x": -5.886080622082671, "y": -19.736562626958165, "z": 0.24346870554117925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4869374110823585}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 3, "action": 0, "pose": {"position": {"x": -5.884116385352806, "y": -19.636983347350867, "z": 0.2484583153081176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4969166306162352}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 3, "action": 0, "pose": {"position": {"x": -5.881802278226103, "y": -19.537239587478847, "z": 0.2533004855763557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5066009711527114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 3, "action": 0, "pose": {"position": {"x": -5.8794273234978265, "y": -19.437493836658238, "z": 0.25800487375565506}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5160097475113101}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 3, "action": 0, "pose": {"position": {"x": -5.877216073660854, "y": -19.337789455620634, "z": 0.2625801318923938}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5251602637847876}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 3, "action": 0, "pose": {"position": {"x": -5.8752999709010485, "y": -19.23764453614308, "z": 0.2670340473838231}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5340680947676462}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 3, "action": 0, "pose": {"position": {"x": -5.873756920513284, "y": -19.138230671119928, "z": 0.2713736593379763}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5427473186759526}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 3, "action": 0, "pose": {"position": {"x": -5.872578902577923, "y": -19.038325782770702, "z": 0.27560535554130866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5512107110826173}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 3, "action": 0, "pose": {"position": {"x": -5.871756284231821, "y": -18.938166183132743, "z": 0.2797349538437988}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5594699076875976}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 3, "action": 0, "pose": {"position": {"x": -5.871258523067628, "y": -18.838767930628915, "z": 0.2837677709170797}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5675355418341594}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 3, "action": 0, "pose": {"position": {"x": -5.871034884743485, "y": -18.738369263474702, "z": 0.28770868070063405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5754173614012681}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 3, "action": 0, "pose": {"position": {"x": -5.871047588053166, "y": -18.63889748896079, "z": 0.2915621643655886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5831243287311773}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 3, "action": 0, "pose": {"position": {"x": -5.871255733128001, "y": -18.53890048565474, "z": 0.29533235325396334}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5906647065079267}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 3, "action": 0, "pose": {"position": {"x": -5.871631600422497, "y": -18.438848156017027, "z": 0.2990230659640499}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5980461319280997}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 3, "action": 0, "pose": {"position": {"x": -5.872157401997953, "y": -18.339264412141198, "z": 0.3026378405287747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6052756810575494}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 3, "action": 0, "pose": {"position": {"x": -5.872852405908779, "y": -18.238853541617743, "z": 0.30617996245805273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6123599249161055}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 3, "action": 0, "pose": {"position": {"x": -5.87372915140901, "y": -18.13941628599032, "z": 0.3096524892769277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6193049785538554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 3, "action": 0, "pose": {"position": {"x": -5.8748376044195485, "y": -18.038874162933656, "z": 0.3130582720803081}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6261165441606162}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 3, "action": 0, "pose": {"position": {"x": -5.876180637567661, "y": -17.93911268046171, "z": 0.31639997453602764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6327999490720553}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 3, "action": 0, "pose": {"position": {"x": -5.877731361674757, "y": -17.83893008972482, "z": 0.31968008969600636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6393601793920127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 3, "action": 0, "pose": {"position": {"x": -5.879422395824008, "y": -17.738981593625827, "z": 0.3229009549168351}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6458019098336703}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 3, "action": 0, "pose": {"position": {"x": -5.881208649113608, "y": -17.63909355363494, "z": 0.3260647651433377}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6521295302866754}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 3, "action": 0, "pose": {"position": {"x": -5.883049385222991, "y": -17.53921730138085, "z": 0.3291735847694297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6583471695388594}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 3, "action": 0, "pose": {"position": {"x": -5.88492068958424, "y": -17.43930857048742, "z": 0.33222935825820277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6644587165164055}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 3, "action": 0, "pose": {"position": {"x": -5.886803885161413, "y": -17.339436707075375, "z": 0.3352339196762892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6704678393525784}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 3, "action": 0, "pose": {"position": {"x": -5.888692710275571, "y": -17.239519530435786, "z": 0.33818900127516976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6763780025503395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 3, "action": 0, "pose": {"position": {"x": -5.890581595031774, "y": -17.139641369459135, "z": 0.34109624123334537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6821924824666907}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 3, "action": 0, "pose": {"position": {"x": -5.8924719230066485, "y": -17.039730638203498, "z": 0.34395719065754066}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6879143813150813}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 3, "action": 0, "pose": {"position": {"x": -5.894363422364128, "y": -16.93985509688538, "z": 0.34677331992781707}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6935466398556341}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 3, "action": 0, "pose": {"position": {"x": -5.896257354170547, "y": -16.839942224368716, "z": 0.3495460244602163}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6990920489204326}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 3, "action": 0, "pose": {"position": {"x": -5.898151959677975, "y": -16.740065105328682, "z": 0.35227662995098546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7045532599019709}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 3, "action": 0, "pose": {"position": {"x": -5.9000485233698985, "y": -16.640153864923736, "z": 0.35496639715827455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7099327943165491}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 3, "action": 0, "pose": {"position": {"x": -5.901945788350247, "y": -16.54027657400432, "z": 0.3576165262702122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7152330525404244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 3, "action": 0, "pose": {"position": {"x": -5.903844978807085, "y": -16.440365719705355, "z": 0.3602281609022682}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7204563218045364}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 3, "action": 0, "pose": {"position": {"x": -5.905744755425418, "y": -16.340487640042557, "z": 0.3628023917616492}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7256047835232984}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 3, "action": 0, "pose": {"position": {"x": -5.907646298859898, "y": -16.240577710553584, "z": 0.36534026001201175}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7306805200240235}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 3, "action": 0, "pose": {"position": {"x": -5.909548368863813, "y": -16.140698925432226, "z": 0.36784276036791835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7356855207358367}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 3, "action": 0, "pose": {"position": {"x": -5.911452088429437, "y": -16.040789840578856, "z": 0.3703108439451024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7406216878902048}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 3, "action": 0, "pose": {"position": {"x": -5.913356270958929, "y": -15.940910225746016, "z": 0.3727454208896923}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7454908417793846}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 3, "action": 0, "pose": {"position": {"x": -5.91526197852101, "y": -15.841002087453145, "z": 0.37514736280699224}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7502947256139845}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 3, "action": 0, "pose": {"position": {"x": -5.917168097558913, "y": -15.74112160151023, "z": 0.37751750500818754}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7550350100163751}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 3, "action": 0, "pose": {"position": {"x": -5.919075624021428, "y": -15.641214437444614, "z": 0.37985664859138496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7597132971827699}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 3, "action": 0, "pose": {"position": {"x": -5.92098351668585, "y": -15.541333030990426, "z": 0.38216556237167987}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7643311247433597}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 3, "action": 0, "pose": {"position": {"x": -5.922892702036155, "y": -15.44142687509744, "z": 0.3844449846734252}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7688899693468504}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 3, "action": 0, "pose": {"position": {"x": -5.924802214964342, "y": -15.341544517630417, "z": 0.3866956249965397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7733912499930794}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 3, "action": 0, "pose": {"position": {"x": -5.926712909842518, "y": -15.241639386555086, "z": 0.3889181655675105}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.777836331135021}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 3, "action": 0, "pose": {"position": {"x": -5.928623898924552, "y": -15.141756058943646, "z": 0.39111326278469555}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7822265255693911}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 3, "action": 0, "pose": {"position": {"x": -5.93053596287108, "y": -15.041851958914778, "z": 0.3932815485665986}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7865630971331972}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 3, "action": 0, "pose": {"position": {"x": -5.932448292113201, "y": -14.941967650381267, "z": 0.39542363161096294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7908472632219259}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 3, "action": 0, "pose": {"position": {"x": -5.934361592684549, "y": -14.84206457964444, "z": 0.39754009857178907}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7950801971435781}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 3, "action": 0, "pose": {"position": {"x": -5.936275132964891, "y": -14.742179302423454, "z": 0.39963151516072326}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7992630303214465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 3, "action": 0, "pose": {"position": {"x": -5.938189544696095, "y": -14.64227724014292, "z": 0.4016984271786731}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8033968543573462}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 3, "action": 0, "pose": {"position": {"x": -5.940104173413889, "y": -14.542390976109836, "z": 0.40374136148297873}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8074827229659575}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 3, "action": 0, "pose": {"position": {"x": -5.942019576856434, "y": -14.442489922732253, "z": 0.4057608268949917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8115216537899834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 3, "action": 0, "pose": {"position": {"x": -5.943935175865826, "y": -14.342602791157304, "z": 0.4077573150524912}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8155146301049824}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 3, "action": 0, "pose": {"position": {"x": -5.945851455228725, "y": -14.242702647030319, "z": 0.40973130121097956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8194626024219591}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 3, "action": 0, "pose": {"position": {"x": -5.947767908451875, "y": -14.14281438001561, "z": 0.4116832449975563}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8233664899951126}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 3, "action": 0, "pose": {"position": {"x": -5.9496849598014165, "y": -14.042915309993788, "z": 0.41361359112075585}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8272271822415117}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 3, "action": 0, "pose": {"position": {"x": -5.951602178563267, "y": -13.94302680901749, "z": 0.4155227700394537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8310455400789074}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 3, "action": 0, "pose": {"position": {"x": -5.953519860259601, "y": -13.843128215027978, "z": 0.4174111985936891}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8348223971873782}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 3, "action": 0, "pose": {"position": {"x": -5.955437628587553, "y": -13.74323722180005, "z": 0.41927928060002156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8385585612000431}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 3, "action": 0, "pose": {"position": {"x": -5.957356186459723, "y": -13.643340432430412, "z": 0.4211274074138288}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8422548148276576}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 3, "action": 0, "pose": {"position": {"x": -5.959276122498999, "y": -13.543452053582076, "z": 0.4229559584607621}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8459119169215242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 3, "action": 0, "pose": {"position": {"x": -5.961200040253177, "y": -13.443554464116765, "z": 0.42476530173940286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8495306034788057}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 3, "action": 0, "pose": {"position": {"x": -5.963130672108825, "y": -13.343662939149862, "z": 0.42655579429700374}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8531115885940075}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 3, "action": 0, "pose": {"position": {"x": -5.9650728682456435, "y": -13.24376654902804, "z": 0.4283277826800578}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8566555653601156}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 3, "action": 0, "pose": {"position": {"x": -5.967031663775583, "y": -13.14383185853746, "z": 0.4300816033613021}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8601632067226042}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 3, "action": 0, "pose": {"position": {"x": -5.96900444865528, "y": -13.043967300412703, "z": 0.43181758314464697}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8636351662892939}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 3, "action": 0, "pose": {"position": {"x": -5.970991987169371, "y": -12.943998014258387, "z": 0.4335360395494092}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8670720790988184}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 3, "action": 0, "pose": {"position": {"x": -5.9729837144151805, "y": -12.844172364459135, "z": 0.43523728117512794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8704745623502559}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 3, "action": 0, "pose": {"position": {"x": -5.974978947038129, "y": -12.74421087903832, "z": 0.4369216080481485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.873843216096297}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 3, "action": 0, "pose": {"position": {"x": -5.976968968588395, "y": -12.644389488316703, "z": 0.4385893119510777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8771786239021554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 3, "action": 0, "pose": {"position": {"x": -5.97895730957837, "y": -12.544431856495304, "z": 0.4402406767361319}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8804813534722638}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 3, "action": 0, "pose": {"position": {"x": -5.980937242423829, "y": -12.444607312115084, "z": 0.44187597862333144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8837519572466629}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 3, "action": 0, "pose": {"position": {"x": -5.982913130474411, "y": -12.344646000715997, "z": 0.4434954864844277}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8869909729688554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 3, "action": 0, "pose": {"position": {"x": -5.984879459758955, "y": -12.244825385032982, "z": 0.44509946211338747}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8901989242267749}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 3, "action": 0, "pose": {"position": {"x": -5.986842087041505, "y": -12.144862365533776, "z": 0.4466881604842057}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8933763209684114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 3, "action": 0, "pose": {"position": {"x": -5.988795458692, "y": -12.045044322690574, "z": 0.44826182999676406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8965236599935281}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 3, "action": 0, "pose": {"position": {"x": -5.990745367253725, "y": -11.945077382162067, "z": 0.4498207127114064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8996414254228128}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 3, "action": 0, "pose": {"position": {"x": -5.9926860486822875, "y": -11.845263912623569, "z": 0.45136504457285703}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9027300891457141}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 3, "action": 0, "pose": {"position": {"x": -5.994623721268096, "y": -11.74529257925086, "z": 0.452895055624069}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.905790111248138}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 3, "action": 0, "pose": {"position": {"x": -5.996552339626999, "y": -11.64548426878837, "z": 0.4544109702105485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.908821940421097}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 3, "action": 0, "pose": {"position": {"x": -5.998478490246538, "y": -11.545507704535893, "z": 0.4559130071756713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9118260143513426}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 3, "action": 0, "pose": {"position": {"x": -6.000396095988056, "y": -11.445689556663709, "z": 0.45740138004746933}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9148027600949387}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 3, "action": 0, "pose": {"position": {"x": -6.0023112838197035, "y": -11.345723116586734, "z": 0.45887629721734097}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9177525944346819}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 3, "action": 0, "pose": {"position": {"x": -6.004218832973505, "y": -11.245894266518178, "z": 0.46033796211110545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9206759242222109}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 3, "action": 0, "pose": {"position": {"x": -6.00612406108278, "y": -11.145938986212519, "z": 0.4617865733528005}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.923573146705601}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 3, "action": 0, "pose": {"position": {"x": -6.00802265785287, "y": -11.04609881397484, "z": 0.46322232492159443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9264446498431889}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 3, "action": 0, "pose": {"position": {"x": -6.009919081906993, "y": -10.946155527903072, "z": 0.4646454063021647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9292908126043294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 3, "action": 0, "pose": {"position": {"x": -6.011809968214277, "y": -10.846303631585377, "z": 0.4660560026288711}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9321120052577422}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 3, "action": 0, "pose": {"position": {"x": -6.013698878621471, "y": -10.746372906494832, "z": 0.4674542948240347}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9349085896480694}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 3, "action": 0, "pose": {"position": {"x": -6.015583407800159, "y": -10.646509163052748, "z": 0.4688404597306142}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9376809194612284}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 3, "action": 0, "pose": {"position": {"x": -6.0174662021849175, "y": -10.54659123699717, "z": 0.47021467023955404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9404293404791081}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 3, "action": 0, "pose": {"position": {"x": -6.01934580622359, "y": -10.446715839882602, "z": 0.47157709541206494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9431541908241299}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 3, "action": 0, "pose": {"position": {"x": -6.021223953060188, "y": -10.346810554030228, "z": 0.47292790059707973}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9458558011941595}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 3, "action": 0, "pose": {"position": {"x": -6.023100097932146, "y": -10.246924056534406, "z": 0.47426724754411625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9485344950882325}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 3, "action": 0, "pose": {"position": {"x": -6.024975088568134, "y": -10.147030784902825, "z": 0.47559529451176424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9511905890235285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 3, "action": 0, "pose": {"position": {"x": -6.026849222877986, "y": -10.047134144246249, "z": 0.4769121963720024}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9538243927440048}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 3, "action": 0, "pose": {"position": {"x": -6.028722514318753, "y": -9.947251726796368, "z": 0.47821810471053927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9564362094210785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 3, "action": 0, "pose": {"position": {"x": -6.030595987190701, "y": -9.847346330385903, "z": 0.4795131679233625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.959026335846725}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 3, "action": 0, "pose": {"position": {"x": -6.032468927809552, "y": -9.747473004761035, "z": 0.4807975313096695}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.961595062619339}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 3, "action": 0, "pose": {"position": {"x": -6.034342968766549, "y": -9.647560744434001, "z": 0.4820713371613439}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9641426743226879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 3, "action": 0, "pose": {"position": {"x": -6.036216707099848, "y": -9.547694086930099, "z": 0.48333472484913376}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9666694496982675}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 3, "action": 0, "pose": {"position": {"x": -6.038092096326258, "y": -9.447777264683145, "z": 0.4845878309056796}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9691756618113592}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 3, "action": 0, "pose": {"position": {"x": -6.039967583339025, "y": -9.347914182742906, "z": 0.4858307891055297}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9716615782110594}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 3, "action": 0, "pose": {"position": {"x": -6.041845450796834, "y": -9.247995868943304, "z": 0.48706373054227814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9741274610845563}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 3, "action": 0, "pose": {"position": {"x": -6.043722721017022, "y": -9.148127491056929, "z": 0.48828678370294887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9765735674058977}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 3, "action": 0, "pose": {"position": {"x": -6.045600991946974, "y": -9.048215661415766, "z": 0.48950007453974587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9790001490794917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 3, "action": 0, "pose": {"position": {"x": -6.047482864007713, "y": -8.948337164348727, "z": 0.4907037265392826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9814074530785653}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 3, "action": 0, "pose": {"position": {"x": -6.049368709084152, "y": -8.848436463235982, "z": 0.491897860789398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.983795721578796}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 3, "action": 0, "pose": {"position": {"x": -6.051242953165544, "y": -8.748552149380467, "z": 0.4930825960436609}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9861651920873218}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 3, "action": 0, "pose": {"position": {"x": -6.053096950805393, "y": -8.648659675328188, "z": 0.4942580487836604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9885160975673208}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 3, "action": 0, "pose": {"position": {"x": -6.054936437660556, "y": -8.548757015987928, "z": 0.4954243332791741}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9908486665583482}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 3, "action": 0, "pose": {"position": {"x": -6.056767445102207, "y": -8.448854158715811, "z": 0.49658156164630135}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9931631232926027}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 3, "action": 0, "pose": {"position": {"x": -6.058594913332234, "y": -8.348931297290529, "z": 0.4977298439036462}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9954596878072924}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 3, "action": 0, "pose": {"position": {"x": -6.060420076751885, "y": -8.249035961703008, "z": 0.4988692880266287}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9977385760532574}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 3, "action": 0, "pose": {"position": {"x": -6.0622434554580025, "y": -8.149116805000057, "z": 0.5}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 1.0}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 3, "action": 0, "pose": {"position": {"x": -6.06406216848548, "y": -8.049248398671047, "z": 0.49624506725023215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9924901345004643}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 3, "action": 0, "pose": {"position": {"x": -6.065876207706251, "y": -7.949319814372342, "z": 0.4912482519877289}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9824965039754578}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 3, "action": 0, "pose": {"position": {"x": -6.06768361175003, "y": -7.849470806961824, "z": 0.4861992914105111}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9723985828210222}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 3, "action": 0, "pose": {"position": {"x": -6.0694891892770615, "y": -7.74951894099945, "z": 0.481107109442623}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.962214218885246}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 3, "action": 0, "pose": {"position": {"x": -6.071286584509452, "y": -7.649698050594017, "z": 0.4759811352775795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.951962270555159}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 3, "action": 0, "pose": {"position": {"x": -6.073080925970855, "y": -7.549725546104065, "z": 0.47080645813356636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9416129162671327}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 3, "action": 0, "pose": {"position": {"x": -6.0748830544712735, "y": -7.449893640799765, "z": 0.4656611461610208}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9313222923220416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 3, "action": 0, "pose": {"position": {"x": -6.076712850482067, "y": -7.34993800050498, "z": 0.46045833894695665}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9209166778939133}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 3, "action": 0, "pose": {"position": {"x": -6.078565255914284, "y": -7.250084140849606, "z": 0.4551791717111921}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9103583434223842}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 3, "action": 0, "pose": {"position": {"x": -6.080441582340061, "y": -7.150158093883539, "z": 0.449841185630273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.899682371260546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 3, "action": 0, "pose": {"position": {"x": -6.082341423861117, "y": -7.050282368629195, "z": 0.4444469831452784}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8888939662905568}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 3, "action": 0, "pose": {"position": {"x": -6.084267488185921, "y": -6.950386064406781, "z": 0.43898803226157185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8779760645231437}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 3, "action": 0, "pose": {"position": {"x": -6.086219481638653, "y": -6.85049032809477, "z": 0.43346115766681487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8669223153336297}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 3, "action": 0, "pose": {"position": {"x": -6.088196767629455, "y": -6.7506204788505055, "z": 0.4278631626056195}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.855726325211239}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 3, "action": 0, "pose": {"position": {"x": -6.090200343268654, "y": -6.6507091584286835, "z": 0.4221909472015191}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8443818944030382}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 3, "action": 0, "pose": {"position": {"x": -6.092227095401488, "y": -6.5508582497172165, "z": 0.4164381480209606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8328762960419211}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 3, "action": 0, "pose": {"position": {"x": -6.094278015540512, "y": -6.4509385867040585, "z": 0.410600147965201}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.821200295930402}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 3, "action": 0, "pose": {"position": {"x": -6.096347786861558, "y": -6.351086171531673, "z": 0.404668636967952}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.809337273935904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 3, "action": 0, "pose": {"position": {"x": -6.09843578439634, "y": -6.251176478968838, "z": 0.39863894611057865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7972778922211573}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 3, "action": 0, "pose": {"position": {"x": -6.100535587082357, "y": -6.151306861478348, "z": 0.3925004981815723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7850009963631446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 3, "action": 0, "pose": {"position": {"x": -6.102643129103258, "y": -6.051418466340241, "z": 0.3862472485749842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7724944971499684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 3, "action": 0, "pose": {"position": {"x": -6.1047510747219444, "y": -5.9515435975014235, "z": 0.3798977482023397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7597954964046794}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 3, "action": 0, "pose": {"position": {"x": -6.106851995783834, "y": -5.851657770764217, "z": 0.37347978288999484}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7469595657799897}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 3, "action": 0, "pose": {"position": {"x": -6.108935764933792, "y": -5.751792922740136, "z": 0.3669928474128715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.733985694825743}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 3, "action": 0, "pose": {"position": {"x": -6.110992760389074, "y": -5.651885493543389, "z": 0.3604340952752557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7208681905505114}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 3, "action": 0, "pose": {"position": {"x": -6.113008310907776, "y": -5.552048940124011, "z": 0.35380890156094386}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7076178031218877}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 3, "action": 0, "pose": {"position": {"x": -6.114970975669949, "y": -5.452091160880431, "z": 0.34711272984389663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6942254596877933}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 3, "action": 0, "pose": {"position": {"x": -6.116858579419947, "y": -5.352304861783063, "z": 0.3403332562677761}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6806665125355522}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 3, "action": 0, "pose": {"position": {"x": -6.11866265164299, "y": -5.252306642196567, "z": 0.33346465179988316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6669293035997663}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 3, "action": 0, "pose": {"position": {"x": -6.120355380588857, "y": -5.152550132881306, "z": 0.3265647087351936}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6531294174703872}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 3, "action": 0, "pose": {"position": {"x": -6.121910460212185, "y": -5.052571777456332, "z": 0.31957595874860095}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6391519174972019}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 3, "action": 0, "pose": {"position": {"x": -6.12330290891494, "y": -4.952788548024886, "z": 0.3124311654538809}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6248623309077618}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 3, "action": 0, "pose": {"position": {"x": -6.1245568185342645, "y": -4.852828427152674, "z": 0.3051840707713179}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6103681415426357}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 3, "action": 0, "pose": {"position": {"x": -6.125599708611515, "y": -4.7529787208306065, "z": 0.29839042573723523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5967808514744705}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 3, "action": 0, "pose": {"position": {"x": -6.126228720364063, "y": -4.653043242908958, "z": 0.29190573135271364}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5838114627054273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 3, "action": 0, "pose": {"position": {"x": -6.126266874804788, "y": -4.553134452944792, "z": 0.28557264885072947}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5711452977014589}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 3, "action": 0, "pose": {"position": {"x": -6.125585283820748, "y": -4.453262145720753, "z": 0.27923924371486464}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5584784874297293}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 3, "action": 0, "pose": {"position": {"x": -6.124099160659964, "y": -4.353321620540887, "z": 0.27277661269119025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5455532253823805}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 3, "action": 0, "pose": {"position": {"x": -6.121775904016995, "y": -4.253556721469723, "z": 0.2661622619178756}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5323245238357512}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 3, "action": 0, "pose": {"position": {"x": -6.1186775843393955, "y": -4.153607202604039, "z": 0.25906021860175404}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5181204372035081}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 3, "action": 0, "pose": {"position": {"x": -6.114923022301422, "y": -4.053836785889145, "z": 0.25220519522551454}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5044103904510291}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 3, "action": 0, "pose": {"position": {"x": -6.110120429518528, "y": -3.953915699582811, "z": 0.2467760438510905}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.493552087702181}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 3, "action": 0, "pose": {"position": {"x": -6.10366132692049, "y": -3.85435618744977, "z": 0.2412373583724901}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4824747167449802}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 3, "action": 0, "pose": {"position": {"x": -6.09553584101279, "y": -3.754686976485131, "z": 0.23522865402495294}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4704573080499059}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 3, "action": 0, "pose": {"position": {"x": -6.086132128632959, "y": -3.6552139127551633, "z": 0.22881754626853384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4576350925370677}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 3, "action": 0, "pose": {"position": {"x": -6.074959398648407, "y": -3.5558125952074215, "z": 0.224421964710324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.448843929420648}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 3, "action": 0, "pose": {"position": {"x": -6.061099335474988, "y": -3.4568872159687274, "z": 0.219966787138248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.439933574276496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 3, "action": 0, "pose": {"position": {"x": -6.04459715215647, "y": -3.358360230708739, "z": 0.21501084389114813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43002168778229627}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 3, "action": 0, "pose": {"position": {"x": -6.026161878497349, "y": -3.2600706221793865, "z": 0.20843671691560722}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41687343383121445}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 3, "action": 0, "pose": {"position": {"x": -6.005417386073381, "y": -3.1622672301280597, "z": 0.2043445998673428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4086891997346856}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 3, "action": 0, "pose": {"position": {"x": -5.9810624830904136, "y": -3.0652649787492154, "z": 0.20096106349584458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40192212699168917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 3, "action": 0, "pose": {"position": {"x": -5.95267447657629, "y": -2.9695023646119494, "z": 0.1976081147776548}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3952162295553096}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 3, "action": 0, "pose": {"position": {"x": -5.92050032439933, "y": -2.8748344109047976, "z": 0.19383359506298864}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3876671901259773}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 3, "action": 0, "pose": {"position": {"x": -5.884133065846089, "y": -2.78173033781782, "z": 0.19285141087371205}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3857028217474241}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 3, "action": 0, "pose": {"position": {"x": -5.842385393556556, "y": -2.691066129984873, "z": 0.1927769664713937}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3855539329427874}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 3, "action": 0, "pose": {"position": {"x": -5.794940214113955, "y": -2.603178563902416, "z": 0.19270249330988012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38540498661976025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 3, "action": 0, "pose": {"position": {"x": -5.74273617774981, "y": -2.5181017403460495, "z": 0.19438344683779232}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38876689367558465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 3, "action": 0, "pose": {"position": {"x": -5.685949831629076, "y": -2.4359157460107776, "z": 0.19601528865352497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39203057730704993}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 3, "action": 0, "pose": {"position": {"x": -5.624266501003136, "y": -2.357476361277539, "z": 0.19593956447071295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3918791289414259}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 3, "action": 0, "pose": {"position": {"x": -5.55783649963083, "y": -2.282887233513327, "z": 0.19595295314774222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39190590629548444}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 3, "action": 0, "pose": {"position": {"x": -5.487645832209265, "y": -2.2118777287713476, "z": 0.1953567099022792}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3907134198045584}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 3, "action": 0, "pose": {"position": {"x": -5.413822612076451, "y": -2.144617930164542, "z": 0.19528129840571995}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3905625968114399}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 3, "action": 0, "pose": {"position": {"x": -5.336008763523747, "y": -2.0820733591944083, "z": 0.1952058577763598}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3904117155527196}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 3, "action": 0, "pose": {"position": {"x": -5.254672840203364, "y": -2.0240118693459306, "z": 0.19610446255876146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3922089251175229}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 3, "action": 0, "pose": {"position": {"x": -5.171102432175445, "y": -1.9691345089162524, "z": 0.2006340516415531}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4012681032831062}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 3, "action": 0, "pose": {"position": {"x": -5.085849871312182, "y": -1.9171102365812953, "z": 0.20585305955216487}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41170611910432975}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 3, "action": 0, "pose": {"position": {"x": -4.998556837519696, "y": -1.8684814058335848, "z": 0.20910412240828893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41820824481657787}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 3, "action": 0, "pose": {"position": {"x": -4.909488677271563, "y": -1.8231532631941545, "z": 0.2124761400406878}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4249522800813756}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 3, "action": 0, "pose": {"position": {"x": -4.819199694717429, "y": -1.780122693344913, "z": 0.2180780212013106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4361560424026212}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 3, "action": 0, "pose": {"position": {"x": -4.72814565941854, "y": -1.7390087889134114, "z": 0.22391689042646515}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4478337808529303}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 3, "action": 0, "pose": {"position": {"x": -4.636181317244701, "y": -1.6999746539875926, "z": 0.2293217864276295}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.458643572855259}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 3, "action": 0, "pose": {"position": {"x": -4.543322127663928, "y": -1.6630325086167246, "z": 0.23431453082951229}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46862906165902457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 3, "action": 0, "pose": {"position": {"x": -4.44977617742436, "y": -1.6279201701142323, "z": 0.23959016440417275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4791803288083455}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 3, "action": 0, "pose": {"position": {"x": -4.355593670707256, "y": -1.5945052330084397, "z": 0.24469842027152575}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4893968405430515}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 3, "action": 0, "pose": {"position": {"x": -4.260811422712556, "y": -1.562954171662971, "z": 0.2495085120688632}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4990170241377264}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 3, "action": 0, "pose": {"position": {"x": -4.165361106461529, "y": -1.5331970755922524, "z": 0.2540881269785286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5081762539570572}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 3, "action": 0, "pose": {"position": {"x": -4.069565603054876, "y": -1.5049352302572077, "z": 0.25877057716598084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5175411543319617}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 3, "action": 0, "pose": {"position": {"x": -3.9732987421695722, "y": -1.4779346662206043, "z": 0.2633252420928643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5266504841857286}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 3, "action": 0, "pose": {"position": {"x": -3.876765406103879, "y": -1.4524405265790326, "z": 0.26775977788757194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5355195557751439}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 3, "action": 0, "pose": {"position": {"x": -3.779680326883116, "y": -1.4283892348483112, "z": 0.2720811096575628}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5441622193151257}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 3, "action": 0, "pose": {"position": {"x": -3.6824671890886833, "y": -1.4055314647147195, "z": 0.2762955256417875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.552591051283575}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 3, "action": 0, "pose": {"position": {"x": -3.5848838502495664, "y": -1.3835114795615093, "z": 0.2804087563219626}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5608175126439252}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 3, "action": 0, "pose": {"position": {"x": -3.487370885776238, "y": -1.362286390064388, "z": 0.28442604132936433}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5688520826587287}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 3, "action": 0, "pose": {"position": {"x": -3.3895066041774555, "y": -1.3417892613093183, "z": 0.28835218637243}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.57670437274486}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 3, "action": 0, "pose": {"position": {"x": -3.291594201531053, "y": -1.3223465476202376, "z": 0.292191611946256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.584383223892512}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 3, "action": 0, "pose": {"position": {"x": -3.1933305932366602, "y": -1.3040710492698526, "z": 0.2959483952291491}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5918967904582982}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 3, "action": 0, "pose": {"position": {"x": -3.0948598686580464, "y": -1.2870099190154443, "z": 0.2996263062959729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5992526125919458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 3, "action": 0, "pose": {"position": {"x": -2.996238653785697, "y": -1.271005594493872, "z": 0.3032288395630829}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6064576791261658}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 3, "action": 0, "pose": {"position": {"x": -2.897430939064187, "y": -1.2557088898195006, "z": 0.3067592412105513}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6135184824211026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 3, "action": 0, "pose": {"position": {"x": -2.7987211829246057, "y": -1.2410451152158313, "z": 0.3102205331933565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.620441066386713}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 3, "action": 0, "pose": {"position": {"x": -2.6997275992799357, "y": -1.2270335277084647, "z": 0.31361553434623923}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6272310686924785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 3, "action": 0, "pose": {"position": {"x": -2.6008836240485125, "y": -1.2137681819395965, "z": 0.31694687900097535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6338937580019507}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 3, "action": 0, "pose": {"position": {"x": -2.5016502416689224, "y": -1.2011734368853835, "z": 0.3202170334653265}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.640434066930653}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 3, "action": 0, "pose": {"position": {"x": -2.402627315633585, "y": -1.1892818426195604, "z": 0.3234283106564091}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6468566213128182}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 3, "action": 0, "pose": {"position": {"x": -2.3032210041963657, "y": -1.177987760338009, "z": 0.32658288313500927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6531657662700185}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 3, "action": 0, "pose": {"position": {"x": -2.2039581292749117, "y": -1.1674089794141682, "z": 0.3296827947493692}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6593655894987384}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 3, "action": 0, "pose": {"position": {"x": -2.1044751764352236, "y": -1.1574580342394465, "z": 0.3327299710655777}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6654599421311554}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 3, "action": 0, "pose": {"position": {"x": -2.005054224785118, "y": -1.1478485761921406, "z": 0.3357262287356301}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6714524574712601}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 3, "action": 0, "pose": {"position": {"x": -1.9056035211090538, "y": -1.1383776012216802, "z": 0.3386732839324858}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6773465678649716}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 3, "action": 0, "pose": {"position": {"x": -1.8061403873632411, "y": -1.1290603984264638, "z": 0.34157275996324876}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6831455199264975}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 3, "action": 0, "pose": {"position": {"x": -1.7066885902544744, "y": -1.1200173839960994, "z": 0.3444261941562817}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6888523883125633}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 3, "action": 0, "pose": {"position": {"x": -1.6071372451485342, "y": -1.1114021969097692, "z": 0.34723504410513856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6944700882102771}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 3, "action": 0, "pose": {"position": {"x": -1.507590762951408, "y": -1.1032417917168529, "z": 0.3500006933412444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7000013866824888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 3, "action": 0, "pose": {"position": {"x": -1.4079664602179802, "y": -1.0954808635916655, "z": 0.352724456497935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.70544891299587}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 3, "action": 0, "pose": {"position": {"x": -1.3083468316500584, "y": -1.0880559504459326, "z": 0.355407584020513}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.710815168041026}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 3, "action": 0, "pose": {"position": {"x": -1.2086934852354925, "y": -1.0809200638397325, "z": 0.3580512664701726}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7161025329403452}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 3, "action": 0, "pose": {"position": {"x": -1.109030481432693, "y": -1.074085238523628, "z": 0.36065663846379153}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7213132769275831}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 3, "action": 0, "pose": {"position": {"x": -1.0093276732044596, "y": -1.0675538080052611, "z": 0.36322478228655514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7264495645731103}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 3, "action": 0, "pose": {"position": {"x": -0.9096347000164201, "y": -1.061321199270383, "z": 0.36575673121001806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7315134624200361}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 3, "action": 0, "pose": {"position": {"x": -0.8098676857378027, "y": -1.0553678149163817, "z": 0.3682534725444406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7365069450888811}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 3, "action": 0, "pose": {"position": {"x": -0.7101678202693992, "y": -1.0496942072828694, "z": 0.370715950450955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.74143190090191}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 3, "action": 0, "pose": {"position": {"x": -0.6103642098770712, "y": -1.044330356814938, "z": 0.3731450685362672}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7462901370725344}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 3, "action": 0, "pose": {"position": {"x": -0.5106148446060205, "y": -1.0392687958025328, "z": 0.37554169225009887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7510833845001977}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 3, "action": 0, "pose": {"position": {"x": -0.41081472067423735, "y": -1.0343190982158732, "z": 0.3779066511033983}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7558133022067965}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 3, "action": 0, "pose": {"position": {"x": -0.31103053275963605, "y": -1.0294276822266402, "z": 0.38024074072342984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7604814814468597}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 3, "action": 0, "pose": {"position": {"x": -0.21125040004780193, "y": -1.024743863600993, "z": 0.38254472476017026}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7650894495203405}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 3, "action": 0, "pose": {"position": {"x": -0.11139969301674811, "y": -1.020314751510732, "z": 0.38481933665695234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7696386733139047}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 3, "action": 0, "pose": {"position": {"x": -0.01162607179931159, "y": -1.0161080073834272, "z": 0.38706528129698914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7741305625939783}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 3, "action": 0, "pose": {"position": {"x": 0.08828644640147461, "y": -1.012104548117619, "z": 0.38928323653625146}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7785664730725029}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 3, "action": 0, "pose": {"position": {"x": 0.1880401261458981, "y": -1.0083200557124181, "z": 0.3914738546321405}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.782947709264281}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 3, "action": 0, "pose": {"position": {"x": 0.28795066593573665, "y": -1.0047427748997437, "z": 0.3936377635764869}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7872755271529738}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 3, "action": 0, "pose": {"position": {"x": 0.38774779810188625, "y": -1.0013809823585065, "z": 0.3957755683405917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7915511366811834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 3, "action": 0, "pose": {"position": {"x": 0.48764065860726247, "y": -0.9982242423952732, "z": 0.3978878520393032}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7957757040786064}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 3, "action": 0, "pose": {"position": {"x": 0.5874907703987252, "y": -0.9952803259428781, "z": 0.39997517702047114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7999503540409423}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 3, "action": 0, "pose": {"position": {"x": 0.6873664905621807, "y": -0.9925593869299001, "z": 0.4020380858855449}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8040761717710898}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 3, "action": 0, "pose": {"position": {"x": 0.7872666152756224, "y": -0.9900413639297313, "z": 0.40407710244656186}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8081542048931237}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 3, "action": 0, "pose": {"position": {"x": 0.887124018471227, "y": -0.9876716192561764, "z": 0.40609273262430456}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8121854652486091}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 3, "action": 0, "pose": {"position": {"x": 0.9870603514424621, "y": -0.9853484291324686, "z": 0.40808546529198875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8161709305839775}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 3, "action": 0, "pose": {"position": {"x": 1.0868899532779543, "y": -0.9829771757897904, "z": 0.41005577306846663}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8201115461369333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 3, "action": 0, "pose": {"position": {"x": 1.1868537688451026, "y": -0.9806288929461024, "z": 0.41200411306458823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8240082261291765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 3, "action": 0, "pose": {"position": {"x": 1.2866585871050038, "y": -0.9784386189095801, "z": 0.41393092758606037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8278618551721207}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 3, "action": 0, "pose": {"position": {"x": 1.3866192187487119, "y": -0.9764365213328822, "z": 0.41583664479586113}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8316732895917223}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 3, "action": 0, "pose": {"position": {"x": 1.486455896267615, "y": -0.9746349603423898, "z": 0.41772167933901944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8354433586780389}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 3, "action": 0, "pose": {"position": {"x": 1.586414409446195, "y": -0.9730205184468951, "z": 0.41958643293234127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8391728658646825}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 3, "action": 0, "pose": {"position": {"x": 1.6863122342436105, "y": -0.9715930102100351, "z": 0.42143129492145615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8428625898429123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 3, "action": 0, "pose": {"position": {"x": 1.7862532591376363, "y": -0.970363577731422, "z": 0.423256642807371}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.846513285614742}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 3, "action": 0, "pose": {"position": {"x": 1.886165704886813, "y": -0.9693281609978528, "z": 0.42506284274454686}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8501256854890937}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 3, "action": 0, "pose": {"position": {"x": 1.9860731311798951, "y": -0.9684584488752038, "z": 0.4268502500123595}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.853700500024719}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 3, "action": 0, "pose": {"position": {"x": 2.0859760686100652, "y": -0.9678215294631793, "z": 0.42861920946166077}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8572384189233215}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 3, "action": 0, "pose": {"position": {"x": 2.1858844916235944, "y": -0.9675714897148708, "z": 0.43037005593803096}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8607401118760619}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 3, "action": 0, "pose": {"position": {"x": 2.2857919884421443, "y": -0.9677665004685688, "z": 0.43210311468319046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8642062293663809}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 3, "action": 0, "pose": {"position": {"x": 2.3857063601292334, "y": -0.9683882317267747, "z": 0.43381870171593545}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8676374034318709}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 3, "action": 0, "pose": {"position": {"x": 2.4856065419539646, "y": -0.9693561017320911, "z": 0.43551712419385696}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8710342483877139}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 3, "action": 0, "pose": {"position": {"x": 2.5855141216630457, "y": -0.9705711318688814, "z": 0.43719868075701734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8743973615140347}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 3, "action": 0, "pose": {"position": {"x": 2.6854115859863175, "y": -0.9719897610289824, "z": 0.43886366185467124}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8777273237093425}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 3, "action": 0, "pose": {"position": {"x": 2.7853100683456318, "y": -0.973593673834146, "z": 0.4405123500560429}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8810247001120858}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 3, "action": 0, "pose": {"position": {"x": 2.885204751181101, "y": -0.9753872277213205, "z": 0.4421450203461006}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8842900406922012}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 3, "action": 0, "pose": {"position": {"x": 2.985093074174072, "y": -0.9773735069111217, "z": 0.4437619404072035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.887523880814407}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 3, "action": 0, "pose": {"position": {"x": 3.0849814737760877, "y": -0.9795410984678544, "z": 0.44536337088743805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8907267417748761}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 3, "action": 0, "pose": {"position": {"x": 3.1848619869308967, "y": -0.9818973371832362, "z": 0.4469495656564048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8938991313128096}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 3, "action": 0, "pose": {"position": {"x": 3.2847389207780693, "y": -0.9844813932564123, "z": 0.4485207720491647}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8970415440983294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 3, "action": 0, "pose": {"position": {"x": 3.3846128819441224, "y": -0.9872364065035617, "z": 0.45007723109900893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9001544621980179}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 3, "action": 0, "pose": {"position": {"x": 3.4844804580089885, "y": -0.9899989439109954, "z": 0.4516191777596723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9032383555193446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 3, "action": 0, "pose": {"position": {"x": 3.5843613154865657, "y": -0.9927260890839003, "z": 0.4531468411175682}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9062936822351364}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 3, "action": 0, "pose": {"position": {"x": 3.6842215600879675, "y": -0.995468232162053, "z": 0.4546604445945884}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9093208891891768}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 3, "action": 0, "pose": {"position": {"x": 3.7841127301243804, "y": -0.9982018230711811, "z": 0.45616020614197544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9123204122839509}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 3, "action": 0, "pose": {"position": {"x": 3.8839660058048717, "y": -1.0008834789396983, "z": 0.4576463384257435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.915292676851487}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 3, "action": 0, "pose": {"position": {"x": 3.9838686023430174, "y": -1.0036622709994787, "z": 0.45911904900409206}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9182380980081841}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 3, "action": 0, "pose": {"position": {"x": 4.083700507610102, "y": -1.0067143237422411, "z": 0.4605785404972342}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9211570809944684}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 3, "action": 0, "pose": {"position": {"x": 4.183586029078148, "y": -1.0100351356090407, "z": 0.4620250107500289}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9240500215000578}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 3, "action": 0, "pose": {"position": {"x": 4.283403763821983, "y": -1.0135773758112636, "z": 0.46345865298778927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9269173059755785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 3, "action": 0, "pose": {"position": {"x": 4.383265926767167, "y": -1.0173534176355623, "z": 0.46487965596561165}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9297593119312233}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 3, "action": 0, "pose": {"position": {"x": 4.483074464361552, "y": -1.02136824093681, "z": 0.46628820411155275}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9325764082231055}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 3, "action": 0, "pose": {"position": {"x": 4.582909518468496, "y": -1.0256133446090172, "z": 0.467684477663962}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.935368955327924}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 3, "action": 0, "pose": {"position": {"x": 4.682708914411904, "y": -1.0300913802751877, "z": 0.4690686528032577}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9381373056065154}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 3, "action": 0, "pose": {"position": {"x": 4.782511590366885, "y": -1.0348395246946993, "z": 0.47044090177841946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9408818035568389}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 3, "action": 0, "pose": {"position": {"x": 4.882295782973628, "y": -1.0398794755688874, "z": 0.4718013930284535}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.943602786056907}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 3, "action": 0, "pose": {"position": {"x": 4.982058458407403, "y": -1.045217646807496, "z": 0.4731502912990732}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9463005825981464}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 3, "action": 0, "pose": {"position": {"x": 5.08182109503335, "y": -1.0508926675440864, "z": 0.47448775775482344}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9489755155096469}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 3, "action": 0, "pose": {"position": {"x": 5.181529179751158, "y": -1.056950147495269, "z": 0.4758139500868634}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9516279001737268}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 3, "action": 0, "pose": {"position": {"x": 5.281267594173966, "y": -1.0632531458910472, "z": 0.47712902261661255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9542580452332251}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 3, "action": 0, "pose": {"position": {"x": 5.380948294963888, "y": -1.06956961455913, "z": 0.4784331263954523}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9568662527909046}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 3, "action": 0, "pose": {"position": {"x": 5.480692322820667, "y": -1.0760173789277845, "z": 0.47972640930066424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9594528186013285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 3, "action": 0, "pose": {"position": {"x": 5.580329220906852, "y": -1.0828248436618721, "z": 0.4766882451847765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.953376490369553}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 3, "action": 0, "pose": {"position": {"x": 5.680035265601397, "y": -1.0900139932373953, "z": 0.4732812288345423}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9465624576690846}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 3, "action": 0, "pose": {"position": {"x": 5.779611640410554, "y": -1.0975071085805383, "z": 0.46949645557536507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9389929111507301}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 3, "action": 0, "pose": {"position": {"x": 5.879271531781981, "y": -1.105319381085979, "z": 0.4657286282761317}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9314572565522634}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 3, "action": 0, "pose": {"position": {"x": 5.9787778852628986, "y": -1.113438302897078, "z": 0.4619312939278068}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9238625878556136}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 3, "action": 0, "pose": {"position": {"x": 6.0784138751467305, "y": -1.1218544843947065, "z": 0.457889258700864}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.915778517401728}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 3, "action": 0, "pose": {"position": {"x": 6.177988312445832, "y": -1.1305014377310696, "z": 0.45357764795384525}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.9071552959076905}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 3, "action": 0, "pose": {"position": {"x": 6.277566892331669, "y": -1.1393087768727106, "z": 0.4488366266570765}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.897673253314153}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 3, "action": 0, "pose": {"position": {"x": 6.377243152305266, "y": -1.1482745645425287, "z": 0.4446176263095984}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8892352526191968}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 3, "action": 0, "pose": {"position": {"x": 6.476654465150917, "y": -1.157510063204182, "z": 0.4409180002377927}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8818360004755854}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 3, "action": 0, "pose": {"position": {"x": 6.576207273430546, "y": -1.1671764244085279, "z": 0.43731227229022485}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8746245445804497}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 3, "action": 0, "pose": {"position": {"x": 6.675540347362709, "y": -1.1772790203889312, "z": 0.4336791574040929}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8673583148081858}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 3, "action": 0, "pose": {"position": {"x": 6.774918145956656, "y": -1.187774424690888, "z": 0.42971097499725885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8594219499945177}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 3, "action": 0, "pose": {"position": {"x": 6.874307736527468, "y": -1.1984634388599158, "z": 0.4247578653047185}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.849515730609437}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 3, "action": 0, "pose": {"position": {"x": 6.973519491101809, "y": -1.209241393683493, "z": 0.41949672890189416}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8389934578037883}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 3, "action": 0, "pose": {"position": {"x": 7.072996027092961, "y": -1.2201867904606212, "z": 0.41450404498696664}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8290080899739333}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 3, "action": 0, "pose": {"position": {"x": 7.172000288345545, "y": -1.2312972599988214, "z": 0.4098750606491922}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8197501212983844}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 3, "action": 0, "pose": {"position": {"x": 7.271560269730746, "y": -1.24277668896927, "z": 0.40519405884758913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8103881176951783}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 3, "action": 0, "pose": {"position": {"x": 7.370534519424231, "y": -1.2544827934387082, "z": 0.40030616074830666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.8006123214966133}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 3, "action": 0, "pose": {"position": {"x": 7.469933955524583, "y": -1.2665178568689532, "z": 0.3954484751228437}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7908969502456874}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 3, "action": 0, "pose": {"position": {"x": 7.569016691036667, "y": -1.2788426483570652, "z": 0.39053170650098323}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7810634130019665}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 3, "action": 0, "pose": {"position": {"x": 7.668075676923953, "y": -1.2914333112309178, "z": 0.3853235992313997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7706471984627994}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 3, "action": 0, "pose": {"position": {"x": 7.767309697414635, "y": -1.3041139109783004, "z": 0.3791244576477316}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7582489152954632}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 3, "action": 0, "pose": {"position": {"x": 7.866086861250255, "y": -1.3167687660801575, "z": 0.3730233231672566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7460466463345132}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 3, "action": 0, "pose": {"position": {"x": 7.965473996208629, "y": -1.3295776984786616, "z": 0.3668212215855333}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7336424431710666}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 3, "action": 0, "pose": {"position": {"x": 8.064471495242566, "y": -1.3423344085564644, "z": 0.360369611669564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.720739223339128}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 3, "action": 0, "pose": {"position": {"x": 8.163513806406591, "y": -1.3551928308757812, "z": 0.35534106166241425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7106821233248285}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 3, "action": 0, "pose": {"position": {"x": 8.262640592357547, "y": -1.3685262258903796, "z": 0.3502430792573241}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7004861585146482}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 3, "action": 0, "pose": {"position": {"x": 8.361389422374833, "y": -1.3822414284218765, "z": 0.34477562288520425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6895512457704085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 3, "action": 0, "pose": {"position": {"x": 8.460442583338688, "y": -1.3962449671767228, "z": 0.3386576391535965}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.677315278307193}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 3, "action": 0, "pose": {"position": {"x": 8.55930779554495, "y": -1.4105221484928347, "z": 0.3327426283186559}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6654852566373118}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 3, "action": 0, "pose": {"position": {"x": 8.657983547828826, "y": -1.425176151197517, "z": 0.3270413768420425}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.654082753684085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 3, "action": 0, "pose": {"position": {"x": 8.756840049038216, "y": -1.4403600230486477, "z": 0.3212423005427296}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6424846010854592}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 3, "action": 0, "pose": {"position": {"x": 8.85543941118459, "y": -1.4560397206174704, "z": 0.31533678289681855}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6306735657936371}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 3, "action": 0, "pose": {"position": {"x": 8.953992479459606, "y": -1.4722604188779644, "z": 0.3092995176485635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.618599035297127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 3, "action": 0, "pose": {"position": {"x": 9.05244792119052, "y": -1.489043962058179, "z": 0.30355609370563824}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6071121874112765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 3, "action": 0, "pose": {"position": {"x": 9.150753473076241, "y": -1.5065260085739802, "z": 0.29770441175179546}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5954088235035909}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 3, "action": 0, "pose": {"position": {"x": 9.248998114531117, "y": -1.524650472577603, "z": 0.29156742526988655}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5831348505397731}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 3, "action": 0, "pose": {"position": {"x": 9.34705658625033, "y": -1.542992226051612, "z": 0.2850901747518396}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5701803495036792}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 3, "action": 0, "pose": {"position": {"x": 9.445255779449147, "y": -1.5620495928561842, "z": 0.28018824665353004}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5603764933070601}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 3, "action": 0, "pose": {"position": {"x": 9.542957542414987, "y": -1.5822355278918976, "z": 0.27522670731563825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5504534146312765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 3, "action": 0, "pose": {"position": {"x": 9.640479765544486, "y": -1.6034181839874095, "z": 0.26989758908563954}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5397951781712791}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 3, "action": 0, "pose": {"position": {"x": 9.738163973362651, "y": -1.6260039618382818, "z": 0.2664703026486145}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.532940605297229}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 3, "action": 0, "pose": {"position": {"x": 9.83462955467273, "y": -1.650331279371421, "z": 0.26300795756261025}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5260159151252205}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 3, "action": 0, "pose": {"position": {"x": 9.931093600736986, "y": -1.676795380360608, "z": 0.2592764398549839}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5185528797099678}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 3, "action": 0, "pose": {"position": {"x": 10.026786836243865, "y": -1.70514254199131, "z": 0.25518867164769016}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5103773432953803}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 3, "action": 0, "pose": {"position": {"x": 10.12184419619497, "y": -1.7353853178344636, "z": 0.2509723541299171}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5019447082598342}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 3, "action": 0, "pose": {"position": {"x": 10.216747359420017, "y": -1.7678294658628932, "z": 0.2471136044316272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4942272088632544}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 3, "action": 0, "pose": {"position": {"x": 10.310229870826522, "y": -1.802291368353546, "z": 0.24368554951912794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4873710990382559}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 3, "action": 0, "pose": {"position": {"x": 10.4034650044008, "y": -1.8394938933896925, "z": 0.24069575446796437}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48139150893592875}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 3, "action": 0, "pose": {"position": {"x": 10.494883318727757, "y": -1.8789169303202364, "z": 0.23778915396676498}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47557830793352995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 3, "action": 0, "pose": {"position": {"x": 10.586008785472659, "y": -1.920556692977125, "z": 0.23276177527841524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4655235505568305}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 3, "action": 0, "pose": {"position": {"x": 10.676028693445517, "y": -1.9636998637170433, "z": 0.22786826314542338}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45573652629084677}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 3, "action": 0, "pose": {"position": {"x": 10.765182645726197, "y": -2.0091605874720666, "z": 0.22364706644944302}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44729413289888603}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 3, "action": 0, "pose": {"position": {"x": 10.852851658896636, "y": -2.057064667927575, "z": 0.21939533553073673}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.43879067106147346}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 3, "action": 0, "pose": {"position": {"x": 10.939235684138945, "y": -2.107273794131022, "z": 0.21419150401641418}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42838300803282836}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 3, "action": 0, "pose": {"position": {"x": 11.0243479226314, "y": -2.1595957509439154, "z": 0.2081781630684903}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4163563261369806}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 3, "action": 0, "pose": {"position": {"x": 11.108288552776894, "y": -2.214050778410053, "z": 0.20236273126862514}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4047254625372503}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 3, "action": 0, "pose": {"position": {"x": 11.190440272784487, "y": -2.270885296980315, "z": 0.19828591200021162}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39657182400042323}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 3, "action": 0, "pose": {"position": {"x": 11.270362847749796, "y": -2.3309633099732743, "z": 0.19417052858719813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38834105717439626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 3, "action": 0, "pose": {"position": {"x": 11.347700143005522, "y": -2.393976560998572, "z": 0.18950408068505215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3790081613701043}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 3, "action": 0, "pose": {"position": {"x": 11.423055568727396, "y": -2.459773509998453, "z": 0.18385756818908391}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.36771513637816783}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 3, "action": 0, "pose": {"position": {"x": 11.49550470517397, "y": -2.52830956042261, "z": 0.17958317604267032}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35916635208534065}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 3, "action": 0, "pose": {"position": {"x": 11.564769040024144, "y": -2.600458128326309, "z": 0.17530486730423311}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35060973460846623}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 3, "action": 0, "pose": {"position": {"x": 11.630367905610168, "y": -2.675641836233182, "z": 0.16996039209162983}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33992078418325966}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 3, "action": 0, "pose": {"position": {"x": 11.692386113375123, "y": -2.753927829089909, "z": 0.1644322814198452}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3288645628396904}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 3, "action": 0, "pose": {"position": {"x": 11.750094238045104, "y": -2.835547337160245, "z": 0.15992140445865413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31984280891730826}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 3, "action": 0, "pose": {"position": {"x": 11.802312828799852, "y": -2.920748945817258, "z": 0.157621720741936}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.315243441483872}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 3, "action": 0, "pose": {"position": {"x": 11.847372913564074, "y": -3.009830073454244, "z": 0.15687945730604355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3137589146120871}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 3, "action": 0, "pose": {"position": {"x": 11.884031441431878, "y": -3.102694947649902, "z": 0.15681889877871796}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3136377975574359}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 3, "action": 0, "pose": {"position": {"x": 11.911530664825381, "y": -3.1983703238990513, "z": 0.15675831685655736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3135166337131147}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 3, "action": 0, "pose": {"position": {"x": 11.93023152341494, "y": -3.2967277991586514, "z": 0.15747826432166606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3149565286433321}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 3, "action": 0, "pose": {"position": {"x": 11.940537599617484, "y": -3.395728001085618, "z": 0.15946917543349579}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31893835086699157}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 3, "action": 0, "pose": {"position": {"x": 11.942645857805548, "y": -3.4960403899701444, "z": 0.1611960243151861}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3223920486303722}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 3, "action": 0, "pose": {"position": {"x": 11.936451278422883, "y": -3.595342640723846, "z": 0.1623821449561327}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3247642899122654}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 3, "action": 0, "pose": {"position": {"x": 11.92212307069991, "y": -3.6945262883722383, "z": 0.1638382165468853}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3276764330937706}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 3, "action": 0, "pose": {"position": {"x": 11.900041502235418, "y": -3.7916823181897423, "z": 0.16532835477642951}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33065670955285903}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 3, "action": 0, "pose": {"position": {"x": 11.869901690098876, "y": -3.8871476849976547, "z": 0.1657036473772081}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3314072947544162}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 3, "action": 0, "pose": {"position": {"x": 11.83190540253204, "y": -3.979324262750243, "z": 0.16563968254057518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33127936508115036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 3, "action": 0, "pose": {"position": {"x": 11.785883271885929, "y": -4.068156689616512, "z": 0.16557569299318944}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3311513859863789}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 3, "action": 0, "pose": {"position": {"x": 11.732873262315719, "y": -4.152655292141147, "z": 0.16597882092711272}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33195764185422544}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 3, "action": 0, "pose": {"position": {"x": 11.674440241116914, "y": -4.233939703012018, "z": 0.16982569230000705}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3396513846000141}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 3, "action": 0, "pose": {"position": {"x": 11.612102634893041, "y": -4.311927232154863, "z": 0.17541729301405365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3508345860281073}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 3, "action": 0, "pose": {"position": {"x": 11.54540345241375, "y": -4.38636469853682, "z": 0.17903793978335364}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3580758795667073}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 3, "action": 0, "pose": {"position": {"x": 11.474422473621628, "y": -4.45660394954179, "z": 0.18138573911493505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3627714782298701}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 3, "action": 0, "pose": {"position": {"x": 11.399468224911342, "y": -4.52279822791715, "z": 0.18417680519262794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3683536103852559}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 3, "action": 0, "pose": {"position": {"x": 11.32109697015155, "y": -4.584800586067632, "z": 0.18713581278724115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3742716255744823}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 3, "action": 0, "pose": {"position": {"x": 11.239499440042577, "y": -4.642491856749059, "z": 0.18972161396176027}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37944322792352053}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 3, "action": 0, "pose": {"position": {"x": 11.154927987682576, "y": -4.6959606268023, "z": 0.1922982158162805}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.384596431632561}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 3, "action": 0, "pose": {"position": {"x": 11.068239101160438, "y": -4.745548500428807, "z": 0.19611793905356065}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3922358781071213}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 3, "action": 0, "pose": {"position": {"x": 10.979400112576018, "y": -4.791832677791669, "z": 0.20060508820548908}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40121017641097817}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 3, "action": 0, "pose": {"position": {"x": 10.889125536923938, "y": -4.834327453546847, "z": 0.2043018506554458}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4086037013108916}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 3, "action": 0, "pose": {"position": {"x": 10.796862906929622, "y": -4.873593742842556, "z": 0.20799870360575398}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41599740721150796}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 3, "action": 0, "pose": {"position": {"x": 10.704118908402293, "y": -4.91026518299172, "z": 0.21395892573566083}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.42791785147132166}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 3, "action": 0, "pose": {"position": {"x": 10.610408273703474, "y": -4.94519920960717, "z": 0.2199535315921121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4399070631842242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 3, "action": 0, "pose": {"position": {"x": 10.516116988423791, "y": -4.977812864324117, "z": 0.22534083717831618}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45068167435663237}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 3, "action": 0, "pose": {"position": {"x": 10.42116316819767, "y": -5.008412732739209, "z": 0.23089401528242012}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46178803056484025}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 3, "action": 0, "pose": {"position": {"x": 10.32560731653308, "y": -5.038026417446635, "z": 0.23628205212523862}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47256410425047723}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 3, "action": 0, "pose": {"position": {"x": 10.230374789067902, "y": -5.066859556381065, "z": 0.24149443189545886}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4829888637909177}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 3, "action": 0, "pose": {"position": {"x": 10.134421359135343, "y": -5.095342849708521, "z": 0.246543982023127}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.493087964046254}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 3, "action": 0, "pose": {"position": {"x": 10.038695775756029, "y": -5.123255272237427, "z": 0.25144204692600985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5028840938520197}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 3, "action": 0, "pose": {"position": {"x": 9.94268565104048, "y": -5.15088307707271, "z": 0.2561987175209234}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5123974350418468}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 3, "action": 0, "pose": {"position": {"x": 9.846771873369374, "y": -5.178418423162621, "z": 0.2608230169888729}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5216460339777458}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 3, "action": 0, "pose": {"position": {"x": 9.75072170712974, "y": -5.206061899754154, "z": 0.26532305257343736}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5306461051468747}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 3, "action": 0, "pose": {"position": {"x": 9.65491785608863, "y": -5.233656359033018, "z": 0.2697061407085399}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5394122814170798}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 3, "action": 0, "pose": {"position": {"x": 9.558691964020019, "y": -5.261376999397703, "z": 0.27397891098883925}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5479578219776785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 3, "action": 0, "pose": {"position": {"x": 9.46299639464664, "y": -5.288942439836387, "z": 0.2781473931976286}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5562947863952572}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 3, "action": 0, "pose": {"position": {"x": 9.366864178189099, "y": -5.316603144399984, "z": 0.28221709064931966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5644341812986393}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 3, "action": 0, "pose": {"position": {"x": 9.270945560791924, "y": -5.344141716898884, "z": 0.2861930423884606}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5723860847769212}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 3, "action": 0, "pose": {"position": {"x": 9.174918735882821, "y": -5.371623278560503, "z": 0.2900798762473946}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5801597524947892}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 3, "action": 0, "pose": {"position": {"x": 9.078733597492395, "y": -5.399036526889661, "z": 0.2938818543529384}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5877637087058768}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 3, "action": 0, "pose": {"position": {"x": 8.982787294199007, "y": -5.4262454356409995, "z": 0.29760291235544795}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5952058247108959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 3, "action": 0, "pose": {"position": {"x": 8.886357068604466, "y": -5.453435804601653, "z": 0.3012466934073745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.602493386814749}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 3, "action": 0, "pose": {"position": {"x": 8.790440903058983, "y": -5.480311376960931, "z": 0.3048165777255309}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6096331554510618}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 3, "action": 0, "pose": {"position": {"x": 8.693819372256224, "y": -5.507202940610683, "z": 0.3083157084190151}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6166314168380302}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 3, "action": 0, "pose": {"position": {"x": 8.597872846787684, "y": -5.533718896197253, "z": 0.31174701414368255}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6234940282873651}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 3, "action": 0, "pose": {"position": {"x": 8.501122314272124, "y": -5.5602646324533405, "z": 0.3151132290471254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6302264580942508}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 3, "action": 0, "pose": {"position": {"x": 8.405087586323697, "y": -5.586422163468899, "z": 0.3184169103900251}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6368338207800502}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 3, "action": 0, "pose": {"position": {"x": 8.308264657172485, "y": -5.612603974972957, "z": 0.3216604541664304}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6433209083328608}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 3, "action": 0, "pose": {"position": {"x": 8.212096330687972, "y": -5.638424063517601, "z": 0.324846108993896}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.649692217987792}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 3, "action": 0, "pose": {"position": {"x": 8.115244948911503, "y": -5.664249168520473, "z": 0.3279759885021046}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6559519770042092}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 3, "action": 0, "pose": {"position": {"x": 8.018916015828772, "y": -5.689766025454411, "z": 0.3310520824137194}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6621041648274388}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 3, "action": 0, "pose": {"position": {"x": 7.922065325704238, "y": -5.7152623729234815, "z": 0.3340762664823498}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6681525329646996}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 3, "action": 0, "pose": {"position": {"x": 7.825569615208788, "y": -5.740518763682041, "z": 0.3370503114284899}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6741006228569798}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 3, "action": 0, "pose": {"position": {"x": 7.728734578226426, "y": -5.765730657258581, "z": 0.339975890994222}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.679951781988444}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 3, "action": 0, "pose": {"position": {"x": 7.632086451140528, "y": -5.790774950786999, "z": 0.34285458922063355}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6857091784412671}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 3, "action": 0, "pose": {"position": {"x": 7.535269861270936, "y": -5.8157593938964895, "z": 0.3456879070377122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6913758140754244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 3, "action": 0, "pose": {"position": {"x": 7.43850198317177, "y": -5.8406439373781085, "z": 0.348477268244478}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.696954536488956}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 3, "action": 0, "pose": {"position": {"x": 7.341697082284531, "y": -5.865467800624764, "z": 0.351224024946934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.702448049893868}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 3, "action": 0, "pose": {"position": {"x": 7.244856889922323, "y": -5.890248283495978, "z": 0.35392946251272994}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7078589250254599}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 3, "action": 0, "pose": {"position": {"x": 7.14805017730649, "y": -5.914986238040518, "z": 0.3565948040940273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7131896081880545}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 3, "action": 0, "pose": {"position": {"x": 7.051195740528397, "y": -5.939721606631275, "z": 0.3592212147636875}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.718442429527375}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 3, "action": 0, "pose": {"position": {"x": 6.954369980527618, "y": -5.9644545848098565, "z": 0.36180980530444073}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7236196106088815}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 3, "action": 0, "pose": {"position": {"x": 6.8575647538004585, "y": -5.989207799363186, "z": 0.3643616356859706}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7287232713719412}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 3, "action": 0, "pose": {"position": {"x": 6.760701445786211, "y": -6.014022207472605, "z": 0.36687771826076815}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7337554365215363}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 3, "action": 0, "pose": {"position": {"x": 6.664010305237469, "y": -6.0388599159865874, "z": 0.369359020706072}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.738718041412144}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 3, "action": 0, "pose": {"position": {"x": 6.567094292662775, "y": -6.0638442973311495, "z": 0.3718064687361204}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7436129374722408}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 3, "action": 0, "pose": {"position": {"x": 6.470574234468187, "y": -6.088835707039239, "z": 0.37422094860626537}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7484418972125307}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 3, "action": 0, "pose": {"position": {"x": 6.373590142373382, "y": -6.114078319770661, "z": 0.37660330942814435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7532066188562887}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 3, "action": 0, "pose": {"position": {"x": 6.27719850193517, "y": -6.13931903487478, "z": 0.37895436531304666}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7579087306260933}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 3, "action": 0, "pose": {"position": {"x": 6.180250644149343, "y": -6.164881606783986, "z": 0.3812748973588085}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.762549794717617}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 3, "action": 0, "pose": {"position": {"x": 6.083976400452993, "y": -6.190462883655207, "z": 0.3835656554939745}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.767131310987949}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 3, "action": 0, "pose": {"position": {"x": 5.987143804218699, "y": -6.21641104293628, "z": 0.3858273601915615}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.771654720383123}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 3, "action": 0, "pose": {"position": {"x": 5.890992642884073, "y": -6.242409868864173, "z": 0.3880607040635244}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7761214081270488}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 3, "action": 0, "pose": {"position": {"x": 5.794290561759002, "y": -6.2688068817936635, "z": 0.3902663533459154}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7805327066918308}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 3, "action": 0, "pose": {"position": {"x": 5.698288829146695, "y": -6.295271333458264, "z": 0.39244494928376256}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7848898985675251}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 3, "action": 0, "pose": {"position": {"x": 5.601704387003738, "y": -6.3221662822912945, "z": 0.39459710942381976}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7891942188476395}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 3, "action": 0, "pose": {"position": {"x": 5.505895324364866, "y": -6.349118336071807, "z": 0.39672342882257217}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7934468576451443}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 3, "action": 0, "pose": {"position": {"x": 5.409413233565057, "y": -6.376537677331075, "z": 0.3948343902805489}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7896687805610978}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 3, "action": 0, "pose": {"position": {"x": 5.31383335724864, "y": -6.403973770941973, "z": 0.3896464139114311}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7792928278228622}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 3, "action": 0, "pose": {"position": {"x": 5.217434546563402, "y": -6.431915238431012, "z": 0.3843473941353359}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7686947882706718}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 3, "action": 0, "pose": {"position": {"x": 5.121880560067448, "y": -6.459869544755227, "z": 0.3789057445840771}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7578114891681542}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 3, "action": 0, "pose": {"position": {"x": 5.025770431968238, "y": -6.4882313273146766, "z": 0.3733106457396717}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7466212914793434}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 3, "action": 0, "pose": {"position": {"x": 4.930202438149924, "y": -6.516656971706317, "z": 0.3675321412784624}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7350642825569248}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 3, "action": 0, "pose": {"position": {"x": 4.834396555189321, "y": -6.545353814589483, "z": 0.3615554717362669}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7231109434725338}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 3, "action": 0, "pose": {"position": {"x": 4.738803492804481, "y": -6.574158883275064, "z": 0.3553583116988713}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7107166233977426}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 3, "action": 0, "pose": {"position": {"x": 4.64324675884786, "y": -6.603094080848443, "z": 0.3489279199487431}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6978558398974862}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 3, "action": 0, "pose": {"position": {"x": 4.547645708257015, "y": -6.632151260820359, "z": 0.34225121972487826}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6845024394497565}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 3, "action": 0, "pose": {"position": {"x": 4.452203583629594, "y": -6.661237083219171, "z": 0.33532785133983106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6706557026796621}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 3, "action": 0, "pose": {"position": {"x": 4.356644706560359, "y": -6.690405193168551, "z": 0.3281514882863223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6563029765726446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 3, "action": 0, "pose": {"position": {"x": 4.26115346873101, "y": -6.7195716348246135, "z": 0.3207265895356429}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6414531790712859}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 3, "action": 0, "pose": {"position": {"x": 4.165695282095321, "y": -6.748722479441422, "z": 0.31314666436703276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6262933287340655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 3, "action": 0, "pose": {"position": {"x": 4.0701771043838635, "y": -6.777867986814778, "z": 0.3054136643979442}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6108273287958884}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 3, "action": 0, "pose": {"position": {"x": 3.974596184054974, "y": -6.806998105109995, "z": 0.29748794610916635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5949758922183327}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 3, "action": 0, "pose": {"position": {"x": 3.8790299508157142, "y": -6.836086755040674, "z": 0.2893452076709917}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5786904153419834}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 3, "action": 0, "pose": {"position": {"x": 3.7833092237585997, "y": -6.86519167376125, "z": 0.28094745109308544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5618949021861709}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 3, "action": 0, "pose": {"position": {"x": 3.687742751115841, "y": -6.89422702210624, "z": 0.2723168413698963}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5446336827397926}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 3, "action": 0, "pose": {"position": {"x": 3.592044052066619, "y": -6.923262963799194, "z": 0.26346681827247465}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5269336365449493}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 3, "action": 0, "pose": {"position": {"x": 3.496452706786289, "y": -6.952218500378065, "z": 0.2543090569436401}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5086181138872802}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 3, "action": 0, "pose": {"position": {"x": 3.400818352205134, "y": -6.981200730728677, "z": 0.24468034373743613}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48936068747487227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 3, "action": 0, "pose": {"position": {"x": 3.305229500673892, "y": -7.0101492640222185, "z": 0.23531057023628832}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47062114047257664}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 3, "action": 0, "pose": {"position": {"x": 3.209503309396968, "y": -7.038852723971334, "z": 0.2255550403982594}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4511100807965188}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 3, "action": 0, "pose": {"position": {"x": 3.113792174205334, "y": -7.067576894188659, "z": 0.21706846731571164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4341369346314233}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 3, "action": 0, "pose": {"position": {"x": 3.0184032594138626, "y": -7.097336485585766, "z": 0.20910408954495857}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.41820817908991714}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 3, "action": 0, "pose": {"position": {"x": 2.9235228427222633, "y": -7.128610251144712, "z": 0.20083483157795715}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4016696631559143}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 3, "action": 0, "pose": {"position": {"x": 2.8292191425004516, "y": -7.161402131014063, "z": 0.1924028541816446}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3848057083632892}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 3, "action": 0, "pose": {"position": {"x": 2.735476468620031, "y": -7.196125143648961, "z": 0.1843294225188193}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3686588450376386}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 3, "action": 0, "pose": {"position": {"x": 2.642740954949076, "y": -7.233338382200693, "z": 0.17788789584717996}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3557757916943599}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 3, "action": 0, "pose": {"position": {"x": 2.551549164443211, "y": -7.2741279829489, "z": 0.17311981911986207}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34623963823972415}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 3, "action": 0, "pose": {"position": {"x": 2.462596534054816, "y": -7.319377467097716, "z": 0.16830496872542866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3366099374508573}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 3, "action": 0, "pose": {"position": {"x": 2.3759304809439605, "y": -7.369125989548024, "z": 0.1624918426659115}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.324983685331823}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 3, "action": 0, "pose": {"position": {"x": 2.29216150814618, "y": -7.4234502433619625, "z": 0.15844076603207635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3168815320641527}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 3, "action": 0, "pose": {"position": {"x": 2.212288818576114, "y": -7.483523618488666, "z": 0.15627343060411544}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3125468612082309}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 3, "action": 0, "pose": {"position": {"x": 2.1377964881137594, "y": -7.550034352021038, "z": 0.15576847550197914}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3115369510039583}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 3, "action": 0, "pose": {"position": {"x": 2.0700844347848775, "y": -7.6231579266343985, "z": 0.15549062433644167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31098124867288335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 3, "action": 0, "pose": {"position": {"x": 2.0096062546063234, "y": -7.702690617419404, "z": 0.15542950286406285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3108590057281257}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 3, "action": 0, "pose": {"position": {"x": 1.9566392455607238, "y": -7.787265215865601, "z": 0.15400213629350792}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30800427258701585}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 3, "action": 0, "pose": {"position": {"x": 1.9115338971552225, "y": -7.876591242503981, "z": 0.15372604433265624}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3074520886653125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 3, "action": 0, "pose": {"position": {"x": 1.8755492908986902, "y": -7.969703784847509, "z": 0.1535033363692307}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3070066727384614}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 3, "action": 0, "pose": {"position": {"x": 1.84885537529653, "y": -8.066088082908895, "z": 0.15314719916696895}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3062943983339379}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 3, "action": 0, "pose": {"position": {"x": 1.8315161925629555, "y": -8.164455545286623, "z": 0.15208670367920737}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30417340735841475}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 3, "action": 0, "pose": {"position": {"x": 1.823726843292623, "y": -8.264073699955642, "z": 0.1512987670956636}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3025975341913272}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 3, "action": 0, "pose": {"position": {"x": 1.8258539958215014, "y": -8.363980018376692, "z": 0.15073057909887397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30146115819774794}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 3, "action": 0, "pose": {"position": {"x": 1.8381133953145434, "y": -8.463060296833588, "z": 0.1506723941583476}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3013447883166952}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 3, "action": 0, "pose": {"position": {"x": 1.8606311788296026, "y": -8.560549970412257, "z": 0.15061418673994498}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30122837347988995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 3, "action": 0, "pose": {"position": {"x": 1.8926226861195035, "y": -8.654970626318153, "z": 0.15141586147929045}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3028317229585809}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 3, "action": 0, "pose": {"position": {"x": 1.9336056204500496, "y": -8.746398727231288, "z": 0.1527545355928825}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.305509071185765}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 3, "action": 0, "pose": {"position": {"x": 1.982296382811302, "y": -8.83324646827202, "z": 0.15463207480943708}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.30926414961887416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 3, "action": 0, "pose": {"position": {"x": 2.038339294895578, "y": -8.916058950597678, "z": 0.15693907418314312}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31387814836628625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 3, "action": 0, "pose": {"position": {"x": 2.1004228721755807, "y": -8.994152148532528, "z": 0.1600031737781912}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3200063475563824}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 3, "action": 0, "pose": {"position": {"x": 2.1676990710549062, "y": -9.068027260484183, "z": 0.16400094618923788}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32800189237847577}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 3, "action": 0, "pose": {"position": {"x": 2.2388779489051487, "y": -9.138168302888218, "z": 0.1695462550712017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3390925101424034}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 3, "action": 0, "pose": {"position": {"x": 2.3130752589012435, "y": -9.205127797850755, "z": 0.17609619157869483}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35219238315738965}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 3, "action": 0, "pose": {"position": {"x": 2.3898383939240277, "y": -9.26912666990613, "z": 0.18254401302424444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3650880260484889}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 3, "action": 0, "pose": {"position": {"x": 2.46852130789288, "y": -9.330802765474512, "z": 0.18981431660425838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.37962863320851675}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 3, "action": 0, "pose": {"position": {"x": 2.5481367390194665, "y": -9.391351981207269, "z": 0.19684908763470496}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3936981752694099}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 3, "action": 0, "pose": {"position": {"x": 2.628043769309187, "y": -9.451209097875193, "z": 0.20355610102999103}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40711220205998205}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 3, "action": 0, "pose": {"position": {"x": 2.7086863947733977, "y": -9.510577770183295, "z": 0.2099704334640466}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4199408669280932}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 3, "action": 0, "pose": {"position": {"x": 2.789200615654624, "y": -9.569248956868538, "z": 0.21612133045462156}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4322426609092431}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 3, "action": 0, "pose": {"position": {"x": 2.8701147773278852, "y": -9.628349058697156, "z": 0.2220334796208936}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4440669592417872}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 3, "action": 0, "pose": {"position": {"x": 2.950362496207647, "y": -9.687141426930829, "z": 0.2277279473139813}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4554558946279626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 3, "action": 0, "pose": {"position": {"x": 3.031015129892654, "y": -9.746212780180937, "z": 0.23322288140270794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4664457628054159}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 3, "action": 0, "pose": {"position": {"x": 3.1114818254230925, "y": -9.80511847811265, "z": 0.2385340478462593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4770680956925186}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 3, "action": 0, "pose": {"position": {"x": 3.192075173662197, "y": -9.864072939023755, "z": 0.24367524671637408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.48735049343274817}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 3, "action": 0, "pose": {"position": {"x": 3.272619978947523, "y": -9.922870299002243, "z": 0.24865863920726766}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4973172784145353}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 3, "action": 0, "pose": {"position": {"x": 3.353548597331956, "y": -9.981755540218524, "z": 0.2534950078605223}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5069900157210446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 3, "action": 0, "pose": {"position": {"x": 3.4341575051839555, "y": -10.040160278776138, "z": 0.2581939659559314}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5163879319118628}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 3, "action": 0, "pose": {"position": {"x": 3.5156296906090247, "y": -10.098884939008757, "z": 0.26276412770321417}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5255282554064283}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 3, "action": 0, "pose": {"position": {"x": 3.5963553694004307, "y": -10.156722668895362, "z": 0.26721324784740635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5344264956948127}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 3, "action": 0, "pose": {"position": {"x": 3.678151287007418, "y": -10.214943861444045, "z": 0.2715483371497218}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5430966742994436}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 3, "action": 0, "pose": {"position": {"x": 3.759334501912016, "y": -10.272329908252233, "z": 0.2757757586517144}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5515515173034288}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 3, "action": 0, "pose": {"position": {"x": 3.8414482416403612, "y": -10.329966450150804, "z": 0.27990130849247885}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5598026169849577}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 3, "action": 0, "pose": {"position": {"x": 3.9231064289733086, "y": -10.386882109921212, "z": 0.2839302842046211}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5678605684092422}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 3, "action": 0, "pose": {"position": {"x": 4.005558042923647, "y": -10.443961133741837, "z": 0.28786754278152643}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5757350855630529}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 3, "action": 0, "pose": {"position": {"x": 4.087616206533529, "y": -10.500399140062017, "z": 0.29171755032830443}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5834351006566089}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 3, "action": 0, "pose": {"position": {"x": 4.170398341459724, "y": -10.556989206208172, "z": 0.29548442474106557}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5909688494821311}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 3, "action": 0, "pose": {"position": {"x": 4.25277492768806, "y": -10.612984263848439, "z": 0.29917197257496003}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5983439451499201}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 3, "action": 0, "pose": {"position": {"x": 4.335854318274217, "y": -10.669165328247315, "z": 0.30278372103980494}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6055674420796099}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 3, "action": 0, "pose": {"position": {"x": 4.418479259702463, "y": -10.724775791576201, "z": 0.3063229458879814}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6126458917759628}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 3, "action": 0, "pose": {"position": {"x": 4.501809301318559, "y": -10.780620575596634, "z": 0.30979269582136576}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6195853916427315}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 3, "action": 0, "pose": {"position": {"x": 4.584635473570174, "y": -10.835912159935397, "z": 0.3131958139340783}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6263916278681566}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 3, "action": 0, "pose": {"position": {"x": 4.668075839154863, "y": -10.8914184763794, "z": 0.31653495661953635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6330699132390727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 3, "action": 0, "pose": {"position": {"x": 4.75122919556352, "y": -10.94656543313765, "z": 0.3198126102989617}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6396252205979234}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 3, "action": 0, "pose": {"position": {"x": 4.834651883196513, "y": -11.001778918977054, "z": 0.32303110627052495}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6460622125410499}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 3, "action": 0, "pose": {"position": {"x": 4.918082146106667, "y": -11.056949134394253, "z": 0.32619263393092324}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6523852678618465}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 3, "action": 0, "pose": {"position": {"x": 5.001422416364411, "y": -11.112066325462775, "z": 0.32929925258226966}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6585985051645393}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 3, "action": 0, "pose": {"position": {"x": 5.084875535225587, "y": -11.167315056570176, "z": 0.3255289283074052}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6510578566148104}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 3, "action": 0, "pose": {"position": {"x": 5.168149205156829, "y": -11.222546005563785, "z": 0.3183640222264248}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6367280444528496}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 3, "action": 0, "pose": {"position": {"x": 5.251423843430269, "y": -11.277918889997796, "z": 0.31111032482693074}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6222206496538615}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 3, "action": 0, "pose": {"position": {"x": 5.334636943313715, "y": -11.33342608122609, "z": 0.30373290785542406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6074658157108481}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 3, "action": 0, "pose": {"position": {"x": 5.417598873444587, "y": -11.388966934659843, "z": 0.296205223792662}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.592410447585324}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 3, "action": 0, "pose": {"position": {"x": 5.500737000862504, "y": -11.444848771235847, "z": 0.2884829110745838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5769658221491676}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 3, "action": 0, "pose": {"position": {"x": 5.583347265398225, "y": -11.50060889042193, "z": 0.2805481719619176}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5610963439238352}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 3, "action": 0, "pose": {"position": {"x": 5.666361325711143, "y": -11.556877454510365, "z": 0.2723640556445794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5447281112891588}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 3, "action": 0, "pose": {"position": {"x": 5.748693011274715, "y": -11.612899277864976, "z": 0.26385090126938415}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5277018025387683}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 3, "action": 0, "pose": {"position": {"x": 5.831508174015383, "y": -11.669444190792245, "z": 0.25497671067272565}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5099534213454513}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 3, "action": 0, "pose": {"position": {"x": 5.913715260183556, "y": -11.725738467140893, "z": 0.24569836662259228}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49139673324518457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 3, "action": 0, "pose": {"position": {"x": 5.9962466931051415, "y": -11.782338264315003, "z": 0.2358764899481461}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4717529798962922}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 3, "action": 0, "pose": {"position": {"x": 6.078582884936985, "y": -11.838728991379556, "z": 0.22560290810225114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4512058162045023}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 3, "action": 0, "pose": {"position": {"x": 6.160891577931042, "y": -11.895063294232362, "z": 0.2150994227238444}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4301988454476888}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 3, "action": 0, "pose": {"position": {"x": 6.243236394103724, "y": -11.951662032291782, "z": 0.20457547398000916}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40915094796001833}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 3, "action": 0, "pose": {"position": {"x": 6.325017763752755, "y": -12.008435338924107, "z": 0.19393746709426019}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.38787493418852037}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 3, "action": 0, "pose": {"position": {"x": 6.406613043764857, "y": -12.066167708590513, "z": 0.18496444980958254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3699288996191651}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 3, "action": 0, "pose": {"position": {"x": 6.486841171793972, "y": -12.125430066972566, "z": 0.17782860757988128}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.35565721515976256}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 3, "action": 0, "pose": {"position": {"x": 6.5649480101191315, "y": -12.18749081142736, "z": 0.17307012490829704}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3461402498165941}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 3, "action": 0, "pose": {"position": {"x": 6.639702456753621, "y": -12.253486738464874, "z": 0.16995789933536734}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3399157986707347}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 3, "action": 0, "pose": {"position": {"x": 6.710246593411833, "y": -12.324331080914858, "z": 0.1678035405885036}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3356070811770072}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 3, "action": 0, "pose": {"position": {"x": 6.7753258849463665, "y": -12.399786802949507, "z": 0.16565643047538042}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33131286095076085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 3, "action": 0, "pose": {"position": {"x": 6.835128771939767, "y": -12.48031417606011, "z": 0.16333165359832363}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32666330719664727}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 3, "action": 0, "pose": {"position": {"x": 6.888614005534698, "y": -12.564317759217852, "z": 0.16028987168980688}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32057974337961376}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 3, "action": 0, "pose": {"position": {"x": 6.936118768939873, "y": -12.65267003246187, "z": 0.157118554712629}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.314237109425258}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 3, "action": 0, "pose": {"position": {"x": 6.976518321502578, "y": -12.74360594562742, "z": 0.1541231646533227}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3082463293066454}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 3, "action": 0, "pose": {"position": {"x": 7.010612483607302, "y": -12.83787242765263, "z": 0.14958662320229682}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29917324640459364}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 3, "action": 0, "pose": {"position": {"x": 7.037623288826625, "y": -12.933950887709983, "z": 0.14722531832360064}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2944506366472013}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 3, "action": 0, "pose": {"position": {"x": 7.055482611607201, "y": -13.032263440109968, "z": 0.1471684864820337}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2943369729640674}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 3, "action": 0, "pose": {"position": {"x": 7.062759156509847, "y": -13.131768143832558, "z": 0.14711163268531674}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2942232653706335}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 3, "action": 0, "pose": {"position": {"x": 7.060849726961146, "y": -13.231776088416302, "z": 0.14974758906104635}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2994951781220927}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 3, "action": 0, "pose": {"position": {"x": 7.050660389179585, "y": -13.331105075971996, "z": 0.15334836512321365}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3066967302464273}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 3, "action": 0, "pose": {"position": {"x": 7.031759347095458, "y": -13.429192194744521, "z": 0.15531099120210637}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31062198240421274}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 3, "action": 0, "pose": {"position": {"x": 7.004177515814779, "y": -13.525191621087172, "z": 0.15664465436157}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31328930872314}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 3, "action": 0, "pose": {"position": {"x": 6.968630826096477, "y": -13.618642923700245, "z": 0.1587327597334164}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3174655194668328}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 3, "action": 0, "pose": {"position": {"x": 6.925669124199964, "y": -13.708833992178, "z": 0.1608755188331451}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3217510376662902}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 3, "action": 0, "pose": {"position": {"x": 6.875419721949336, "y": -13.795218564151357, "z": 0.16239856418054338}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32479712836108676}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 3, "action": 0, "pose": {"position": {"x": 6.818308452434128, "y": -13.877192960409285, "z": 0.1637609173232689}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3275218346465378}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 3, "action": 0, "pose": {"position": {"x": 6.7548234402225775, "y": -13.954499103139748, "z": 0.16537330943265505}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3307466188653101}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 3, "action": 0, "pose": {"position": {"x": 6.685479451726382, "y": -14.026326131020678, "z": 0.1665049814472518}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3330099628945036}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 3, "action": 0, "pose": {"position": {"x": 6.609990588058841, "y": -14.092366506388869, "z": 0.16657883400051926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3331576680010385}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 3, "action": 0, "pose": {"position": {"x": 6.530446194387562, "y": -14.152412305534698, "z": 0.16880251184472397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.33760502368944795}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 3, "action": 0, "pose": {"position": {"x": 6.447400111968045, "y": -14.208726238822377, "z": 0.17458751058440614}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34917502116881227}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 3, "action": 0, "pose": {"position": {"x": 6.362808222963702, "y": -14.260378860494475, "z": 0.17975940226236786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3595188045247357}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 3, "action": 0, "pose": {"position": {"x": 6.274719413690931, "y": -14.308390739637396, "z": 0.1833716657122601}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3667433314245202}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 3, "action": 0, "pose": {"position": {"x": 6.185732212485169, "y": -14.353237136180827, "z": 0.19028295144945254}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3805659028989051}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 3, "action": 0, "pose": {"position": {"x": 6.095717473869992, "y": -14.39692904102009, "z": 0.19729518456659492}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.39459036913318984}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 3, "action": 0, "pose": {"position": {"x": 6.005625067943028, "y": -14.439622834764789, "z": 0.20398215198634687}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.40796430397269373}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 3, "action": 0, "pose": {"position": {"x": 5.9152348390477565, "y": -14.481948912014104, "z": 0.2103785034349838}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4207570068699676}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 3, "action": 0, "pose": {"position": {"x": 5.824868098106447, "y": -14.52427951402012, "z": 0.21651315335033744}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4330263067006749}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 3, "action": 0, "pose": {"position": {"x": 5.734452696904045, "y": -14.566787037848446, "z": 0.22241052812590997}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.44482105625181995}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 3, "action": 0, "pose": {"position": {"x": 5.644228274864346, "y": -14.609348357315444, "z": 0.22809148486592676}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4561829697318535}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 3, "action": 0, "pose": {"position": {"x": 5.553967324515072, "y": -14.652105802109709, "z": 0.23357400158640507}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.46714800317281013}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 3, "action": 0, "pose": {"position": {"x": 5.463670430914803, "y": -14.6950635941203, "z": 0.23887370473748543}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47774740947497085}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 3, "action": 0, "pose": {"position": {"x": 5.3736676723515995, "y": -14.738026976661923, "z": 0.24400427859342524}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4880085571868505}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 3, "action": 0, "pose": {"position": {"x": 5.283223681005874, "y": -14.781311519548229, "z": 0.2489777873201862}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4979555746403724}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 3, "action": 0, "pose": {"position": {"x": 5.193431745197822, "y": -14.824361310692971, "z": 0.25380493146147126}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5076098629229425}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 3, "action": 0, "pose": {"position": {"x": 5.103168078229368, "y": -14.8676853744387, "z": 0.25849525446251187}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5169905089250237}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 3, "action": 0, "pose": {"position": {"x": 5.013207474008605, "y": -14.910886524911442, "z": 0.26305731063603893}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5261146212720779}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 3, "action": 0, "pose": {"position": {"x": 4.9230539769259725, "y": -14.954183110404763, "z": 0.26749880302031215}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5349976060406243}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 3, "action": 0, "pose": {"position": {"x": 4.832965009711901, "y": -14.997436105478727, "z": 0.27182669747405785}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5436533949481157}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 3, "action": 0, "pose": {"position": {"x": 4.742841144435389, "y": -15.04068192676806, "z": 0.2760473178309801}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5520946356619602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 3, "action": 0, "pose": {"position": {"x": 4.65270726249566, "y": -15.083897440104568, "z": 0.2801664258207712}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5603328516415425}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 3, "action": 0, "pose": {"position": {"x": 4.56262964837438, "y": -15.127037803518254, "z": 0.2841892886354604}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5683785772709208}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 3, "action": 0, "pose": {"position": {"x": 4.472442425374409, "y": -15.17015570057871, "z": 0.2881207363982318}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5762414727964636}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 3, "action": 0, "pose": {"position": {"x": 4.38242441881934, "y": -15.213085820023597, "z": 0.2919652113201079}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5839304226402158}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 3, "action": 0, "pose": {"position": {"x": 4.292072668302, "y": -15.256038214418425, "z": 0.29572680996836564}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5914536199367313}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 3, "action": 0, "pose": {"position": {"x": 4.201970954041828, "y": -15.298710240144928, "z": 0.2994093197909816}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5988186395819632}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 3, "action": 0, "pose": {"position": {"x": 4.111487345461344, "y": -15.34138392266158, "z": 0.3030162508232935}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.606032501646587}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 3, "action": 0, "pose": {"position": {"x": 4.021182507488675, "y": -15.38377971173199, "z": 0.3065508633315804}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6131017266631608}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 3, "action": 0, "pose": {"position": {"x": 3.9305864028259783, "y": -15.426104453879356, "z": 0.3100161920123967}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6200323840247934}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 3, "action": 0, "pose": {"position": {"x": 3.84005040538429, "y": -15.468184091087707, "z": 0.3134150672580942}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6268301345161884}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 3, "action": 0, "pose": {"position": {"x": 3.749322125763159, "y": -15.510131837865517, "z": 0.3167501339119017}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6335002678238034}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 3, "action": 0, "pose": {"position": {"x": 3.658564498176251, "y": -15.551872735243732, "z": 0.3200238678655723}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6400477357311446}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 3, "action": 0, "pose": {"position": {"x": 3.5676973226057638, "y": -15.593449190981215, "z": 0.3232385907953913}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6464771815907826}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 3, "action": 0, "pose": {"position": {"x": 3.476750007535248, "y": -15.634856633997893, "z": 0.3263964832855806}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6527929665711611}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 3, "action": 0, "pose": {"position": {"x": 3.385741746039954, "y": -15.676098541280908, "z": 0.32949959654968786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6589991930993757}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 3, "action": 0, "pose": {"position": {"x": 3.294645104915929, "y": -15.717202187041334, "z": 0.33254986292880473}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6650997258576095}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 3, "action": 0, "pose": {"position": {"x": 3.203507230953966, "y": -15.758163316690165, "z": 0.3355491053191001}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6710982106382002}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 3, "action": 0, "pose": {"position": {"x": 3.112301007237678, "y": -15.799010791082639, "z": 0.3384990456591883}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6769980913183766}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 3, "action": 0, "pose": {"position": {"x": 3.021051414409794, "y": -15.839749900289085, "z": 0.3414013125894549}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6828026251789098}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 3, "action": 0, "pose": {"position": {"x": 2.9297678227310064, "y": -15.880397694768135, "z": 0.34425744837998934}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6885148967599787}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 3, "action": 0, "pose": {"position": {"x": 2.838443973056405, "y": -15.92098250327391, "z": 0.34706891521072397}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6941378304214479}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 3, "action": 0, "pose": {"position": {"x": 2.747123786249021, "y": -15.961511997013421, "z": 0.34983710087631037}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6996742017526207}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 3, "action": 0, "pose": {"position": {"x": 2.655765325214173, "y": -16.002033951167142, "z": 0.3525633239788593}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7051266479577186}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 3, "action": 0, "pose": {"position": {"x": 2.564448774400283, "y": -16.042553749456133, "z": 0.3552488386636428}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7104976773272856}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 3, "action": 0, "pose": {"position": {"x": 2.473101797959878, "y": -16.08315701063561, "z": 0.357894838945986}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.715789677891972}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 3, "action": 0, "pose": {"position": {"x": 2.3818434717671346, "y": -16.1238275081398, "z": 0.36050246267167213}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7210049253433443}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 3, "action": 0, "pose": {"position": {"x": 2.2905887685474893, "y": -16.1646177982611, "z": 0.36307279514810625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7261455902962125}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 3, "action": 0, "pose": {"position": {"x": 2.1994082480172605, "y": -16.20549132404121, "z": 0.36560687247908435}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7312137449581687}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 3, "action": 0, "pose": {"position": {"x": 2.1082641333171557, "y": -16.246432511390307, "z": 0.3681056846322147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7362113692644294}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 3, "action": 0, "pose": {"position": {"x": 2.017123879996552, "y": -16.287427834142026, "z": 0.37057017826473276}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7411403565294655}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 3, "action": 0, "pose": {"position": {"x": 1.926037966738552, "y": -16.328437757070756, "z": 0.3730012593305681}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7460025186611362}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 3, "action": 0, "pose": {"position": {"x": 1.8349072856377986, "y": -16.369494897447503, "z": 0.3753997954890166}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7507995909780332}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 3, "action": 0, "pose": {"position": {"x": 1.7438581215738884, "y": -16.410537925967333, "z": 0.3777666183331582}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7555332366663164}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 3, "action": 0, "pose": {"position": {"x": 1.6527272712159116, "y": -16.45163821616005, "z": 0.38010252545424844}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7602050509084969}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 3, "action": 0, "pose": {"position": {"x": 1.5617137667992596, "y": -16.49270690334315, "z": 0.3824082823565942}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7648165647131884}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 3, "action": 0, "pose": {"position": {"x": 1.4705839839082697, "y": -16.533850204762714, "z": 0.38468462423595035}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7693692484719007}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 3, "action": 0, "pose": {"position": {"x": 1.3796034952368827, "y": -16.574947428482904, "z": 0.3833311864363084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7666623728726168}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 3, "action": 0, "pose": {"position": {"x": 1.288476398107563, "y": -16.616130976433062, "z": 0.3769742728427147}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7539485456854293}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 3, "action": 0, "pose": {"position": {"x": 1.1975235548616303, "y": -16.657253924119257, "z": 0.37050382547913047}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7410076509582609}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 3, "action": 0, "pose": {"position": {"x": 1.1064011329259549, "y": -16.698469646761083, "z": 0.36391419070434794}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7278283814086959}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 3, "action": 0, "pose": {"position": {"x": 1.015467019980514, "y": -16.739614066314317, "z": 0.35719873648319395}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7143974729663879}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 3, "action": 0, "pose": {"position": {"x": 0.924352164767987, "y": -16.780851261865656, "z": 0.35035023685437955}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7007004737087591}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 3, "action": 0, "pose": {"position": {"x": 0.8334247494582151, "y": -16.82200936607449, "z": 0.3433503971834956}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6867007943669912}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 3, "action": 0, "pose": {"position": {"x": 0.7423189239695132, "y": -16.863250211634682, "z": 0.3362144821286125}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.672428964257225}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 3, "action": 0, "pose": {"position": {"x": 0.6513868934667426, "y": -16.904418126799975, "z": 0.32894239318890167}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6578847863778033}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 3, "action": 0, "pose": {"position": {"x": 0.5602996326972676, "y": -16.945660109758354, "z": 0.32155683694674325}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6431136738934865}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 3, "action": 0, "pose": {"position": {"x": 0.46934349875530473, "y": -16.986816527034073, "z": 0.31409302665675887}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6281860533135177}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 3, "action": 0, "pose": {"position": {"x": 0.3782577489904014, "y": -17.027997861597076, "z": 0.306468581479742}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.612937162959484}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 3, "action": 0, "pose": {"position": {"x": 0.2872891494846711, "y": -17.069193320673904, "z": 0.2990512202877511}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5981024405755022}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 3, "action": 0, "pose": {"position": {"x": 0.19634708294892778, "y": -17.110688406252258, "z": 0.29348571562783343}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5869714312556669}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 3, "action": 0, "pose": {"position": {"x": 0.10586847968471041, "y": -17.15295520893153, "z": 0.2896985568620926}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5793971137241852}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 3, "action": 0, "pose": {"position": {"x": 0.015925967774159725, "y": -17.196591101609144, "z": 0.28586333660915786}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5717266732183157}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 3, "action": 0, "pose": {"position": {"x": -0.07321253592556785, "y": -17.241595877590335, "z": 0.28190807177927285}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5638161435585457}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 3, "action": 0, "pose": {"position": {"x": -0.16171120767694203, "y": -17.288082068231688, "z": 0.2778643491209866}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5557286982419732}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 3, "action": 0, "pose": {"position": {"x": -0.24933300655329765, "y": -17.335984970997462, "z": 0.2739270908256382}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5478541816512764}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 3, "action": 0, "pose": {"position": {"x": -0.33615665083334023, "y": -17.38555495875561, "z": 0.2715952792552161}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5431905585104322}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 3, "action": 0, "pose": {"position": {"x": -0.42164833845972377, "y": -17.437138360113167, "z": 0.2707933548474313}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5415867096948626}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 3, "action": 0, "pose": {"position": {"x": -0.505699199858295, "y": -17.49127470463729, "z": 0.2701798631718849}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5403597263437698}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 3, "action": 0, "pose": {"position": {"x": -0.5879342724793772, "y": -17.54790073777656, "z": 0.269772365005497}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.539544730010994}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 3, "action": 0, "pose": {"position": {"x": -0.668434843597456, "y": -17.607174594921702, "z": 0.2695597431754502}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5391194863509003}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 3, "action": 0, "pose": {"position": {"x": -0.7468781857862952, "y": -17.668956477396804, "z": 0.269455687862197}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.538911375724394}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 3, "action": 0, "pose": {"position": {"x": -0.8233424446659511, "y": -17.733339309845608, "z": 0.26935159235052764}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5387031847010553}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 3, "action": 0, "pose": {"position": {"x": -0.8976559385740924, "y": -17.800047493132084, "z": 0.2695709272403823}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5391418544807646}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 3, "action": 0, "pose": {"position": {"x": -0.9700935828062629, "y": -17.868916837903598, "z": 0.27047705173637865}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5409541034727573}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 3, "action": 0, "pose": {"position": {"x": -1.0409586743439938, "y": -17.939291802371024, "z": 0.27330031894045237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5466006378809047}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 3, "action": 0, "pose": {"position": {"x": -1.1106654155801505, "y": -18.010897894267647, "z": 0.27739244224723114}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5547848844944623}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 3, "action": 0, "pose": {"position": {"x": -1.1791491545457398, "y": -18.08358532144139, "z": 0.2813310273278834}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5626620546557668}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 3, "action": 0, "pose": {"position": {"x": -1.2464875024676378, "y": -18.157394529113233, "z": 0.28516197412635413}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5703239482527083}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 3, "action": 0, "pose": {"position": {"x": -1.3126420482262982, "y": -18.23220514441981, "z": 0.2889509516423584}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5779019032847168}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 3, "action": 0, "pose": {"position": {"x": -1.377873287644541, "y": -18.307860151800757, "z": 0.29277735044304587}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5855547008860917}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 3, "action": 0, "pose": {"position": {"x": -1.4425635702424224, "y": -18.383903758719075, "z": 0.296521708662424}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.593043417324848}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 3, "action": 0, "pose": {"position": {"x": -1.507010712663943, "y": -18.460232002029585, "z": 0.30018775184011237}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6003755036802247}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 3, "action": 0, "pose": {"position": {"x": -1.5710917273281564, "y": -18.5367440417187, "z": 0.30377893434004455}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6075578686800891}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 3, "action": 0, "pose": {"position": {"x": -1.6349095107860545, "y": -18.613646729424385, "z": 0.3072984662086856}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6145969324173712}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 3, "action": 0, "pose": {"position": {"x": -1.6982577550685607, "y": -18.6907779798214, "z": 0.31074933670659566}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6214986734131913}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 3, "action": 0, "pose": {"position": {"x": -1.7613465500912102, "y": -18.76833037079934, "z": 0.3141343350035122}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6282686700070244}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 3, "action": 0, "pose": {"position": {"x": -1.8240871150212443, "y": -18.846017048548717, "z": 0.3174560684439841}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6349121368879682}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 3, "action": 0, "pose": {"position": {"x": -1.886689374797219, "y": -18.923959717482585, "z": 0.32071697872332366}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6414339574466473}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 3, "action": 0, "pose": {"position": {"x": -1.9491023342452354, "y": -19.001993439632418, "z": 0.3239193562588511}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6478387125177022}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 3, "action": 0, "pose": {"position": {"x": -2.011410189774193, "y": -19.080137911886457, "z": 0.32706535299660877}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6541307059932175}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 3, "action": 0, "pose": {"position": {"x": -2.073663912425812, "y": -19.15838558745165, "z": 0.3301569938568121}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6603139877136242}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 3, "action": 0, "pose": {"position": {"x": -2.135817923355366, "y": -19.23662231861273, "z": 0.3331961869908315}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.666392373981663}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 3, "action": 0, "pose": {"position": {"x": -2.1980003192669257, "y": -19.31496576551834, "z": 0.33618473299714835}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6723694659942967}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 3, "action": 0, "pose": {"position": {"x": -2.2601151999783013, "y": -19.393245301696144, "z": 0.3391243332225842}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6782486664451683}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 3, "action": 0, "pose": {"position": {"x": -2.3222870421296204, "y": -19.47155912086522, "z": 0.34201659725739625}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6840331945147925}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 3, "action": 0, "pose": {"position": {"x": -2.384501090247488, "y": -19.549830088463978, "z": 0.34486304971789644}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6897260994357929}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 3, "action": 0, "pose": {"position": {"x": -2.446738522082567, "y": -19.62797659349042, "z": 0.3476651363976801}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6953302727953602}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 3, "action": 0, "pose": {"position": {"x": -2.5091878584406757, "y": -19.7061791226769, "z": 0.3504242298578406}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.7008484597156812}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 3, "action": 0, "pose": {"position": {"x": -2.5715769298670477, "y": -19.784046179460816, "z": 0.3444366301111539}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6888732602223078}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 3, "action": 0, "pose": {"position": {"x": -2.6343664618660827, "y": -19.862105702393542, "z": 0.33802722012070247}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6760544402414049}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 3, "action": 0, "pose": {"position": {"x": -2.6970011939816967, "y": -19.939633054773097, "z": 0.3315325147107588}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6630650294215176}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 3, "action": 0, "pose": {"position": {"x": -2.7601773009688775, "y": -20.017462861609605, "z": 0.3249080731489279}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6498161462978558}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 3, "action": 0, "pose": {"position": {"x": -2.8231373480624167, "y": -20.0946548210703, "z": 0.3181291526910901}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6362583053821802}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 3, "action": 0, "pose": {"position": {"x": -2.886664195293068, "y": -20.172161084828428, "z": 0.31119013697234477}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6223802739446895}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 3, "action": 0, "pose": {"position": {"x": -2.9500248364177417, "y": -20.249074626547568, "z": 0.3040937557578336}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.6081875115156672}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 3, "action": 0, "pose": {"position": {"x": -3.0138741884502926, "y": -20.3261728096906, "z": 0.2968493518217749}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5936987036435498}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 3, "action": 0, "pose": {"position": {"x": -3.077649562972965, "y": -20.40274865215872, "z": 0.28944968583273556}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5788993716654711}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 3, "action": 0, "pose": {"position": {"x": -3.141796359590413, "y": -20.479305482513315, "z": 0.28187694986180084}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5637538997236017}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 3, "action": 0, "pose": {"position": {"x": -3.2060534438194415, "y": -20.555502573723363, "z": 0.2740959284933441}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5481918569866882}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 3, "action": 0, "pose": {"position": {"x": -3.270671891707089, "y": -20.631696204025726, "z": 0.26593229053243905}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5318645810648781}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 3, "action": 0, "pose": {"position": {"x": -3.335372083381631, "y": -20.707696953337308, "z": 0.25721851956011743}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.5144370391202349}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 3, "action": 0, "pose": {"position": {"x": -3.400255154850555, "y": -20.78381756780722, "z": 0.24787395017496708}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.49574790034993416}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 3, "action": 0, "pose": {"position": {"x": -3.4649837316042618, "y": -20.859824787601713, "z": 0.23827018700219812}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.47654037400439625}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 3, "action": 0, "pose": {"position": {"x": -3.529941266574073, "y": -20.935898090965477, "z": 0.22892521626034879}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.45785043252069757}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 3, "action": 0, "pose": {"position": {"x": -3.5949836844332763, "y": -21.011512688262165, "z": 0.21918550720335245}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4383710144067049}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 3, "action": 0, "pose": {"position": {"x": -3.660463858285351, "y": -21.08722233546123, "z": 0.2085450874136038}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.4170901748272076}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 3, "action": 0, "pose": {"position": {"x": -3.725998321907535, "y": -21.162484110753965, "z": 0.1993993091752048}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3987986183504096}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 3, "action": 0, "pose": {"position": {"x": -3.7926893651231683, "y": -21.23701813435884, "z": 0.19162849709472246}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3832569941894449}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 3, "action": 0, "pose": {"position": {"x": -3.8608852589736777, "y": -21.309901796295474, "z": 0.1835754818106943}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3671509636213886}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 3, "action": 0, "pose": {"position": {"x": -3.9307596347094007, "y": -21.381497337837885, "z": 0.17412006419664602}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.34824012839329205}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 3, "action": 0, "pose": {"position": {"x": -4.002400605843973, "y": -21.451292403556547, "z": 0.16758074632465106}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3351614926493021}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 3, "action": 0, "pose": {"position": {"x": -4.077078547246593, "y": -21.517678749342096, "z": 0.16315633411170677}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.32631266822341354}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 3, "action": 0, "pose": {"position": {"x": -4.155728470073653, "y": -21.5794311500536, "z": 0.15870327156995573}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.31740654313991146}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 3, "action": 0, "pose": {"position": {"x": -4.237926528892481, "y": -21.636102708217493, "z": 0.1533602521788583}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.3067205043577166}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 3, "action": 0, "pose": {"position": {"x": -4.323748044467223, "y": -21.687315507761053, "z": 0.14849715059989718}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.29699430119979436}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 3, "action": 0, "pose": {"position": {"x": -4.413152548241407, "y": -21.731899988517448, "z": 0.14441732626055273}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28883465252110546}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 3, "action": 0, "pose": {"position": {"x": -4.505990674303347, "y": -21.76858459082002, "z": 0.14138287108219408}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.28276574216438816}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 3, "action": 0, "pose": {"position": {"x": -4.602093068531272, "y": -21.796034750797443, "z": 0.13952622021059985}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.2790524404211997}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 3, "action": 0, "pose": {"position": {"x": -4.700364403223756, "y": -21.81275656705058, "z": 0.13933019251401968}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27866038502803936}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 3, "action": 0, "pose": {"position": {"x": -4.8000946402314355, "y": -21.81754468121873, "z": 0.13927640834485228}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.27855281668970455}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 3, "action": 0, "pose": {"position": {"x": -4.899560627782515, "y": -21.81006894760004, "z": 0.13454497959127892}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.1, "y": 0.1, "z": 0.26908995918255785}, "color": {"r": 1.0, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}, "global_traj_wpnts_sp": {"header": {"seq": 1, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": ""}, "wpnts": [{"id": 0, "s_m": 0.0, "d_m": 0.0, "x_m": -4.899560627782515, "y_m": -21.81006894760004, "d_right": 0.44518701884245915, "d_left": 2.5483398096801935, "psi_rad": 3.005579945343393, "kappa_radpm": -1.2181163556394805, "vx_mps": 3.015421940710504, "ax_mps2": -0.21627381797794354}, {"id": 1, "s_m": 0.09991200622239044, "d_m": 0.0, "x_m": -4.997337797335173, "y_m": -21.790428481132025, "d_right": 0.4527936034836518, "d_left": 2.5389147488335553, "psi_rad": 2.879675660733678, "kappa_radpm": -1.305999371449236, "vx_mps": 3.0082474596387843, "ax_mps2": -0.03495705465184914}, {"id": 2, "s_m": 0.19982401244478087, "d_m": 0.0, "x_m": -5.0918157802906645, "y_m": -21.758218665695313, "d_right": 0.4691385063254766, "d_left": 2.4508920740914952, "psi_rad": 2.7454833079477994, "kappa_radpm": -1.3270567207956334, "vx_mps": 3.0070862175034847, "ax_mps2": -0.03495705465184025}, {"id": 3, "s_m": 0.2997360186671713, "d_m": 0.0, "x_m": -5.181205013710637, "y_m": -21.71414829325817, "d_right": 0.4686464066620249, "d_left": 2.371092330660986, "psi_rad": 2.6257250832216217, "kappa_radpm": -1.0800384910624317, "vx_mps": 3.0059245267597174, "ax_mps2": 2.206293318609058}, {"id": 4, "s_m": 0.39964802488956175, "d_m": 0.0, "x_m": -5.265599245308499, "y_m": -21.660483433550443, "d_right": 0.4642979552607527, "d_left": 2.2912577259761227, "psi_rad": 2.527190905655165, "kappa_radpm": -0.9431344497129135, "vx_mps": 3.0783847459552884, "ax_mps2": 3.025796668223853}, {"id": 5, "s_m": 0.4995600311119522, "d_m": 0.0, "x_m": -5.344323719139505, "y_m": -21.599183158565218, "d_right": 0.4718499536824699, "d_left": 2.2122162892457835, "psi_rad": 2.4326984086299475, "kappa_radpm": -0.9491181174799491, "vx_mps": 3.1750715700936167, "ax_mps2": 2.392893058021202}, {"id": 6, "s_m": 0.5994720373343426, "d_m": 0.0, "x_m": -5.416890007691375, "y_m": -21.530742786282307, "d_right": 0.48094340076417547, "d_left": 2.1398903652784984, "psi_rad": 2.3386675167886977, "kappa_radpm": -0.9209046831916035, "vx_mps": 3.2494979562113597, "ax_mps2": 2.2351289805306056}, {"id": 7, "s_m": 0.6993840435567331, "d_m": 0.0, "x_m": -5.482987933703448, "y_m": -21.455796078364347, "d_right": 0.4911062890689466, "d_left": 2.073995110808342, "psi_rad": 2.2492739094575063, "kappa_radpm": -0.869124616212078, "vx_mps": 3.3175095189981056, "ax_mps2": 2.3919811225246983}, {"id": 8, "s_m": 0.7992960497791235, "d_m": 0.0, "x_m": -5.542295231042817, "y_m": -21.375485717838092, "d_right": 0.507945717768115, "d_left": 2.0143784720667552, "psi_rad": 2.165979997718684, "kappa_radpm": -0.7831881297569373, "vx_mps": 3.388782181586491, "ax_mps2": 2.9615945430683257}, {"id": 9, "s_m": 0.8992080560015139, "d_m": 0.0, "x_m": -5.595247142070062, "y_m": -21.290600099847516, "d_right": 0.5227759233118395, "d_left": 1.9613096619301555, "psi_rad": 2.0927557525613985, "kappa_radpm": -0.6832564780826603, "vx_mps": 3.475002500584507, "ax_mps2": 3.702556702382341}, {"id": 10, "s_m": 0.9991200622239044, "d_m": 0.0, "x_m": -5.642195165543698, "y_m": -21.20240080354928, "d_right": 0.5456494512659619, "d_left": 1.9167670442369567, "psi_rad": 2.028226110277402, "kappa_radpm": -0.61562446260604, "vx_mps": 3.5798745949604065, "ax_mps2": 4.060920807840085}, {"id": 11, "s_m": 1.0990320684462949, "d_m": 0.0, "x_m": -5.683660276443885, "y_m": -21.11139303113418, "d_right": 0.5502143114325869, "d_left": 1.8822259914263875, "psi_rad": 1.9692496696288362, "kappa_radpm": -0.5649388871523219, "vx_mps": 3.691472823370916, "ax_mps2": 4.248914231217624}, {"id": 12, "s_m": 1.1989440746686852, "d_m": 0.0, "x_m": -5.719926559893217, "y_m": -21.018194755527457, "d_right": 0.5670708399181845, "d_left": 1.8579156848111602, "psi_rad": 1.9156148521147354, "kappa_radpm": -0.503070073367559, "vx_mps": 3.804734773397704, "ax_mps2": 4.661592427062949}, {"id": 13, "s_m": 1.2988560808910756, "d_m": 0.0, "x_m": -5.751435177959165, "y_m": -20.923350580366776, "d_right": 0.5956668625107533, "d_left": 1.8423686016957053, "psi_rad": 1.8684965203082502, "kappa_radpm": -0.4411013885209094, "vx_mps": 3.925239457543909, "ax_mps2": 5.144165401155926}, {"id": 14, "s_m": 1.3987680871134662, "d_m": 0.0, "x_m": -5.778784752798318, "y_m": -20.826972931719883, "d_right": 0.6228170459045873, "d_left": 1.8277700024707566, "psi_rad": 1.8269398304065716, "kappa_radpm": -0.39061154513191554, "vx_mps": 4.0540637106733035, "ax_mps2": 5.516593653552198}, {"id": 15, "s_m": 1.4986800933358566, "d_m": 0.0, "x_m": -5.802250193933405, "y_m": -20.729997658258043, "d_right": 0.6461440288230235, "d_left": 1.8043194310225399, "psi_rad": 1.7902125507598527, "kappa_radpm": -0.3461321843169222, "vx_mps": 4.18781332548126, "ax_mps2": 5.861811617145735}, {"id": 16, "s_m": 1.598592099558247, "d_m": 0.0, "x_m": -5.822452992022898, "y_m": -20.631700498639052, "d_right": 0.6662755135953372, "d_left": 1.7841274311353819, "psi_rad": 1.7573875667438952, "kappa_radpm": -0.30971429613935875, "vx_mps": 4.325403006265647, "ax_mps2": 6.133194506918363}, {"id": 17, "s_m": 1.6985041057806374, "d_m": 0.0, "x_m": -5.83946007200482, "y_m": -20.533640281207276, "d_right": 0.6832140820923247, "d_left": 1.7671347307624377, "psi_rad": 1.728201190292484, "kappa_radpm": -0.27700182399711126, "vx_mps": 4.4648259430899, "ax_mps2": 6.400995749694675}, {"id": 18, "s_m": 1.7984161120030278, "d_m": 0.0, "x_m": -5.85386340499217, "y_m": -20.434126554489165, "d_right": 0.6975976816180802, "d_left": 1.7527355006019405, "psi_rad": 1.700956429966927, "kappa_radpm": -0.2691385027555216, "vx_mps": 4.605837964630822, "ax_mps2": 6.2085560890673115}, {"id": 19, "s_m": 1.8983281182254184, "d_m": 0.0, "x_m": -5.865417957030765, "y_m": -20.335698203148304, "d_right": 0.7091062848708414, "d_left": 1.741194715760787, "psi_rad": 1.674373744280157, "kappa_radpm": -0.26755812049317507, "vx_mps": 4.738603375008347, "ax_mps2": 5.905348310700585}, {"id": 20, "s_m": 1.9982401244478087, "d_m": 0.0, "x_m": -5.874533528189421, "y_m": -20.235102621341515, "d_right": 0.7182342469887426, "d_left": 1.7327610849281425, "psi_rad": 1.648280469954638, "kappa_radpm": -0.24892740927788687, "vx_mps": 4.861521607477303, "ax_mps2": 6.025385334430414}, {"id": 21, "s_m": 2.0981521306701993, "d_m": 0.0, "x_m": -5.881023490080334, "y_m": -20.136019120598913, "d_right": 0.7246992397559465, "d_left": 1.7282528674411126, "psi_rad": 1.6243862303429006, "kappa_radpm": -0.23382792079319198, "vx_mps": 4.983814705024709, "ax_mps2": 6.096065326694636}, {"id": 22, "s_m": 2.1980641368925897, "d_m": 0.0, "x_m": -5.8852434428130715, "y_m": -20.035593042032932, "d_right": 0.7289285200450812, "d_left": 1.7318431284816351, "psi_rad": 1.601368203844066, "kappa_radpm": -0.22365268510230618, "vx_mps": 5.104561611708311, "ax_mps2": 6.071652531956466}, {"id": 23, "s_m": 2.29797614311498, "d_m": 0.0, "x_m": -5.887208252861279, "y_m": -19.9358929765101, "d_right": 0.7308854711862163, "d_left": 1.7433442500565044, "psi_rad": 1.5801516910240756, "kappa_radpm": -0.19216368453439558, "vx_mps": 5.2220504803029435, "ax_mps2": 6.301033068042991}, {"id": 24, "s_m": 2.3978881493373705, "d_m": 0.0, "x_m": -5.887290741674756, "y_m": -19.836793613959333, "d_right": 0.7025953328205183, "d_left": 1.762133988862484, "psi_rad": 1.5641963866492508, "kappa_radpm": -0.12620163239606347, "vx_mps": 5.341246009035326, "ax_mps2": 6.2344707124790215}, {"id": 25, "s_m": 2.497800155559761, "d_m": 0.0, "x_m": -5.886080622082671, "y_m": -19.736562626958165, "d_right": 0.6850351008916779, "d_left": 1.7704641482106143, "psi_rad": 1.5540472937807712, "kappa_radpm": -0.0767530192358455, "vx_mps": 5.456620371830244, "ax_mps2": 6.169937588101314}, {"id": 26, "s_m": 2.5977121617821513, "d_m": 0.0, "x_m": -5.884116385352806, "y_m": -19.636983347350867, "d_right": 0.6804571885205619, "d_left": 1.7724275193978989, "psi_rad": 1.5488255709173155, "kappa_radpm": -0.03418310008189058, "vx_mps": 5.568447500664894, "ax_mps2": 6.107290341800204}, {"id": 27, "s_m": 2.6976241680045416, "d_m": 0.0, "x_m": -5.881802278226103, "y_m": -19.537239587478847, "d_right": 0.6762861002544558, "d_left": 1.774741165752689, "psi_rad": 1.5468609529220159, "kappa_radpm": -0.004953783153044642, "vx_mps": 5.676970215610162, "ax_mps2": 6.046401834541445}, {"id": 28, "s_m": 2.7975361742269325, "d_m": 0.0, "x_m": -5.8794273234978265, "y_m": -19.437493836658238, "d_right": 0.6739010281485415, "d_left": 1.7771156923162656, "psi_rad": 1.5474728802567983, "kappa_radpm": 0.016649228821585028, "vx_mps": 5.782404958523438, "ax_mps2": 5.987158678709833}, {"id": 29, "s_m": 2.897448180449323, "d_m": 0.0, "x_m": -5.877216073660854, "y_m": -19.337789455620634, "d_right": 0.6716771783196903, "d_left": 1.7793264713975718, "psi_rad": 1.550012151659048, "kappa_radpm": 0.030882840376479724, "vx_mps": 5.8849456390590245, "ax_mps2": 5.92945923681413}, {"id": 30, "s_m": 2.9973601866717132, "d_m": 0.0, "x_m": -5.8752999709010485, "y_m": -19.23764453614308, "d_right": 0.6697721475393528, "d_left": 1.7812428859903244, "psi_rad": 1.5534200975910901, "kappa_radpm": 0.03696151942535664, "vx_mps": 5.9847667883559, "ax_mps2": 5.873211980080792}, {"id": 31, "s_m": 3.0972721928941036, "d_m": 0.0, "x_m": -5.873756920513284, "y_m": -19.138230671119928, "d_right": 0.6681996636277051, "d_left": 1.7857350339409919, "psi_rad": 1.5571378755907597, "kappa_radpm": 0.03750543338780981, "vx_mps": 6.082026166895889, "ax_mps2": 5.818334130833005}, {"id": 32, "s_m": 3.197184199116494, "d_m": 0.0, "x_m": -5.872578902577923, "y_m": -19.038325782770702, "d_right": 0.6670184798851677, "d_left": 1.7954219901775248, "psi_rad": 1.560848272814809, "kappa_radpm": 0.03588299946391909, "vx_mps": 6.176866937742286, "ax_mps2": 5.764750530875202}, {"id": 33, "s_m": 3.2970962053388844, "d_m": 0.0, "x_m": -5.871756284231821, "y_m": -18.938166183132743, "d_right": 0.6662060055839645, "d_left": 1.8102709112155453, "psi_rad": 1.5642571866602992, "kappa_radpm": 0.032205371740407565, "vx_mps": 6.269419490542679, "ax_mps2": 5.712392691514297}, {"id": 34, "s_m": 3.3970082115612747, "d_m": 0.0, "x_m": -5.871258523067628, "y_m": -18.838767930628915, "d_right": 0.6656766990335156, "d_left": 1.8300037657190096, "psi_rad": 1.5672452963913217, "kappa_radpm": 0.02780952916315866, "vx_mps": 6.359802982536099, "ax_mps2": 5.661197990791308}, {"id": 35, "s_m": 3.496920217783665, "d_m": 0.0, "x_m": -5.871034884743485, "y_m": -18.738369263474702, "d_right": 0.6654751481866366, "d_left": 1.8356539357260657, "psi_rad": 1.5698213734512796, "kappa_radpm": 0.02354246782710782, "vx_mps": 6.448126648449091, "ax_mps2": 5.611108990955151}, {"id": 36, "s_m": 3.5968322240060555, "d_m": 0.0, "x_m": -5.871047588053166, "y_m": -18.63889748896079, "d_right": 0.6654596375165293, "d_left": 1.8356350047378973, "psi_rad": 1.5719602848917904, "kappa_radpm": 0.01953609749324014, "vx_mps": 6.534490920284223, "ax_mps2": 5.562072854862043}, {"id": 37, "s_m": 3.6967442302284463, "d_m": 0.0, "x_m": -5.871255733128001, "y_m": -18.53890048565474, "d_right": 0.6656675786893685, "d_left": 1.8354272618325935, "psi_rad": 1.5737471284457707, "kappa_radpm": 0.016678759435300755, "vx_mps": 6.618988389674489, "ax_mps2": 5.514040844312593}, {"id": 38, "s_m": 3.7966562364508367, "d_m": 0.0, "x_m": -5.871631600422497, "y_m": -18.438848156017027, "d_right": 0.6660459608639433, "d_left": 1.835052503086105, "psi_rad": 1.5753314024617233, "kappa_radpm": 0.015028758072710643, "vx_mps": 6.701704639040774, "ax_mps2": 5.466967886683374}, {"id": 39, "s_m": 3.896568242673227, "d_m": 0.0, "x_m": -5.872157401997953, "y_m": -18.339264412141198, "d_right": 0.666549133706712, "d_left": 1.8345219890739477, "psi_rad": 1.5768499606844288, "kappa_radpm": 0.016421120212070955, "vx_mps": 6.782718962773297, "ax_mps2": 5.420812198816137}, {"id": 40, "s_m": 3.9964802488956175, "d_m": 0.0, "x_m": -5.872852405908779, "y_m": -18.238853541617743, "d_right": 0.6672652403154551, "d_left": 1.8378102090491342, "psi_rad": 1.5786269899456669, "kappa_radpm": 0.018890505296647164, "vx_mps": 6.8621049957168045, "ax_mps2": 5.375534959176477}, {"id": 41, "s_m": 4.096392255118008, "d_m": 0.0, "x_m": -5.87372915140901, "y_m": -18.13941628599032, "d_right": 0.6681111994324862, "d_left": 1.8433366076928968, "psi_rad": 1.5806540212934064, "kappa_radpm": 0.02206536038788654, "vx_mps": 6.939931263119352, "ax_mps2": 5.331100020915686}, {"id": 42, "s_m": 4.196304261340399, "d_m": 0.0, "x_m": -5.8748376044195485, "y_m": -18.038874162933656, "d_right": 0.6692470205472055, "d_left": 1.8517771203431717, "psi_rad": 1.5830446193971448, "kappa_radpm": 0.025490177586421022, "vx_mps": 7.0162616637170245, "ax_mps2": 5.2874736597632666}, {"id": 43, "s_m": 4.296216267562789, "d_m": 0.0, "x_m": -5.876180637567661, "y_m": -17.93911268046171, "d_right": 0.6659051959618558, "d_left": 1.8652390365793714, "psi_rad": 1.5853675615019238, "kappa_radpm": 0.020108015464209424, "vx_mps": 7.091155895630498, "ax_mps2": 5.244624351713506}, {"id": 44, "s_m": 4.3961282737851795, "d_m": 0.0, "x_m": -5.877731361674757, "y_m": -17.83893008972482, "d_right": 0.6375942122211642, "d_left": 1.8793198470280914, "psi_rad": 1.5870824207983607, "kappa_radpm": 0.014223135375293326, "vx_mps": 7.164669833136777, "ax_mps2": 5.202522576311345}, {"id": 45, "s_m": 4.49604028000757, "d_m": 0.0, "x_m": -5.879422395824008, "y_m": -17.738981593625827, "d_right": 0.6244166403339793, "d_left": 1.8776288632486418, "psi_rad": 1.5882700901643385, "kappa_radpm": 0.009638464673848664, "vx_mps": 7.236855861069313, "ax_mps2": 5.161140642020992}, {"id": 46, "s_m": 4.59595228622996, "d_m": 0.0, "x_m": -5.881208649113608, "y_m": -17.63909355363494, "d_right": 0.6262060158255509, "d_left": 1.8758412759375993, "psi_rad": 1.5890092464030996, "kappa_radpm": 0.0051574780408662315, "vx_mps": 7.307763172529179, "ax_mps2": 5.120452530719392}, {"id": 47, "s_m": 4.695864292452351, "d_m": 0.0, "x_m": -5.883049385222991, "y_m": -17.53921730138085, "d_right": 0.628050566192325, "d_left": 1.87399894670719, "psi_rad": 1.589406494659414, "kappa_radpm": 0.003001332125713163, "vx_mps": 7.377438034710635, "ax_mps2": 5.0804337588144755}, {"id": 48, "s_m": 4.795776298674741, "d_m": 0.0, "x_m": -5.88492068958424, "y_m": -17.43930857048742, "d_right": 0.6299233376194168, "d_left": 1.872126814633746, "psi_rad": 1.5896098909740468, "kappa_radpm": 0.001070114449147772, "vx_mps": 7.4459240269184415, "ax_mps2": 5.041061252862531}, {"id": 49, "s_m": 4.895688304897131, "d_m": 0.0, "x_m": -5.886803885161413, "y_m": -17.339436707075375, "d_right": 0.6318105512930188, "d_left": 1.8702419368641017, "psi_rad": 1.5896821063941242, "kappa_radpm": 0.00047795829378455393, "vx_mps": 7.513262254252027, "ax_mps2": 5.002313237877945}, {"id": 50, "s_m": 4.995600311119522, "d_m": 0.0, "x_m": -5.888692710275571, "y_m": -17.239519530435786, "d_right": 0.6337002145127809, "d_left": 1.8733448354578466, "psi_rad": 1.5897058616124202, "kappa_radpm": -2.304761587876631e-06, "vx_mps": 7.579491539929751, "ax_mps2": 4.964169136784035}, {"id": 51, "s_m": 5.095512317341912, "d_m": 0.0, "x_m": -5.890581595031774, "y_m": -17.139641369459135, "d_right": 0.6355926646122706, "d_left": 1.8817522828068687, "psi_rad": 1.589708019871687, "kappa_radpm": 8.282532039904685e-05, "vx_mps": 7.644648598806448, "ax_mps2": 4.926609479675806}, {"id": 52, "s_m": 5.1954243235643025, "d_m": 0.0, "x_m": -5.8924719230066485, "y_m": -17.039730638203498, "d_right": 0.6374842824021097, "d_left": 1.8953991241596335, "psi_rad": 1.5897225380706868, "kappa_radpm": 0.00020768653710953968, "vx_mps": 7.708768194284396, "ax_mps2": 4.889615821748683}, {"id": 53, "s_m": 5.295336329786693, "d_m": 0.0, "x_m": -5.894363422364128, "y_m": -16.93985509688538, "d_right": 0.6393795248617089, "d_left": 1.9125161472211991, "psi_rad": 1.5897419999065523, "kappa_radpm": 0.0001727845673612218, "vx_mps": 7.7718832805199805, "ax_mps2": 4.853170668901649}, {"id": 54, "s_m": 5.395248336009083, "d_m": 0.0, "x_m": -5.896257354170547, "y_m": -16.839942224368716, "d_right": 0.6412745930623174, "d_left": 1.910623556229695, "psi_rad": 1.5897570394780094, "kappa_radpm": 0.00012823696197433753, "vx_mps": 7.834025131576057, "ax_mps2": 4.817257410153648}, {"id": 55, "s_m": 5.495160342231474, "d_m": 0.0, "x_m": -5.898151959677975, "y_m": -16.740065105328682, "d_right": 0.643172825488418, "d_left": 1.908730973234792, "psi_rad": 1.5897698808910175, "kappa_radpm": 0.00013127632303968161, "vx_mps": 7.895223458955517, "ax_mps2": 4.781860256127363}, {"id": 56, "s_m": 5.595072348453865, "d_m": 0.0, "x_m": -5.9000485233698985, "y_m": -16.640153864923736, "d_right": 0.6450706376493096, "d_left": 1.906835791816842, "psi_rad": 1.5897832778935301, "kappa_radpm": 0.00013685119337666023, "vx_mps": 7.95550651876869, "ax_mps2": 4.746964182944777}, {"id": 57, "s_m": 5.694984354676255, "d_m": 0.0, "x_m": -5.901945788350247, "y_m": -16.54027657400432, "d_right": 0.6469715125128952, "d_left": 1.9049405606758594, "psi_rad": 1.58979658559233, "kappa_radpm": 0.0001289715964826142, "vx_mps": 8.014901209630647, "ax_mps2": 4.712554880965433}, {"id": 58, "s_m": 5.794896360898646, "d_m": 0.0, "x_m": -5.903844978807085, "y_m": -16.440365719705355, "d_right": 0.6488719765512726, "d_left": 1.903042770649205, "psi_rad": 1.5898090486315204, "kappa_radpm": 0.00012047066157401942, "vx_mps": 8.073433162250094, "ax_mps2": 4.678618707863215}, {"id": 59, "s_m": 5.894808367121036, "d_m": 0.0, "x_m": -5.905744755425418, "y_m": -16.340487640042557, "d_right": 0.6398673940461285, "d_left": 1.9018554317575143, "psi_rad": 1.5898208640367695, "kappa_radpm": 0.00011626437776281553, "vx_mps": 8.131126821555792, "ax_mps2": 4.645142645603464}, {"id": 60, "s_m": 5.9947203733434264, "d_m": 0.0, "x_m": -5.907646298859898, "y_m": -16.240577710553584, "d_right": 0.6138749623459872, "d_left": 1.90591147682058, "psi_rad": 1.5898322817361548, "kappa_radpm": 0.00011225610205675259, "vx_mps": 8.188005522106518, "ax_mps2": 4.612114260928502}, {"id": 61, "s_m": 6.094632379565817, "d_m": 0.0, "x_m": -5.909548368863813, "y_m": -16.140698925432226, "d_right": 0.6035130881937314, "d_left": 1.9151751494231493, "psi_rad": 1.589843255117533, "kappa_radpm": 0.00010740647604626292, "vx_mps": 8.244091557443996, "ax_mps2": 4.579521669009421}, {"id": 62, "s_m": 6.194544385788207, "d_m": 0.0, "x_m": -5.911452088429437, "y_m": -16.040789840578856, "d_right": 0.6054187388704039, "d_left": 1.9295770738512528, "psi_rad": 1.5898537443849161, "kappa_radpm": 0.00010253393642042363, "vx_mps": 8.299406243973038, "ax_mps2": 4.5473534999585095}, {"id": 63, "s_m": 6.294456392010598, "d_m": 0.0, "x_m": -5.913356270958929, "y_m": -15.940910225746016, "d_right": 0.6073260586347088, "d_left": 1.9432499249108188, "psi_rad": 1.5898637727953417, "kappa_radpm": 9.826430106782674e-05, "vx_mps": 8.353969979887717, "ax_mps2": 4.515598867931182}, {"id": 64, "s_m": 6.394368398232988, "d_m": 0.0, "x_m": -5.91526197852101, "y_m": -15.841002087453145, "d_right": 0.6092337350403577, "d_left": 1.9413447620511721, "psi_rad": 1.5898733802708942, "kappa_radpm": 9.40288116160849e-05, "vx_mps": 8.407802299605189, "ax_mps2": 4.484247342578467}, {"id": 65, "s_m": 6.494280404455378, "d_m": 0.0, "x_m": -5.917168097558913, "y_m": -15.74112160151023, "d_right": 0.6111429568032701, "d_left": 1.9394394211658383, "psi_rad": 1.5898825699641845, "kappa_radpm": 8.995927946834961e-05, "vx_mps": 8.460921924118859, "ax_mps2": 4.453288922631081}, {"id": 66, "s_m": 6.594192410677769, "d_m": 0.0, "x_m": -5.919075624021428, "y_m": -15.641214437444614, "d_right": 0.6130524912302519, "d_left": 1.937532454302504, "psi_rad": 1.5898913565546602, "kappa_radpm": 8.590550309547583e-05, "vx_mps": 8.513346807638651, "ax_mps2": 4.422714011428826}, {"id": 67, "s_m": 6.694104416900159, "d_m": 0.0, "x_m": -5.92098351668585, "y_m": -15.541333030990426, "d_right": 0.6149634500258561, "d_left": 1.935625341323983, "psi_rad": 1.5898997484172843, "kappa_radpm": 8.211210036084686e-05, "vx_mps": 8.565094180847673, "ax_mps2": 4.392513394217963}, {"id": 68, "s_m": 6.7940164231225495, "d_m": 0.0, "x_m": -5.922892702036155, "y_m": -15.44142687509744, "d_right": 0.6168746841058469, "d_left": 1.933716730976897, "psi_rad": 1.5899077647642663, "kappa_radpm": 7.833767110629293e-05, "vx_mps": 8.616180591070544, "ax_mps2": 4.362678217064634}, {"id": 69, "s_m": 6.89392842934494, "d_m": 0.0, "x_m": -5.924802214964342, "y_m": -15.341544517630417, "d_right": 0.6187872252521268, "d_left": 1.9335410738658627, "psi_rad": 1.5899154118622327, "kappa_radpm": 7.476622948016471e-05, "vx_mps": 8.666621939618691, "ax_mps2": 4.333199967247946}, {"id": 70, "s_m": 6.99384043556733, "d_m": 0.0, "x_m": -5.926712909842518, "y_m": -15.241639386555086, "d_right": 0.620700010554681, "d_left": 1.9385215569595917, "psi_rad": 1.5899227050661242, "kappa_radpm": 7.121101784006195e-05, "vx_mps": 8.71643351655143, "ax_mps2": 4.304070455002716}, {"id": 71, "s_m": 7.093752441789721, "d_m": 0.0, "x_m": -5.928623898924552, "y_m": -15.141756058943646, "d_right": 0.6226139890823466, "d_left": 1.9486165485974027, "psi_rad": 1.589929650480062, "kappa_radpm": 6.784374915189153e-05, "vx_mps": 8.765630033068062, "ax_mps2": 4.275281796505111}, {"id": 72, "s_m": 7.193664448012111, "d_m": 0.0, "x_m": -5.93053596287108, "y_m": -15.041851958914778, "d_right": 0.6245281856427907, "d_left": 1.963751389704368, "psi_rad": 1.589936262070035, "kappa_radpm": 6.449193707019197e-05, "vx_mps": 8.81422565172543, "ax_mps2": 4.246826397995354}, {"id": 73, "s_m": 7.293576454234502, "d_m": 0.0, "x_m": -5.932448292113201, "y_m": -14.941967650381267, "d_right": 0.6264434650381132, "d_left": 1.9740955972026528, "psi_rad": 1.5899425452066762, "kappa_radpm": 6.130239131438976e-05, "vx_mps": 8.862234014656712, "ax_mps2": 4.218696940948126}, {"id": 74, "s_m": 7.393488460456893, "d_m": 0.0, "x_m": -5.934361592684549, "y_m": -14.84206457964444, "d_right": 0.6254358820227913, "d_left": 1.9721821754115487, "psi_rad": 1.5899485119357508, "kappa_radpm": 5.812711835805322e-05, "vx_mps": 8.909668269950751, "ax_mps2": 4.190886368205823}, {"id": 75, "s_m": 7.493400466679283, "d_m": 0.0, "x_m": -5.936275132964891, "y_m": -14.742179302423454, "d_right": 0.6012186993988962, "d_left": 1.9702684812695177, "psi_rad": 1.5899541660244634, "kappa_radpm": 5.507117900030584e-05, "vx_mps": 8.956541096336366, "ax_mps2": 4.16338787100004}, {"id": 76, "s_m": 7.593312472901673, "d_m": 0.0, "x_m": -5.938189544696095, "y_m": -14.64227724014292, "d_right": 0.5911340369392097, "d_left": 1.9683539505034862, "psi_rad": 1.5899595166340685, "kappa_radpm": 5.202716603090989e-05, "vx_mps": 9.002864726302922, "ax_mps2": 4.136194876793743}, {"id": 77, "s_m": 7.693224479124064, "d_m": 0.0, "x_m": -5.940104173413889, "y_m": -14.542390976109836, "d_right": 0.583590944424727, "d_left": 1.9664391751451862, "psi_rad": 1.5899645723449787, "kappa_radpm": 4.919772665433245e-05, "vx_mps": 9.04865096777657, "ax_mps2": 4.10930103787743}, {"id": 78, "s_m": 7.793136485346454, "d_m": 0.0, "x_m": -5.942019576856434, "y_m": -14.442489922732253, "d_right": 0.585507165889501, "d_left": 1.964523655017823, "psi_rad": 1.589969347688951, "kappa_radpm": 4.63869745223659e-05, "vx_mps": 9.093911224460905, "ax_mps2": 4.082700220669181}, {"id": 79, "s_m": 7.893048491568845, "d_m": 0.0, "x_m": -5.943935175865826, "y_m": -14.342602791157304, "d_right": 0.5874237295568965, "d_left": 1.9653309556678895, "psi_rad": 1.5899738215772232, "kappa_radpm": 4.314533307652559e-05, "vx_mps": 9.138656514941315, "ax_mps2": 4.0563864956595825}, {"id": 80, "s_m": 7.992960497791235, "d_m": 0.0, "x_m": -5.945851455228725, "y_m": -14.242702647030319, "d_right": 0.5893408571882, "d_left": 1.9712085586145196, "psi_rad": 1.589977969145522, "kappa_radpm": 3.987436845680947e-05, "vx_mps": 9.182897490643619, "ax_mps2": 4.030354127959593}, {"id": 81, "s_m": 8.092872504013625, "d_m": 0.0, "x_m": -5.947767908451875, "y_m": -14.14281438001561, "d_right": 0.5912582885650227, "d_left": 1.98211002078033, "psi_rad": 1.589981906457053, "kappa_radpm": 3.914509641554821e-05, "vx_mps": 9.226644452729884, "ax_mps2": 4.004597568404494}, {"id": 82, "s_m": 8.192784510236017, "d_m": 0.0, "x_m": -5.9496849598014165, "y_m": -14.042915309993788, "d_right": 0.5931762201692942, "d_left": 1.9979554886461226, "psi_rad": 1.5899857922168996, "kappa_radpm": 3.863476845593468e-05, "vx_mps": 9.269907368007317, "ax_mps2": 3.979111445176256}, {"id": 83, "s_m": 8.292696516458406, "d_m": 0.0, "x_m": -5.951602178563267, "y_m": -13.94302680901749, "d_right": 0.5950944388448859, "d_left": 2.0050806563137167, "psi_rad": 1.589989117434942, "kappa_radpm": 2.696354812306314e-05, "vx_mps": 9.31269588391978, "ax_mps2": 3.9538905559072957}, {"id": 84, "s_m": 8.392608522680797, "d_m": 0.0, "x_m": -5.953519860259601, "y_m": -13.843128215027978, "d_right": 0.597013026769785, "d_left": 2.0031623062780124, "psi_rad": 1.5899911757230953, "kappa_radpm": 1.423789682019616e-05, "vx_mps": 9.355019342685793, "ax_mps2": 3.9289298602313347}, {"id": 85, "s_m": 8.492520528903187, "d_m": 0.0, "x_m": -5.955437628587553, "y_m": -13.74323722180005, "d_right": 0.5989317921378595, "d_left": 2.0012437802236307, "psi_rad": 1.5899949628948284, "kappa_radpm": 6.792043980790127e-05, "vx_mps": 9.396886794641663, "ax_mps2": 3.9042244727525484}, {"id": 86, "s_m": 8.592432535125578, "d_m": 0.0, "x_m": -5.957356186459723, "y_m": -13.643340432430412, "d_right": 0.6008512961247398, "d_left": 1.9993245348181736, "psi_rad": 1.5900047813748577, "kappa_radpm": 0.00012861668109474193, "vx_mps": 9.438307010843703, "ax_mps2": 3.8797696564022397}, {"id": 87, "s_m": 8.692344541347968, "d_m": 0.0, "x_m": -5.959276122498999, "y_m": -13.543452053582076, "d_right": 0.6027722801980814, "d_left": 1.997403812832388, "psi_rad": 1.5900292368647075, "kappa_radpm": 0.000381032716943379, "vx_mps": 9.479288494979208, "ax_mps2": 3.8555608161601707}, {"id": 88, "s_m": 8.792256547570359, "d_m": 0.0, "x_m": -5.961200040253177, "y_m": -13.443554464116765, "d_right": 0.604697155982012, "d_left": 1.995479219735465, "psi_rad": 1.59008102953816, "kappa_radpm": 0.0006556103943278008, "vx_mps": 9.519839494631997, "ax_mps2": 3.8315934931125746}, {"id": 89, "s_m": 8.892168553792748, "d_m": 0.0, "x_m": -5.963130672108825, "y_m": -13.343662939149862, "d_right": 0.5868706231088765, "d_left": 1.9972294686934935, "psi_rad": 1.5901699114118173, "kappa_radpm": 0.001148675605564141, "vx_mps": 9.559968011944719, "ax_mps2": 3.807863358830053}, {"id": 90, "s_m": 8.99208056001514, "d_m": 0.0, "x_m": -5.9650728682456435, "y_m": -13.24376654902804, "d_right": 0.5651422783301305, "d_left": 2.0039545869459787, "psi_rad": 1.5903107443969247, "kappa_radpm": 0.001670522092445578, "vx_mps": 9.599681813717012, "ax_mps2": 3.7843662100380326}, {"id": 91, "s_m": 9.09199256623753, "d_m": 0.0, "x_m": -5.967031663775583, "y_m": -13.14383185853746, "d_right": 0.5606605413756542, "d_left": 2.0156059283476466, "psi_rad": 1.5904751907284913, "kappa_radpm": 0.0015390142061127482, "vx_mps": 9.638988440975504, "ax_mps2": 3.7610979635680897}, {"id": 92, "s_m": 9.19190457245992, "d_m": 0.0, "x_m": -5.96900444865528, "y_m": -13.043967300412703, "d_right": 0.5626295542398531, "d_left": 2.0320844272905356, "psi_rad": 1.5906178571934755, "kappa_radpm": 0.0013181062476386805, "vx_mps": 9.677895218049091, "ax_mps2": 3.7380546515673894}, {"id": 93, "s_m": 9.29181657868231, "d_m": 0.0, "x_m": -5.970991987169371, "y_m": -12.943998014258387, "d_right": 0.5646158859268668, "d_left": 2.0360237970096735, "psi_rad": 1.590721714308351, "kappa_radpm": 0.0007064031979667558, "vx_mps": 9.716409261180363, "ax_mps2": 3.7152324169527486}, {"id": 94, "s_m": 9.391728584904701, "d_m": 0.0, "x_m": -5.9729837144151805, "y_m": -12.844172364459135, "d_right": 0.5666029920426179, "d_left": 2.0340295019795143, "psi_rad": 1.5907584913998365, "kappa_radpm": 2.9019204311561014e-05, "vx_mps": 9.754537486701865, "ax_mps2": 3.6926275090919227}, {"id": 95, "s_m": 9.49164059112709, "d_m": 0.0, "x_m": -5.974978947038129, "y_m": -12.74421087903832, "d_right": 0.5685968695959119, "d_left": 2.0320346351612137, "psi_rad": 1.5907450517487278, "kappa_radpm": -0.00024213834622566498, "vx_mps": 9.792286618803734, "ax_mps2": 3.6702362797028716}, {"id": 96, "s_m": 9.591552597349482, "d_m": 0.0, "x_m": -5.976968968588395, "y_m": -12.644389488316703, "d_right": 0.570582285311245, "d_left": 2.0300419565104093, "psi_rad": 1.5907105025492374, "kappa_radpm": -0.00045029559626792097, "vx_mps": 9.829663196917446, "ax_mps2": 3.6480551789509312}, {"id": 97, "s_m": 9.691464603571873, "d_m": 0.0, "x_m": -5.97895730957837, "y_m": -12.544431856495304, "d_right": 0.5725692267412986, "d_left": 2.028053895451451, "psi_rad": 1.5906585973496274, "kappa_radpm": -0.0005773535647819761, "vx_mps": 9.866673582738574, "ax_mps2": 3.6260807517390563}, {"id": 98, "s_m": 9.791376609794263, "d_m": 0.0, "x_m": -5.980937242423829, "y_m": -12.444607312115084, "d_right": 0.5745447444000001, "d_left": 2.0260713743755123, "psi_rad": 1.5905951875228739, "kappa_radpm": -0.000693053457415302, "vx_mps": 9.903323966909925, "ax_mps2": 3.6043096341749536}, {"id": 99, "s_m": 9.891288616016654, "d_m": 0.0, "x_m": -5.982913130474411, "y_m": -12.344646000715997, "d_right": 0.5765193621434146, "d_left": 2.0287110576646374, "psi_rad": 1.5905257987540675, "kappa_radpm": -0.0006793971904907872, "vx_mps": 9.939620375384905, "ax_mps2": 3.5827385502071882}, {"id": 100, "s_m": 9.991200622239043, "d_m": 0.0, "x_m": -5.984879459758955, "y_m": -12.244825385032982, "d_right": 0.5784813025902792, "d_left": 2.0362549896983264, "psi_rad": 1.5904595455468438, "kappa_radpm": -0.0006477156037176249, "vx_mps": 9.97556867548962, "ax_mps2": 3.561364308419549}, {"id": 101, "s_m": 10.091112628461435, "d_m": 0.0, "x_m": -5.986842087041505, "y_m": -12.144862365533776, "d_right": 0.5804427404355235, "d_left": 2.0486700486592775, "psi_rad": 1.590395183122202, "kappa_radpm": -0.0006424227244316089, "vx_mps": 10.01117458170098, "ax_mps2": 3.5401837989752605}, {"id": 102, "s_m": 10.191024634683824, "d_m": 0.0, "x_m": -5.988795458692, "y_m": -12.045044322690574, "d_right": 0.5823917810559641, "d_left": 2.0658328364112872, "psi_rad": 1.5903311635401978, "kappa_radpm": -0.0006400487503576806, "vx_mps": 10.046443661156868, "ax_mps2": 3.5191939907010235}, {"id": 103, "s_m": 10.290936640906216, "d_m": 0.0, "x_m": -5.990745367253725, "y_m": -11.945077382162067, "d_right": 0.584340625491233, "d_left": 2.0661078782682387, "psi_rad": 1.5902678780427904, "kappa_radpm": -0.0006248676657260124, "vx_mps": 10.081381338913456, "ax_mps2": 3.4983919283065075}, {"id": 104, "s_m": 10.390848647128605, "d_m": 0.0, "x_m": -5.9926860486822875, "y_m": -11.845263912623569, "d_right": 0.5862769909754542, "d_left": 2.0641701568593063, "psi_rad": 1.5902063124563912, "kappa_radpm": -0.000608473545831141, "vx_mps": 10.115992902963658, "ax_mps2": 3.4777747297267743}, {"id": 105, "s_m": 10.490760653350996, "d_m": 0.0, "x_m": -5.994623721268096, "y_m": -11.74529257925086, "d_right": 0.5633788610257175, "d_left": 2.062232689144215, "psi_rad": 1.590146345449743, "kappa_radpm": -0.0005909088027483007, "vx_mps": 10.150283509029892, "ax_mps2": 3.457339583586112}, {"id": 106, "s_m": 10.590672659573386, "d_m": 0.0, "x_m": -5.996552339626999, "y_m": -11.64548426878837, "d_right": 0.5441664352576578, "d_left": 2.0603071392462793, "psi_rad": 1.5900882439236086, "kappa_radpm": -0.0005730965547794193, "vx_mps": 10.184258185143408, "ax_mps2": 3.4370837467724553}, {"id": 107, "s_m": 10.690584665795777, "d_m": 0.0, "x_m": -5.998478490246538, "y_m": -11.545507704535893, "d_right": 0.5429343157899955, "d_left": 2.0583811025950487, "psi_rad": 1.590032061625823, "kappa_radpm": -0.0005505553091544194, "vx_mps": 10.217921836021713, "ax_mps2": 3.417004542119252}, {"id": 108, "s_m": 10.790496672018167, "d_m": 0.0, "x_m": -6.000396095988056, "y_m": -11.445689556663709, "d_right": 0.5448377623672648, "d_left": 2.0564664093610765, "psi_rad": 1.5899782320078686, "kappa_radpm": -0.0005276122631007842, "vx_mps": 10.251279247254834, "ax_mps2": 3.397099356187699}, {"id": 109, "s_m": 10.890408678240558, "d_m": 0.0, "x_m": -6.0023112838197035, "y_m": -11.345723116586734, "d_right": 0.5467477901537142, "d_left": 2.0552112560257134, "psi_rad": 1.5899267874927705, "kappa_radpm": -0.0005013799760857573, "vx_mps": 10.28433508931057, "ax_mps2": 3.3773656371447367}, {"id": 110, "s_m": 10.990320684462947, "d_m": 0.0, "x_m": -6.004218832973505, "y_m": -11.245894266518178, "d_right": 0.548642063952263, "d_left": 2.0588134478614797, "psi_rad": 1.5898780490615003, "kappa_radpm": -0.00047455698459081486, "vx_mps": 10.31709392136817, "ax_mps2": 3.357800892730271}, {"id": 111, "s_m": 11.090232690685339, "d_m": 0.0, "x_m": -6.00612406108278, "y_m": -11.145938986212519, "d_right": 0.5505416013613899, "d_left": 2.0672559790760148, "psi_rad": 1.5898320968305732, "kappa_radpm": -0.00044467201507915094, "vx_mps": 10.349560194989353, "ax_mps2": 3.3384026883120366}, {"id": 112, "s_m": 11.19014469690773, "d_m": 0.0, "x_m": -6.00802265785287, "y_m": -11.04609881397484, "d_right": 0.5524278187741499, "d_left": 2.0804602080009666, "psi_rad": 1.5897892009537595, "kappa_radpm": -0.0004140880595362777, "vx_mps": 10.381738257635039, "ax_mps2": 3.319168645020666}, {"id": 113, "s_m": 11.29005670313012, "d_m": 0.0, "x_m": -6.009919081906993, "y_m": -10.946155527903072, "d_right": 0.5543179841840502, "d_left": 2.096681973245124, "psi_rad": 1.589749451985419, "kappa_radpm": -0.0003811361843990397, "vx_mps": 10.413632356035619, "ax_mps2": 3.300096437961178}, {"id": 114, "s_m": 11.38996870935251, "d_m": 0.0, "x_m": -6.011809968214277, "y_m": -10.846303631585377, "d_right": 0.5561973859816475, "d_left": 2.09479201764485, "psi_rad": 1.589713051791702, "kappa_radpm": -0.0003474663971247039, "vx_mps": 10.445246639422168, "ax_mps2": 3.2811837945004303}, {"id": 115, "s_m": 11.4898807155749, "d_m": 0.0, "x_m": -6.013698878621471, "y_m": -10.746372906494832, "d_right": 0.5580794496199283, "d_left": 2.0929034357580703, "psi_rad": 1.5896800862769573, "kappa_radpm": -0.00031211886993411515, "vx_mps": 10.476585162625556, "ax_mps2": 3.2624284926213067}, {"id": 116, "s_m": 11.589792721797291, "d_m": 0.0, "x_m": -6.015583407800159, "y_m": -10.646509163052748, "d_right": 0.5599533718477786, "d_left": 2.091019755923152, "psi_rad": 1.58965069470497, "kappa_radpm": -0.00027618954063235364, "vx_mps": 10.507651889049985, "ax_mps2": 3.2438283593452852}, {"id": 117, "s_m": 11.68970472801968, "d_m": 0.0, "x_m": -6.0174662021849175, "y_m": -10.54659123699717, "d_right": 0.5618287309711194, "d_left": 2.089137393727995, "psi_rad": 1.5896249318933184, "kappa_radpm": -0.0002393355036158138, "vx_mps": 10.538450693527121, "ax_mps2": 3.225381269217003}, {"id": 118, "s_m": 11.789616734242072, "d_m": 0.0, "x_m": -6.01934580622359, "y_m": -10.446715839882602, "d_right": 0.563698570900407, "d_left": 2.0872585573588607, "psi_rad": 1.5896028762633176, "kappa_radpm": -0.00020229130155813985, "vx_mps": 10.56898536505664, "ax_mps2": 3.2070851428492055}, {"id": 119, "s_m": 11.889528740464462, "d_m": 0.0, "x_m": -6.021223953060188, "y_m": -10.346810554030228, "d_right": 0.5655687163397038, "d_left": 2.0853809473595186, "psi_rad": 1.58958451542006, "kappa_radpm": -0.0001651501286163187, "vx_mps": 10.599259609438652, "ax_mps2": 3.188937945524168}, {"id": 120, "s_m": 11.989440746686853, "d_m": 0.0, "x_m": -6.023100097932146, "y_m": -10.246924056534406, "d_right": 0.5588530237688699, "d_left": 2.0851095322618876, "psi_rad": 1.5895698700433019, "kappa_radpm": -0.00012834689478262372, "vx_mps": 10.629277051803179, "ax_mps2": 3.1709376858508582}, {"id": 121, "s_m": 12.089352752909242, "d_m": 0.0, "x_m": -6.024975088568134, "y_m": -10.147030784902825, "d_right": 0.5391107207318203, "d_left": 2.0896216836831276, "psi_rad": 1.5895588594037342, "kappa_radpm": -9.2010473932159e-05, "vx_mps": 10.659041239041565, "ax_mps2": 3.153082414472186}, {"id": 122, "s_m": 12.189264759131634, "d_m": 0.0, "x_m": -6.026849222877986, "y_m": -10.047134144246249, "d_right": 0.5225161809448815, "d_left": 2.0988867604114776, "psi_rad": 1.5895514315424686, "kappa_radpm": -5.766008765976785e-05, "vx_mps": 10.688555642144436, "ax_mps2": 3.1353702228225755}, {"id": 123, "s_m": 12.289176765354023, "d_m": 0.0, "x_m": -6.028722514318753, "y_m": -9.947251726796368, "d_right": 0.5243919230466878, "d_left": 2.1128395093253767, "psi_rad": 1.5895473037357628, "kappa_radpm": -2.4937695204275578e-05, "vx_mps": 10.717823658450532, "ax_mps2": 3.1177992419325133}, {"id": 124, "s_m": 12.389088771576414, "d_m": 0.0, "x_m": -6.030595987190701, "y_m": -9.847346330385903, "d_right": 0.5262657485154592, "d_left": 2.125947512280394, "psi_rad": 1.5895464218052409, "kappa_radpm": 6.9275233769614004e-06, "vx_mps": 10.746848613810572, "ax_mps2": 3.1003676412785612}, {"id": 125, "s_m": 12.489000777798804, "d_m": 0.0, "x_m": -6.032468927809552, "y_m": -9.747473004761035, "d_right": 0.5281419885719472, "d_left": 2.12407440716586, "psi_rad": 1.5895486827748115, "kappa_radpm": 3.8373879484598965e-05, "vx_mps": 10.775633764670014, "ax_mps2": 3.0830736276741786}, {"id": 126, "s_m": 12.588912784021195, "d_m": 0.0, "x_m": -6.034342968766549, "y_m": -9.647560744434001, "d_right": 0.5300157736638934, "d_left": 2.1222002737183714, "psi_rad": 1.589553559955441, "kappa_radpm": 5.543678628199897e-05, "vx_mps": 10.804182300074402, "ax_mps2": 3.065915444204427}, {"id": 127, "s_m": 12.688824790243585, "d_m": 0.0, "x_m": -6.036216707099848, "y_m": -9.547694086930099, "d_right": 0.5318934291966518, "d_left": 2.120326365325882, "psi_rad": 1.5895596933147376, "kappa_radpm": 6.73804012500591e-05, "vx_mps": 10.832497343600798, "ax_mps2": 3.0488913691979462}, {"id": 128, "s_m": 12.788736796465976, "d_m": 0.0, "x_m": -6.038092096326258, "y_m": -9.447777264683145, "d_right": 0.533768163522055, "d_left": 2.118450894833174, "psi_rad": 1.5895683424092315, "kappa_radpm": 0.00011082727109943514, "vx_mps": 10.860581955218594, "ax_mps2": 3.0319997152354836}, {"id": 129, "s_m": 12.888648802688367, "d_m": 0.0, "x_m": -6.039967583339025, "y_m": -9.347914182742906, "d_right": 0.5356478965335815, "d_left": 2.1165752383271315, "psi_rad": 1.589581891301517, "kappa_radpm": 0.00016050462223653496, "vx_mps": 10.888439133082828, "ax_mps2": 3.0152388281965954}, {"id": 130, "s_m": 12.988560808910757, "d_m": 0.0, "x_m": -6.041845450796834, "y_m": -9.247995868943304, "d_right": 0.5375249862240776, "d_left": 2.1172211897566204, "psi_rad": 1.5895921368038053, "kappa_radpm": 3.420502707288221e-05, "vx_mps": 10.916071815262992, "ax_mps2": 2.998607086338401}, {"id": 131, "s_m": 13.088472815133148, "d_m": 0.0, "x_m": -6.043722721017022, "y_m": -9.148127491056929, "d_right": 0.5394060243361869, "d_left": 2.1225732036146994, "psi_rad": 1.5895887568656406, "kappa_radpm": -7.295115533513627e-05, "vx_mps": 10.94348288141013, "ax_mps2": 2.98210289940773}, {"id": 132, "s_m": 13.188384821355537, "d_m": 0.0, "x_m": -6.045600991946974, "y_m": -9.048215661415766, "d_right": 0.5412841268598217, "d_left": 2.1326005247822852, "psi_rad": 1.58960632915441, "kappa_radpm": 0.00042487464031006246, "vx_mps": 10.970675154364905, "ax_mps2": 2.9657247077849225}, {"id": 133, "s_m": 13.288296827577929, "d_m": 0.0, "x_m": -6.047482864007713, "y_m": -8.948337164348727, "d_right": 0.5431688432903424, "d_left": 2.14508337443105, "psi_rad": 1.5896709822494193, "kappa_radpm": 0.0005779446547289199, "vx_mps": 10.997651401709168, "ax_mps2": 2.949470981656172}, {"id": 134, "s_m": 13.388208833800318, "d_m": 0.0, "x_m": -6.049368709084152, "y_m": -8.848436463235982, "d_right": 0.5450555163913001, "d_left": 2.157303030979972, "psi_rad": 1.5896429911872716, "kappa_radpm": -0.0011386875055110401, "vx_mps": 11.024414337263437, "ax_mps2": 2.9333402202165977}, {"id": 135, "s_m": 13.48812084002271, "d_m": 0.0, "x_m": -6.051242953165544, "y_m": -8.748552149380467, "d_right": 0.5469321241355377, "d_left": 2.155427998625601, "psi_rad": 1.5894520579646567, "kappa_radpm": -0.002205442839994392, "vx_mps": 11.050966622532572, "ax_mps2": 2.9173309508983976}, {"id": 136, "s_m": 13.588032846245099, "d_m": 0.0, "x_m": -6.053096950805393, "y_m": -8.648659675328188, "d_right": 0.5487878389484655, "d_left": 2.1535733029695443, "psi_rad": 1.5892684506992805, "kappa_radpm": -0.0014697924710872967, "vx_mps": 11.077310868101826, "ax_mps2": 2.9014417286274847}, {"id": 137, "s_m": 13.68794485246749, "d_m": 0.0, "x_m": -6.054936437660556, "y_m": -8.548757015987928, "d_right": 0.5506281932517146, "d_left": 2.1517332303517156, "psi_rad": 1.5891564177322843, "kappa_radpm": -0.0008380834952139002, "vx_mps": 11.103449634985331, "ax_mps2": 2.8856711351032636}, {"id": 138, "s_m": 13.78785685868988, "d_m": 0.0, "x_m": -6.056767445102207, "y_m": -8.448854158715811, "d_right": 0.5524600943707594, "d_left": 2.149901639674963, "psi_rad": 1.589095492449593, "kappa_radpm": -0.0003815026610193279, "vx_mps": 11.12938543592899, "ax_mps2": 2.870017778104626}, {"id": 139, "s_m": 13.887768864912271, "d_m": 0.0, "x_m": -6.058594913332234, "y_m": -8.348931297290529, "d_right": 0.5518024793035885, "d_left": 2.1480738078058663, "psi_rad": 1.5890742659528991, "kappa_radpm": -0.00016893590715342223, "vx_mps": 11.155120736669641, "ax_mps2": 2.8544802908171567}, {"id": 140, "s_m": 13.98768087113466, "d_m": 0.0, "x_m": -6.060420076751885, "y_m": -8.249035961703008, "d_right": 0.5201492126180466, "d_left": 2.1462479799397265, "psi_rad": 1.5890550584345131, "kappa_radpm": -0.00021567712344216364, "vx_mps": 11.180657957152283, "ax_mps2": 2.8390573311840135}, {"id": 141, "s_m": 14.087592877357052, "d_m": 0.0, "x_m": -6.0622434554580025, "y_m": -8.149116805000057, "d_right": 0.5065432405760332, "d_left": 2.144424197716846, "psi_rad": 1.5890278684215127, "kappa_radpm": -0.00037254983969576687, "vx_mps": 11.205999472707047, "ax_mps2": -9.403333924656991}, {"id": 142, "s_m": 14.187504883579441, "d_m": 0.0, "x_m": -6.06406216848548, "y_m": -8.049248398671047, "d_right": 0.5083662397223923, "d_left": 2.1426045286245126, "psi_rad": 1.588979087054479, "kappa_radpm": -0.0006045553615297604, "vx_mps": 11.12184392387915, "ax_mps2": -12.403406322777478}, {"id": 143, "s_m": 14.287416889801833, "d_m": 0.0, "x_m": -6.065876207706251, "y_m": -7.949319814372342, "d_right": 0.5101811085311737, "d_left": 2.1442079609002453, "psi_rad": 1.588918313125773, "kappa_radpm": -0.0005219354294923879, "vx_mps": 11.009855305485498, "ax_mps2": -12.405347964598779}, {"id": 144, "s_m": 14.387328896024222, "d_m": 0.0, "x_m": -6.06768361175003, "y_m": -7.849470806961824, "d_right": 0.5119939338989209, "d_left": 2.150458623422444, "psi_rad": 1.5888766105079413, "kappa_radpm": -0.0003129100679708296, "vx_mps": 10.896698006353455, "ax_mps2": -12.381734511878166}, {"id": 145, "s_m": 14.487240902246613, "d_m": 0.0, "x_m": -6.0694891892770615, "y_m": -7.74951894099945, "d_right": 0.5137990157741931, "d_left": 2.1613276554820113, "psi_rad": 1.5888356982187977, "kappa_radpm": -0.0005824865704710097, "vx_mps": 10.78257202945929, "ax_mps2": -12.332238253802483}, {"id": 146, "s_m": 14.587152908469005, "d_m": 0.0, "x_m": -6.071286584509452, "y_m": -7.649698050594017, "d_right": 0.5156034668985807, "d_left": 2.176720838043814, "psi_rad": 1.588759416299254, "kappa_radpm": -0.0009463295779106633, "vx_mps": 10.667688701878115, "ax_mps2": -12.31542286453142}, {"id": 147, "s_m": 14.687064914691394, "d_m": 0.0, "x_m": -6.073080925970855, "y_m": -7.549725546104065, "d_right": 0.5173961436245138, "d_left": 2.1838964535727223, "psi_rad": 1.5887601356136762, "kappa_radpm": 0.0010328290288746085, "vx_mps": 10.551713843183634, "ax_mps2": -12.112059115177836}, {"id": 148, "s_m": 14.786976920913785, "d_m": 0.0, "x_m": -6.0748830544712735, "y_m": -7.449893640799765, "d_right": 0.5192046844003188, "d_left": 2.1820920031664173, "psi_rad": 1.588964972803205, "kappa_radpm": 0.00283699722813538, "vx_mps": 10.436397116681116, "ax_mps2": -12.11206706331534}, {"id": 149, "s_m": 14.886888927136175, "d_m": 0.0, "x_m": -6.076712850482067, "y_m": -7.34993800050498, "d_right": 0.5210337291555729, "d_left": 2.1802623639857384, "psi_rad": 1.589229313665209, "kappa_radpm": 0.0024505218441814892, "vx_mps": 10.319791806886318, "ax_mps2": -12.150733827949674}, {"id": 150, "s_m": 14.986800933358566, "d_m": 0.0, "x_m": -6.078565255914284, "y_m": -7.250084140849606, "d_right": 0.5228911993925863, "d_left": 2.1784080876799137, "psi_rad": 1.589456557700051, "kappa_radpm": 0.0022173343653213466, "vx_mps": 10.201475116365698, "ax_mps2": -12.143651538286584}, {"id": 151, "s_m": 15.086712939580956, "d_m": 0.0, "x_m": -6.080441582340061, "y_m": -7.150158093883539, "d_right": 0.5247684010716518, "d_left": 2.1765313363176975, "psi_rad": 1.5896899022239743, "kappa_radpm": 0.002452544884008139, "vx_mps": 10.081840177949504, "ax_mps2": -12.126018915147364}, {"id": 152, "s_m": 15.186624945803347, "d_m": 0.0, "x_m": -6.082341423861117, "y_m": -7.050282368629195, "d_right": 0.526671971542818, "d_left": 2.174630071493244, "psi_rad": 1.5899448430293746, "kappa_radpm": 0.002595742485136484, "vx_mps": 9.960945317544455, "ax_mps2": -12.122642753459665}, {"id": 153, "s_m": 15.286536952025736, "d_m": 0.0, "x_m": -6.084267488185921, "y_m": -6.950386064406781, "d_right": 0.5286005390423753, "d_left": 2.1727029998842773, "psi_rad": 1.5902043577679152, "kappa_radpm": 0.002598836566156903, "vx_mps": 9.838599316095756, "ax_mps2": -12.12085527363224}, {"id": 154, "s_m": 15.386448958248128, "d_m": 0.0, "x_m": -6.086219481638653, "y_m": -6.85049032809477, "d_right": 0.5305550257616988, "d_left": 2.1707499934349483, "psi_rad": 1.5904636998918815, "kappa_radpm": 0.0025852607282460353, "vx_mps": 9.714731008506627, "ax_mps2": -12.120282220180279}, {"id": 155, "s_m": 15.486360964470517, "d_m": 0.0, "x_m": -6.088196767629455, "y_m": -6.7506204788505055, "d_right": 0.5325362500832413, "d_left": 2.1730567642577134, "psi_rad": 1.5907205792373589, "kappa_radpm": 0.002557764457023676, "vx_mps": 9.589268749098684, "ax_mps2": -12.120284042598891}, {"id": 156, "s_m": 15.586272970692908, "d_m": 0.0, "x_m": -6.090200343268654, "y_m": -6.6507091584286835, "d_right": 0.5345413393714327, "d_left": 2.1799215364550233, "psi_rad": 1.5909717206899463, "kappa_radpm": 0.002444485946954636, "vx_mps": 9.462143063443824, "ax_mps2": -12.127258947371818}, {"id": 157, "s_m": 15.686184976915298, "d_m": 0.0, "x_m": -6.092227095401488, "y_m": -6.5508582497172165, "d_right": 0.536573035411985, "d_left": 2.191294351665514, "psi_rad": 1.5912084506688184, "kappa_radpm": 0.0022957626631981954, "vx_mps": 9.333211334275967, "ax_mps2": -12.13677291695293}, {"id": 158, "s_m": 15.78609698313769, "d_m": 0.0, "x_m": -6.094278015540512, "y_m": -6.4509385867040585, "d_right": 0.538624912812253, "d_left": 2.2071223230035586, "psi_rad": 1.5914251799865298, "kappa_radpm": 0.0020274124965902265, "vx_mps": 9.202370083182956, "ax_mps2": -12.155691391688448}, {"id": 159, "s_m": 15.886008989360079, "d_m": 0.0, "x_m": -6.096347786861558, "y_m": -6.351086171531673, "d_right": 0.5406994698642567, "d_left": 2.2104935405789585, "psi_rad": 1.5916133506751329, "kappa_radpm": 0.0017311454695178572, "vx_mps": 9.0694330649679, "ax_mps2": -12.175601471806164}, {"id": 160, "s_m": 15.98592099558247, "d_m": 0.0, "x_m": -6.09843578439634, "y_m": -6.251176478968838, "d_right": 0.5427889367495468, "d_left": 2.2084067604459365, "psi_rad": 1.5917631868218822, "kappa_radpm": 0.001267071088926201, "vx_mps": 8.934295639831275, "ax_mps2": -12.207454816672575}, {"id": 161, "s_m": 16.08583300180486, "d_m": 0.0, "x_m": -6.100535587082357, "y_m": -6.151306861478348, "d_right": 0.5448924884001569, "d_left": 2.2063088459341453, "psi_rad": 1.5918659156551946, "kappa_radpm": 0.0007520720619511058, "vx_mps": 8.796720751319905, "ax_mps2": -12.240976915833985}, {"id": 162, "s_m": 16.18574500802725, "d_m": 0.0, "x_m": -6.102643129103258, "y_m": -6.051418466340241, "d_right": 0.5470026899620551, "d_left": 2.2042028879867366, "psi_rad": 1.5919070871794745, "kappa_radpm": 7.193332160385114e-05, "vx_mps": 8.656572927731641, "ax_mps2": -12.228242262092792}, {"id": 163, "s_m": 16.28565701424964, "d_m": 0.0, "x_m": -6.1047510747219444, "y_m": -5.9515435975014235, "d_right": 0.5491140700210058, "d_left": 2.2020967584062716, "psi_rad": 1.5918781032149418, "kappa_radpm": -0.0007173492445328648, "vx_mps": 8.514267932076026, "ax_mps2": -12.154120575556803}, {"id": 164, "s_m": 16.385569020472033, "d_m": 0.0, "x_m": -6.106851995783834, "y_m": -5.851657770764217, "d_right": 0.5512178090518676, "d_left": 2.199997475818997, "psi_rad": 1.5917589992589187, "kappa_radpm": -0.001666123816892776, "vx_mps": 8.37042850026405, "ax_mps2": -12.074303835825344}, {"id": 165, "s_m": 16.485481026694423, "d_m": 0.0, "x_m": -6.108935764933792, "y_m": -5.751792922740136, "d_right": 0.5533056267018983, "d_left": 2.197915701869582, "psi_rad": 1.591540876064235, "kappa_radpm": -0.0027674977986741167, "vx_mps": 8.225043309191792, "ax_mps2": -11.992897246622265}, {"id": 166, "s_m": 16.585393032916812, "d_m": 0.0, "x_m": -6.110992760389074, "y_m": -5.651885493543389, "d_right": 0.5553642747767656, "d_left": 2.1958599871329074, "psi_rad": 1.5912038817114758, "kappa_radpm": -0.003974679195973283, "vx_mps": 8.078048563200314, "ax_mps2": -11.89482572340575}, {"id": 167, "s_m": 16.6853050391392, "d_m": 0.0, "x_m": -6.113008310907776, "y_m": -5.552048940124011, "d_right": 0.5573856072879295, "d_left": 2.1938469157663043, "psi_rad": 1.590733478923169, "kappa_radpm": -0.005538505049703649, "vx_mps": 7.929564728661993, "ax_mps2": -11.798031645464455}, {"id": 168, "s_m": 16.785217045361595, "d_m": 0.0, "x_m": -6.114970975669949, "y_m": -5.452091160880431, "d_right": 0.5593471961329849, "d_left": 2.1924675900481483, "psi_rad": 1.5900962669357301, "kappa_radpm": -0.0072030238188580216, "vx_mps": 7.779490135201219, "ax_mps2": -11.715155682279622}, {"id": 169, "s_m": 16.885129051583984, "d_m": 0.0, "x_m": -6.116858579419947, "y_m": -5.352304861783063, "d_right": 0.5612436714012712, "d_left": 2.1957066588637755, "psi_rad": 1.5892989481245814, "kappa_radpm": -0.008761789866777184, "vx_mps": 7.627548580562743, "ax_mps2": -11.633534382823605}, {"id": 170, "s_m": 16.985041057806374, "d_m": 0.0, "x_m": -6.11866265164299, "y_m": -5.252306642196567, "d_right": 0.5630446098883086, "d_left": 2.203574325596126, "psi_rad": 1.5883462158444905, "kappa_radpm": -0.01042686913533995, "vx_mps": 7.47360942447186, "ax_mps2": -11.447806329256139}, {"id": 171, "s_m": 17.084953064028763, "d_m": 0.0, "x_m": -6.120355380588857, "y_m": -5.152550132881306, "d_right": 0.5647482411309671, "d_left": 2.21600300061518, "psi_rad": 1.58711807632202, "kappa_radpm": -0.014174244168267432, "vx_mps": 7.31896790778262, "ax_mps2": -11.351155988598011}, {"id": 172, "s_m": 17.184865070251156, "d_m": 0.0, "x_m": -6.121910460212185, "y_m": -5.052571777456332, "d_right": 0.5663017274970777, "d_left": 2.2330055333061893, "psi_rad": 1.5855315225891191, "kappa_radpm": -0.016514096599643324, "vx_mps": 7.162336050453343, "ax_mps2": -11.350765565689487}, {"id": 173, "s_m": 17.284777076473546, "d_m": 0.0, "x_m": -6.12330290891494, "y_m": -4.952788548024886, "d_right": 0.5677040554945932, "d_left": 2.2333018768792416, "psi_rad": 1.5840113352800713, "kappa_radpm": -0.01395661123689453, "vx_mps": 7.002206950666874, "ax_mps2": -11.251112003119896}, {"id": 174, "s_m": 17.384689082695935, "d_m": 0.0, "x_m": -6.1245568185342645, "y_m": -4.852828427152674, "d_right": 0.5689579095847946, "d_left": 2.232048049014347, "psi_rad": 1.5825992686772743, "kappa_radpm": -0.019873644290583102, "vx_mps": 6.839785072283957, "ax_mps2": -10.307355226152968}, {"id": 175, "s_m": 17.484601088918325, "d_m": 0.0, "x_m": -6.125599708611515, "y_m": -4.7529787208306065, "d_right": 0.5700074484381039, "d_left": 2.2310060801684997, "psi_rad": 1.5795183720700698, "kappa_radpm": -0.04171312998942803, "vx_mps": 6.687525906944578, "ax_mps2": -9.622169001382698}, {"id": 176, "s_m": 17.584513095140718, "d_m": 0.0, "x_m": -6.126228720364063, "y_m": -4.653043242908958, "d_right": 0.5706388600987785, "d_left": 2.2303773222477927, "psi_rad": 1.5743644043967244, "kappa_radpm": -0.05942229136563401, "vx_mps": 6.5421909432373475, "ax_mps2": -9.193150854837855}, {"id": 177, "s_m": 17.684425101363107, "d_m": 0.0, "x_m": -6.126266874804788, "y_m": -4.553134452944792, "d_right": 0.5706819442037828, "d_left": 2.2303396106062223, "psi_rad": 1.5677761529853282, "kappa_radpm": -0.07238698637998832, "vx_mps": 6.400253904881659, "ax_mps2": -8.991965125850633}, {"id": 178, "s_m": 17.784337107585497, "d_m": 0.0, "x_m": -6.125585283820748, "y_m": -4.453262145720753, "d_right": 0.5700086262676467, "d_left": 2.231021907212535, "psi_rad": 1.5600322888884035, "kappa_radpm": -0.08066716871949925, "vx_mps": 6.258309635655776, "ax_mps2": -8.967562771055011}, {"id": 179, "s_m": 17.88424911380789, "d_m": 0.0, "x_m": -6.124099160659964, "y_m": -4.353321620540887, "d_right": 0.568528212064181, "d_left": 2.232508183918975, "psi_rad": 1.5517501842692356, "kappa_radpm": -0.08500235143364017, "vx_mps": 6.113469155968584, "ax_mps2": -8.960665083868607}, {"id": 180, "s_m": 17.98416112003028, "d_m": 0.0, "x_m": -6.121775904016995, "y_m": -4.253556721469723, "d_right": 0.5662224759988219, "d_left": 2.2348329410021135, "psi_rad": 1.543420908966722, "kappa_radpm": -0.07732293575979543, "vx_mps": 5.965228333412458, "ax_mps2": -9.376486542367841}, {"id": 181, "s_m": 18.08407312625267, "d_m": 0.0, "x_m": -6.1186775843393955, "y_m": -4.153607202604039, "d_right": 0.563132298853751, "d_left": 2.2379312951068338, "psi_rad": 1.536445155679136, "kappa_radpm": -0.062250261808012484, "vx_mps": 5.806057346101256, "ax_mps2": -8.809857140615302}, {"id": 182, "s_m": 18.18398513247506, "d_m": 0.0, "x_m": -6.114923022301422, "y_m": -4.053836785889145, "d_right": 0.559397904170427, "d_left": 2.2416872832127472, "psi_rad": 1.5291272510833698, "kappa_radpm": -0.10371418187343055, "vx_mps": 5.652422569422187, "ax_mps2": -6.809726651088793}, {"id": 183, "s_m": 18.28389713869745, "d_m": 0.0, "x_m": -6.110120429518528, "y_m": -3.953915699582811, "d_right": 0.5546086076975842, "d_left": 2.246490081634958, "psi_rad": 1.5152477292506228, "kappa_radpm": -0.17354286094642016, "vx_mps": 5.530744434544102, "ax_mps2": -6.794413350017351}, {"id": 184, "s_m": 18.38380914491984, "d_m": 0.0, "x_m": -6.10366132692049, "y_m": -3.85435618744977, "d_right": 0.5486189921431484, "d_left": 2.252952231604179, "psi_rad": 1.4970315181520584, "kappa_radpm": -0.16649687585653186, "vx_mps": 5.40661142143873, "ax_mps2": -7.196581923091084}, {"id": 185, "s_m": 18.48372115114223, "d_m": 0.0, "x_m": -6.09553584101279, "y_m": -3.754686976485131, "d_right": 0.5434202732947465, "d_left": 2.261079863458847, "psi_rad": 1.4826152642980654, "kappa_radpm": -0.12191275438532527, "vx_mps": 5.271944345938422, "ax_mps2": -7.478384813898841}, {"id": 186, "s_m": 18.58363315736462, "d_m": 0.0, "x_m": -6.086132128632959, "y_m": -3.6552139127551633, "d_right": 0.555163827283908, "d_left": 2.2704873344392404, "psi_rad": 1.469389718846297, "kappa_radpm": -0.17579666446713063, "vx_mps": 5.128258605662621, "ax_mps2": -5.007922695879436}, {"id": 187, "s_m": 18.683545163587013, "d_m": 0.0, "x_m": -6.074959398648407, "y_m": -3.5558125952074215, "d_right": 0.5686152929857585, "d_left": 2.282996707273757, "psi_rad": 1.4466019099337324, "kappa_radpm": -0.2802507342325892, "vx_mps": 5.02974483641554, "ax_mps2": -4.976701442670354}, {"id": 188, "s_m": 18.783457169809402, "d_m": 0.0, "x_m": -6.061099335474988, "y_m": -3.4568872159687274, "d_right": 0.5547899280966899, "d_left": 2.302434620639604, "psi_rad": 1.41695047907213, "kappa_radpm": -0.2695842856079896, "vx_mps": 4.92989540136854, "ax_mps2": -5.418845384731602}, {"id": 189, "s_m": 18.883369176031792, "d_m": 0.0, "x_m": -6.04459715215647, "y_m": -3.358360230708739, "d_right": 0.5383404286214017, "d_left": 2.3285792654875577, "psi_rad": 1.3941143950804187, "kappa_radpm": -0.18738325820325533, "vx_mps": 4.818822806541006, "ax_mps2": -6.997634181393886}, {"id": 190, "s_m": 18.98328118225418, "d_m": 0.0, "x_m": -6.026161878497349, "y_m": -3.2600706221793865, "d_right": 0.5199752671896053, "d_left": 2.3605390658899563, "psi_rad": 1.3757531650233616, "kappa_radpm": -0.23309285546041503, "vx_mps": 4.671483479698165, "ax_mps2": -4.246015654592348}, {"id": 191, "s_m": 19.083193188476574, "d_m": 0.0, "x_m": -6.005417386073381, "y_m": -3.1622672301280597, "d_right": 0.5050373986151795, "d_left": 2.3984164451225745, "psi_rad": 1.3454876397422306, "kappa_radpm": -0.3735555769788174, "vx_mps": 4.579770956727952, "ax_mps2": -3.4472043803398362}, {"id": 192, "s_m": 19.183105194698964, "d_m": 0.0, "x_m": -5.9810624830904136, "y_m": -3.0652649787492154, "d_right": 0.5059855717170308, "d_left": 2.425491122188393, "psi_rad": 1.3032977997452988, "kappa_radpm": -0.42548764123183813, "vx_mps": 4.5039391431381635, "ax_mps2": -3.3592639847143166}, {"id": 193, "s_m": 19.283017200921353, "d_m": 0.0, "x_m": -5.95267447657629, "y_m": -2.9695023646119494, "d_right": 0.502639743468016, "d_left": 2.453896511485488, "psi_rad": 1.2624885169276194, "kappa_radpm": -0.39118383208371255, "vx_mps": 4.4287928600020665, "ax_mps2": -3.714003505046677}, {"id": 194, "s_m": 19.382929207143746, "d_m": 0.0, "x_m": -5.92050032439933, "y_m": -2.8748344109047976, "d_right": 0.47887296915768207, "d_left": 2.486102208757763, "psi_rad": 1.22303094986681, "kappa_radpm": -0.44292743418328734, "vx_mps": 4.344198328137524, "ax_mps2": -0.9546930971494079}, {"id": 195, "s_m": 19.482841213366136, "d_m": 0.0, "x_m": -5.884133065846089, "y_m": -2.78173033781782, "d_right": 0.47090869746588404, "d_left": 2.5225258841801943, "psi_rad": 1.1712579266838594, "kappa_radpm": -0.5951155690652971, "vx_mps": 4.322185617123255, "ax_mps2": -0.07216299405739522}, {"id": 196, "s_m": 19.582753219588525, "d_m": 0.0, "x_m": -5.842385393556556, "y_m": -2.691066129984873, "d_right": 0.47424686414534123, "d_left": 2.564377367841396, "psi_rad": 1.1064124224431084, "kappa_radpm": -0.6428501882566114, "vx_mps": 4.320517169257004, "ax_mps2": -0.07216299405739522}, {"id": 197, "s_m": 19.682665225810915, "d_m": 0.0, "x_m": -5.794940214113955, "y_m": -2.603178563902416, "d_right": 0.4571358578182344, "d_left": 2.612002748813643, "psi_rad": 1.046679888501503, "kappa_radpm": -0.5517932118445655, "vx_mps": 4.3188480768397, "ax_mps2": 1.6355981679516025}, {"id": 198, "s_m": 19.782577232033308, "d_m": 0.0, "x_m": -5.74273617774981, "y_m": -2.5181017403460495, "d_right": 0.44175289183911615, "d_left": 2.6640921109521027, "psi_rad": 0.994453388907968, "kappa_radpm": -0.5385563619576076, "vx_mps": 4.356521605534558, "ax_mps2": 1.6014005428661662}, {"id": 199, "s_m": 19.882489238255697, "d_m": 0.0, "x_m": -5.685949831629076, "y_m": -2.4359157460107776, "d_right": 0.43714568421084343, "d_left": 2.7206744002257905, "psi_rad": 0.9365010113206428, "kappa_radpm": -0.6217848934077993, "vx_mps": 4.393094442587841, "ax_mps2": -0.07460778607969774}, {"id": 200, "s_m": 19.982401244478087, "d_m": 0.0, "x_m": -5.624266501003136, "y_m": -2.357476361277539, "d_right": 0.4489923875825868, "d_left": 2.782273453568644, "psi_rad": 0.8723591284969947, "kappa_radpm": -0.6177158205229123, "vx_mps": 4.391397312282516, "ax_mps2": 0.013189190720183402}, {"id": 201, "s_m": 20.082313250700476, "d_m": 0.0, "x_m": -5.55783649963083, "y_m": -2.282887233513327, "d_right": 0.45469593678506154, "d_left": 2.848817482544947, "psi_rad": 0.8157144212983152, "kappa_radpm": -0.516314369169921, "vx_mps": 4.391697379297976, "ax_mps2": -0.5864858738738379}, {"id": 202, "s_m": 20.18222525692287, "d_m": 0.0, "x_m": -5.487645832209265, "y_m": -2.2118777287713476, "d_right": 0.45525500120987117, "d_left": 2.9192490478925124, "psi_rad": 0.7666456998500426, "kappa_radpm": -0.5191679482794653, "vx_mps": 4.378334376309449, "ax_mps2": -0.07405008612450556}, {"id": 203, "s_m": 20.28213726314526, "d_m": 0.0, "x_m": -5.413822612076451, "y_m": -2.144617930164542, "d_right": 0.47211587466569604, "d_left": 2.992744774294205, "psi_rad": 0.709386378890282, "kappa_radpm": -0.6264677969037523, "vx_mps": 4.376644253928091, "ax_mps2": -0.07405008612448778}, {"id": 204, "s_m": 20.38204926936765, "d_m": 0.0, "x_m": -5.336008763523747, "y_m": -2.0820733591944083, "d_right": 0.4766749844450129, "d_left": 3.070629788317813, "psi_rad": 0.6455172685782806, "kappa_radpm": -0.5769059854242521, "vx_mps": 4.374953478622429, "ax_mps2": 0.8839008245732174}, {"id": 205, "s_m": 20.481961275590038, "d_m": 0.0, "x_m": -5.254672840203364, "y_m": -2.0240118693459306, "d_right": 0.48383156386634346, "d_left": 3.152044650732015, "psi_rad": 0.5976231636419289, "kappa_radpm": -0.38350200064919393, "vx_mps": 4.39509300805796, "ax_mps2": 4.517276551377845}, {"id": 206, "s_m": 20.58187328181243, "d_m": 0.0, "x_m": -5.171102432175445, "y_m": -1.9691345089162524, "d_right": 0.49382407040680604, "d_left": 3.158003422137328, "psi_rad": 0.5654461512473463, "kappa_radpm": -0.32587949326115045, "vx_mps": 4.496610153804645, "ax_mps2": 5.332713430385484}, {"id": 207, "s_m": 20.68178528803482, "d_m": 0.0, "x_m": -5.085849871312182, "y_m": -1.9171102365812953, "d_right": 0.4920355915903242, "d_left": 3.114075593753957, "psi_rad": 0.5291350336391858, "kappa_radpm": -0.40059009684295904, "vx_mps": 4.613578553593384, "ax_mps2": 3.3911122311135475}, {"id": 208, "s_m": 20.78169729425721, "d_m": 0.0, "x_m": -4.998556837519696, "y_m": -1.8684814058335848, "d_right": 0.4921696344845201, "d_left": 3.076408511075174, "psi_rad": 0.4876766805345909, "kappa_radpm": -0.379810632754356, "vx_mps": 4.686441370896311, "ax_mps2": 3.5734163336739786}, {"id": 209, "s_m": 20.881609300479603, "d_m": 0.0, "x_m": -4.909488677271563, "y_m": -1.8231532631941545, "d_right": 0.49839038086978266, "d_left": 3.045109574648675, "psi_rad": 0.45586096335547577, "kappa_radpm": -0.2579513603194441, "vx_mps": 4.7620150265175525, "ax_mps2": 6.062827247813983}, {"id": 210, "s_m": 20.981521306701993, "d_m": 0.0, "x_m": -4.819199694717429, "y_m": -1.780122693344913, "d_right": 0.5036671901226796, "d_left": 3.009394290013521, "psi_rad": 0.43464603330147344, "kappa_radpm": -0.20171486444493994, "vx_mps": 4.8875643811817655, "ax_mps2": 6.487233489522566}, {"id": 211, "s_m": 21.081433312924382, "d_m": 0.0, "x_m": -4.72814565941854, "y_m": -1.7390087889134114, "d_right": 0.5124525759659372, "d_left": 2.9702800898104793, "psi_rad": 0.413170515512963, "kappa_radpm": -0.22810809013047204, "vx_mps": 5.01842511209834, "ax_mps2": 6.157831718288268}, {"id": 212, "s_m": 21.18134531914677, "d_m": 0.0, "x_m": -4.636181317244701, "y_m": -1.6999746539875926, "d_right": 0.5081539703558929, "d_left": 2.9361852622271427, "psi_rad": 0.38954917304944847, "kappa_radpm": -0.23013851700221877, "vx_mps": 5.139559635576508, "ax_mps2": 5.818757958132515}, {"id": 213, "s_m": 21.281257325369165, "d_m": 0.0, "x_m": -4.543322127663928, "y_m": -1.6630325086167246, "d_right": 0.5210502457935801, "d_left": 2.907299604559312, "psi_rad": 0.3682995853518747, "kappa_radpm": -0.1952731952353205, "vx_mps": 5.251457017846228, "ax_mps2": 6.2846217834382125}, {"id": 214, "s_m": 21.381169331591554, "d_m": 0.0, "x_m": -4.44977617742436, "y_m": -1.6279201701142323, "d_right": 0.5189297913901748, "d_left": 2.8834978342507527, "psi_rad": 0.3501775126669264, "kappa_radpm": -0.17921848127383444, "vx_mps": 5.369694511957909, "ax_mps2": 6.2185679783674175}, {"id": 215, "s_m": 21.481081337813944, "d_m": 0.0, "x_m": -4.355593670707256, "y_m": -1.5945052330084397, "d_right": 0.5306866490089738, "d_left": 2.864767683131179, "psi_rad": 0.33140556258189613, "kappa_radpm": -0.19644112914679285, "vx_mps": 5.48418073706993, "ax_mps2": 5.975520066160071}, {"id": 216, "s_m": 21.580993344036333, "d_m": 0.0, "x_m": -4.260811422712556, "y_m": -1.562954171662971, "d_right": 0.5302956042275111, "d_left": 2.842161777258906, "psi_rad": 0.31123511081426525, "kappa_radpm": -0.1944919775913029, "vx_mps": 5.591984509359202, "ax_mps2": 5.797293594089639}, {"id": 217, "s_m": 21.680905350258726, "d_m": 0.0, "x_m": -4.165361106461529, "y_m": -1.5331970755922524, "d_right": 0.5406339797316001, "d_left": 2.812409983125268, "psi_rad": 0.2938678267995314, "kappa_radpm": -0.1530008067680615, "vx_mps": 5.694622833885026, "ax_mps2": 6.036488923611517}, {"id": 218, "s_m": 21.780817356481116, "d_m": 0.0, "x_m": -4.069565603054876, "y_m": -1.5049352302572077, "d_right": 0.53470688084733, "d_left": 2.78415964389914, "psi_rad": 0.28035746906469017, "kappa_radpm": -0.13082964342094994, "vx_mps": 5.799565902548159, "ax_mps2": 5.977507913024433}, {"id": 219, "s_m": 21.880729362703505, "d_m": 0.0, "x_m": -3.9732987421695722, "y_m": -1.4779346662206043, "d_right": 0.5412634828073701, "d_left": 2.7584998124052573, "psi_rad": 0.26617543719043524, "kappa_radpm": -0.1528840770787965, "vx_mps": 5.901645048086186, "ax_mps2": 5.920054813972453}, {"id": 220, "s_m": 21.980641368925895, "d_m": 0.0, "x_m": -3.876765406103879, "y_m": -1.4524405265790326, "d_right": 0.5337312757240185, "d_left": 2.737775639986181, "psi_rad": 0.2500707837661582, "kappa_radpm": -0.15719094883373405, "vx_mps": 6.001031859640574, "ax_mps2": 5.864039632649549}, {"id": 221, "s_m": 22.080553375148288, "d_m": 0.0, "x_m": -3.779680326883116, "y_m": -1.4283892348483112, "d_right": 0.543238836545532, "d_left": 2.722051988757363, "psi_rad": 0.2362548447671835, "kappa_radpm": -0.11905081294225886, "vx_mps": 6.097881542712394, "ax_mps2": 5.809380924842978}, {"id": 222, "s_m": 22.180465381370677, "d_m": 0.0, "x_m": -3.6824671890886833, "y_m": -1.4055314647147195, "d_right": 0.5572375027817572, "d_left": 2.7111308260713525, "psi_rad": 0.22615916824888238, "kappa_radpm": -0.0886117181830803, "vx_mps": 6.192335029306374, "ax_mps2": 5.756004697131142}, {"id": 223, "s_m": 22.280377387593067, "d_m": 0.0, "x_m": -3.5848838502495664, "y_m": -1.3835114795615093, "d_right": 0.5493660040869828, "d_left": 2.7047461646129145, "psi_rad": 0.2179235111585105, "kappa_radpm": -0.07597556602636917, "vx_mps": 6.284520750972703, "ax_mps2": 5.703843483411919}, {"id": 224, "s_m": 22.38028939381546, "d_m": 0.0, "x_m": -3.487370885776238, "y_m": -1.362286390064388, "d_right": 0.5587674050786452, "d_left": 2.691501946868859, "psi_rad": 0.210757124607301, "kappa_radpm": -0.07666284278979422, "vx_mps": 6.374556138322019, "ax_mps2": 5.652835563720673}, {"id": 225, "s_m": 22.48020140003785, "d_m": 0.0, "x_m": -3.3895066041774555, "y_m": -1.3417892613093183, "d_right": 0.5639312581962503, "d_left": 2.6710109168999887, "psi_rad": 0.2016953424004404, "kappa_radpm": -0.10471764241119597, "vx_mps": 6.462548896886749, "ax_mps2": 5.6029242994127415}, {"id": 226, "s_m": 22.58011340626024, "d_m": 0.0, "x_m": -3.291594201531053, "y_m": -1.3223465476202376, "d_right": 0.5575925833176067, "d_left": 2.651575858179504, "psi_rad": 0.19003062993286757, "kappa_radpm": -0.12252639460927026, "vx_mps": 6.548598098798333, "ax_mps2": 5.554057564193208}, {"id": 227, "s_m": 22.680025412482628, "d_m": 0.0, "x_m": -3.1933305932366602, "y_m": -1.3040710492698526, "d_right": 0.5516725166396361, "d_left": 2.633308028692024, "psi_rad": 0.17771195597656742, "kappa_radpm": -0.12398283251042688, "vx_mps": 6.632795121772683, "ax_mps2": 5.506187254617152}, {"id": 228, "s_m": 22.77993741870502, "d_m": 0.0, "x_m": -3.0948598686580464, "y_m": -1.2870099190154443, "d_right": 0.5440805843970724, "d_left": 2.616254650553675, "psi_rad": 0.16566457676585689, "kappa_radpm": -0.1078275632139236, "vx_mps": 6.7152244607236655, "ax_mps2": 5.459268866896386}, {"id": 229, "s_m": 22.87984942492741, "d_m": 0.0, "x_m": -2.996238653785697, "y_m": -1.271005594493872, "d_right": 0.5536363406618713, "d_left": 2.6002581305639128, "psi_rad": 0.15669629391067508, "kappa_radpm": -0.07152813328708969, "vx_mps": 6.795964432506953, "ax_mps2": 5.413261129347362}, {"id": 230, "s_m": 22.9797614311498, "d_m": 0.0, "x_m": -2.897430939064187, "y_m": -1.2557088898195006, "d_right": 0.5652648526944738, "d_left": 2.5849688167363936, "psi_rad": 0.15064421806088646, "kappa_radpm": -0.06065352669349486, "vx_mps": 6.875087790506903, "ax_mps2": 5.368125681787948}, {"id": 231, "s_m": 23.07967343737219, "d_m": 0.0, "x_m": -2.7987211829246057, "y_m": -1.2410451152158313, "d_right": 0.5552242195575301, "d_left": 2.570313702170861, "psi_rad": 0.14416489354288742, "kappa_radpm": -0.06923380255230566, "vx_mps": 6.952662262775305, "ax_mps2": 5.323826794750565}, {"id": 232, "s_m": 23.179585443594583, "d_m": 0.0, "x_m": -2.6997275992799357, "y_m": -1.2270335277084647, "d_right": 0.5479036189171804, "d_left": 2.5575322174383097, "psi_rad": 0.1370104308346889, "kappa_radpm": -0.07215815134628015, "vx_mps": 7.028751025033391, "ax_mps2": 5.280331122627638}, {"id": 233, "s_m": 23.279497449816972, "d_m": 0.0, "x_m": -2.6008836240485125, "y_m": -1.2137681819395965, "d_right": 0.5579189432681878, "d_left": 2.54934551341268, "psi_rad": 0.12980235056902467, "kappa_radpm": -0.07232458804726863, "vx_mps": 7.103413117922147, "ax_mps2": 5.237607485863175}, {"id": 234, "s_m": 23.37940945603936, "d_m": 0.0, "x_m": -2.5016502416689224, "y_m": -1.2011734368853835, "d_right": 0.5704522743501552, "d_left": 2.545752728256836, "psi_rad": 0.12277889996673719, "kappa_radpm": -0.06738488467170342, "vx_mps": 7.176703816328526, "ax_mps2": 5.195626678119041}, {"id": 235, "s_m": 23.47932146226175, "d_m": 0.0, "x_m": -2.402627315633585, "y_m": -1.1892818426195604, "d_right": 0.5521179002239551, "d_left": 2.5467518731634966, "psi_rad": 0.11635392147204149, "kappa_radpm": -0.061820031123286094, "vx_mps": 7.248674957348503, "ax_mps2": 5.1543612949984565}, {"id": 236, "s_m": 23.579233468484144, "d_m": 0.0, "x_m": -2.3032210041963657, "y_m": -1.177987760338009, "d_right": 0.5451053804739261, "d_left": 2.552310550373937, "psi_rad": 0.10977515368342439, "kappa_radpm": -0.0696986676870887, "vx_mps": 7.319375232412122, "ax_mps2": 5.113785581452172}, {"id": 237, "s_m": 23.679145474706534, "d_m": 0.0, "x_m": -2.2039581292749117, "y_m": -1.1674089794141682, "d_right": 0.5555696079709883, "d_left": 2.546617224817645, "psi_rad": 0.10252467979053148, "kappa_radpm": -0.0683171189252948, "vx_mps": 7.388850448244033, "ax_mps2": 5.073875295432684}, {"id": 238, "s_m": 23.779057480928923, "d_m": 0.0, "x_m": -2.1044751764352236, "y_m": -1.1574580342394465, "d_right": 0.5654377132537113, "d_left": 2.5366667204030775, "psi_rad": 0.09745342116320854, "kappa_radpm": -0.03302426275216742, "vx_mps": 7.45714376062939, "ax_mps2": 5.0346075857295505}, {"id": 239, "s_m": 23.878969487151313, "d_m": 0.0, "x_m": -2.005054224785118, "y_m": -1.1478485761921406, "d_right": 0.552298900288576, "d_left": 2.5270578736173435, "psi_rad": 0.09561982313161566, "kappa_radpm": -0.012822220343384854, "vx_mps": 7.524295884370792, "ax_mps2": 4.9959608822226205}, {"id": 240, "s_m": 23.978881493373706, "d_m": 0.0, "x_m": -1.9056035211090538, "y_m": -1.1383776012216802, "d_right": 0.5459466873545713, "d_left": 2.5175875897565803, "psi_rad": 0.09424036865734076, "kappa_radpm": -0.014794671477722801, "vx_mps": 7.5903452823348, "ax_mps2": 4.957914797042877}, {"id": 241, "s_m": 24.078793499596095, "d_m": 0.0, "x_m": -1.8061403873632411, "y_m": -1.1290603984264638, "d_right": 0.5426890925317285, "d_left": 2.508271168619206, "psi_rad": 0.09234382154586207, "kappa_radpm": -0.02710347366718225, "vx_mps": 7.6553283360785125, "ax_mps2": 4.920450035344254}, {"id": 242, "s_m": 24.178705505818485, "d_m": 0.0, "x_m": -1.7066885902544744, "y_m": -1.1200173839960994, "d_right": 0.5517484202093889, "d_left": 2.4992290633428955, "psi_rad": 0.0887031162185441, "kappa_radpm": -0.045820530864803206, "vx_mps": 7.719279500203575, "ax_mps2": 4.8835483145661795}, {"id": 243, "s_m": 24.278617512040878, "d_m": 0.0, "x_m": -1.6071372451485342, "y_m": -1.1114021969097692, "d_right": 0.5519295209187003, "d_left": 2.4906146942305107, "psi_rad": 0.08398929142887979, "kappa_radpm": -0.04538760876113629, "vx_mps": 7.782231442295181, "ax_mps2": 4.847192291220133}, {"id": 244, "s_m": 24.378529518263267, "d_m": 0.0, "x_m": -1.507590762951408, "y_m": -1.1032417917168529, "d_right": 0.5297289495820826, "d_left": 2.4824551915641933, "psi_rad": 0.07966764611795618, "kappa_radpm": -0.04096818570670908, "vx_mps": 7.844215170058171, "ax_mps2": 4.811365494359276}, {"id": 245, "s_m": 24.478441524485657, "d_m": 0.0, "x_m": -1.4079664602179802, "y_m": -1.0954808635916655, "d_right": 0.5254803284670108, "d_left": 2.4746950585686163, "psi_rad": 0.07594665045871696, "kappa_radpm": -0.03349792547728982, "vx_mps": 7.905260147053478, "ax_mps2": 4.776052265000393}, {"id": 246, "s_m": 24.578353530708046, "d_m": 0.0, "x_m": -1.3083468316500584, "y_m": -1.0880559504459326, "d_right": 0.5329124061562707, "d_left": 2.467271003489083, "psi_rad": 0.07293937465786504, "kappa_radpm": -0.02855763135558584, "vx_mps": 7.9653943982599085, "ax_mps2": 4.741237700857849}, {"id": 247, "s_m": 24.67826553693044, "d_m": 0.0, "x_m": -1.2086934852354925, "y_m": -1.0809200638397325, "d_right": 0.540054742566698, "d_left": 2.4601359392601716, "psi_rad": 0.07000323650787132, "kappa_radpm": -0.03021191528367182, "vx_mps": 8.02464460653369, "ax_mps2": 4.706907605832292}, {"id": 248, "s_m": 24.77817754315283, "d_m": 0.0, "x_m": -1.109030481432693, "y_m": -1.074085238523628, "d_right": 0.5468959132449506, "d_left": 2.453301953219193, "psi_rad": 0.06693391173675822, "kappa_radpm": -0.030645356712709654, "vx_mps": 8.083036200907088, "ax_mps2": 4.673048443762749}, {"id": 249, "s_m": 24.87808954937522, "d_m": 0.0, "x_m": -1.0093276732044596, "y_m": -1.0675538080052611, "d_right": 0.5534327834367059, "d_left": 2.4467712884521076, "psi_rad": 0.06390985347404188, "kappa_radpm": -0.02988172529447274, "vx_mps": 8.140593437554537, "ax_mps2": 4.639647296008954}, {"id": 250, "s_m": 24.978001555597608, "d_m": 0.0, "x_m": -0.9096347000164201, "y_m": -1.061321199270383, "d_right": 0.5452409058458505, "d_left": 2.4405395060002317, "psi_rad": 0.0609902748131943, "kappa_radpm": -0.028374491468310694, "vx_mps": 8.197339474157031, "ax_mps2": 4.6066918224837545}, {"id": 251, "s_m": 25.07791356182, "d_m": 0.0, "x_m": -0.8098676857378027, "y_m": -1.0553678149163817, "d_right": 0.5240101001331148, "d_left": 2.434586752532379, "psi_rad": 0.0582440210251256, "kappa_radpm": -0.026579211172474918, "vx_mps": 8.25329643831108, "ax_mps2": 4.574170225797969}, {"id": 252, "s_m": 25.17782556804239, "d_m": 0.0, "x_m": -0.7101678202693992, "y_m": -1.0496942072828694, "d_right": 0.5211247033516708, "d_left": 2.428914007290108, "psi_rad": 0.05535817525708353, "kappa_radpm": -0.03158513698165791, "vx_mps": 8.308485490554988, "ax_mps2": 4.54207121821936}, {"id": 253, "s_m": 25.27773757426478, "d_m": 0.0, "x_m": -0.6103642098770712, "y_m": -1.044330356814938, "d_right": 0.5264864158727209, "d_left": 2.4235507095975812, "psi_rad": 0.05196867227291535, "kappa_radpm": -0.03260099673245594, "vx_mps": 8.362926882521291, "ax_mps2": 4.510383991179503}, {"id": 254, "s_m": 25.37764958048717, "d_m": 0.0, "x_m": -0.5106148446060205, "y_m": -1.0392687958025328, "d_right": 0.5315454714538471, "d_left": 2.418489894903741, "psi_rad": 0.049787735488824536, "kappa_radpm": -0.01110631370690044, "vx_mps": 8.41664001066824, "ax_mps2": 4.47909818709276}, {"id": 255, "s_m": 25.477561586709562, "d_m": 0.0, "x_m": -0.41081472067423735, "y_m": -1.0343190982158732, "d_right": 0.5364932604732898, "d_left": 2.413540790434384, "psi_rad": 0.04947761797719763, "kappa_radpm": -0.004159270240344922, "vx_mps": 8.469643465994334, "ax_mps2": 4.448203873275204}, {"id": 256, "s_m": 25.577473592931952, "d_m": 0.0, "x_m": -0.31103053275963605, "y_m": -1.0294276822266402, "d_right": 0.5413827455744188, "d_left": 2.4086500371467316, "psi_rad": 0.048195554969951315, "kappa_radpm": -0.021473583320448908, "vx_mps": 8.521955080096983, "ax_mps2": 4.417691517777942}, {"id": 257, "s_m": 25.67738559915434, "d_m": 0.0, "x_m": -0.21125040004780193, "y_m": -1.024743863600993, "d_right": 0.5460647244891302, "d_left": 2.4039669109529274, "psi_rad": 0.04555548996135261, "kappa_radpm": -0.026077653882274045, "vx_mps": 8.573591967898661, "ax_mps2": 4.387551966961506}, {"id": 258, "s_m": 25.777297605376734, "d_m": 0.0, "x_m": -0.11139969301674811, "y_m": -1.020314751510732, "d_right": 0.5302739573280856, "d_left": 2.399538247265364, "psi_rad": 0.04317686538266852, "kappa_radpm": -0.021528273755797366, "vx_mps": 8.624570567330567, "ax_mps2": 4.357776424664492}, {"id": 259, "s_m": 25.877209611599124, "d_m": 0.0, "x_m": -0.01162607179931159, "y_m": -1.0161080073834272, "d_right": 0.5102971336988962, "d_left": 2.3953322448757386, "psi_rad": 0.04110138121543305, "kappa_radpm": -0.020903915886153403, "vx_mps": 8.67490667623453, "ax_mps2": 4.328356432826666}, {"id": 260, "s_m": 25.977121617821513, "d_m": 0.0, "x_m": 0.08828644640147461, "y_m": -1.012104548117619, "d_right": 0.5092746944978084, "d_left": 2.391329015388975, "psi_rad": 0.03898707814998503, "kappa_radpm": -0.021383023269983162, "vx_mps": 8.724615486717854, "ax_mps2": 4.299283853445897}, {"id": 261, "s_m": 26.077033624043903, "d_m": 0.0, "x_m": 0.1880401261458981, "y_m": -1.0083200557124181, "d_right": 0.5130434106543096, "d_left": 2.3875453627812173, "psi_rad": 0.03685445278093691, "kappa_radpm": -0.021328144107755055, "vx_mps": 8.773711617172724, "ax_mps2": 4.270550851758517}, {"id": 262, "s_m": 26.176945630266296, "d_m": 0.0, "x_m": 0.28795066593573665, "y_m": -1.0047427748997437, "d_right": 0.5166127784052975, "d_left": 2.3660554734506776, "psi_rad": 0.03472619933405685, "kappa_radpm": -0.021208040284001195, "vx_mps": 8.822209142151387, "ax_mps2": 4.242149880541194}, {"id": 263, "s_m": 26.276857636488685, "d_m": 0.0, "x_m": 0.38774779810188625, "y_m": -1.0013809823585065, "d_right": 0.5199617826608062, "d_left": 2.348396038550042, "psi_rad": 0.03262703003080336, "kappa_radpm": -0.020837418672699212, "vx_mps": 8.870121620270005, "ax_mps2": 4.214073665445971}, {"id": 264, "s_m": 26.376769642711075, "d_m": 0.0, "x_m": 0.48764065860726247, "y_m": -0.9982242423952732, "d_right": 0.5231105324985424, "d_left": 2.335073712655704, "psi_rad": 0.030552569843550037, "kappa_radpm": -0.021087099126100413, "vx_mps": 8.917462120297943, "ax_mps2": 4.186315191286615}, {"id": 265, "s_m": 26.476681648933464, "d_m": 0.0, "x_m": 0.5874907703987252, "y_m": -0.9952803259428781, "d_right": 0.5260448657959441, "d_left": 2.326187566873204, "psi_rad": 0.02837263614125063, "kappa_radpm": -0.02255447281658968, "vx_mps": 8.964243245574615, "ax_mps2": 4.158867689198694}, {"id": 266, "s_m": 26.576593655155857, "d_m": 0.0, "x_m": 0.6873664905621807, "y_m": -0.9925593869299001, "d_right": 0.528757728277424, "d_left": 2.3217926880620974, "psi_rad": 0.02613464562189116, "kappa_radpm": -0.02051510694602869, "vx_mps": 9.010477156883134, "ax_mps2": 4.131724624612491}, {"id": 267, "s_m": 26.676505661378247, "d_m": 0.0, "x_m": 0.7872666152756224, "y_m": -0.9900413639297313, "d_right": 0.5312690581402382, "d_left": 2.3192743823849393, "psi_rad": 0.02435564796489076, "kappa_radpm": -0.015101907773924932, "vx_mps": 9.056175593898327, "ax_mps2": 4.104879685968248}, {"id": 268, "s_m": 26.776417667600636, "d_m": 0.0, "x_m": 0.887124018471227, "y_m": -0.9876716192561764, "d_right": 0.5336304636851913, "d_left": 2.3169041553406844, "psi_rad": 0.023277280553232416, "kappa_radpm": -0.004881972550380557, "vx_mps": 9.101349895316242, "ax_mps2": 4.078326774126226}, {"id": 269, "s_m": 26.876329673823026, "d_m": 0.0, "x_m": 0.9870603514424621, "y_m": -0.9853484291324686, "d_right": 0.535948886025743, "d_left": 2.3145808520264133, "psi_rad": 0.02341634922482183, "kappa_radpm": 0.007638728634493426, "vx_mps": 9.146011017762872, "ax_mps2": 4.05205999241593}, {"id": 270, "s_m": 26.97624168004542, "d_m": 0.0, "x_m": 1.0868899532779543, "y_m": -0.9829771757897904, "d_right": 0.5383107863347599, "d_left": 2.3122089933488787, "psi_rad": 0.02386708116755787, "kappa_radpm": -0.0026002317704572247, "vx_mps": 9.190169553571435, "ax_mps2": 4.026073637277143}, {"id": 271, "s_m": 27.07615368626781, "d_m": 0.0, "x_m": 1.1868537688451026, "y_m": -0.9806288929461024, "d_right": 0.5406555763484951, "d_left": 2.3098607249660494, "psi_rad": 0.02285761406229092, "kappa_radpm": -0.017560898948204454, "vx_mps": 9.23383574750982, "ax_mps2": 4.000362189453228}, {"id": 272, "s_m": 27.176065692490198, "d_m": 0.0, "x_m": 1.2866585871050038, "y_m": -0.9784386189095801, "d_right": 0.5428358110382601, "d_left": 2.307669737620808, "psi_rad": 0.02100533001378757, "kappa_radpm": -0.019178661859934283, "vx_mps": 9.277019512533062, "ax_mps2": 3.9749203056962163}, {"id": 273, "s_m": 27.27597769871259, "d_m": 0.0, "x_m": 1.3866192187487119, "y_m": -0.9764365213328822, "d_right": 0.5448346864035493, "d_left": 2.305667635981794, "psi_rad": 0.019028112638355354, "kappa_radpm": -0.02012600475741594, "vx_mps": 9.319730444629375, "ax_mps2": 3.9497428109450095}, {"id": 274, "s_m": 27.37588970493498, "d_m": 0.0, "x_m": 1.486455896267615, "y_m": -0.9746349603423898, "d_right": 0.546628070034745, "d_left": 2.303865510045083, "psi_rad": 0.017077836425852144, "kappa_radpm": -0.018942068935033182, "vx_mps": 9.361977836822708, "ax_mps2": 3.9248246909488635}, {"id": 275, "s_m": 27.47580171115737, "d_m": 0.0, "x_m": 1.586414409446195, "y_m": -0.9730205184468951, "d_right": 0.5218375048558844, "d_left": 2.3022510505147498, "psi_rad": 0.015234150575592409, "kappa_radpm": -0.01843295603352159, "vx_mps": 9.403770692389694, "ax_mps2": 3.9001610853025532}, {"id": 276, "s_m": 27.57571371737976, "d_m": 0.0, "x_m": 1.6863122342436105, "y_m": -0.9715930102100351, "d_right": 0.5024145435392469, "d_left": 2.3008232516343825, "psi_rad": 0.013318335377204393, "kappa_radpm": -0.019930673154420996, "vx_mps": 9.445117737344171, "ax_mps2": 3.87574728086416}, {"id": 277, "s_m": 27.675625723602153, "d_m": 0.0, "x_m": 1.7862532591376363, "y_m": -0.970363577731422, "d_right": 0.5022897940719961, "d_left": 2.297919270080969, "psi_rad": 0.01128438511852159, "kappa_radpm": -0.019593283821387832, "vx_mps": 9.48602743223831, "ax_mps2": 3.8515787055345982}, {"id": 278, "s_m": 27.775537729824542, "d_m": 0.0, "x_m": 1.886165704886813, "y_m": -0.9693281609978528, "d_right": 0.5033142835321427, "d_left": 2.2786094422374648, "psi_rad": 0.009498656860648103, "kappa_radpm": -0.016152160698037505, "vx_mps": 9.526507983325502, "ax_mps2": 3.827650922369827}, {"id": 279, "s_m": 27.87544973604693, "d_m": 0.0, "x_m": 1.9860731311798951, "y_m": -0.9684584488752038, "d_right": 0.5041733026399479, "d_left": 2.2637145839187447, "psi_rad": 0.0077970580331372386, "kappa_radpm": -0.022920800670743136, "vx_mps": 9.566567353126743, "ax_mps2": 3.8039596240081597}, {"id": 280, "s_m": 27.97536174226932, "d_m": 0.0, "x_m": 2.0859760686100652, "y_m": -0.9678215294631793, "d_right": 0.5048000423451889, "d_left": 2.2533882474150833, "psi_rad": 0.004676673318380953, "kappa_radpm": -0.039547283039140534, "vx_mps": 9.606213270438964, "ax_mps2": 3.7805006273888706}, {"id": 281, "s_m": 28.075273748491714, "d_m": 0.0, "x_m": 2.1858844916235944, "y_m": -0.9675714897148708, "d_right": 0.5050418033107762, "d_left": 2.247846309557523, "psi_rad": 0.000261815100613072, "kappa_radpm": -0.0447237797951401, "vx_mps": 9.645453239820954, "ax_mps2": 3.7572698687473047}, {"id": 282, "s_m": 28.175185754714104, "d_m": 0.0, "x_m": 2.2857919884421443, "y_m": -0.9677665004685688, "d_right": 0.5048400560713873, "d_left": 2.247182849506535, "psi_rad": -0.004145261612858997, "kappa_radpm": -0.04350016125341901, "vx_mps": 9.68429455058981, "ax_mps2": 3.734263398865842}, {"id": 283, "s_m": 28.275097760936493, "d_m": 0.0, "x_m": 2.3857063601292334, "y_m": -0.9683882317267747, "d_right": 0.5042137095878348, "d_left": 2.2478038188562044, "psi_rad": -0.008137819317986184, "kappa_radpm": -0.03470617345628775, "vx_mps": 9.722744285358457, "ax_mps2": 3.711477378566222}, {"id": 284, "s_m": 28.375009767158883, "d_m": 0.0, "x_m": 2.4856065419539646, "y_m": -0.9693561017320911, "d_right": 0.5032412663473642, "d_left": 2.2487707039759353, "psi_rad": -0.011054828385785864, "kappa_radpm": -0.023686545507801422, "vx_mps": 9.760809328142502, "ax_mps2": 3.6889080744288547}, {"id": 285, "s_m": 28.474921773381276, "d_m": 0.0, "x_m": 2.5855141216630457, "y_m": -0.9705711318688814, "d_right": 0.5020231757188688, "d_left": 2.249984829513723, "psi_rad": -0.013222118391078341, "kappa_radpm": -0.020406941635088247, "vx_mps": 9.798496372062706, "ax_mps2": 3.666551854724093}, {"id": 286, "s_m": 28.574833779603665, "d_m": 0.0, "x_m": 2.6854115859863175, "y_m": -0.9719897610289824, "d_right": 0.5006013612837731, "d_left": 2.251402401397701, "psi_rad": -0.015136332863127322, "kappa_radpm": -0.018053111197731345, "vx_mps": 9.835811926667459, "ax_mps2": 3.6444051855438}, {"id": 287, "s_m": 28.674745785826055, "d_m": 0.0, "x_m": 2.7853100683456318, "y_m": -0.973593673834146, "d_right": 0.5171600617418668, "d_left": 2.253005257260879, "psi_rad": -0.016987601069082148, "kappa_radpm": -0.019004244210560572, "vx_mps": 9.872762324897918, "ax_mps2": 3.622464627120442}, {"id": 288, "s_m": 28.774657792048444, "d_m": 0.0, "x_m": 2.885204751181101, "y_m": -0.9753872277213205, "d_right": 0.5466648072620041, "d_left": 2.254797689659498, "psi_rad": -0.01892993688476552, "kappa_radpm": -0.019534116589360745, "vx_mps": 9.9093537297169, "ax_mps2": 3.600726830323588}, {"id": 289, "s_m": 28.874569798270837, "d_m": 0.0, "x_m": 2.985093074174072, "y_m": -0.9773735069111217, "d_right": 0.5446904114748375, "d_left": 2.2517870287452153, "psi_rad": -0.020811438360812007, "kappa_radpm": -0.018129928813745633, "vx_mps": 9.945592140421157, "ax_mps2": 3.579188533322383}, {"id": 290, "s_m": 28.974481804493227, "d_m": 0.0, "x_m": 3.0849814737760877, "y_m": -0.9795410984678544, "d_right": 0.5425352347102705, "d_left": 2.2361586971674554, "psi_rad": -0.02258158158458956, "kappa_radpm": -0.018587247679899985, "vx_mps": 9.981483398655328, "ax_mps2": 3.5578465584058447}, {"id": 291, "s_m": 29.074393810715616, "d_m": 0.0, "x_m": 3.1848619869308967, "y_m": -0.9818973371832362, "d_right": 0.5401925300706031, "d_left": 2.225099891778807, "psi_rad": -0.02466687817204183, "kappa_radpm": -0.023154959964229792, "vx_mps": 10.017033194144632, "ax_mps2": 3.5366978089496013}, {"id": 292, "s_m": 29.17430581693801, "d_m": 0.0, "x_m": 3.2847389207780693, "y_m": -0.9844813932564123, "d_right": 0.5376229561583368, "d_left": 2.2187172703368176, "psi_rad": -0.02698659893076716, "kappa_radpm": -0.017761230422707466, "vx_mps": 10.052247070162194, "ax_mps2": 3.5157392665250535}, {"id": 293, "s_m": 29.2742178231604, "d_m": 0.0, "x_m": 3.3846128819441224, "y_m": -0.9872364065035617, "d_right": 0.534883223914728, "d_left": 2.216994672981176, "psi_rad": -0.027873391980165252, "kappa_radpm": 3.6198086782721093e-06, "vx_mps": 10.087130428745883, "ax_mps2": 3.494967988137062}, {"id": 294, "s_m": 29.374129829382788, "d_m": 0.0, "x_m": 3.4844804580089885, "y_m": -0.9899989439109954, "d_right": 0.5321366252274593, "d_left": 2.219758719696263, "psi_rad": -0.027387170064395505, "kappa_radpm": 0.00388017513851587, "vx_mps": 10.121688535678556, "ax_mps2": 3.4743811035890433}, {"id": 295, "s_m": 29.474041835605178, "d_m": 0.0, "x_m": 3.5843613154865657, "y_m": -0.9927260890839003, "d_right": 0.529424573733367, "d_left": 2.2224870871507716, "psi_rad": -0.027311037745002542, "kappa_radpm": -0.002353279150413932, "vx_mps": 10.155926525244666, "ax_mps2": 3.4539758129641154}, {"id": 296, "s_m": 29.57395384182757, "d_m": 0.0, "x_m": 3.6842215600879675, "y_m": -0.995468232162053, "d_right": 0.5266992321310484, "d_left": 2.2252309093984124, "psi_rad": -0.027521626016234757, "kappa_radpm": 0.0008879639697887713, "vx_mps": 10.189849404775417, "ax_mps2": 3.4337493842190288}, {"id": 297, "s_m": 29.67386584804996, "d_m": 0.0, "x_m": 3.7841127301243804, "y_m": -0.9982018230711811, "d_right": 0.5239803784315261, "d_left": 2.2279654912787046, "psi_rad": -0.027077821475967268, "kappa_radpm": 0.00798965942370131, "vx_mps": 10.22346205899383, "ax_mps2": 3.413699150881809}, {"id": 298, "s_m": 29.77377785427235, "d_m": 0.0, "x_m": 3.8839660058048717, "y_m": -1.0008834789396983, "d_right": 0.5213162757704479, "d_left": 2.2219089665668807, "psi_rad": -0.02695857097428145, "kappa_radpm": -0.00957513325017677, "vx_mps": 10.256769254170385, "ax_mps2": 3.393822509850713}, {"id": 299, "s_m": 29.87368986049474, "d_m": 0.0, "x_m": 3.9838686023430174, "y_m": -1.0036622709994787, "d_right": 0.5185518718329869, "d_left": 2.2075455826766057, "psi_rad": -0.029027487472085056, "kappa_radpm": -0.03181032056235315, "vx_mps": 10.289775642099233, "ax_mps2": 3.3741169192871507}, {"id": 300, "s_m": 29.973601866717132, "d_m": 0.0, "x_m": 4.083700507610102, "y_m": -1.0067143237422411, "d_right": 0.5155204187825619, "d_left": 2.1979169772288465, "psi_rad": -0.03199825748595786, "kappa_radpm": -0.026737992164191416, "vx_mps": 10.322485763904375, "ax_mps2": 3.354579896598686}, {"id": 301, "s_m": 30.07351387293952, "d_m": 0.0, "x_m": 4.183586029078148, "y_m": -1.0100351356090407, "d_right": 0.5122172231141415, "d_left": 2.1930651678360085, "psi_rad": -0.03437216366788687, "kappa_radpm": -0.02141332569076651, "vx_mps": 10.354904053684583, "ax_mps2": 3.3352090165053747}, {"id": 302, "s_m": 30.17342587916191, "d_m": 0.0, "x_m": 4.283403763821983, "y_m": -1.0135773758112636, "d_right": 0.5086986637641953, "d_left": 2.1929847155425786, "psi_rad": -0.03660282079307553, "kappa_radpm": -0.023250909832162152, "vx_mps": 10.38703484200537, "ax_mps2": 3.316001909189795}, {"id": 303, "s_m": 30.2733378853843, "d_m": 0.0, "x_m": 4.383265926767167, "y_m": -1.0173534176355623, "d_right": 0.5049439648356262, "d_left": 2.196761816731753, "psi_rad": -0.039010360538403566, "kappa_radpm": -0.024381925638602555, "vx_mps": 10.418882359245755, "ax_mps2": 3.296956258520754}, {"id": 304, "s_m": 30.373249891606694, "d_m": 0.0, "x_m": 4.483074464361552, "y_m": -1.02136824093681, "d_right": 0.5009557550023805, "d_left": 2.200778405989542, "psi_rad": -0.041372274188552494, "kappa_radpm": -0.02290944850091584, "vx_mps": 10.450450738807152, "ax_mps2": 3.278069800351174}, {"id": 305, "s_m": 30.473161897829083, "d_m": 0.0, "x_m": 4.582909518468496, "y_m": -1.0256133446090172, "d_right": 0.498885151816693, "d_left": 2.1943662749407453, "psi_rad": -0.04361695382506525, "kappa_radpm": -0.02319920889576368, "vx_mps": 10.481744020191258, "ax_mps2": 3.2593403208853555}, {"id": 306, "s_m": 30.573073904051473, "d_m": 0.0, "x_m": 4.682708914411904, "y_m": -1.0300913802751877, "d_right": 0.5162810643151544, "d_left": 2.1823799151784105, "psi_rad": -0.04612805596733627, "kappa_radpm": -0.027068669590281293, "vx_mps": 10.512766151953421, "ax_mps2": 3.240765655110558}, {"id": 307, "s_m": 30.672985910273866, "d_m": 0.0, "x_m": 4.782511590366885, "y_m": -1.0348395246946993, "d_right": 0.5362890049631354, "d_left": 2.175189399147457, "psi_rad": -0.04899112057304156, "kappa_radpm": -0.029387024752761465, "vx_mps": 10.543520994537593, "ax_mps2": 3.2223436852925826}, {"id": 308, "s_m": 30.772897916496255, "d_m": 0.0, "x_m": 4.882295782973628, "y_m": -1.0398794755688874, "d_right": 0.5312598222816854, "d_left": 2.17286733551102, "psi_rad": -0.05194655555808936, "kappa_radpm": -0.029772986451272423, "vx_mps": 10.5740123229986, "ax_mps2": 3.2040723395299997}, {"id": 309, "s_m": 30.872809922718645, "d_m": 0.0, "x_m": 4.982058458407403, "y_m": -1.045217646807496, "d_right": 0.5259337069194849, "d_left": 2.1754352272282103, "psi_rad": -0.05503538583934375, "kappa_radpm": -0.03360182923927147, "vx_mps": 10.6042438296172, "ax_mps2": 3.185949590365464}, {"id": 310, "s_m": 30.972721928941034, "d_m": 0.0, "x_m": 5.08182109503335, "y_m": -1.0508926675440864, "d_right": 0.5202713346699812, "d_left": 2.1801239963959493, "psi_rad": -0.05872219501694809, "kappa_radpm": -0.04018261015928439, "vx_mps": 10.634219126413, "ax_mps2": 3.1679734534503035}, {"id": 311, "s_m": 31.072633935163427, "d_m": 0.0, "x_m": 5.181529179751158, "y_m": -1.056950147495269, "d_right": 0.5142292855149072, "d_left": 2.186182630357406, "psi_rad": -0.0623327619620857, "kappa_radpm": -0.024568767241453, "vx_mps": 10.663941747560097, "ax_mps2": 3.150141986260971}, {"id": 312, "s_m": 31.172545941385817, "d_m": 0.0, "x_m": 5.281267594173966, "y_m": -1.0632531458910472, "d_right": 0.5079412352924552, "d_left": 2.177641184203357, "psi_rad": -0.06344173205670578, "kappa_radpm": 0.002342291174937285, "vx_mps": 10.693415151709978, "ax_mps2": 3.1324532868650374}, {"id": 313, "s_m": 31.272457947608206, "d_m": 0.0, "x_m": 5.380948294963888, "y_m": -1.06956961455913, "d_right": 0.5016425893575036, "d_left": 2.168280787455382, "psi_rad": -0.06345877233118835, "kappa_radpm": -0.012607300852410842, "vx_mps": 10.722642724226045, "ax_mps2": 3.114905492732174}, {"id": 314, "s_m": 31.372369953830596, "d_m": 0.0, "x_m": 5.480692322820667, "y_m": -1.0760173789277845, "d_right": 0.5010789587499702, "d_left": 2.1636210627304027, "psi_rad": -0.06611138215806633, "kappa_radpm": -0.0404344862093982, "vx_mps": 10.751627779333777, "ax_mps2": -7.304171524637197}, {"id": 315, "s_m": 31.47228196005299, "d_m": 0.0, "x_m": 5.580329220906852, "y_m": -1.0828248436618721, "d_right": 0.5197175564044106, "d_left": 2.1639376612292534, "psi_rad": -0.07022472941340085, "kappa_radpm": -0.03766693913630409, "vx_mps": 10.683536448372505, "ax_mps2": -8.135745959934622}, {"id": 316, "s_m": 31.57219396627538, "d_m": 0.0, "x_m": 5.680035265601397, "y_m": -1.0900139932373953, "d_right": 0.530779098594487, "d_left": 2.169239730146418, "psi_rad": -0.07360474702981223, "kappa_radpm": -0.029966897525359398, "vx_mps": 10.607178401524049, "ax_mps2": -8.969385128758482}, {"id": 317, "s_m": 31.672105972497768, "d_m": 0.0, "x_m": 5.779611640410554, "y_m": -1.0975071085805383, "d_right": 0.5232867186349596, "d_left": 2.1767312209946437, "psi_rad": -0.07663954838414155, "kappa_radpm": -0.031237731768856844, "vx_mps": 10.522354067230737, "ax_mps2": -8.857693458720641}, {"id": 318, "s_m": 31.772017978720157, "d_m": 0.0, "x_m": 5.879271531781981, "y_m": -1.105319381085979, "d_right": 0.5154753019296257, "d_left": 2.184542260147283, "psi_rad": -0.0798471166460688, "kappa_radpm": -0.032707575231506886, "vx_mps": 10.437909525773817, "ax_mps2": -8.854848664496078}, {"id": 319, "s_m": 31.87192998494255, "d_m": 0.0, "x_m": 5.9787778852628986, "y_m": -1.113438302897078, "d_right": 0.5073580507961216, "d_left": 2.174594931830309, "psi_rad": -0.08290791953536347, "kappa_radpm": -0.028604874188487256, "vx_mps": 10.352803672363773, "ax_mps2": -9.345804991520039}, {"id": 320, "s_m": 31.97184199116494, "d_m": 0.0, "x_m": 6.0784138751467305, "y_m": -1.1218544843947065, "d_right": 0.4989434613020093, "d_left": 2.1681602642847038, "psi_rad": -0.08555903076269034, "kappa_radpm": -0.023976443912970553, "vx_mps": 10.262213583120205, "ax_mps2": -9.87856728309562}, {"id": 321, "s_m": 32.07175399738733, "d_m": 0.0, "x_m": 6.177988312445832, "y_m": -1.1305014377310696, "d_right": 0.4998470910676147, "d_left": 2.166561563935324, "psi_rad": -0.08755023803432205, "kappa_radpm": -0.015910273728555597, "vx_mps": 10.165581767604985, "ax_mps2": -10.754528481689105}, {"id": 322, "s_m": 32.17166600360972, "d_m": 0.0, "x_m": 6.277566892331669, "y_m": -1.1393087768727106, "d_right": 0.5201696712558703, "d_left": 2.169731259144163, "psi_rad": -0.08879347870622367, "kappa_radpm": -0.012846467310792241, "vx_mps": 10.059326003301619, "ax_mps2": -9.475352883283222}, {"id": 323, "s_m": 32.27157800983211, "d_m": 0.0, "x_m": 6.377243152305266, "y_m": -1.1482745645425287, "d_right": 0.5228027545178924, "d_left": 2.177650265994057, "psi_rad": -0.09089601723509233, "kappa_radpm": -0.02929113630341711, "vx_mps": 9.964769771963237, "ax_mps2": -8.235261249830298}, {"id": 324, "s_m": 32.3714900160545, "d_m": 0.0, "x_m": 6.476654465150917, "y_m": -1.157510063204182, "d_right": 0.5135530926501798, "d_left": 2.1841268031821404, "psi_rad": -0.09461476891973608, "kappa_radpm": -0.042418816980666685, "vx_mps": 9.881853756343501, "ax_mps2": -7.960033044077758}, {"id": 325, "s_m": 32.47140202227689, "d_m": 0.0, "x_m": 6.576207273430546, "y_m": -1.1671764244085279, "d_right": 0.5038774807825801, "d_left": 2.175225760760118, "psi_rad": -0.09903243045050703, "kappa_radpm": -0.04592234919426921, "vx_mps": 9.80104218538516, "ax_mps2": -7.954383479493841}, {"id": 326, "s_m": 32.57131402849928, "d_m": 0.0, "x_m": 6.675540347362709, "y_m": -1.1772790203889312, "d_right": 0.5068621394031698, "d_left": 2.1713602784574104, "psi_rad": -0.10359061128195668, "kappa_radpm": -0.039573757198934675, "vx_mps": 9.719616818388603, "ax_mps2": -8.612162574834061}, {"id": 327, "s_m": 32.67122603472167, "d_m": 0.0, "x_m": 6.774918145956656, "y_m": -1.187774424690888, "d_right": 0.5286811775608268, "d_left": 2.172471060050414, "psi_rad": -0.10650098121194396, "kappa_radpm": -0.01851889520383938, "vx_mps": 9.630681918471428, "ax_mps2": -10.638678567723934}, {"id": 328, "s_m": 32.77113804094407, "d_m": 0.0, "x_m": 6.874307736527468, "y_m": -1.1984634388599158, "d_right": 0.5235038464818056, "d_left": 2.1783639867986517, "psi_rad": -0.10764442013542719, "kappa_radpm": -0.010410368184181711, "vx_mps": 9.519672829265692, "ax_mps2": -11.165199969334639}, {"id": 329, "s_m": 32.871050047166456, "d_m": 0.0, "x_m": 6.973519491101809, "y_m": -1.209241393683493, "d_right": 0.5126976222222407, "d_left": 2.188896389524088, "psi_rad": -0.10882680953004265, "kappa_radpm": -0.013310009736498481, "vx_mps": 9.401760245753914, "ax_mps2": -10.466802680043418}, {"id": 330, "s_m": 32.970962053388845, "d_m": 0.0, "x_m": 7.072996027092961, "y_m": -1.2201867904606212, "d_right": 0.50174207641958, "d_left": 2.1930393226427145, "psi_rad": -0.11050072651327225, "kappa_radpm": -0.02163140991539783, "vx_mps": 9.289864219117772, "ax_mps2": -9.592376104835928}, {"id": 331, "s_m": 33.070874059611235, "d_m": 0.0, "x_m": 7.172000288345545, "y_m": -1.2312972599988214, "d_right": 0.5071772756736331, "d_left": 2.1865283253616754, "psi_rad": -0.1131871403601461, "kappa_radpm": -0.032397324038574704, "vx_mps": 9.186119427021234, "ax_mps2": -9.590621663674609}, {"id": 332, "s_m": 33.170786065833624, "d_m": 0.0, "x_m": 7.271560269730746, "y_m": -1.24277668896927, "d_right": 0.5301003440347251, "d_left": 2.184852505672577, "psi_rad": -0.11633636837440853, "kappa_radpm": -0.029350161009948705, "vx_mps": 9.081208819580224, "ax_mps2": -9.896948672029943}, {"id": 333, "s_m": 33.270698072056014, "d_m": 0.0, "x_m": 7.370534519424231, "y_m": -1.2544827934387082, "d_right": 0.5185347907919007, "d_left": 2.188034227300021, "psi_rad": -0.11905624815234339, "kappa_radpm": -0.026576343868731336, "vx_mps": 8.971661252533814, "ax_mps2": -9.716773827100717}, {"id": 334, "s_m": 33.3706100782784, "d_m": 0.0, "x_m": 7.469933955524583, "y_m": -1.2665178568689532, "d_right": 0.5068891175358313, "d_left": 2.196061159215574, "psi_rad": -0.12203237473190232, "kappa_radpm": -0.032933349986491424, "vx_mps": 8.862790807418785, "ax_mps2": -9.714151631249585}, {"id": 335, "s_m": 33.47052208450079, "d_m": 0.0, "x_m": 7.569016691036667, "y_m": -1.2788426483570652, "d_right": 0.5129372026959613, "d_left": 2.1982438817333274, "psi_rad": -0.1254094513578463, "kappa_radpm": -0.027811112092311418, "vx_mps": 8.752596194250803, "ax_mps2": -10.157203800649224}, {"id": 336, "s_m": 33.57043409072319, "d_m": 0.0, "x_m": 7.668075676923953, "y_m": -1.2914333112309178, "d_right": 0.5212494867425208, "d_left": 2.19401196027459, "psi_rad": -0.1270612052906419, "kappa_radpm": -0.005042272544639226, "vx_mps": 8.635872099617293, "ax_mps2": -11.912229390409593}, {"id": 337, "s_m": 33.67034609694558, "d_m": 0.0, "x_m": 7.767309697414635, "y_m": -1.3041139109783004, "d_right": 0.5175769403218278, "d_left": 2.1943925879615898, "psi_rad": -0.12714130613215047, "kappa_radpm": -0.00309281000663452, "vx_mps": 8.496936944981652, "ax_mps2": -11.535257340261346}, {"id": 338, "s_m": 33.77025810316797, "d_m": 0.0, "x_m": 7.866086861250255, "y_m": -1.3167687660801575, "d_right": 0.5086301740261486, "d_left": 2.199327892399978, "psi_rad": -0.1278282609860466, "kappa_radpm": -0.010515185699117344, "vx_mps": 8.360198325439416, "ax_mps2": -11.534343010145411}, {"id": 339, "s_m": 33.87017010939036, "d_m": 0.0, "x_m": 7.965473996208629, "y_m": -1.3295776984786616, "d_right": 0.5190475562698613, "d_left": 2.20889454281642, "psi_rad": -0.12833183229095657, "kappa_radpm": 0.0005741030229239073, "vx_mps": 8.221196831330483, "ax_mps2": -11.79315503291368}, {"id": 340, "s_m": 33.97008211561275, "d_m": 0.0, "x_m": 8.064471495242566, "y_m": -1.3423344085564644, "d_right": 0.52860823660762, "d_left": 2.208457853374069, "psi_rad": -0.1280418407438102, "kappa_radpm": -0.007036768650093569, "vx_mps": 8.076603356697555, "ax_mps2": -9.046774779908175}, {"id": 341, "s_m": 34.06999412183514, "d_m": 0.0, "x_m": 8.163513806406591, "y_m": -1.3551928308757812, "d_right": 0.5227970074919777, "d_left": 2.20532407120335, "psi_rad": -0.13089126758150083, "kappa_radpm": -0.050429222813223276, "vx_mps": 7.963903499240353, "ax_mps2": -9.041919879866155}, {"id": 342, "s_m": 34.16990612805753, "d_m": 0.0, "x_m": 8.262640592357547, "y_m": -1.3685262258903796, "d_right": 0.5346093728753004, "d_left": 2.2071757753509944, "psi_rad": -0.13629779881598192, "kappa_radpm": -0.043405257636865605, "vx_mps": 7.849647522953733, "ax_mps2": -9.55202232370947}, {"id": 343, "s_m": 34.26981813427992, "d_m": 0.0, "x_m": 8.361389422374833, "y_m": -1.3822414284218765, "d_right": 0.5385748840110839, "d_left": 2.213949247040947, "psi_rad": -0.13927853837347892, "kappa_radpm": -0.020109626696751714, "vx_mps": 7.727110896507686, "ax_mps2": -10.510368450814154}, {"id": 344, "s_m": 34.36973014050231, "d_m": 0.0, "x_m": 8.460442583338688, "y_m": -1.3962449671767228, "d_right": 0.533709188430068, "d_left": 2.2254608410455172, "psi_rad": -0.14176827003010595, "kappa_radpm": -0.029723891857890157, "vx_mps": 7.5899946515668315, "ax_mps2": -9.982758521030316}, {"id": 345, "s_m": 34.4696421467247, "d_m": 0.0, "x_m": 8.55930779554495, "y_m": -1.4105221484928347, "d_right": 0.5302296705537973, "d_left": 2.2235591141314885, "psi_rad": -0.14524353962475312, "kappa_radpm": -0.040138527297513805, "vx_mps": 7.457427434972031, "ax_mps2": -9.45552162212268}, {"id": 346, "s_m": 34.56955415294709, "d_m": 0.0, "x_m": 8.657983547828826, "y_m": -1.425176151197517, "d_right": 0.5449215094047571, "d_left": 2.223080774238929, "psi_rad": -0.14979909300241245, "kappa_radpm": -0.05122806618900572, "vx_mps": 7.32965099289063, "ax_mps2": -9.450122131070168}, {"id": 347, "s_m": 34.66946615916948, "d_m": 0.0, "x_m": 8.756840049038216, "y_m": -1.4403600230486477, "d_right": 0.5308573184701316, "d_left": 2.2275879299589385, "psi_rad": -0.15503406071235393, "kappa_radpm": -0.053057635551066705, "vx_mps": 7.199682100986053, "ax_mps2": -9.449826775087592}, {"id": 348, "s_m": 34.76937816539187, "d_m": 0.0, "x_m": 8.85543941118459, "y_m": -1.4560397206174704, "d_right": 0.5285165821494098, "d_left": 2.2350963041104532, "psi_rad": -0.1603944630479539, "kappa_radpm": -0.05432171357519598, "vx_mps": 7.067327645733771, "ax_mps2": -9.479403023599918}, {"id": 349, "s_m": 34.86929017161426, "d_m": 0.0, "x_m": 8.953992479459606, "y_m": -1.4722604188779644, "d_right": 0.5442660286494739, "d_left": 2.232487220487046, "psi_rad": -0.16587456029817904, "kappa_radpm": -0.05534819028696661, "vx_mps": 6.932020463356693, "ax_mps2": -8.847947817056696}, {"id": 350, "s_m": 34.96920217783665, "d_m": 0.0, "x_m": 9.05244792119052, "y_m": -1.489043962058179, "d_right": 0.5486520825705328, "d_left": 2.2349148646386676, "psi_rad": -0.17212021398204835, "kappa_radpm": -0.07196696016256438, "vx_mps": 6.803298852004787, "ax_mps2": -8.844166350826908}, {"id": 351, "s_m": 35.069114184059046, "d_m": 0.0, "x_m": 9.150753473076241, "y_m": -1.5065260085739802, "d_right": 0.5481660678991295, "d_left": 2.242501962862906, "psi_rad": -0.17990954248574775, "kappa_radpm": -0.0685133685428598, "vx_mps": 6.672150962226364, "ax_mps2": -9.090428672241613}, {"id": 352, "s_m": 35.169026190281436, "d_m": 0.0, "x_m": 9.248998114531117, "y_m": -1.524650472577603, "d_right": 0.5494039375752776, "d_left": 2.250338547557392, "psi_rad": -0.18405717693604995, "kappa_radpm": -0.014684773383569221, "vx_mps": 6.5346088276658, "ax_mps2": -9.389062412507634}, {"id": 353, "s_m": 35.268938196503825, "d_m": 0.0, "x_m": 9.34705658625033, "y_m": -1.542992226051612, "d_right": 0.5500346976785162, "d_left": 2.250685571617889, "psi_rad": -0.18687512382694216, "kappa_radpm": -0.06782028800532247, "vx_mps": 6.389440695886149, "ax_mps2": -6.965348578225178}, {"id": 354, "s_m": 35.368850202726215, "d_m": 0.0, "x_m": 9.445255779449147, "y_m": -1.5620495928561842, "d_right": 0.5633388811982645, "d_left": 2.256143981312184, "psi_rad": -0.1977427590815959, "kappa_radpm": -0.131541575721751, "vx_mps": 6.279578688516339, "ax_mps2": -6.92703718450026}, {"id": 355, "s_m": 35.468762208948604, "d_m": 0.0, "x_m": 9.542957542414987, "y_m": -1.5822355278918976, "d_right": 0.5646047647971819, "d_left": 2.2671703515736583, "psi_rad": -0.20917652697940303, "kappa_radpm": -0.09772662754668232, "vx_mps": 6.168380674107878, "ax_mps2": -7.302379614215932}, {"id": 356, "s_m": 35.568674215170994, "d_m": 0.0, "x_m": 9.640479765544486, "y_m": -1.6034181839874095, "d_right": 0.5741209324947322, "d_left": 2.283509453152225, "psi_rad": -0.21925359858841054, "kappa_radpm": -0.13225214425828025, "vx_mps": 6.04894448195716, "ax_mps2": -4.620901230293855}, {"id": 357, "s_m": 35.66858622139338, "d_m": 0.0, "x_m": 9.738163973362651, "y_m": -1.6260039618382818, "d_right": 0.5754847398618664, "d_left": 2.2891027260095176, "psi_rad": -0.23649681508368858, "kappa_radpm": -0.21075821799616007, "vx_mps": 5.972132141944922, "ax_mps2": -4.6082071735457}, {"id": 358, "s_m": 35.76849822761578, "d_m": 0.0, "x_m": 9.83462955467273, "y_m": -1.650331279371421, "d_right": 0.5796190160037077, "d_left": 2.3006144310559273, "psi_rad": -0.2574780962231289, "kappa_radpm": -0.20776955929527555, "vx_mps": 5.894534067528736, "ax_mps2": -4.898984555639618}, {"id": 359, "s_m": 35.86841023383817, "d_m": 0.0, "x_m": 9.931093600736986, "y_m": -1.676795380360608, "d_right": 0.5792838323329719, "d_left": 2.318477727497367, "psi_rad": -0.277930125937623, "kappa_radpm": -0.20233569106221916, "vx_mps": 5.810903296600619, "ax_mps2": -5.286347416596351}, {"id": 360, "s_m": 35.96832224006056, "d_m": 0.0, "x_m": 10.026786836243865, "y_m": -1.70514254199131, "d_right": 0.5773222851887844, "d_left": 2.3395794784243513, "psi_rad": -0.2980167542833474, "kappa_radpm": -0.19986099243480349, "vx_mps": 5.719288239849655, "ax_mps2": -5.364577475811247}, {"id": 361, "s_m": 36.06823424628295, "d_m": 0.0, "x_m": 10.12184419619497, "y_m": -1.7353853178344636, "d_right": 0.5753231686962159, "d_left": 2.35612484563329, "psi_rad": -0.3182875869053985, "kappa_radpm": -0.21359345223074822, "vx_mps": 5.624792136087794, "ax_mps2": -4.831304592904524}, {"id": 362, "s_m": 36.16814625250534, "d_m": 0.0, "x_m": 10.216747359420017, "y_m": -1.7678294658628932, "d_right": 0.5671777927475526, "d_left": 2.3723355064173597, "psi_rad": -0.34093340358662383, "kappa_radpm": -0.23758031823341355, "vx_mps": 5.538309841919104, "ax_mps2": -4.229266836607594}, {"id": 363, "s_m": 36.26805825872773, "d_m": 0.0, "x_m": 10.310229870826522, "y_m": -1.802291368353546, "d_right": 0.5631135778556926, "d_left": 2.392757816879973, "psi_rad": -0.36589347273528094, "kappa_radpm": -0.26438594507883195, "vx_mps": 5.461480278835349, "ax_mps2": -3.640342970640371}, {"id": 364, "s_m": 36.36797026495012, "d_m": 0.0, "x_m": 10.4034650044008, "y_m": -1.8394938933896925, "d_right": 0.5740695615162704, "d_left": 2.410348069644739, "psi_rad": -0.3939290985473076, "kappa_radpm": -0.291135924762538, "vx_mps": 5.394472995301667, "ax_mps2": -3.4959651934424993}, {"id": 365, "s_m": 36.467882271172506, "d_m": 0.0, "x_m": 10.494883318727757, "y_m": -1.8789169303202364, "d_right": 0.5654377422794351, "d_left": 2.4344143741847497, "psi_rad": -0.4190872823526586, "kappa_radpm": -0.21472931468127282, "vx_mps": 5.329330267934046, "ax_mps2": -5.946504427741362}, {"id": 366, "s_m": 36.5677942773949, "d_m": 0.0, "x_m": 10.586008785472659, "y_m": -1.920556692977125, "d_right": 0.5578201018422754, "d_left": 2.4645088676896214, "psi_rad": -0.4371642811519991, "kappa_radpm": -0.16997151237801952, "vx_mps": 5.2166566620725545, "ax_mps2": -5.66612872116827}, {"id": 367, "s_m": 36.66770628361729, "d_m": 0.0, "x_m": 10.676028693445517, "y_m": -1.9636998637170433, "d_right": 0.5643198605763694, "d_left": 2.4998347098543126, "psi_rad": -0.45795257371925047, "kappa_radpm": -0.2467170935021073, "vx_mps": 5.10698327330857, "ax_mps2": -4.790949584477575}, {"id": 368, "s_m": 36.76761828983968, "d_m": 0.0, "x_m": 10.765182645726197, "y_m": -2.0091605874720666, "d_right": 0.5714178325788531, "d_left": 2.529703659280554, "psi_rad": -0.48601219145033214, "kappa_radpm": -0.2908054166852522, "vx_mps": 5.012377817409873, "ax_mps2": -4.735050069504676}, {"id": 369, "s_m": 36.86753029606207, "d_m": 0.0, "x_m": 10.852851658896636, "y_m": -2.057064667927575, "d_right": 0.5730481711640866, "d_left": 2.562797556832757, "psi_rad": -0.5137224355952661, "kappa_radpm": -0.26402348386631475, "vx_mps": 4.917088028543643, "ax_mps2": -5.671694501214503}, {"id": 370, "s_m": 36.96744230228446, "d_m": 0.0, "x_m": 10.939235684138945, "y_m": -2.107273794131022, "d_right": 0.5592810552970057, "d_left": 2.5810774756385415, "psi_rad": -0.5389892791112869, "kappa_radpm": -0.24652747407784611, "vx_mps": 4.800459762132533, "ax_mps2": -6.3844289933769325}, {"id": 371, "s_m": 37.06735430850685, "d_m": 0.0, "x_m": 11.0243479226314, "y_m": -2.1595957509439154, "d_right": 0.5458337406828282, "d_left": 2.570732061943526, "psi_rad": -0.5632692336563974, "kappa_radpm": -0.2394968723166996, "vx_mps": 4.665688771149248, "ax_mps2": -6.001390720186736}, {"id": 372, "s_m": 37.16726631472924, "d_m": 0.0, "x_m": 11.108288552776894, "y_m": -2.214050778410053, "d_right": 0.5480966989022744, "d_left": 2.538915505625148, "psi_rad": -0.5886981524583712, "kappa_radpm": -0.2954932312374505, "vx_mps": 4.5353533197835425, "ax_mps2": -4.105808096259846}, {"id": 373, "s_m": 37.267178320951636, "d_m": 0.0, "x_m": 11.190440272784487, "y_m": -2.270885296980315, "d_right": 0.546243798681302, "d_left": 2.4829768990126126, "psi_rad": -0.6235355872382513, "kappa_radpm": -0.4035921798306634, "vx_mps": 4.443983650639215, "ax_mps2": -4.05989942386422}, {"id": 374, "s_m": 37.367090327174026, "d_m": 0.0, "x_m": 11.270362847749796, "y_m": -2.3309633099732743, "d_right": 0.5436726870703041, "d_left": 2.431082234973721, "psi_rad": -0.6652182916491123, "kappa_radpm": -0.39279023863555484, "vx_mps": 4.351749681926782, "ax_mps2": -4.50052307239343}, {"id": 375, "s_m": 37.467002333396415, "d_m": 0.0, "x_m": 11.347700143005522, "y_m": -2.393976560998572, "d_right": 0.5322146408251319, "d_left": 2.3730181337091842, "psi_rad": -0.7010185031100793, "kappa_radpm": -0.32393522496368804, "vx_mps": 4.247165256465056, "ax_mps2": -5.299361068007516}, {"id": 376, "s_m": 37.566914339618805, "d_m": 0.0, "x_m": 11.423055568727396, "y_m": -2.459773509998453, "d_right": 0.5243789448973798, "d_left": 2.3139177031163367, "psi_rad": -0.7360413239000398, "kappa_radpm": -0.3984975674939966, "vx_mps": 4.120615624360148, "ax_mps2": -3.905004042151932}, {"id": 377, "s_m": 37.666826345841194, "d_m": 0.0, "x_m": 11.49550470517397, "y_m": -2.52830956042261, "d_right": 0.5271578444419939, "d_left": 2.2575216045636317, "psi_rad": -0.7810265364164684, "kappa_radpm": -0.5035828665833928, "vx_mps": 4.024817952082441, "ax_mps2": -3.8166031173825528}, {"id": 378, "s_m": 37.766738352063584, "d_m": 0.0, "x_m": 11.564769040024144, "y_m": -2.600458128326309, "d_right": 0.5251211557121294, "d_left": 2.2003721088066914, "psi_rad": -0.8301063386828891, "kappa_radpm": -0.4766480731424983, "vx_mps": 3.9289325011484304, "ax_mps2": -4.638434843527832}, {"id": 379, "s_m": 37.86665035828597, "d_m": 0.0, "x_m": 11.630367905610168, "y_m": -2.675641836233182, "d_right": 0.518376370185262, "d_left": 2.1475767574815983, "psi_rad": -0.876268028294684, "kappa_radpm": -0.464929744450851, "vx_mps": 3.8091521283197736, "ax_mps2": -4.646725244554289}, {"id": 380, "s_m": 37.96656236450836, "d_m": 0.0, "x_m": 11.692386113375123, "y_m": -2.753927829089909, "d_right": 0.5111872533515726, "d_left": 2.098782765680847, "psi_rad": -0.926729250715264, "kappa_radpm": -0.5452997302879676, "vx_mps": 3.685256117773604, "ax_mps2": -3.6778442215715765}, {"id": 381, "s_m": 38.06647437073076, "d_m": 0.0, "x_m": 11.750094238045104, "y_m": -2.835547337160245, "d_right": 0.5179840786479213, "d_left": 2.04368096723002, "psi_rad": -0.9856774702731563, "kappa_radpm": -0.6516964417078366, "vx_mps": 3.5841583480764974, "ax_mps2": -1.835626573986575}, {"id": 382, "s_m": 38.16638637695315, "d_m": 0.0, "x_m": 11.802312828799852, "y_m": -2.920748945817258, "d_right": 0.5079278275464115, "d_left": 1.99175854375054, "psi_rad": -1.0590158911739094, "kappa_radpm": -0.81835872121988, "vx_mps": 3.532617839042625, "ax_mps2": -0.586805067399926}, {"id": 383, "s_m": 38.26629838317554, "d_m": 0.0, "x_m": 11.847372913564074, "y_m": -3.009830073454244, "d_right": 0.5023003853973012, "d_left": 1.9464671866380439, "psi_rad": -1.147755646374713, "kappa_radpm": -0.9271043006517017, "vx_mps": 3.5159822317001836, "ax_mps2": -0.047753043872556376}, {"id": 384, "s_m": 38.36621038939793, "d_m": 0.0, "x_m": 11.884031441431878, "y_m": -3.102694947649902, "d_right": 0.5004429712359927, "d_left": 1.909686193241079, "psi_rad": -1.242630051057664, "kappa_radpm": -0.9714562790752453, "vx_mps": 3.5146249940496266, "ax_mps2": -0.047753043872565265}, {"id": 385, "s_m": 38.46612239562032, "d_m": 0.0, "x_m": 11.911530664825381, "y_m": -3.1983703238990513, "d_right": 0.4973334211544077, "d_left": 1.8806980631914951, "psi_rad": -1.3382196816863052, "kappa_radpm": -0.9222682298502144, "vx_mps": 3.513267232074052, "ax_mps2": 0.5686840654079586}, {"id": 386, "s_m": 38.56603440184271, "d_m": 0.0, "x_m": 11.93023152341494, "y_m": -3.2967277991586514, "d_right": 0.4714872107583815, "d_left": 1.845957787164492, "psi_rad": -1.4260881591230596, "kappa_radpm": -0.8321367450661062, "vx_mps": 3.529402693902822, "ax_mps2": 1.586180585486943}, {"id": 387, "s_m": 38.665946408065096, "d_m": 0.0, "x_m": 11.940537599617484, "y_m": -3.395728001085618, "d_right": 0.4539287336287031, "d_left": 1.8208258247430205, "psi_rad": -1.5080807432549332, "kappa_radpm": -0.8265992815975387, "vx_mps": 3.574022991641563, "ax_mps2": 1.3919373090361382}, {"id": 388, "s_m": 38.76585841428749, "d_m": 0.0, "x_m": 11.942645857805548, "y_m": -3.4960403899701444, "d_right": 0.4497114221093633, "d_left": 1.8037033482752014, "psi_rad": -1.5917410167891806, "kappa_radpm": -0.8416305276091898, "vx_mps": 3.6127251269568954, "ax_mps2": 0.9647651086606718}, {"id": 389, "s_m": 38.86577042050988, "d_m": 0.0, "x_m": 11.936451278422883, "y_m": -3.595342640723846, "d_right": 0.4434907558374116, "d_left": 1.7885258303473062, "psi_rad": -1.673961001523475, "kappa_radpm": -0.8120153179173223, "vx_mps": 3.639308461510925, "ax_mps2": 1.1940081867202277}, {"id": 390, "s_m": 38.96568242673227, "d_m": 0.0, "x_m": 11.92212307069991, "y_m": -3.6945262883722383, "d_right": 0.4452052898918207, "d_left": 1.7868705990813767, "psi_rad": -1.7542285449069208, "kappa_radpm": -0.7946875189075757, "vx_mps": 3.671941936467319, "ax_mps2": 1.2329793182633066}, {"id": 391, "s_m": 39.06559443295466, "d_m": 0.0, "x_m": 11.900041502235418, "y_m": -3.7916823181897423, "d_right": 0.4581688334704443, "d_left": 1.7926253649083885, "psi_rad": -1.834811203821621, "kappa_radpm": -0.8236057128065195, "vx_mps": 3.7053389128963854, "ax_mps2": 0.31228670412164095}, {"id": 392, "s_m": 39.16550643917705, "d_m": 0.0, "x_m": 11.869901690098876, "y_m": -3.8871476849976547, "d_right": 0.4468718352468674, "d_left": 1.794864920476592, "psi_rad": -1.9189512768314145, "kappa_radpm": -0.8541471968879917, "vx_mps": 3.7137499702692573, "ax_mps2": -0.05327617525950186}, {"id": 393, "s_m": 39.26541844539944, "d_m": 0.0, "x_m": 11.83190540253204, "y_m": -3.979324262750243, "d_right": 0.44928078959060636, "d_left": 1.808346841550637, "psi_rad": -2.0048967187794027, "kappa_radpm": -0.8707455835370339, "vx_mps": 3.7123163904180965, "ax_mps2": -0.05327617525950186}, {"id": 394, "s_m": 39.36533045162183, "d_m": 0.0, "x_m": 11.785883271885929, "y_m": -4.068156689616512, "d_right": 0.4575603384340804, "d_left": 1.8224928761788404, "psi_rad": -2.0926448020614377, "kappa_radpm": -0.8431547538979204, "vx_mps": 3.71088225674957, "ax_mps2": 0.33597839345747393}, {"id": 395, "s_m": 39.46524245784422, "d_m": 0.0, "x_m": 11.732873262315719, "y_m": -4.152655292141147, "d_right": 0.45116526665525825, "d_left": 1.8382434055701675, "psi_rad": -2.1659504238091047, "kappa_radpm": -0.6286639257228236, "vx_mps": 3.7199171595795253, "ax_mps2": 3.2471900332843857}, {"id": 396, "s_m": 39.565154464066616, "d_m": 0.0, "x_m": 11.674440241116914, "y_m": -4.233939703012018, "d_right": 0.45548373356731114, "d_left": 1.865381691617808, "psi_rad": -2.2194513385480406, "kappa_radpm": -0.48951252103375065, "vx_mps": 3.8061332367319762, "ax_mps2": 4.852600363121924}, {"id": 397, "s_m": 39.665066470289005, "d_m": 0.0, "x_m": 11.612102634893041, "y_m": -4.311927232154863, "d_right": 0.4665566656327056, "d_left": 1.8957891613655617, "psi_rad": -2.272040222728755, "kappa_radpm": -0.5638001209948527, "vx_mps": 3.9314521860383658, "ax_mps2": 3.2259754695336134}, {"id": 398, "s_m": 39.764978476511395, "d_m": 0.0, "x_m": 11.54540345241375, "y_m": -4.38636469853682, "d_right": 0.4720301912202382, "d_left": 1.928728433066761, "psi_rad": -2.331747218231258, "kappa_radpm": -0.6093218617888889, "vx_mps": 4.012598117613634, "ax_mps2": 2.127099479459888}, {"id": 399, "s_m": 39.864890482733784, "d_m": 0.0, "x_m": 11.474422473621628, "y_m": -4.45660394954179, "d_right": 0.47150719530498897, "d_left": 1.970866548487743, "psi_rad": -2.3904427042786436, "kappa_radpm": -0.5670681192832137, "vx_mps": 4.065216993757081, "ax_mps2": 2.564751669360078}, {"id": 400, "s_m": 39.964802488956174, "d_m": 0.0, "x_m": 11.399468224911342, "y_m": -4.52279822791715, "d_right": 0.4748338452994747, "d_left": 1.9970573047540183, "psi_rad": -2.4453810687075332, "kappa_radpm": -0.5383275190887052, "vx_mps": 4.127770363746914, "ax_mps2": 2.761844983816989}, {"id": 401, "s_m": 40.06471449517856, "d_m": 0.0, "x_m": 11.32109697015155, "y_m": -4.584800586067632, "d_right": 0.4917793798959928, "d_left": 2.032877498582812, "psi_rad": -2.4991907352685647, "kappa_radpm": -0.5390705989133204, "vx_mps": 4.194087638836858, "ax_mps2": 2.4495466693277077}, {"id": 402, "s_m": 40.16462650140095, "d_m": 0.0, "x_m": 11.239499440042577, "y_m": -4.642491856749059, "d_right": 0.4970434340570535, "d_left": 2.0721479867751325, "psi_rad": -2.5530244674195144, "kappa_radpm": -0.5230042663658888, "vx_mps": 4.252040612033231, "ax_mps2": 2.4742679703538837}, {"id": 403, "s_m": 40.26453850762335, "d_m": 0.0, "x_m": 11.154927987682576, "y_m": -4.6959606268023, "d_right": 0.4999923694492675, "d_left": 2.0954573189164947, "psi_rad": -2.6012342589945643, "kappa_radpm": -0.4414043772543187, "vx_mps": 4.30978741007949, "ax_mps2": 3.729431998622377}, {"id": 404, "s_m": 40.36445051384574, "d_m": 0.0, "x_m": 11.068239101160438, "y_m": -4.745548500428807, "d_right": 0.5074486642644616, "d_left": 2.0826137160720415, "psi_rad": -2.6416931491832365, "kappa_radpm": -0.3856485769436466, "vx_mps": 4.395395043245187, "ax_mps2": 4.474777300022578}, {"id": 405, "s_m": 40.46436252006813, "d_m": 0.0, "x_m": 10.979400112576018, "y_m": -4.791832677791669, "d_right": 0.5165962323604627, "d_left": 2.0526343037044983, "psi_rad": -2.6811969260851294, "kappa_radpm": -0.40364960354325763, "vx_mps": 4.495961025306123, "ax_mps2": 3.7626192657292075}, {"id": 406, "s_m": 40.56427452629052, "d_m": 0.0, "x_m": 10.889125536923938, "y_m": -4.834327453546847, "d_right": 0.521786552140386, "d_left": 2.0265602630166355, "psi_rad": -2.7220021517560458, "kappa_radpm": -0.38575381703535233, "vx_mps": 4.578812861435999, "ax_mps2": 3.831418624660787}, {"id": 407, "s_m": 40.66418653251291, "d_m": 0.0, "x_m": 10.796862906929622, "y_m": -4.873593742842556, "d_right": 0.5234007320583273, "d_left": 2.0086527680022916, "psi_rad": -2.7542950492201905, "kappa_radpm": -0.2574247362550322, "vx_mps": 4.661666725859657, "ax_mps2": 6.321858933820706}, {"id": 408, "s_m": 40.7640985387353, "d_m": 0.0, "x_m": 10.704118908402293, "y_m": -4.91026518299172, "d_right": 0.5224880833060028, "d_left": 1.9844101516635155, "psi_rad": -2.7744526616118907, "kappa_radpm": -0.1886605440684887, "vx_mps": 4.795247217949563, "ax_mps2": 6.5384719303945715}, {"id": 409, "s_m": 40.86401054495769, "d_m": 0.0, "x_m": 10.610408273703474, "y_m": -4.94519920960717, "d_right": 0.5274052162344253, "d_left": 1.9668338958485112, "psi_rad": -2.795962321534285, "kappa_radpm": -0.2417951023933106, "vx_mps": 4.929598318082522, "ax_mps2": 6.030208455832485}, {"id": 410, "s_m": 40.963922551180076, "d_m": 0.0, "x_m": 10.516116988423791, "y_m": -4.977812864324117, "d_right": 0.5249774129815108, "d_left": 1.9566158366710014, "psi_rad": -2.820807960192412, "kappa_radpm": -0.216922355066376, "vx_mps": 5.050338605199151, "ax_mps2": 6.368594135817913}, {"id": 411, "s_m": 41.06383455740247, "d_m": 0.0, "x_m": 10.42116316819767, "y_m": -5.008412732739209, "d_right": 0.5391947130163144, "d_left": 1.9460870803883767, "psi_rad": -2.8370441641814033, "kappa_radpm": -0.10691847171635704, "vx_mps": 5.1747964270120255, "ax_mps2": 6.327390741227307}, {"id": 412, "s_m": 41.16374656362486, "d_m": 0.0, "x_m": 10.32560731653308, "y_m": -5.038026417446635, "d_right": 0.5640118788500968, "d_left": 1.9348234705356628, "psi_rad": -2.8445493868930285, "kappa_radpm": -0.06513164072889333, "vx_mps": 5.295553103051126, "ax_mps2": 6.259999984195324}, {"id": 413, "s_m": 41.26365856984725, "d_m": 0.0, "x_m": 10.230374789067902, "y_m": -5.066859556381065, "d_right": 0.5612503119261814, "d_left": 1.9293585267738569, "psi_rad": -2.850455134610744, "kappa_radpm": -0.05329003311122105, "vx_mps": 5.412372952964399, "ax_mps2": 6.194698963301496}, {"id": 414, "s_m": 41.36357057606964, "d_m": 0.0, "x_m": 10.134421359135343, "y_m": -5.095342849708521, "d_right": 0.5755383042358201, "d_left": 1.9215181057784625, "psi_rad": -2.8555377566254414, "kappa_radpm": -0.048543241205163006, "vx_mps": 5.5255434651005135, "ax_mps2": 6.131337261999955}, {"id": 415, "s_m": 41.46348258229203, "d_m": 0.0, "x_m": 10.038695775756029, "y_m": -5.123255272237427, "d_right": 0.58583171650354, "d_left": 1.9120058147736905, "psi_rad": -2.86006264890474, "kappa_radpm": -0.037496952256517155, "vx_mps": 5.635318890538494, "ax_mps2": 6.069781783352034}, {"id": 416, "s_m": 41.56339458851442, "d_m": 0.0, "x_m": 9.94268565104048, "y_m": -5.15088307707271, "d_right": 0.5926268074560536, "d_left": 1.8988284584916717, "psi_rad": -2.8622091763189967, "kappa_radpm": -0.005388109613839109, "vx_mps": 5.741925386895378, "ax_mps2": 6.009914074242904}, {"id": 417, "s_m": 41.66330659473681, "d_m": 0.0, "x_m": 9.846771873369374, "y_m": -5.178418423162621, "d_right": 0.6081537601975787, "d_left": 1.8860410920980342, "psi_rad": -2.8616360252022233, "kappa_radpm": 0.007377071619647762, "vx_mps": 5.845565181694342, "ax_mps2": 5.951628159134674}, {"id": 418, "s_m": 41.763218600959206, "d_m": 0.0, "x_m": 9.75072170712974, "y_m": -5.206061899754154, "d_right": 0.6213195399773755, "d_left": 1.8702512686485706, "psi_rad": -2.861186687915268, "kappa_radpm": 0.0016292778002323495, "vx_mps": 5.946419974469926, "ax_mps2": 5.894828769518703}, {"id": 419, "s_m": 41.863130607181596, "d_m": 0.0, "x_m": 9.65491785608863, "y_m": -5.233656359033018, "d_right": 0.6231502119535094, "d_left": 1.8526685068867503, "psi_rad": -2.8611294133920726, "kappa_radpm": 0.00043597712783918964, "vx_mps": 6.044653741131501, "ax_mps2": 5.839429884122518}, {"id": 420, "s_m": 41.963042613403985, "d_m": 0.0, "x_m": 9.558691964020019, "y_m": -5.261376999397703, "d_right": 0.640797610572172, "d_left": 1.8402791961183738, "psi_rad": -2.861088460833214, "kappa_radpm": 0.00019616535399751646, "vx_mps": 6.140415064147567, "ax_mps2": 5.785353515676947}, {"id": 421, "s_m": 42.062954619626375, "d_m": 0.0, "x_m": 9.46299639464664, "y_m": -5.288942439836387, "d_right": 0.6684744267659624, "d_left": 1.833309974006802, "psi_rad": -2.861227152355779, "kappa_radpm": -0.002949754210362214, "vx_mps": 6.2338390830149315, "ax_mps2": 5.732528695158902}, {"id": 422, "s_m": 42.162866625848764, "d_m": 0.0, "x_m": 9.366864178189099, "y_m": -5.316603144399984, "d_right": 0.696248539346602, "d_left": 1.8211903461835883, "psi_rad": -2.861671370372572, "kappa_radpm": -0.005873496956176336, "vx_mps": 6.325049138010386, "ax_mps2": 5.680890615573745}, {"id": 423, "s_m": 42.262778632071154, "d_m": 0.0, "x_m": 9.270945560791924, "y_m": -5.344141716898884, "d_right": 0.7047582021079345, "d_left": 1.8096821319150975, "psi_rad": -2.8623905754374928, "kappa_radpm": -0.008505803302022233, "vx_mps": 6.4141581641950305, "ax_mps2": 5.630379905666789}, {"id": 424, "s_m": 42.36269063829354, "d_m": 0.0, "x_m": 9.174918735882821, "y_m": -5.371623278560503, "d_right": 0.709727367616493, "d_left": 1.8037119404934465, "psi_rad": -2.8633632915920355, "kappa_radpm": -0.010942094064400007, "vx_mps": 6.501269880542459, "ax_mps2": 5.580942010238825}, {"id": 425, "s_m": 42.46260264451593, "d_m": 0.0, "x_m": 9.078733597492395, "y_m": -5.399036526889661, "d_right": 0.72841607726142, "d_left": 1.790328097317914, "psi_rad": -2.8645719723500687, "kappa_radpm": -0.0131964937945103, "vx_mps": 6.586479809834394, "ax_mps2": 5.532526658533779}, {"id": 426, "s_m": 42.56251465073833, "d_m": 0.0, "x_m": 8.982787294199007, "y_m": -5.4262454356409995, "d_right": 0.7557144987445307, "d_left": 1.77993299342516, "psi_rad": -2.8659828316285054, "kappa_radpm": -0.014974494045443215, "vx_mps": 6.669876157862462, "ax_mps2": 5.485087405859326}, {"id": 427, "s_m": 42.66242665696072, "d_m": 0.0, "x_m": 8.886357068604466, "y_m": -5.453435804601653, "d_right": 0.7829944505334113, "d_left": 1.768759627140263, "psi_rad": -2.867559782757759, "kappa_radpm": -0.01648473876986489, "vx_mps": 6.75154057495556, "ax_mps2": 5.4385812364696475}, {"id": 428, "s_m": 42.76233866318311, "d_m": 0.0, "x_m": 8.790440903058983, "y_m": -5.480311376960931, "d_right": 0.8099867542335121, "d_left": 1.7484123768706545, "psi_rad": -2.8692550286174523, "kappa_radpm": -0.01745179226328182, "vx_mps": 6.831548818529331, "ax_mps2": 5.3929682179843565}, {"id": 429, "s_m": 42.8622506694055, "d_m": 0.0, "x_m": 8.693819372256224, "y_m": -5.507202940610683, "d_right": 0.8140141740908797, "d_left": 1.7336496608787795, "psi_rad": -2.871046115218631, "kappa_radpm": -0.018256740707629282, "vx_mps": 6.909971331941566, "ax_mps2": 5.348211199395141}, {"id": 430, "s_m": 42.96216267562789, "d_m": 0.0, "x_m": 8.597872846787684, "y_m": -5.533718896197253, "d_right": 0.8209138798146721, "d_left": 1.7248293918078295, "psi_rad": -2.8728786802851607, "kappa_radpm": -0.01849727751028017, "vx_mps": 6.986873752224206, "ax_mps2": 5.304275546118019}, {"id": 431, "s_m": 43.06207468185028, "d_m": 0.0, "x_m": 8.501122314272124, "y_m": -5.5602646324533405, "d_right": 0.8396541042743089, "d_left": 1.7196075173175736, "psi_rad": -2.874743082910541, "kappa_radpm": -0.01867091220327746, "vx_mps": 7.062317357090205, "ax_mps2": 5.261128906681098}, {"id": 432, "s_m": 43.161986688072666, "d_m": 0.0, "x_m": 8.405087586323697, "y_m": -5.586422163468899, "d_right": 0.8658951851576193, "d_left": 1.7047950684848292, "psi_rad": -2.8765862530833735, "kappa_radpm": -0.01832851251066523, "vx_mps": 7.136359459863257, "ax_mps2": 5.218741006547702}, {"id": 433, "s_m": 43.26189869429506, "d_m": 0.0, "x_m": 8.308264657172485, "y_m": -5.612603974972957, "d_right": 0.8921511111243163, "d_left": 1.6917183087488123, "psi_rad": -2.878406879797293, "kappa_radpm": -0.017982780153472985, "vx_mps": 7.209053759559457, "ax_mps2": 5.1770834653118625}, {"id": 434, "s_m": 43.36181070051745, "d_m": 0.0, "x_m": 8.212096330687972, "y_m": -5.638424063517601, "d_right": 0.9003979342402577, "d_left": 1.6824237643337816, "psi_rad": -2.8801598842768463, "kappa_radpm": -0.017199251419923612, "vx_mps": 7.2804506521930685, "ax_mps2": 5.136129634105267}, {"id": 435, "s_m": 43.46172270673984, "d_m": 0.0, "x_m": 8.115244948911503, "y_m": -5.664249168520473, "d_right": 0.9083605745269661, "d_left": 1.6586332721139398, "psi_rad": -2.8818451347948653, "kappa_radpm": -0.016437929955016296, "vx_mps": 7.3505975084303135, "ax_mps2": 5.095854450547561}, {"id": 436, "s_m": 43.56163471296223, "d_m": 0.0, "x_m": 8.018916015828772, "y_m": -5.689766025454411, "d_right": 0.9260842947558467, "d_left": 1.6408810809171703, "psi_rad": -2.8834297210226856, "kappa_radpm": -0.015330301920288088, "vx_mps": 7.41953892193342, "ax_mps2": 5.056234308979231}, {"id": 437, "s_m": 43.66154671918462, "d_m": 0.0, "x_m": 7.922065325704238, "y_m": -5.7152623729234815, "d_right": 0.9446353937842018, "d_left": 1.629150663442152, "psi_rad": -2.884909923648541, "kappa_radpm": -0.014241678757021684, "vx_mps": 7.487316932090301, "ax_mps2": 5.017246944053197}, {"id": 438, "s_m": 43.76145872540701, "d_m": 0.0, "x_m": 7.825569615208788, "y_m": -5.740518763682041, "d_right": 0.9699576179869032, "d_left": 1.6236769221482428, "psi_rad": -2.8862656890072724, "kappa_radpm": -0.012896349365944658, "vx_mps": 7.553971224286808, "ax_mps2": 4.978871326039346}, {"id": 439, "s_m": 43.8613707316294, "d_m": 0.0, "x_m": 7.728734578226426, "y_m": -5.765730657258581, "d_right": 0.9925206469307497, "d_left": 1.6050894409706447, "psi_rad": -2.8874881763947826, "kappa_radpm": -0.011549623308127113, "vx_mps": 7.61953931042872, "ax_mps2": 4.941087566433025}, {"id": 440, "s_m": 43.96128273785179, "d_m": 0.0, "x_m": 7.632086451140528, "y_m": -5.790774950786999, "d_right": 0.9918195041777926, "d_left": 1.582426173540567, "psi_rad": -2.8885679427404796, "kappa_radpm": -0.010025757497514266, "vx_mps": 7.684056692043222, "ax_mps2": 4.9038768326530855}, {"id": 441, "s_m": 44.061194744074186, "d_m": 0.0, "x_m": 7.535269861270936, "y_m": -5.8157593938964895, "d_right": 1.001046717448218, "d_left": 1.5658918740473355, "psi_rad": -2.889492304862433, "kappa_radpm": -0.008473262450609916, "vx_mps": 7.747557007971611, "ax_mps2": 4.867221270781706}, {"id": 442, "s_m": 44.161106750296575, "d_m": 0.0, "x_m": 7.43850198317177, "y_m": -5.8406439373781085, "d_right": 1.0199392178814781, "d_left": 1.5557107137322956, "psi_rad": -2.8902583919603213, "kappa_radpm": -0.006806818735959466, "vx_mps": 7.810072168396026, "ax_mps2": 4.831103935436211}, {"id": 443, "s_m": 44.261018756518965, "d_m": 0.0, "x_m": 7.341697082284531, "y_m": -5.865467800624764, "d_right": 1.044806763829624, "d_left": 1.55197662996977, "psi_rad": -2.890852275673968, "kappa_radpm": -0.005084898322749398, "vx_mps": 7.871632476714778, "ax_mps2": 4.795508725985963}, {"id": 444, "s_m": 44.360930762741354, "d_m": 0.0, "x_m": 7.244856889922323, "y_m": -5.890248283495978, "d_right": 1.0642151066201972, "d_left": 1.5305513979093712, "psi_rad": -2.891273412883705, "kappa_radpm": -0.0032966518427569092, "vx_mps": 7.932266740586281, "ax_mps2": 4.760420328423936}, {"id": 445, "s_m": 44.460842768963744, "d_m": 0.0, "x_m": 7.14805017730649, "y_m": -5.914986238040518, "d_right": 1.065378210667041, "d_left": 1.505826560600231, "psi_rad": -2.891509627931425, "kappa_radpm": -0.0014342460280120858, "vx_mps": 7.992002373295485, "ax_mps2": 4.725824162292102}, {"id": 446, "s_m": 44.56075477518613, "d_m": 0.0, "x_m": 7.051195740528397, "y_m": -5.939721606631275, "d_right": 1.0758526946323295, "d_left": 1.4837474178356858, "psi_rad": -2.891559322261421, "kappa_radpm": 0.00047269728872397583, "vx_mps": 8.050865486454134, "ax_mps2": 4.691706332134214}, {"id": 447, "s_m": 44.66066678140852, "d_m": 0.0, "x_m": 6.954369980527618, "y_m": -5.9644545848098565, "d_right": 1.095384791631442, "d_left": 1.4681555467628569, "psi_rad": -2.891412316590939, "kappa_radpm": 0.0024711964427485134, "vx_mps": 8.108880974923604, "ax_mps2": 4.658053583010576}, {"id": 448, "s_m": 44.76057878763092, "d_m": 0.0, "x_m": 6.8575647538004585, "y_m": -5.989207799363186, "d_right": 1.1184765084580308, "d_left": 1.459232457219336, "psi_rad": -2.89106484820938, "kappa_radpm": 0.0044886203183775175, "vx_mps": 8.166072594743326, "ax_mps2": 4.624853259668092}, {"id": 449, "s_m": 44.86049079385331, "d_m": 0.0, "x_m": 6.760701445786211, "y_m": -6.014022207472605, "d_right": 1.1433259742978912, "d_left": 1.456770568641418, "psi_rad": -2.890513630992695, "kappa_radpm": 0.006543693175815368, "vx_mps": 8.222463034756265, "ax_mps2": 4.592093269004763}, {"id": 450, "s_m": 44.9604028000757, "d_m": 0.0, "x_m": 6.664010305237469, "y_m": -6.0388599159865874, "d_right": 1.156952252871656, "d_left": 1.4319356500651725, "psi_rad": -2.889756089599808, "kappa_radpm": 0.008621715914703345, "vx_mps": 8.278073982543669, "ax_mps2": 4.559762045506675}, {"id": 451, "s_m": 45.06031480629809, "d_m": 0.0, "x_m": 6.567094292662775, "y_m": -6.0638442973311495, "d_right": 1.160505307240539, "d_left": 1.4069608186049942, "psi_rad": -2.8887946099089516, "kappa_radpm": 0.010603540205399867, "vx_mps": 8.332926185212068, "ax_mps2": 4.527848519378822}, {"id": 452, "s_m": 45.16022681252048, "d_m": 0.0, "x_m": 6.470574234468187, "y_m": -6.088835707039239, "d_right": 1.1726632515793658, "d_left": 1.3819886586298267, "psi_rad": -2.8876357428197004, "kappa_radpm": 0.012657130300187176, "vx_mps": 8.387039505515482, "ax_mps2": 4.496342087112797}, {"id": 453, "s_m": 45.26013881874287, "d_m": 0.0, "x_m": 6.373590142373382, "y_m": -6.114078319770661, "d_right": 1.1933062264282284, "d_left": 1.3595415297322273, "psi_rad": -2.8862610718175814, "kappa_radpm": 0.014796487391158904, "vx_mps": 8.440432973743029, "ax_mps2": 4.465232584269805}, {"id": 454, "s_m": 45.360050824965256, "d_m": 0.0, "x_m": 6.27719850193517, "y_m": -6.13931903487478, "d_right": 1.2185725713644961, "d_left": 1.3441304065660094, "psi_rad": -2.8846755888849405, "kappa_radpm": 0.017050426923676913, "vx_mps": 8.493124835756069, "ax_mps2": 4.434510260278702}, {"id": 455, "s_m": 45.459962831187646, "d_m": 0.0, "x_m": 6.180250644149343, "y_m": -6.164881606783986, "d_right": 1.244163920372956, "d_left": 1.3357950173972966, "psi_rad": -2.88286494984664, "kappa_radpm": 0.01906164753764073, "vx_mps": 8.545132597518483, "ax_mps2": 4.404165755066893}, {"id": 456, "s_m": 45.55987483741004, "d_m": 0.0, "x_m": 6.083976400452993, "y_m": -6.190462883655207, "d_right": 1.2552291804211932, "d_left": 1.3303312024776373, "psi_rad": -2.880862609695914, "kappa_radpm": 0.021163618505425884, "vx_mps": 8.596473066428022, "ax_mps2": 4.374190077365362}, {"id": 457, "s_m": 45.65978684363243, "d_m": 0.0, "x_m": 5.987143804218699, "y_m": -6.21641104293628, "d_right": 1.2615445184546923, "d_left": 1.3043914193046826, "psi_rad": -2.878663111572952, "kappa_radpm": 0.02263423013579983, "vx_mps": 8.64716238972518, "ax_mps2": 4.344574584544971}, {"id": 458, "s_m": 45.75969884985482, "d_m": 0.0, "x_m": 5.890992642884073, "y_m": -6.242409868864173, "d_right": 1.2758362936828749, "d_left": 1.2784135300433914, "psi_rad": -2.876337765710148, "kappa_radpm": 0.024072819288081866, "vx_mps": 8.697216090228359, "ax_mps2": 4.315310963849446}, {"id": 459, "s_m": 45.85961085607721, "d_m": 0.0, "x_m": 5.794290561759002, "y_m": -6.2688068817936635, "d_right": 1.2980329181390735, "d_left": 1.252044508488474, "psi_rad": -2.87387112665332, "kappa_radpm": 0.025072365237354587, "vx_mps": 8.74664909961926, "ax_mps2": 4.28639121491328}, {"id": 460, "s_m": 45.9595228622996, "d_m": 0.0, "x_m": 5.698288829146695, "y_m": -6.295271333458264, "d_right": 1.3245240324489065, "d_left": 1.2256269419955705, "psi_rad": -2.871326865499311, "kappa_radpm": 0.026037573961841847, "vx_mps": 8.795475789480774, "ax_mps2": 4.257807633454603}, {"id": 461, "s_m": 46.05943486852199, "d_m": 0.0, "x_m": 5.601704387003738, "y_m": -6.3221662822912945, "d_right": 1.3340927322004144, "d_left": 1.198784507013729, "psi_rad": -2.868691461501225, "kappa_radpm": 0.026453372600002113, "vx_mps": 8.843710000270098, "ax_mps2": 4.229552796050911}, {"id": 462, "s_m": 46.15934687474438, "d_m": 0.0, "x_m": 5.505895324364866, "y_m": -6.349118336071807, "d_right": 1.342978026458169, "d_left": 1.1741588322257617, "psi_rad": -2.8660420282371817, "kappa_radpm": 0.02679040067296175, "vx_mps": 8.89136506839255, "ax_mps2": -3.7586940250931034}, {"id": 463, "s_m": 46.25925888096677, "d_m": 0.0, "x_m": 5.409413233565057, "y_m": -6.376537677331075, "d_right": 1.3595286168403218, "d_left": 1.154679589294311, "psi_rad": -2.863368098885596, "kappa_radpm": 0.02645959211099193, "vx_mps": 8.849027938580878, "ax_mps2": -10.230428436397148}, {"id": 464, "s_m": 46.359170887189165, "d_m": 0.0, "x_m": 5.31383335724864, "y_m": -6.403973770941973, "d_right": 1.3831931624911875, "d_left": 1.1377632822766792, "psi_rad": -2.8607583150208207, "kappa_radpm": 0.02602272723299489, "vx_mps": 8.732755017667378, "ax_mps2": -10.309712108108341}, {"id": 465, "s_m": 46.459082893411555, "d_m": 0.0, "x_m": 5.217434546563402, "y_m": -6.431915238431012, "d_right": 1.4111537014846813, "d_left": 1.1290844765224168, "psi_rad": -2.858202867515873, "kappa_radpm": 0.02487797906539513, "vx_mps": 8.613993392033803, "ax_mps2": -10.440292821199886}, {"id": 466, "s_m": 46.558994899633944, "d_m": 0.0, "x_m": 5.121880560067448, "y_m": -6.459869544755227, "d_right": 1.4196609264121463, "d_left": 1.1110816081750523, "psi_rad": -2.85578787458111, "kappa_radpm": 0.023554050460102897, "vx_mps": 8.492035148029679, "ax_mps2": -10.579473788225698}, {"id": 467, "s_m": 46.658906905856334, "d_m": 0.0, "x_m": 5.025770431968238, "y_m": -6.4882313273146766, "d_right": 1.4310604346419962, "d_left": 1.0827976600937324, "psi_rad": -2.853526188682297, "kappa_radpm": 0.02155507781003092, "vx_mps": 8.366637798629377, "ax_mps2": -10.761059214546046}, {"id": 468, "s_m": 46.75881891207872, "d_m": 0.0, "x_m": 4.930202438149924, "y_m": -6.516656971706317, "d_right": 1.4494165089735322, "d_left": 1.0544819015816074, "psi_rad": -2.8514852782756517, "kappa_radpm": 0.019279893778051962, "vx_mps": 8.237129962738683, "ax_mps2": -10.953488962666853}, {"id": 469, "s_m": 46.85873091830111, "d_m": 0.0, "x_m": 4.834396555189321, "y_m": -6.545353814589483, "d_right": 1.474571796229356, "d_left": 1.0259127404190003, "psi_rad": -2.849692741682672, "kappa_radpm": 0.01652940684433802, "vx_mps": 8.103180851261909, "ax_mps2": -11.167942089999507}, {"id": 470, "s_m": 46.9586429245235, "d_m": 0.0, "x_m": 4.738803492804481, "y_m": -6.574158883275064, "d_right": 1.5033995254772057, "d_left": 0.9972676694491069, "psi_rad": -2.8481885529896473, "kappa_radpm": 0.013568554810320176, "vx_mps": 7.964290107039236, "ax_mps2": -11.384137729740965}, {"id": 471, "s_m": 47.0585549307459, "d_m": 0.0, "x_m": 4.64324675884786, "y_m": -6.603094080848443, "d_right": 1.532369515324878, "d_left": 0.9685233101781001, "psi_rad": -2.8469904117677576, "kappa_radpm": 0.010398977657703801, "vx_mps": 7.820172173916764, "ax_mps2": -11.600214265635564}, {"id": 472, "s_m": 47.15846693696829, "d_m": 0.0, "x_m": 4.547645708257015, "y_m": -6.632151260820359, "d_right": 1.5404800429569898, "d_left": 0.9396874134462174, "psi_rad": -2.846105352064236, "kappa_radpm": 0.007397301172288734, "vx_mps": 7.670533975540659, "ax_mps2": -11.79209407124135}, {"id": 473, "s_m": 47.25837894319068, "d_m": 0.0, "x_m": 4.452203583629594, "y_m": -6.661237083219171, "d_right": 1.5537201286774696, "d_left": 0.9108664064750354, "psi_rad": -2.845514885484792, "kappa_radpm": 0.004420537601194161, "vx_mps": 7.515367450596268, "ax_mps2": -11.968654125563576}, {"id": 474, "s_m": 47.35829094941307, "d_m": 0.0, "x_m": 4.356644706560359, "y_m": -6.690405193168551, "d_right": 1.5732632865248835, "d_left": 0.881625810281587, "psi_rad": -2.8452043058689735, "kappa_radpm": 0.0018207252833582854, "vx_mps": 7.354530809409121, "ax_mps2": -12.11064152160274}, {"id": 475, "s_m": 47.45820295563546, "d_m": 0.0, "x_m": 4.26115346873101, "y_m": -6.7195716348246135, "d_right": 1.5988212182864114, "d_left": 0.8522682609432914, "psi_rad": -2.845150371863399, "kappa_radpm": -0.0006141244949334619, "vx_mps": 7.188123986439089, "ax_mps2": -12.077605972449163}, {"id": 476, "s_m": 47.55811496185785, "d_m": 0.0, "x_m": 4.165695282095321, "y_m": -6.748722479441422, "d_right": 1.6267235076965407, "d_left": 0.8335220998442738, "psi_rad": -2.8452957390114646, "kappa_radpm": -0.002290260408324849, "vx_mps": 7.01824271155388, "ax_mps2": -12.023850922739632}, {"id": 477, "s_m": 47.658026968080236, "d_m": 0.0, "x_m": 4.0701771043838635, "y_m": -6.777867986814778, "d_right": 1.634820994418464, "d_left": 0.8265092311932033, "psi_rad": -2.8455942911612553, "kappa_radpm": -0.0033567750887922372, "vx_mps": 6.844930724401779, "ax_mps2": -12.01153710268763}, {"id": 478, "s_m": 47.757938974302625, "d_m": 0.0, "x_m": 3.974596184054974, "y_m": -6.806998105109995, "d_right": 1.6489149033356572, "d_left": 0.815305082580322, "psi_rad": -2.8459423286219376, "kappa_radpm": -0.003606297326970435, "vx_mps": 6.667299534472041, "ax_mps2": -12.011538503700422}, {"id": 479, "s_m": 47.85785098052502, "d_m": 0.0, "x_m": 3.8790299508157142, "y_m": -6.836086755040674, "d_right": 1.6688423125954834, "d_left": 0.7860069979201827, "psi_rad": -2.8462861523872682, "kappa_radpm": -0.0029490525216628754, "vx_mps": 6.484804489182888, "ax_mps2": -12.038560904454519}, {"id": 480, "s_m": 47.95776298674741, "d_m": 0.0, "x_m": 3.7833092237585997, "y_m": -6.86519167376125, "d_right": 1.694449218906299, "d_left": 0.7567104378238512, "psi_rad": -2.8465240605789193, "kappa_radpm": -0.0018157638151377793, "vx_mps": 6.296593977615008, "ax_mps2": -12.002939898711816}, {"id": 481, "s_m": 48.0576749929698, "d_m": 0.0, "x_m": 3.687742751115841, "y_m": -6.89422702210624, "d_right": 1.719822540912556, "d_left": 0.7274849812795631, "psi_rad": -2.8467778934663954, "kappa_radpm": -0.00378690648047267, "vx_mps": 6.103164761600613, "ax_mps2": -11.919207485774368}, {"id": 482, "s_m": 48.15758699919219, "d_m": 0.0, "x_m": 3.592044052066619, "y_m": -6.923262963799194, "d_right": 1.7288823859355709, "d_left": 0.6982768933889428, "psi_rad": -2.8472857236166655, "kappa_radpm": -0.006183003852020625, "vx_mps": 5.904818053274308, "ax_mps2": -11.919132386465405}, {"id": 483, "s_m": 48.25749900541458, "d_m": 0.0, "x_m": 3.496452706786289, "y_m": -6.952218500378065, "d_right": 1.7435731571328714, "d_left": 0.6691568841400553, "psi_rad": -2.847525965993106, "kappa_radpm": 0.0013623913114180332, "vx_mps": 5.699574316030115, "ax_mps2": -12.077389797051588}, {"id": 484, "s_m": 48.35741101163697, "d_m": 0.0, "x_m": 3.400818352205134, "y_m": -6.981200730728677, "d_right": 1.7638302626851037, "d_left": 0.6400267603834799, "psi_rad": -2.8470903098684985, "kappa_radpm": 0.0012923317658726499, "vx_mps": 5.483775605806977, "ax_mps2": -11.30513155564138}, {"id": 485, "s_m": 48.45732301785936, "d_m": 0.0, "x_m": 3.305229500673892, "y_m": -7.0101492640222185, "d_right": 1.7894131819348398, "d_left": 0.6109455307843662, "psi_rad": -2.8484685585611995, "kappa_radpm": -0.028849634922910275, "vx_mps": 5.273780251980483, "ax_mps2": -11.301567302756498}, {"id": 486, "s_m": 48.557235024081756, "d_m": 0.0, "x_m": 3.209503309396968, "y_m": -7.038852723971334, "d_right": 1.818154178466614, "d_left": 0.5931816081319858, "psi_rad": -2.8517881871314366, "kappa_radpm": -0.0032589608367065144, "vx_mps": 5.055139327538623, "ax_mps2": -9.442355393926036}, {"id": 487, "s_m": 48.657147030304145, "d_m": 0.0, "x_m": 3.113792174205334, "y_m": -7.067576894188659, "d_right": 1.8412176437489753, "d_left": 0.5919627735711622, "psi_rad": -2.8463580718487638, "kappa_radpm": 0.1119309506726201, "vx_mps": 4.864938260562383, "ax_mps2": -8.531999927399083}, {"id": 488, "s_m": 48.757059036526535, "d_m": 0.0, "x_m": 3.0184032594138626, "y_m": -7.097336485585766, "d_right": 1.8521087641679692, "d_left": 0.5740843931825723, "psi_rad": -2.831226052418499, "kappa_radpm": 0.1617697333642978, "vx_mps": 4.686440634363386, "ax_mps2": -8.521169526410517}, {"id": 489, "s_m": 48.856971042748924, "d_m": 0.0, "x_m": 2.9235228427222633, "y_m": -7.128610251144712, "d_right": 1.8698501670367904, "d_left": 0.5556795327313532, "psi_rad": -2.815215452975308, "kappa_radpm": 0.15863320477510945, "vx_mps": 4.501110033527593, "ax_mps2": -8.334855532598045}, {"id": 490, "s_m": 48.956883048971314, "d_m": 0.0, "x_m": 2.8292191425004516, "y_m": -7.161402131014063, "d_right": 1.894256133049864, "d_left": 0.5533071812674619, "psi_rad": -2.7978736637134043, "kappa_radpm": 0.2009750306824716, "vx_mps": 4.31213256501368, "ax_mps2": -7.64547574983416}, {"id": 491, "s_m": 49.0567950551937, "d_m": 0.0, "x_m": 2.735476468620031, "y_m": -7.196125143648961, "d_right": 1.9254788177024327, "d_left": 0.540666583347537, "psi_rad": -2.774867352199723, "kappa_radpm": 0.25901267743644996, "vx_mps": 4.131190823100567, "ax_mps2": -5.865047473407647}, {"id": 492, "s_m": 49.15670706141609, "d_m": 0.0, "x_m": 2.642740954949076, "y_m": -7.233338382200693, "d_right": 1.9560553898457953, "d_left": 0.5361621385919032, "psi_rad": -2.7428219098578808, "kappa_radpm": 0.3898390977433598, "vx_mps": 3.9868233341289296, "ax_mps2": -4.207008688586694}, {"id": 493, "s_m": 49.25661906763848, "d_m": 0.0, "x_m": 2.551549164443211, "y_m": -7.2741279829489, "d_right": 1.979224551207978, "d_left": 0.5198036643257572, "psi_rad": -2.6968183097892773, "kappa_radpm": 0.5215315757213709, "vx_mps": 3.8799612035446276, "ax_mps2": -4.132295373681732}, {"id": 494, "s_m": 49.35653107386088, "d_m": 0.0, "x_m": 2.462596534054816, "y_m": -7.319377467097716, "d_right": 2.0117900017612467, "d_left": 0.5091096497446331, "psi_rad": -2.6454707680026504, "kappa_radpm": 0.5060620700085035, "vx_mps": 3.7720507815822595, "ax_mps2": -4.833754250191003}, {"id": 495, "s_m": 49.45644308008327, "d_m": 0.0, "x_m": 2.3759304809439605, "y_m": -7.369125989548024, "d_right": 2.053350925812801, "d_left": 0.5075943418129573, "psi_rad": -2.595439791648535, "kappa_radpm": 0.5285676236321295, "vx_mps": 3.641767006466801, "ax_mps2": -3.268118658532642}, {"id": 496, "s_m": 49.55635508630566, "d_m": 0.0, "x_m": 2.29216150814618, "y_m": -7.4234502433619625, "d_right": 2.1035046465625773, "d_left": 0.5072998066141159, "psi_rad": -2.5343109581094545, "kappa_radpm": 0.6963546616015465, "vx_mps": 3.5509742812214964, "ax_mps2": -1.714572981584775}, {"id": 497, "s_m": 49.65626709252805, "d_m": 0.0, "x_m": 2.212288818576114, "y_m": -7.483523618488666, "d_right": 2.162033714577891, "d_left": 0.49724906963117416, "psi_rad": -2.456686525089383, "kappa_radpm": 0.8423422417511804, "vx_mps": 3.502399961895678, "ax_mps2": -0.3960766118499773}, {"id": 498, "s_m": 49.75617909875044, "d_m": 0.0, "x_m": 2.1377964881137594, "y_m": -7.550034352021038, "d_right": 2.2129176930884267, "d_left": 0.4840825662060466, "psi_rad": -2.3668988084964027, "kappa_radpm": 0.9559701340055438, "vx_mps": 3.4910829086791177, "ax_mps2": -0.21739411909865305}, {"id": 499, "s_m": 49.856091104972826, "d_m": 0.0, "x_m": 2.0700844347848775, "y_m": -7.6231579266343985, "d_right": 2.2745464697417592, "d_left": 0.4818669798635098, "psi_rad": -2.268417523298301, "kappa_radpm": 0.9740892436877391, "vx_mps": 3.4848557086501097, "ax_mps2": -0.04777010058086328}, {"id": 500, "s_m": 49.956003111195216, "d_m": 0.0, "x_m": 2.0096062546063234, "y_m": -7.702690617419404, "d_right": 2.3459517211100787, "d_left": 0.48215822116429846, "psi_rad": -2.1746658307703264, "kappa_radpm": 0.9010786162086587, "vx_mps": 3.4834858542756133, "ax_mps2": -1.1102320249998958}, {"id": 501, "s_m": 50.05591511741761, "d_m": 0.0, "x_m": 1.9566392455607238, "y_m": -7.787265215865601, "d_right": 2.4250206001684025, "d_left": 0.4791650133373855, "psi_rad": -2.0855545048500677, "kappa_radpm": 0.9168713514439789, "vx_mps": 3.451495716201617, "ax_mps2": -0.21356719407685493}, {"id": 502, "s_m": 50.15582712364, "d_m": 0.0, "x_m": 1.9115338971552225, "y_m": -7.876591242503981, "d_right": 2.510795569833453, "d_left": 0.4714408728629969, "psi_rad": -1.9899049040502206, "kappa_radpm": 0.9968133489585834, "vx_mps": 3.445307943466172, "ax_mps2": -0.17199348773303272}, {"id": 503, "s_m": 50.25573912986239, "d_m": 0.0, "x_m": 1.8755492908986902, "y_m": -7.969703784847509, "d_right": 2.6017891895034473, "d_left": 0.4563314679314725, "psi_rad": -1.8896624883180655, "kappa_radpm": 0.9855061455474435, "vx_mps": 3.4403166128247435, "ax_mps2": -0.2745203737785727}, {"id": 504, "s_m": 50.35565113608478, "d_m": 0.0, "x_m": 1.84885537529653, "y_m": -8.066088082908895, "d_right": 2.6969920730777894, "d_left": 0.4530155043256588, "psi_rad": -1.792836795729559, "kappa_radpm": 0.9528561198909767, "vx_mps": 3.4323348662232305, "ax_mps2": -0.8136827445828756}, {"id": 505, "s_m": 50.45556314230717, "d_m": 0.0, "x_m": 1.8315161925629555, "y_m": -8.164455545286623, "d_right": 2.7947602387583133, "d_left": 0.462086617324658, "psi_rad": -1.697472786456153, "kappa_radpm": 0.9638063016841533, "vx_mps": 3.4085670424699015, "ax_mps2": -0.6008963346454921}, {"id": 506, "s_m": 50.55547514852956, "d_m": 0.0, "x_m": 1.823726843292623, "y_m": -8.264073699955642, "d_right": 2.8579514934723242, "d_left": 0.46986523180554146, "psi_rad": -1.5996618709445185, "kappa_radpm": 0.995242603126304, "vx_mps": 3.3909078085904647, "ax_mps2": -0.43137473824321}, {"id": 507, "s_m": 50.65538715475195, "d_m": 0.0, "x_m": 1.8258539958215014, "y_m": -8.363980018376692, "d_right": 2.762291188725128, "d_left": 0.46773726093317225, "psi_rad": -1.4990220991623042, "kappa_radpm": 1.0175854041946768, "vx_mps": 3.3781735798056194, "ax_mps2": -0.0440830503731662}, {"id": 508, "s_m": 50.75529916097434, "d_m": 0.0, "x_m": 1.8381133953145434, "y_m": -8.463060296833588, "d_right": 2.6706331719137713, "d_left": 0.46848064680827034, "psi_rad": -1.3957787738742735, "kappa_radpm": 1.052331767476887, "vx_mps": 3.376869538979903, "ax_mps2": -0.044083050373145284}, {"id": 509, "s_m": 50.855211167196735, "d_m": 0.0, "x_m": 1.8606311788296026, "y_m": -8.560549970412257, "d_right": 2.5842191627444477, "d_left": 0.47031816542671845, "psi_rad": -1.292906017298039, "kappa_radpm": 0.9958637761465546, "vx_mps": 3.3755649943800483, "ax_mps2": 0.6086419224102463}, {"id": 510, "s_m": 50.955123173419125, "d_m": 0.0, "x_m": 1.8926226861195035, "y_m": -8.654970626318153, "d_right": 2.504338635653779, "d_left": 0.4733927751521782, "psi_rad": -1.1961033759943729, "kappa_radpm": 0.9492777361140603, "vx_mps": 3.3935321277928243, "ax_mps2": 1.0235411828909393}, {"id": 511, "s_m": 51.055035179641514, "d_m": 0.0, "x_m": 1.9336056204500496, "y_m": -8.746398727231288, "d_right": 2.4273765948672117, "d_left": 0.4711279143446106, "psi_rad": -1.1035874877634182, "kappa_radpm": 0.8961970893365225, "vx_mps": 3.423534490614902, "ax_mps2": 1.4507329472508812}, {"id": 512, "s_m": 51.154947185863904, "d_m": 0.0, "x_m": 1.982296382811302, "y_m": -8.83324646827202, "d_right": 2.3536567422917103, "d_left": 0.47851454357045226, "psi_rad": -1.0168863012894866, "kappa_radpm": 0.844823511122016, "vx_mps": 3.465613897556297, "ax_mps2": 1.8068338735905651}, {"id": 513, "s_m": 51.25485919208629, "d_m": 0.0, "x_m": 2.038339294895578, "y_m": -8.916058950597678, "d_right": 2.2875556925172997, "d_left": 0.4975270025910968, "psi_rad": -0.9360817855069268, "kappa_radpm": 0.7687823046764936, "vx_mps": 3.517318365086868, "ax_mps2": 2.441161560389303}, {"id": 514, "s_m": 51.35477119830868, "d_m": 0.0, "x_m": 2.1004228721755807, "y_m": -8.994152148532528, "d_right": 2.230303210573221, "d_left": 0.5088766107021591, "psi_rad": -0.863616366893468, "kappa_radpm": 0.6761086552121119, "vx_mps": 3.5859909619797294, "ax_mps2": 3.2559828643429336}, {"id": 515, "s_m": 51.45468320453107, "d_m": 0.0, "x_m": 2.1676990710549062, "y_m": -9.068027260484183, "d_right": 2.176068810410511, "d_left": 0.5138127306360715, "psi_rad": -0.8028775100029137, "kappa_radpm": 0.5402221350808954, "vx_mps": 3.6755890330401133, "ax_mps2": 4.649396178651839}, {"id": 516, "s_m": 51.55459521075347, "d_m": 0.0, "x_m": 2.2388779489051487, "y_m": -9.138168302888218, "d_right": 2.1283816327185234, "d_left": 0.5324588037435659, "psi_rad": -0.7551517575949847, "kappa_radpm": 0.43308521155011126, "vx_mps": 3.799870489854681, "ax_mps2": 5.690856992303911}, {"id": 517, "s_m": 51.65450721697586, "d_m": 0.0, "x_m": 2.3130752589012435, "y_m": -9.205127797850755, "d_right": 2.0832023813433973, "d_left": 0.5491323854603642, "psi_rad": -0.7138463685485164, "kappa_radpm": 0.39335584392830897, "vx_mps": 3.946667659953147, "ax_mps2": 5.81280143081096}, {"id": 518, "s_m": 51.75441922319825, "d_m": 0.0, "x_m": 2.3898383939240277, "y_m": -9.26912666990613, "d_right": 2.042669052915837, "d_left": 0.5626710618334227, "psi_rad": -0.6774149002251715, "kappa_radpm": 0.30651184975830986, "vx_mps": 4.091176227391023, "ax_mps2": 6.804984346682193}, {"id": 519, "s_m": 51.85433122942064, "d_m": 0.0, "x_m": 2.46852130789288, "y_m": -9.330802765474512, "d_right": 2.0039651164665404, "d_left": 0.5832897530957007, "psi_rad": -0.6549550730509641, "kappa_radpm": 0.14252295966188988, "vx_mps": 4.2541182635591355, "ax_mps2": 6.837487542684837}, {"id": 520, "s_m": 51.95424323564303, "d_m": 0.0, "x_m": 2.5481367390194665, "y_m": -9.391351981207269, "d_right": 1.9674690493693061, "d_left": 0.608376969382987, "psi_rad": -0.6466614348347353, "kappa_radpm": 0.06916407018420508, "vx_mps": 4.411781544474734, "ax_mps2": 6.750600104486186}, {"id": 521, "s_m": 52.054155241865416, "d_m": 0.0, "x_m": 2.628043769309187, "y_m": -9.451209097875193, "d_right": 1.9308546838579506, "d_left": 0.6327762089116714, "psi_rad": -0.6388705381003223, "kappa_radpm": 0.08706612469450287, "vx_mps": 4.562099121616764, "ax_mps2": 6.667581878068367}, {"id": 522, "s_m": 52.154067248087806, "d_m": 0.0, "x_m": 2.7086863947733977, "y_m": -9.510577770183295, "d_right": 1.8958024276524978, "d_left": 0.6529416330999933, "psi_rad": -0.6310686360858568, "kappa_radpm": 0.049562789239296676, "vx_mps": 4.705857133364352, "ax_mps2": 6.588022973985426}, {"id": 523, "s_m": 52.253979254310195, "d_m": 0.0, "x_m": 2.789200615654624, "y_m": -9.569248956868538, "d_right": 1.8604447570383928, "d_left": 0.6784921523237669, "psi_rad": -0.6295514864207816, "kappa_radpm": -0.019992573097159155, "vx_mps": 4.84371103023047, "ax_mps2": 6.511581462685028}, {"id": 524, "s_m": 52.35389126053259, "d_m": 0.0, "x_m": 2.8701147773278852, "y_m": -9.628349058697156, "d_right": 1.8221775900584067, "d_left": 0.7060326938787777, "psi_rad": -0.6319058567233293, "kappa_radpm": -0.014707560857875956, "vx_mps": 4.976214111110089, "ax_mps2": 6.437968551818441}, {"id": 525, "s_m": 52.45380326675498, "d_m": 0.0, "x_m": 2.950362496207647, "y_m": -9.687141426930829, "d_right": 1.787648640690864, "d_left": 0.7448748153528002, "psi_rad": -0.6323426999024035, "kappa_radpm": 0.004517272425155024, "vx_mps": 5.103838515042265, "ax_mps2": 6.3669376799821125}, {"id": 526, "s_m": 52.55371527297737, "d_m": 0.0, "x_m": 3.031015129892654, "y_m": -9.746212780180937, "d_right": 1.755536727785103, "d_left": 0.7874376842770072, "psi_rad": -0.6319988990043681, "kappa_radpm": 0.0023391974143900946, "vx_mps": 5.226990972043927, "ax_mps2": 6.2982763315571875}, {"id": 527, "s_m": 52.65362727919976, "d_m": 0.0, "x_m": 3.1114818254230925, "y_m": -9.80511847811265, "d_right": 1.719820928688374, "d_left": 0.8190050722465947, "psi_rad": -0.6318287660546567, "kappa_radpm": 0.003095671279786012, "vx_mps": 5.346024828775719, "ax_mps2": 6.231799785996788}, {"id": 528, "s_m": 52.75353928542215, "d_m": 0.0, "x_m": 3.192075173662197, "y_m": -9.864072939023755, "d_right": 1.6853395223406027, "d_left": 0.8574445341342659, "psi_rad": -0.6311753101892084, "kappa_radpm": 0.009942413109411638, "vx_mps": 5.4612493724308955, "ax_mps2": 6.167346270365596}, {"id": 529, "s_m": 52.85345129164454, "d_m": 0.0, "x_m": 3.272619978947523, "y_m": -9.922870299002243, "d_right": 1.6420786582018558, "d_left": 0.9020062022513304, "psi_rad": -0.6298816236450264, "kappa_radpm": 0.015584191191806646, "vx_mps": 5.572937159681387, "ax_mps2": 6.104773148194052}, {"id": 530, "s_m": 52.95336329786693, "d_m": 0.0, "x_m": 3.353548597331956, "y_m": -9.981755540218524, "d_right": 1.602417668095513, "d_left": 0.9399450710307795, "psi_rad": -0.628087828618114, "kappa_radpm": 0.020179060983922963, "vx_mps": 5.6813298488377635, "ax_mps2": 6.0439538860049815}, {"id": 531, "s_m": 53.053275304089325, "d_m": 0.0, "x_m": 3.4341575051839555, "y_m": -10.040160278776138, "d_right": 1.5582870609400785, "d_left": 0.9861698191737291, "psi_rad": -0.625855903827099, "kappa_radpm": 0.02466952298676845, "vx_mps": 5.786642892716618, "ax_mps2": 5.984775611873712}, {"id": 532, "s_m": 53.153187310311715, "d_m": 0.0, "x_m": 3.5156296906090247, "y_m": -10.098884939008757, "d_right": 1.5186168512016247, "d_left": 1.0340499873542264, "psi_rad": -0.6231664057164599, "kappa_radpm": 0.028803948683804575, "vx_mps": 5.88906935297709, "ax_mps2": 5.927137130597048}, {"id": 533, "s_m": 53.253099316534104, "d_m": 0.0, "x_m": 3.5963553694004307, "y_m": -10.156722668895362, "d_right": 1.4853069760468827, "d_left": 1.0811194589221307, "psi_rad": -0.6201881461595531, "kappa_radpm": 0.031097783005094182, "vx_mps": 5.988783028956746, "ax_mps2": 5.870947295206358}, {"id": 534, "s_m": 53.353011322756494, "d_m": 0.0, "x_m": 3.678151287007418, "y_m": -10.214943861444045, "d_right": 1.4580490042197067, "d_left": 1.1175536844692306, "psi_rad": -0.6169638580620167, "kappa_radpm": 0.03292906988458017, "vx_mps": 6.085941045828516, "ax_mps2": 5.816123659590972}, {"id": 535, "s_m": 53.45292332897888, "d_m": 0.0, "x_m": 3.759334501912016, "y_m": -10.272329908252233, "d_right": 1.427453951306826, "d_left": 1.1607965284175419, "psi_rad": -0.6136764883515453, "kappa_radpm": 0.033197073042613774, "vx_mps": 6.180686012072995, "ax_mps2": 5.762591355081949}, {"id": 536, "s_m": 53.55283533520127, "d_m": 0.0, "x_m": 3.8414482416403612, "y_m": -10.329966450150804, "d_right": 1.3888007810532799, "d_left": 1.210877378403523, "psi_rad": -0.6103369036033635, "kappa_radpm": 0.03313420778099057, "vx_mps": 6.2731478307534605, "ax_mps2": 5.710282147093505}, {"id": 537, "s_m": 53.65274734142366, "d_m": 0.0, "x_m": 3.9231064289733086, "y_m": -10.386882109921212, "d_right": 1.3559321671962161, "d_left": 1.2662095871829229, "psi_rad": -0.6071013638855649, "kappa_radpm": 0.031900707974942606, "vx_mps": 6.363445230165092, "ax_mps2": 5.659133637743484}, {"id": 538, "s_m": 53.75265934764605, "d_m": 0.0, "x_m": 4.005558042923647, "y_m": -10.443961133741837, "d_right": 1.3177503631373961, "d_left": 1.3034341612406808, "psi_rad": -0.6039621378787663, "kappa_radpm": 0.03052445373229955, "vx_mps": 6.4516870652385165, "ax_mps2": 5.609088587745883}, {"id": 539, "s_m": 53.85257135386845, "d_m": 0.0, "x_m": 4.087616206533529, "y_m": -10.500399140062017, "d_right": 1.2867539066576208, "d_left": 1.3441500720574044, "psi_rad": -0.6010282798101128, "kappa_radpm": 0.028427063284250195, "vx_mps": 6.537973430316741, "ax_mps2": 5.56009433645879}, {"id": 540, "s_m": 53.95248336009084, "d_m": 0.0, "x_m": 4.170398341459724, "y_m": -10.556989206208172, "d_right": 1.263011788621159, "d_left": 1.3909101908372004, "psi_rad": -0.5982766418880088, "kappa_radpm": 0.026382868735341507, "vx_mps": 6.622396615683052, "ax_mps2": 5.512102303254971}, {"id": 541, "s_m": 54.05239536631323, "d_m": 0.0, "x_m": 4.25277492768806, "y_m": -10.612984263848439, "d_right": 1.2267058992441413, "d_left": 1.4265546165246454, "psi_rad": -0.5957662374104364, "kappa_radpm": 0.024057503730857167, "vx_mps": 6.7050419338474585, "ax_mps2": 5.465067556688843}, {"id": 542, "s_m": 54.15230737253562, "d_m": 0.0, "x_m": 4.335854318274217, "y_m": -10.669165328247315, "d_right": 1.1894508468140976, "d_left": 1.466231035706652, "psi_rad": -0.5934629022731364, "kappa_radpm": 0.021897787283850032, "vx_mps": 6.785988436632663, "ax_mps2": 5.418948440517907}, {"id": 543, "s_m": 54.25221937875801, "d_m": 0.0, "x_m": 4.418479259702463, "y_m": -10.724775791576201, "d_right": 1.1600866139502406, "d_left": 1.511006685279144, "psi_rad": -0.5913841655678338, "kappa_radpm": 0.01987068801551545, "vx_mps": 6.865309540197578, "ax_mps2": 5.373706247664666}, {"id": 544, "s_m": 54.352131384980396, "d_m": 0.0, "x_m": 4.501809301318559, "y_m": -10.780620575596634, "d_right": 1.126619008710928, "d_left": 1.5610671067959256, "psi_rad": -0.5894872789937455, "kappa_radpm": 0.017971385594437915, "vx_mps": 6.943073572045439, "ax_mps2": 5.329304934810084}, {"id": 545, "s_m": 54.452043391202785, "d_m": 0.0, "x_m": 4.584635473570174, "y_m": -10.835912159935397, "d_right": 1.09805227583081, "d_left": 1.6056568094509038, "psi_rad": -0.5877858675365495, "kappa_radpm": 0.0162173625250617, "vx_mps": 7.019344251598672, "ax_mps2": 5.2857108715930545}, {"id": 546, "s_m": 54.55195539742518, "d_m": 0.0, "x_m": 4.668075839154863, "y_m": -10.8914184763794, "d_right": 1.0645082671242525, "d_left": 1.6438051445053299, "psi_rad": -0.5862445563859708, "kappa_radpm": 0.01455889904364896, "vx_mps": 7.094181113943745, "ax_mps2": 5.242892619419136}, {"id": 547, "s_m": 54.65186740364757, "d_m": 0.0, "x_m": 4.75122919556352, "y_m": -10.94656543313765, "d_right": 1.0366809415338745, "d_left": 1.6867272909812876, "psi_rad": -0.5850384308891234, "kappa_radpm": 0.00933525964239979, "vx_mps": 7.167639884750458, "ax_mps2": 5.20082073571082}, {"id": 548, "s_m": 54.75177940986996, "d_m": 0.0, "x_m": 4.834651883196513, "y_m": -11.001778918977054, "d_right": 1.0029079328298074, "d_left": 1.7251136769157207, "psi_rad": -0.584375684891894, "kappa_radpm": 0.003937101226826124, "vx_mps": 7.239772813070953, "ax_mps2": 5.159467600111056}, {"id": 549, "s_m": 54.85169141609235, "d_m": 0.0, "x_m": 4.918082146106667, "y_m": -11.056949134394253, "d_right": 0.9757280899300551, "d_left": 1.7626151951545848, "psi_rad": -0.5842162887758366, "kappa_radpm": -0.0005441448254806679, "vx_mps": 7.310628967661697, "ax_mps2": 5.118807259701521}, {"id": 550, "s_m": 54.95160342231474, "d_m": 0.0, "x_m": 5.001422416364411, "y_m": -11.112066325462775, "d_right": 0.9414397074061251, "d_left": 1.8048451362631566, "psi_rad": -0.584481423324247, "kappa_radpm": -0.004772584647636462, "vx_mps": 7.380254501599477, "ax_mps2": -6.206111542521516}, {"id": 551, "s_m": 55.05151542853713, "d_m": 0.0, "x_m": 5.084875535225587, "y_m": -11.167315056570176, "d_right": 0.9148636892136605, "d_left": 1.851632075782593, "psi_rad": -0.5851545227113717, "kappa_radpm": -0.008430601013367473, "vx_mps": 7.295753997927346, "ax_mps2": -11.596787087011878}, {"id": 552, "s_m": 55.15142743475952, "d_m": 0.0, "x_m": 5.168149205156829, "y_m": -11.222546005563785, "d_right": 0.8797889379407745, "d_left": 1.9017828906218615, "psi_rad": -0.5861630978646519, "kappa_radpm": -0.011785834643273867, "vx_mps": 7.135174130396422, "ax_mps2": -11.477597262216227}, {"id": 553, "s_m": 55.25133944098191, "d_m": 0.0, "x_m": 5.251423843430269, "y_m": -11.277918889997796, "d_right": 0.8532728309864205, "d_left": 1.93898929894885, "psi_rad": -0.5875012062524347, "kappa_radpm": -0.014611055265539536, "vx_mps": 6.972604271928608, "ax_mps2": -11.402031571004029}, {"id": 554, "s_m": 55.351251447204305, "d_m": 0.0, "x_m": 5.334636943313715, "y_m": -11.33342608122609, "d_right": 0.8177058949164837, "d_left": 1.9806924282544138, "psi_rad": -0.5890688753678521, "kappa_radpm": -0.016770100811410622, "vx_mps": 6.80726161054332, "ax_mps2": -11.352234695448745}, {"id": 555, "s_m": 55.451163453426695, "d_m": 0.0, "x_m": 5.417598873444587, "y_m": -11.388966934659843, "d_right": 0.791653884484487, "d_left": 2.0219187693506226, "psi_rad": -0.5908502196849681, "kappa_radpm": -0.018564266950159607, "vx_mps": 6.6385511632672864, "ax_mps2": -11.3497207631617}, {"id": 556, "s_m": 55.551075459649084, "d_m": 0.0, "x_m": 5.500737000862504, "y_m": -11.444848771235847, "d_right": 0.7550153543728007, "d_left": 2.0594079019873393, "psi_rad": -0.5927514210866831, "kappa_radpm": -0.019421853723031606, "vx_mps": 6.46547869877356, "ax_mps2": -11.349641759815416}, {"id": 557, "s_m": 55.650987465871474, "d_m": 0.0, "x_m": 5.583347265398225, "y_m": -11.50060889042193, "d_right": 0.7302783965290891, "d_left": 2.1009624152361503, "psi_rad": -0.5947260425283822, "kappa_radpm": -0.01967336699458572, "vx_mps": 6.287645334148349, "ax_mps2": -11.374740538105113}, {"id": 558, "s_m": 55.75089947209386, "d_m": 0.0, "x_m": 5.666361325711143, "y_m": -11.556877454510365, "d_right": 0.7137503386153409, "d_left": 2.1468095362247857, "psi_rad": -0.5966137011410462, "kappa_radpm": -0.01795486019102885, "vx_mps": 6.104222927875019, "ax_mps2": -11.474742382880336}, {"id": 559, "s_m": 55.85081147831625, "d_m": 0.0, "x_m": 5.748693011274715, "y_m": -11.612899277864976, "d_right": 0.6867223198426139, "d_left": 2.196076526836038, "psi_rad": -0.598310975192148, "kappa_radpm": -0.016054753960525737, "vx_mps": 5.913426120995996, "ax_mps2": -11.573516753067109}, {"id": 560, "s_m": 55.95072348453864, "d_m": 0.0, "x_m": 5.831508174015383, "y_m": -11.669444190792245, "d_right": 0.6632135967828384, "d_left": 2.2399849202298543, "psi_rad": -0.5998068662209124, "kappa_radpm": -0.013736854729661659, "vx_mps": 5.714537770702282, "ax_mps2": -11.677233311093971}, {"id": 561, "s_m": 56.05063549076104, "d_m": 0.0, "x_m": 5.913715260183556, "y_m": -11.725738467140893, "d_right": 0.6493069303811412, "d_left": 2.2813547292566687, "psi_rad": -0.6009861489331962, "kappa_radpm": -0.007501912948649381, "vx_mps": 5.506591533635504, "ax_mps2": -11.889724514416448}, {"id": 562, "s_m": 56.15054749698343, "d_m": 0.0, "x_m": 5.9962466931051415, "y_m": -11.782338264315003, "d_right": 0.617112593084764, "d_left": 2.325767449377406, "psi_rad": -0.6010349327842737, "kappa_radpm": 0.006813787749101247, "vx_mps": 5.286463643965829, "ax_mps2": -11.917570068908217}, {"id": 563, "s_m": 56.25045950320582, "d_m": 0.0, "x_m": 6.078582884936985, "y_m": -11.838728991379556, "d_right": 0.5958428556193794, "d_left": 2.363225236380785, "psi_rad": -0.6000207303872882, "kappa_radpm": 0.0041467587370279686, "vx_mps": 5.056212138470006, "ax_mps2": -11.63569406935885}, {"id": 564, "s_m": 56.35037150942821, "d_m": 0.0, "x_m": 6.160891577931042, "y_m": -11.895063294232362, "d_right": 0.5881677364695843, "d_left": 2.4041930022440416, "psi_rad": -0.600768627651397, "kappa_radpm": -0.01954151919754028, "vx_mps": 4.820808035245982, "ax_mps2": -11.102102377357713}, {"id": 565, "s_m": 56.4502835156506, "d_m": 0.0, "x_m": 6.243236394103724, "y_m": -11.951662032291782, "d_right": 0.5670647638480154, "d_left": 2.4487987237748268, "psi_rad": -0.6040393088729039, "kappa_radpm": -0.046578678167583834, "vx_mps": 4.584945307097554, "ax_mps2": -10.656539706860713}, {"id": 566, "s_m": 56.550195521872986, "d_m": 0.0, "x_m": 6.325017763752755, "y_m": -12.008435338924107, "d_right": 0.5479162371224073, "d_left": 2.4968307712709263, "psi_rad": -0.6100890390366747, "kappa_radpm": -0.07497739349423573, "vx_mps": 4.34652630799284, "ax_mps2": -8.546313468300688}, {"id": 567, "s_m": 56.650107528095376, "d_m": 0.0, "x_m": 6.406613043764857, "y_m": -12.066167708590513, "d_right": 0.5456598545975564, "d_left": 2.547271763143313, "psi_rad": -0.6237184838352947, "kappa_radpm": -0.20484229657494962, "vx_mps": 4.145423054071462, "ax_mps2": -6.507553067976445}, {"id": 568, "s_m": 56.750019534317765, "d_m": 0.0, "x_m": 6.486841171793972, "y_m": -12.125430066972566, "d_right": 0.5411996296342627, "d_left": 2.590795641833455, "psi_rad": -0.6510415803355061, "kappa_radpm": -0.34964707247646987, "vx_mps": 3.985494565544756, "ax_mps2": -4.197239999402174}, {"id": 569, "s_m": 56.84993154054016, "d_m": 0.0, "x_m": 6.5649480101191315, "y_m": -12.18749081142736, "d_right": 0.5353984468307055, "d_left": 2.6404316260189256, "psi_rad": -0.6946687908208924, "kappa_radpm": -0.5224781749428724, "vx_mps": 3.878847456927439, "ax_mps2": -2.6835777367733966}, {"id": 570, "s_m": 56.94984354676255, "d_m": 0.0, "x_m": 6.639702456753621, "y_m": -12.253486738464874, "d_right": 0.5205918818514643, "d_left": 2.6911083477697617, "psi_rad": -0.753898574296822, "kappa_radpm": -0.6459696749973748, "vx_mps": 3.8090962606690475, "ax_mps2": -1.8291174928232061}, {"id": 571, "s_m": 57.04975555298494, "d_m": 0.0, "x_m": 6.710246593411833, "y_m": -12.324331080914858, "d_right": 0.505132716474684, "d_left": 2.7470717079014055, "psi_rad": -0.8224291968803095, "kappa_radpm": -0.7229756383208122, "vx_mps": 3.760812774706294, "ax_mps2": -1.7997473263941584}, {"id": 572, "s_m": 57.14966755920733, "d_m": 0.0, "x_m": 6.7753258849463665, "y_m": -12.399786802949507, "d_right": 0.4978427949272927, "d_left": 2.8108582674647073, "psi_rad": -0.8957372773460213, "kappa_radpm": -0.7290401537234772, "vx_mps": 3.712691745115289, "ax_mps2": -1.922538107371399}, {"id": 573, "s_m": 57.24957956542972, "d_m": 0.0, "x_m": 6.835128771939767, "y_m": -12.48031417606011, "d_right": 0.48326018008440313, "d_left": 2.777522881358629, "psi_rad": -0.9680538135812786, "kappa_radpm": -0.7138956261833782, "vx_mps": 3.6605888481983695, "ax_mps2": -2.4744517192339064}, {"id": 574, "s_m": 57.34949157165211, "d_m": 0.0, "x_m": 6.888614005534698, "y_m": -12.564317759217852, "d_right": 0.46570169891820123, "d_left": 2.737400239075695, "psi_rad": -1.0400077190990253, "kappa_radpm": -0.7358447175874999, "vx_mps": 3.5924164352725123, "ax_mps2": -2.530297671897026}, {"id": 575, "s_m": 57.4494035778745, "d_m": 0.0, "x_m": 6.936118768939873, "y_m": -12.65267003246187, "d_right": 0.4618539744832364, "d_left": 2.705467796720133, "psi_rad": -1.1154908174279283, "kappa_radpm": -0.7675612594003286, "vx_mps": 3.521340882524428, "ax_mps2": -2.3434986160010225}, {"id": 576, "s_m": 57.54931558409689, "d_m": 0.0, "x_m": 6.976518321502578, "y_m": -12.74360594562742, "d_right": 0.4642183845043913, "d_left": 2.66702557280203, "psi_rad": -1.189009031881139, "kappa_radpm": -0.7105993891254214, "vx_mps": 3.4542082036741513, "ax_mps2": -3.463356383675933}, {"id": 577, "s_m": 57.649227590319285, "d_m": 0.0, "x_m": 7.010612483607302, "y_m": -12.83787242765263, "d_right": 0.444888766595568, "d_left": 2.6328929556330354, "psi_rad": -1.2578783378031595, "kappa_radpm": -0.6977318779946754, "vx_mps": 3.352535241457932, "ax_mps2": -1.761760812534708}, {"id": 578, "s_m": 57.749139596541674, "d_m": 0.0, "x_m": 7.037623288826625, "y_m": -12.933950887709983, "d_right": 0.4236058206367832, "d_left": 2.596393597845387, "psi_rad": -1.339699290855616, "kappa_radpm": -0.9442365149254652, "vx_mps": 3.2996136790067916, "ax_mps2": -0.04205657550639239}, {"id": 579, "s_m": 57.849051602764064, "d_m": 0.0, "x_m": 7.055482611607201, "y_m": -13.032263440109968, "d_right": 0.4159267482673473, "d_left": 2.5647024714444164, "psi_rad": -1.4458632667042104, "kappa_radpm": -1.1030378426293883, "vx_mps": 3.298339963833528, "ax_mps2": -0.04205657550640129}, {"id": 580, "s_m": 57.94896360898645, "d_m": 0.0, "x_m": 7.062759156509847, "y_m": -13.131768143832558, "d_right": 0.4214622538424205, "d_left": 2.540716186385055, "psi_rad": -1.5466687369907635, "kappa_radpm": -0.919079554204053, "vx_mps": 3.297065756601464, "ax_mps2": 1.9669905548170465}, {"id": 581, "s_m": 58.04887561520884, "d_m": 0.0, "x_m": 7.060849726961146, "y_m": -13.231776088416302, "d_right": 0.419563960563647, "d_left": 2.5228785300432652, "psi_rad": -1.6311071569696942, "kappa_radpm": -0.8179423212629905, "vx_mps": 3.356142808114474, "ax_mps2": 2.7434039745308634}, {"id": 582, "s_m": 58.14878762143123, "d_m": 0.0, "x_m": 7.050660389179585, "y_m": -13.331105075971996, "d_right": 0.42281336512372053, "d_left": 2.5171988277556148, "psi_rad": -1.7160205734409333, "kappa_radpm": -0.8831421764214171, "vx_mps": 3.43684339742244, "ax_mps2": 1.522756713667236}, {"id": 583, "s_m": 58.24869962765362, "d_m": 0.0, "x_m": 7.031759347095458, "y_m": -13.429192194744521, "d_right": 0.42679925687654013, "d_left": 2.5140262062658048, "psi_rad": -1.8067335885593128, "kappa_radpm": -0.900230538499035, "vx_mps": 3.4808297710328255, "ax_mps2": 1.045809338670578}, {"id": 584, "s_m": 58.34861163387602, "d_m": 0.0, "x_m": 7.004177515814779, "y_m": -13.525191621087172, "d_right": 0.43962923031264617, "d_left": 2.514398526309361, "psi_rad": -1.8933324930893596, "kappa_radpm": -0.835444149907712, "vx_mps": 3.510719828356262, "ax_mps2": 1.6553754493582806}, {"id": 585, "s_m": 58.44852364009841, "d_m": 0.0, "x_m": 6.968630826096477, "y_m": -13.618642923700245, "d_right": 0.450973400610885, "d_left": 2.511473866773062, "psi_rad": -1.974722954053557, "kappa_radpm": -0.8082832893042056, "vx_mps": 3.5575184437479974, "ax_mps2": 1.7214914874015812}, {"id": 586, "s_m": 58.5484356463208, "d_m": 0.0, "x_m": 6.925669124199964, "y_m": -13.708833992178, "d_right": 0.4736380823309888, "d_left": 2.515138378926168, "psi_rad": -2.0562156119623545, "kappa_radpm": -0.8240116568201129, "vx_mps": 3.6055419584313935, "ax_mps2": 1.2376482559333388}, {"id": 587, "s_m": 58.64834765254319, "d_m": 0.0, "x_m": 6.875419721949336, "y_m": -13.795218564151357, "d_right": 0.47135878238623913, "d_left": 2.516611557868713, "psi_rad": -2.1389858182169696, "kappa_radpm": -0.8176673695949488, "vx_mps": 3.6396764491511013, "ax_mps2": 1.1169486752857467}, {"id": 588, "s_m": 58.748259658765576, "d_m": 0.0, "x_m": 6.818308452434128, "y_m": -13.877192960409285, "d_right": 0.48198560876321006, "d_left": 2.524495625948276, "psi_rad": -2.2191219028623284, "kappa_radpm": -0.7879418175824887, "vx_mps": 3.670209506349147, "ax_mps2": 1.3340042789273712}, {"id": 589, "s_m": 58.848171664987966, "d_m": 0.0, "x_m": 6.7548234402225775, "y_m": -13.954499103139748, "d_right": 0.5049216008183428, "d_left": 2.4765105717324616, "psi_rad": -2.297793889424108, "kappa_radpm": -0.8009611210200518, "vx_mps": 3.7063464366043037, "ax_mps2": 0.9440889891876031}, {"id": 590, "s_m": 58.948083671210355, "d_m": 0.0, "x_m": 6.685479451726382, "y_m": -14.026326131020678, "d_right": 0.5294597792838296, "d_left": 2.423064467973877, "psi_rad": -2.380294269548495, "kappa_radpm": -0.8534126778505929, "vx_mps": 3.7317094686020003, "ax_mps2": 0.06183474252879653}, {"id": 591, "s_m": 59.047995677432745, "d_m": 0.0, "x_m": 6.609990588058841, "y_m": -14.092366506388869, "d_right": 0.5379248052609712, "d_left": 2.379929016830907, "psi_rad": -2.462917817138589, "kappa_radpm": -0.7225887454234463, "vx_mps": 3.733364651947947, "ax_mps2": 1.8746676432821145}, {"id": 592, "s_m": 59.14790768365514, "d_m": 0.0, "x_m": 6.530446194387562, "y_m": -14.152412305534698, "d_right": 0.5573293924874155, "d_left": 2.3419932592490276, "psi_rad": -2.5231135757944827, "kappa_radpm": -0.4856678272722955, "vx_mps": 3.783201717447204, "ax_mps2": 4.993493078002396}, {"id": 593, "s_m": 59.24781968987753, "d_m": 0.0, "x_m": 6.447400111968045, "y_m": -14.208726238822377, "d_right": 0.5612007230562652, "d_left": 2.298921050368643, "psi_rad": -2.568700104296205, "kappa_radpm": -0.4790258958347225, "vx_mps": 3.9128551031001826, "ax_mps2": 4.606717547849526}, {"id": 594, "s_m": 59.34773169609992, "d_m": 0.0, "x_m": 6.362808222963702, "y_m": -14.260378860494475, "d_right": 0.5600419510797034, "d_left": 2.2643689705203323, "psi_rad": -2.619000135994817, "kappa_radpm": -0.5323139092701858, "vx_mps": 4.028767533932457, "ax_mps2": 3.297283847708905}, {"id": 595, "s_m": 59.44764370232231, "d_m": 0.0, "x_m": 6.274719413690931, "y_m": -14.308390739637396, "d_right": 0.567868615516247, "d_left": 2.2380888717112675, "psi_rad": -2.6624606483290147, "kappa_radpm": -0.3222789789270652, "vx_mps": 4.109725578561999, "ax_mps2": 6.491464899531984}, {"id": 596, "s_m": 59.5475557085447, "d_m": 0.0, "x_m": 6.185732212485169, "y_m": -14.353237136180827, "d_right": 0.5740309982660021, "d_left": 2.218832740971261, "psi_rad": -2.683645400853637, "kappa_radpm": -0.13385406247060294, "vx_mps": 4.264621307215411, "ax_mps2": 6.831705343495965}, {"id": 597, "s_m": 59.64746771476709, "d_m": 0.0, "x_m": 6.095717473869992, "y_m": -14.39692904102009, "d_right": 0.5883937168831056, "d_left": 2.1909411840493482, "psi_rad": -2.695099458064754, "kappa_radpm": -0.09407718888918545, "vx_mps": 4.421779468441804, "ax_mps2": 6.745083818902958}, {"id": 598, "s_m": 59.74737972098948, "d_m": 0.0, "x_m": 6.005625067943028, "y_m": -14.439622834764789, "d_right": 0.5946499488276742, "d_left": 2.1581940198007277, "psi_rad": -2.7022121992252988, "kappa_radpm": -0.046542941519399895, "vx_mps": 4.571647775201304, "ax_mps2": 6.662302393408362}, {"id": 599, "s_m": 59.847291727211875, "d_m": 0.0, "x_m": 5.9152348390477565, "y_m": -14.481948912014104, "d_right": 0.6167573862180695, "d_left": 2.130028380683847, "psi_rad": -2.7042203039424866, "kappa_radpm": 0.006576740086243519, "vx_mps": 4.7150027971226525, "ax_mps2": 6.582956152783492}, {"id": 600, "s_m": 59.947203733434264, "d_m": 0.0, "x_m": 5.824868098106447, "y_m": -14.52427951402012, "d_right": 0.6274769306762699, "d_left": 2.1062108071110663, "psi_rad": -2.7027783358160935, "kappa_radpm": 0.014057803823131635, "vx_mps": 4.852492564556043, "ax_mps2": 6.50670702675386}, {"id": 601, "s_m": 60.047115739656654, "d_m": 0.0, "x_m": 5.734452696904045, "y_m": -14.566787037848446, "d_right": 0.6505221878333457, "d_left": 2.0865637799244525, "psi_rad": -2.7015014833963864, "kappa_radpm": 0.012336888477899126, "vx_mps": 4.984664521806886, "ax_mps2": 6.433269268935866}, {"id": 602, "s_m": 60.14702774587904, "d_m": 0.0, "x_m": 5.644228274864346, "y_m": -14.609348357315444, "d_right": 0.6609226199040438, "d_left": 2.062792288944202, "psi_rad": -2.7000674154694693, "kappa_radpm": 0.01636713790538288, "vx_mps": 5.1119861182730855, "ax_mps2": 6.3623987585679895}, {"id": 603, "s_m": 60.24693975210143, "d_m": 0.0, "x_m": 5.553967324515072, "y_m": -14.652105802109709, "d_right": 0.6833348412154708, "d_left": 2.036459803770584, "psi_rad": -2.6983190262027144, "kappa_radpm": 0.016775887503735164, "vx_mps": 5.23486027723066, "ax_mps2": 6.293884961803996}, {"id": 604, "s_m": 60.34685175832382, "d_m": 0.0, "x_m": 5.463670430914803, "y_m": -14.6950635941203, "d_right": 0.6959367136340868, "d_left": 2.008037121741373, "psi_rad": -2.6968236625283417, "kappa_radpm": 0.01315726753085175, "vx_mps": 5.353637218663681, "ax_mps2": 6.227544786341527}, {"id": 605, "s_m": 60.44676376454621, "d_m": 0.0, "x_m": 5.3736676723515995, "y_m": -14.738026976661923, "d_right": 0.7223308265199105, "d_left": 1.9796933363644205, "psi_rad": -2.695676480240218, "kappa_radpm": 0.00993843299017507, "vx_mps": 5.468623634512373, "ax_mps2": 6.163217811170383}, {"id": 606, "s_m": 60.5466757707686, "d_m": 0.0, "x_m": 5.283223681005874, "y_m": -14.781311519548229, "d_right": 0.761305948333905, "d_left": 1.9462094726535792, "psi_rad": -2.694830660199699, "kappa_radpm": 0.006961252832846086, "vx_mps": 5.580089906851548, "ax_mps2": 6.100762532972755}, {"id": 607, "s_m": 60.646587776991, "d_m": 0.0, "x_m": 5.193431745197822, "y_m": -14.824361310692971, "d_right": 0.80329498960725, "d_left": 1.9129557344397228, "psi_rad": -2.694269797712808, "kappa_radpm": 0.004330461441057215, "vx_mps": 5.68827585625539, "ax_mps2": 6.040053376190774}, {"id": 608, "s_m": 60.74649978321339, "d_m": 0.0, "x_m": 5.103168078229368, "y_m": -14.8676853744387, "d_right": 0.8187629462679418, "d_left": 1.8841984424950042, "psi_rad": -2.6939608501626315, "kappa_radpm": 0.00197582847510733, "vx_mps": 5.793395370408364, "ax_mps2": 5.980978284980638}, {"id": 609, "s_m": 60.84641178943578, "d_m": 0.0, "x_m": 5.013207474008605, "y_m": -14.910886524911442, "d_right": 0.8457922189150021, "d_left": 1.8604410897627663, "psi_rad": -2.6938509287986907, "kappa_radpm": 0.0002403050073700787, "vx_mps": 5.895640168558372, "ax_mps2": 5.923436764310835}, {"id": 610, "s_m": 60.94632379565817, "d_m": 0.0, "x_m": 4.9230539769259725, "y_m": -14.954183110404763, "d_right": 0.883425280250023, "d_left": 1.832530441857777, "psi_rad": -2.6939051770039892, "kappa_radpm": -0.0011599262026855117, "vx_mps": 5.995182891190768, "ax_mps2": 5.867338271834411}, {"id": 611, "s_m": 61.046235801880556, "d_m": 0.0, "x_m": 4.832965009711901, "y_m": -14.997436105478727, "d_right": 0.9268136275241485, "d_left": 1.804005501299012, "psi_rad": -2.6940711382942215, "kappa_radpm": -0.0021585679478179987, "vx_mps": 6.092179657123981, "ax_mps2": 5.812600886663253}, {"id": 612, "s_m": 61.146147808102945, "d_m": 0.0, "x_m": 4.742841144435389, "y_m": -15.04068192676806, "d_right": 0.9697384311436583, "d_left": 1.7806085103283313, "psi_rad": -2.6943369723529553, "kappa_radpm": -0.0031675685432331945, "vx_mps": 6.186772196112315, "ax_mps2": 5.759150198885842}, {"id": 613, "s_m": 61.246059814325335, "d_m": 0.0, "x_m": 4.65270726249566, "y_m": -15.083897440104568, "d_right": 0.9872003097601997, "d_left": 1.7419211824554395, "psi_rad": -2.694704855464634, "kappa_radpm": -0.004195517216886325, "vx_mps": 6.279089640035561, "ax_mps2": 5.70691837665588}, {"id": 614, "s_m": 61.34597182054773, "d_m": 0.0, "x_m": 4.56262964837438, "y_m": -15.127037803518254, "d_right": 1.0141906547713764, "d_left": 1.7082813247473891, "psi_rad": -2.69523571545958, "kappa_radpm": -0.006769249811786344, "vx_mps": 6.369250037195919, "ax_mps2": 5.655843377319788}, {"id": 615, "s_m": 61.44588382677012, "d_m": 0.0, "x_m": 4.472442425374409, "y_m": -15.17015570057871, "d_right": 1.0499980398615874, "d_left": 1.6799564151307909, "psi_rad": -2.69606064420978, "kappa_radpm": -0.009721676003368778, "vx_mps": 6.457361640309104, "ax_mps2": 5.605868276288361}, {"id": 616, "s_m": 61.54579583299251, "d_m": 0.0, "x_m": 4.38242441881934, "y_m": -15.213085820023597, "d_right": 1.093282045188221, "d_left": 1.6573277594154023, "psi_rad": -2.6971641707239105, "kappa_radpm": -0.012375721522118212, "vx_mps": 6.543524008203861, "ax_mps2": 5.556940692849652}, {"id": 617, "s_m": 61.6457078392149, "d_m": 0.0, "x_m": 4.292072668302, "y_m": -15.256038214418425, "d_right": 1.1360922870676584, "d_left": 1.6187531754789357, "psi_rad": -2.6985278416283123, "kappa_radpm": -0.014770156955757, "vx_mps": 6.627828953141686, "ax_mps2": 5.5090122963322035}, {"id": 618, "s_m": 61.74561984543729, "d_m": 0.0, "x_m": 4.201970954041828, "y_m": -15.298710240144928, "d_right": 1.1642294804509743, "d_left": 1.585238707025983, "psi_rad": -2.7000732748349137, "kappa_radpm": -0.016217162543717873, "vx_mps": 6.710361359402632, "ax_mps2": 5.462038379281128}, {"id": 619, "s_m": 61.84553185165968, "d_m": 0.0, "x_m": 4.111487345461344, "y_m": -15.34138392266158, "d_right": 1.1905491466126876, "d_left": 1.5574657871886763, "psi_rad": -2.7017643307637664, "kappa_radpm": -0.01757603621798951, "vx_mps": 6.791199893894986, "ax_mps2": 5.41597748685205}, {"id": 620, "s_m": 61.94544385788207, "d_m": 0.0, "x_m": 4.021182507488675, "y_m": -15.38377971173199, "d_right": 1.2240927337375107, "d_left": 1.5359437149054107, "psi_rad": -2.703581867216341, "kappa_radpm": -0.01884588754761736, "vx_mps": 6.870417625703159, "ax_mps2": 5.37079109362395}, {"id": 621, "s_m": 62.04535586410446, "d_m": 0.0, "x_m": 3.9305864028259783, "y_m": -15.426104453879356, "d_right": 1.2574862197070589, "d_left": 1.507485220129986, "psi_rad": -2.705521109048881, "kappa_radpm": -0.019748432934371563, "vx_mps": 6.948082568443128, "ax_mps2": 5.326443320616547}, {"id": 622, "s_m": 62.145267870326855, "d_m": 0.0, "x_m": 3.84005040538429, "y_m": -15.468184091087707, "d_right": 1.297497663033823, "d_left": 1.4806006950267132, "psi_rad": -2.7075109039582888, "kappa_radpm": -0.02010857634680098, "vx_mps": 7.024258156865295, "ax_mps2": 5.282900686559046}, {"id": 623, "s_m": 62.245179876549244, "d_m": 0.0, "x_m": 3.749322125763159, "y_m": -15.510131837865517, "d_right": 1.317702287290446, "d_left": 1.460238750460607, "psi_rad": -2.7095294604329982, "kappa_radpm": -0.020064861996066847, "vx_mps": 7.0990036671933145, "ax_mps2": 5.240131888473119}, {"id": 624, "s_m": 62.345091882771634, "d_m": 0.0, "x_m": 3.658564498176251, "y_m": -15.551872735243732, "d_right": 1.343352534944036, "d_left": 1.4217007139017852, "psi_rad": -2.711508415891501, "kappa_radpm": -0.019560941732389578, "vx_mps": 7.172374589110546, "ax_mps2": 5.198107607452304}, {"id": 625, "s_m": 62.44500388899402, "d_m": 0.0, "x_m": 3.5676973226057638, "y_m": -15.593449190981215, "d_right": 1.3756234876310733, "d_left": 1.3890221391732578, "psi_rad": -2.713430408327783, "kappa_radpm": -0.018738495438351585, "vx_mps": 7.244422956023448, "ax_mps2": 5.156800336186736}, {"id": 626, "s_m": 62.54491589521641, "d_m": 0.0, "x_m": 3.476750007535248, "y_m": -15.634856633997893, "d_right": 1.4140639645115958, "d_left": 1.363083969531978, "psi_rad": -2.715246944265351, "kappa_radpm": -0.017628949341021858, "vx_mps": 7.3151976391833005, "ax_mps2": 5.116184225328159}, {"id": 627, "s_m": 62.6448279014388, "d_m": 0.0, "x_m": 3.385741746039954, "y_m": -15.676098541280908, "d_right": 1.4553296314152133, "d_left": 1.344268569623961, "psi_rad": -2.7169471257593827, "kappa_radpm": -0.016265848585046292, "vx_mps": 7.384744610385974, "ax_mps2": 5.07623494623767}, {"id": 628, "s_m": 62.74473990766119, "d_m": 0.0, "x_m": 3.294645104915929, "y_m": -15.717202187041334, "d_right": 1.4764895662816506, "d_left": 1.315099872092351, "psi_rad": -2.718494021724821, "kappa_radpm": -0.014703784282302457, "vx_mps": 7.453107177257973, "ax_mps2": 5.036929568027809}, {"id": 629, "s_m": 62.84465191388359, "d_m": 0.0, "x_m": 3.203507230953966, "y_m": -15.758163316690165, "d_right": 1.5014829086534316, "d_left": 1.2900863017533597, "psi_rad": -2.7198874024429784, "kappa_radpm": -0.013182094455855164, "vx_mps": 7.520326194546314, "ax_mps2": 4.998246447120911}, {"id": 630, "s_m": 62.94456392010598, "d_m": 0.0, "x_m": 3.112301007237678, "y_m": -15.799010791082639, "d_right": 1.5324768377641014, "d_left": 1.2672508926733907, "psi_rad": -2.721130087726051, "kappa_radpm": -0.011698212985264933, "vx_mps": 7.586440254337406, "ax_mps2": 4.9601651277979935}, {"id": 631, "s_m": 63.04447592632837, "d_m": 0.0, "x_m": 3.021051414409794, "y_m": -15.839749900289085, "d_right": 1.5691245112937229, "d_left": 1.2329221532329087, "psi_rad": -2.7222135430784444, "kappa_radpm": -0.009749647195117289, "vx_mps": 7.651485857717851, "ax_mps2": 4.922666252431182}, {"id": 632, "s_m": 63.14438793255076, "d_m": 0.0, "x_m": 2.9297678227310064, "y_m": -15.880397694768135, "d_right": 1.6093650872817191, "d_left": 1.201010654577084, "psi_rad": -2.723070072980927, "kappa_radpm": -0.007405006923236459, "vx_mps": 7.715497570043268, "ax_mps2": 4.885731480268781}, {"id": 633, "s_m": 63.244299938773146, "d_m": 0.0, "x_m": 2.838443973056405, "y_m": -15.92098250327391, "d_right": 1.631789904278343, "d_left": 1.1768139374481474, "psi_rad": -2.7236904243404183, "kappa_radpm": -0.004918154037025998, "vx_mps": 7.77850816168876, "ax_mps2": 4.849343413798191}, {"id": 634, "s_m": 63.344211944995536, "d_m": 0.0, "x_m": 2.747123786249021, "y_m": -15.961511997013421, "d_right": 1.6565210186990191, "d_left": 1.1607971612990482, "psi_rad": -2.7240496830383583, "kappa_radpm": -0.002281307044337274, "vx_mps": 7.840548735906593, "ax_mps2": 4.813485531839099}, {"id": 635, "s_m": 63.444123951217925, "d_m": 0.0, "x_m": 2.655765325214173, "y_m": -16.002033951167142, "d_right": 1.686805762090717, "d_left": 1.1293281497302776, "psi_rad": -2.7241216773993138, "kappa_radpm": 0.0014458389013565416, "vx_mps": 7.901648845205882, "ax_mps2": 4.778142128628911}, {"id": 636, "s_m": 63.544035957440315, "d_m": 0.0, "x_m": 2.564448774400283, "y_m": -16.042553749456133, "d_right": 1.7223642653023135, "d_left": 1.1058258369190292, "psi_rad": -2.7237269607764, "kappa_radpm": 0.006446423672903622, "vx_mps": 7.961836597489144, "ax_mps2": 4.743298258257286}, {"id": 637, "s_m": 63.64394796366271, "d_m": 0.0, "x_m": 2.473101797959878, "y_m": -16.08315701063561, "d_right": 1.7445396782398104, "d_left": 1.0891610913075493, "psi_rad": -2.7228654123657083, "kappa_radpm": 0.009887722801977436, "vx_mps": 8.021138753026586, "ax_mps2": 4.708939683885913}, {"id": 638, "s_m": 63.7438599698851, "d_m": 0.0, "x_m": 2.3818434717671346, "y_m": -16.1238275081398, "d_right": 1.7696936203548899, "d_left": 1.057259260052336, "psi_rad": -2.721815656881139, "kappa_radpm": 0.011130378693137412, "vx_mps": 8.0795808132167, "ax_mps2": 4.675052831258647}, {"id": 639, "s_m": 63.84377197610749, "d_m": 0.0, "x_m": 2.2905887685474893, "y_m": -16.1646177982611, "d_right": 1.7961230009854767, "d_left": 1.0253046846754035, "psi_rad": -2.7206669000759707, "kappa_radpm": 0.010844949111847338, "vx_mps": 8.137187101967905, "ax_mps2": 4.641624746066983}, {"id": 640, "s_m": 63.94368398232988, "d_m": 0.0, "x_m": 2.1994082480172605, "y_m": -16.20549132404121, "d_right": 1.8166261120962754, "d_left": 1.0022413422761711, "psi_rad": -2.719742033948487, "kappa_radpm": 0.007668493558224242, "vx_mps": 8.193980840437384, "ax_mps2": 4.608643054787204}, {"id": 641, "s_m": 64.04359598855227, "d_m": 0.0, "x_m": 2.1082641333171557, "y_m": -16.246432511390307, "d_right": 1.842399845636472, "d_left": 0.9753221992026644, "psi_rad": -2.7191270192317525, "kappa_radpm": 0.004999383773115398, "vx_mps": 8.24998421577813, "ax_mps2": 4.576095928648149}, {"id": 642, "s_m": 64.14350799477467, "d_m": 0.0, "x_m": 2.017123879996552, "y_m": -16.287427834142026, "d_right": 1.8732095777790847, "d_left": 0.942998266438188, "psi_rad": -2.7186990102910924, "kappa_radpm": 0.0035655151498975176, "vx_mps": 8.305218444471103, "ax_mps2": 4.543972050430128}, {"id": 643, "s_m": 64.24342000099705, "d_m": 0.0, "x_m": 1.926037966738552, "y_m": -16.328437757070756, "d_right": 1.9087766294158057, "d_left": 0.9204139407358358, "psi_rad": -2.718411663395637, "kappa_radpm": 0.0023860275417557464, "vx_mps": 8.359703830754821, "ax_mps2": 4.512260583827497}, {"id": 644, "s_m": 64.34333200721944, "d_m": 0.0, "x_m": 1.8349072856377986, "y_m": -16.369494897447503, "d_right": 1.931394744141913, "d_left": 0.9020766747153632, "psi_rad": -2.718189171836638, "kappa_radpm": 0.0020658276183488453, "vx_mps": 8.413459820608507, "ax_mps2": 4.480951145134996}, {"id": 645, "s_m": 64.44324401344183, "d_m": 0.0, "x_m": 1.7438581215738884, "y_m": -16.410537925967333, "d_right": 1.9574677523611226, "d_left": 0.8698027228870234, "psi_rad": -2.7179981566496156, "kappa_radpm": 0.0018242902048994927, "vx_mps": 8.46650505169539, "ax_mps2": 4.450033777048419}, {"id": 646, "s_m": 64.54315601966422, "d_m": 0.0, "x_m": 1.6527272712159116, "y_m": -16.45163821616005, "d_right": 1.9828069389079237, "d_left": 0.8480933029598142, "psi_rad": -2.717809610068241, "kappa_radpm": 0.0019481249304807919, "vx_mps": 8.51885739962985, "ax_mps2": 4.419498924387521}, {"id": 647, "s_m": 64.6430680258866, "d_m": 0.0, "x_m": 1.5617137667992596, "y_m": -16.49270690334315, "d_right": 2.0044955061055556, "d_left": 0.8288752844573095, "psi_rad": -2.7176090143957756, "kappa_radpm": 0.0020446435140490196, "vx_mps": 8.570534020893604, "ax_mps2": 4.389337411571611}, {"id": 648, "s_m": 64.742980032109, "d_m": 0.0, "x_m": 1.4705839839082697, "y_m": -16.533850204762714, "d_right": 2.0309256937996563, "d_left": 0.7966351296118511, "psi_rad": -2.7174093720700228, "kappa_radpm": 0.001948679084852309, "vx_mps": 8.621551392693137, "ax_mps2": -2.6128950952396472}, {"id": 649, "s_m": 64.8428920383314, "d_m": 0.0, "x_m": 1.3796034952368827, "y_m": -16.574947428482904, "d_right": 2.0556217654317708, "d_left": 0.7760287154286023, "psi_rad": -2.717219664514877, "kappa_radpm": 0.0018443519618089321, "vx_mps": 8.591218146154878, "ax_mps2": -12.149206914011558}, {"id": 650, "s_m": 64.94280404455378, "d_m": 0.0, "x_m": 1.288476398107563, "y_m": -16.616130976433062, "d_right": 2.0778229307105374, "d_left": 0.76502536309379, "psi_rad": -2.717044497231834, "kappa_radpm": 0.0016586306871106675, "vx_mps": 8.448747005399166, "ax_mps2": -12.157556374069955}, {"id": 651, "s_m": 65.04271605077618, "d_m": 0.0, "x_m": 1.1975235548616303, "y_m": -16.657253924119257, "d_right": 2.1045091635281983, "d_left": 0.7449468423593577, "psi_rad": -2.716888274115874, "kappa_radpm": 0.0014704516307471895, "vx_mps": 8.30373134591016, "ax_mps2": -12.165169890018479}, {"id": 652, "s_m": 65.14262805699856, "d_m": 0.0, "x_m": 1.1064011329259549, "y_m": -16.698469646761083, "d_right": 2.127022618452249, "d_left": 0.7228806726665952, "psi_rad": -2.71675134033757, "kappa_radpm": 0.001267503211953727, "vx_mps": 8.15604445828707, "ax_mps2": -12.172847616164761}, {"id": 653, "s_m": 65.24254006322096, "d_m": 0.0, "x_m": 1.015467019980514, "y_m": -16.739614066314317, "d_right": 2.141074408339614, "d_left": 0.6915499279173336, "psi_rad": -2.71663507661827, "kappa_radpm": 0.001049497139877357, "vx_mps": 8.00553770536459, "ax_mps2": -12.180509451503161}, {"id": 654, "s_m": 65.34245206944334, "d_m": 0.0, "x_m": 0.924352164767987, "y_m": -16.780851261865656, "d_right": 2.1597043387091253, "d_left": 0.6736521175312431, "psi_rad": -2.7165562970737547, "kappa_radpm": 0.0005247255998038739, "vx_mps": 7.852049138905933, "ax_mps2": -12.206009274267018}, {"id": 655, "s_m": 65.44236407566574, "d_m": 0.0, "x_m": 0.8334247494582151, "y_m": -16.82200936607449, "d_right": 2.1827159847306805, "d_left": 0.6601801884386229, "psi_rad": -2.7165303094130806, "kappa_radpm": 2.2883286102078234e-05, "vx_mps": 7.695168739584013, "ax_mps2": -12.189730639058716}, {"id": 656, "s_m": 65.54227608188813, "d_m": 0.0, "x_m": 0.7423189239695132, "y_m": -16.863250211634682, "d_right": 2.21005934834377, "d_left": 0.643879869932865, "psi_rad": -2.716502997696221, "kappa_radpm": 0.0005243175893170357, "vx_mps": 7.535238618899409, "ax_mps2": -12.158969741189301}, {"id": 657, "s_m": 65.64218808811052, "d_m": 0.0, "x_m": 0.6513868934667426, "y_m": -16.904418126799975, "d_right": 2.2292758511246906, "d_left": 0.6289130202136796, "psi_rad": -2.7164255500860923, "kappa_radpm": 0.0009409156019523713, "vx_mps": 7.372256569251652, "ax_mps2": -12.076567358410337}, {"id": 658, "s_m": 65.74210009433291, "d_m": 0.0, "x_m": 0.5602996326972676, "y_m": -16.945660109758354, "d_right": 2.244543170380702, "d_left": 0.5995662689276766, "psi_rad": -2.7164977930777887, "kappa_radpm": -0.002391596964164545, "vx_mps": 7.2067314905411015, "ax_mps2": -11.925924670684786}, {"id": 659, "s_m": 65.8420121005553, "d_m": 0.0, "x_m": 0.46934349875530473, "y_m": -16.986816527034073, "d_right": 2.2595153627373596, "d_left": 0.584638190319487, "psi_rad": -2.7169034303826898, "kappa_radpm": -0.0053606766618560465, "vx_mps": 7.039452582193201, "ax_mps2": -11.89341741539424}, {"id": 660, "s_m": 65.94192410677769, "d_m": 0.0, "x_m": 0.3782577489904014, "y_m": -17.027997861597076, "d_right": 2.27521925034363, "d_left": 0.5556643233631118, "psi_rad": -2.7168659339785073, "kappa_radpm": 0.006125024875267632, "vx_mps": 6.86857352492653, "ax_mps2": -11.28993103866576}, {"id": 661, "s_m": 66.04183611300007, "d_m": 0.0, "x_m": 0.2872891494846711, "y_m": -17.069193320673904, "d_right": 2.2923564190168717, "d_left": 0.5437329712471535, "psi_rad": -2.715674987882414, "kappa_radpm": 0.019672786682231894, "vx_mps": 6.702335633713876, "ax_mps2": -8.28959836892651}, {"id": 662, "s_m": 66.14174811922247, "d_m": 0.0, "x_m": 0.19634708294892778, "y_m": -17.110688406252258, "d_right": 2.307983795050561, "d_left": 0.5436954822408541, "psi_rad": -2.710216042632318, "kappa_radpm": 0.08962603554622563, "vx_mps": 6.577601549145104, "ax_mps2": -5.551787397751706}, {"id": 663, "s_m": 66.24166012544487, "d_m": 0.0, "x_m": 0.10586847968471041, "y_m": -17.15295520893153, "d_right": 2.3216374768036956, "d_left": 0.5331844092536814, "psi_rad": -2.69776143810331, "kappa_radpm": 0.15682851767921696, "vx_mps": 6.492723750881204, "ax_mps2": -5.548758894184705}, {"id": 664, "s_m": 66.34157213166725, "d_m": 0.0, "x_m": 0.015925967774159725, "y_m": -17.196591101609144, "d_right": 2.332488268346659, "d_left": 0.5239137372668237, "psi_rad": -2.6819945418390407, "kappa_radpm": 0.1586203239565939, "vx_mps": 6.4067687986170005, "ax_mps2": -5.644982470990819}, {"id": 665, "s_m": 66.44148413788965, "d_m": 0.0, "x_m": -0.07321253592556785, "y_m": -17.241595877590335, "d_right": 2.3400818136575094, "d_left": 0.5204857877840021, "psi_rad": -2.6660612744361156, "kappa_radpm": 0.16074930334477233, "vx_mps": 6.318123407420784, "ax_mps2": -5.689922755514262}, {"id": 666, "s_m": 66.54139614411203, "d_m": 0.0, "x_m": -0.16171120767694203, "y_m": -17.288082068231688, "d_right": 2.3474314332899753, "d_left": 0.5031388710860605, "psi_rad": -2.6497009757350023, "kappa_radpm": 0.1665734298090068, "vx_mps": 6.227495499467726, "ax_mps2": -5.461128266218434}, {"id": 667, "s_m": 66.64130815033442, "d_m": 0.0, "x_m": -0.24933300655329765, "y_m": -17.335984970997462, "d_right": 2.3606284094347414, "d_left": 0.4916743408848848, "psi_rad": -2.63275382536089, "kappa_radpm": 0.1773547199981166, "vx_mps": 6.139253670704554, "ax_mps2": -3.197566082751362}, {"id": 668, "s_m": 66.7412201565568, "d_m": 0.0, "x_m": -0.33615665083334023, "y_m": -17.38555495875561, "d_right": 2.379779269028842, "d_left": 0.4887287785074024, "psi_rad": -2.6118273595022083, "kappa_radpm": 0.24143887161790092, "vx_mps": 6.08699311224735, "ax_mps2": -1.0933457564895854}, {"id": 669, "s_m": 66.8411321627792, "d_m": 0.0, "x_m": -0.42164833845972377, "y_m": -17.437138360113167, "d_right": 2.405232422817301, "d_left": 0.47333343762311736, "psi_rad": -2.5845172626752415, "kappa_radpm": 0.2999767049709707, "vx_mps": 6.069020383265774, "ax_mps2": -0.8342533333251456}, {"id": 670, "s_m": 66.94104416900159, "d_m": 0.0, "x_m": -0.505699199858295, "y_m": -17.49127470463729, "d_right": 2.4156678981175075, "d_left": 0.45890531178603233, "psi_rad": -2.554108750335942, "kappa_radpm": 0.30838920382473334, "vx_mps": 6.055270808480409, "ax_mps2": -0.5530883464334109}, {"id": 671, "s_m": 67.04095617522398, "d_m": 0.0, "x_m": -0.5879342724793772, "y_m": -17.54790073777656, "d_right": 2.4230435333215254, "d_left": 0.4629176081418694, "psi_rad": -2.522880336466441, "kappa_radpm": 0.3170012748761588, "vx_mps": 6.046137960005065, "ax_mps2": -0.2882555243805456}, {"id": 672, "s_m": 67.14086818144638, "d_m": 0.0, "x_m": -0.668434843597456, "y_m": -17.607174594921702, "d_right": 2.4317959330263266, "d_left": 0.4539531035312495, "psi_rad": -2.4908044936313853, "kappa_radpm": 0.3247515109484303, "vx_mps": 6.041372679774284, "ax_mps2": -0.14098696797334923}, {"id": 673, "s_m": 67.24078018766876, "d_m": 0.0, "x_m": -0.7468781857862952, "y_m": -17.668956477396804, "d_right": 2.447786968111977, "d_left": 0.4540961749106871, "psi_rad": -2.458010852708842, "kappa_radpm": 0.32903746340387785, "vx_mps": 6.0390405922033885, "ax_mps2": -0.14098696797332916}, {"id": 674, "s_m": 67.34069219389116, "d_m": 0.0, "x_m": -0.8233424446659511, "y_m": -17.733339309845608, "d_right": 2.453116502737303, "d_left": 0.4626414282636881, "psi_rad": -2.4257090742138936, "kappa_radpm": 0.3172724437480351, "vx_mps": 6.036707603705632, "ax_mps2": 0.29713072583375655}, {"id": 675, "s_m": 67.44060420011354, "d_m": 0.0, "x_m": -0.8976559385740924, "y_m": -17.800047493132084, "d_right": 2.460608771634168, "d_left": 0.46802092146179414, "psi_rad": -2.394772144869739, "kappa_radpm": 0.2911906378547128, "vx_mps": 6.041623337025747, "ax_mps2": 1.230081049239235}, {"id": 676, "s_m": 67.54051620633594, "d_m": 0.0, "x_m": -0.9700935828062629, "y_m": -17.868916837903598, "d_right": 2.437293628194318, "d_left": 0.4802785882613313, "psi_rad": -2.36933519017583, "kappa_radpm": 0.21767312308362635, "vx_mps": 6.061931398274432, "ax_mps2": 3.8591052660358893}, {"id": 677, "s_m": 67.64042821255832, "d_m": 0.0, "x_m": -1.0409586743439938, "y_m": -17.939291802371024, "d_right": 2.398096578137423, "d_left": 0.5063483122914348, "psi_rad": -2.3509751421629477, "kappa_radpm": 0.1649956045076105, "vx_mps": 6.125206459874755, "ax_mps2": 5.664630558461402}, {"id": 678, "s_m": 67.74034021878072, "d_m": 0.0, "x_m": -1.1106654155801505, "y_m": -18.010897894267647, "d_right": 2.3611619947833242, "d_left": 0.5050046596439134, "psi_rad": -2.3345589969876865, "kappa_radpm": 0.16349218660834614, "vx_mps": 6.2169191231107845, "ax_mps2": 5.531598592700647}, {"id": 679, "s_m": 67.84025222500311, "d_m": 0.0, "x_m": -1.1791491545457398, "y_m": -18.08358532144139, "d_right": 2.3131708968353992, "d_left": 0.5139663474428336, "psi_rad": -2.318335710246313, "kappa_radpm": 0.1607596297213491, "vx_mps": 6.305190687784786, "ax_mps2": 5.455244010460856}, {"id": 680, "s_m": 67.9401642312255, "d_m": 0.0, "x_m": -1.2464875024676378, "y_m": -18.157394529113233, "d_right": 2.2699981544454095, "d_left": 0.5400332139796733, "psi_rad": -2.3025065261299718, "kappa_radpm": 0.1560524491637256, "vx_mps": 6.39104986339205, "ax_mps2": 5.468054876098965}, {"id": 681, "s_m": 68.04007623744789, "d_m": 0.0, "x_m": -1.3126420482262982, "y_m": -18.23220514441981, "d_right": 2.231925371560292, "d_left": 0.5725540033351337, "psi_rad": -2.287666668772049, "kappa_radpm": 0.12727622556820573, "vx_mps": 6.475968423484935, "ax_mps2": 5.595307212706239}, {"id": 682, "s_m": 68.13998824367027, "d_m": 0.0, "x_m": -1.377873287644541, "y_m": -18.307860151800757, "d_right": 2.1842921103907953, "d_left": 0.6039099406622408, "psi_rad": -2.278049917957878, "kappa_radpm": 0.06525937565946935, "vx_mps": 6.561725669370676, "ax_mps2": 5.546597476277707}, {"id": 683, "s_m": 68.23990024989267, "d_m": 0.0, "x_m": -1.4425635702424224, "y_m": -18.383903758719075, "d_right": 2.140136614790646, "d_left": 0.6190721782340892, "psi_rad": -2.273846465031429, "kappa_radpm": 0.03554580531627263, "vx_mps": 6.645644221834631, "ax_mps2": 5.498877064191044}, {"id": 684, "s_m": 68.33981225611505, "d_m": 0.0, "x_m": -1.507010712663943, "y_m": -18.460232002029585, "d_right": 2.1001214556338543, "d_left": 0.6330630969250624, "psi_rad": -2.270073322160383, "kappa_radpm": 0.03993622908953674, "vx_mps": 6.727807577666826, "ax_mps2": 5.45210199476656}, {"id": 685, "s_m": 68.43972426233745, "d_m": 0.0, "x_m": -1.5710917273281564, "y_m": -18.5367440417187, "d_right": 2.0645763867774765, "d_left": 0.658358315809857, "psi_rad": -2.265846471046334, "kappa_radpm": 0.045348225776627796, "vx_mps": 6.808293156068096, "ax_mps2": 5.406231466023815}, {"id": 686, "s_m": 68.53963626855985, "d_m": 0.0, "x_m": -1.6349095107860545, "y_m": -18.613646729424385, "d_right": 2.0238733200246584, "d_left": 0.686377401515295, "psi_rad": -2.2610031909481307, "kappa_radpm": 0.05149377159301898, "vx_mps": 6.887172900596431, "ax_mps2": 5.36122754166147}, {"id": 687, "s_m": 68.63954827478223, "d_m": 0.0, "x_m": -1.6982577550685607, "y_m": -18.6907779798214, "d_right": 1.980753958759902, "d_left": 0.7154831274080989, "psi_rad": -2.255869153248158, "kappa_radpm": 0.04703717587628869, "vx_mps": 6.964513806556351, "ax_mps2": 5.317054875869655}, {"id": 688, "s_m": 68.73946028100463, "d_m": 0.0, "x_m": -1.7613465500912102, "y_m": -18.76833037079934, "d_right": 1.939552110321345, "d_left": 0.7466303975268223, "psi_rad": -2.2517538340256475, "kappa_radpm": 0.03537764438891169, "vx_mps": 7.040378384817073, "ax_mps2": 5.273680471259781}, {"id": 689, "s_m": 68.83937228722701, "d_m": 0.0, "x_m": -1.8240871150212443, "y_m": -18.846017048548717, "d_right": 1.8968670940067511, "d_left": 0.7725622015895364, "psi_rad": -2.2487071388574904, "kappa_radpm": 0.026793283099784473, "vx_mps": 7.114825071181876, "ax_mps2": 5.231073465163137}, {"id": 690, "s_m": 68.9392842934494, "d_m": 0.0, "x_m": -1.886689374797219, "y_m": -18.923959717482585, "d_right": 1.8533229854443791, "d_left": 0.8007082009442914, "psi_rad": -2.246349731794666, "kappa_radpm": 0.020422755454715613, "vx_mps": 7.187908588923524, "ax_mps2": 5.189204940335526}, {"id": 691, "s_m": 69.03919629967179, "d_m": 0.0, "x_m": -1.9491023342452354, "y_m": -19.001993439632418, "d_right": 1.8061244353593577, "d_left": 0.8296468853762571, "psi_rad": -2.2445936354706175, "kappa_radpm": 0.015104866959644223, "vx_mps": 7.2596802708725825, "ax_mps2": 5.148047756743618}, {"id": 692, "s_m": 69.13910830589418, "d_m": 0.0, "x_m": -2.011410189774193, "y_m": -19.080137911886457, "d_right": 1.763460257192727, "d_left": 0.8564673215070202, "psi_rad": -2.2433096327903836, "kappa_radpm": 0.010624099276162074, "vx_mps": 7.330188346441484, "ax_mps2": 5.10757640163}, {"id": 693, "s_m": 69.23902031211658, "d_m": 0.0, "x_m": -2.073663912425812, "y_m": -19.15838558745165, "d_right": 1.7176625705006314, "d_left": 0.8936434570565417, "psi_rad": -2.242444351899496, "kappa_radpm": 0.007089658450293882, "vx_mps": 7.39947819813996, "ax_mps2": 5.06776685548563}, {"id": 694, "s_m": 69.33893231833896, "d_m": 0.0, "x_m": -2.135817923355366, "y_m": -19.23662231861273, "d_right": 1.6748047529196393, "d_left": 0.9328887401531415, "psi_rad": -2.241869707702076, "kappa_radpm": 0.004426278095424232, "vx_mps": 7.467592591454512, "ax_mps2": 5.02859647191148}, {"id": 695, "s_m": 69.43884432456136, "d_m": 0.0, "x_m": -2.1980003192669257, "y_m": -19.31496576551834, "d_right": 1.636937312458085, "d_left": 0.9699479582264948, "psi_rad": -2.2415678034173787, "kappa_radpm": 0.0013463374632186565, "vx_mps": 7.534571881396407, "ax_mps2": 4.990043869650246}, {"id": 696, "s_m": 69.53875633078374, "d_m": 0.0, "x_m": -2.2601151999783013, "y_m": -19.393245301696144, "d_right": 1.5923635120684998, "d_left": 1.00442418846646, "psi_rad": -2.2416170381945593, "kappa_radpm": -0.0023307857424901047, "vx_mps": 7.600454198548815, "ax_mps2": 4.952088835312163}, {"id": 697, "s_m": 69.63866833700614, "d_m": 0.0, "x_m": -2.3222870421296204, "y_m": -19.47155912086522, "d_right": 1.548680450003852, "d_left": 1.032974549736798, "psi_rad": -2.2420336987015226, "kappa_radpm": -0.0059728715427467514, "vx_mps": 7.665275617046881, "ax_mps2": 4.9147122355272606}, {"id": 698, "s_m": 69.73858034322852, "d_m": 0.0, "x_m": -2.384501090247488, "y_m": -19.549830088463978, "d_right": 1.4994976494325358, "d_left": 1.0701923439492242, "psi_rad": -2.2428104774323474, "kappa_radpm": -0.009582554531672133, "vx_mps": 7.729070306589783, "ax_mps2": 4.877895937430319}, {"id": 699, "s_m": 69.83849234945092, "d_m": 0.0, "x_m": -2.446738522082567, "y_m": -19.62797659349042, "d_right": 1.4554774420932302, "d_left": 1.1000920724931622, "psi_rad": -2.2439502875462303, "kappa_radpm": -0.013108615092627986, "vx_mps": 7.791870670302053, "ax_mps2": 4.841622736532223}, {"id": 700, "s_m": 69.9384043556733, "d_m": 0.0, "x_m": -2.5091878584406757, "y_m": -19.7061791226769, "d_right": 1.4169592780033549, "d_left": 1.137602313041326, "psi_rad": -2.2454182981510815, "kappa_radpm": -0.016260394583030444, "vx_mps": 7.85370747002147, "ax_mps2": -10.458372886014612}, {"id": 701, "s_m": 70.0383163618957, "d_m": 0.0, "x_m": -2.5715769298670477, "y_m": -19.784046179460816, "d_right": 1.3755701356033305, "d_left": 1.1824134461344118, "psi_rad": -2.2472024946001703, "kappa_radpm": -0.01928315690573346, "vx_mps": 7.719513390813165, "ax_mps2": -10.995404638800384}, {"id": 702, "s_m": 70.13822836811809, "d_m": 0.0, "x_m": -2.6343664618660827, "y_m": -19.862105702393542, "d_right": 1.3286027869261967, "d_left": 1.220421130257298, "psi_rad": -2.249237130346449, "kappa_radpm": -0.021369402789621964, "vx_mps": 7.575865700866442, "ax_mps2": -10.931060475502818}, {"id": 703, "s_m": 70.23814037434047, "d_m": 0.0, "x_m": -2.6970011939816967, "y_m": -19.939633054773097, "d_right": 1.276610004440165, "d_left": 1.2649686355179326, "psi_rad": -2.251474753359105, "kappa_radpm": -0.02322736374233633, "vx_mps": 7.430306370068009, "ax_mps2": -10.930957617395501}, {"id": 704, "s_m": 70.33805238056287, "d_m": 0.0, "x_m": -2.7601773009688775, "y_m": -20.017462861609605, "d_right": 1.2300509104488633, "d_left": 1.3155519935799493, "psi_rad": -2.2538174489929474, "kappa_radpm": -0.02352548133052356, "vx_mps": 7.281839392770297, "ax_mps2": -10.957466830935985}, {"id": 705, "s_m": 70.43796438678525, "d_m": 0.0, "x_m": -2.8231373480624167, "y_m": -20.0946548210703, "d_right": 1.1863674466238197, "d_left": 1.3598270555811833, "psi_rad": -2.2561798578735184, "kappa_radpm": -0.023989830607999682, "vx_mps": 7.129910234618191, "ax_mps2": -10.97696871598185}, {"id": 706, "s_m": 70.53787639300765, "d_m": 0.0, "x_m": -2.886664195293068, "y_m": -20.172161084828428, "d_right": 1.1314364390616467, "d_left": 1.4046587097899312, "psi_rad": -2.2586253790731385, "kappa_radpm": -0.02481897356945372, "vx_mps": 6.974393021647459, "ax_mps2": -10.975542479783423}, {"id": 707, "s_m": 70.63778839923003, "d_m": 0.0, "x_m": -2.9500248364177417, "y_m": -20.249074626547568, "d_right": 1.083043522861757, "d_left": 1.4429488464991058, "psi_rad": -2.2611440499651856, "kappa_radpm": -0.025921376303687887, "vx_mps": 6.8153489333515775, "ax_mps2": -10.94333080682115}, {"id": 708, "s_m": 70.73770040545243, "d_m": 0.0, "x_m": -3.0138741884502926, "y_m": -20.3261728096906, "d_right": 1.0415491252619176, "d_left": 1.4858749021068842, "psi_rad": -2.2638293951450734, "kappa_radpm": -0.02773875871678463, "vx_mps": 6.652987359976477, "ax_mps2": -10.905480598501176}, {"id": 709, "s_m": 70.83761241167483, "d_m": 0.0, "x_m": -3.077649562972965, "y_m": -20.40274865215872, "d_right": 0.9995728801945335, "d_left": 1.5245510504322837, "psi_rad": -2.2666916208505263, "kappa_radpm": -0.02987438118076099, "vx_mps": 6.48714605363371, "ax_mps2": -10.875539201702269}, {"id": 710, "s_m": 70.93752441789721, "d_m": 0.0, "x_m": -3.141796359590413, "y_m": -20.479305482513315, "d_right": 0.9486291200605985, "d_left": 1.5680479515218968, "psi_rad": -2.2697891331741182, "kappa_radpm": -0.032040838119212066, "vx_mps": 6.317425903039222, "ax_mps2": -10.874360481053952}, {"id": 711, "s_m": 71.0374364241196, "d_m": 0.0, "x_m": -3.2060534438194415, "y_m": -20.555502573723363, "d_right": 0.9045947319130171, "d_left": 1.6071605840392538, "psi_rad": -2.2729205655487394, "kappa_radpm": -0.02814648611385931, "vx_mps": 6.143037660335125, "ax_mps2": -11.081886612711871}, {"id": 712, "s_m": 71.13734843034199, "d_m": 0.0, "x_m": -3.270671891707089, "y_m": -20.631696204025726, "d_right": 0.851480708870344, "d_left": 1.6517247708753444, "psi_rad": -2.275279692311183, "kappa_radpm": -0.01905605816652198, "vx_mps": 5.960074214964578, "ax_mps2": -11.458995650283116}, {"id": 713, "s_m": 71.23726043656438, "d_m": 0.0, "x_m": -3.335372083381631, "y_m": -20.707696953337308, "d_right": 0.8071500117257068, "d_left": 1.6980227603115416, "psi_rad": -2.2765992917091733, "kappa_radpm": -0.006169159654028159, "vx_mps": 5.764781189122327, "ax_mps2": -11.864343125122543}, {"id": 714, "s_m": 71.33717244278677, "d_m": 0.0, "x_m": -3.400255154850555, "y_m": -20.78381756780722, "d_right": 0.7682656879926202, "d_left": 1.742424194805471, "psi_rad": -2.2764917495582084, "kappa_radpm": 0.00826143975121161, "vx_mps": 5.555350709916988, "ax_mps2": -11.73599743433148}, {"id": 715, "s_m": 71.43708444900916, "d_m": 0.0, "x_m": -3.4649837316042618, "y_m": -20.859824787601713, "d_right": 0.7212028565063788, "d_left": 1.7911824947920194, "psi_rad": -2.27638516608377, "kappa_radpm": -0.013123627640135384, "vx_mps": 5.340111179816883, "ax_mps2": -10.974633315208923}, {"id": 716, "s_m": 71.53699645523156, "d_m": 0.0, "x_m": -3.529941266574073, "y_m": -20.935898090965477, "d_right": 0.6751972269717185, "d_left": 1.8437922382876357, "psi_rad": -2.2791880956392783, "kappa_radpm": -0.04281792148720886, "vx_mps": 5.13067170540563, "ax_mps2": -10.970965066312361}, {"id": 717, "s_m": 71.63690846145394, "d_m": 0.0, "x_m": -3.5949836844332763, "y_m": -21.011512688262165, "d_right": 0.6413382581286937, "d_left": 1.8878296713407545, "psi_rad": -2.2828441262562613, "kappa_radpm": -0.02697889113287194, "vx_mps": 4.912385356291589, "ax_mps2": -11.440436348076561}, {"id": 718, "s_m": 71.73682046767634, "d_m": 0.0, "x_m": -3.660463858285351, "y_m": -21.08722233546123, "d_right": 0.6099706848826238, "d_left": 1.929700619433933, "psi_rad": -2.2845755424221608, "kappa_radpm": -0.011538959623281836, "vx_mps": 4.673912279184979, "ax_mps2": -9.378538168182725}, {"id": 719, "s_m": 71.83673247389872, "d_m": 0.0, "x_m": -3.725998321907535, "y_m": -21.162484110753965, "d_right": 0.5887513087115158, "d_left": 1.9739794760746565, "psi_rad": -2.2919115871002007, "kappa_radpm": -0.13512663484059437, "vx_mps": 4.468937106950989, "ax_mps2": -7.638139036768954}, {"id": 720, "s_m": 71.93664448012112, "d_m": 0.0, "x_m": -3.7926893651231683, "y_m": -21.23701813435884, "d_right": 0.5691364890405589, "d_left": 2.02349087378098, "psi_rad": -2.311476357119522, "kappa_radpm": -0.2403436698356599, "vx_mps": 4.294777674798207, "ax_mps2": -7.595204471116142}, {"id": 721, "s_m": 72.0365564863435, "d_m": 0.0, "x_m": -3.8608852589736777, "y_m": -21.309901796295474, "d_right": 0.5486896618096926, "d_left": 2.078375715326225, "psi_rad": -2.333983161003694, "kappa_radpm": -0.21040677552021014, "vx_mps": 4.114293504745165, "ax_mps2": -8.501738815257731}, {"id": 722, "s_m": 72.1364684925659, "d_m": 0.0, "x_m": -3.9307596347094007, "y_m": -21.381497337837885, "d_right": 0.5263445433500152, "d_left": 2.1377784041453345, "psi_rad": -2.3540011309065654, "kappa_radpm": -0.23030896507030937, "vx_mps": 3.902378695150665, "ax_mps2": -5.616838915853645}, {"id": 723, "s_m": 72.2363804987883, "d_m": 0.0, "x_m": -4.002400605843973, "y_m": -21.451292403556547, "d_right": 0.5200052960167822, "d_left": 2.1875902116098382, "psi_rad": -2.388253855377804, "kappa_radpm": -0.45637395325375524, "vx_mps": 3.755819509899786, "ax_mps2": -3.6783409515154584}, {"id": 724, "s_m": 72.33629250501068, "d_m": 0.0, "x_m": -4.077078547246593, "y_m": -21.517678749342096, "d_right": 0.5141370519943907, "d_left": 2.24172652336953, "psi_rad": -2.4447644585368895, "kappa_radpm": -0.6262246601755622, "vx_mps": 3.6566595880492017, "ax_mps2": -3.6027886092338224}, {"id": 725, "s_m": 72.43620451123307, "d_m": 0.0, "x_m": -4.155728470073653, "y_m": -21.5794311500536, "d_right": 0.502168536931665, "d_left": 2.3038108902576226, "psi_rad": -2.5070631016562626, "kappa_radpm": -0.6195916987642363, "vx_mps": 3.5568575550596147, "ax_mps2": -4.191247138146379}, {"id": 726, "s_m": 72.53611651745545, "d_m": 0.0, "x_m": -4.237926528892481, "y_m": -21.636102708217493, "d_right": 0.48405673811416466, "d_left": 2.3729195533390417, "psi_rad": -2.5693358397328288, "kappa_radpm": -0.651742945101187, "vx_mps": 3.4371098101010116, "ax_mps2": -3.690019689260217}, {"id": 727, "s_m": 72.63602852367785, "d_m": 0.0, "x_m": -4.323748044467223, "y_m": -21.687315507761053, "d_right": 0.4739973606209281, "d_left": 2.4450402920197973, "psi_rad": -2.6395235744675283, "kappa_radpm": -0.7541098957719128, "vx_mps": 3.3281179826418934, "ax_mps2": -3.003971531172385}, {"id": 728, "s_m": 72.73594052990023, "d_m": 0.0, "x_m": -4.413152548241407, "y_m": -21.731899988517448, "d_right": 0.47344571254024737, "d_left": 2.5223007495614636, "psi_rad": -2.7202769147112775, "kappa_radpm": -0.8625847573075301, "vx_mps": 3.2366809638510308, "ax_mps2": -2.1800013507345746}, {"id": 729, "s_m": 72.83585253612263, "d_m": 0.0, "x_m": -4.505990674303347, "y_m": -21.76858459082002, "d_right": 0.45519046640430744, "d_left": 2.602673056908416, "psi_rad": -2.812266962745907, "kappa_radpm": -0.9819059025823239, "vx_mps": 3.1686727575937508, "ax_mps2": -1.3110207095165056}, {"id": 730, "s_m": 72.93576454234501, "d_m": 0.0, "x_m": -4.602093068531272, "y_m": -21.796034750797443, "d_right": 0.4432802642387062, "d_left": 2.575156962713801, "psi_rad": -2.91634952201359, "kappa_radpm": -1.0969746323305465, "vx_mps": 3.127061500217579, "ax_mps2": -0.13740786267453795}, {"id": 731, "s_m": 73.03567654856741, "d_m": 0.0, "x_m": -4.700364403223756, "y_m": -21.81275656705058, "d_right": 0.4427812550978806, "d_left": 2.5584082963171006, "psi_rad": -3.031801189592624, "kappa_radpm": -1.220410158992868, "vx_mps": 3.1226681276885517, "ax_mps2": -0.037666856483411955}, {"id": 732, "s_m": 73.1355885547898, "d_m": 0.0, "x_m": -4.8000946402314355, "y_m": -21.81754468121873, "d_right": 0.4475766261458991, "d_left": 2.5536168619282664, "psi_rad": 3.1277949520985646, "kappa_radpm": -1.2315865629874971, "vx_mps": 3.1214627169458917, "ax_mps2": -3.2566657270226735}, {"id": 733, "s_m": 73.23550056101217, "d_m": 0.0, "x_m": -4.899560627782515, "y_m": -21.81006894760004, "d_right": 0.44518701884245915, "d_left": 2.5483398096801935, "psi_rad": 3.005579945343393, "kappa_radpm": -1.2181163556394805, "vx_mps": 3.015421940710504, "ax_mps2": -0.21627381797794354}]}, "trackbounds_markers": {"markers": [{"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 0, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 4, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 5, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 6, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 7, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 8, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 9, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 10, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 11, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 12, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 13, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 14, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 15, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 16, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 17, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 18, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 19, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 20, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 21, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 22, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 23, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 24, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 25, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 26, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 27, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 28, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 29, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 30, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 31, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 32, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 33, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 34, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 35, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 36, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 37, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 38, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 39, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 40, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 41, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 42, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 43, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 44, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 45, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 46, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 47, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 48, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 49, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 50, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 51, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 52, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 53, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 54, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 55, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 56, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 57, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 58, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 59, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 60, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 61, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 62, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 63, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 64, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 65, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 66, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 67, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 68, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 69, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 70, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 71, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 72, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 73, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 74, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 75, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 76, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 77, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 78, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 79, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 80, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 81, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 82, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 83, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 84, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 85, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 86, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 87, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 88, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 89, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 90, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 91, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 92, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 93, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 94, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 95, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 96, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 97, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 98, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 99, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 100, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 101, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 102, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 103, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 104, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 105, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 106, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 107, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 108, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 109, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 110, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 111, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 112, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 113, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 114, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 115, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 116, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 117, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 118, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 119, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 120, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 121, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 122, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 123, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 124, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 125, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 126, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 127, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 128, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 129, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 130, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 131, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 132, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 133, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 134, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 135, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 136, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 137, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 138, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 139, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 140, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 141, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 142, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 143, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 144, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 145, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 146, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 147, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 148, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 149, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 150, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 151, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 152, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 153, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 154, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 155, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 156, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 157, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 158, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 159, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 160, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 161, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 162, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 163, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 164, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 165, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 166, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 167, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 168, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 169, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 170, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 171, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 172, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 173, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 174, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 175, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 176, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 177, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 178, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 179, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 180, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 181, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 182, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 183, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 184, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 185, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 186, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 187, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 188, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 189, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 190, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 191, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 192, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 193, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 194, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 195, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 196, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 197, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 198, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 199, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 200, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 201, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 202, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 203, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 204, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 205, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 206, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 207, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 208, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 209, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 210, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 211, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 212, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 213, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 214, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 215, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 216, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 217, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 218, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 219, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 220, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 221, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 222, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 223, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 224, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 225, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 226, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 227, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 228, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 229, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 230, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 231, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 232, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 233, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 234, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 235, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 236, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 237, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 238, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 239, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 240, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 241, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 242, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 243, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 244, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 245, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 246, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 247, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 248, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 249, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 250, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 251, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 252, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 253, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 254, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 255, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 256, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 257, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 258, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 259, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 260, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 261, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 262, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 263, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 264, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 265, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 266, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 267, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 268, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 269, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 270, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 271, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 272, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 273, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 274, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 275, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 276, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 277, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 278, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 279, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 280, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 281, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 282, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 283, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 284, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 285, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 286, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 287, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 288, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 289, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 290, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 291, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 292, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 293, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 294, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 295, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 296, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 297, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 298, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 299, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 300, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 301, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 302, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 303, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 304, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 305, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 306, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 307, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 308, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 309, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 310, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 311, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 312, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 313, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 314, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 315, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 316, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 317, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 318, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 319, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 320, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 321, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 322, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 323, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 324, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 325, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 326, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 327, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 328, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 329, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 330, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 331, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 332, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 333, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 334, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 335, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 336, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 337, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 338, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 339, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 340, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 341, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 342, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 343, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 344, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 345, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 346, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 347, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 348, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 349, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 350, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 351, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 352, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 353, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 354, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 355, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 356, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 357, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 358, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 359, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 360, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 361, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 362, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 363, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 364, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 365, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 366, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 367, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 368, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 369, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 370, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 371, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 372, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 373, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 374, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 375, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 376, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 377, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 378, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 379, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 380, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 381, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 382, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 383, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 384, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 385, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 386, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 387, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 388, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 389, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 390, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 391, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 392, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 393, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 394, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 395, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 396, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 397, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 398, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 399, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 400, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 401, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 402, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 403, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 404, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 405, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 406, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 407, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 408, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 409, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 410, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 411, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 412, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 413, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 414, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 415, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 416, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 417, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 418, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 419, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 420, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 421, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 422, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 423, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 424, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 425, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 426, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 427, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 428, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 429, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 430, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 431, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 432, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 433, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 434, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 435, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 436, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 437, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 438, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 439, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 440, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 441, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 442, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 443, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 444, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 445, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 446, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 447, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 448, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 449, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 450, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 451, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 452, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 453, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 454, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 455, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 456, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 457, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 458, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 459, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 460, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 461, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 462, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 463, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 464, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 465, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 466, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 467, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 468, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 469, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 470, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 471, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 472, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 473, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 474, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 475, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 476, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 477, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 478, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 479, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 480, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 481, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 482, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 483, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 484, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 485, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 486, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 487, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 488, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 489, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 490, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 491, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 492, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 493, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 494, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 495, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 496, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 497, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 498, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 499, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 500, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 501, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 502, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 503, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 504, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 505, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 506, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 507, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 508, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 509, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 510, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 511, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 512, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 513, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 514, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 515, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 516, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 517, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 518, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 519, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 520, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 521, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 522, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 523, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 524, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 525, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 526, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 527, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 528, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 529, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 530, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 531, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 532, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 533, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 534, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 535, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 536, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 537, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 538, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 539, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 540, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 541, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 542, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 543, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 544, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 545, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 546, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 547, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 548, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 549, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 550, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 551, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 552, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 553, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 554, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 555, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 556, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 557, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 558, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 559, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 560, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 561, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 562, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 563, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 564, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 565, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 566, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 567, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 568, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 569, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 570, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 571, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 572, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 573, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 574, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 575, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 576, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 577, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 578, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 579, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 580, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 581, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 582, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 583, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 584, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 585, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 586, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 587, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 588, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 589, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 590, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 591, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 592, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 593, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 594, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 595, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 596, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 597, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 598, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 599, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 600, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 601, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 602, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 603, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 604, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 605, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 606, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 607, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 608, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 609, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 610, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 611, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 612, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 613, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 614, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 615, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 616, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 617, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 618, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 619, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 620, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 621, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 622, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 623, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 624, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 625, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 626, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 627, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 628, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 629, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 630, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 631, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 632, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 633, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 634, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 635, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 636, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 637, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 638, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 639, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 640, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 641, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 642, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 643, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 644, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 645, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 646, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 647, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 648, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 649, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 650, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 651, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 652, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 653, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 654, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 655, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 656, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 657, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 658, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 659, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 660, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 661, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 662, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 663, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 664, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 665, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 666, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 667, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 668, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 669, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 670, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 671, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 672, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 673, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 674, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 675, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 676, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 677, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 678, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 679, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 680, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 681, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 682, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 683, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 684, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 685, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 686, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 687, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 688, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 689, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 690, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 691, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 692, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 693, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 694, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 695, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 696, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 697, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 698, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 699, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 700, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 701, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 702, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 703, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 704, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 705, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 706, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 707, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 708, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 709, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 710, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 711, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 712, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 713, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 714, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 715, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 716, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 717, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 718, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 719, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 720, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 721, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 722, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 723, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 724, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 725, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 726, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 727, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 728, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 729, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 730, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 731, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 732, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 733, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 734, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 735, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 736, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 737, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 738, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 739, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 740, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 741, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 742, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 743, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 744, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 745, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 746, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 747, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 748, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 749, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 750, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 751, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 752, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 753, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 754, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 755, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 756, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 757, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 758, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 759, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 760, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 761, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 762, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 763, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 764, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 765, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 766, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 767, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 768, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 769, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 770, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 771, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 772, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 773, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 774, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 775, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 776, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 777, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 778, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 779, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 780, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 781, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 782, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 783, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 784, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 785, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 786, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 787, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 788, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 789, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 790, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 791, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 792, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 793, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 794, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 795, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 796, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 797, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 798, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 799, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 800, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 801, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 802, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 803, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 804, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 805, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 806, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 807, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 808, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 809, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 810, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 811, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 812, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 813, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 814, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 815, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 816, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 817, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 818, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 819, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 820, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 821, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 822, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 823, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 824, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 825, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 826, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 827, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 828, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 829, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 830, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 831, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 832, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 833, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 834, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 835, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 836, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 837, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 838, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 839, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 840, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 841, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 842, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 843, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 844, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 845, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 846, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 847, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 848, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 849, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 850, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 851, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 852, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 853, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 854, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 855, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 856, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 857, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 858, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 859, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 860, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 861, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 862, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 863, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 864, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 865, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 866, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 867, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 868, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 869, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 870, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 871, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 872, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 873, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 874, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 875, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 876, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 877, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 878, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 879, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 880, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 881, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 882, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 883, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 884, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 885, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 886, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 887, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 888, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 889, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 890, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 891, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 892, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 893, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 894, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 895, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 896, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 897, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 898, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 899, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 900, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 901, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 902, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 903, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 904, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 905, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 906, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 907, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 908, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 909, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 910, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 911, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 912, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 913, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 914, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 915, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 916, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 917, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 918, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 919, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 920, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 921, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 922, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 923, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 924, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 925, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 926, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 927, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 928, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 929, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 930, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 931, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 932, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 933, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 934, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 935, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 936, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 937, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 938, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 939, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 940, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 941, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 942, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 943, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 944, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 945, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 946, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 947, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 948, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 949, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 950, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 951, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 952, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 953, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 954, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 955, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 956, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 957, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 958, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 959, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 960, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 961, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 962, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 963, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 964, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 965, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 966, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 967, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 968, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 969, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 970, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 971, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 972, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 973, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 974, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 975, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 976, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 977, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 978, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 979, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 980, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 981, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 982, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 983, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 984, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 985, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 986, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 987, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 988, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 989, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 990, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 991, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 992, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 993, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 994, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 995, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 996, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 997, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 998, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 999, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1000, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1001, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1002, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1003, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1004, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1005, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1006, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1007, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1008, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1009, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1010, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1011, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1012, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1013, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1014, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1015, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1016, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1017, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1018, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1019, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1020, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1021, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1022, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1023, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1024, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1025, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1026, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1027, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1028, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1029, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1030, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1031, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1032, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1033, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1034, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1035, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1036, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1037, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1038, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1039, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1040, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1041, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1042, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1043, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1044, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1045, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1046, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1047, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1048, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1049, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1050, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1051, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1052, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1053, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1054, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1055, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1056, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1057, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1058, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1059, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1060, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1061, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1062, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1063, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1064, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1065, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1066, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1067, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1068, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1069, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1070, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1071, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1072, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1073, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1074, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1075, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1076, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1077, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1078, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1079, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1080, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1081, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1082, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1083, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1084, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1085, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1086, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1087, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1088, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1089, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1090, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1091, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1092, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1093, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1094, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1095, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1096, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1097, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1098, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1099, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1100, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1101, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1102, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1103, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1104, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1105, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1106, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1107, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1108, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1109, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1110, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1111, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1112, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1113, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1114, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1115, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1116, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1117, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1118, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1119, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1120, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1121, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1122, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1123, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1124, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1125, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1126, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1127, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1128, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1129, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1130, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1131, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1132, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1133, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1134, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1135, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1136, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1137, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1138, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1139, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1140, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1141, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1142, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1143, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1144, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1145, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1146, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1147, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1148, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1149, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1150, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1151, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1152, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1153, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1154, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1155, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1156, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1157, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1158, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1159, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1160, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1161, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1162, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1163, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1164, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1165, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1166, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1167, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1168, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1169, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1170, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1171, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1172, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1173, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1174, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1175, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1176, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1177, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1178, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1179, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1180, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1181, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1182, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1183, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1184, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1185, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1186, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1187, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1188, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1189, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1190, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1191, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1192, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1193, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1194, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1195, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1196, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1197, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1198, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1199, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1200, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1201, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1202, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1203, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1204, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1205, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1206, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1207, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1208, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1209, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1210, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1211, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1212, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1213, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1214, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1215, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1216, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1217, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1218, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1219, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1220, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1221, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1222, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1223, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1224, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1225, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1226, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1227, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1228, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1229, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1230, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1231, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1232, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1233, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1234, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1235, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1236, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1237, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1238, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1239, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1240, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1241, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1242, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1243, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1244, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1245, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1246, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1247, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1248, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1249, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1250, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1251, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1252, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1253, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1254, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1255, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1256, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1257, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1258, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1259, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1260, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1261, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1262, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1263, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1264, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1265, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1266, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1267, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1268, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1269, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1270, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1271, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1272, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1273, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1274, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1275, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1276, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1277, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1278, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1279, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1280, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1281, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1282, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1283, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1284, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1285, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1286, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1287, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1288, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1289, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1290, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1291, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1292, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1293, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1294, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1295, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1296, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1297, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1298, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1299, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1300, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1301, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1302, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1303, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1304, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1305, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1306, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1307, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1308, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1309, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1310, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1311, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1312, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1313, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1314, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1315, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1316, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1317, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1318, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1319, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1320, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1321, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1322, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1323, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1324, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1325, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1326, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1327, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1328, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1329, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1330, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1331, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1332, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1333, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1334, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1335, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1336, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1337, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1338, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1339, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1340, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1341, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1342, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1343, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1344, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1345, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1346, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1347, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1348, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1349, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1350, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1351, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1352, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1353, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1354, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1355, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1356, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1357, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1358, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1359, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1360, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1361, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1362, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1363, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1364, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1365, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1366, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1367, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1368, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1369, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1370, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1371, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1372, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1373, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1374, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1375, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1376, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1377, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1378, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1379, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1380, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1381, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1382, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1383, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1384, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1385, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1386, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1387, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1388, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1389, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1390, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1391, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1392, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1393, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1394, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1395, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1396, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1397, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1398, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1399, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1400, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1401, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1402, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1403, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1404, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1405, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1406, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1407, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1408, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1409, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1410, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1411, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1412, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1413, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1414, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1415, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1416, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1417, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1418, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1419, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1420, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1421, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1422, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1423, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1424, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1425, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1426, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1427, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1428, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1429, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1430, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1431, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1432, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1433, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1434, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1435, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1436, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1437, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1438, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1439, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1440, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1441, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1442, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1443, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1444, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1445, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1446, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1447, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1448, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1449, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1450, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1451, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1452, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1453, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1454, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1455, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1456, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1457, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1458, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1459, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1460, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1461, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1462, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1463, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1464, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1465, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1466, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1467, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1468, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1469, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1470, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1471, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1472, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1473, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1474, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1475, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1476, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1477, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1478, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1479, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1480, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1481, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1482, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1483, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1484, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1485, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1486, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1487, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1488, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1489, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1490, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1491, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1492, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1493, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1494, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1495, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1496, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1497, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1498, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1499, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1500, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1501, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1502, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1503, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1504, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1505, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1506, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1507, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1508, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1509, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1510, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1511, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1512, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1513, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1514, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1515, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1516, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1517, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1518, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1519, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1520, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1521, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1522, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1523, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1524, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1525, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1526, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1527, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1528, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1529, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1530, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1531, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1532, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1533, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1534, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1535, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1536, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1537, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 0.0, "b": 0.5, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1538, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1539, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1540, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1541, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1542, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1543, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1544, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1545, "type": 2, "action": 0, "pose": {"position": {"x": -5.606539910593034, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1546, "type": 2, "action": 0, "pose": {"position": {"x": -5.656539911338092, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1547, "type": 2, "action": 0, "pose": {"position": {"x": -5.70653991208315, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1548, "type": 2, "action": 0, "pose": {"position": {"x": -5.756539912828208, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1549, "type": 2, "action": 0, "pose": {"position": {"x": -5.806539913573266, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1550, "type": 2, "action": 0, "pose": {"position": {"x": -5.856539914318324, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1551, "type": 2, "action": 0, "pose": {"position": {"x": -5.906539915063382, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1552, "type": 2, "action": 0, "pose": {"position": {"x": -5.95653991580844, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1553, "type": 2, "action": 0, "pose": {"position": {"x": -6.006539916553498, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1554, "type": 2, "action": 0, "pose": {"position": {"x": -6.056539917298556, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1555, "type": 2, "action": 0, "pose": {"position": {"x": -6.106539918043614, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1556, "type": 2, "action": 0, "pose": {"position": {"x": -6.156539918788672, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1557, "type": 2, "action": 0, "pose": {"position": {"x": -6.20653991953373, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1558, "type": 2, "action": 0, "pose": {"position": {"x": -6.256539920278788, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1559, "type": 2, "action": 0, "pose": {"position": {"x": -6.306539921023846, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1560, "type": 2, "action": 0, "pose": {"position": {"x": -6.3565399217689045, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1561, "type": 2, "action": 0, "pose": {"position": {"x": -6.4065399225139625, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1562, "type": 2, "action": 0, "pose": {"position": {"x": -6.456539923259021, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1563, "type": 2, "action": 0, "pose": {"position": {"x": -6.506539924004079, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1564, "type": 2, "action": 0, "pose": {"position": {"x": -6.556539924749137, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1565, "type": 2, "action": 0, "pose": {"position": {"x": -6.606539925494195, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1566, "type": 2, "action": 0, "pose": {"position": {"x": -6.656539926239253, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1567, "type": 2, "action": 0, "pose": {"position": {"x": -6.706539926984311, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1568, "type": 2, "action": 0, "pose": {"position": {"x": -6.756539927729369, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1569, "type": 2, "action": 0, "pose": {"position": {"x": -6.806539928474427, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1570, "type": 2, "action": 0, "pose": {"position": {"x": -6.856539929219485, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1571, "type": 2, "action": 0, "pose": {"position": {"x": -6.906539929964543, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1572, "type": 2, "action": 0, "pose": {"position": {"x": -6.956539930709601, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1573, "type": 2, "action": 0, "pose": {"position": {"x": -7.006539931454659, "y": -23.770792959021808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1574, "type": 2, "action": 0, "pose": {"position": {"x": -7.056539932199717, "y": -23.72079295827675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1575, "type": 2, "action": 0, "pose": {"position": {"x": -7.106539932944775, "y": -23.67079295753169, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1576, "type": 2, "action": 0, "pose": {"position": {"x": -7.156539933689833, "y": -23.620792956786634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1577, "type": 2, "action": 0, "pose": {"position": {"x": -7.2065399344348915, "y": -23.570792956041576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1578, "type": 2, "action": 0, "pose": {"position": {"x": -7.2565399351799496, "y": -23.520792955296518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1579, "type": 2, "action": 0, "pose": {"position": {"x": -7.306539935925008, "y": -23.47079295455146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1580, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": -23.4207929538064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1581, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": -23.370792953061343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1582, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": -23.320792952316285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1583, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": -23.270792951571227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1584, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.22079295082617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1585, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.17079295008111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1586, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.120792949336053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1587, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.070792948590995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1588, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": -23.020792947845937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1589, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.97079294710088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1590, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.92079294635582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1591, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.870792945610763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1592, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.820792944865705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1593, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.770792944120647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1594, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.72079294337559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1595, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.67079294263053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1596, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.620792941885473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1597, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.570792941140414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1598, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.520792940395356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1599, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.4707929396503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1600, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.42079293890524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1601, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.370792938160182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1602, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.320792937415124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1603, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.270792936670066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1604, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.220792935925008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1605, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": -22.17079293517995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1606, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.120792934434892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1607, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.070792933689834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1608, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -22.020792932944776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1609, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.970792932199718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1610, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.92079293145466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1611, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.8707929307096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1612, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.820792929964544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1613, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.770792929219486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1614, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.720792928474427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1615, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.67079292772937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1616, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.62079292698431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1617, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.570792926239253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1618, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.520792925494195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1619, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.470792924749137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1620, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.42079292400408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1621, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1622, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1623, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1624, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1625, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1626, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1627, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1628, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1629, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1630, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1631, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1632, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1633, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1634, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1635, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1636, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1637, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1638, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1639, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1640, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1641, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1642, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1643, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1644, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1645, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1646, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1647, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1648, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1649, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1650, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1651, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1652, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1653, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1654, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1655, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1656, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1657, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1658, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1659, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1660, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1661, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1662, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1663, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1664, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1665, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1666, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1667, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1668, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1669, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1670, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1671, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1672, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1673, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1674, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1675, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1676, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1677, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1678, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1679, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1680, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1681, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1682, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1683, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1684, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1685, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1686, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1687, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1688, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1689, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1690, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1691, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1692, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1693, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1694, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1695, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1696, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1697, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1698, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1699, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1700, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1701, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1702, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1703, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1704, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1705, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1706, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1707, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1708, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1709, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1710, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1711, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1712, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1713, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1714, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1715, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1716, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1717, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1718, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1719, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1720, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1721, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1722, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1723, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1724, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1725, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1726, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1727, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1728, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1729, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1730, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1731, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1732, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1733, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1734, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1735, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1736, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1737, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1738, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1739, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1740, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1741, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1742, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1743, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1744, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1745, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1746, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1747, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1748, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1749, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1750, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1751, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1752, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1753, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1754, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1755, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1756, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1757, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1758, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1759, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1760, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1761, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1762, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1763, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1764, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1765, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1766, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1767, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1768, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1769, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1770, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1771, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1772, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1773, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1774, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1775, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1776, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1777, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1778, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1779, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1780, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1781, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1782, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1783, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1784, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1785, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1786, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1787, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1788, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1789, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1790, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1791, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1792, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1793, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1794, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1795, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1796, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1797, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1798, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1799, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1800, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1801, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1802, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1803, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1804, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1805, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1806, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1807, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1808, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1809, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1810, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1811, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1812, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1813, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1814, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1815, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1816, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1817, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1818, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1819, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1820, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1821, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1822, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1823, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1824, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1825, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1826, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1827, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1828, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1829, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1830, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1831, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1832, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1833, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1834, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1835, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1836, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1837, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1838, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1839, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1840, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1841, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1842, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1843, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1844, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1845, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1846, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1847, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1848, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1849, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1850, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1851, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1852, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1853, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1854, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1855, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1856, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1857, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1858, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1859, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1860, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1861, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1862, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1863, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1864, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1865, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1866, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1867, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1868, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1869, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1870, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1871, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1872, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1873, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1874, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1875, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1876, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1877, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1878, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1879, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1880, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1881, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1882, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1883, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1884, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1885, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1886, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1887, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1888, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1889, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1890, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1891, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1892, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1893, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1894, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1895, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1896, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1897, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1898, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1899, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1900, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1901, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1902, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1903, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1904, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1905, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1906, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1907, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1908, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1909, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1910, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1911, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1912, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1913, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1914, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1915, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1916, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1917, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1918, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1919, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1920, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1921, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1922, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1923, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1924, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1925, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1926, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1927, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1928, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1929, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1930, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1931, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1932, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1933, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1934, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1935, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1936, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1937, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1938, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1939, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1940, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1941, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1942, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1943, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1944, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1945, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1946, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1947, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1948, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1949, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1950, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1951, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1952, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1953, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1954, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1955, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1956, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1957, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1958, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1959, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1960, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1961, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1962, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1963, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1964, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1965, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1966, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1967, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1968, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1969, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1970, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1971, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1972, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1973, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1974, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1975, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1976, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1977, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1978, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1979, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1980, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1981, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1982, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1983, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1984, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1985, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1986, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1987, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1988, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1989, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1990, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1991, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1992, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1993, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1994, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1995, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1996, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1997, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1998, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 1999, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2000, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2001, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2002, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2003, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2004, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2005, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2006, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2007, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2008, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2009, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2010, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2011, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2012, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2013, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2014, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2015, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2016, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2017, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2018, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2019, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2020, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.4207926259808552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2021, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.3707926252357971, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2022, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.320792624490739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2023, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.270792623745681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2024, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.220792623000623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2025, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.170792622255565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2026, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.1207926215105068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2027, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.0707926207654488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2028, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -1.0207926200203907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2029, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.9707926192753327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2030, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.9207926185302746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2031, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.8707926177852165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2032, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.8207926170401585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2033, "type": 2, "action": 0, "pose": {"position": {"x": -8.406539952316285, "y": -0.7707926162951004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2034, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.7207926155500424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2035, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.6707926148049843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2036, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.6207926140599263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2037, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.5707926133148682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2038, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.5207926125698101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2039, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.47079261182475207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2040, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.420792611079694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2041, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.37079261033463595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2042, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.3207926095895779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2043, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.27079260884451983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2044, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.22079260809946177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2045, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.1707926073544037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2046, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2047, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.0707926058642876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2048, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": -0.020792605119229535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2049, "type": 2, "action": 0, "pose": {"position": {"x": -8.356539951571227, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2050, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2051, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.12920739711594464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2052, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2053, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2054, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2055, "type": 2, "action": 0, "pose": {"position": {"x": -8.306539950826169, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2056, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2057, "type": 2, "action": 0, "pose": {"position": {"x": -8.25653995008111, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2058, "type": 2, "action": 0, "pose": {"position": {"x": -8.206539949336053, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2059, "type": 2, "action": 0, "pose": {"position": {"x": -8.156539948590995, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2060, "type": 2, "action": 0, "pose": {"position": {"x": -8.106539947845937, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2061, "type": 2, "action": 0, "pose": {"position": {"x": -8.056539947100879, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2062, "type": 2, "action": 0, "pose": {"position": {"x": -8.00653994635582, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2063, "type": 2, "action": 0, "pose": {"position": {"x": -7.956539945610762, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2064, "type": 2, "action": 0, "pose": {"position": {"x": -7.906539944865704, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2065, "type": 2, "action": 0, "pose": {"position": {"x": -7.856539944120646, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2066, "type": 2, "action": 0, "pose": {"position": {"x": -7.806539943375588, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2067, "type": 2, "action": 0, "pose": {"position": {"x": -7.75653994263053, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2068, "type": 2, "action": 0, "pose": {"position": {"x": -7.706539941885472, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2069, "type": 2, "action": 0, "pose": {"position": {"x": -7.656539941140414, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2070, "type": 2, "action": 0, "pose": {"position": {"x": -7.606539940395356, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2071, "type": 2, "action": 0, "pose": {"position": {"x": -7.556539939650298, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2072, "type": 2, "action": 0, "pose": {"position": {"x": -7.50653993890524, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2073, "type": 2, "action": 0, "pose": {"position": {"x": -7.456539938160182, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2074, "type": 2, "action": 0, "pose": {"position": {"x": -7.406539937415124, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2075, "type": 2, "action": 0, "pose": {"position": {"x": -7.356539936670066, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2076, "type": 2, "action": 0, "pose": {"position": {"x": -7.306539935925008, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2077, "type": 2, "action": 0, "pose": {"position": {"x": -7.2565399351799496, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2078, "type": 2, "action": 0, "pose": {"position": {"x": -7.2065399344348915, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2079, "type": 2, "action": 0, "pose": {"position": {"x": -7.156539933689833, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2080, "type": 2, "action": 0, "pose": {"position": {"x": -7.106539932944775, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2081, "type": 2, "action": 0, "pose": {"position": {"x": -7.056539932199717, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2082, "type": 2, "action": 0, "pose": {"position": {"x": -7.006539931454659, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2083, "type": 2, "action": 0, "pose": {"position": {"x": -6.956539930709601, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2084, "type": 2, "action": 0, "pose": {"position": {"x": -6.906539929964543, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2085, "type": 2, "action": 0, "pose": {"position": {"x": -6.856539929219485, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2086, "type": 2, "action": 0, "pose": {"position": {"x": -6.806539928474427, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2087, "type": 2, "action": 0, "pose": {"position": {"x": -6.756539927729369, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2088, "type": 2, "action": 0, "pose": {"position": {"x": -6.706539926984311, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2089, "type": 2, "action": 0, "pose": {"position": {"x": -6.656539926239253, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2090, "type": 2, "action": 0, "pose": {"position": {"x": -6.606539925494195, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2091, "type": 2, "action": 0, "pose": {"position": {"x": -6.556539924749137, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2092, "type": 2, "action": 0, "pose": {"position": {"x": -6.506539924004079, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2093, "type": 2, "action": 0, "pose": {"position": {"x": -6.456539923259021, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2094, "type": 2, "action": 0, "pose": {"position": {"x": -6.4065399225139625, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2095, "type": 2, "action": 0, "pose": {"position": {"x": -6.3565399217689045, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2096, "type": 2, "action": 0, "pose": {"position": {"x": -6.306539921023846, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2097, "type": 2, "action": 0, "pose": {"position": {"x": -6.256539920278788, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2098, "type": 2, "action": 0, "pose": {"position": {"x": -6.20653991953373, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2099, "type": 2, "action": 0, "pose": {"position": {"x": -6.156539918788672, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2100, "type": 2, "action": 0, "pose": {"position": {"x": -6.106539918043614, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2101, "type": 2, "action": 0, "pose": {"position": {"x": -6.056539917298556, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2102, "type": 2, "action": 0, "pose": {"position": {"x": -6.006539916553498, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2103, "type": 2, "action": 0, "pose": {"position": {"x": -5.95653991580844, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2104, "type": 2, "action": 0, "pose": {"position": {"x": -5.906539915063382, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2105, "type": 2, "action": 0, "pose": {"position": {"x": -5.856539914318324, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2106, "type": 2, "action": 0, "pose": {"position": {"x": -5.806539913573266, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2107, "type": 2, "action": 0, "pose": {"position": {"x": -5.756539912828208, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2108, "type": 2, "action": 0, "pose": {"position": {"x": -5.70653991208315, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2109, "type": 2, "action": 0, "pose": {"position": {"x": -5.656539911338092, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2110, "type": 2, "action": 0, "pose": {"position": {"x": -5.606539910593034, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2111, "type": 2, "action": 0, "pose": {"position": {"x": -5.5565399098479755, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2112, "type": 2, "action": 0, "pose": {"position": {"x": -5.5065399091029175, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2113, "type": 2, "action": 0, "pose": {"position": {"x": -5.456539908357859, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2114, "type": 2, "action": 0, "pose": {"position": {"x": -5.406539907612801, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2115, "type": 2, "action": 0, "pose": {"position": {"x": -5.356539906867743, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2116, "type": 2, "action": 0, "pose": {"position": {"x": -5.306539906122685, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2117, "type": 2, "action": 0, "pose": {"position": {"x": -5.256539905377627, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2118, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2119, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2120, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2121, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2122, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2123, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2124, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2125, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2126, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2127, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2128, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2129, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2130, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2131, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2132, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2133, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2134, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2135, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2136, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2137, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2138, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2139, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2140, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2141, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2142, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2143, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2144, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2145, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2146, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2147, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2148, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2149, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2150, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2151, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2152, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2153, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2154, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2155, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2156, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2157, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2158, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2159, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2160, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2161, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2162, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2163, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2164, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2165, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2166, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2167, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2168, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2169, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2170, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2171, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2172, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2173, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2174, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2175, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2176, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2177, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2178, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2179, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2180, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2181, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2182, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2183, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2184, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2185, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2186, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2187, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2188, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2189, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2190, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2191, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2192, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2193, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2194, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2195, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2196, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2197, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2198, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2199, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2200, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2201, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2202, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2203, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2204, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2205, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2206, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2207, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2208, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2209, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2210, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2211, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2212, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2213, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2214, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2215, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2216, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2217, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2218, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2219, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2220, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2221, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2222, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2223, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2224, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2225, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2226, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2227, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2228, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2229, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2230, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2231, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2232, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2233, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2234, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": 1.3792074157423961, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2235, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2236, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2237, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2238, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2239, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2240, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2241, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2242, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2243, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2244, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2245, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2246, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2247, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2248, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2249, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2250, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2251, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2252, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2253, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2254, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2255, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2256, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2257, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2258, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2259, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2260, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2261, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2262, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2263, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2264, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2265, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2266, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": 1.329207414997338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2267, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2268, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2269, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2270, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2271, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2272, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2273, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2274, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2275, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2276, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2277, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2278, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2279, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2280, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2281, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2282, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2283, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2284, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2285, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2286, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2287, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2288, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2289, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": 1.27920741425228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2290, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2291, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2292, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2293, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2294, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2295, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2296, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2297, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2298, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2299, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2300, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2301, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2302, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2303, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2304, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2305, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2306, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": 1.229207413507222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2307, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2308, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2309, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2310, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2311, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2312, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2313, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2314, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2315, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2316, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2317, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2318, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2319, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2320, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2321, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": 1.179207412762164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2322, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2323, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2324, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2325, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2326, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2327, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2328, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2329, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2330, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2331, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2332, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2333, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2334, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": 1.1292074120171058, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2335, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2336, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2337, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2338, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2339, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2340, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2341, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2342, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2343, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2344, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2345, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2346, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2347, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2348, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": 1.0792074112720478, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2349, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2350, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2351, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2352, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2353, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2354, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2355, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2356, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2357, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2358, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2359, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": 1.0292074105269897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2360, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2361, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2362, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2363, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2364, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2365, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2366, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2367, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2368, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2369, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2370, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": 0.9792074097819317, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2371, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2372, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2373, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2374, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2375, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2376, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2377, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2378, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2379, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2380, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": 0.9292074090368736, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2381, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2382, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2383, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2384, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2385, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2386, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2387, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2388, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2389, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": 0.8792074082918155, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2390, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2391, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2392, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2393, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2394, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2395, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2396, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2397, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2398, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2399, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": 0.8292074075467575, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2400, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2401, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2402, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2403, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2404, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2405, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2406, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2407, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": 0.7792074068016994, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2408, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2409, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2410, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2411, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2412, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2413, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2414, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2415, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": 0.7292074060566414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2416, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2417, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2418, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2419, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2420, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2421, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2422, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2423, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": 0.6792074053115833, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2424, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2425, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2426, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2427, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2428, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2429, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2430, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2431, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": 0.6292074045665252, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2432, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2433, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2434, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2435, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2436, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2437, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2438, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": 0.5792074038214672, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2439, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2440, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2441, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2442, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2443, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2444, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2445, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": 0.5292074030764091, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2446, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2447, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2448, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2449, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2450, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": 0.47920740233135106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2451, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2452, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2453, "type": 2, "action": 0, "pose": {"position": {"x": 11.543460344961881, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2454, "type": 2, "action": 0, "pose": {"position": {"x": 11.593460345706939, "y": 0.429207401586293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2455, "type": 2, "action": 0, "pose": {"position": {"x": 11.643460346451997, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2456, "type": 2, "action": 0, "pose": {"position": {"x": 11.693460347197055, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2457, "type": 2, "action": 0, "pose": {"position": {"x": 11.743460347942113, "y": 0.37920740084123494, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2458, "type": 2, "action": 0, "pose": {"position": {"x": 11.793460348687171, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2459, "type": 2, "action": 0, "pose": {"position": {"x": 11.84346034943223, "y": 0.3292074000961769, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2460, "type": 2, "action": 0, "pose": {"position": {"x": 11.893460350177287, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2461, "type": 2, "action": 0, "pose": {"position": {"x": 11.943460350922345, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2462, "type": 2, "action": 0, "pose": {"position": {"x": 11.993460351667403, "y": 0.2792073993511188, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2463, "type": 2, "action": 0, "pose": {"position": {"x": 12.043460352412461, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2464, "type": 2, "action": 0, "pose": {"position": {"x": 12.09346035315752, "y": 0.22920739860606076, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2465, "type": 2, "action": 0, "pose": {"position": {"x": 12.143460353902578, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2466, "type": 2, "action": 0, "pose": {"position": {"x": 12.193460354647636, "y": 0.1792073978610027, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2467, "type": 2, "action": 0, "pose": {"position": {"x": 12.243460355392694, "y": 0.12920739711594464, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2468, "type": 2, "action": 0, "pose": {"position": {"x": 12.293460356137752, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2469, "type": 2, "action": 0, "pose": {"position": {"x": 12.34346035688281, "y": 0.07920739637088658, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2470, "type": 2, "action": 0, "pose": {"position": {"x": 12.393460357627868, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2471, "type": 2, "action": 0, "pose": {"position": {"x": 12.443460358372926, "y": 0.029207395625828525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2472, "type": 2, "action": 0, "pose": {"position": {"x": 12.493460359117984, "y": -0.020792605119229535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2473, "type": 2, "action": 0, "pose": {"position": {"x": 12.543460359863042, "y": -0.0707926058642876, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2474, "type": 2, "action": 0, "pose": {"position": {"x": 12.5934603606081, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2475, "type": 2, "action": 0, "pose": {"position": {"x": 12.643460361353158, "y": -0.12079260660934565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2476, "type": 2, "action": 0, "pose": {"position": {"x": 12.693460362098216, "y": -0.1707926073544037, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2477, "type": 2, "action": 0, "pose": {"position": {"x": 12.743460362843274, "y": -0.22079260809946177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2478, "type": 2, "action": 0, "pose": {"position": {"x": 12.793460363588332, "y": -0.27079260884451983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2479, "type": 2, "action": 0, "pose": {"position": {"x": 12.84346036433339, "y": -0.3207926095895779, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2480, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -0.37079261033463595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2481, "type": 2, "action": 0, "pose": {"position": {"x": 12.943460365823507, "y": -0.420792611079694, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2482, "type": 2, "action": 0, "pose": {"position": {"x": 12.993460366568565, "y": -0.47079261182475207, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2483, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -0.5207926125698101, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2484, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -0.5707926133148682, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2485, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -0.6207926140599263, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2486, "type": 2, "action": 0, "pose": {"position": {"x": 13.143460368803739, "y": -0.6707926148049843, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2487, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -0.7207926155500424, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2488, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -0.7707926162951004, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2489, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -0.8207926170401585, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2490, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -0.8707926177852165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2491, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -0.9207926185302746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2492, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -0.9707926192753327, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2493, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -1.0207926200203907, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2494, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -1.0707926207654488, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2495, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -1.1207926215105068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2496, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -1.170792622255565, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2497, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -1.220792623000623, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2498, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.270792623745681, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2499, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.320792624490739, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2500, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -1.3707926252357971, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2501, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -1.4207926259808552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2502, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -1.4707926267259133, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2503, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.5207926274709713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2504, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.5707926282160294, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2505, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -1.6207926289610874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2506, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.6707926297061455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2507, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.7207926304512036, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2508, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.7707926311962616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2509, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -1.8207926319413197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2510, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.8707926326863777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2511, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.9207926334314358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2512, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -1.9707926341764939, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2513, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -2.020792634921552, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2514, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.07079263566661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2515, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.120792636411668, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2516, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.170792637156726, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2517, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.220792637901784, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2518, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.270792638646842, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2519, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.3207926393919003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2520, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -2.3707926401369583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2521, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.4207926408820164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2522, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.4707926416270745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2523, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.5207926423721325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2524, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.5707926431171906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2525, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.6207926438622486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2526, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.6707926446073067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2527, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.7207926453523648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2528, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.770792646097423, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2529, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.820792646842481, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2530, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.870792647587539, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2531, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.920792648332597, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2532, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -2.970792649077655, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2533, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.020792649822713, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2534, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.070792650567771, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2535, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.1207926513128292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2536, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.1707926520578873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2537, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.2207926528029454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2538, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.2707926535480034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2539, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.3207926542930615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2540, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.3707926550381195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2541, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.4207926557831776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2542, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.4707926565282357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2543, "type": 2, "action": 0, "pose": {"position": {"x": 13.793460378489494, "y": -3.5207926572732937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2544, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.5707926580183518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2545, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.62079265876341, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2546, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.670792659508468, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2547, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.720792660253526, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2548, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.770792660998584, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2549, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.820792661743642, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2550, "type": 2, "action": 0, "pose": {"position": {"x": 13.743460377744436, "y": -3.8707926624887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2551, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -3.920792663233758, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2552, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -3.9707926639788163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2553, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.020792664723874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2554, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.070792665468932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2555, "type": 2, "action": 0, "pose": {"position": {"x": 13.693460376999377, "y": -4.12079266621399, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2556, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.1707926669590485, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2557, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.2207926677041065, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2558, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.270792668449165, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2559, "type": 2, "action": 0, "pose": {"position": {"x": 13.64346037625432, "y": -4.320792669194223, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2560, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.370792669939281, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2561, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.420792670684339, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2562, "type": 2, "action": 0, "pose": {"position": {"x": 13.593460375509261, "y": -4.470792671429397, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2563, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.520792672174455, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2564, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.570792672919513, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2565, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.620792673664571, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2566, "type": 2, "action": 0, "pose": {"position": {"x": 13.543460374764203, "y": -4.670792674409629, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2567, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -4.720792675154687, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2568, "type": 2, "action": 0, "pose": {"position": {"x": 13.493460374019145, "y": -4.770792675899745, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2569, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.820792676644803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2570, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.870792677389861, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2571, "type": 2, "action": 0, "pose": {"position": {"x": 13.443460373274087, "y": -4.920792678134919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2572, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -4.9707926788799774, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2573, "type": 2, "action": 0, "pose": {"position": {"x": 13.393460372529029, "y": -5.0207926796250355, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2574, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.070792680370094, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2575, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.120792681115152, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2576, "type": 2, "action": 0, "pose": {"position": {"x": 13.343460371783971, "y": -5.17079268186021, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2577, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -5.220792682605268, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2578, "type": 2, "action": 0, "pose": {"position": {"x": 13.293460371038913, "y": -5.270792683350326, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2579, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -5.320792684095384, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2580, "type": 2, "action": 0, "pose": {"position": {"x": 13.243460370293855, "y": -5.370792684840442, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2581, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -5.4207926855855, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2582, "type": 2, "action": 0, "pose": {"position": {"x": 13.193460369548797, "y": -5.470792686330558, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2583, "type": 2, "action": 0, "pose": {"position": {"x": 13.143460368803739, "y": -5.520792687075616, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2584, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -5.570792687820674, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2585, "type": 2, "action": 0, "pose": {"position": {"x": 13.09346036805868, "y": -5.620792688565732, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2586, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -5.67079268931079, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2587, "type": 2, "action": 0, "pose": {"position": {"x": 13.043460367313623, "y": -5.720792690055848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2588, "type": 2, "action": 0, "pose": {"position": {"x": 12.993460366568565, "y": -5.770792690800906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2589, "type": 2, "action": 0, "pose": {"position": {"x": 12.943460365823507, "y": -5.8207926915459645, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2590, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -5.8707926922910225, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2591, "type": 2, "action": 0, "pose": {"position": {"x": 12.893460365078449, "y": -5.920792693036081, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2592, "type": 2, "action": 0, "pose": {"position": {"x": 12.84346036433339, "y": -5.970792693781139, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2593, "type": 2, "action": 0, "pose": {"position": {"x": 12.793460363588332, "y": -6.020792694526197, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2594, "type": 2, "action": 0, "pose": {"position": {"x": 12.743460362843274, "y": -6.070792695271255, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2595, "type": 2, "action": 0, "pose": {"position": {"x": 12.693460362098216, "y": -6.120792696016313, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2596, "type": 2, "action": 0, "pose": {"position": {"x": 12.643460361353158, "y": -6.170792696761371, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2597, "type": 2, "action": 0, "pose": {"position": {"x": 12.5934603606081, "y": -6.220792697506429, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2598, "type": 2, "action": 0, "pose": {"position": {"x": 12.543460359863042, "y": -6.270792698251487, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2599, "type": 2, "action": 0, "pose": {"position": {"x": 12.493460359117984, "y": -6.320792698996545, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2600, "type": 2, "action": 0, "pose": {"position": {"x": 12.443460358372926, "y": -6.370792699741603, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2601, "type": 2, "action": 0, "pose": {"position": {"x": 12.393460357627868, "y": -6.420792700486661, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2602, "type": 2, "action": 0, "pose": {"position": {"x": 12.34346035688281, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2603, "type": 2, "action": 0, "pose": {"position": {"x": 12.293460356137752, "y": -6.470792701231719, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2604, "type": 2, "action": 0, "pose": {"position": {"x": 12.243460355392694, "y": -6.520792701976777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2605, "type": 2, "action": 0, "pose": {"position": {"x": 12.193460354647636, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2606, "type": 2, "action": 0, "pose": {"position": {"x": 12.143460353902578, "y": -6.570792702721835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2607, "type": 2, "action": 0, "pose": {"position": {"x": 12.09346035315752, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2608, "type": 2, "action": 0, "pose": {"position": {"x": 12.043460352412461, "y": -6.620792703466893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2609, "type": 2, "action": 0, "pose": {"position": {"x": 11.993460351667403, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2610, "type": 2, "action": 0, "pose": {"position": {"x": 11.943460350922345, "y": -6.6707927042119515, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2611, "type": 2, "action": 0, "pose": {"position": {"x": 11.893460350177287, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2612, "type": 2, "action": 0, "pose": {"position": {"x": 11.84346034943223, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2613, "type": 2, "action": 0, "pose": {"position": {"x": 11.793460348687171, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2614, "type": 2, "action": 0, "pose": {"position": {"x": 11.743460347942113, "y": -6.7207927049570095, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2615, "type": 2, "action": 0, "pose": {"position": {"x": 11.693460347197055, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2616, "type": 2, "action": 0, "pose": {"position": {"x": 11.643460346451997, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2617, "type": 2, "action": 0, "pose": {"position": {"x": 11.593460345706939, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2618, "type": 2, "action": 0, "pose": {"position": {"x": 11.543460344961881, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2619, "type": 2, "action": 0, "pose": {"position": {"x": 11.493460344216823, "y": -6.770792705702068, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2620, "type": 2, "action": 0, "pose": {"position": {"x": 11.443460343471765, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2621, "type": 2, "action": 0, "pose": {"position": {"x": 11.393460342726707, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2622, "type": 2, "action": 0, "pose": {"position": {"x": 11.343460341981649, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2623, "type": 2, "action": 0, "pose": {"position": {"x": 11.29346034123659, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2624, "type": 2, "action": 0, "pose": {"position": {"x": 11.243460340491533, "y": -6.820792706447126, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2625, "type": 2, "action": 0, "pose": {"position": {"x": 11.193460339746474, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2626, "type": 2, "action": 0, "pose": {"position": {"x": 11.143460339001416, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2627, "type": 2, "action": 0, "pose": {"position": {"x": 11.093460338256358, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2628, "type": 2, "action": 0, "pose": {"position": {"x": 11.0434603375113, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2629, "type": 2, "action": 0, "pose": {"position": {"x": 10.993460336766242, "y": -6.870792707192184, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2630, "type": 2, "action": 0, "pose": {"position": {"x": 10.943460336021184, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2631, "type": 2, "action": 0, "pose": {"position": {"x": 10.893460335276126, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2632, "type": 2, "action": 0, "pose": {"position": {"x": 10.843460334531068, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2633, "type": 2, "action": 0, "pose": {"position": {"x": 10.79346033378601, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2634, "type": 2, "action": 0, "pose": {"position": {"x": 10.743460333040952, "y": -6.920792707937242, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2635, "type": 2, "action": 0, "pose": {"position": {"x": 10.693460332295894, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2636, "type": 2, "action": 0, "pose": {"position": {"x": 10.643460331550836, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2637, "type": 2, "action": 0, "pose": {"position": {"x": 10.593460330805778, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2638, "type": 2, "action": 0, "pose": {"position": {"x": 10.54346033006072, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2639, "type": 2, "action": 0, "pose": {"position": {"x": 10.493460329315662, "y": -6.9707927086823, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2640, "type": 2, "action": 0, "pose": {"position": {"x": 10.443460328570604, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2641, "type": 2, "action": 0, "pose": {"position": {"x": 10.393460327825546, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2642, "type": 2, "action": 0, "pose": {"position": {"x": 10.343460327080487, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2643, "type": 2, "action": 0, "pose": {"position": {"x": 10.29346032633543, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2644, "type": 2, "action": 0, "pose": {"position": {"x": 10.243460325590371, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2645, "type": 2, "action": 0, "pose": {"position": {"x": 10.193460324845313, "y": -7.020792709427358, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2646, "type": 2, "action": 0, "pose": {"position": {"x": 10.143460324100255, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2647, "type": 2, "action": 0, "pose": {"position": {"x": 10.093460323355197, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2648, "type": 2, "action": 0, "pose": {"position": {"x": 10.043460322610139, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2649, "type": 2, "action": 0, "pose": {"position": {"x": 9.993460321865081, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2650, "type": 2, "action": 0, "pose": {"position": {"x": 9.943460321120023, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2651, "type": 2, "action": 0, "pose": {"position": {"x": 9.893460320374965, "y": -7.070792710172416, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2652, "type": 2, "action": 0, "pose": {"position": {"x": 9.843460319629907, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2653, "type": 2, "action": 0, "pose": {"position": {"x": 9.793460318884849, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2654, "type": 2, "action": 0, "pose": {"position": {"x": 9.74346031813979, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2655, "type": 2, "action": 0, "pose": {"position": {"x": 9.693460317394733, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2656, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2657, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -7.120792710917474, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2658, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2659, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2660, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2661, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2662, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2663, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -7.170792711662532, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2664, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2665, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2666, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2667, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2668, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2669, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2670, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -7.22079271240759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2671, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2672, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2673, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2674, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2675, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2676, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2677, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -7.270792713152648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2678, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2679, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2680, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2681, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2682, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2683, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2684, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2685, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2686, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -7.320792713897706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2687, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2688, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2689, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2690, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2691, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2692, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2693, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2694, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2695, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -7.370792714642764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2696, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2697, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2698, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2699, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2700, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2701, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2702, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2703, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2704, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2705, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2706, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2707, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -7.420792715387822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2708, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2709, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2710, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2711, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2712, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2713, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2714, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2715, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2716, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2717, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2718, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2719, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2720, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2721, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -7.47079271613288, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2722, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2723, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2724, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2725, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2726, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2727, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2728, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2729, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2730, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2731, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2732, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2733, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2734, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2735, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2736, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2737, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2738, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2739, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -7.5207927168779385, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2740, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2741, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2742, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2743, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2744, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2745, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2746, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2747, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2748, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2749, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2750, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2751, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2752, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2753, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2754, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2755, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2756, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2757, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2758, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2759, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2760, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2761, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2762, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2763, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -7.5707927176229965, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2764, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2765, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2766, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2767, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2768, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2769, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2770, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2771, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2772, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2773, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2774, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2775, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2776, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2777, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2778, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2779, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2780, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2781, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2782, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2783, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -7.620792718368055, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2784, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2785, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2786, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2787, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2788, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2789, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -7.670792719113113, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2790, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2791, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2792, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -7.720792719858171, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2793, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2794, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2795, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -7.770792720603229, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2796, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2797, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -7.820792721348287, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2798, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -7.870792722093345, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2799, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2800, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -7.920792722838403, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2801, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -7.970792723583461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2802, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -8.020792724328519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2803, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.070792725073577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2804, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.120792725818635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2805, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.170792726563693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2806, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.220792727308751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2807, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.27079272805381, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2808, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.320792728798867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2809, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.370792729543926, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2810, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -8.420792730288984, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2811, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.470792731034042, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2812, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -8.5207927317791, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2813, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -8.570792732524158, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2814, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -8.620792733269216, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2815, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -8.670792734014274, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2816, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2817, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -8.720792734759332, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2818, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2819, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -8.77079273550439, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2820, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2821, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -8.820792736249448, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2822, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2823, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -8.870792736994506, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2824, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2825, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2826, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -8.920792737739564, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2827, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2828, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2829, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2830, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -8.970792738484622, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2831, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2832, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2833, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2834, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2835, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -9.02079273922968, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2836, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2837, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2838, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2839, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2840, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2841, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2842, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -9.070792739974738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2843, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2844, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2845, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2846, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2847, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2848, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2849, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -9.120792740719796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2850, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2851, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2852, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2853, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2854, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2855, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -9.170792741464854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2856, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2857, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2858, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2859, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2860, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2861, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2862, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -9.220792742209913, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2863, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2864, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2865, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2866, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2867, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2868, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -9.27079274295497, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2869, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2870, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2871, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2872, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2873, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2874, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2875, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -9.320792743700029, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2876, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2877, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2878, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2879, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2880, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2881, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -9.370792744445087, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2882, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2883, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2884, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2885, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2886, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2887, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2888, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -9.420792745190145, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2889, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2890, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2891, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2892, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2893, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2894, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -9.470792745935203, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2895, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2896, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2897, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2898, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2899, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2900, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2901, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -9.52079274668026, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2902, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2903, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2904, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2905, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2906, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2907, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -9.570792747425319, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2908, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2909, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2910, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2911, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2912, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2913, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2914, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -9.620792748170377, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2915, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2916, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2917, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2918, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2919, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2920, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -9.670792748915435, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2921, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2922, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2923, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2924, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -9.720792749660493, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2925, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2926, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2927, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -9.770792750405551, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2928, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2929, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2930, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -9.82079275115061, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2931, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -9.870792751895667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2932, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2933, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -9.920792752640725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2934, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2935, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -9.970792753385783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2936, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -10.020792754130841, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2937, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -10.0707927548759, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2938, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2939, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -10.120792755620958, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2940, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -10.170792756366016, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2941, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -10.220792757111074, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2942, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -10.270792757856132, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2943, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -10.32079275860119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2944, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -10.370792759346248, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2945, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -10.420792760091306, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2946, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -10.470792760836364, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2947, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -10.520792761581422, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2948, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -10.57079276232648, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2949, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -10.620792763071538, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2950, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -10.670792763816596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2951, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -10.720792764561654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2952, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -10.770792765306712, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2953, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -10.82079276605177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2954, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -10.870792766796828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2955, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -10.920792767541887, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2956, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -10.970792768286945, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2957, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -11.020792769032003, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2958, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -11.07079276977706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2959, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -11.120792770522119, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2960, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.170792771267177, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2961, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.220792772012235, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2962, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -11.270792772757293, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2963, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.320792773502351, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2964, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.370792774247409, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2965, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -11.420792774992467, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2966, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.470792775737525, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2967, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.520792776482583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2968, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.570792777227641, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2969, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -11.6207927779727, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2970, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.670792778717757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2971, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.720792779462816, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2972, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.770792780207874, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2973, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.820792780952932, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2974, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -11.87079278169799, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2975, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -11.920792782443048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2976, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -11.970792783188106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2977, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.020792783933164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2978, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.070792784678222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2979, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.12079278542328, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2980, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.170792786168338, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2981, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -12.220792786913396, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2982, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.270792787658454, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2983, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.320792788403512, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2984, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.37079278914857, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2985, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.420792789893628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2986, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.470792790638686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2987, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.520792791383744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2988, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.570792792128803, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2989, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.62079279287386, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2990, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.670792793618919, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2991, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.720792794363977, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2992, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.770792795109035, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2993, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.820792795854093, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2994, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.87079279659915, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2995, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.920792797344209, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2996, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -12.970792798089267, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2997, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.020792798834325, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2998, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.070792799579383, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 2999, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.120792800324441, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3000, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.1707928010695, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3001, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.220792801814557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3002, "type": 2, "action": 0, "pose": {"position": {"x": 9.643460316649675, "y": -13.270792802559615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3003, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.320792803304673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3004, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.370792804049731, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3005, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.42079280479479, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3006, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.470792805539848, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3007, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.520792806284906, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3008, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.570792807029964, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3009, "type": 2, "action": 0, "pose": {"position": {"x": 9.593460315904617, "y": -13.620792807775022, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3010, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.67079280852008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3011, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.720792809265138, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3012, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.770792810010196, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3013, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.820792810755254, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3014, "type": 2, "action": 0, "pose": {"position": {"x": 9.543460315159559, "y": -13.870792811500312, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3015, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -13.92079281224537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3016, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -13.970792812990428, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3017, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -14.020792813735486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3018, "type": 2, "action": 0, "pose": {"position": {"x": 9.4934603144145, "y": -14.070792814480544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3019, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.120792815225602, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3020, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.17079281597066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3021, "type": 2, "action": 0, "pose": {"position": {"x": 9.443460313669442, "y": -14.220792816715718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3022, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.270792817460777, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3023, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.320792818205835, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3024, "type": 2, "action": 0, "pose": {"position": {"x": 9.393460312924384, "y": -14.370792818950893, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3025, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.42079281969595, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3026, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.470792820441009, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3027, "type": 2, "action": 0, "pose": {"position": {"x": 9.343460312179326, "y": -14.520792821186067, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3028, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -14.570792821931125, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3029, "type": 2, "action": 0, "pose": {"position": {"x": 9.293460311434268, "y": -14.620792822676183, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3030, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.670792823421241, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3031, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.720792824166299, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3032, "type": 2, "action": 0, "pose": {"position": {"x": 9.24346031068921, "y": -14.770792824911357, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3033, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -14.820792825656415, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3034, "type": 2, "action": 0, "pose": {"position": {"x": 9.193460309944152, "y": -14.870792826401473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3035, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -14.920792827146531, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3036, "type": 2, "action": 0, "pose": {"position": {"x": 9.143460309199094, "y": -14.97079282789159, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3037, "type": 2, "action": 0, "pose": {"position": {"x": 9.093460308454036, "y": -15.020792828636647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3038, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -15.070792829381706, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3039, "type": 2, "action": 0, "pose": {"position": {"x": 9.043460307708978, "y": -15.120792830126764, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3040, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -15.170792830871822, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3041, "type": 2, "action": 0, "pose": {"position": {"x": 8.99346030696392, "y": -15.22079283161688, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3042, "type": 2, "action": 0, "pose": {"position": {"x": 8.943460306218862, "y": -15.270792832361938, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3043, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -15.320792833106996, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3044, "type": 2, "action": 0, "pose": {"position": {"x": 8.893460305473804, "y": -15.370792833852054, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3045, "type": 2, "action": 0, "pose": {"position": {"x": 8.843460304728746, "y": -15.420792834597112, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3046, "type": 2, "action": 0, "pose": {"position": {"x": 8.793460303983688, "y": -15.47079283534217, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3047, "type": 2, "action": 0, "pose": {"position": {"x": 8.74346030323863, "y": -15.520792836087228, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3048, "type": 2, "action": 0, "pose": {"position": {"x": 8.693460302493571, "y": -15.570792836832286, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3049, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -15.620792837577344, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3050, "type": 2, "action": 0, "pose": {"position": {"x": 8.643460301748513, "y": -15.670792838322402, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3051, "type": 2, "action": 0, "pose": {"position": {"x": 8.593460301003455, "y": -15.72079283906746, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3052, "type": 2, "action": 0, "pose": {"position": {"x": 8.543460300258397, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3053, "type": 2, "action": 0, "pose": {"position": {"x": 8.49346029951334, "y": -15.770792839812518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3054, "type": 2, "action": 0, "pose": {"position": {"x": 8.443460298768281, "y": -15.820792840557576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3055, "type": 2, "action": 0, "pose": {"position": {"x": 8.393460298023223, "y": -15.870792841302634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3056, "type": 2, "action": 0, "pose": {"position": {"x": 8.343460297278165, "y": -15.920792842047693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3057, "type": 2, "action": 0, "pose": {"position": {"x": 8.293460296533107, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3058, "type": 2, "action": 0, "pose": {"position": {"x": 8.243460295788049, "y": -15.97079284279275, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3059, "type": 2, "action": 0, "pose": {"position": {"x": 8.193460295042991, "y": -16.02079284353781, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3060, "type": 2, "action": 0, "pose": {"position": {"x": 8.143460294297933, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3061, "type": 2, "action": 0, "pose": {"position": {"x": 8.093460293552875, "y": -16.070792844282867, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3062, "type": 2, "action": 0, "pose": {"position": {"x": 8.043460292807817, "y": -16.120792845027925, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3063, "type": 2, "action": 0, "pose": {"position": {"x": 7.993460292062759, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3064, "type": 2, "action": 0, "pose": {"position": {"x": 7.943460291317701, "y": -16.170792845772983, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3065, "type": 2, "action": 0, "pose": {"position": {"x": 7.8934602905726425, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3066, "type": 2, "action": 0, "pose": {"position": {"x": 7.8434602898275845, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3067, "type": 2, "action": 0, "pose": {"position": {"x": 7.793460289082526, "y": -16.22079284651804, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3068, "type": 2, "action": 0, "pose": {"position": {"x": 7.743460288337468, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3069, "type": 2, "action": 0, "pose": {"position": {"x": 7.69346028759241, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3070, "type": 2, "action": 0, "pose": {"position": {"x": 7.643460286847352, "y": -16.2707928472631, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3071, "type": 2, "action": 0, "pose": {"position": {"x": 7.593460286102294, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3072, "type": 2, "action": 0, "pose": {"position": {"x": 7.543460285357236, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3073, "type": 2, "action": 0, "pose": {"position": {"x": 7.493460284612178, "y": -16.320792848008157, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3074, "type": 2, "action": 0, "pose": {"position": {"x": 7.44346028386712, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3075, "type": 2, "action": 0, "pose": {"position": {"x": 7.393460283122062, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3076, "type": 2, "action": 0, "pose": {"position": {"x": 7.343460282377004, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3077, "type": 2, "action": 0, "pose": {"position": {"x": 7.293460281631946, "y": -16.370792848753215, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3078, "type": 2, "action": 0, "pose": {"position": {"x": 7.243460280886888, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3079, "type": 2, "action": 0, "pose": {"position": {"x": 7.19346028014183, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3080, "type": 2, "action": 0, "pose": {"position": {"x": 7.143460279396772, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3081, "type": 2, "action": 0, "pose": {"position": {"x": 7.093460278651714, "y": -16.420792849498273, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3082, "type": 2, "action": 0, "pose": {"position": {"x": 7.0434602779066555, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3083, "type": 2, "action": 0, "pose": {"position": {"x": 6.9934602771615975, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3084, "type": 2, "action": 0, "pose": {"position": {"x": 6.943460276416539, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3085, "type": 2, "action": 0, "pose": {"position": {"x": 6.893460275671481, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3086, "type": 2, "action": 0, "pose": {"position": {"x": 6.843460274926423, "y": -16.47079285024333, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3087, "type": 2, "action": 0, "pose": {"position": {"x": 6.793460274181365, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3088, "type": 2, "action": 0, "pose": {"position": {"x": 6.743460273436307, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3089, "type": 2, "action": 0, "pose": {"position": {"x": 6.693460272691249, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3090, "type": 2, "action": 0, "pose": {"position": {"x": 6.643460271946191, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3091, "type": 2, "action": 0, "pose": {"position": {"x": 6.593460271201133, "y": -16.52079285098839, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3092, "type": 2, "action": 0, "pose": {"position": {"x": 6.543460270456075, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3093, "type": 2, "action": 0, "pose": {"position": {"x": 6.493460269711017, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3094, "type": 2, "action": 0, "pose": {"position": {"x": 6.443460268965959, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3095, "type": 2, "action": 0, "pose": {"position": {"x": 6.393460268220901, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3096, "type": 2, "action": 0, "pose": {"position": {"x": 6.343460267475843, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3097, "type": 2, "action": 0, "pose": {"position": {"x": 6.293460266730785, "y": -16.570792851733447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3098, "type": 2, "action": 0, "pose": {"position": {"x": 6.243460265985727, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3099, "type": 2, "action": 0, "pose": {"position": {"x": 6.1934602652406685, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3100, "type": 2, "action": 0, "pose": {"position": {"x": 6.1434602644956104, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3101, "type": 2, "action": 0, "pose": {"position": {"x": 6.093460263750552, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3102, "type": 2, "action": 0, "pose": {"position": {"x": 6.043460263005494, "y": -16.620792852478505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3103, "type": 2, "action": 0, "pose": {"position": {"x": 5.993460262260436, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3104, "type": 2, "action": 0, "pose": {"position": {"x": 5.943460261515378, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3105, "type": 2, "action": 0, "pose": {"position": {"x": 5.89346026077032, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3106, "type": 2, "action": 0, "pose": {"position": {"x": 5.843460260025262, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3107, "type": 2, "action": 0, "pose": {"position": {"x": 5.793460259280204, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3108, "type": 2, "action": 0, "pose": {"position": {"x": 5.743460258535146, "y": -16.670792853223563, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3109, "type": 2, "action": 0, "pose": {"position": {"x": 5.693460257790088, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3110, "type": 2, "action": 0, "pose": {"position": {"x": 5.64346025704503, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3111, "type": 2, "action": 0, "pose": {"position": {"x": 5.593460256299972, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3112, "type": 2, "action": 0, "pose": {"position": {"x": 5.543460255554914, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3113, "type": 2, "action": 0, "pose": {"position": {"x": 5.493460254809856, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3114, "type": 2, "action": 0, "pose": {"position": {"x": 5.443460254064798, "y": -16.72079285396862, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3115, "type": 2, "action": 0, "pose": {"position": {"x": 5.3934602533197396, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3116, "type": 2, "action": 0, "pose": {"position": {"x": 5.3434602525746815, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3117, "type": 2, "action": 0, "pose": {"position": {"x": 5.293460251829623, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3118, "type": 2, "action": 0, "pose": {"position": {"x": 5.243460251084565, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3119, "type": 2, "action": 0, "pose": {"position": {"x": 5.193460250339507, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3120, "type": 2, "action": 0, "pose": {"position": {"x": 5.143460249594449, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3121, "type": 2, "action": 0, "pose": {"position": {"x": 5.093460248849391, "y": -16.77079285471368, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3122, "type": 2, "action": 0, "pose": {"position": {"x": 5.043460248104333, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3123, "type": 2, "action": 0, "pose": {"position": {"x": 4.993460247359275, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3124, "type": 2, "action": 0, "pose": {"position": {"x": 4.943460246614217, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3125, "type": 2, "action": 0, "pose": {"position": {"x": 4.893460245869159, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3126, "type": 2, "action": 0, "pose": {"position": {"x": 4.843460245124101, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3127, "type": 2, "action": 0, "pose": {"position": {"x": 4.793460244379043, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3128, "type": 2, "action": 0, "pose": {"position": {"x": 4.743460243633985, "y": -16.820792855458738, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3129, "type": 2, "action": 0, "pose": {"position": {"x": 4.693460242888927, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3130, "type": 2, "action": 0, "pose": {"position": {"x": 4.643460242143869, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3131, "type": 2, "action": 0, "pose": {"position": {"x": 4.593460241398811, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3132, "type": 2, "action": 0, "pose": {"position": {"x": 4.5434602406537525, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3133, "type": 2, "action": 0, "pose": {"position": {"x": 4.4934602399086945, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3134, "type": 2, "action": 0, "pose": {"position": {"x": 4.443460239163636, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3135, "type": 2, "action": 0, "pose": {"position": {"x": 4.393460238418578, "y": -16.870792856203796, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3136, "type": 2, "action": 0, "pose": {"position": {"x": 4.34346023767352, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3137, "type": 2, "action": 0, "pose": {"position": {"x": 4.293460236928462, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3138, "type": 2, "action": 0, "pose": {"position": {"x": 4.243460236183404, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3139, "type": 2, "action": 0, "pose": {"position": {"x": 4.193460235438346, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3140, "type": 2, "action": 0, "pose": {"position": {"x": 4.143460234693288, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3141, "type": 2, "action": 0, "pose": {"position": {"x": 4.09346023394823, "y": -16.920792856948854, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3142, "type": 2, "action": 0, "pose": {"position": {"x": 4.043460233203172, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3143, "type": 2, "action": 0, "pose": {"position": {"x": 3.993460232458114, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3144, "type": 2, "action": 0, "pose": {"position": {"x": 3.943460231713056, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3145, "type": 2, "action": 0, "pose": {"position": {"x": 3.8934602309679978, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3146, "type": 2, "action": 0, "pose": {"position": {"x": 3.8434602302229397, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3147, "type": 2, "action": 0, "pose": {"position": {"x": 3.7934602294778816, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3148, "type": 2, "action": 0, "pose": {"position": {"x": 3.7434602287328236, "y": -16.97079285769391, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3149, "type": 2, "action": 0, "pose": {"position": {"x": 3.6934602279877655, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3150, "type": 2, "action": 0, "pose": {"position": {"x": 3.6434602272427075, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3151, "type": 2, "action": 0, "pose": {"position": {"x": 3.5934602264976494, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3152, "type": 2, "action": 0, "pose": {"position": {"x": 3.5434602257525913, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3153, "type": 2, "action": 0, "pose": {"position": {"x": 3.4934602250075333, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3154, "type": 2, "action": 0, "pose": {"position": {"x": 3.4434602242624752, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3155, "type": 2, "action": 0, "pose": {"position": {"x": 3.393460223517417, "y": -17.02079285843897, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3156, "type": 2, "action": 0, "pose": {"position": {"x": 3.343460222772359, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3157, "type": 2, "action": 0, "pose": {"position": {"x": 3.293460222027301, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3158, "type": 2, "action": 0, "pose": {"position": {"x": 3.243460221282243, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3159, "type": 2, "action": 0, "pose": {"position": {"x": 3.193460220537185, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3160, "type": 2, "action": 0, "pose": {"position": {"x": 3.143460219792127, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3161, "type": 2, "action": 0, "pose": {"position": {"x": 3.093460219047069, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3162, "type": 2, "action": 0, "pose": {"position": {"x": 3.0434602183020107, "y": -17.070792859184028, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3163, "type": 2, "action": 0, "pose": {"position": {"x": 2.9934602175569527, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3164, "type": 2, "action": 0, "pose": {"position": {"x": 2.9434602168118946, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3165, "type": 2, "action": 0, "pose": {"position": {"x": 2.8934602160668366, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3166, "type": 2, "action": 0, "pose": {"position": {"x": 2.8434602153217785, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3167, "type": 2, "action": 0, "pose": {"position": {"x": 2.7934602145767204, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3168, "type": 2, "action": 0, "pose": {"position": {"x": 2.7434602138316624, "y": -17.120792859929086, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3169, "type": 2, "action": 0, "pose": {"position": {"x": 2.6934602130866043, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3170, "type": 2, "action": 0, "pose": {"position": {"x": 2.6434602123415463, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3171, "type": 2, "action": 0, "pose": {"position": {"x": 2.593460211596488, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3172, "type": 2, "action": 0, "pose": {"position": {"x": 2.54346021085143, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3173, "type": 2, "action": 0, "pose": {"position": {"x": 2.493460210106372, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3174, "type": 2, "action": 0, "pose": {"position": {"x": 2.443460209361314, "y": -17.170792860674144, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3175, "type": 2, "action": 0, "pose": {"position": {"x": 2.393460208616256, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3176, "type": 2, "action": 0, "pose": {"position": {"x": 2.343460207871198, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3177, "type": 2, "action": 0, "pose": {"position": {"x": 2.29346020712614, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3178, "type": 2, "action": 0, "pose": {"position": {"x": 2.243460206381082, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3179, "type": 2, "action": 0, "pose": {"position": {"x": 2.1934602056360237, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3180, "type": 2, "action": 0, "pose": {"position": {"x": 2.1434602048909657, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3181, "type": 2, "action": 0, "pose": {"position": {"x": 2.0934602041459076, "y": -17.220792861419202, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3182, "type": 2, "action": 0, "pose": {"position": {"x": 2.0434602034008496, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3183, "type": 2, "action": 0, "pose": {"position": {"x": 1.9934602026557915, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3184, "type": 2, "action": 0, "pose": {"position": {"x": 1.9434602019107334, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3185, "type": 2, "action": 0, "pose": {"position": {"x": 1.8934602011656754, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3186, "type": 2, "action": 0, "pose": {"position": {"x": 1.8434602004206173, "y": -17.27079286216426, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3187, "type": 2, "action": 0, "pose": {"position": {"x": 1.7934601996755593, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3188, "type": 2, "action": 0, "pose": {"position": {"x": 1.7434601989305012, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3189, "type": 2, "action": 0, "pose": {"position": {"x": 1.6934601981854431, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3190, "type": 2, "action": 0, "pose": {"position": {"x": 1.643460197440385, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3191, "type": 2, "action": 0, "pose": {"position": {"x": 1.593460196695327, "y": -17.320792862909318, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3192, "type": 2, "action": 0, "pose": {"position": {"x": 1.543460195950269, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3193, "type": 2, "action": 0, "pose": {"position": {"x": 1.493460195205211, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3194, "type": 2, "action": 0, "pose": {"position": {"x": 1.4434601944601528, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3195, "type": 2, "action": 0, "pose": {"position": {"x": 1.3934601937150948, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3196, "type": 2, "action": 0, "pose": {"position": {"x": 1.3434601929700367, "y": -17.370792863654376, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3197, "type": 2, "action": 0, "pose": {"position": {"x": 1.2934601922249787, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3198, "type": 2, "action": 0, "pose": {"position": {"x": 1.2434601914799206, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3199, "type": 2, "action": 0, "pose": {"position": {"x": 1.1934601907348625, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3200, "type": 2, "action": 0, "pose": {"position": {"x": 1.1434601899898045, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3201, "type": 2, "action": 0, "pose": {"position": {"x": 1.0934601892447464, "y": -17.420792864399434, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3202, "type": 2, "action": 0, "pose": {"position": {"x": 1.0434601884996884, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3203, "type": 2, "action": 0, "pose": {"position": {"x": 0.9934601877546303, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3204, "type": 2, "action": 0, "pose": {"position": {"x": 0.9434601870095722, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3205, "type": 2, "action": 0, "pose": {"position": {"x": 0.8934601862645142, "y": -17.470792865144492, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3206, "type": 2, "action": 0, "pose": {"position": {"x": 0.8434601855194561, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3207, "type": 2, "action": 0, "pose": {"position": {"x": 0.7934601847743981, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3208, "type": 2, "action": 0, "pose": {"position": {"x": 0.74346018402934, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3209, "type": 2, "action": 0, "pose": {"position": {"x": 0.6934601832842819, "y": -17.52079286588955, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3210, "type": 2, "action": 0, "pose": {"position": {"x": 0.6434601825392239, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3211, "type": 2, "action": 0, "pose": {"position": {"x": 0.5934601817941658, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3212, "type": 2, "action": 0, "pose": {"position": {"x": 0.5434601810491078, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3213, "type": 2, "action": 0, "pose": {"position": {"x": 0.4934601803040497, "y": -17.57079286663461, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3214, "type": 2, "action": 0, "pose": {"position": {"x": 0.44346017955899164, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3215, "type": 2, "action": 0, "pose": {"position": {"x": 0.3934601788139336, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3216, "type": 2, "action": 0, "pose": {"position": {"x": 0.3434601780688755, "y": -17.620792867379667, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3217, "type": 2, "action": 0, "pose": {"position": {"x": 0.29346017732381746, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3218, "type": 2, "action": 0, "pose": {"position": {"x": 0.2434601765787594, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3219, "type": 2, "action": 0, "pose": {"position": {"x": 0.19346017583370134, "y": -17.670792868124725, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3220, "type": 2, "action": 0, "pose": {"position": {"x": 0.14346017508864328, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3221, "type": 2, "action": 0, "pose": {"position": {"x": 0.09346017434358522, "y": -17.720792868869783, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3222, "type": 2, "action": 0, "pose": {"position": {"x": 0.04346017359852716, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3223, "type": 2, "action": 0, "pose": {"position": {"x": -0.006539827146530897, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3224, "type": 2, "action": 0, "pose": {"position": {"x": -0.056539827891588956, "y": -17.77079286961484, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3225, "type": 2, "action": 0, "pose": {"position": {"x": -0.10653982863664702, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3226, "type": 2, "action": 0, "pose": {"position": {"x": -0.15653982938170508, "y": -17.8207928703599, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3227, "type": 2, "action": 0, "pose": {"position": {"x": -0.20653983012676314, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3228, "type": 2, "action": 0, "pose": {"position": {"x": -0.2565398308718212, "y": -17.870792871104957, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3229, "type": 2, "action": 0, "pose": {"position": {"x": -0.30653983161687925, "y": -17.920792871850015, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3230, "type": 2, "action": 0, "pose": {"position": {"x": -0.3565398323619373, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3231, "type": 2, "action": 0, "pose": {"position": {"x": -0.4065398331069954, "y": -17.970792872595073, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3232, "type": 2, "action": 0, "pose": {"position": {"x": -0.45653983385205343, "y": -18.02079287334013, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3233, "type": 2, "action": 0, "pose": {"position": {"x": -0.5065398345971115, "y": -18.07079287408519, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3234, "type": 2, "action": 0, "pose": {"position": {"x": -0.5565398353421696, "y": -18.120792874830247, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3235, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -18.170792875575305, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3236, "type": 2, "action": 0, "pose": {"position": {"x": -0.6065398360872276, "y": -18.220792876320363, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3237, "type": 2, "action": 0, "pose": {"position": {"x": -0.6565398368322857, "y": -18.27079287706542, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3238, "type": 2, "action": 0, "pose": {"position": {"x": -0.7065398375773437, "y": -18.32079287781048, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3239, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -18.370792878555537, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3240, "type": 2, "action": 0, "pose": {"position": {"x": -0.7565398383224018, "y": -18.420792879300596, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3241, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -18.470792880045654, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3242, "type": 2, "action": 0, "pose": {"position": {"x": -0.8065398390674599, "y": -18.52079288079071, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3243, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -18.57079288153577, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3244, "type": 2, "action": 0, "pose": {"position": {"x": -0.8565398398125179, "y": -18.620792882280828, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3245, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -18.670792883025886, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3246, "type": 2, "action": 0, "pose": {"position": {"x": -0.906539840557576, "y": -18.720792883770944, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3247, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -18.770792884516002, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3248, "type": 2, "action": 0, "pose": {"position": {"x": -0.956539841302634, "y": -18.82079288526106, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3249, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -18.870792886006118, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3250, "type": 2, "action": 0, "pose": {"position": {"x": -1.006539842047692, "y": -18.920792886751176, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3251, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -18.970792887496234, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3252, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -19.020792888241292, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3253, "type": 2, "action": 0, "pose": {"position": {"x": -1.0565398427927502, "y": -19.07079288898635, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3254, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -19.12079288973141, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3255, "type": 2, "action": 0, "pose": {"position": {"x": -1.1065398435378082, "y": -19.170792890476466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3256, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.220792891221524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3257, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.270792891966583, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3258, "type": 2, "action": 0, "pose": {"position": {"x": -1.1565398442828663, "y": -19.32079289271164, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3259, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.3707928934567, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3260, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.420792894201757, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3261, "type": 2, "action": 0, "pose": {"position": {"x": -1.2065398450279243, "y": -19.470792894946815, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3262, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.520792895691873, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3263, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.57079289643693, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3264, "type": 2, "action": 0, "pose": {"position": {"x": -1.2565398457729824, "y": -19.62079289718199, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3265, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.670792897927047, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3266, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.720792898672105, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3267, "type": 2, "action": 0, "pose": {"position": {"x": -1.3065398465180404, "y": -19.770792899417163, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3268, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.82079290016222, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3269, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.87079290090728, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3270, "type": 2, "action": 0, "pose": {"position": {"x": -1.3565398472630985, "y": -19.920792901652337, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3271, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -19.970792902397395, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3272, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.020792903142453, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3273, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.07079290388751, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3274, "type": 2, "action": 0, "pose": {"position": {"x": -1.4065398480081566, "y": -20.12079290463257, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3275, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.170792905377628, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3276, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.220792906122686, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3277, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.270792906867744, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3278, "type": 2, "action": 0, "pose": {"position": {"x": -1.4565398487532146, "y": -20.3207929076128, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3279, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.37079290835786, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3280, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.420792909102918, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3281, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.470792909847976, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3282, "type": 2, "action": 0, "pose": {"position": {"x": -1.5065398494982727, "y": -20.520792910593034, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3283, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.570792911338092, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3284, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.62079291208315, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3285, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.670792912828208, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3286, "type": 2, "action": 0, "pose": {"position": {"x": -1.5565398502433307, "y": -20.720792913573266, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3287, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.770792914318324, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3288, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.820792915063382, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3289, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.87079291580844, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3290, "type": 2, "action": 0, "pose": {"position": {"x": -1.6065398509883888, "y": -20.9207929165535, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3291, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -20.970792917298557, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3292, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.020792918043615, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3293, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.070792918788673, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3294, "type": 2, "action": 0, "pose": {"position": {"x": -1.6565398517334469, "y": -21.12079291953373, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3295, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.17079292027879, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3296, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.220792921023847, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3297, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.270792921768905, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3298, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.320792922513963, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3299, "type": 2, "action": 0, "pose": {"position": {"x": -1.706539852478505, "y": -21.37079292325902, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3300, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.42079292400408, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3301, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.470792924749137, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3302, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.520792925494195, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3303, "type": 2, "action": 0, "pose": {"position": {"x": -1.756539853223563, "y": -21.570792926239253, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3304, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.62079292698431, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3305, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.67079292772937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3306, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.720792928474427, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3307, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.770792929219486, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3308, "type": 2, "action": 0, "pose": {"position": {"x": -1.806539853968621, "y": -21.820792929964544, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3309, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.8707929307096, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3310, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.92079293145466, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3311, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -21.970792932199718, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3312, "type": 2, "action": 0, "pose": {"position": {"x": -1.856539854713679, "y": -22.020792932944776, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3313, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.070792933689834, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3314, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.120792934434892, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3315, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.17079293517995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3316, "type": 2, "action": 0, "pose": {"position": {"x": -1.9065398554587372, "y": -22.220792935925008, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3317, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.270792936670066, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3318, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.320792937415124, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3319, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.370792938160182, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3320, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.42079293890524, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3321, "type": 2, "action": 0, "pose": {"position": {"x": -1.9565398562037952, "y": -22.4707929396503, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3322, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.520792940395356, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3323, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.570792941140414, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3324, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.620792941885473, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3325, "type": 2, "action": 0, "pose": {"position": {"x": -2.0065398569488533, "y": -22.67079294263053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3326, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.72079294337559, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3327, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.770792944120647, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3328, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.820792944865705, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3329, "type": 2, "action": 0, "pose": {"position": {"x": -2.0565398576939113, "y": -22.870792945610763, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3330, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -22.92079294635582, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3331, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -22.97079294710088, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3332, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -23.020792947845937, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3333, "type": 2, "action": 0, "pose": {"position": {"x": -2.1065398584389694, "y": -23.070792948590995, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3334, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.120792949336053, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3335, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.17079295008111, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3336, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.22079295082617, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3337, "type": 2, "action": 0, "pose": {"position": {"x": -2.1565398591840275, "y": -23.270792951571227, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3338, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.320792952316285, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3339, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.370792953061343, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3340, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.4207929538064, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3341, "type": 2, "action": 0, "pose": {"position": {"x": -2.2065398599290855, "y": -23.47079295455146, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3342, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -23.520792955296518, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3343, "type": 2, "action": 0, "pose": {"position": {"x": -2.2565398606741436, "y": -23.570792956041576, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3344, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -23.620792956786634, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3345, "type": 2, "action": 0, "pose": {"position": {"x": -2.3065398614192016, "y": -23.67079295753169, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3346, "type": 2, "action": 0, "pose": {"position": {"x": -2.3565398621642597, "y": -23.72079295827675, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3347, "type": 2, "action": 0, "pose": {"position": {"x": -2.4065398629093178, "y": -23.770792959021808, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3348, "type": 2, "action": 0, "pose": {"position": {"x": -2.456539863654376, "y": -23.820792959766866, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3349, "type": 2, "action": 0, "pose": {"position": {"x": -2.506539864399434, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3350, "type": 2, "action": 0, "pose": {"position": {"x": -2.556539865144492, "y": -23.870792960511924, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3351, "type": 2, "action": 0, "pose": {"position": {"x": -2.60653986588955, "y": -23.920792961256982, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3352, "type": 2, "action": 0, "pose": {"position": {"x": -2.656539866634608, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3353, "type": 2, "action": 0, "pose": {"position": {"x": -2.706539867379666, "y": -23.97079296200204, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3354, "type": 2, "action": 0, "pose": {"position": {"x": -2.756539868124724, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3355, "type": 2, "action": 0, "pose": {"position": {"x": -2.8065398688697822, "y": -24.020792962747098, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3356, "type": 2, "action": 0, "pose": {"position": {"x": -2.8565398696148403, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3357, "type": 2, "action": 0, "pose": {"position": {"x": -2.9065398703598984, "y": -24.070792963492156, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3358, "type": 2, "action": 0, "pose": {"position": {"x": -2.9565398711049564, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3359, "type": 2, "action": 0, "pose": {"position": {"x": -3.0065398718500145, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3360, "type": 2, "action": 0, "pose": {"position": {"x": -3.0565398725950725, "y": -24.120792964237214, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3361, "type": 2, "action": 0, "pose": {"position": {"x": -3.1065398733401306, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3362, "type": 2, "action": 0, "pose": {"position": {"x": -3.1565398740851887, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3363, "type": 2, "action": 0, "pose": {"position": {"x": -3.2065398748302467, "y": -24.170792964982272, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3364, "type": 2, "action": 0, "pose": {"position": {"x": -3.2565398755753048, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3365, "type": 2, "action": 0, "pose": {"position": {"x": -3.306539876320363, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3366, "type": 2, "action": 0, "pose": {"position": {"x": -3.356539877065421, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3367, "type": 2, "action": 0, "pose": {"position": {"x": -3.406539877810479, "y": -24.22079296572733, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3368, "type": 2, "action": 0, "pose": {"position": {"x": -3.456539878555537, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3369, "type": 2, "action": 0, "pose": {"position": {"x": -3.506539879300595, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3370, "type": 2, "action": 0, "pose": {"position": {"x": -3.556539880045653, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3371, "type": 2, "action": 0, "pose": {"position": {"x": -3.606539880790711, "y": -24.27079296647239, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3372, "type": 2, "action": 0, "pose": {"position": {"x": -3.6565398815357693, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3373, "type": 2, "action": 0, "pose": {"position": {"x": -3.7065398822808273, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3374, "type": 2, "action": 0, "pose": {"position": {"x": -3.7565398830258854, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3375, "type": 2, "action": 0, "pose": {"position": {"x": -3.8065398837709434, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3376, "type": 2, "action": 0, "pose": {"position": {"x": -3.8565398845160015, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3377, "type": 2, "action": 0, "pose": {"position": {"x": -3.9065398852610596, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3378, "type": 2, "action": 0, "pose": {"position": {"x": -3.9565398860061176, "y": -24.320792967217447, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3379, "type": 2, "action": 0, "pose": {"position": {"x": -4.006539886751176, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3380, "type": 2, "action": 0, "pose": {"position": {"x": -4.056539887496234, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3381, "type": 2, "action": 0, "pose": {"position": {"x": -4.106539888241292, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3382, "type": 2, "action": 0, "pose": {"position": {"x": -4.15653988898635, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3383, "type": 2, "action": 0, "pose": {"position": {"x": -4.206539889731408, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3384, "type": 2, "action": 0, "pose": {"position": {"x": -4.256539890476466, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3385, "type": 2, "action": 0, "pose": {"position": {"x": -4.306539891221524, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3386, "type": 2, "action": 0, "pose": {"position": {"x": -4.356539891966582, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3387, "type": 2, "action": 0, "pose": {"position": {"x": -4.40653989271164, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3388, "type": 2, "action": 0, "pose": {"position": {"x": -4.456539893456698, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3389, "type": 2, "action": 0, "pose": {"position": {"x": -4.506539894201756, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3390, "type": 2, "action": 0, "pose": {"position": {"x": -4.556539894946814, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3391, "type": 2, "action": 0, "pose": {"position": {"x": -4.606539895691872, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3392, "type": 2, "action": 0, "pose": {"position": {"x": -4.6565398964369304, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3393, "type": 2, "action": 0, "pose": {"position": {"x": -4.7065398971819885, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3394, "type": 2, "action": 0, "pose": {"position": {"x": -4.756539897927047, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3395, "type": 2, "action": 0, "pose": {"position": {"x": -4.806539898672105, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3396, "type": 2, "action": 0, "pose": {"position": {"x": -4.856539899417163, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3397, "type": 2, "action": 0, "pose": {"position": {"x": -4.906539900162221, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3398, "type": 2, "action": 0, "pose": {"position": {"x": -4.956539900907279, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3399, "type": 2, "action": 0, "pose": {"position": {"x": -5.006539901652337, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3400, "type": 2, "action": 0, "pose": {"position": {"x": -5.056539902397395, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3401, "type": 2, "action": 0, "pose": {"position": {"x": -5.106539903142453, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3402, "type": 2, "action": 0, "pose": {"position": {"x": -5.156539903887511, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}, {"header": {"seq": 0, "stamp": {"secs": 0, "nsecs": 0}, "frame_id": "map"}, "ns": "", "id": 3403, "type": 2, "action": 0, "pose": {"position": {"x": -5.206539904632569, "y": -24.370792967962505, "z": 0.0}, "orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1}}, "scale": {"x": 0.05, "y": 0.05, "z": 0.05}, "color": {"r": 0.5, "g": 1.0, "b": 0.0, "a": 1.0}, "lifetime": {"secs": 0, "nsecs": 0}, "frame_locked": false, "points": [], "colors": [], "text": "", "mesh_resource": "", "mesh_use_embedded_materials": false}]}} \ No newline at end of file diff --git a/stack_master/maps/test_map/ot_sectors.yaml b/stack_master/maps/test_map/ot_sectors.yaml new file mode 100644 index 0000000..a396b84 --- /dev/null +++ b/stack_master/maps/test_map/ot_sectors.yaml @@ -0,0 +1,8 @@ +n_sectors: 1 +yeet_factor: 1.25 +spline_len: 30 +ot_sector_begin: 0.5 +Overtaking_sector0: + start: 0 + end: 770 + ot_flag: false diff --git a/stack_master/maps/test_map/speed_scaling.yaml b/stack_master/maps/test_map/speed_scaling.yaml new file mode 100644 index 0000000..2ac0b61 --- /dev/null +++ b/stack_master/maps/test_map/speed_scaling.yaml @@ -0,0 +1,8 @@ +global_limit: 0.5 +n_sectors: 1 +Sector0: + start: 0 + end: 770 + scaling: 0.5 + only_FTG: false + no_FTG: false diff --git a/stack_master/maps/test_map/test_map.png b/stack_master/maps/test_map/test_map.png new file mode 100644 index 0000000..0ba5b77 Binary files /dev/null and b/stack_master/maps/test_map/test_map.png differ diff --git a/stack_master/maps/test_map/test_map.yaml b/stack_master/maps/test_map/test_map.yaml new file mode 100644 index 0000000..7db26b2 --- /dev/null +++ b/stack_master/maps/test_map/test_map.yaml @@ -0,0 +1,9 @@ +free_thresh: 0.196 +image: test_map.png +negate: 0 +occupied_thresh: 0.65 +origin: +- -11.60654 +- -26.520793 +- 0 +resolution: 0.05000000074505806 diff --git a/stack_master/package.xml b/stack_master/package.xml new file mode 100644 index 0000000..c979720 --- /dev/null +++ b/stack_master/package.xml @@ -0,0 +1,69 @@ + + + stack_master + 0.0.0 + The stack_master package + + + + + icra_crew + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + rostest + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + + + + + + + + diff --git a/stack_master/scripts/download_map.sh b/stack_master/scripts/download_map.sh new file mode 100644 index 0000000..a3dbcbc --- /dev/null +++ b/stack_master/scripts/download_map.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# This script downloads a map from the car to local map_editor folder + +cd "${0%/*}" +cd ../.. +# This ensures the current working directory is race_stack + +# Process ROS_MASTER_URI +IFS=":" +read -ra ARR <<< "$ROS_MASTER_URI" +ROS_MASTER=$(echo "${ARR[1]}" | awk '{ print substr( $0, 3 ) }') # remove '//' +echo "ROS master at: $ROS_MASTER" + +REMOTE_MAP_EDITOR_PATH="/home/race_crew/catkin_ws/src/race_stack/f110_utils/nodes/map_editor/maps" +LOCAL_MAP_EDITOR_PATH="f110_utils/nodes/map_editor/maps" + +if [ $# -gt 0 ]; then + echo "Listing contents of map $1 (remote)" + ssh race_crew@$ROS_MASTER ls -la $REMOTE_MAP_EDITOR_PATH/$1 + echo -e "\n" + + echo "Copying map from remote to local map_editor folder..." + mkdir -p $LOCAL_MAP_EDITOR_PATH/$1 + scp race_crew@$ROS_MASTER:$REMOTE_MAP_EDITOR_PATH/$1/* $LOCAL_MAP_EDITOR_PATH/$1/ + + echo "Done! Copied to $LOCAL_MAP_EDITOR_PATH/$1" +else + echo "Please specify a map name for this to work." + echo "A list of remote maps in the map_editor folder:" + ssh race_crew@$ROS_MASTER ls -la $REMOTE_MAP_EDITOR_PATH +fi \ No newline at end of file diff --git a/stack_master/scripts/finish_map.sh b/stack_master/scripts/finish_map.sh new file mode 100755 index 0000000..eba811b --- /dev/null +++ b/stack_master/scripts/finish_map.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "Finish trajectory..." +rosservice call /finish_trajectory 0 +if [ "$1" = "" ] +then + echo "Please enter a map name: " + read map_name + echo "Save map under the name $map_name.pbstream" + rosservice call /write_state "{filename: '${HOME}/catkin_ws/src/icra_f110_stack/stack_master/maps/$map_name.pbstream', include_unfinished_submaps: "true"}" +else + echo "Save map under the name $1.pbstream" + rosservice call /write_state "{filename: '${HOME}/catkin_ws/src/icra_f110_stack/stack_master/maps/$1.pbstream', include_unfinished_submaps: "true"}" +fi diff --git a/stack_master/scripts/run_docker.sh b/stack_master/scripts/run_docker.sh new file mode 100755 index 0000000..1d76d22 --- /dev/null +++ b/stack_master/scripts/run_docker.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +echo "Go to docker folder" +cd /home/icra_crew/catkin_ws/src/icra_f110_stack/noetic_docker +echo "Build docker..." +docker build -t "ros-docker-f110" . +echo "Run planner..." +docker run -it --network=host --mount source="/home/icra_crew/catkin_ws/src/icra_f110_stack/stack_master/maps",type=bind,target=/maps ros-docker-f110:latest roslaunch f110_planner global_planner.launch diff --git a/stack_master/scripts/switch_map.sh b/stack_master/scripts/switch_map.sh new file mode 100755 index 0000000..956e907 --- /dev/null +++ b/stack_master/scripts/switch_map.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +# This script transfers the YAML files from the given map in stack_master to the +# overtaking_sector_tuner and the sector_tuner. + +cd "${0%/*}" +cd ../.. +# This ensures the current working directory is race_stack + +MAP_PATH="stack_master/maps" + +if [ $# -gt 0 ]; then + echo "Listing contents of map $1" + ls $MAP_PATH/$1 + echo -e "\n" + + echo "Copying Overtaking Sector Tuner files..." + cp $MAP_PATH/$1/ot_sectors.yaml f110_utils/nodes/overtaking_sector_tuner/cfg/ot_sectors.yaml + echo -e "\n" + + echo "Copying Sector Tuner files..." + cp $MAP_PATH/$1/speed_scaling.yaml f110_utils/nodes/sector_tuner/cfg/speed_scaling.yaml + echo -e "\n" + + echo "Building ..." + cd ../..; # now we are in catkin_ws + catkin clean sector_tuner overtaking_sector_tuner && \ + catkin build sector_tuner overtaking_sector_tuner && \ + source /home/race_crew/catkin_ws/devel/setup.bash; + + echo -e "\n" + echo "Done! Please remember to source in your other terminals." +else + echo "Please specify a map name for this to work." + echo "A list of local maps in the stack_master folder:" + ls -la $MAP_PATH + echo -e "\n#######################################################################\n" +fi \ No newline at end of file diff --git a/stack_master/scripts/transfer_map.sh b/stack_master/scripts/transfer_map.sh new file mode 100755 index 0000000..2ea2de1 --- /dev/null +++ b/stack_master/scripts/transfer_map.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +# This script transfers the YAML files from the given map in LOCAL map_editor to the +# REMOTE (car) overtaking_sector_tuner and the sector_tuner. + +cd "${0%/*}" +cd ../.. +# This ensures the current working directory is race_stack + +# Process ROS_MASTER_URI +IFS=":" +read -ra ARR <<< "$ROS_MASTER_URI" +ROS_MASTER=$(echo "${ARR[1]}" | awk '{ print substr( $0, 3 ) }') # remove '//' +echo "ROS master at: $ROS_MASTER" + +REMOTE_MAPS_PATH="/home/race_crew/catkin_ws/src/race_stack/stack_master/maps" +LOCAL_MAP_EDITOR_PATH="f110_utils/nodes/map_editor/maps" + +if [ $# -gt 0 ]; then + echo "Listing contents of map $1 (local)" + ls $LOCAL_MAP_EDITOR_PATH/$1 + echo -e "\n" + + # Uncomment if needed. + echo "Copying map to remote..." + ssh race_crew@$ROS_MASTER "mkdir -p $REMOTE_MAPS_PATH/$1" + scp $LOCAL_MAP_EDITOR_PATH/$1/* race_crew@$ROS_MASTER:$REMOTE_MAPS_PATH/$1/ + + echo "Copying Overtaking Sector Tuner files to remote..." + scp $LOCAL_MAP_EDITOR_PATH/$1/ot_sectors.yaml race_crew@$ROS_MASTER:/home/race_crew/catkin_ws/src/race_stack/f110_utils/nodes/overtaking_sector_tuner/cfg/ot_sectors.yaml + # cp stack_master/maps/$1/ot_sectors.yaml f110_utils/nodes/overtaking_sector_tuner/cfg/ot_sectors.yaml + echo -e "\n" + + echo "Copying Sector Tuner files to remote..." + scp $LOCAL_MAP_EDITOR_PATH/$1/speed_scaling.yaml race_crew@$ROS_MASTER:/home/race_crew/catkin_ws/src/race_stack/f110_utils/nodes/sector_tuner/cfg/speed_scaling.yaml + # cp stack_master/maps/$1/speed_scaling.yaml f110_utils/nodes/sector_tuner/cfg/speed_scaling.yaml + echo -e "\n" + + echo "Building on remote..." + ssh race_crew@$ROS_MASTER "\ + cd /home/race_crew/catkin_ws && \ + catkin clean sector_tuner overtaking_sector_tuner && \ + catkin build --continue sector_tuner overtaking_sector_tuner && \ + source /home/race_crew/catkin_ws/devel/setup.bash; \ + " + echo -e "\n" + echo "Done! Please remember to source in your other terminals." +else + echo "Please specify a map name for this to work." + echo "A list of local maps in the map_editor folder:" + ls -la f110_utils/nodes/map_editor/maps + echo -e "\n#######################################################################\n" + echo "A list of remote maps:" + ssh race_crew@$ROS_MASTER ls -la /home/race_crew/catkin_ws/src/race_stack/stack_master/maps +fi \ No newline at end of file diff --git a/stack_master/test/artifacts/foo.md b/stack_master/test/artifacts/foo.md new file mode 100644 index 0000000..c6cac69 --- /dev/null +++ b/stack_master/test/artifacts/foo.md @@ -0,0 +1 @@ +empty diff --git a/stack_master/test/head_to_head_splini.test b/stack_master/test/head_to_head_splini.test new file mode 100644 index 0000000..f3b8f7c --- /dev/null +++ b/stack_master/test/head_to_head_splini.test @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/stack_master/test/head_to_head_test.py b/stack_master/test/head_to_head_test.py new file mode 100755 index 0000000..933e1fa --- /dev/null +++ b/stack_master/test/head_to_head_test.py @@ -0,0 +1,53 @@ +#!/usr/bin/env python3 + +import rospy +import rostest +import unittest +from std_msgs.msg import Bool +from f110_msgs.msg import LapData + + +class Head2HeadTester(unittest.TestCase): + def test_main(self): + node = Head2HeadTesterNode() + assert node.loop() + +class Head2HeadTesterNode: + def __init__(self): + rospy.init_node("head_to_head_test", anonymous=True) + + self.lap_data = LapData() + self.lap_data.lap_time = 99 + self.lap_time_sub = rospy.Subscriber('lap_data', LapData, self._lap_data_cb) + self.counter = 0 + self.n_laps = 1 + self.laptime_threshold = 30 + + self.pub_obs_flag = rospy.Publisher('/test/obst_start', Bool, queue_size=10) + + def _lap_data_cb(self, data: LapData): + self.lap_data = data + + def loop(self): + while not rospy.is_shutdown(): + if self.lap_data.lap_time < self.laptime_threshold: + break + else: + if self.lap_data.lap_count > self.n_laps: + rospy.loginfo(f"The car completed {self.n_laps:d} laps without going under {self.laptime_threshold:d} s. IT SUCKS!") + break + + self.pub_obs_flag.publish(True) + + while not rospy.is_shutdown(): + if self.lap_data.lap_time < self.laptime_threshold: + break + else: + if self.lap_data.lap_count > self.n_laps: + rospy.loginfo(f"The car completed {self.n_laps:d} laps without going under {self.laptime_threshold:d} s. IT SUCKS!") + break + + return True + +if __name__ == '__main__': + rostest.rosrun("stack_master", 'head_to_head_test', Head2HeadTester) diff --git a/stack_master/test/templates/time_trials.md b/stack_master/test/templates/time_trials.md new file mode 100644 index 0000000..a6a25ca --- /dev/null +++ b/stack_master/test/templates/time_trials.md @@ -0,0 +1,3 @@ +# F110 @ PBL - test report + +## time-trials report diff --git a/stack_master/test/time_trials.test b/stack_master/test/time_trials.test new file mode 100644 index 0000000..7ccfff4 --- /dev/null +++ b/stack_master/test/time_trials.test @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/stack_master/test/time_trials_test.py b/stack_master/test/time_trials_test.py new file mode 100755 index 0000000..0f0610e --- /dev/null +++ b/stack_master/test/time_trials_test.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 + +import datetime + +import rospy +import rospkg +import rostest +import unittest +from f110_msgs.msg import LapData + + +class TimeTrialsTester(unittest.TestCase): + def test_main(self): + node = TimeTrialsTesterNode() + assert node.loop() + +class TimeTrialsTesterNode: + def __init__(self): + rospy.init_node("time_trials_test", anonymous=True) + rospy.on_shutdown(self.on_shutdown) + + # TODO move config params in a yaml + self.lap_data = LapData() + self.lap_data.lap_time = -1 + self.lap_time_sub = rospy.Subscriber('lap_data', LapData, self._lap_data_cb) + self.n_laps = 3 + + # file preparation + self.output_text = self.init_output_report() + + def _lap_data_cb(self, data: LapData): + self.lap_data = data + self.output_text += f"Lap #{data.lap_count}: lap time {data.lap_time:5.5f} - average lateral deviation {data.average_lateral_error_to_global_waypoints:5.5f} - maximum lateral deviation {data.max_lateral_error_to_global_waypoints:5.5f}\n" + + def loop(self): + while not rospy.is_shutdown(): + if self.lap_data.lap_count >= self.n_laps: + rospy.loginfo(f"The car completed {self.n_laps:d} laps!") + self.save_report() + break + self.save_report() + return True + + def init_output_report(self): + stack_master_path = rospkg.RosPack().get_path('stack_master') + with open(stack_master_path+"/test/templates/time_trials.md", "r") as file: + txt = file.readlines() + + datetime_now = datetime.datetime.now() + datetime_string = datetime_now.strftime("%a %d %B %Y, %H:%M:%S") + txt += f"This test was run on: {datetime_string}\n\n" + + txt += f"Configuration parameters: TODO\n\n" + + txt += "### Laps\n\n" + return txt + + def save_report(self): + stack_master_path = rospkg.RosPack().get_path('stack_master') + full_path = stack_master_path+"/test/artifacts/time_trials_test_report.md" + print("THE SAVING PATH: " + full_path) + with open(full_path, "w") as file: + file.writelines(self.output_text) + + def on_shutdown(self): + self.save_report() + +if __name__ == '__main__': + rostest.rosrun("stack_master", 'time_trials_test', TimeTrialsTester) diff --git a/state_estimation/README.md b/state_estimation/README.md new file mode 100644 index 0000000..da79ff9 --- /dev/null +++ b/state_estimation/README.md @@ -0,0 +1,65 @@ +# State Estimation +![State Estimation Architecture](./misc/state_estimation_arch.png) + +This directory contains the localization submodules and the information required to understand the state estimation framework. Note that the state estimation components not related to the localization are launched seperately, namely in `base_system/f1tenth_system/racecar/racecar/launch/SE_launch.launch`, where the associated parameters can be adjusted. + +## Kalman Filter ## + +The Kalman Filter is implemented using the `robot_localization` package published [here](https://github.com/cra-ros-pkg/robot_localization) [see our paper for reference]. + +During operation, the EKF is launched in the State Estimaiton launch file, located in `base_system/f1tenth_system/racecar/racecar/launch/SE_launch.launch`. + +### Parameters + +The parameters relevant to the EKF, responsible for generating the velocity estimates, can in this case be subdivided into two categories: the covariances $\sigma_{i}^2 \in [0, \infty)$ associated with observations (zero elements are handled by the \verb|robot_localization| package) and the configuration parameters which dictate what sources are to be considered by the EKF. + +The `robot_localization` sensor fusion EKF configuration parameters are defined according to the associated publication as: + +$$ +\verb|config| = +\begin{bmatrix} + x & y & z \\ + roll & pitch & yaw \\ + vx & vy & vz \\ + vax & vay & vaz \\ + alx & aly & alz \\ +\end{bmatrix} +$$ + +where each entry is of type boolean, indicating whether or not the associated data source should be considered by the filter. + +The EKF parameters intended for tuning are summarized as follows: + +- $[\sigma_{VESC,x}, \sigma_{VESC,y}, \sigma_{VESC,\psi}] = [0.25, 0.5, 0.4]$ - the covariances associated with VESC control odometry x position, y position, and yaw angle, respectively. +- $[\sigma_{VESC,vx}, \sigma_{VESC,vy}, \sigma_{VESC,vaz}] = [0.02, 0.05, 0.0]$ - the covariances associated with VESC control odometry longitudinal, lateral, and angular yaw velocities, respectively. +- $[\sigma_{IMU,al}, \sigma_{IMU,va}, \sigma_{IMU,q}] = [0.0,0.0,0.0]$ - the covariances associated with IMU linear acceleration, angular velocity, and orientation measurements, respectively. +- The EKF configuration matrix for the VESC control odometry is defined as: +$$ +\verb|config_odom| = +\begin{bmatrix} + \verb|false| & \verb|false| & \verb|false| \\ + \verb|false| & \verb|false| & \verb|false| \\ + \verb|true| & \verb|true| & \verb|false| \\ + \verb|false| & \verb|false| & \verb|false| \\ + \verb|false| & \verb|false| & \verb|false| \\ +\end{bmatrix} +$$ +- The EKF configuration matrix for the IMU is defined as: +$$ +\verb|config_imu| = +\begin{bmatrix} + \verb|false| & \verb|false| & \verb|false| \\ + \verb|false| & \verb|false| & \verb|true| \\ + \verb|false| & \verb|false| & \verb|false| \\ + \verb|false| & \verb|false| & \verb|true| \\ + \verb|false| & \verb|false| & \verb|false| \\ +\end{bmatrix} +$$ + +## Localization ## +Currently you can choose localisation to be done between **either** SLAM or Particle Filter. In general SLAM is more accurate, faster to compute and smoother. Particle Filter on the other hand can perform better than SLAM **if** the floor is too slippery, the environment reflects badly (i.e. black tubes) or the track consists of a long straight without features. + +Localisation mode can be chosen in the base system, but SLAM is default: +```shell +roslaunch stack_master base_system.launch map_name:=MAPNAME racecar_version:=NUCX localization:= +``` diff --git a/state_estimation/cartographer_pbl/cartographer b/state_estimation/cartographer_pbl/cartographer new file mode 160000 index 0000000..877157a --- /dev/null +++ b/state_estimation/cartographer_pbl/cartographer @@ -0,0 +1 @@ +Subproject commit 877157a0d91788a7700221d87232d412cb3c1ef4 diff --git a/state_estimation/cartographer_pbl/cartographer_ros b/state_estimation/cartographer_pbl/cartographer_ros new file mode 160000 index 0000000..c138034 --- /dev/null +++ b/state_estimation/cartographer_pbl/cartographer_ros @@ -0,0 +1 @@ +Subproject commit c138034db0c47fe0ea5a2abe516acae02190dbf5 diff --git a/state_estimation/misc/state_estimation_arch.png b/state_estimation/misc/state_estimation_arch.png new file mode 100644 index 0000000..a0699a6 Binary files /dev/null and b/state_estimation/misc/state_estimation_arch.png differ diff --git a/state_estimation/particle_filter b/state_estimation/particle_filter new file mode 160000 index 0000000..1dc1367 --- /dev/null +++ b/state_estimation/particle_filter @@ -0,0 +1 @@ +Subproject commit 1dc1367f3aa7f6e0c67f94b2520654a763e34a11 diff --git a/state_machine/CMakeLists.txt b/state_machine/CMakeLists.txt new file mode 100644 index 0000000..f506c8d --- /dev/null +++ b/state_machine/CMakeLists.txt @@ -0,0 +1,211 @@ +cmake_minimum_required(VERSION 3.0.2) +project(state_machine) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/dyn_statemachine_tuner.cfg +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# std_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES state_machine +# CATKIN_DEPENDS roscpp rospy std_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/state_machine.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/state_machine_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_state_machine.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/state_machine/README.md b/state_machine/README.md new file mode 100644 index 0000000..b600508 --- /dev/null +++ b/state_machine/README.md @@ -0,0 +1,45 @@ +# State Machine + +This node implements a state machine to effectively incorparate both `time_trials.launch` behaviors as well as `headtohead.launch`. + +It further contains the description of the state indicator, with more information [here](./state_indicator/README.md). + +## Description +The main node of the state machine is implemented in the `state_machine_node.py` file. This node is responsible for subscribing/publishing to the necessary topics, and computing the conditions necessary for the state transitions. + +The state transistions are implemented in the `state_transitions.py` file, what happens in the states (how the local waypoints are generated for the controller) is implemented in the `states.py` file. + +A simplified version of the state machine is shown in the figure below. +![State Machine](./misc/state_machine.png) + +## Parameters +- `lateral_width_gb_m`: Width in meters of the area considered around the global raceline for computing if it is free of obstacles. +- `lateral_width_ot_m`: Width in meters of the area considered around the local raceline for computing if it is free of obstacles. +- `splini_hyst_timer_sec`: Time that overtake state is blocked when switching side for overtaking +- `splini_ttl`: Tim to live in seconds for a cached overtaking trajectory +- `emergency_break_horizon`: Distance to obstacle at which emergency break flag is triggered in meters. NOTE: no emergency break behaviour is currently implemented. +- `ftg_speed_mps`: Treshold speed below which the Follow-the-gap counter is incremented. +- `ftg_timer_sec`: Treshold time above which the Follow-the-gap state is enforced. +- `ftg_active`: Flag to force the Follow-the-gap state. +- `force_GBTRACK`: Flag to force the GBTRACK state. + +## Input/Output topic signature +The node subscribes to: +- `/car_state/pose`: Car's pose in the map frame, Cartesian coordinates. +- `/car_state/odom_frenet`: Car's state in the frenet frame. +- `/global_waypoints`: Global waypoints. +- `/global_waypoints_scaled`: Scaled global waypoints. +- `/global_waypoints/overtaking`: Global waypoints for overtaking. +- `/perception/obstacles`: Obstacle array. +- `/planner/avoidance/otwpnts`: Splined waypoints, from the spliner node. +- `/vesc/sensors/core`: (Only on the physical platform) Core sensor data, used to read the battery voltage. + +The node publishes to: +- `local_waypoints`: Local waypoints used by the controller. +- `local_waypoints/markers`: Local waypoints markers for RVIZ visualization. +- `state_machine`: State, as a string, for informing every other node of the current state. +- `/state_marker`: State marker for RVIZ visualization. +- `/emergency_marker`: Emergency marker for low battery status, for RVIZ visualization. +- `/state_machine/latency`: Latency of the state machine node. (only if measuring is enabled) + + diff --git a/state_machine/cfg/dyn_statemachine_tuner.cfg b/state_machine/cfg/dyn_statemachine_tuner.cfg new file mode 100644 index 0000000..5610aef --- /dev/null +++ b/state_machine/cfg/dyn_statemachine_tuner.cfg @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 +PACKAGE = "state_machine" +import rospkg +import yaml, os +from dynamic_reconfigure.parameter_generator_catkin import * + +ros_path = rospkg.RosPack().get_path('state_machine') + + +gen = ParameterGenerator() +gen.add("lateral_width_gb_m", double_t, 0, "Threshold to raceline for GB_FREE in meters", 0.25, 0.1, 1.75) +gen.add("lateral_width_ot_m", double_t, 0, "Threshold to raceline for O_FREE in meters", 0.3, 0.1, 1.75) + +gen.add("splini_hyst_timer_sec", double_t, 0, "Time that overtake state is blocked when spliner switching in seconds", 0.2, 0.1, 1.5) +gen.add("splini_ttl", int_t, 0, "Spliner ttl caching in seconds", 2, 0, 5) +gen.add("emergency_break_horizon", double_t, 0, "Distance to obstacle at which emergency break is triggered in meters", 1.1, 0.1, 2.0) + +gen.add("ftg_speed_mps", double_t, 0, "Treshold speed at which ftg counter is incremented in mps", 1.0, 0.1, 2.0) +gen.add("ftg_timer_sec", double_t, 0, "Treshold time at which ftg is triggered in seconds", 3.0, 0.5, 7.0) + +gen.add("ftg_active", bool_t, 0, "Toggle ftg active", False) + +gen.add("force_GBTRACK", bool_t, 0, "Toggle to GB TRACK state", False) + +exit(gen.generate(PACKAGE, "state_machinedynamic_tuner", "dyn_statemachine_tuner")) diff --git a/state_machine/misc/state_machine.png b/state_machine/misc/state_machine.png new file mode 100644 index 0000000..af7c954 Binary files /dev/null and b/state_machine/misc/state_machine.png differ diff --git a/state_machine/package.xml b/state_machine/package.xml new file mode 100644 index 0000000..2c09df3 --- /dev/null +++ b/state_machine/package.xml @@ -0,0 +1,71 @@ + + + state_machine + 0.0.0 + The state_machine package + + + + + icra_crew + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + roscpp + rospy + std_msgs + dynamic_reconfigure + + + + + + + + diff --git a/state_machine/src/__init__.py b/state_machine/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/state_machine/src/dynamic_statemachine_server.py b/state_machine/src/dynamic_statemachine_server.py new file mode 100755 index 0000000..5db36de --- /dev/null +++ b/state_machine/src/dynamic_statemachine_server.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +import rospy +from dynamic_reconfigure.server import Server +from state_machine.cfg import dyn_statemachine_tunerConfig + +def callback(config, level): + # Ensuring nice rounding by either 0.05 + config.lateral_width_gb_m = round(config.lateral_width_gb_m * 20) / 20 + config.lateral_width_ot_m = round(config.lateral_width_ot_m * 20) / 20 + + config.splini_hyst_timer_sec = round(config.splini_hyst_timer_sec * 20) / 20 + config.splini_ttl = round(config.splini_ttl * 20) / 20 + config.emergency_break_horizon = round(config.emergency_break_horizon, 2) + + config.ftg_speed_mps = round(config.ftg_speed_mps * 20) / 20 + config.ftg_timer_sec = round(config.ftg_timer_sec * 20) / 20 + + if not config.ftg_active: + rospy.logdebug_throttle_identical(30, "FTG IS NOT ACTIVE") + + return config + +if __name__ == "__main__": + rospy.init_node("dynamic_statemachine_tuner_node", anonymous=False) + print('[dynamic_statemachine_tuner_node] State Machine Parameter Server Launched') + srv = Server(dyn_statemachine_tunerConfig, callback) + rospy.spin() + diff --git a/state_machine/src/state_machine_node.py b/state_machine/src/state_machine_node.py new file mode 100755 index 0000000..345a942 --- /dev/null +++ b/state_machine/src/state_machine_node.py @@ -0,0 +1,779 @@ +#!/usr/bin/env python3 +import threading +import time + +import numpy as np +import rospy +import tf +from dynamic_reconfigure.msg import Config +from f110_msgs.msg import ObstacleArray, OTWpntArray, WpntArray +from geometry_msgs.msg import PoseStamped +from nav_msgs.msg import Odometry +from scipy.interpolate import InterpolatedUnivariateSpline as Spline +from std_msgs.msg import String, Float32 +from visualization_msgs.msg import Marker, MarkerArray + +try: + # if we are in the car, vesc msgs are built and we read them + from vesc_msgs.msg import VescStateStamped +except: + pass + +import state_transitions +import states +from states_types import StateType + + +class StateMachine: + """ + This state machine ideally should subscribe to topics and calculate flags/conditions. + State transistions and state behaviors are described in `state_transistions.py` and `states.py` + """ + + def __init__(self, name) -> None: + self.name = name + self.rate_hz = rospy.get_param("state_machine/rate") # rate of planner in hertz + self.n_loc_wpnts = rospy.get_param("state_machine/n_loc_wpnts") # number of local waypoints published + self.local_wpnts = WpntArray() + self.waypoints_dist = 0.1 # [m] + self.lock = threading.Lock() # lock for concurrency on waypoints + self.measuring = rospy.get_param("/measure", default=False) + + + # get initial dynamic parameters + self.racecar_version = rospy.get_param("/racecar_version") + self.sectors_params = rospy.get_param("/map_params") + self.timetrials_only = bool(rospy.get_param("state_machine/timetrials_only", "True")) + self.n_sectors = self.sectors_params["n_sectors"] + # only ftg zones + self.only_ftg_zones = [] + self.ftg_counter = 0 + # overtaking variables + self.ot_sectors_params = rospy.get_param("/ot_map_params") + self.n_ot_sectors = self.ot_sectors_params["n_sectors"] + self.overtake_wpnts = None + self.overtake_zones = [] + self.ot_begin_margin = 0.5 + self.cur_volt = 11.69 # default value for sim + self.volt_threshold = rospy.get_param("state_machine/volt_threshold", default=10) + + # Planner parameters + self.ot_planner = rospy.get_param("state_machine/ot_planner", default="spliner") + + # waypoint variables + self.cur_id_ot = 1 + self.max_speed = -1 # max speed in global waypoints for visualising + self.max_s = 0 + self.current_position = None + self.glb_wpnts = None + self.gb_max_idx = None + self.wpnt_dist = self.waypoints_dist + self.num_glb_wpnts = 0 # number of waypoints on global trajectory + self.num_ot_points = 0 + self.previous_index = 0 + self.gb_ego_width_m = rospy.get_param("state_machine/gb_ego_width_m") + self.lateral_width_gb_m = rospy.get_param("state_machine/lateral_width_gb_m", 0.75) # [m] DYNIAMIC PARAMETER + self.gb_horizon_m = rospy.get_param("state_machine/gb_horizon_m") + + # mincurv spline + self.mincurv_spline_x = None + self.mincurv_spline_y = None + # ot spline + self.ot_spline_x = None + self.ot_spline_y = None + self.ot_spline_d = None + self.recompute_ot_spline = True + + # obstacle avoidance variables + self.obstacles = [] + self.obstacles_perception = [] + self.obstacle_was_here = True + self.side_by_side_threshold = 0.6 + self.merger = None + self.force_trailing = False + + # spliner variables + self.splini_ttl = rospy.get_param("state_machine/splini_ttl", 2.0) + self.splini_ttl_counter = int(self.splini_ttl * self.rate_hz) # convert seconds to counters + self.avoidance_wpnts = None + self.last_valid_avoidance_wpnts = None + self.overtaking_horizon_m = rospy.get_param("state_machine/overtaking_horizon_m", 6.9) + self.lateral_width_ot_m = rospy.get_param("state_machine/lateral_width_ot_m", 0.3) # [m] DYNIAMIC PARAMETER + self.splini_hyst_timer_sec = rospy.get_param("state_machine/splini_hyst_timer_sec", 0.75) + + self.emergency_break_horizon = 1.1 # [m] + + # FTG params + self.ftg_speed_mps = rospy.get_param("state_machine/ftg_speed_mps", 1.0) # [mps] DYNIAMIC PARAMETER + self.ftg_timer_sec = rospy.get_param("state_machine/ftg_timer_sec", 3.0) # [s] DYNIAMIC PARAMETER + + # Force GBTRACK state + self.force_gbtrack_state = False # [s] DYNIAMIC PARAMETER + + # visualization variables + self.first_visualization = True + self.x_viz = 0 + self.y_viz = 0 + + # STATES + self.cur_state = StateType.GB_TRACK + rospy.loginfo(f"[{self.name}] The default state for the state machine is {self.cur_state}") + if self.ot_planner == "spliner": + self.state_transitions = ( + { # this is very manual, but should not be a problem as in general states should not be too many + StateType.GB_TRACK: state_transitions.SpliniGlobalTrackingTransition, + StateType.TRAILING: state_transitions.SpliniTrailingTransition, + StateType.OVERTAKE: state_transitions.SpliniOvertakingTransition, + StateType.FTGONLY: state_transitions.SpliniFTGOnlyTransition, + } + ) + # Here a new state transition can be added if wanted + else: + raise NotImplementedError(f"Planner {self.ot_planner} not supported!") + + self.states = { # this is very manual, but should not be a problem as in general states should not be too many + StateType.GB_TRACK: states.GlobalTracking, + StateType.TRAILING: states.Trailing, + StateType.OVERTAKE: states.Overtaking, + StateType.FTGONLY: states.FTGOnly, + } + + # SUBSCRIPTIONS + rospy.Subscriber("/car_state/pose", PoseStamped, self.pose_cb) + rospy.wait_for_message("/car_state/pose", PoseStamped) + rospy.Subscriber("/global_waypoints_scaled", WpntArray, self.glb_wpnts_cb) # from velocity scaler + rospy.Subscriber("/global_waypoints/overtaking", WpntArray, self.overtake_cb) + # wait for global trajectory + rospy.wait_for_message("/global_waypoints_scaled", WpntArray) + rospy.wait_for_message("/global_waypoints/overtaking", WpntArray) + rospy.Subscriber("/car_state/odom_frenet", Odometry, self.frenet_pose_cb) + rospy.wait_for_message("/car_state/odom_frenet", Odometry) + + rospy.Subscriber("/global_waypoints", WpntArray, self.glb_wpnts_og_cb) # from og wpnts + + # dynamic parameters subscriber + rospy.Subscriber("/dynamic_statemachine_server/parameter_updates", Config, self.dyn_param_cb) + rospy.Subscriber("/dyn_sector_server/parameter_updates", Config, self.sector_dyn_param_cb) + rospy.Subscriber("/ot_dyn_sector_server/parameter_updates", Config, self.ot_dyn_param_cb) + rospy.Subscriber("/perception/obstacles", ObstacleArray, self.obstacle_perception_cb) + if self.ot_planner == "spliner": + rospy.Subscriber("/planner/avoidance/otwpnts", OTWpntArray, self.avoidance_cb) + if not rospy.get_param("/sim"): + rospy.Subscriber("/vesc/sensors/core", VescStateStamped, self.vesc_state_cb) # for reading battery voltage + + # Parameters + self.track_length = rospy.get_param("/global_republisher/track_length") + + # PUBLICATIONS + self.loc_wpnt_pub = rospy.Publisher("local_waypoints", WpntArray, queue_size=1) + self.vis_loc_wpnt_pub = rospy.Publisher("local_waypoints/markers", MarkerArray, queue_size=10) + self.state_pub = rospy.Publisher("state_machine", String, queue_size=1) + self.state_mrk = rospy.Publisher("/state_marker", Marker, queue_size=10) + self.emergency_pub = rospy.Publisher("/emergency_marker", Marker, queue_size=5) # for low voltage + if self.measuring: + self.latency_pub = rospy.Publisher("/state_machine/latency", Float32, queue_size=10) + + # MAIN LOOP + self.loop() + + def on_shutdown(self): + rospy.loginfo(f"[{self.name}] Shutting down state machine") + + ############# + # CALLBACKS # + ############# + def vesc_state_cb(self, data): + """vesc state callback, reads the voltage""" + self.cur_volt = data.state.voltage_input + + def avoidance_cb(self, data: OTWpntArray): + """spliniboi waypoints""" + if len(data.wpnts) > 0: + self.splini_ttl_counter = int(self.splini_ttl * self.rate_hz) + self.avoidance_wpnts = data + + # Otherwise we don't overwrite the avoidance waypoints + else: + pass + + def frenet_pose_cb(self, data: Odometry): + self.cur_s = data.pose.pose.position.x + self.cur_d = data.pose.pose.position.y + self.cur_vs = data.twist.twist.linear.x + if self.num_ot_points != 0: + self.cur_id_ot = int(self._find_nearest_ot_s()) + + def overtake_cb(self, data): + """ + Callback function of overtake subscriber. + + Parameters + ---------- + data + Data received from overtake topic + """ + self.overtake_wpnts = data.wpnts + self.num_ot_points = len(self.overtake_wpnts) + + # compute the OT spline when new spline + if self.recompute_ot_spline and self.num_ot_points != 0: + self.ot_splinification() + self.recompute_ot_spline = False + + def glb_wpnts_cb(self, data: WpntArray): + """ + Callback function of velocity interpolator subscriber. + + Parameters + ---------- + data + Data received from velocity interpolator topic + """ + self.glb_wpnts = data.wpnts[:-1] # exclude last point (because last point == first point) + self.num_glb_wpnts = len(self.glb_wpnts) + self.max_s = data.wpnts[-1].s_m + # Get spacing between wpnts for rough approximations + self.wpnt_dist = data.wpnts[1].s_m - data.wpnts[0].s_m + self.gb_max_idx = data.wpnts[-1].id + + def glb_wpnts_og_cb(self, data): + """ + Callback function of OG global waypoints 100% speed. + + Parameters + ---------- + data + Data received from velocity interpolator topic + """ + if self.max_speed == -1: + self.max_speed = max([wpnt.vx_mps for wpnt in data.wpnts]) + else: + pass + + def obstacle_perception_cb(self, data): + if len(data.obstacles) != 0: + self.obstacles_perception = data.obstacles + self.obstacles = data.obstacles + else: + self.obstacles = [] + + + def pose_cb(self, data): + """ + Callback function of /tracked_pose subscriber. + + Parameters + ---------- + data + Data received from /tracked_pose topic + """ + x = data.pose.position.x + y = data.pose.position.y + theta = tf.transformations.euler_from_quaternion( + [data.pose.orientation.x, data.pose.orientation.y, data.pose.orientation.z, data.pose.orientation.w] + )[2] + + self.current_position = [x, y, theta] + + def dyn_param_cb(self, params: Config): + """ + Notices the change in the State Machine parameters and sets + """ + self.lateral_width_gb_m = rospy.get_param("dynamic_statemachine_server/lateral_width_gb_m", 0.75) + self.lateral_width_ot_m = rospy.get_param("dynamic_statemachine_server/lateral_width_ot_m", 0.3) + self.splini_ttl = rospy.get_param("dynamic_statemachine_server/splini_ttl") + self.splini_ttl_counter = int(self.splini_ttl * self.rate_hz) # convert seconds to counter + self.splini_hyst_timer_sec = rospy.get_param("dynamic_statemachine_server/splini_hyst_timer_sec", 0.75) + self.emergency_break_horizon = rospy.get_param("dynamic_statemachine_server/emergency_break_horizon", 1.1) + self.ftg_speed_mps = rospy.get_param("dynamic_statemachine_server/ftg_speed_mps", 1.0) + self.ftg_timer_sec = rospy.get_param("dynamic_statemachine_server/ftg_timer_sec", 3.0) + + self.ftg_disabled = not rospy.get_param("dynamic_statemachine_server/ftg_active", False) + self.force_gbtrack_state = rospy.get_param("dynamic_statemachine_server/force_GBTRACK", False) + + if self.force_gbtrack_state: + rospy.logwarn(f"[{self.name}] GBTRACK state force activated!!!") + + rospy.logdebug( + "[{}] Received new parameters for state machine: lateral_width_gb_m: {}, " + "lateral_width_ot_m: {}, splini_ttl: {}, splini_hyst_timer_sec: {}, ftg_speed_mps: {}, " + "ftg_timer_sec: {}, GBTRACK_force: {}".format( + self.name, + self.lateral_width_gb_m, + self.lateral_width_ot_m, + self.splini_ttl, + self.splini_hyst_timer_sec, + self.ftg_speed_mps, + self.ftg_timer_sec, + self.force_gbtrack_state + ) + ) + + def sector_dyn_param_cb(self, params: Config): + """ + Notices the change in the parameters and sets no/only ftg zones + """ + # reset ftg zones + self.only_ftg_zones = [] + # update ftg zones + for i in range(self.n_sectors): + self.sectors_params[f"Sector{i}"]["only_FTG"] = params.bools[2 * i].value + if self.sectors_params[f"Sector{i}"]["only_FTG"]: + self.only_ftg_zones.append( + [self.sectors_params[f"Sector{i}"]["start"], self.sectors_params[f"Sector{i}"]["end"]] + ) + + def ot_dyn_param_cb(self, params: Config): + """ + Notices the change in the parameters and sets overtaking zones + """ + # reset overtake zones + self.overtake_zones = [] + # update overtake zones + try: + for i in range(self.n_ot_sectors): + self.ot_sectors_params[f"Overtaking_sector{i}"]["ot_flag"] = params.bools[i].value + # add start and end index of the sector + if self.ot_sectors_params[f"Overtaking_sector{i}"]["ot_flag"]: + self.overtake_zones.append( + [ + self.ot_sectors_params[f"Overtaking_sector{i}"]["start"], + self.ot_sectors_params[f"Overtaking_sector{i}"]["end"], + ] + ) + except IndexError as e: + raise IndexError(f"[State Machine] Error in overtaking sector numbers. \nTry switching map with the script in stack_master/scripts and re-source in every terminal. \nError thrown: {e}") + + self.ot_begin_margin = params.doubles[2].value # Choose the dyn ot param value + rospy.logwarn(f"[{self.name}] Using OT beginning { self.ot_begin_margin}[m] from param: {params.doubles[2].name}" ) + # Spline new OT if they exist already + self.recompute_ot_spline = True + + def merger_cb(self, data): + self.merger = data.data + + def force_trailing_cb(self, data): + self.force_trailing = data.data + + ###################################### + # ATTRIBUTES/CONDITIONS CALCULATIONS # + ###################################### + """ For consistency, all conditions should be calculated in this section, and should all have the same signature: + def _check_condition(self) -> bool: + ... + """ + + def _check_only_ftg_zone(self) -> bool: + ftg_only = False + # check if the car is in a ftg only zone, but only if there is an only ftg zone + if len(self.only_ftg_zones) != 0: + for sector in self.only_ftg_zones: + if sector[0] <= self.cur_s / self.waypoints_dist <= sector[1]: + ftg_only = True + # rospy.logwarn(f"[{self.name}] IN FTG ONLY ZONE") + break # cannot be in two ftg zones + return ftg_only + + def _check_close_to_raceline(self) -> bool: + return np.abs(self.cur_d) < self.gb_ego_width_m # [m] + + def _check_ot_sector(self) -> bool: + for sector in self.overtake_zones: + if sector[0] <= self.cur_s / self.waypoints_dist <= sector[1]: + # rospy.loginfo(f"[{self.name}] In overtaking sector!") + return True + return False + + def _check_ofree(self) -> bool: + o_free = True + + # Slightly different for spliner + if self.ot_planner == "spliner": + if not self.timetrials_only and self.last_valid_avoidance_wpnts is not None: + horizon = self.overtaking_horizon_m # Horizon in front of cur_s [m] + + for obs in self.obstacles: + if self.ot_planner == "spliner": + obs_s = obs.s_center + # Wrapping madness to check if infront + dist_to_obj = (obs_s - self.cur_s) % self.max_s + if dist_to_obj < horizon and len(self.last_valid_avoidance_wpnts): + obs_d = obs.d_center + # Get d wrt to mincurv from the overtaking line + avoid_wpnt_idx = np.argmin( + np.array([abs(avoid_s.s_m - obs_s) for avoid_s in self.last_valid_avoidance_wpnts]) + ) + ot_d = self.last_valid_avoidance_wpnts[avoid_wpnt_idx].d_m + ot_obs_dist = ot_d - obs_d + if abs(ot_obs_dist) < self.lateral_width_ot_m: + o_free = False + rospy.loginfo(f"[{self.name}] O_FREE False, obs dist to ot lane: {ot_obs_dist} m") + break + else: + o_free = True + return o_free + + else: + rospy.logerr(f"[{self.name}] Unknown overtake planner") + raise NotImplementedError + + def _check_gbfree(self) -> bool: + gb_free = True + # If we are in time trial only mode -> return free overtake i.e. GB_FREE True + if not self.timetrials_only: + horizon = self.gb_horizon_m # Horizon in front of cur_s [m] + + for obs in self.obstacles: + obs_s = (obs.s_start + obs.s_end) / 2 + obs_s = obs.s_center + gap = (obs_s - self.cur_s) % self.track_length + if gap < horizon: + obs_d = obs.d_center + # Get d wrt to mincurv from the overtaking line + if abs(obs_d) < self.lateral_width_gb_m: + gb_free = False + rospy.loginfo(f"[{self.name}] GB_FREE False, obs dist to ot lane: {obs_d} m") + break + else: + gb_free = True + + return gb_free + + def _check_enemy_in_front(self) -> bool: + # If we are in time trial only mode -> return free overtake i.e. GB_FREE True + if not self.timetrials_only: + horizon = self.gb_horizon_m # Horizon in front of cur_s [m] + for obs in self.obstacles: + gap = (obs.s_start - self.cur_s) % self.track_length + if gap < horizon: + return True + return False + + def _check_availability_splini_wpts(self) -> bool: + if self.avoidance_wpnts is None: + return False + elif len(self.avoidance_wpnts.wpnts) == 0: + return False + # Say no to the ot line if the last switch was less than 0.75 seconds ago + elif ( + abs((self.avoidance_wpnts.header.stamp - self.avoidance_wpnts.last_switch_time).to_sec()) + < self.splini_hyst_timer_sec + ): + rospy.logdebug(f"[{self.name}]: Still too fresh into the switch...{abs((self.avoidance_wpnts.last_switch_time - rospy.Time.now()).to_sec())}") + return False + else: + # If the splinis are valid update the last valid ones + self.last_valid_avoidance_wpnts = self.avoidance_wpnts.wpnts.copy() + return True + + def _check_ftg(self) -> bool: + # If we have been standing still for 3 seconds inside TRAILING -> FTG + threshold = self.ftg_timer_sec * self.rate_hz + if self.ftg_disabled: + return False + else: + if self.cur_state == StateType.TRAILING and self.cur_vs < self.ftg_speed_mps: + self.ftg_counter += 1 + rospy.logwarn(f"[{self.name}] FTG counter: {self.ftg_counter}/{threshold}") + else: + self.ftg_counter = 0 + + if self.ftg_counter > threshold: + return True + else: + return False + + def _check_emergency_break(self) -> bool: + # NOTE: unused flag, but could be useful + emergency_break = False + if not self.timetrials_only: + if self.obstacles != []: + horizon = self.emergency_break_horizon # Horizon in front of cur_s [m] + + for obs in self.obstacles: + # Wrapping madness to check if infront + dist_to_obj = (obs.s_center - self.cur_s) % self.max_s + if dist_to_obj < horizon: + + # Get d wrt to mincurv from the overtaking line + local_wpnt_idx = np.argmin( + np.array([abs(avoid_s.s_m - obs.s_center) for avoid_s in self.local_wpnts.wpnts]) + ) + ot_d = self.local_wpnts.wpnts[local_wpnt_idx].d_m + ot_obs_dist = ot_d - obs.d_center + if abs(ot_obs_dist) < self.lateral_width_ot_m: + emergency_break = True + rospy.loginfo("[{self.name}] emergency break") + else: + emergency_break = False + return emergency_break + + ################ + # HELPER FUNCS # + ################ + + def mincurv_splinification(self): + coords = np.empty((len(self.glb_wpnts), 4)) + for i, wpnt in enumerate(self.glb_wpnts): + coords[i, 0] = wpnt.s_m + coords[i, 1] = wpnt.x_m + coords[i, 2] = wpnt.y_m + coords[i, 3] = wpnt.vx_mps + + self.mincurv_spline_x = Spline(coords[:, 0], coords[:, 1]) + self.mincurv_spline_y = Spline(coords[:, 0], coords[:, 2]) + self.mincurv_spline_v = Spline(coords[:, 0], coords[:, 3]) + rospy.loginfo(f"[{self.name}] Splinified Min Curve") + + def ot_splinification(self): + coords = np.empty((len(self.overtake_wpnts), 5)) + for i, wpnt in enumerate(self.overtake_wpnts): + coords[i, 0] = wpnt.s_m + coords[i, 1] = wpnt.x_m + coords[i, 2] = wpnt.y_m + coords[i, 3] = wpnt.d_m + coords[i, 4] = wpnt.vx_mps + + # Sort s_m to start splining at 0 + coords = coords[coords[:, 0].argsort()] + self.ot_spline_x = Spline(coords[:, 0], coords[:, 1]) + self.ot_spline_y = Spline(coords[:, 0], coords[:, 2]) + self.ot_spline_d = Spline(coords[:, 0], coords[:, 3]) + self.ot_spline_v = Spline(coords[:, 0], coords[:, 4]) + rospy.loginfo(f"[{self.name}] Splinified Overtaking Curve") + + def _find_nearest_ot_s(self) -> float: + half_search_dim = 5 + + # create indices + idxs = [ + i % self.num_ot_points for i in range(self.cur_id_ot - half_search_dim, self.cur_id_ot + half_search_dim) + ] + ses = np.array([self.overtake_wpnts[i].s_m for i in idxs]) + + dists = np.abs(self.cur_s - ses) + chose_id = np.argmin(dists) + s_ot = idxs[chose_id] + s_ot %= self.num_ot_points + + return s_ot + + def get_splini_wpts(self) -> WpntArray: + """Obtain the waypoints by fusing those obtained by spliner with the + global ones. + """ + splini_glob = self.glb_wpnts.copy() + + # Handle wrapping + if self.last_valid_avoidance_wpnts is not None: + if self.last_valid_avoidance_wpnts[-1].s_m > self.last_valid_avoidance_wpnts[0].s_m: + splini_idxs = [ + s + for s in range( + int(self.last_valid_avoidance_wpnts[0].s_m / self.waypoints_dist + 0.5), + int(self.last_valid_avoidance_wpnts[-1].s_m / self.waypoints_dist + 0.5), + ) + ] + else: + splini_idxs = [ + int(s % (self.max_s / self.waypoints_dist) + 0.5) + for s in range( + int(self.last_valid_avoidance_wpnts[0].s_m / self.waypoints_dist + 0.5), + int((self.max_s + self.last_valid_avoidance_wpnts[-1].s_m) / self.waypoints_dist + 0.5), + ) + ] + + with self.lock: # to avoid crash when the waypoints are updated but we're looping here + for i, s in enumerate(splini_idxs): + # splini_glob[s] = self.last_valid_avoidance_wpnts[i] + splini_glob[s] = self.last_valid_avoidance_wpnts[min(i, len(self.last_valid_avoidance_wpnts) - 1)] + + # If the last valid points have been reset, then we just pass the global waypoints + else: + rospy.logwarn(f"[{self.name}] No valid avoidance waypoints, passing global waypoints") + pass + + return splini_glob + + ####### + # VIZ # + ####### + + def _pub_local_wpnts(self, wpts: WpntArray): + loc_markers = MarkerArray() + loc_wpnts = wpts + loc_wpnts.header.stamp = rospy.Time.now() + loc_wpnts.header.frame_id = "map" + + for i, wpnt in enumerate(loc_wpnts.wpnts): + mrk = Marker() + mrk.header.frame_id = "map" + mrk.type = mrk.SPHERE + mrk.scale.x = 0.15 + mrk.scale.y = 0.15 + mrk.scale.z = 0.15 + mrk.color.a = 1.0 + mrk.color.g = 1.0 + + mrk.id = i + mrk.pose.position.x = wpnt.x_m + mrk.pose.position.y = wpnt.y_m + mrk.pose.position.z = wpnt.vx_mps / self.max_speed # Visualise speed in z dimension + mrk.pose.orientation.w = 1 + loc_markers.markers.append(mrk) + + if len(loc_wpnts.wpnts) == 0: + rospy.logwarn(f"[{self.name}] No local waypoints published...") + else: + self.loc_wpnt_pub.publish(loc_wpnts) + + self.vis_loc_wpnt_pub.publish(loc_markers) + + def visualize_state(self, state: str): + """ + Function that visualizes the state of the car by displaying a colored cube in RVIZ. + + Parameters + ---------- + action + Current state of the car to be displayed + """ + if self.first_visualization: + self.first_visualization = False + x0 = self.glb_wpnts[0].x_m + y0 = self.glb_wpnts[0].y_m + x1 = self.glb_wpnts[1].x_m + y1 = self.glb_wpnts[1].y_m + # compute normal vector of 125% length of trackboundary but to the left of the trajectory + xy_norm = ( + -np.array([y1 - y0, x0 - x1]) / np.linalg.norm([y1 - y0, x0 - x1]) * 1.25 * self.glb_wpnts[0].d_left + ) + + self.x_viz = x0 + xy_norm[0] + self.y_viz = y0 + xy_norm[1] + + mrk = Marker() + mrk.type = mrk.SPHERE + mrk.id = 1 + mrk.header.frame_id = "map" + mrk.header.stamp = rospy.Time.now() + mrk.color.a = 1.0 + mrk.color.g = 1.0 + mrk.pose.position.x = self.x_viz + mrk.pose.position.y = self.y_viz + mrk.pose.position.z = 0 + mrk.pose.orientation.w = 1 + mrk.scale.x = 1 + mrk.scale.y = 1 + mrk.scale.z = 1 + + # Set color and log info based on the state of the car + if state == "GB_TRACK": + mrk.color.g = 1.0 + elif state == "OVERTAKE": + mrk.color.r = 1.0 + mrk.color.g = 1.0 + mrk.color.b = 1.0 + elif state == "TRAILING": + mrk.color.r = 0.0 + mrk.color.g = 0.0 + mrk.color.b = 1.0 + elif state == "FTGONLY": + mrk.color.r = 1.0 + mrk.color.g = 0.0 + mrk.color.b = 0.0 + self.state_mrk.publish(mrk) + + def publish_not_ready_marker(self): + """Publishes a text marker that warn the user that the car is not ready to run""" + mrk = Marker() + mrk.type = mrk.TEXT_VIEW_FACING + mrk.id = 1 + mrk.header.frame_id = "map" + mrk.header.stamp = rospy.Time.now() + mrk.color.a = 1.0 + mrk.color.r = 1.0 + mrk.color.g = 0.0 + mrk.color.b = 0.0 + mrk.pose.position.x = np.mean( + [wpnt.x_m for wpnt in self.glb_wpnts] + ) # publish in the center of the track, to avoid not seeing it + mrk.pose.position.y = np.mean([wpnt.y_m for wpnt in self.glb_wpnts]) + mrk.pose.position.z = 1.0 + mrk.pose.orientation.w = 1 + mrk.scale.x = 4.69 + mrk.scale.y = 4.69 + mrk.scale.z = 4.69 + mrk.text = "BATTERY TOO LOW!!!" + self.emergency_pub.publish(mrk) + + ############# + # MAIN LOOP # + ############# + def loop(self): + """Main loop of the state machine. It is called at a fixed rate by the + ROS node. + """ + + # safety check + if self.cur_volt < self.volt_threshold: + rospy.logerr_throttle_identical(1, f"[{self.name}] VOLTS TOO LOW, STOP THE CAR") + + # publishes a marker that warn the user that the car is not ready to run + self.publish_not_ready_marker() + + # do state transition (unless we want to force it into GB_TRACK via dynamic reconfigure) + if self.measuring: + start = time.perf_counter() + if not self.force_gbtrack_state: + self.cur_state = self.state_transitions[self.cur_state](self) + else: + self.cur_state = StateType.GB_TRACK + rospy.logwarn(f"[{self.name}] GBTRACK state forced!!!") + if self.measuring: + end = time.perf_counter() + self.latency_pub.publish(end - start) + + self.state_pub.publish(self.cur_state.value) + self.visualize_state(state=self.cur_state.value) + if self.timetrials_only: + rospy.logdebug_throttle_identical( + 1, f"[{self.name}] Switched to state {self.cur_state} in time trials only mode" + ) + else: + rospy.logdebug_throttle_identical( + 1, f"[{self.name}] Switched to state {self.cur_state} in OT mode: {self.ot_planner}" + ) + + # decrease splini ttl counter used to cache the splini waypoints, once 0 it gets overwritten in case of empty avoidance + if self.ot_planner == "spliner": + self.splini_ttl_counter -= 1 + # Once ttl has reached 0 we overwrite the avoidance waypoints with the empty waypoints + if self.splini_ttl_counter <= 0: + self.last_valid_avoidance_wpnts = None + self.avoidance_wpnts = WpntArray() + self.splini_ttl_counter = -1 + + + # get the proper local waypoints based on the new state + self.local_wpnts.wpnts = self.states[self.cur_state](self) + self._pub_local_wpnts(self.local_wpnts) + + # Clear FTG counter if not in TRAILING state + if self.cur_state != StateType.TRAILING: + self.ftg_counter = 0 + + +if __name__ == "__main__": + name = "state_machine" + rospy.init_node(name, anonymous=False, log_level=rospy.WARN) + + + # init and run state machine + state_machine = StateMachine(name) + rospy.on_shutdown(state_machine.on_shutdown) + + loop_rate = rospy.Rate(state_machine.rate_hz) + while not rospy.is_shutdown(): + state_machine.loop() + loop_rate.sleep() diff --git a/state_machine/src/state_transitions.py b/state_machine/src/state_transitions.py new file mode 100644 index 0000000..b86bcf6 --- /dev/null +++ b/state_machine/src/state_transitions.py @@ -0,0 +1,109 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from states_types import StateType + +if TYPE_CHECKING: + from state_machine_node import StateMachine + +""" +Transitions should loosely follow the following template (basically a match-case) + +if (logic sum of bools obtained by methods of state_machine): + return StateType. +elif (e.g. state_machine.obstacles are near): + return StateType. +... + +NOTE: ideally put the most common cases on top of the match-case + +NOTE 2: notice that, when implementing new states, if an attribute/condition in the + StateMachine is not available, your IDE will tell you, but only if you have a smart + enough IDE. So use vscode, pycharm, fleet or whatever has specific python syntax highlights. + +NOTE 3: transistions must not have side effects on the state machine! + i.e. any attribute of the state machine should not be modified in the transitions. + +""" + + +####################### +# SPLINER TRANSITIONS # +####################### +def SpliniGlobalTrackingTransition(state_machine: StateMachine) -> StateType: + """Transitions for being in `StateType.GB_TRACK`""" + if not state_machine._check_only_ftg_zone(): + if state_machine._check_gbfree(): + return StateType.GB_TRACK + else: + return StateType.TRAILING + else: + return StateType.FTGONLY + + +def SpliniTrailingTransition(state_machine: StateMachine) -> StateType: + """Transitions for being in `StateType.TRAILING`""" + gb_free = state_machine._check_gbfree() + ot_sector = state_machine._check_ot_sector() + + if not state_machine._check_only_ftg_zone(): + # If we have been sitting around in TRAILING for a while then FTG + if state_machine._check_ftg(): + return StateType.FTGONLY + if not gb_free and not ot_sector: + return StateType.TRAILING + elif gb_free and state_machine._check_close_to_raceline(): + return StateType.GB_TRACK + elif ( + not gb_free + and ot_sector + and state_machine._check_availability_splini_wpts() + and state_machine._check_ofree() + ): + return StateType.OVERTAKE + else: + return StateType.TRAILING + else: + return StateType.FTGONLY + + +def SpliniOvertakingTransition(state_machine: StateMachine) -> StateType: + """Transitions for being in `StateType.OVERTAKE`""" + if not state_machine._check_only_ftg_zone(): + in_ot_sector = state_machine._check_ot_sector() + spline_valid = state_machine._check_availability_splini_wpts() + o_free = state_machine._check_ofree() + + # If spline is on an obstacle we trail + if not o_free: + return StateType.TRAILING + if in_ot_sector and o_free and spline_valid: + return StateType.OVERTAKE + # If spline becomes unvalid while overtaking, we trail + elif in_ot_sector and not spline_valid and not o_free: + return StateType.TRAILING + # go to GB_TRACK if not in ot_sector and the GB is free + elif not in_ot_sector and state_machine._check_gbfree(): + return StateType.GB_TRACK + # go to Trailing if not in ot_sector and the GB is not free + else: + return StateType.TRAILING + else: + return StateType.FTGONLY + + +def SpliniFTGOnlyTransition(state_machine: StateMachine) -> StateType: + if state_machine._check_only_ftg_zone(): + return StateType.FTGONLY + else: + if state_machine._check_close_to_raceline() and state_machine._check_gbfree(): + return StateType.GB_TRACK + else: + return StateType.FTGONLY + + +#################################### +# OTHER TRANSITIONS could go here # +#################################### +# def SomeOtherStateTransition(state_machine: StateMachine) -> StateType: diff --git a/state_machine/src/states.py b/state_machine/src/states.py new file mode 100644 index 0000000..edf7ce8 --- /dev/null +++ b/state_machine/src/states.py @@ -0,0 +1,32 @@ +from typing import List +from state_machine_node import StateMachine +from f110_msgs.msg import Wpnt + +""" +Here we define the behaviour in the different states. +Every function should be fairly concise, and output an array of f110_msgs.Wpnt +""" +def GlobalTracking(state_machine: StateMachine) -> List[Wpnt]: + s = int(state_machine.cur_s/state_machine.waypoints_dist + 0.5) + return [state_machine.glb_wpnts[(s + i)%state_machine.num_glb_wpnts] for i in range(state_machine.n_loc_wpnts)] + +def Trailing(state_machine: StateMachine) -> List[Wpnt]: + # This allows us to trail on the last valid spline if necessary + if state_machine.last_valid_avoidance_wpnts is not None: + splini_wpts = state_machine.get_splini_wpts() + s = int(state_machine.cur_s/state_machine.waypoints_dist + 0.5) + return [splini_wpts[(s + i)%state_machine.num_glb_wpnts] for i in range(state_machine.n_loc_wpnts)] + else: + s = int(state_machine.cur_s/state_machine.waypoints_dist + 0.5) + return [state_machine.glb_wpnts[(s + i)%state_machine.num_glb_wpnts] for i in range(state_machine.n_loc_wpnts)] + +def Overtaking(state_machine: StateMachine) -> List[Wpnt]: + splini_wpts = state_machine.get_splini_wpts() + s = int(state_machine.cur_s/state_machine.waypoints_dist + 0.5) + return [splini_wpts[(s + i)%state_machine.num_glb_wpnts] for i in range(state_machine.n_loc_wpnts)] + +def FTGOnly(state_machine: StateMachine) -> List[Wpnt]: + """No waypoints are generated in this follow the gap only state, all the + control inputs are generated in the control node. + """ + return [] diff --git a/state_machine/src/states_types.py b/state_machine/src/states_types.py new file mode 100644 index 0000000..75a0150 --- /dev/null +++ b/state_machine/src/states_types.py @@ -0,0 +1,7 @@ +import enum + +class StateType(enum.Enum): + GB_TRACK = 'GB_TRACK' + TRAILING = 'TRAILING' + OVERTAKE = 'OVERTAKE' + FTGONLY = 'FTGONLY' diff --git a/state_machine/state_indicator/README.md b/state_machine/state_indicator/README.md new file mode 100644 index 0000000..c1b84bb --- /dev/null +++ b/state_machine/state_indicator/README.md @@ -0,0 +1,63 @@ +## Overview + +The state indicator contains two parts: a .ino file which is flashed on the microcontroller (MCU) board and a ROS node that runs parallelly on the onboard computer (OBC). The ROS node handles all heavy computations and publishes the needed topics in a lightweight format to the MCU, which in turn commands the LED ring based on this information. + +Two modes for visualizing data on the state indicator are available. +- Mode 1 (default): STATE_MODE for visualization of the current state from the state machine + - Red: Follow the gap controller + - Green: GB optimizer + - Blue: Trailing + - Blinking RGB: Overtaking + + +- Mode 2: SPEED_STEERING_MODE for visualization of telemetry data + - LEDs on front: Visualization of the current speed. Green corresponds to slow, while red corresponds to high speed (parameter range: 0 - 7 m/s) + - LEDs on sides: Vizualization of the steering. Left steering corresponds to an activation of the LEDs on the left side and vice versa. The more intensive the blue light, the larger the steering angle (parameter range: -0.3 - 0 rad and 0 - 0.3 rad). + +At any time the mode can be switched by typing *1* or *2* in the running terminal. + + + +## Hardware setup + +### Mounting +The mounting system consists of two parts: a socket that is mounted on an even surface on the racecar, as well as the housing part that protects the MCU and is the foundation for the sombrero hat. The sombrero can be fixed with double sided tape to the housing part. + +On the following drive, the STL files of these parts are available for 3D printing: +`https://drive.google.com/drive/folders/1xYb2RIYk_Wn1eqLJk18Y0YzSIoeKPCN8` + +### Electronics +The centerpiece of the state indicator is the MCU, which processes the data from the OBC. The board is connected to the OBC per USB cable and is wired with the LED ring on which the data is visualized. The utilized MCU is an **Arduino Micro** which offers a micro USB port for communication via rosserial with the OBC, as well as *pulse width modulation (PWM)* pins for communication with the LED ring. Three cables transmitting **GND**, **5V VCC** and **Data in (PWM)** are soldered on the corresponding pins on the MCU as well as on the LED ring. + +## Software setup + +### Setup on the microcontroller (MCU) +Plug in the MCU to your computer and flash the provided `.ino` file on it. Additionally, the `Adafruit_Neopixel` library needs to be installed on the MCU. + + +### Setup on the onboard computer (OBC) + +Connect the MCU with the OBC via a micro USB cable. +To attach the MCU permanently, add the following udev rule: +``` +$ sudo nano /etc/udev/rules.d/99-state-indicator.rules +``` + +Then define the rule as follows: +`KERNEL=="ttyACM[0-9]*", ACTION=="add", ATTRS{idVendor}=="2341", ATTRS{idProduct}=="8037", MODE="0666", GROUP="dialout", SYMLINK+="state_indicator"` + +Execute these commands to reload and apply the rule: +``` +$ sudo udevadm control --reload-rules +$ sudo udevadm trigger +``` + +Now you should find the port `/dev/state_indicator` + + + +## Usage +To start up the state indicator, launch the following file: +``` +$ roslaunch stack_master state_indicator.launch +``` \ No newline at end of file diff --git a/state_machine/state_indicator/src/state_indicator_node.py b/state_machine/state_indicator/src/state_indicator_node.py new file mode 100755 index 0000000..d693962 --- /dev/null +++ b/state_machine/state_indicator/src/state_indicator_node.py @@ -0,0 +1,191 @@ +#!/usr/bin/env python3 + +import rospy +from std_msgs.msg import String +from std_msgs.msg import Int8 +from std_msgs.msg import Int32 +from std_msgs.msg import Float32 +from visualization_msgs.msg import Marker +from geometry_msgs.msg import PointStamped +from ackermann_msgs.msg import AckermannDriveStamped +import tf2_ros +import tf2_geometry_msgs +import math + +class StateIndicatorNode: + """ + This class implements a ROS node that handles the terminal utilities of the state indicator. Furthermore it acts as a republisher node. + Intensive computations are offloaded from the MCU to this node by subscribing to data and processing it into lightweight messages + for the MCU, as well as publishing them at a lower rate to reduce computational load on the MCU. + + It subscribes to the following topics: + - `/state_machine`: Subscribes to the current state from the state machine. + - `/trailing_opponent_marker`: Subscribes to the marker of the obstacle the racecar is trailing. + - `/vesc/high_level/ackermann_cmd_mux/input/nav_1`: Subscribes to the ackermann telemetry data of the racecar. + + The node publishes the following topics: + - `/state_indicator/mode`: Publishes the mode based on the user input through the terminal. + - `/state_indicator/state`: Republishes the state with 20 Hz. + - `/state_indicator/angle_led_index`: Publishes the index of the LED that should be light up on the state indicator to indicate + the position of the tracked obstacle at 10 Hz. + - `/state_indicator/speed`: Republishes the speed of the racecar from the ackermann message at 10 Hz. + - `/state_indicator/steering_angle`: Republishes the steering angle of the racecar from the ackermann message at 10 Hz. + """ + + def __init__(self): + """ + Initialize the node, subscribe to topics, create publishers and set up member variables. + """ + + # Initialize the node + self.name = "state_indicator_node" + rospy.init_node(self.name, anonymous=True) + + # Subscribe to the topics + rospy.Subscriber('/state_machine', String, self.state_callback) + rospy.Subscriber('/trailing_opponent_marker', Marker, self.trainling_angle_callback) + rospy.Subscriber('/vesc/high_level/ackermann_cmd_mux/input/nav_1', AckermannDriveStamped, self.ackermann_callback) + + # Publish the topics + self.mode_pub = rospy.Publisher('/state_indicator/mode', Int32, queue_size=10) + self.state_pub = rospy.Publisher('/state_indicator/state', String, queue_size=10) + self.trailing_angle_led_index_pub = rospy.Publisher('/state_indicator/trailing_angle_led_index', Int8, queue_size=10) + self.speed_pub = rospy.Publisher('/state_indicator/speed', Float32, queue_size=10) + self.steering_pub = rospy.Publisher('/state_indicator/steering_angle', Float32, queue_size=10) + + # Define variables used to control the publishing frequency of the topics + self.last_publish_time_state = rospy.Time.now() + self.last_publish_time_ackermann = rospy.Time.now() + self.last_publish_time_trailing_angle = rospy.Time.now() + + # Desired frequency in Hz + self.publish_frequency_state = 20 + self.publish_frequency_ackermann = 10 + self.publish_frequency_trailing_angle = 10 + + # Calculate the minimum interval + self.min_publish_interval_state = 1.0 / self.publish_frequency_state + self.min_publish_interval_ackermann = 1.0 / self.publish_frequency_ackermann + self.min_publish_interval_trailing_angle = 1.0 / self.publish_frequency_trailing_angle + + # Initialize the mode and state + self.current_mode = "STATE_MODE" + self.current_state = "GB_TRACK" + self.previous_state = "GB_TRACK" + + self.tf_buffer = tf2_ros.Buffer(rospy.Duration(1200.0)) + self.tf_listener = tf2_ros.TransformListener(self.tf_buffer) + + self.led_count = 12 # Number of LEDs on the LED ring + + # Depending on how the LED ring is mounted relative to the sombrero, the angle_offset may need to be adjusted + self.angle_offset = 180.0 # [degrees] + + ############# + # CALLBACKS # + ############# + + def state_callback(self, state_msg): + """ + Callback function for the state of the racecar. Republishes the state topic at 30 Hz as a String. + + Args: + - state_msg (String): The received message containing the state. + """ + + current_time = rospy.Time.now() + # Check if we should publish based on the last_publish_time and the minimum_interval + if (current_time - self.last_publish_time_state).to_sec() > self.min_publish_interval_state: + if self.current_state != state_msg.data: + if self.current_mode == "STATE_MODE": + # If the state has changed, print the change to the terminal and update current and previous states + rospy.loginfo(f"Switched to state: {state_msg.data}") + self.previous_state = self.current_state + self.current_state = state_msg.data + + # Republish the latest state message received + self.state_pub.publish(state_msg) + self.last_publish_time_state = current_time + + def ackermann_callback(self, ackermann_msg): + """ + Callback function for the telemetry data of the racecar.Republishes the speed and steering angle topic at 10 Hz as a Float32. + + Args: + - ackermann_msg (AckermannDriveStamped): The received message containing the telemetry data. + """ + + # Extract steering_angle and speed from received message + steer = ackermann_msg.drive.steering_angle + speed = ackermann_msg.drive.speed + + current_time = rospy.Time.now() + # Check if we should publish based on the last_publish_time and the minimum_interval + if (current_time - self.last_publish_time_ackermann).to_sec() > self.min_publish_interval_ackermann: + # Publish steering angle and speed to separate topics + self.steering_pub.publish(steer) + self.speed_pub.publish(speed) + self.last_publish_time_ackermann = current_time + + def trainling_angle_callback(self, marker_msg): + """ + Callback function for the trainling angle. Extracts the opponent point from the marker and transforms it into the 'base_link' frame. + Subsequently it calculates the angle between the opponent point and the x-axis and maps it to the an LED index, representing which LED on the ring to light up. + Publishes the LED index at 10 Hz as an Int8. + + Args: + - marker_msg (Marker): The received message containing the telemetry data. + """ + + current_time = rospy.Time.now() + if (current_time - self.last_publish_time_trailing_angle).to_sec() > self.min_publish_interval_trailing_angle: + + # Create the opponent point in the 'map' frame + opponent_point = PointStamped() + opponent_point.header.frame_id = marker_msg.header.frame_id + opponent_point.point = marker_msg.pose.position + + try: + # Transform the point to the 'base_link' frame + transform = self.tf_buffer.lookup_transform('base_link', 'map', rospy.Time()) + opponent_point_base_link = tf2_geometry_msgs.do_transform_point(opponent_point, transform) + + # Calculate the angle between the opponent point and the x-axis in 'base_link' + angle = math.atan2(opponent_point_base_link.point.y, opponent_point_base_link.point.x) + + # map the angle to the LED index and publish it as an Int8 + angle_degrees = math.degrees(angle) + self.angle_offset + angle_degrees = angle_degrees % 360 + led_index = int(round((360.0 - angle_degrees) * (self.led_count - 1) / 360.0)) + self.trailing_angle_led_index_pub.publish(Int8(led_index)) + self.last_publish_time_trailing_angle = current_time + + except (tf2_ros.LookupException, tf2_ros.ConnectivityException, tf2_ros.ExtrapolationException): + rospy.loginfo('[State Indicator]: TF Exception') + + ############# + # MAIN LOOP # + ############# + + def run(self): + rospy.loginfo("Type '1' for STATE_MODE or '2' for SPEED_STEERING_MODE") + + while not rospy.is_shutdown(): + user_input = input().strip() + if user_input in ['1', '2']: + mode = int(user_input) + if mode == 1: + self.current_mode = "STATE_MODE" + elif mode == 2: + self.current_mode = "SPEED_STEERING_MODE" + self.mode_pub.publish(mode) + rospy.loginfo(f"Switched to mode {mode}.") + else: + rospy.logwarn("Invalid input. Type '1' or '2' to switch between modes.") + + rospy.loginfo("Shutting down.") + +if __name__ == '__main__': + state_indicator = StateIndicatorNode() + state_indicator.run() + diff --git a/state_machine/state_indicator/state_indicator.ino b/state_machine/state_indicator/state_indicator.ino new file mode 100644 index 0000000..a2bdcb9 --- /dev/null +++ b/state_machine/state_indicator/state_indicator.ino @@ -0,0 +1,372 @@ +/******************************** PREPROCESSOR DIRECTIVES ********************************/ + +#define USE_USBCON // Ensures the serial communication is correctly initialized with rosserial over USB +#include +#include +#include +#include +#include +#include + + +/******************************** GLOBAL VARIABLES ********************************/ + +// Constants +constexpr uint8_t LED_COUNT = 12; // Number of LEDs on the ring +constexpr uint8_t LED_PIN = 13; // Digital pin on board connected to the ring +constexpr uint8_t MAIN_LOOP_DELAY = 90; // [ms] Delay introduced in the main loop. Neccesary for the OVERTAKE animation +constexpr uint16_t TIMEOUT_THRESHOLD = 10000; // [ms] Time since last message to trigger a timeout +constexpr uint8_t SPEED_STEERING_SCALING = 100; // Factor to scale speed and steering angle values. + // This is done to convert them from a float to an int. Adapt the scaling to adjust the accuracy of the value + +Adafruit_NeoPixel strip(LED_COUNT, LED_PIN, NEO_GRB + NEO_KHZ800); + +// Enums for state and mode management +enum OperationMode : uint8_t { STATE_MODE = 1, SPEED_STEERING_MODE = 2 }; +enum CarState : uint8_t { GB_TRACK, TRAILING, OVERTAKE, FTGONLY }; + +OperationMode currentMode = STATE_MODE; +CarState currentState = GB_TRACK, previousState = GB_TRACK; + +// Function declarations +void stateCallback (const std_msgs::String& stateMsg); +void modeCallback(const std_msgs::Int32& modeMsg); +void trailingAngleLedIndexCallback(const std_msgs::Int8& trailingAngleLedIndexMsg); +void speedCallback(const std_msgs::Float32& speedMsg); +void steeringAngleCallback(const std_msgs::Float32& steeringAngleMsg); + +void updateLedSpeed(); +void updateLedSteering(); +void updateLedTrailingAngle(); +void updateLedState(); +void overtakeAnimation(); + +// Variables for tracking timeout +unsigned long lastMessageTimeState = 0; +unsigned long lastMessageTimeSpeedSteering = 0; +bool timeoutModeState = false; +bool timeoutModeSpeedSteering = false; + +// Variables for OVERTAKE animation +unsigned long previousMillis = 0; +uint8_t currentBlink = 0; +uint8_t currentShift = 0; +bool overtakeAnimationActive = false; +bool overtakeAnimationComplete = false; + +// Variables for storing the last received messages from the callbacks +int16_t lastSteeringAngleMsg = 0; +uint16_t lastSpeedMsg = 0; +uint8_t lastTrailingAngleLedIndexMsg = 0; + +// ROS subscribers +ros::NodeHandle nh; +ros::Subscriber stateSubscriber("/state_indicator/state", stateCallback); +ros::Subscriber modeSubscriber("/state_indicator/mode", modeCallback); +ros::Subscriber trailingAngleLedIndexSubscriber("/state_indicator/trailing_angle_led_index", trailingAngleLedIndexCallback); +ros::Subscriber speedSubscriber("/state_indicator/speed", speedCallback); +ros::Subscriber steeringAngleSubscriber("/state_indicator/steering_angle", steeringAngleCallback); + + +/******************************** CALLBACK FUNCTIONS ********************************/ + +void modeCallback(const std_msgs::Int32& modeMsg){ +/* + * Callback function for the mode message. + * + * Args: + * - modeMsg: message containing the mode. + */ + + if (currentMode != modeMsg.data) { + strip.clear(); + strip.show(); + } + currentMode = modeMsg.data; +} + +void stateCallback(const std_msgs::String& stateMsg){ +/* + * Callback function for the state message. + * + * Args: + * - stateMsg: message containing the state of the racecar. + */ + + if (currentMode != STATE_MODE) return; // Only process the message in STATE_MODE + + if (strcmp(stateMsg.data, "GB_TRACK") == 0) { + currentState = GB_TRACK; + } else if (strcmp(stateMsg.data, "TRAILING") == 0) { + currentState = TRAILING; + } else if (strcmp(stateMsg.data, "OVERTAKE") == 0) { + currentState = OVERTAKE; + } else if (strcmp(stateMsg.data, "FTGONLY") == 0) { + currentState = FTGONLY; + } + lastMessageTimeState = millis(); + timeoutModeState = false; +} + +void trailingAngleLedIndexCallback(const std_msgs::Int8& trailingAngleLedIndexMsg){ +/* + * Callback function for the trailing angle LED index message. + * + * Args: + * - trailingAngleLedIndexMsg: message containing the LED index, representing the position + * of the opponent racecar relative to the racecar on its LED ring. + */ + + if(currentMode != STATE_MODE) return; // Only process the message in STATE_MODE + + lastTrailingAngleLedIndexMsg = trailingAngleLedIndexMsg.data; +} + +void speedCallback(const std_msgs::Float32& speedMsg){ +/* + * Callback function for the speed message. + * + * Args: + * - speedMsg: message containing the speed of the racecar. + */ + + if(currentMode != SPEED_STEERING_MODE) return; // Only process the message in SPEED_STEERING_MODE + + lastSpeedMsg = static_cast(speedMsg.data * SPEED_STEERING_SCALING); // Scale Float32 to convert it to an unsinged integer + lastMessageTimeSpeedSteering = millis(); + timeoutModeSpeedSteering = false; +} + +void steeringAngleCallback(const std_msgs::Float32& steeringAngleMsg){ +/* + * Callback function for the steering angle message. + * + * Args: + * - steeringAngleMsg: message containing the steering angle of the racecar. + */ + + if(currentMode != SPEED_STEERING_MODE) return; // Only process the message in SPEED_STEERING_MODE + + lastSteeringAngleMsg = static_cast(steeringAngleMsg.data * SPEED_STEERING_SCALING); // Scale Float32 to convert it to a signed integer + lastMessageTimeSpeedSteering = millis(); + timeoutModeSpeedSteering = false; +} + + +/******************************** LED VISUALIZATION FUNCTIONS ********************************/ + +void updateLedState() { +/* + * Function to update the LED ring color uniformly based on the current state of the racecar. + * Blue for TRAILING, Green for GB_TRACK, Red for FTGONLY and a RGB colored animation for OVERTAKE. + */ + + bool stateChanged = (currentState != previousState); // Check if the state has changed since the last update + + // Only update the LEDs if the overtake animation is not active or has just completed + if (!overtakeAnimationActive || overtakeAnimationComplete) { + strip.clear(); + + switch (currentState) { + case GB_TRACK: + if (!overtakeAnimationActive) { + strip.fill(strip.Color(0, 255, 0), 0, LED_COUNT); // Update LED ring to green + } + break; + + case TRAILING: + if (!overtakeAnimationActive) { + strip.fill(strip.Color(0, 0, 255), 0, LED_COUNT); // Update LED ring to blue + } + break; + + case OVERTAKE: + // Update flags and variables for OVERTAKE animation if the state has just changed + if (stateChanged) { + overtakeAnimationActive = true; + overtakeAnimationComplete = false; + currentShift = 0; + currentBlink = 0; + previousMillis = millis(); + } + break; + + case FTGONLY: + if (!overtakeAnimationActive) { + strip.fill(strip.Color(255, 0, 0), 0, LED_COUNT); // Update LED ring to red + } + break; + + default: + strip.clear(); // Clear LEDs if the state is undefined + } + strip.show(); + } + if (stateChanged) { + previousState = currentState; + } +} + +void overtakeAnimation(){ +/* + * Function to conduct an animation of alternately blinking RGB colors on the LED ring. + * Blue for TRAILING, Green for GB_TRACK, Red for FTGONLY and a RGB colored animation for OVERTAKE. + */ + + uint32_t colors[] = {strip.Color(255, 0, 0), strip.Color(0, 255, 0), strip.Color(0, 0, 255)}; // Red, Green, Blue + + // Check if enough time has passed to update the animation + if (millis() - previousMillis >= 30) { + previousMillis = millis(); + + // Ensure the animation runs only if the currentState is OVERTAKE and the animation is active + if (currentState == OVERTAKE && overtakeAnimationActive) { + for (uint8_t i = 0; i < LED_COUNT; i++) { + strip.setPixelColor(i, colors[(i + currentShift) % 3]); + } + strip.show(); + + // Change the color of every LED to the next one in the colors array for three times + currentShift++; + if (currentShift >= 3) { + currentShift = 0; + currentBlink++; + } + + // Conduct five iterations of the currentShift pattern + if (currentBlink >= 5) { + overtakeAnimationActive = false; + overtakeAnimationComplete = true; + currentBlink = 0; + } + } else { + overtakeAnimationActive = false; + } + } +} + +void updateLedTrailingAngle(){ +/* + * Function to set one LED, which resembles the relative direction to the opponent racecar, to purple. + * Is only called only, if the current state is TRAILING. + */ + + strip.setPixelColor(lastTrailingAngleLedIndexMsg, 255, 0, 255); // Purple color +} + +void updateLedSpeed(){ +/* + * Function to set the front five LEDs to an uniformly color, which resembles the speed of the racecar. + * Depending on how the LED ring is mounted relative to the sombrero hat, other indices of the LEDs that are controled need to be set. + */ + + uint16_t speed = map(lastSpeedMsg, 0, 700, 0, 255); // Map speed value (0m/s - 7m/s) to RGB range (0 - 255) + for (uint8_t i = 4; i < 9; i++) { + strip.setPixelColor(i, speed, 255 - speed, 0); // Fast driving -> red ; slow driving -> green + } +} + +void updateLedSteering(){ +/* + * Function to set three LEDs on the side to an uniformly blue color, which resembles the steering angle of the racecar. + * Depending on how the LED ring is mounted relative to the sombrero, other indices of the LEDs that are controled need to be set. + */ + + uint16_t steerRight = 0; + uint16_t steerLeft = 0; + + if(lastSteeringAngleMsg > 0){ + steerLeft = map(abs(lastSteeringAngleMsg), 0, 30, 0, 255); // Map steering value (0rad - 0.3rad) to RGB range (0 - 255) + } else if(lastSteeringAngleMsg < 0){ + steerRight = map(abs(lastSteeringAngleMsg), 0, 30, 0, 255); // Map steering value (-0.3rad - 0rad) to RGB range (0 - 255) + } + + for (uint8_t i = 1; i < 4; i++) { + strip.setPixelColor(i, 0, 0, steerLeft); // Harder steering -> more intensive blue + } + + for (uint8_t i = 9; i < 12; i++) { + strip.setPixelColor(i, 0, 0, steerRight); // Harder steering -> more intensive blue + } +} + + +/******************************** LOOP AND SETUP FUNCTIONS ********************************/ + +void setup(){ +/* + * Initializes the Arduino setup: sets up ROS node subscriptions, initializes the LED strip and ensures all systems are ready for operation. + */ + + nh.initNode(); + nh.subscribe(stateSubscriber); + nh.subscribe(modeSubscriber); + nh.subscribe(trailingAngleLedIndexSubscriber); + nh.subscribe(speedSubscriber); + nh.subscribe(steeringAngleSubscriber); + + strip.begin(); + strip.show(); + + // Initizalize the lastMessageTime for the first call of the timeout clause + lastMessageTimeState = millis(); + lastMessageTimeSpeedSteering = millis(); +} + + +void loop(){ +/* + * Main loop where the main logic takes place. Depeding on the mode and the time, at which the last message was received, + * either a timeout is triggered or the updateLED functions are called. + */ + + nh.spinOnce(); // Process ROS messages + unsigned long currentTime = millis(); + + // Turn off LEDs if the connection to the ROS node is lost + if (!nh.connected()) { + strip.clear(); + strip.show(); + } + + if(currentMode == STATE_MODE){ + if (currentTime - lastMessageTimeState > TIMEOUT_THRESHOLD) { + strip.clear(); + + // Log when no messages to the callback have arrived in the last TIMEOUT_THRESHOLD milliseconds + char log_msg[47]; + snprintf(log_msg, sizeof(log_msg), "STATE: No message arrived in the last %hu ms", TIMEOUT_THRESHOLD); + nh.loginfo(log_msg); + timeoutModeState = true; + } + else{ + strip.clear(); + updateLedState(); + if(currentState == TRAILING){ + updateLedTrailingAngle(); + } + if(overtakeAnimationActive){ + overtakeAnimation(); + } + } + } + else if(currentMode == SPEED_STEERING_MODE){ + if (currentTime - lastMessageTimeSpeedSteering > TIMEOUT_THRESHOLD) { + strip.clear(); + + // Log when no messages to the callback have arrived in the last TIMEOUT_THRESHOLD milliseconds + char log_msg[56]; + snprintf(log_msg, sizeof(log_msg), "SPEED_STEERING: No message arrived in the last %hu ms", TIMEOUT_THRESHOLD); + nh.loginfo(log_msg); + timeoutModeSpeedSteering = true; + } + else{ + strip.clear(); + updateLedSpeed(); + updateLedSteering(); + } + } + + strip.show(); + delay(MAIN_LOOP_DELAY); // Delay the main loop to allow the OVERTAKE animation to finish before the next update +} diff --git a/system_identification/README.md b/system_identification/README.md new file mode 100644 index 0000000..64d2da6 --- /dev/null +++ b/system_identification/README.md @@ -0,0 +1,9 @@ +# System Identification + +This folder contains the building blocks of the system identification system at the PBL F110 Group. + +The [id_controller](./id_controller/README.md) contains scripts that automate part of the data collection for system identification. + +The [id_analyser](./id_analyser/README.md) contains the scripts that analyse the data generated during the identification experiments to estimate model parameters. It also contains scripts to simulate the car's behavior and generate a lookup table to be used in conjunction with the MAP controller. + +The generated lookup tables that are to be used by the controller are copied into the cfg folder in [steering_lookup](./steering_lookup/README.md). This library then enables other ros packages to look up conversions from acceleration and speed to steering angle. diff --git a/system_identification/id_analyser/.gitignore b/system_identification/id_analyser/.gitignore new file mode 100644 index 0000000..9d18163 --- /dev/null +++ b/system_identification/id_analyser/.gitignore @@ -0,0 +1,4 @@ +.venv +*.pyc +*.vscode +*.json diff --git a/system_identification/id_analyser/README.md b/system_identification/id_analyser/README.md new file mode 100644 index 0000000..257c9dc --- /dev/null +++ b/system_identification/id_analyser/README.md @@ -0,0 +1,43 @@ +# Id Analyser +This packages contains the scripts to conduct the data analysis for system identifying the F110 car at PBL +More info about the System Identification procedure are [here](../../stack_master/checklists/SysID.md). + +## Getting Started + +For the analyser you need bagpy, as bagpy only works in python 3, but you might be running python2, create a virtual environment following this guide: +``` +https://code.visualstudio.com/docs/python/environments +``` +which boils down to doing the following in the id_analyser folder: +```shell +sudo apt-get install python3-venv +# move to the current folder +cd /home/icra_crew/catkin_ws/src/race_stack/system_identification/id_analyser/ +# create a new virtual environment +python3 -m venv .venv +``` +Then install the python extension for vscode and open the command palete using ```Ctrl+Shift+P``` and search for +"Python: Select Interpreter". If the interpreter does not show up, just manually select it (.venv/bin/python) + +Then install bagpy and anything else that might be required. + +```shell +source /home/icra_crew/catkin_ws/src/race_stack/system_identification/id_analyser/.venv/bin/activate +pip install wheel importlib-resources tk bagpy +``` + +## Physical System Identification + +Parameters that need to be identified physically are: +- I_z: Moment of Inertia around yaw axis - Bifilar Pendulum experiment +- h_cg: Height of the center of gravity over the wheel axes +- l_f: distance of front axis from center of mass +- l_r: distance of rear axis from center of mass +- l_wb: wheelbase, should be l_r + l_f +- m: mass of the model + +Typically these don't change significantly and need to be identified only once. If a new model is added, generate a model file using the script [add_model](add_model.py), where you can specify which tire model it is supposed to use. Prefer pacejka if you can perform a system identification. + +## Data Driven Identification + +After obtaining a physical model, we are still missing a few crucial model parameters, which can be obtained through a data driven approach. Refer to the [checklist](../../stack_master/checklists/SysID.md). for an extensive guide. \ No newline at end of file diff --git a/system_identification/id_analyser/add_model.py b/system_identification/id_analyser/add_model.py new file mode 100644 index 0000000..0253a61 --- /dev/null +++ b/system_identification/id_analyser/add_model.py @@ -0,0 +1,64 @@ +from helpers.save_model import save +# from helpers.dotdict import DotDict #only used in the experiments, not for pickle dump + +## Model Parameters that need to be measured manually ## +model_name = "SIM1" # name +tire_model = 'linear' # currently suppoted: linear, pacejka (SIM only models linear tire slip) +m = 3.47 # mass in kg # NUC1 3.54, SIM 3.47 +l_wb = 0.3302 # length of the wheelbase in m (front to back) # NUC1 0.307, SIM 0.3302 +l_f = 0.15875 # distance of CoM to front axle in m # NUC1 0.162, SIM 0.15875 +l_r = l_wb - l_f # distance of CoM to rear axle in m +h_cg = 0.074 # height of the center of mass above the wheel axis in m # NUC1 0.014, SIM 0.074 +I_z = 0.04712 # yawing moment of inertia in kg*m^2 # NUC1 0.05797, SIM 0.04712 + +# default parameters that the model is initialized with, overwritten in the experiments +mu = 0.523 # friction coefficient, fixed for first set of experiments # RW 1, SIM 0.523 +C_d = 1.1 # gain from servo position to steering angle +C_0d = 0.02 # offset from servo position to steering angle +C_v = 3500.0 # gain from velocity to erpm +C_0v = 0.0 # offset from velocity to erpm +C_acc = 3.2 # gain from acceleration command to current +C_dec = 3.2 # gain from deceleration command to current +C_R = 0.1 # gain from velocity (and hence induced drag and friction) to current +a_min = -3 # minimum acceleration in m*s^-2 +a_max = 3 # maximum acceleration in m*s^-2 +C_Pf = [0.1, 0.1, 0.1, 0.1] # pacejka tire parameters front +C_Pr = [0.1, 0.1, 0.1, 0.1] # pacejka tire parameters rear +C_Sf = 4.718 # cornering stiffness front axle +C_Sr = 5.4562 # cornering stiffness rear axle + +#Other Setup Parameters +overwrite_existing = True #only set to true if you are sure what you are doing + +def add_model(): + #Do work: + model_dict = { + 'model_name': model_name, + 'tire_model': tire_model, + 'm': m, + 'l_wb': l_wb, + 'l_f': l_f, + 'l_r': l_r, + 'h_cg': h_cg, + 'I_z': I_z, + 'mu': mu, + 'C_d': C_d, + 'C_0d': C_0d, + 'C_v': C_v, + 'C_0v': C_0v, + 'C_acc': C_acc, + 'C_dec': C_dec, + 'a_min': a_min, + 'a_max': a_max, + } + if tire_model == 'linear': + model_dict['C_Sf'] = C_Sf + model_dict['C_Sr'] = C_Sr + if tire_model == 'pacejka': + model_dict['C_Pf'] = C_Pf + model_dict['C_Pr'] = C_Pr + + save(model_dict, overwrite_existing, verbose=True) + +if __name__ == '__main__': + add_model() diff --git a/system_identification/id_analyser/analyse_accel.py b/system_identification/id_analyser/analyse_accel.py new file mode 100644 index 0000000..b94ee43 --- /dev/null +++ b/system_identification/id_analyser/analyse_accel.py @@ -0,0 +1,93 @@ +import os + +import numpy as np +import pandas as pd +from numpy.linalg import lstsq +import matplotlib.pyplot as plt + +from helpers.bagloader import load_bags +from helpers.load_model import get_dotdict +from helpers.save_model import save + +model_name_ = "SIM1_linear" #name + tire model name +local_bag_dir = './data/SIM1/accel' # path to folder with rosbag(s) with relevant experiment data + +script_dir = os.path.dirname(os.path.realpath(__file__)) +bag_dir_ = os.path.join(script_dir, local_bag_dir) + +class AccelerationAnalyser: + def __init__(self, model_name = model_name_, bag_dir = bag_dir_): + print(f"Loading model {model_name}...") + self.model = get_dotdict(model_name) + + # hangar + self.cmd_topic = "/vesc/commands/motor/current" + field_dict = {"/vesc/sensors/imu/raw": [ "linear_acceleration.y"], + "/vesc/odom": [ "twist.twist.linear.x"], + self.cmd_topic: ["data"]} + + self.data = load_bags(bag_dir, field_dict) + + self.analyse_accel() + self.refine_solution() + self.plot_solution() + + save(self.model) + + def analyse_accel(self): + sol = self.solve_ls_problem() + self.model.C_acc = sol[0][0] + self.model.C_R = sol[0][1] + + def refine_solution(self): + # refine solution, discard any datapoints that lie outside of std of the fit + # calculate the fit error for this data + error = (self.model.C_acc * self.accel + self.model.C_R * self.velocity) - self.current + error_std = np.std(error) + + error_df = pd.DataFrame(error, columns=["error"]) + self.data = pd.concat([self.data, error_df], axis=1) + self.data = self.data[self.data.error <= error_std] + sol = self.solve_ls_problem() + self.model.C_acc = float(sol[0][0]) + self.model.C_R = float(sol[0][1]) + + def solve_ls_problem(self): + self.current = self.data[self.cmd_topic + ".data"].to_numpy() + self.velocity = self.data["twist.twist.linear.x"].to_numpy() + + self.accel = -self.data["linear_acceleration.y"].to_numpy() + + v = np.reshape(self.velocity, (-1, 1)) # column vector + a = np.reshape(self.accel, (-1, 1)) # column vector + y_i = np.reshape(self.current, (-1, 1)) # column vector + A_i = np.concatenate((a, v), axis = 1) + sol = lstsq(A_i, y_i) + + print("Found a least squares solution: ") + print(sol) + return sol + + def plot_solution(self): + fit = np.divide((self.current - self.model.C_R * self.velocity), self.model.C_acc) # predicted acceleration + + fig, axs = plt.subplots(1, figsize=(7,5)) + + length = len(self.accel) + axs.plot(np.linspace(0,1,length), self.accel[:], 'b', label='est. x acceleration') + axs.plot(np.linspace(0,1,length), self.current[:]*0.05, 'r-', alpha=.5, label='com. current / 100') + axs.plot(np.linspace(0,1,length), self.velocity[:], 'r:', alpha=.5, label='est. velocity') + axs.plot(np.linspace(0,1,length), fit[:], 'g', label='predicted acceleration') + + + for ax in [axs]: + ax.set_xlabel('Time [s]') + ax.set_ylabel(r'Acceleration [$\frac{m}{s^2}$]') + ax.grid() + ax.legend(loc='best') + + plt.tight_layout() + plt.show() + +if __name__ == '__main__': + AccelerationAnalyser(model_name_, bag_dir_) diff --git a/system_identification/id_analyser/analyse_decel.py b/system_identification/id_analyser/analyse_decel.py new file mode 100644 index 0000000..acf78c3 --- /dev/null +++ b/system_identification/id_analyser/analyse_decel.py @@ -0,0 +1,92 @@ +import os +import numpy as np +import pandas as pd +from numpy.linalg import lstsq +import matplotlib.pyplot as plt + +from helpers.bagloader import load_bags +from helpers.load_model import get_dotdict +from helpers.save_model import save + +model_name_ = "SIM1_linear" #name + tire model name +local_bag_dir = 'data/SIM1/accel' # path to folder with rosbag(s) with relevant experiment data + +script_dir = os.path.dirname(os.path.realpath(__file__)) +bag_dir_ = os.path.join(script_dir, local_bag_dir) + +# needs to have acceleration analysed before as C_R is fixed for this + +class DecelerationAnalyser: + def __init__(self, model_name = model_name_, bag_dir = bag_dir_): + print(f"Loading model {model_name}...") + self.model = get_dotdict(model_name) + + # hangar + self.cmd_topic = "/vesc/commands/motor/brake" + field_dict = {"/vesc/sensors/imu/raw": [ "linear_acceleration.y"], + "/vesc/odom": [ "twist.twist.linear.x"], + self.cmd_topic: ["data"]} + self.data = load_bags(bag_dir, field_dict) + + self.analyse_decel() + self.refine_solution() + self.plot_solution() + + save(self.model) + + def analyse_decel(self): + sol = self.solve_ls_problem() + self.model.C_dec = sol[0][0] + + def refine_solution(self): + # refine solution, discard any datapoints that lie outside of std of the fit + # calculate the fit error for this data + error = (self.model.C_dec * self.accel + self.model.C_R * self.velocity) - self.current + error_std = np.std(error) + + error_df = pd.DataFrame(error, columns=["error"]) + self.data = pd.concat([self.data, error_df], axis=1) + self.data = self.data[self.data.error <= error_std] + sol = self.solve_ls_problem() + self.model.C_dec = float(sol[0][0]) + + def solve_ls_problem(self): + self.current = - self.data[self.cmd_topic + ".data"].to_numpy() + self.velocity = self.data["twist.twist.linear.x"].to_numpy() + + # time = data["Time"] + self.accel = -self.data["linear_acceleration.y"].to_numpy() + + v = np.reshape(self.velocity, (-1, 1)) # column vector + a = np.reshape(self.accel, (-1, 1)) # column vector + y_i = np.reshape(self.current, (-1, 1)) - self.model.C_R * v# column vector + A_i = a + sol = lstsq(A_i, y_i) + + print("Found a least squares solution: ") + print(sol) + return sol + + def plot_solution(self): + fit = np.divide((self.current - self.model.C_R * self.velocity), self.model.C_dec) # predicted acceleration + + fig, axs = plt.subplots(1, figsize=(7,5)) + + length = len(self.accel) + axs.plot(np.linspace(0,1,length), self.accel[:], 'b', label='est. x acceleration') + axs.plot(np.linspace(0,1,length), self.current[:]*0.05, 'r-', alpha=.5, label='com. current / 100') + axs.plot(np.linspace(0,1,length), self.velocity[:], 'r:', alpha=.5, label='est. velocity') + axs.plot(np.linspace(0,1,length), fit[:], 'g', label='predicted acceleration') + + + for ax in [axs]: + ax.set_xlabel('Normalized Time') + ax.set_ylabel(r'Acceleration [$\frac{m}{s^2}$]') + ax.grid() + ax.legend(loc='best') + + plt.tight_layout() + plt.show() + +if __name__ == '__main__': + DecelerationAnalyser(model_name_, bag_dir_) diff --git a/system_identification/id_analyser/analyse_motor_rpm.py b/system_identification/id_analyser/analyse_motor_rpm.py new file mode 100644 index 0000000..58ec72b --- /dev/null +++ b/system_identification/id_analyser/analyse_motor_rpm.py @@ -0,0 +1,128 @@ +import os +import numpy as np +import matplotlib.pyplot as plt +from numpy.linalg import lstsq +from scipy.ndimage import median_filter +from scipy.signal import sosfiltfilt, butter + +from helpers.bagloader import load_bags +from helpers.load_model import get_dotdict +from helpers.save_model import save + +g_ = 9.81 + +model_name_ = "NUC1_pacejka" #name + tire model name +model, tires = model_name_.split("_") +local_bag_dir = './data/' + model + "/motor" # path to folder with rosbag(s) with relevant experiment data + +script_dir = os.path.dirname(os.path.realpath(__file__)) +bag_dir_ = os.path.join(script_dir, local_bag_dir) + +class RPMAnalyser: + def __init__(self, model_name = model_name_, bag_dir = bag_dir_): + print(f"Loading model {model_name}...") + self.model = get_dotdict(model_name) + + # hangar + # field_dict = {"/vesc/odom": ["twist.twist.linear.x", "twist.twist.linear.y", "twist.twist.angular.z"], + # "/vesc/commands/motor/speed": ["data"], + # "/vesc/sensors/imu/raw": ["linear_acceleration.x", "linear_acceleration.y"]} + self.cmd_topic = "/vesc/commands/motor/speed" + field_dict = {"/ekf/odometry/filtered": ["twist.twist.linear.x"], + self.cmd_topic: ["data"], + "/vesc/sensors/imu/raw": ["linear_acceleration.y"]} + + if (model == "SIM") : + self.issim = True + self.data = load_bags(bag_dir, field_dict) + else : + self.issim = False + self.data = load_bags(bag_dir, field_dict) + + self.model.C_0v = 220 + + self.transform_data() + self.solve_rmp_fixed_offset() + i = 1 + while (i < 4): + self.discard_outliers(i) + self.solve_rmp_fixed_offset() + i += 1 + + save(self.model) + print("Final C_v: " + str(self.model.C_v)) + print("Final C_0v: " + str(self.model.C_0v)) + self.transform_data() + self.plot_solution() + + def discard_outliers(self, i): + print("Outlier Threshold: " + str(4000 * np.exp(-i))) + error = abs(self.model.C_v * self.v_x + self.model.C_0v - self.erpm) + keep_idxs = np.where(error <= 4000 * np.exp(-i)) + self.v_x = self.v_x[keep_idxs] + self.erpm = self.erpm[keep_idxs] + + def transform_data(self): + sos = butter(2, 0.05, output='sos') + if (self.issim): + self.a_long = self.data["linear_acceleration.x"].to_numpy() + else: + self.a_long_unfilt = - self.data["linear_acceleration.y"].to_numpy() + self.a_long = sosfiltfilt(sos, self.a_long_unfilt) + + self.data = self.data[abs(self.a_long) < 0.2] + + self.v_x = self.data["twist.twist.linear.x"].to_numpy() + self.v_x = median_filter(self.v_x, size= 5) + + # self.v_x = sosfiltfilt(sos, self.v_x) + self.erpm = self.data[self.cmd_topic+".data"].to_numpy() + + def solve_rmp(self): + v_gain = np.reshape(self.v_x, (-1,1)) + A = np.concatenate((v_gain, np.ones_like(v_gain)), axis = 1) + y = np.reshape(self.erpm, (-1,1)) + + # front + sol = lstsq(A, y) + print("Found a least squares solution: ") + print(sol) + self.model.C_v = float(sol[0][0]) + self.model.C_0v = float(sol[0][1]) + + # prepare plot: + self.space = np.linspace(np.min(self.v_x), np.max(self.v_x), 50) + self.fit = self.model.C_v * self.space + self.model.C_0v + + def solve_rmp_fixed_offset(self): + v_gain = np.reshape(self.v_x, (-1,1)) + A = v_gain + y = np.reshape(self.erpm, (-1,1)) + + # front + sol = lstsq(A, y) + print("Found a least squares solution: ") + print(sol) + self.model.C_v = float(sol[0][0]) + + # prepare plot: + self.space = np.linspace(np.min(self.v_x), np.max(self.v_x), 50) + self.fit = self.model.C_v * self.space + self.model.C_0v + + def plot_solution(self): + plt.figure(figsize=(8,6)) + + plt.scatter(self.v_x, self.erpm, color="Green", alpha=0.15, label='Measurements') + + plt.plot(self.space, self.fit, 'b', label=f'Model prediction') + + plt.xlabel(r'$v_x$ [m/s]') + plt.ylabel(r'ERPM [1]') + plt.grid() + plt.legend(loc='best') + + plt.tight_layout() + plt.show() + +if __name__ == '__main__': + RPMAnalyser(model_name_, bag_dir_) diff --git a/system_identification/id_analyser/analyse_steering.py b/system_identification/id_analyser/analyse_steering.py new file mode 100644 index 0000000..98b9a1b --- /dev/null +++ b/system_identification/id_analyser/analyse_steering.py @@ -0,0 +1,110 @@ +import os +from scipy.ndimage import median_filter +import numpy as np +from numpy.linalg import lstsq +import matplotlib.pyplot as plt + +from helpers.bagloader import load_bags +from helpers.load_model import get_dotdict +from helpers.save_model import save + +g_ = 9.81 + +model_name_ = "NUC1_pacejka" #name + tire model name +model, tires = model_name_.split("_") +local_bag_dir = './data/' + model + "/steering_angle" # path to folder with rosbag(s) with relevant experiment data + +script_dir = os.path.dirname(os.path.realpath(__file__)) +bag_dir_ = os.path.join(script_dir, local_bag_dir) + +class SteeringAnalyser: + def __init__(self, model_name = model_name_, bag_dir = bag_dir_): + print(f"Loading model {model_name}...") + self.model = get_dotdict(model_name) + + # simulation + # field_dict = {"/odom": ["twist.twist.linear.x", "twist.twist.linear.y", "twist.twist.angular.z"], + # "/drive": ["drive.steering_angle"]} + + # hangar + self.cmd_topic = "/vesc/commands/servo/position" + field_dict = {"/car_state/odom": ["twist.twist.linear.x", "twist.twist.linear.y", + "twist.twist.angular.z"], + self.cmd_topic: ["data"]} + + self.data = load_bags(bag_dir, field_dict) + self.transform_data() + + i = 0 + while (i < 9): + self.solve_steering() + self.discard_outliers(i) + i += 1 + + save(self.model) + print("Final C_d: " + str(self.model.C_d)) + print("Final C_0d: " + str(self.model.C_0d)) + self.transform_data() + self.plot_solution() + + def transform_data(self): + self.omega = self.data["twist.twist.angular.z"].to_numpy() + self.omega = median_filter(self.omega, size=5) + self.v_x = self.data["twist.twist.linear.x"].to_numpy() + self.v_x = median_filter(self.v_x, size=5) + self.servo_position = self.data[self.cmd_topic + ".data"].to_numpy() + + def solve_steering(self): + self.atan = np.arctan2((self.model.l_r + self.model.l_f) * self.omega, self.v_x) + atan_vector = np.reshape(self.atan, (-1, 1)) + A_i = np.concatenate((atan_vector, np.ones_like(atan_vector)), axis=1) + y_i = np.reshape(self.servo_position, (-1, 1)) + sol = lstsq(A_i, y_i) + print("Found a least squares solution: ") + print(sol) + self.model.C_d = float(sol[0][0]) + self.model.C_0d = float(sol[0][1]) + self.fit = (self.servo_position - self.model.C_0d * \ + np.ones_like(self.servo_position)) / self.model.C_d + + def discard_outliers(self, i): + print("Outlier Threshold: " + str(4 * 2**(-i))) + error = abs(self.fit - self.atan) + keep_idxs = np.where(error <= 4 * 2**(-i)) + self.v_x = self.v_x[keep_idxs] + self.omega = self.omega[keep_idxs] + self.servo_position = self.servo_position[keep_idxs] + + def plot_solution(self): + self.atan = np.arctan2((self.model.l_r + self.model.l_f) * self.omega, self.v_x) + + self.fit = (self.servo_position - self.model.C_0d * \ + np.ones_like(self.servo_position)) / self.model.C_d + + fig, axs = plt.subplots(1, figsize=(8,5)) + plt.xlabel(r'Normalized Time') + + cmd_axs = axs.twinx() + p3, = cmd_axs.plot(np.linspace(0, 1,num=len(self.servo_position)), self.servo_position, 'r', label='com. servo position') + + p1, = axs.plot(np.linspace(0, 1,num=len(self.atan)), self.atan, 'g', alpha=0.7, label='est. measured steering angle') + p2, = axs.plot(np.linspace(0, 1,num=len(self.fit)), self.fit, 'b', label='predicted steering angle') + axs.set_ylabel(r'Steering Angle [$rad$]') + axs.set_ylim(-1.0, 1.0) + axs.grid() + + cmd_axs.set_ylabel(r'Servo Position [0-1]') + cmd_axs.yaxis.label.set_color("Red") + cmd_axs.spines["right"].set_edgecolor("Red") + cmd_axs.tick_params(axis='y', colors="Red") + cmd_axs.set_ylim(0.0,1.0) + + lines = [p1, p2, p3] + axs.legend(lines, [l.get_label() for l in lines]) + + plt.xlim(0.0, 1.0) + plt.tight_layout() + plt.show() + +if __name__ == '__main__': + Analyser = SteeringAnalyser(model_name_, bag_dir_) diff --git a/system_identification/id_analyser/analyse_tires.py b/system_identification/id_analyser/analyse_tires.py new file mode 100644 index 0000000..39c56a1 --- /dev/null +++ b/system_identification/id_analyser/analyse_tires.py @@ -0,0 +1,219 @@ +import os +from scipy.optimize import least_squares +from scipy.ndimage import median_filter +import numpy as np +import pandas as pd +from numpy.linalg import lstsq +import matplotlib.pyplot as plt +from scipy.signal import sosfiltfilt, butter + +from helpers.bagloader import load_bags +from helpers.load_model import get_dotdict +from helpers.save_model import save + +g_ = 9.81 + +model_name_ = "NUC1_pacejka" #name + tire model name +model, tires = model_name_.split("_") +local_bag_dir = './data/' + model + "/tire_dynamics" # path to folder with rosbag(s) with relevant experiment data + +script_dir = os.path.dirname(os.path.realpath(__file__)) +bag_dir_ = os.path.join(script_dir, local_bag_dir) + +class TireAnalyser: + def __init__(self, model_name = model_name_, bag_dir = bag_dir_): + print(f"Loading model {model_name}...") + self.model = get_dotdict(model_name) + + # hangar + # field_dict = {"/vesc/odom": ["twist.twist.linear.x", "twist.twist.linear.y", "twist.twist.angular.z"], + # "/vesc/commands/motor/speed": ["data"], + # "/vesc/sensors/imu/raw": ["linear_acceleration.x", "linear_acceleration.y"]} + self.cmd_topic = "/vesc/commands/servo/position" + + field_dict = {"/state_estimation/odom": ["twist.twist.angular.z"], + "/car_state/odom": ["twist.twist.linear.x", "twist.twist.linear.y"], + #"/vesc/low_level/ackermann_cmd_mux/output": ["drive.speed", "drive.acceleration", "drive.steering_angle"], + self.cmd_topic: ["data"], + "/vesc/sensors/imu/raw": ["linear_acceleration.x", "linear_acceleration.y"]} + + sim_dict = {"/car_state/odom": ["twist.twist.linear.x", "twist.twist.linear.y", "twist.twist.linear.z", "twist.twist.angular.z"], + "/nav": ["drive.speed", "drive.acceleration", "drive.steering_angle"], + "/imu": ["linear_acceleration.x", "linear_acceleration.y"]} + + if (model == "SIM") : + self.issim = True + self.data = load_bags(bag_dir, sim_dict) + else : + self.issim = False + self.data = load_bags(bag_dir, field_dict) + self.data = self.data[self.data["twist.twist.linear.x"] > 1.0] + + self.analyse_tires() + save(self.model) + + def analyse_tires(self): + self.transform_data() + self.discard_alpha_outliers() + + if self.model.tire_model == "linear": + self.solve_linear_problem() + if self.model.tire_model == "pacejka": + self.solve_pacejka_problem() + + i = 1 + while i < 4: + self.discard_outliers(i) + if self.model.tire_model == "linear": + self.solve_linear_problem() + if self.model.tire_model == "pacejka": + self.solve_pacejka_problem() + i += 1 + + # reset outlier rejection for the final plot + self.transform_data() + self.plot_solution() + + # self.model.C_acc = sol[0][0] + # self.model.C_R = sol[0][1] + + def transform_data(self): + if (self.issim): + self.a_long = self.data["linear_acceleration.x"].to_numpy() + self.a_lat = self.data["linear_acceleration.y"].to_numpy() + else : + sos = butter(2, 0.05, output='sos') + self.a_long_unfilt = - self.data["linear_acceleration.y"].to_numpy() + self.a_long = sosfiltfilt(sos, self.a_long_unfilt) + self.a_lat_unfilt = self.data["linear_acceleration.x"].to_numpy() + self.a_lat = sosfiltfilt(sos, self.a_lat_unfilt) + + self.v_x = median_filter(self.data["twist.twist.linear.x"].to_numpy(), size=5) + self.v_y = median_filter(self.data["twist.twist.linear.y"].to_numpy(), size=5) + self.omega = self.data["twist.twist.angular.z"].to_numpy() + + self.delta = (self.data[self.cmd_topic + ".data"].to_numpy() - self.model.C_0d) / self.model.C_d + + self.F_zf = self.model.m *(g_ * self.model.l_r - self.a_long *self.model.h_cg) / (self.model.l_wb) + self.F_zr = self.model.m *(g_ * self.model.l_f + self.a_long *self.model.h_cg) / (self.model.l_wb) + self.meanFz_f = np.mean(self.F_zf) + self.meanFz_r = np.mean(self.F_zr) + self.alpha_f = -np.arctan((self.v_y + self.omega * self.model.l_f) / self.v_x) + self.delta + self.alpha_r = -np.arctan(((self.v_y - self.omega * self.model.l_r) / self.v_x)) + + self.F_yf = self.model.m * self.model.l_r * self.a_lat / ((self.model.l_r + self.model.l_f) * np.cos(self.delta)) + self.F_yr = self.model.m * self.model.l_f * self.a_lat / (self.model.l_r + self.model.l_f) + + def keep_only_at_indexes(self, keep_idxs): + self.v_x = self.v_x[keep_idxs] + self.v_y = self.v_y[keep_idxs] + self.omega = self.omega[keep_idxs] + self.delta = self.delta[keep_idxs] + self.F_zf = self.F_zf[keep_idxs] + self.F_zr = self.F_zr[keep_idxs] + self.alpha_f = self.alpha_f[keep_idxs] + self.alpha_r = self.alpha_r[keep_idxs] + self.F_yf = self.F_yf[keep_idxs] + self.F_yr = self.F_yr[keep_idxs] + + def discard_alpha_outliers(self): + keep_idxs = np.where((abs(self.alpha_f) <= 2) & (abs(self.alpha_r) <= 2)) + self.keep_only_at_indexes(keep_idxs) + + def discard_outliers(self, i): + print("threshold: " + str(20 * 2**(-i))) + keep_idxs = np.where((self.error_f <= 20 * 2**(-i)) & (self.error_r <= 20 * 2**(-i))) + self.keep_only_at_indexes(keep_idxs) + + def solve_linear_problem(self): + A_f = np.reshape(self.model.mu*self.F_zf*self.alpha_f, (-1, 1)) + A_r = np.reshape(self.model.mu*self.F_zr*self.alpha_r, (-1, 1)) + + y_f = np.reshape(self.F_yf, (-1,1)) + y_r = np.reshape(self.F_yr, (-1,1)) + + # front + sol_f = lstsq(A_f, y_f) + print("Found a least squares solution for front tires: ") + print(sol_f) + self.model.C_Sf = float(sol_f[0][0]) + + sol_r = lstsq(A_r, y_r) + print("Found a least squares solution for rear tires: ") + print(sol_r) + self.model.C_Sr = float(sol_r[0][0]) + + # prepare plot: + self.space_f = np.linspace(-0.65, 0.65, 50) + self.fit_f = self.model.mu * self.meanFz_f * self.model.C_Sf * self.space_f + + self.space_r = np.linspace(-0.65, 0.65, 50) + self.fit_r = self.model.mu * self.meanFz_r * self.model.C_Sr * self.space_r + + self.error_f = abs(self.model.mu * self.F_zf * self.model.C_Sf * self.alpha_f \ + - self.F_yf) + self.error_r = abs(self.model.mu * self.F_zr * self.model.C_Sr * self.alpha_r \ + - self.F_yr) + + def pacejka_formula(self, params, alpha, F_z): + B, C, D, E = params + y = self.model.mu * F_z * D * np.sin(C*np.arctan(B*alpha - E * (B*alpha -np.arctan(B * alpha)))) + return y + + def pacejka_error(self, params, *args): + alpha, F_z, F_y = args + y = self.pacejka_formula(params, alpha, F_z) + error = (y - F_y)**2 + # square error + return error + + def solve_pacejka_problem(self): + start_params = [1, 1, 1, 0.5] + # front + sol_f = least_squares(self.pacejka_error, start_params, args=(self.alpha_f, self.F_zf, self.F_yf), bounds=([0.0, 0.0, 0.0, 0.0], [25, 4.0, 2.0, 1.1])) + print("Found a least squares solution for front tires: ") + print(sol_f.x) + self.model.C_Pf = sol_f.x.tolist() + + sol_r = least_squares(self.pacejka_error, start_params, args=(self.alpha_r, self.F_zr, self.F_yr), bounds=([0.0, 0.0, 0.0, 0.0], [20, 1.5, 2.0, 0.8])) + print("Found a least squares solution for rear tires: ") + print(sol_r.x) + self.model.C_Pr = sol_r.x.tolist() + + # prepare plot: + self.space_f = np.linspace(-0.65, 0.65, 50) + self.fit_f = self.pacejka_formula(self.model.C_Pf, self.space_f, self.meanFz_f) + + self.space_r = np.linspace(-0.65, 0.65, 50) + self.fit_r = self.pacejka_formula(self.model.C_Pr, self.space_r, self.meanFz_r) + + self.error_f = abs(self.pacejka_formula(self.model.C_Pf, self.alpha_f, self.F_zf) \ + - self.F_yf) + self.error_r = abs(self.pacejka_formula(self.model.C_Pr, self.alpha_r, self.F_zr) \ + - self.F_yr) + + def plot_solution(self): + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(8,6)) + # fig.suptitle('Tire Dynamics Identification') + ax1.scatter(self.alpha_f, self.F_yf, color="Green", alpha=0.15, label='Est. Lateral Force') + ax2.scatter(self.alpha_r, self.F_yr, color="Green", alpha=0.15, label='Est. Lateral Force') + + ax1.plot(self.space_f, self.fit_f, 'b', label=f'Model predicition for fixed Fz: {self.meanFz_f:.2f}') + ax2.plot(self.space_r, self.fit_r[:], 'b', label=f'Model predicition for fixed Fz: {self.meanFz_r:.2f}') + + ax1.set_title('Front tires') + ax2.set_title('Rear tires') + for ax in [ax1, ax2]: + ax.set_xlabel(r'$\alpha_f$ [rad]') + ax.set_ylabel(r'$F_y$ [N]') + ax.grid() + ax.legend(loc='best') + ax.set_xlim([-0.65, 0.65]) + ax.set_ylim([-20, 20]) + + plt.tight_layout() + plt.show() + +if __name__ == '__main__': + TireAnalyser(model_name_, bag_dir_) + \ No newline at end of file diff --git a/system_identification/id_analyser/data/.gitkeep b/system_identification/id_analyser/data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/system_identification/id_analyser/generate_lookup_table.py b/system_identification/id_analyser/generate_lookup_table.py new file mode 100644 index 0000000..a56b5be --- /dev/null +++ b/system_identification/id_analyser/generate_lookup_table.py @@ -0,0 +1,127 @@ +import os +from scipy.integrate import odeint +import numpy as np +import matplotlib.animation as animation +import matplotlib.pyplot as plt + +from helpers.vehicle_dynamics import vehicle_dynamics +from helpers.load_model import get_dotdict + +ANIMATE = False +PLOT = False + +model_name = "NUC1_pacejka" +model, tiretype = model_name.split("_") + +model = get_dotdict(model_name) + +START_STEER = 0.0 +STEER_FINE_END = 0.1 +END_STEER = 0.4 +N_STEPS_STEER = 30 # used for fine region and then again for coarse region +START_VEL = 0.5 +END_VEL = 7.0 +N_STEPS_VEL = 65 + +class Simulator: + def func_ST(self, x, t, u, p): + f = vehicle_dynamics(x, u, p, tiretype) + return f + + def animate(self, i): + self.loc.set_data(self.sol[i, 0], self.sol[i, 1]) + self.loc.set_3d_properties(0) + return self.loc + + def generate_lookup(self): + fine_steers = np.linspace(START_STEER, STEER_FINE_END, N_STEPS_STEER) + steers = np.linspace(STEER_FINE_END, END_STEER, N_STEPS_STEER) + steers = np.concatenate((fine_steers, steers)) + vels = np.linspace(START_VEL, END_VEL, N_STEPS_VEL) + + total_steps_steer = len(steers) + self.lookup_table = np.empty([total_steps_steer + 1, N_STEPS_VEL +1]) + + self.lookup_table[0, 1:] = vels + self.lookup_table[1:, 0] = steers + + for steer_idx, steer in enumerate(steers): + for vel_idx, vel in enumerate(vels): + initialState = [0, 0, 0, vel, 0, 0] + u = [steer, 0] + + # print("Steering Angle :" + str(steer) + " Velocity :" + str(vel)) + dt = 0.01 + duration = 2.0 + t = np.arange(0, duration, dt) + frames = np.arange(0, len(t), 1) + + self.sol = odeint(self.func_ST, initialState, t, args=(u, model)) + + if abs(self.sol[-1, 5] - self.sol[-10, 5]) > 0.05: + # print("failed to converge, limit") + self.lookup_table[steer_idx+1, vel_idx+1:] = None + break + else: + # save the final lateral acceleration + a_lat = self.sol[-1, 5] * vel + # a_lat_all = self.sol[:, 5] * vel + self.lookup_table[steer_idx+1, vel_idx+1] = a_lat + + if PLOT: + fig = plt.figure(figsize=(12, 12)) + ax1 = fig.add_subplot(2, 2, 1) + ax1.plot(t, self.sol[:, 4], 'b', label='vy(t)') + plt.legend(loc='best') + plt.xlabel('t') + plt.grid() + + ax2 = fig.add_subplot(2, 2, 3) + ax2.plot(t, self.sol[:, 5], 'b', label='yaw rate(t)') + plt.legend(loc='best') + plt.xlabel('t') + plt.grid() + + ax4 = fig.add_subplot(2, 2, 4) + ax4.plot(t, self.sol[:, 2], 'b', label='yaw(t)') + plt.legend(loc='best') + plt.xlabel('t') + plt.grid() + + ax3 = fig.add_subplot(2, 2, 2) + ax3.plot(self.sol[:, 0], self.sol[:, 1], 'r', label='position') + plt.legend(loc='best') + plt.xlabel('t') + plt.grid() + + plt.show() + + if ANIMATE: + fig = plt.figure(figsize=(10, 10)) + self.ax = fig.add_subplot(111, projection='3d', autoscale_on=True) + self.loc, = self.ax.plot([],[],[], 'o-', color="blue") + self.ax.set_xlim(self.sol[0, 0], self.sol[-1, 0]) + self.ax.set_ylim(self.sol[0, 1], self.sol[-1, 1]) + self.ax.set_zlim(0, 1) + self.ax.margins(1, tight=False) + self.ax.autoscale_view() + self.ax.grid() + ani = animation.FuncAnimation(fig, self.animate, frames=frames, interval=1, blit = False, repeat=False) + + ani.running = True + plt.show() + ani.running = False + + def save_lookup(self): + model, tires = model_name.split("_") + script_dir = os.path.dirname(__file__) + lookup_dir = os.path.join(script_dir, "models", model) + os.makedirs(lookup_dir, exist_ok=True) + file_path = os.path.join(lookup_dir, model_name + "_lookup_table.csv") + np.savetxt(file_path, self.lookup_table, delimiter=",") + +if __name__ == "__main__": + sim = Simulator() + sim.generate_lookup() + sim.save_lookup() + print("Done, don't forget to copy to steering_lookup/cfg") \ No newline at end of file diff --git a/system_identification/id_analyser/helpers/__init__.py b/system_identification/id_analyser/helpers/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/system_identification/id_analyser/helpers/bagloader.py b/system_identification/id_analyser/helpers/bagloader.py new file mode 100644 index 0000000..e2919be --- /dev/null +++ b/system_identification/id_analyser/helpers/bagloader.py @@ -0,0 +1,135 @@ +from bagpy import bagreader +import pandas as pd +import numpy as np +import os +import sys + +time_fields = ["header.stamp.secs" ,"header.stamp.nsecs", "Time"] + +def get_bag_topic(reader, topic): + try: + data = reader.message_by_topic(topic) + except ValueError as error: + print(error.args) + print("Likely the topic does not exist or wasn't published to") + sys.exit(1) + return data + +def get_bag_df(f, field_dict): + print("Loading Bag " + f + "...") + reader = bagreader(f) + bag_df = [] + bag_start = 0 + bag_end = 0 + for topic, fields in field_dict.items(): + print("___ IMPORTING TOPIC " + topic ) + merge_time = 'Time' + has_stamp = False + topic_csv = get_bag_topic(reader, topic) + available_fields = pd.read_csv(topic_csv, nrows=0).columns.tolist() + # get the fields for that topic: + if time_fields[0] in available_fields: + # topic is stamped, use stamp time fields + try: + topic_df = pd.read_csv(topic_csv, usecols=fields + time_fields) + if len(topic_df[(topic_df['header.stamp.nsecs'] != 0.0)]) > 0: + has_stamp = True + merge_time = 'header.stamp.nsecs' + except ValueError as error: + print(error.args) + sys.exit(1) + if has_stamp == False: + # topic is not stamped + merge_time = 'Time' + has_stamp = False + try: + topic_df = pd.read_csv(topic_csv, usecols=fields + ['Time']) + except ValueError as error: + print(error.args) + sys.exit(1) + + # handle commands via float64 + topic_df.rename(index=str, columns={"data": topic + ".data"}, inplace=True) + + # handle default ackermann drive command + if "drive.speed" in available_fields: + topic_df.drop(topic_df[(topic_df['drive.speed'] == 0.0) & (topic_df['drive.acceleration'] == 0.0)].index, inplace=True, axis=0) + + if has_stamp: + # merge_time = 'header.stamp.nsecs' + # combine secs and n_secs into one column used for merging + topic_df.drop(topic_df[(topic_df['header.stamp.nsecs'] == 0.0)].index, inplace=True, axis=0) + topic_df['header.stamp.nsecs'] = topic_df['header.stamp.secs']*pow(10,9) + topic_df['header.stamp.nsecs'] + topic_df.drop('header.stamp.secs', inplace=True, axis=1) + topic_start = topic_df[merge_time].iloc[0] + topic_end = topic_df[merge_time].iloc[-1] + + # first one does not need to be merged, merge subsequent ones on timestamp + if len(bag_df) == 0: + bag_df = topic_df + bag_start = topic_start + bag_end = topic_end + else: + #if the current topic was published later than the bag_df so far, crop the bag_df, otherwise the topic_df + if (topic_start > bag_start): + bag_start = topic_start + else: + topic_start = bag_start + if (bag_end > topic_end): + bag_end = topic_end + else: + topic_end = bag_end + + bag_df = bag_df[(bag_df[merge_time] >= bag_start) | (bag_df[merge_time] <= bag_end)] + topic_df = topic_df[(topic_df[merge_time] >= topic_start) | (topic_df[merge_time] <= topic_end)] + + # check which one is shorter and select that one as left merge item + # merge finds a match for everything on the left and drops anything that's not matched + if bag_df.size < topic_df.size: + # if we are merging on header.nsecs, keep only one Time column + if has_stamp: + topic_df.drop('Time', inplace=True, axis=1) + try: + bag_df = pd.merge_asof(bag_df, topic_df, on=[merge_time]) + except pd.errors.MergeError as error: + print("bag df was: \n") + print(bag_df.head()) + print("topic df was: \n") + print(topic_df.head()) + print("Tried to merge on " + merge_time + " with bag df on the left") + print(error.args) + sys.exit(1) + else: + if has_stamp: + bag_df.drop('Time', inplace=True, axis=1) + try: + bag_df = pd.merge_asof(topic_df, bag_df, on=[merge_time]) + except pd.errors.MergeError as error: + print("bag df was: \n") + print(bag_df.head()) + print("topic df was: \n") + print(topic_df.head()) + print("Tried to merge on " + merge_time + " with topic df on the left") + print(error.args) + sys.exit(1) + # drop nan's + bag_df.dropna(inplace=True) + bag_df = bag_df.astype({'header.stamp.nsecs':'int64'}) + return bag_df + +def load_bags(directory, field_dict): + # iterate over files in directory + dataframe_list = [] # array to store dataframes that need to be merged later on + if not os.path.exists(directory): + raise ValueError(f"Directory {directory} does not exist") + if os.listdir(directory) == []: + raise ValueError(f"Directory {directory} is empty") + for filename in os.listdir(directory): + f = os.path.join(directory, filename) + # checking if it is a file + if os.path.splitext(f)[1] == ".bag": + dataframe_list.append(get_bag_df(f, field_dict)) + # concatenate all the dataframes from the bags: + bags_df = pd.concat(dataframe_list, ignore_index=True) + print("Total number of datapoints: " + str(bags_df.shape[0])) + return bags_df diff --git a/system_identification/id_analyser/helpers/dotdict.py b/system_identification/id_analyser/helpers/dotdict.py new file mode 100644 index 0000000..673d7f4 --- /dev/null +++ b/system_identification/id_analyser/helpers/dotdict.py @@ -0,0 +1,15 @@ +# from https://stackoverflow.com/questions/2352181/how-to-use-a-dot-to-access-members-of-dictionary +# DotDict class allows to use dot notation to access dictionary attributes + +class DotDict(dict): + """dot.notation access to dictionary attributes""" + __getattr__ = dict.get + __setattr__ = dict.__setitem__ + __delattr__ = dict.__delitem__ + + # convert back to normal dict + def to_dict(self): + dict = {} + for key, value in self.items(): + dict[key] = value + return dict diff --git a/system_identification/id_analyser/helpers/load_model.py b/system_identification/id_analyser/helpers/load_model.py new file mode 100644 index 0000000..faacafd --- /dev/null +++ b/system_identification/id_analyser/helpers/load_model.py @@ -0,0 +1,19 @@ +import yaml +import os +from .dotdict import DotDict + +def get_dict(model_name): + model, tire = model_name.split("_") + script_dir = os.path.dirname(os.path.realpath(__file__)) + model_file = os.path.join(script_dir, "../models", model, model_name + ".txt") + if not os.path.isfile(model_file): + raise ValueError(f"Model {model_name} does not exist") + with open(model_file, 'rb') as f: + params = yaml.load(f, Loader=yaml.Loader) + + return params + +def get_dotdict(model_name): + dict = get_dict(model_name) + params = DotDict(dict) + return params diff --git a/system_identification/id_analyser/helpers/save_model.py b/system_identification/id_analyser/helpers/save_model.py new file mode 100644 index 0000000..6176360 --- /dev/null +++ b/system_identification/id_analyser/helpers/save_model.py @@ -0,0 +1,26 @@ +import yaml +import os +from .dotdict import DotDict + +def save(model, overwrite_existing=True, verbose=False): + script_dir = os.path.dirname(os.path.realpath(__file__)) + folder_path = os.path.join(script_dir, "../models", model['model_name']) + if not os.path.exists(folder_path): + os.makedirs(folder_path) + file_path = os.path.join(folder_path, model['model_name'] +"_"+ model['tire_model'] + ".txt") + if os.path.isfile(file_path): + if (verbose): print("Model already exists") + if overwrite_existing: + if (verbose): print("Overwriting...") + else: + if (verbose): print("Not overwriting.") + return 0 + + # will only work if its dotdict, otherwise no need to convert to dict + try: + model = model.to_dict() + except: + model = model + + with open(file_path, "w") as f: + yaml.dump(model, f, default_flow_style=False) diff --git a/system_identification/id_analyser/helpers/vehicle_dynamics.py b/system_identification/id_analyser/helpers/vehicle_dynamics.py new file mode 100644 index 0000000..347e718 --- /dev/null +++ b/system_identification/id_analyser/helpers/vehicle_dynamics.py @@ -0,0 +1,60 @@ +import math + +g_ = 9.81 + +def vehicle_dynamics(x, u, p, type) -> list: + """ + single-track vehicle dynamics with linear and pacejka tire models + Inputs: + :param x: vehicle state vector (x, y, yaw, v_x, v_y, omega) + :param u: vehicle input vector (steering angle, longitudinal acceleration) + :param p: vehicle parameter vector + :param type: tire model type (linear or pacejka) + Outputs: + :return f: derivative of vehicle state vector + """ + mu = p.mu + if type == "pacejka": + B_f = p.C_Pf[0] + C_f = p.C_Pf[1] + D_f = p.C_Pf[2] + E_f = p.C_Pf[3] + B_r = p.C_Pr[0] + C_r = p.C_Pr[1] + D_r = p.C_Pr[2] + E_r = p.C_Pr[3] + elif type == "linear": + C_Sf = p.C_Sf + C_Sr = p.C_Sr + lf = p.l_f + lr = p.l_r + h = p.h_cg + m = p.m + I_z = p.I_z + + # compute lateral tire slip angles + alpha_f = -math.atan((x[4] + x[5] * lf) / x[3]) + u[0] + alpha_r = -math.atan((x[4] - x[5] * lr) / x[3]) + + # compute vertical tire forces + F_zf = m * (-u[1] * h + g_ * lr) / (lr + lf) + F_zr = m * (u[1] * h + g_ * lf) / (lr + lf) + + F_yf = F_yr = 0 + + # calculate combined slip lateral forces + if type == "pacejka": + F_yf = mu * F_zf * D_f * math.sin(C_f * math.atan(B_f * alpha_f - E_f*(B_f * alpha_f - math.atan(B_f * alpha_f)))) + F_yr = mu * F_zr * D_r * math.sin(C_r * math.atan(B_r * alpha_r - E_r*(B_r * alpha_r - math.atan(B_r * alpha_r)))) + elif type == "linear": + F_yf = mu * F_zf * C_Sf * alpha_f + F_yr = mu * F_zr * C_Sr * alpha_r + + f = [x[3]*math.cos(x[2]) - x[4]*math.sin(x[2]), + x[3]*math.sin(x[2]) + x[4]*math.cos(x[2]), + x[5], + u[1], + 1/m * (F_yr + F_yf) - x[3] * x[5], + 1/I_z * (-lr * F_yr + lf * F_yf)] + + return f diff --git a/system_identification/id_analyser/models/NUC1/NUC1_linear.txt b/system_identification/id_analyser/models/NUC1/NUC1_linear.txt new file mode 100644 index 0000000..51c5b8e --- /dev/null +++ b/system_identification/id_analyser/models/NUC1/NUC1_linear.txt @@ -0,0 +1,19 @@ +C_0d: 0.4769777665344132 +C_R: 3.693303119695026 +C_Sf: 3.70776089172916 +C_Sr: 14.917278165744078 +C_acc: 7.135521073243542 +C_d: -0.8555709456247437 +C_dec: 0.555393889733246 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC1 +mu: 1 +tau_steer: 0.15779476 +tire_model: linear diff --git a/system_identification/id_analyser/models/NUC1/NUC1_pacejka.txt b/system_identification/id_analyser/models/NUC1/NUC1_pacejka.txt new file mode 100644 index 0000000..c1e204f --- /dev/null +++ b/system_identification/id_analyser/models/NUC1/NUC1_pacejka.txt @@ -0,0 +1,27 @@ +C_0d: 0.41117415569890003 +C_Pf: +- 4.47161357602916 +- 0.1320293068694414 +- 12.267008918241816 +- 1.5562751013900538 +C_Pr: +- 9.999999999999812 +- 1.4999999999992566 +- 1.3200250015860229 +- 1.0999999999999999 +C_R: 3.693303119695026 +C_acc: 7.135521073243542 +C_d: -0.8390993957160475 +C_dec: 5.935972263881579 +I_z: 0.05797 +a_max: 3 +a_min: -3 +h_cg: 0.014 +l_f: 0.162 +l_r: 0.145 +l_wb: 0.307 +m: 3.54 +model_name: NUC1 +mu: 1 +tire_model: pacejka +tau_steer: 0.15779476 diff --git a/system_identification/id_analyser/models/SIM1/SIM1_linear.txt b/system_identification/id_analyser/models/SIM1/SIM1_linear.txt new file mode 100644 index 0000000..363a1e4 --- /dev/null +++ b/system_identification/id_analyser/models/SIM1/SIM1_linear.txt @@ -0,0 +1,19 @@ +C_0d: 0.02 +C_0v: 0.0 +C_Sf: 4.718 +C_Sr: 5.4562 +C_acc: 3.2 +C_d: 1.1 +C_dec: 3.2 +C_v: 3500.0 +I_z: 0.04712 +a_max: 3 +a_min: -3 +h_cg: 0.074 +l_f: 0.15875 +l_r: 0.17145 +l_wb: 0.3302 +m: 3.47 +model_name: SIM1 +mu: 0.523 +tire_model: linear diff --git a/system_identification/id_analyser/print_model.py b/system_identification/id_analyser/print_model.py new file mode 100644 index 0000000..41a030c --- /dev/null +++ b/system_identification/id_analyser/print_model.py @@ -0,0 +1,8 @@ +from helpers.load_model import get_dotdict + +model_name = "NUC1_linear" #name + tire model name + +print(f"Loading model {model_name}...") +model = get_dotdict(model_name) +for name, value in model.items(): + print(str(name) + ": " + str(value)) diff --git a/system_identification/id_controller/CMakeLists.txt b/system_identification/id_controller/CMakeLists.txt new file mode 100644 index 0000000..4db9f57 --- /dev/null +++ b/system_identification/id_controller/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.0.2) +project(id_controller) + +find_package(catkin REQUIRED COMPONENTS + geometry_msgs + rospy + std_msgs + f110_msgs +) + +catkin_python_setup() diff --git a/system_identification/id_controller/README.md b/system_identification/id_controller/README.md new file mode 100644 index 0000000..a2fd246 --- /dev/null +++ b/system_identification/id_controller/README.md @@ -0,0 +1,121 @@ +# Id controller +This package contains the node to run the different system identification experiments. Some of these require disabling or circumventing safety checks. Make sure you understand what you are doing before running anything. It's generally best to follow the System Identification procedure outlined [`here`](../../stack_master/checklists/SysID.md). + +## Basic usage + +The `id_controller` node sends the commands corresponding to the experiment to the car + +The node is launched via +```shell +roslaunch id_controller id_controller.launch +``` + +The following arguments are available + - `experiment` : indicates the number of the experiment (1 to 5 are available) + - `id_param_file` : indicates the postion of the config file for the experiments. Default should be fine for most cases, If you need to define a new one, look at the default [here](./parameters/experiments.yaml) + - `drive_topic` : indicates where the topics for commanding the car will be published. Default should be fine in all cases for now. + +## Experiments Types +There are currently 5 types of experiment available +### **1**: +find the parameters for [ackermann_to_vesc.cpp](../../sensors/vesc/vesc_ackermann/src/ackermann_to_vesc.cpp), that are set with a configuration file that depends on the car. For example, for NUC2, the configuration file is [here](../../stack_master/config/NUC2/vesc.yaml). +Namely the steering_to_servo_gain_, steering_to_servo_offset_ + +### **1** Steering Angle to Servo Mapping + +Namely the steering_to_servo_gain, steering_to_servo_offset, required to map steering angle commands to actual commands sent to the servos. + +For this, we bridge the ackermann_to_vesc node and directly publish onto the vesc topics via. + +```cpp + // create publishers to vesc electric-RPM (speed) and servo commands + erpm_pub_ = nh.advertise("commands/motor/speed", 10); + servo_pub_ = nh.advertise("commands/servo/position", 10); +``` + +# BE CAREFUL +This only works if no other node publishes onto these topics. As this would require deactivating the safety switches in place, it's preferable to use the iterative method using experiment 5, described in [`the checklist`](../../stack_master/checklists/SysID.md). + +Parameters are set in the [config file](./parameters/experiments.yaml). +```python +## Experiment 1 ## + +# Commanded VESC speed in electrical RPM. Electrical RPM is the mechanical RPM +# multiplied by the number of motor poles. Any value is accepted by this +# driver. However, note that the VESC may impose a more restrictive bounds on the +# range depending on its configuration. +const_erpm: 3000 + +# Commanded VESC servo output position. Valid range is 0 to 1., check out vesc driver and vesc.yaml: servo_min: 0.1, servo_max: 0.85 +const_servo: 0.415 +``` + +### **2**: Acceleration to Current Mapping +DO NOT USE +# BE CAREFUL +This experiment can go very wrong. It is only needed if you want to control the car via current commands, to control acceleration, as acceleration can otherwise not be commanded directly. It is however strongly advised to command motor speeds for safety reasons. + +Again, to command current directly to the motors, it need to be ensured that no other nodes are publishing to "/vesc/commands/motor/speed" or "/vesc/commands/motor/current". This again requires disabling/killing the safety switches, which is strong discouraged. + +The experiment commands a constant current `const_curr` for a defined `accel_time` and then a constant breaking current `const_brake` for a defined `decel_time`. Do not kill the node while the car is driving fast, otherwise it will not break. Triple check that your times are set correctly. From experience the maximum currents are around 60A. Anything more does not result in increased acceleration. + +Directly relate acceleration of car to commanded motor current, accelerate and decelerate and record acceleration vs cmd current +``` +a = C_curr_accel/m * I_cmd if I_cmd > 0 +a = C_curr_decel/m * I_cmd if I_cmd < 0 +``` + +Parameters are set in the [config file](./parameters/experiments.yaml). +```python +## Experiment 2, send direct current commands and look at acceleration ## +#from vesc.yaml: current_min: 0.0, current_max: 100.0 +const_curr: 40 +const_brake: 50 + +accel_time: 1 # never exceed 2s +decel_time: 1 # never exceed 2s +``` + +### **3**: +To make the acceleration identification safer, this removes the need of experiment 2, to circumvent safety check, by commanding acceleration via the drive topic specified in the launch file. By setting the jerk to 512, the `custom_ackermann_to_vesc_node` knows to interpret this as an acceleration command. It uses the currently estimated acceleration_to_current_gain_ and velocity_to_current_gain_, defined in the vesc.yaml. + +Parameters are set in the [config file](./parameters/experiments.yaml). +# BE CAREFUL +time parameters are set in experiment 2 +```python +accel_time: 1 # never exceed 2s +decel_time: 1 # never exceed 2s + +# Experiment 3 const accel decel with acceleration commands via drive message +const_accel: 5 +const_decel: -5 +``` + +### **4**: +Parameters are set in the [config file](./parameters/experiments.yaml). +```python +# Commanded VESC speed in electrical RPM. Electrical RPM is the mechanical RPM +# multiplied by the number of motor poles. Any value is accepted by this +# driver. However, note that the VESC may impose a more restrictive bounds on the +# range depending on its configuration. +const_erpm: 3000 +... +# experiment 4, increase angle from start_pos, to end_pos over angle_time +# drives with const_erpm defined above +angle_time: 20 + +start_pos: 0.15 +end_pos: 0.85 +``` + +### **5**: +Command a linearly changing steering input and constant velocity for a predefined amount of time. + +Parameters are set in the [config file](./parameters/experiments.yaml). +```python +# experiment 5, increase steering angle, drive with const_speed +const_speed: 3 + +start_angle: 0.1 # rad +end_angle: 0.4 # rad +``` diff --git a/system_identification/id_controller/launch/id_controller.launch b/system_identification/id_controller/launch/id_controller.launch new file mode 100644 index 0000000..290bf9d --- /dev/null +++ b/system_identification/id_controller/launch/id_controller.launch @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/system_identification/id_controller/package.xml b/system_identification/id_controller/package.xml new file mode 100644 index 0000000..bfd736e --- /dev/null +++ b/system_identification/id_controller/package.xml @@ -0,0 +1,26 @@ + + + id_controller + 1.0.0 + The id_controller package + + + + + Jonathan Becker + + catkin + geometry_msgs + rospy + f110_msgs + std_msgs + + MIT + + + + + + + + diff --git a/system_identification/id_controller/parameters/experiments.yaml b/system_identification/id_controller/parameters/experiments.yaml new file mode 100644 index 0000000..da1f84b --- /dev/null +++ b/system_identification/id_controller/parameters/experiments.yaml @@ -0,0 +1,46 @@ +## Experiment 1 ## + +# Commanded VESC speed in electrical RPM. Electrical RPM is the mechanical RPM +# multiplied by the number of motor poles. Any value is accepted by this +# driver. However, note that the VESC may impose a more restrictive bounds on the +# range depending on its configuration. +const_erpm: 3000 + +# Commanded VESC servo output position. Valid range is 0 to 1., check out vesc driver and vesc.yaml: servo_min: 0.1, servo_max: 0.85 +const_servo: 0.415 + +## Experiment 2, send direct current commands and look at acceleration ## +#from vesc.yaml: current_min: 0.0, current_max: 100.0 +const_curr: 40 +const_brake: 50 + +accel_time: 1.5 # never exceed 2s +decel_time: 1.5 # never exceed 2s + +# Experiment 3 const accel decel with acceleration commands via drive message +const_accel: 5 +const_decel: -5 + +# experiment 4, increase angle from start_pos, to end_pos over angle_time +# drives with const_erpm defined above +angle_time: 20 + +start_pos: -0.1 +end_pos: 0.4 + +# experiment 5, increase steering angle, drive with const_speed +const_speed: 3 + +start_angle: 0.1 # rad +end_angle: 0.4 # rad + +# experiment 6, follow given acceleration profile and record IMU data +# profile 1: Step velocity input 2s v=0, 4s v=3, then v=0 +# profile 2: Full acceleration for 2s then full brake for 2s. + #accel_time and decel_time are used as well (profile 2) +acc_profile: 3 + +# experiment 7, constant speed (const_speed from 5), bang bang steer +period: 3 # [s] +repetitions: 5 # total experiment duration will be * seconds +bangbang_steer: 0.1 # [rad] diff --git a/system_identification/id_controller/setup.py b/system_identification/id_controller/setup.py new file mode 100644 index 0000000..54a7528 --- /dev/null +++ b/system_identification/id_controller/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['id_controller'], + package_dir={'': 'src'}, +) + +setup(**setup_args) diff --git a/system_identification/id_controller/src/controller_node.py b/system_identification/id_controller/src/controller_node.py new file mode 100755 index 0000000..dc2685a --- /dev/null +++ b/system_identification/id_controller/src/controller_node.py @@ -0,0 +1,271 @@ +#!/usr/bin/env python3 +#node for recording rosbags. Node runs on NUC on drone while gui runs on flight book + +import rospy +from ackermann_msgs.msg import AckermannDriveStamped +from std_msgs.msg import Float64 + +class IDController: + + def __init__(self): + #subscribers + # rospy.Subscriber("/vicon/F110rosbag_record", Record , self.GUI_cb, queue_size=10) + + #publishers + self.cmd_pub = rospy.Publisher('drive_topic', AckermannDriveStamped, queue_size=10) + # create publishers to vesc electric-RPM (speed) and servo commands (bridge ackermann to vesc node and directly talk to vesc driver) + self.erpm_pub = rospy.Publisher("/vesc/commands/motor/speed", Float64, queue_size=10) + self.servo_pub = rospy.Publisher("/vesc/commands/servo/position", Float64, queue_size=10) + self.current_pub = rospy.Publisher("/vesc/commands/motor/current", Float64, queue_size=10) + self.brake_pub = rospy.Publisher("/vesc/commands/motor/brake", Float64, queue_size=10) + + # parameters + self.experiment = rospy.get_param("/id_controller/experiment") + + # 1 - send const vesc command + self.const_erpm = rospy.get_param("/id_controller/const_erpm") + self.const_servo = rospy.get_param("/id_controller/const_servo") + + # 2 - accelerate then decelerate via current commands + self.const_curr = rospy.get_param("/id_controller/const_curr") + self.const_brake = rospy.get_param("/id_controller/const_brake") + self.accel_time = rospy.get_param("/id_controller/accel_time") + self.decel_time = rospy.get_param("/id_controller/decel_time") + + # 3 - accelerate then decelerate via acceleration commands + self.const_accel = rospy.get_param("/id_controller/const_accel") + self.const_decel = rospy.get_param("/id_controller/const_decel") + + # 4 - drive with const erpm and increase servo position + self.angle_time = rospy.get_param("/id_controller/angle_time") + self.start_pos = rospy.get_param("/id_controller/start_pos") + self.end_pos = rospy.get_param("/id_controller/end_pos") + + #5 drive with const motor speed and increase steering angle uses angle time from above + self.start_angle = rospy.get_param("/id_controller/start_angle") + self.end_angle = rospy.get_param("/id_controller/end_angle") + self.const_speed = rospy.get_param("/id_controller/const_speed") + + #6 follow given acceleration profile and record IMU data + self.acc_profile = rospy.get_param("id_controller/acc_profile") + + # 7 bang bang control on the servo with constant speed + #self.period = rospy.get_param("/id_controller/bangbang_period") + #self.repetitions = rospy.get_param("/id_controller/repetitions") + #self.bangbang_steer = rospy.get_param("/id_controller/bangbang_steer") + + rospy.logwarn("Starting experiment #" + str(self.experiment)) + + rate = rospy.Rate(30) + self.start_time = rospy.get_time() + while not rospy.is_shutdown(): + if self.experiment == 1: + self.send_const_vesc_cmd() + elif self.experiment == 2: + self.accel_decel() + elif self.experiment == 3: + self.drive_accel_decel() + elif self.experiment == 4: + self.increase_servo_position() + elif self.experiment == 5: + self.increase_steering_angle() + elif self.experiment == 6: + self.acc_profile_recorder() + elif self.experiment == 7: + self.bang_bang_servo() + rate.sleep() + + def send_const_vesc_cmd(self): + erpm_msg = Float64(self.const_erpm) + servo_msg = Float64(self.const_servo) + self.erpm_pub.publish(erpm_msg) + self.servo_pub.publish(servo_msg) + + def accel_decel(self): + servo_msg = Float64(self.const_servo) + self.servo_pub.publish(servo_msg) + if (rospy.get_time() - self.start_time < self.accel_time): + current_msg = Float64(self.const_curr) + self.current_pub.publish(current_msg) + rospy.loginfo("accelerating") + elif (rospy.get_time() - self.start_time < self.accel_time + self.decel_time): + brake_msg = Float64(self.const_brake) + self.brake_pub.publish(brake_msg) + rospy.loginfo("decelerating") + + def drive_accel_decel(self): + drive_msg = AckermannDriveStamped() + drive_msg.header.stamp = rospy.Time.now() + drive_msg.drive.steering_angle = 0 + drive_msg.drive.steering_angle_velocity = 0 + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 512 # used a flag to indicate the ackermann controller to use acceleration instead of speed + + if (rospy.get_time() - self.start_time < 3): #wait for 3s + rospy.loginfo_once("experiment starting") + elif (rospy.get_time() - self.start_time < self.accel_time + 3): + drive_msg.drive.acceleration = self.const_accel + rospy.loginfo("accelerating") + self.cmd_pub.publish(drive_msg) + elif (rospy.get_time() - self.start_time < self.accel_time + self.decel_time + 3): + drive_msg.drive.acceleration = self.const_decel + self.cmd_pub.publish(drive_msg) + rospy.loginfo("decelerating") + + else: + rospy.loginfo_once("experiment over") + + + def increase_servo_position(self): + time_frac = (rospy.get_time() - self.start_time)/self.angle_time + if time_frac <= 1: + angle = self.end_pos * time_frac + self.start_pos * (1 - time_frac) + servo_msg = Float64(angle) + erpm_msg = Float64(self.const_erpm) + self.erpm_pub.publish(erpm_msg) + self.servo_pub.publish(servo_msg) + else: + rospy.loginfo_once("experiment over") + + def increase_steering_angle(self): + time_frac = (rospy.get_time() - self.start_time)/self.angle_time + if time_frac <= 1: + angle = self.end_angle * time_frac + self.start_angle * (1 - time_frac) + drive_msg = AckermannDriveStamped() + drive_msg.header.stamp = rospy.Time.now() + drive_msg.drive.steering_angle = angle + drive_msg.drive.steering_angle_velocity = 0 + drive_msg.drive.speed = self.const_speed + drive_msg.drive.acceleration = 0 + drive_msg.drive.jerk = 0 + self.cmd_pub.publish(drive_msg) + if time_frac >= 0.9: + rospy.logwarn("Ending soon, stop the bag") + else: + rospy.loginfo_once("experiment over") + + def acc_profile_recorder(self): + drive_msg = AckermannDriveStamped() + drive_msg.header.stamp = rospy.Time.now() + drive_msg.drive.steering_angle = 0 + drive_msg.drive.steering_angle_velocity = 0 + + if self.acc_profile == 1: # Step response to speed + speed = 3 + duration = 4 + if (rospy.get_time() - self.start_time < 2): #stand still for 2 seconds + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo_once("experiment starting") + elif (rospy.get_time() - self.start_time > duration + 2): # stand still again after experiment duration + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo_once("experiment over") + else: # step input to 3 m/s after 2 seconds have passed + drive_msg.drive.speed = speed + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo("accelerating") + elif self.acc_profile == 2: # Max acc and braking test + drive_msg = AckermannDriveStamped() + drive_msg.header.stamp = rospy.Time.now() + drive_msg.drive.steering_angle = 0 + drive_msg.drive.steering_angle_velocity = 0 + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 512 + if (rospy.get_time() - self.start_time < self.accel_time): + drive_msg.drive.acceleration = 100 + rospy.loginfo("accelerating") + self.cmd_pub.publish(drive_msg) + elif (rospy.get_time() - self.start_time < self.accel_time + self.decel_time): + drive_msg.drive.acceleration = -100 + self.cmd_pub.publish(drive_msg) + rospy.loginfo("decelerating") + else: + rospy.loginfo_once("experiment over") + elif self.acc_profile == 3: # speed steps at speed + speed1 = 3 + speed2 = 5 + duration = 6 + if (rospy.get_time() - self.start_time < 2 or rospy.get_time() - self.start_time > 2 + duration): #stand still for 2 seconds + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo_once("standing still") + elif (rospy.get_time() - self.start_time > duration/3 + 2 and rospy.get_time() - self.start_time < duration/3*2 + 2): #accelerate to speed 2 + drive_msg.drive.speed = speed2 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo("accelerating further") + elif (rospy.get_time() - self.start_time > duration/3*2 + 2 and rospy.get_time() - self.start_time < duration + 2): #decelerate to speed 1 again + drive_msg.drive.speed = speed2 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo("decelerating") + elif (rospy.get_time() - self.start_time > duration + 2): # stand still again after experiment duration + drive_msg.drive.speed = 0 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo_once("experiment over") + else: # step input to speed 1 after 2 seconds have passed + drive_msg.drive.speed = speed1 + drive_msg.drive.jerk = 0 + drive_msg.drive.acceleration = 0 + self.cmd_pub.publish(drive_msg) + rospy.loginfo("accelerating") + else: + rospy.loginfo("invalid speed profile") + drive_msg.drive.speed = 1 + drive_msg.drive.jerk = 512 + if (rospy.get_time() - self.start_time < self.accel_time): + drive_msg.drive.acceleration = self.const_accel + rospy.loginfo("accelerating") + self.cmd_pub.publish(drive_msg) + elif (rospy.get_time() - self.start_time < self.accel_time + self.decel_time): + drive_msg.drive.acceleration = self.const_decel + self.cmd_pub.publish(drive_msg) + rospy.loginfo("decelerating") + else: + rospy.loginfo_once("experiment over") + + + def bang_bang_servo(self): + time_frac = (rospy.get_time() - self.start_time)/self.period + + steer_sign = - 1 + if time_frac%1 < 0.5: + steer_sign = 1 + + if time_frac <= 1*self.repetitions: + angle = steer_sign*self.bangbang_steer + + drive_msg = AckermannDriveStamped() + drive_msg.header.stamp = rospy.Time.now() + drive_msg.drive.steering_angle = angle + drive_msg.drive.steering_angle_velocity = 0 + drive_msg.drive.speed = self.const_speed + drive_msg.drive.acceleration = 0 + drive_msg.drive.jerk = 0 + self.cmd_pub.publish(drive_msg) + else: + rospy.loginfo_once("experiment over") + + +if __name__ == '__main__': + rospy.init_node('id_controller') + rospy.loginfo('id Controller is running') + + # Go to class functions that do all the heavy lifting. Do error checking. + try: + IDController = IDController() + except rospy.ROSInterruptException: + pass diff --git a/system_identification/steering_lookup/CMakeLists.txt b/system_identification/steering_lookup/CMakeLists.txt new file mode 100644 index 0000000..ca414c1 --- /dev/null +++ b/system_identification/steering_lookup/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.0.2) +project(steering_lookup) + +find_package(catkin) + +catkin_python_setup() diff --git a/system_identification/steering_lookup/README.md b/system_identification/steering_lookup/README.md new file mode 100644 index 0000000..759b451 --- /dev/null +++ b/system_identification/steering_lookup/README.md @@ -0,0 +1,22 @@ +# Steering lookup +This package provides an importable library to use the steering lookup obtained from sysid experiments for the MAP controller. + +## How to use + +Build the library (catkin build steering_lookup) and source the workspace. After generating the lookup table using the scripts in 'id_analyser', you can import this library and use it in another ros package like so: + +```python +from steering_lookup.lookup_steer_angle import LookupSteerAngle + +# [...] + +steer_lookup = LookupSteerAngle('') +accel = 5.0 # m/s2 +vel = 3.5 # m/s +steer_angle = steer_lookup.lookup_steer_angle(accel, vel) +# Output steer angle: +# rospy.loginfo(steer_angle) + +``` + +Replace \ with the name of your config without "_lookup_table.csv". So if your config is called CAR2_pacejka_lookup_table.csv, \ would be CAR2_pecejka. \ No newline at end of file diff --git a/system_identification/steering_lookup/cfg/NUC2_pacejka_lookup_table.csv b/system_identification/steering_lookup/cfg/NUC2_pacejka_lookup_table.csv new file mode 100644 index 0000000..85f530b --- /dev/null +++ b/system_identification/steering_lookup/cfg/NUC2_pacejka_lookup_table.csv @@ -0,0 +1,61 @@ +0.000000000000000000e+00,5.000000000000000000e-01,6.015625000000000000e-01,7.031250000000000000e-01,8.046875000000000000e-01,9.062500000000000000e-01,1.007812500000000000e+00,1.109375000000000000e+00,1.210937500000000000e+00,1.312500000000000000e+00,1.414062500000000000e+00,1.515625000000000000e+00,1.617187500000000000e+00,1.718750000000000000e+00,1.820312500000000000e+00,1.921875000000000000e+00,2.023437500000000000e+00,2.125000000000000000e+00,2.226562500000000000e+00,2.328125000000000000e+00,2.429687500000000000e+00,2.531250000000000000e+00,2.632812500000000000e+00,2.734375000000000000e+00,2.835937500000000000e+00,2.937500000000000000e+00,3.039062500000000000e+00,3.140625000000000000e+00,3.242187500000000000e+00,3.343750000000000000e+00,3.445312500000000000e+00,3.546875000000000000e+00,3.648437500000000000e+00,3.750000000000000000e+00,3.851562500000000000e+00,3.953125000000000000e+00,4.054687500000000000e+00,4.156250000000000000e+00,4.257812500000000000e+00,4.359375000000000000e+00,4.460937500000000000e+00,4.562500000000000000e+00,4.664062500000000000e+00,4.765625000000000000e+00,4.867187500000000000e+00,4.968750000000000000e+00,5.070312500000000000e+00,5.171875000000000000e+00,5.273437500000000000e+00,5.375000000000000000e+00,5.476562500000000000e+00,5.578125000000000000e+00,5.679687500000000000e+00,5.781250000000000000e+00,5.882812500000000000e+00,5.984375000000000000e+00,6.085937500000000000e+00,6.187500000000000000e+00,6.289062500000000000e+00,6.390625000000000000e+00,6.492187500000000000e+00,6.593750000000000000e+00,6.695312500000000000e+00,6.796875000000000000e+00,6.898437500000000000e+00,7.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +3.448275862068965903e-03,2.785353655832998546e-03,4.017293771769745239e-03,5.464960375609301084e-03,7.122755426367734233e-03,8.984356595195199316e-03,1.104277606093031355e-02,1.329042364494389776e-02,1.571917661121354989e-02,1.832043538916962658e-02,2.108522205315143186e-02,2.400422444770020786e-02,2.706788104430629671e-02,3.026644799814656728e-02,3.359006684058928049e-02,3.702882910596595051e-02,4.057283807965592071e-02,4.421226583797512738e-02,4.793740639508306534e-02,5.173872399271348121e-02,5.560689672601848432e-02,5.953285500193779972e-02,6.350781491948952195e-02,6.752330714568746672e-02,7.157120051486720591e-02,7.564372148526023187e-02,7.973346877338870209e-02,8.383342416848571510e-02,8.793695952582047948e-02,9.203784011075848148e-02,9.613022520258272807e-02,1.002086626928730129e-01,1.042680931459148141e-01,1.083038276381317055e-01,1.123115517099299299e-01,1.162873087014902607e-01,1.202274887552126914e-01,1.241288143729189913e-01,1.279883314591447330e-01,1.318033861358461900e-01,1.355716172351819071e-01,1.392909396816973400e-01,1.429595263700615126e-01,1.465757952633133521e-01,1.501383927668005491e-01,1.536461786218125403e-01,1.570982190927245059e-01,1.604937654818543447e-01,1.638322297793826376e-01,1.671131975409254067e-01,1.703363936395783651e-01,1.735016813438793881e-01,1.766090464930926418e-01,1.796585916826664298e-01,1.826505082294034854e-01,1.855850980141190432e-01,1.884627395170578035e-01,1.912838866176663211e-01,1.940490600561101953e-01,1.967588429617666002e-01,1.994138679553641713e-01,2.020148190458407600e-01,2.045624190665447650e-01,2.070574279243152516e-01,2.095006328166869880e-01,2.118928496370699466e-01 +6.896551724137931806e-03,5.570771373185672004e-03,8.034678547328010997e-03,1.093004235335228759e-02,1.424566609384123571e-02,1.796890447633696028e-02,2.208578105070605965e-02,2.658111473998414284e-02,3.143865371857698654e-02,3.664121439559697019e-02,4.217082351716500144e-02,4.800886120029519005e-02,5.413620318361000994e-02,6.053336083408789037e-02,6.718061412329656701e-02,7.405814428701304464e-02,8.114616568484009362e-02,8.842500856805590725e-02,9.587526340742835718e-02,1.034778559511295992e-01,1.112141406661096565e-01,1.190659751086636242e-01,1.270157893035263330e-01,1.350466420268691126e-01,1.431422656533098414e-01,1.512871112524569184e-01,1.594663731792125838e-01,1.676660123399439095e-01,1.758727677420332258e-01,1.840741669526438085e-01,1.922585245090429606e-01,2.004149374347856949e-01,2.085332747092482064e-01,2.166041609586949468e-01,2.246189689713796456e-01,2.325697755634981156e-01,2.404493612843936756e-01,2.482511713536312836e-01,2.559692903658168373e-01,2.635984166694582131e-01,2.711338181506802170e-01,2.785713295964139524e-01,2.859072927090173799e-01,2.931385466984685606e-01,3.002623824247661610e-01,3.072765235037278608e-01,3.141790993129185416e-01,3.209686024321236619e-01,3.276438770262212197e-01,3.342040837173115286e-01,3.406486791819767213e-01,3.469773894371168677e-01,3.531901878506667480e-01,3.592872725612003548e-01,3.652690541763699006e-01,3.711360973777623196e-01,3.768892252634210571e-01,3.825292882232795844e-01,3.880573489400067633e-01,3.934745784926447776e-01,3.987822475521585197e-01,4.039817230990718766e-01,4.090744532145638157e-01,4.140619686944511657e-01,4.189458321410621799e-01,4.237276869170796267e-01 +1.034482758620689814e-02,8.356317193967323365e-03,1.205224534094415101e-02,1.639536758654507043e-02,2.136888731094659793e-02,2.695383494102486510e-02,3.312924394821412100e-02,3.987234075679460532e-02,4.715874552626239669e-02,5.496268065238633233e-02,6.325718416373611597e-02,7.201432261957523007e-02,8.120540796141524631e-02,9.080120332163289787e-02,1.007721277698324647e-01,1.110884496884670530e-01,1.217204726694306322e-01,1.326387056306889134e-01,1.438140207717111263e-01,1.552178036693455110e-01,1.668220785575189047e-01,1.785996277891931105e-01,1.905240816947113836e-01,2.025700276221099050e-01,2.147130582719306569e-01,2.269298378173619790e-01,2.391981507290042164e-01,2.514969284057102517e-01,2.638062708530836131e-01,2.761074670368749984e-01,2.883829737697052864e-01,3.006164317664263286e-01,3.127926534026029826e-01,3.248975149863032597e-01,3.369181170177972806e-01,3.488425583746743164e-01,3.606600039321029572e-01,3.723606121926011370e-01,3.839355069276736421e-01,3.953767281194666694e-01,4.066771875005913972e-01,4.178306213443851447e-01,4.288315493387725996e-01,4.396752177836920072e-01,4.503575813672591743e-01,4.608752069267001428e-01,4.712253008923554809e-01,4.814055999137351050e-01,4.914143734020440801e-01,5.012503715370678625e-01,5.109127782127929063e-01,5.204011833119007724e-01,5.297155566938961391e-01,5.388562006203977406e-01,5.478237305583155692e-01,5.566190339428590539e-01,5.652432589119759099e-01,5.736977817260315859e-01,5.819841715119996595e-01,5.901041868856065076e-01,5.980597437162490371e-01,6.058528995428213992e-01,6.134858353978037693e-01,6.209608392533210175e-01,6.282803086188989417e-01,6.354466325790801839e-01 +1.379310344827586361e-02,1.114205519341549162e-02,1.607008517677332993e-02,2.186105768994314053e-02,2.849257437534106346e-02,3.593933932615293869e-02,4.417339305561514273e-02,5.316436918570921488e-02,6.287975533694653563e-02,7.328517783165336419e-02,8.434468241248596621e-02,9.602102103817289347e-02,1.082759362990300817e-01,1.210704402827414011e-01,1.343650815427631373e-01,1.481202226163023661e-01,1.622962482048119215e-01,1.768538370051848108e-01,1.917541292054499302e-01,2.069589748351012837e-01,2.224310566761369123e-01,2.381340700506918984e-01,2.540328513949992040e-01,2.700934935867690956e-01,2.862834411668841450e-01,3.025715675763551715e-01,3.189282343478719306e-01,3.353253355189882989e-01,3.517363233863163297e-01,3.681362265415261126e-01,3.845016473161501080e-01,4.008107529874097019e-01,4.170432577253496698e-01,4.331803913239933856e-01,4.492048646356027741e-01,4.651008212560898136e-01,4.808538074215915614e-01,4.964506842159969735e-01,5.118796171790824800e-01,5.271299817389275555e-01,5.421923216474828777e-01,5.570582816486734368e-01,5.717205498599956526e-01,5.861727924637656351e-01,6.004096025615960341e-01,6.144264256635835197e-01,6.282195179176580657e-01,6.417858789954751231e-01,6.551232029533358148e-01,6.682298225937466363e-01,6.811046606364518086e-01,6.937471838573143756e-01,7.061573565609389203e-01,7.183355902495803802e-01,7.302827126963060689e-01,7.419999201225500052e-01,7.534887735913439188e-01,7.647510830469986809e-01,7.757889746474376791e-01,7.866048052418042058e-01,7.972011384338364426e-01,8.075807280941511568e-01,8.177465156255103729e-01,8.277015082841789884e-01,8.374489410159617897e-01,8.469920865226812090e-01 +1.724137931034483082e-02,1.392804945876597623e-02,2.008828910976208013e-02,2.732723434629934223e-02,3.561688262807416461e-02,4.492560893218918577e-02,5.521845943645713184e-02,6.645746768052473996e-02,7.860198926611995651e-02,9.160904967826624667e-02,1.054336988563206040e-01,1.200293689443377304e-01,1.353482296058410028e-01,1.513415366698575848e-01,1.679599697636078304e-01,1.851539578508415440e-01,2.028739820682212425e-01,2.210708660389322511e-01,2.396960387729309139e-01,2.587017769927704158e-01,2.780414222812326863e-01,2.976695738767420329e-01,3.175422565828422972e-01,3.376170641770129821e-01,3.578532789570844086e-01,3.782119684405726434e-01,3.986560598906628283e-01,4.191503954943321397e-01,4.396617661146782208e-01,4.601589308919038501e-01,4.806126192115413587e-01,5.009955142428121899e-01,5.212822370683337647e-01,5.414493025160908024e-01,5.614750772568593007e-01,5.813397393695802773e-01,6.010251404345335891e-01,6.205149390910350560e-01,6.397942637628518670e-01,6.588498368130921712e-01,6.776698297995923381e-01,6.962437932539967678e-01,7.145625818022787179e-01,7.326182756753624181e-01,7.504041205225385758e-01,7.679144226826093433e-01,7.851445023260280598e-01,8.020906215091463398e-01,8.187499005300004074e-01,8.351202712043342968e-01,8.512003945629055268e-01,8.669896169450611589e-01,8.824879058133200393e-01,8.976957942518697386e-01,9.126143331123870439e-01,9.272450407248103987e-01,9.415898585910652541e-01,9.556511032117677162e-01,9.694314377502272206e-01,9.829338228927573251e-01,9.961614882189829823e-01,1.009117908128104979e+00,1.021806720630657805e+00,1.034231806360415451e+00,1.046397150281341837e+00,1.058306885791713947e+00 +2.068965517241379629e-02,1.671436410192619557e-02,2.410694822600090159e-02,3.279401927826945673e-02,4.274196744220298133e-02,5.391283540759582438e-02,6.626467028372159951e-02,7.975190376426261052e-02,9.432575352705541150e-02,1.099346402776388149e-01,1.265246128232095368e-01,1.440397787653289741e-01,1.624227218049977828e-01,1.816149587396333753e-01,2.015572641049235558e-01,2.221901461253202037e-01,2.434541635433896678e-01,2.652902839512541466e-01,2.876401992061939916e-01,3.104466174349551633e-01,3.336535210209591318e-01,3.572064006271425396e-01,3.810524550649832531e-01,4.051407642429307177e-01,4.294224335155196748e-01,4.538507062910968060e-01,4.783810612644833204e-01,5.029712708181834913e-01,5.275814474777095198e-01,5.521740649958680747e-01,5.767139613851492985e-01,6.011683238812238761e-01,6.255066615177945488e-01,6.497007598963190356e-01,6.737246300298225243e-01,6.975544417236230199e-01,7.211684530889740374e-01,7.445469895418134199e-01,7.676721012860105997e-01,7.905279704939188745e-01,8.131003404164866000e-01,8.353766628396450677e-01,8.573459570228504356e-01,8.789987173458498892e-01,9.003268357726781357e-01,9.213234854383886008e-01,9.419830607702349701e-01,9.623010794207648155e-01,9.822741020892948871e-01,1.001899655954984203e+00,1.021176179148387542e+00,1.040102826698798610e+00,1.058679677555650622e+00,1.076907342960947700e+00,1.094787112892693148e+00,1.112320843325242281e+00,1.129510887869073832e+00,1.146360043975959808e+00,1.162871547212829038e+00,1.179048976170615548e+00,1.194896233149358222e+00,1.210417505180879427e+00,1.225617230483787123e+00,1.240500051667351444e+00,1.255070791975597455e+00,1.269334453104866034e+00 +2.413793103448276176e-02,1.950106325807202806e-02,2.812615359665363024e-02,3.826153425205749276e-02,4.986798433386110257e-02,6.290121006002499793e-02,7.731225534920560527e-02,9.304794524288523272e-02,1.100513542326442551e-01,1.282622927756152942e-01,1.476178038243046997e-01,1.680526645203454517e-01,1.894998772007236709e-01,2.118911674309325310e-01,2.351574490350279434e-01,2.592292749450585410e-01,2.840372819910806368e-01,3.095125621074320543e-01,3.355870604135691160e-01,3.621939026770956138e-01,3.892676985631377540e-01,4.167448135297375233e-01,4.445636034394278013e-01,4.726646178534898435e-01,5.009907620042940435e-01,5.294874461197865978e-01,5.581026705138030231e-01,5.867871218450843029e-01,6.154942128669917967e-01,6.441801087097335232e-01,6.728037487819025220e-01,7.013267910546202577e-01,7.297136220003923590e-01,7.579312758834694241e-01,7.859493934267786086e-01,8.137401489446158820e-01,8.412781115378394903e-01,8.685402641857272732e-01,8.955057968876655172e-01,9.221560790891221160e-01,9.484744980182632235e-01,9.744464275643562878e-01,1.000059008186859222e+00,1.025301209029746641e+00,1.050163510551806345e+00,1.074637978617304146e+00,1.098718083552714386e+00,1.122398602846913063e+00,1.145675545130497852e+00,1.168546047978691549e+00,1.191008283369456411e+00,1.213061377249785577e+00,1.234705369754918403e+00,1.255940989831824117e+00,1.276769843433432694e+00,1.297194093494753675e+00,1.317216527887618671e+00,1.336840462932709306e+00,1.356069689556174129e+00,1.374908449483218664e+00,1.393361307914258385e+00,1.411433211785503294e+00,1.429129361392854403e+00,1.446455223077677488e+00,1.463416408992399775e+00,1.480018973929255299e+00 +2.758620689655172722e-02,2.228821110267379182e-02,3.214599654898771947e-02,4.372990108667979686e-02,5.699508878228409098e-02,7.189092457852046258e-02,8.836144398615931872e-02,1.063458601844682189e-01,1.257790984563428027e-01,1.465923520102952460e-01,1.687136519052387651e-01,1.920684348679758124e-01,2.165801133512140209e-01,2.421706318735728225e-01,2.687610068652018236e-01,2.962718438237986751e-01,3.246238266938701322e-01,3.537381758946390731e-01,3.835370714801384362e-01,4.139440395133550110e-01,4.448842992311785594e-01,4.762850751276168082e-01,5.080758591172415128e-01,5.401886494243234305e-01,5.725581317869348208e-01,6.051218514568651452e-01,6.378203190362961017e-01,6.705971341257362939e-01,7.033988721248813913e-01,7.361755578846777004e-01,7.688800532927025921e-01,8.014685267387893219e-01,8.339002065903069472e-01,8.661373670065312114e-01,8.981452562502750814e-01,9.298919886500406351e-01,9.613485383406855656e-01,9.924884870050471042e-01,1.023288044942072705e+00,1.053725878817590500e+00,1.083783025315947279e+00,1.113442664350960509e+00,1.142690188159015241e+00,1.171512899661537821e+00,1.199899978641263409e+00,1.227842364256287677e+00,1.255332561740409636e+00,1.282364667986672035e+00,1.308934121956973451e+00,1.335037683303955891e+00,1.360673292676919388e+00,1.385839997815051738e+00,1.410537839261013282e+00,1.434767785235969040e+00,1.458531627955741872e+00,1.481831916292853935e+00,1.504671890051487271e+00,1.527055381995043426e+00,1.548986791371915528e+00,1.570470983761454775e+00,1.591513270865955398e+00,1.612119342410366585e+00,1.632295191754881136e+00,1.652047132651416117e+00,1.671381805372769147e+00,1.690305634436857440e+00 +3.103448275862069269e-02,2.507587184969187200e-02,3.616656815875590042e-02,4.919924171493846032e-02,6.412343650325304234e-02,8.088217063343614011e-02,9.941246563079014775e-02,1.196459158681628110e-01,1.415092912229961863e-01,1.649251619270489244e-01,1.898125369721664346e-01,2.160875066957838597e-01,2.436638810523707455e-01,2.724538157760604817e-01,3.023684201719894493e-01,3.333183342234899427e-01,3.652142868826491195e-01,3.979676023503200266e-01,4.314906815144838315e-01,4.656974342110517529e-01,5.005036695614845099e-01,5.358274471265622729e-01,5.715893759632330040e-01,6.077128757729258757e-01,6.441243939665753926e-01,6.807535842783798419e-01,7.175334364431340539e-01,7.544003839561377323e-01,7.912943702524616318e-01,8.281588777273241053e-01,8.649409154528207022e-01,9.015911468813363472e-01,9.380635265043199000e-01,9.743155732444788164e-01,1.010308084355149294e+00,1.046005213518901300e+00,1.081374165262814380e+00,1.116385226067336145e+00,1.151011551295283653e+00,1.185229133013790070e+00,1.219016574341892811e+00,1.252354997642431522e+00,1.285227898587640416e+00,1.317621013145072073e+00,1.349522163550845422e+00,1.380921155693342728e+00,1.411809619582209852e+00,1.442180892361209166e+00,1.472029894497911329e+00,1.501353001912839824e+00,1.530147952582593840e+00,1.558413720502908495e+00,1.586150399956726131e+00,1.613359125851292486e+00,1.640042004371844664e+00,1.666201899720467727e+00,1.691842571320328004e+00,1.716968390800840405e+00,1.741584362069625858e+00,1.765696001475174359e+00,1.789309454254335741e+00,1.812431092759783979e+00,1.835067746467329730e+00,1.857226584725116147e+00,1.878915057172076741e+00,1.900140792227616116e+00 +3.448275862068966163e-02,2.786410976008701912e-02,4.018795976202362008e-02,5.466967809421938163e-02,7.125318300817780337e-02,8.987514008516497843e-02,1.104655498488255755e-01,1.329483811188539588e-01,1.572422406979749332e-01,1.832610668255051090e-01,2.109148392081185430e-01,2.401102916331320225e-01,2.707516214230517027e-01,3.027411844307990041e-01,3.359801686739398718e-01,3.703692396369548390e-01,4.058091493804214522e-01,4.422013169286053147e-01,4.794483390880172613e-01,5.174544908409721700e-01,5.561261365949479174e-01,5.953721902400186394e-01,6.351043083519661847e-01,6.752373227718031501e-01,7.156894107828783991e-01,7.563823053762130932e-01,7.972414497787818632e-01,8.381961087110662012e-01,8.791794467288929216e-01,9.201285611838218026e-01,9.609845009969868457e-01,1.001692240335234185e+00,1.042200626708395639e+00,1.082462308073645296e+00,1.122433792830525912e+00,1.162074978299066474e+00,1.201349434880945921e+00,1.240224079465715112e+00,1.278669051792360900e+00,1.316657614581167479e+00,1.354165957456095581e+00,1.391173110276033631e+00,1.427660694495920701e+00,1.463612860605212562e+00,1.499016096813448273e+00,1.533859079024701311e+00,1.568132531673331442e+00,1.601829085684200349e+00,1.634943133378811808e+00,1.667470700694148933e+00,1.699409324431599089e+00,1.730757911344504185e+00,1.761516642291952595e+00,1.791686854391231432e+00,1.821270916463451295e+00,1.850272169497040320e+00,1.878694800200763737e+00,1.906543776700314829e+00,1.933824723122655964e+00,1.960543910650922816e+00,1.986708155710809054e+00,2.012324651011931476e+00,2.037401347066323254e+00,2.061945634762825552e+00,2.085966515684441358e+00,2.109472298603334739e+00 +3.793103448275862710e-02,3.065298914635637348e-02,4.421026275384924015e-02,6.014133233196848616e-02,7.838448436316584889e-02,9.887002491397332837e-02,1.215209263693831920e-01,1.462535242137422142e-01,1.729782532854195198e-01,2.016004114541857239e-01,2.320209389141192347e-01,2.641372028408595085e-01,2.978437764691067025e-01,3.330332031357146616e-01,3.695967366619497541e-01,4.074250538390793430e-01,4.464089086481541901e-01,4.864397949034101609e-01,5.274104923725864147e-01,5.692156155290415409e-01,6.117520870086609053e-01,6.549195642092202618e-01,6.986208089590806303e-01,7.427620068220830429e-01,7.872530336820969810e-01,8.320076746620027608e-01,8.769437947932670063e-01,9.219834337917530709e-01,9.670529612571289180e-01,1.012083080477603314e+00,1.057008786587454008e+00,1.101769440269072087e+00,1.146308668796690133e+00,1.190574310480118969e+00,1.234518265630918377e+00,1.278096509796319502e+00,1.321268809342353245e+00,1.363998713236717952e+00,1.406253321788986543e+00,1.448003158410460678e+00,1.489222010769666316e+00,1.529886754655200409e+00,1.569977189784395266e+00,1.609475869801576975e+00,1.648367930874332199e+00,1.686640966380458462e+00,1.724284762892914102e+00,1.761291273457142204e+00,1.797654395829251905e+00,1.833369772966573885e+00,1.868434795517203595e+00,1.902848332255609787e+00,1.936610652516192577e+00,1.969723307336870066e+00,2.002189017231621460e+00,2.034011526516346535e+00,2.065195543317786431e+00,2.095746637382327915e+00,2.125671109402131886e+00,2.154975938041465255e+00,2.183668712241381371e+00,2.211757533190067182e+00,2.239250941363009506e+00,2.266157895210382467e+00,2.292487671710804698e+00,2.318249779207320227e+00 +4.137931034482759257e-02,3.344257437981003334e-02,4.823356855245360120e-02,6.561432660769005165e-02,8.551749646937949201e-02,1.078670165464620245e-01,1.325788251166664100e-01,1.595616133852808816e-01,1.887176361068460817e-01,2.199435404182024656e-01,2.531312166433344335e-01,2.881686537121734837e-01,3.249407901615167238e-01,3.633303363949719755e-01,4.032186053856666175e-01,4.444862569327752699e-01,4.870140480803862859e-01,5.306835113621487521e-01,5.753775891021359890e-01,6.209812115581092584e-01,6.673818195733428604e-01,7.144698274932905768e-01,7.621390289448073396e-01,8.102869452161775010e-01,8.588151253381491879e-01,9.076293440894176445e-01,9.566398674037183136e-01,1.005761498747696159e+00,1.054913772797520188e+00,1.104020916970302801e+00,1.153011851529717635e+00,1.201820354916637967e+00,1.250384718955825258e+00,1.298647922602860216e+00,1.346557419842814962e+00,1.394065019028307484e+00,1.441126772551881485e+00,1.487702898432217147e+00,1.533757172606940333e+00,1.579257644559772134e+00,1.624175596533216970e+00,1.668485768672328451e+00,1.712166107949532057e+00,1.755197587107884205e+00,1.797564002918417225e+00,1.839251819868259696e+00,1.880249986973451692e+00,1.920549743334166282e+00,1.960144481280208240e+00,1.999029566679238146e+00,2.037202193580017084e+00,2.074661223504125296e+00,2.111407058970131700e+00,2.147441485683037055e+00,2.182767590026211124e+00,2.217389571088623335e+00,2.251312686869626933e+00,2.284543115979971617e+00,2.317087875594591839e+00,2.348954699380519706e+00,2.380152001949923157e+00,2.410688720041872735e+00,2.440574334723093042e+00,2.469818745605805610e+00,2.498432127142467873e+00,2.526425092065859968e+00 +4.482758620689655804e-02,3.623292990004092079e-02,5.225796902097492452e-02,7.108878297352222431e-02,9.265237544731463881e-02,1.168663097244899557e-01,1.436394761135829090e-01,1.728729169315340042e-01,2.044606964803979132e-01,2.382907987314676623e-01,2.742460530134941954e-01,3.122050578028984780e-01,3.520430990294834972e-01,3.936330525362101707e-01,4.368462569364752190e-01,4.815533494939151504e-01,5.276250577696131039e-01,5.749329412173547205e-01,6.233500761315061700e-01,6.727516828690605077e-01,7.230156894984094418e-01,7.740232371820272572e-01,8.256591179780684575e-01,8.778121536624973187e-01,9.303755040968966217e-01,9.832469688550129483e-01,1.036329103303742505e+00,1.089529493907013036e+00,1.142760729801678643e+00,1.195940530602184637e+00,1.248991852576317507e+00,1.301842604312549279e+00,1.354425892048364943e+00,1.406679770587358158e+00,1.458547185840945115e+00,1.509975772870957300e+00,1.560917834857758812e+00,1.611330072296975002e+00,1.661173452831953723e+00,1.710413017194786667e+00,1.759017692638073616e+00,1.806960086782900321e+00,1.854216296192976454e+00,1.900765710774931172e+00,1.946590791051030722e+00,1.991676921756881047e+00,2.036012160728444265e+00,2.079587095459757951e+00,2.122394647952983160e+00,2.164429866833793792e+00,2.205689825324320452e+00,2.246173400453516322e+00,2.285881143193447596e+00,2.324815118587258755e+00,2.362978795339686577e+00,2.400376866039354073e+00,2.437015176964849594e+00,2.472900540324326268e+00,2.508040723678163442e+00,2.542444270142378393e+00,2.576120424238577566e+00,2.609079053701492512e+00,2.641330531544758387e+00,2.672885731138411991e+00,2.703755892944935013e+00,2.733952602325029790e+00 +4.827586206896552351e-02,3.902412019762919321e-02,5.628355483854059066e-02,7.656482461438886278e-02,9.978927756140504313e-02,1.258680938351936507e-01,1.547031097297154600e-01,1.861877055244958168e-01,2.202077419782484946e-01,2.566425317198666178e-01,2.953658295530735001e-01,3.362468289068193394e-01,3.791511511370594945e-01,4.239418144337631089e-01,4.704801734165850458e-01,5.186268179550030943e-01,5.682424259752983930e-01,6.191885586880653269e-01,6.713283991386680416e-01,7.245274288691403441e-01,7.786540370202259531e-01,8.335800491411352597e-01,8.891812239079485147e-01,9.453376380034275162e-01,1.001934068480456519e+00,1.058860207981247026e+00,1.116010933313088538e+00,1.173286520509666309e+00,1.230592630309556235e+00,1.287840449756161076e+00,1.344946747227618866e+00,1.401833785825654433e+00,1.458429302743893707e+00,1.514666400451101902e+00,1.570483478962404478e+00,1.625824032031507160e+00,1.680636537654824902e+00,1.734874266411464250e+00,1.788495092903810813e+00,1.841461297282144693e+00,1.893739364327207797e+00,1.945299763625002898e+00,1.996116743720814046e+00,2.046168111839953063e+00,2.095435021244868246e+00,2.143901759221268577e+00,2.191555553439209714e+00,2.238386304537367089e+00,2.284386533406864039e+00,2.329550956257019134e+00,2.373876598533406934e+00,2.417362367502560172e+00,2.460008981932195748e+00,2.501818833177333001e+00,2.542795798482364145e+00,2.582945115190375507e+00,2.622273224384778612e+00,2.660787681604212640e+00,2.698496993350631978e+00,2.735410533056229276e+00,2.771538446554699497e+00,2.806891523277873723e+00,2.841481141589673243e+00,2.875319178587611990e+00,2.908417875887237880e+00,2.940789923709909104e+00 +5.172413793103448898e-02,4.181620986730810730e-02,6.031041869646983772e-02,8.204257355103909688e-02,1.069283591750003898e-01,1.348725631071082121e-01,1.657699565123653684e-01,1.995062465846432764e-01,2.359590804812593534e-01,2.749990848197497728e-01,3.164909269010443560e-01,3.602943810690268922e-01,4.062653872139449507e-01,4.542570888700865894e-01,5.041208370060513699e-01,5.557071531705001233e-01,6.088666407815893633e-01,6.634508378466513756e-01,7.193130065425409336e-01,7.763088577233456800e-01,8.342971984589157008e-01,8.931405175726701007e-01,9.527054882508195766e-01,1.012863429475831634e+00,1.073490631123301009e+00,1.134468699536188563e+00,1.195684789519399160e+00,1.257031767543582479e+00,1.318408316241182821e+00,1.379719100590189651e+00,1.440874672497573394e+00,1.501791537437604296e+00,1.562392059131364253e+00,1.622604346198767811e+00,1.682362281419009564e+00,1.741605097662935364e+00,1.800277461896354847e+00,1.858329198518687164e+00,1.915715068793000686e+00,1.972394584959386910e+00,2.028331784853258490e+00,2.083494991720480805e+00,2.137856631272021080e+00,2.191392893396145070e+00,2.244083665885761025e+00,2.295912167279622107e+00,2.346864758841777476e+00,2.396930817608565523e+00,2.446102244164753525e+00,2.494373738501954652e+00,2.541742125034816890e+00,2.588206453322083433e+00,2.633767564881513312e+00,2.678428306501460465e+00,2.722193002578882748e+00,2.765067401460337582e+00,2.807058663534763188e+00,2.848175062749558339e+00,2.888425927211439426e+00,2.927821514587883645e+00,2.966372886128023190e+00,3.004091826341750426e+00,3.040990727231985602e+00,3.077082508337065203e+00,3.112380519784080146e+00,3.146898501805735826e+00 +5.517241379310345445e-02,4.460926356648547281e-02,6.433865212801774536e-02,8.752215211455938171e-02,1.140697771676011663e-01,1.438799104032987553e-01,1.768402471901724671e-01,2.128288102153552963e-01,2.517150200111487601e-01,2.933608039272333490e-01,3.376217269825973477e-01,3.843481285966660610e-01,4.333862505397599318e-01,4.845793419095930643e-01,5.377687299390634390e-01,5.927948446992197251e-01,6.494981899621171673e-01,7.077202521381115163e-01,7.673043418519837067e-01,8.280963638813564343e-01,8.899455133483263891e-01,9.527048951552506972e-01,1.016232068342107331e+00,1.080389504199442019e+00,1.145045030346199422e+00,1.210072103512854991e+00,1.275350027756803062e+00,1.340764323375899458e+00,1.406206635636721547e+00,1.471574973609563131e+00,1.536773703509484168e+00,1.601713493751752981e+00,1.666311306994220809e+00,1.730490267448748565e+00,1.794179565157608458e+00,1.857314284956596895e+00,1.919835232314860862e+00,1.981688735234887755e+00,2.042826444046351497e+00,2.103205087456083699e+00,2.162786251586496622e+00,2.221536107186357079e+00,2.279425282287423471e+00,2.336428381420463385e+00,2.392524003111300868e+00,2.447694311842913972e+00,2.501924880072835755e+00,2.555204437234732229e+00,2.607524630643312857e+00,2.658879818839313014e+00,2.709266842313327484e+00,2.758684824017684889e+00,2.807135018227060907e+00,2.854620540191390443e+00,2.901146222010424491e+00,2.946718434496462091e+00,2.991345119197042823e+00,3.035035282991838557e+00,3.077799127046624061e+00,3.119647856962703525e+00,3.160593474538510694e+00,3.200648824871303422e+00,3.239827354014160665e+00,3.278143075345849589e+00,3.315610471033886064e+00,3.352244470405239429e+00 +5.862068965517241992e-02,4.740334614029544091e-02,6.836834710630591838e-02,9.300368379660337026e-02,1.212136880986700721e-01,1.528903285816086144e-01,1.879142128211672980e-01,2.261556661633569165e-01,2.674758690733641808e-01,3.117280351220981238e-01,3.587586115847203327e-01,4.084084860772845271e-01,4.605141837654028736e-01,5.149090395541472409e-01,5.714243344978874317e-01,6.298903826107736803e-01,6.901375610380643399e-01,7.519972745987280049e-01,8.153028490593379196e-01,8.798903488659723937e-01,9.455993160594666769e-01,1.012273451398440827e+00,1.079761093438263542e+00,1.147915914594933140e+00,1.216597134476016251e+00,1.285670037655299636e+00,1.355006127088617340e+00,1.424483371937205423e+00,1.493986401267642927e+00,1.563406548705448706e+00,1.632641901068539347e+00,1.701597262801578747e+00,1.770184197272478555e+00,1.838320683796035970e+00,1.905931341297608883e+00,1.972946973318967290e+00,2.039304520031967716e+00,2.104946815993132603e+00,2.169822371113330650e+00,2.233885137455236425e+00,2.297094222590281287e+00,2.359413713694917814e+00,2.420812336030226497e+00,2.481263218976580642e+00,2.540743667637219261e+00,2.599234825377430447e+00,2.656721493267366618e+00,2.713191924300678792e+00,2.768637162560724008e+00,2.823051649910570671e+00,2.876432170424390922e+00,2.928778016240131787e+00,2.980090738743009560e+00,3.030373893901308957e+00,3.079632930562806070e+00,3.127874935418534896e+00,3.175108435059857737e+00,3.221343429374178946e+00,3.266590992175783636e+00,3.310863294276720215e+00,3.354173422302897833e+00,3.396535261296603991e+00,3.437963363881887169e+00,3.478472947141131311e+00,3.518079592196664773e+00,3.556799346710040943e+00 +6.206896551724138539e-02,5.019852214417917097e-02,7.239959580421104213e-02,9.848729146542242741e-02,1.283602490797202955e-01,1.619040110963025358e-01,1.989920847266134774e-01,2.394870845013529759e-01,2.832419434887099019e-01,3.301011250273190312e-01,3.799019629477475291e-01,4.324758686962840715e-01,4.876496302926167647e-01,5.452466489264043981e-01,6.050881370802735360e-01,6.669942573861172841e-01,7.307852412558174526e-01,7.962823777119207858e-01,8.633089722934210730e-01,9.316912108801034265e-01,1.001258943574971694e+00,1.071846379102849856e+00,1.143292711733636002e+00,1.215442610763095344e+00,1.288146797433750157e+00,1.361262188457704525e+00,1.434652448370981048e+00,1.508188059207399956e+00,1.581746450488274780e+00,1.655212306493987429e+00,1.728477354946897471e+00,1.801440529998480367e+00,1.874007822854502736e+00,1.946092242416206153e+00,2.017613641700775506e+00,2.088498569944145178e+00,2.158680073363201668e+00,2.228097450893945730e+00,2.296696107922395758e+00,2.364427179967277581e+00,2.431247336245594415e+00,2.497118519990054519e+00,2.562007675090498537e+00,2.625886411835381740e+00,2.688730712659674005e+00,2.750520827251916156e+00,2.811240782083258782e+00,2.870878243035755339e+00,2.929424190787153659e+00,2.986872708299374679e+00,3.043220733827671776e+00,3.098467775974006688e+00,3.152615773439221059e+00,3.205668786140203785e+00,3.257632880951428778e+00,3.308515938247123866e+00,3.358327170314350241e+00,3.407077661268566260e+00,3.454779298043730851e+00,3.501445425813010548e+00,3.547090183433827537e+00,3.591728671077862867e+00,3.635376336102095873e+00,3.678049910385863708e+00,3.719766225863331943e+00,3.760542279644841113e+00 +6.551724137931035086e-02,5.299485680817191818e-02,7.643249024684765913e-02,1.039730982954659294e-01,1.355096173911600754e-01,1.709211515799568815e-01,2.100740945237636048e-01,2.528233356313063229e-01,2.990135313042660559e-01,3.484804202446799559e-01,4.010521636748181074e-01,4.565506908302506273e-01,5.147930339030728497e-01,5.755926342576276333e-01,6.387606100524022557e-01,7.041069577194500884e-01,7.714417175352417111e-01,8.405760334090390806e-01,9.113231541526317647e-01,9.834993470326119924e-01,1.056924724031962359e+00,1.131423980621599545e+00,1.206827041731558969e+00,1.282969653522081810e+00,1.359693794736912542e+00,1.436848179691436522e+00,1.514288404437424296e+00,1.591877461822532869e+00,1.669485612129677721e+00,1.746990711578705335e+00,1.824278153563717808e+00,1.901240900365032571e+00,1.977779421170730023e+00,2.053801589386914372e+00,2.129222549560854105e+00,2.203964538909924720e+00,2.277956688098659477e+00,2.351134790941944441e+00,2.423441065097933222e+00,2.494823861813729504e+00,2.565237435186822346e+00,2.634641611567724251e+00,2.703001506355615202e+00,2.770287255982426533e+00,2.836473681110143641e+00,2.901540036911027798e+00,2.965469670248219725e+00,3.028249777295120460e+00,3.089871086679392587e+00,3.150327650974454663e+00,3.209616516111709394e+00,3.267737464680958936e+00,3.324692951942473496e+00,3.380487609122329928e+00,3.435128129411603837e+00,3.488623176878884902e+00,3.540983056935675055e+00,3.592219592783699511e+00,3.642345937881556139e+00,3.691376440794315705e+00,3.739326246724814062e+00,3.786212016883857778e+00,3.832050336012058356e+00,3.876858993154807198e+00,3.920656153006671030e+00,3.963460367732510203e+00 +6.896551724137932327e-02,5.579241508394129634e-02,8.046712303671060829e-02,1.094612277415831225e-01,1.426619504111088788e-01,1.799419439398156073e-01,2.211604741488312764e-01,2.661646903026624322e-01,3.147909629730955561e-01,3.668662681525069469e-01,4.222096015701555238e-01,4.806333688683137040e-01,5.419448384514029549e-01,6.059474645156471828e-01,6.724422415961182065e-01,7.412289733268889735e-01,8.121074765417395369e-01,8.848787131243494031e-01,9.593458366276966798e-01,1.035315154978081464e+00,1.112596991610497188e+00,1.191006483804658345e+00,1.270364249668786805e+00,1.350496975244354081e+00,1.431237996243468480e+00,1.512427611222952883e+00,1.593913417294169577e+00,1.675550768154425274e+00,1.757202715440758567e+00,1.838740261985173818e+00,1.920042389760823864e+00,2.000996059610688160e+00,2.081496157352600740e+00,2.161445397203588303e+00,2.240754182195114463e+00,2.319340406026756174e+00,2.397129277660107860e+00,2.474053033382265454e+00,2.550050753017901961e+00,2.625068007483834176e+00,2.699056611915183090e+00,2.771974296881333899e+00,2.843784435270034550e+00,2.914455684483881814e+00,2.983961721656850141e+00,3.052280889348087278e+00,3.119395908450094623e+00,3.185293567705653750e+00,3.249964435201725177e+00,3.313402566647376091e+00,3.375605146601504014e+00,3.436572567752932184e+00,3.496307536505047331e+00,3.554815431685843574e+00,3.612103791464722047e+00,3.668181996581001858e+00,3.723061759425942085e+00,3.776755546609062542e+00,3.829277813685993515e+00,3.880644044994435493e+00,3.930870859734910905e+00,3.979975766818150795e+00,4.027977081037927398e+00,4.074893778553775547e+00,4.120745375193815008e+00,4.165551839080553265e+00 +7.241379310344828180e-02,5.859126212694908825e-02,8.450358663614629395e-02,1.149518033219851521e-01,1.498174059712969741e-01,1.889665823841401027e-01,2.322514588591424178e-01,2.795114196425440012e-01,3.305745414541574334e-01,3.852590163122672218e-01,4.433746450075370382e-01,5.047243181069491769e-01,5.691054881402303200e-01,6.363116058530049468e-01,7.061335173092118112e-01,7.783607948897847129e-01,8.527830044872445336e-01,9.291908874792996764e-01,1.007377462922059319e+00,1.087139023935203008e+00,1.168276079168994119e+00,1.250594131284450627e+00,1.333904440879372100e+00,1.418024638167840967e+00,1.502779228087435248e+00,1.588000108817890998e+00,1.673526885233656003e+00,1.759207106083024552e+00,1.844896587520565845e+00,1.930459438291010299e+00,2.015768170601130116e+00,2.100703689503378158e+00,2.185155253271313214e+00,2.269020388956838108e+00,2.352204714050547985e+00,2.434621770289477460e+00,2.516192812654194366e+00,2.596846551723092755e+00,2.676518901994311417e+00,2.755152657465339328e+00,2.832697228054030791e+00,2.909108294886769919e+00,2.984347519283021111e+00,3.058382090235289841e+00,3.131184630401512514e+00,3.202732638418902766e+00,3.273008258909594126e+00,3.341997973546212641e+00,3.409692240212664149e+00,3.476085215012818086e+00,3.541174430045358701e+00,3.604960647366135973e+00,3.667447282667987363e+00,3.728640457920224804e+00,3.788548601718892961e+00,3.847182229538024245e+00,3.904553682313455454e+00,3.960677086102369238e+00,4.015567929451162144e+00,4.069243085494701262e+00,4.121720521942921600e+00,4.173018995554738986e+00,4.223158290530960812e+00,4.272158894876838531e+00,4.320041728259034208e+00,4.366828240124580596e+00 +7.586206896551725420e-02,6.139146319735128837e-02,8.854197246392088438e-02,1.204449489430863829e-01,1.569761420347335068e-01,1.979952615498705160e-01,2.433472723120458092e-01,2.928637951253577620e-01,3.463645769973051070e-01,4.036590127635659719e-01,4.645476927831840852e-01,5.288239558773353277e-01,5.962754274944125354e-01,6.666855253276320337e-01,7.398349084922994923e-01,8.155029113437048949e-01,8.934687865010102481e-01,9.735130266523638332e-01,1.055418466000507927e+00,1.138971352350577115e+00,1.223962301512190320e+00,1.310187160388311289e+00,1.397447757787372291e+00,1.485552579088169844e+00,1.574317333677405228e+00,1.663565361649343988e+00,1.753128182798346923e+00,1.842845600037501974e+00,1.932566059884714083e+00,2.022146731065717518e+00,2.111453594859829419e+00,2.200361467041400232e+00,2.288753945108282561e+00,2.376523300154742113e+00,2.463570374490369197e+00,2.549804322006915758e+00,2.635142423930689759e+00,2.719509869335910768e+00,2.802839419074761196e+00,2.885071127038908667e+00,2.966152080130080027e+00,3.046035745095776015e+00,3.124682394283415654e+00,3.202057530412553810e+00,3.278133039655534819e+00,3.352885526055196852e+00,3.426296689742859947e+00,3.498352763175053060e+00,3.569044225850810381e+00,3.638365415225853550e+00,3.706314336766030504e+00,3.772892236158121637e+00,3.838103362552898190e+00,3.901954696870361783e+00,3.964455663560891630e+00,4.025617903162959976e+00,4.085455041170844126e+00,4.143982410427767604e+00,4.201216929855535298e+00,4.257176843862815474e+00,4.311881548040276790e+00,4.365351489816821307e+00,4.417607902033159561e+00,4.468672740249836295e+00,4.518568546824926813e+00,4.567318277944142579e+00 +7.931034482758621273e-02,6.419308376295290719e-02,9.258237728524644494e-02,1.259407886263725351e-01,1.641383168424180583e-01,2.070281758521694548e-01,2.544481564618076286e-01,3.062220887105275291e-01,3.621613803227510253e-01,4.220666059920788471e-01,4.857291240363717510e-01,5.529326978417380412e-01,6.234551013989478863e-01,6.970696902913251503e-01,7.735469221489790215e-01,8.526558120126574991e-01,9.341653120660848852e-01,1.017845600096473735e+00,1.103469289821560562e+00,1.190812530384451451e+00,1.279655998112365412e+00,1.369785812084948429e+00,1.460994322952992697e+00,1.553080788917740707e+00,1.645852104506056124e+00,1.739122968637971889e+00,1.832716725314689210e+00,1.926465388599656992e+00,2.020209969607190015e+00,2.113800628809028748e+00,2.207096789599171771e+00,2.299967186753459458e+00,2.392289510834653132e+00,2.483950960507310235e+00,2.574847470671093763e+00,2.664883818653021930e+00,2.753973342862293450e+00,2.842037676035505722e+00,2.929006459936682738e+00,3.014817023545240282e+00,3.099414061075716820e+00,3.182749262367758458e+00,3.264780990438620023e+00,3.345473879081143131e+00,3.424798519267797658e+00,3.502730960766629043e+00,3.579252551526212134e+00,3.654349398864693566e+00,3.728012187578097159e+00,3.800235386923591641e+00,3.871017804462721479e+00,3.940361205879040263e+00,4.008270855032993296e+00,4.074754816722373718e+00,4.139823501460847766e+00,4.203489990081846095e+00,4.265769216571023037e+00,4.326678005351918266e+00,4.386234763020222083e+00,4.444459293275341949e+00,4.501372796351766681e+00,4.556997166958546508e+00,4.611355398931469729e+00,4.664471208429798565e+00,4.716368754124378171e+00,4.767072701765723508e+00 +8.275862068965518514e-02,6.699618927759301568e-02,9.662489030734276729e-02,1.314394466373084713e-01,1.713040889674742884e-01,2.160655209224078555e-01,2.655543416994619044e-01,3.195865727063915140e-01,3.779652626110794889e-01,4.404821449391138066e-01,5.069193233786608577e-01,5.770509614458142478e-01,6.506449550051972563e-01,7.274645684697423897e-01,8.072700179485302607e-01,8.898199858982918098e-01,9.748730599089826532e-01,1.062189076203386984e+00,1.151530378842164692e+00,1.242662958060597012e+00,1.335357488490423794e+00,1.429390323519431405e+00,1.524544265324258907e+00,1.620609326454921506e+00,1.717383346285466406e+00,1.814672551884252139e+00,1.912291910453012722e+00,2.010065600538874619e+00,2.107827148945849771e+00,2.205419662751111787e+00,2.302695924584109211e+00,2.399518409966371557e+00,2.495759265822228734e+00,2.591300209709626490e+00,2.686032388554895789e+00,2.779856180582725322e+00,2.872680968012277347e+00,2.964424878176854961e+00,3.055014462312912737e+00,3.144384321634609236e+00,3.232476883742960716e+00,3.319242059550812307e+00,3.404636541573750286e+00,3.488623911167101799e+00,3.571173726554199401e+00,3.652261688441207355e+00,3.731868884896692329e+00,3.809981388096626009e+00,3.886590120040419816e+00,3.961690265750963391e+00,4.035281105340534857e+00,4.107365517045233894e+00,4.177949719958612640e+00,4.247042963596585174e+00,4.314657304940495486e+00,4.380806891159269689e+00,4.445508483388916687e+00,4.508780550163876022e+00,4.570643216452389801e+00,4.631118159031990977e+00,4.690228205850295318e+00,4.747997241533968626e+00,4.804450331700437005e+00,4.859612857965364796e+00,4.913511061511536049e+00,4.966171642457845259e+00 +8.620689655172414367e-02,6.980084520929698277e-02,1.006696059274691940e-01,1.369410474980287395e-01,1.784736172557089551e-01,2.251074921044226851e-01,2.766660618086206336e-01,3.329575199093759430e-01,3.937765355160383063e-01,4.589059790313280152e-01,5.281186759112833640e-01,6.011791642427363191e-01,6.778454338957038416e-01,7.578706274926559905e-01,8.410046856424828743e-01,9.269959225619839316e-01,1.015592519229344237e+00,1.106543923099178039e+00,1.199602152314392933e+00,1.294522992984080245e+00,1.391067090982761600e+00,1.489000924971993989e+00,1.588097707815571580e+00,1.688138083227576747e+00,1.788910927594463462e+00,1.890213713790503069e+00,1.991853133083307581e+00,2.093645355094267302e+00,2.195416438837180184e+00,2.297002324309960208e+00,2.398249124316950809e+00,2.499013084350756753e+00,2.599160571010228793e+00,2.698567981730004117e+00,2.797121606246808057e+00,2.894717429358426131e+00,2.991260893078818928e+00,3.086666622464830034e+00,3.180858115981428647e+00,3.273767460635264914e+00,3.365334703420699736e+00,3.455508012472722879e+00,3.544242742364160481e+00,3.631501312471608678e+00,3.717252729386169019e+00,3.801472208308016576e+00,3.884140730218863524e+00,3.965244653314258905e+00,4.044775335576026087e+00,4.122728856184358470e+00,4.199104960388149621e+00,4.273908150802308015e+00,4.347145758748781397e+00,4.418828550288233181e+00,4.488970084332740029e+00,4.557586509438947608e+00,4.624696245694519092e+00,4.690319693049927352e+00,4.754479062698080405e+00,4.817198055586997540e+00,4.878501678642788164e+00,4.938416051500988502e+00,4.996968237575035943e+00,5.054186011807637158e+00,5.110097730512826786e+00,5.164732309327486171e+00 +8.965517241379311608e-02,7.260711803094022088e-02,1.047166176633348295e-01,1.424457159904891079e-01,1.856470608737045003e-01,2.341542853214767794e-01,2.877835510317367507e-01,3.463352035754087566e-01,4.095955111856725006e-01,4.773384582097854323e-01,5.493275668280633850e-01,6.253177242289282844e-01,7.050569837078644042e-01,7.882883357875934971e-01,8.747514090252852537e-01,9.641841109929532028e-01,1.056324166728427771e+00,1.150910608765214116e+00,1.247685059868280932e+00,1.346393052848954719e+00,1.446785126956803946e+00,1.548617829812517499e+00,1.651654751858483872e+00,1.755667125312776022e+00,1.860434639056280037e+00,1.965746106445676267e+00,2.071399771593789296e+00,2.177203835665667775e+00,2.282976684698086789e+00,2.388547147512161573e+00,2.493754580348717109e+00,2.598448958465317649e+00,2.702490839124809696e+00,2.805751281697514976e+00,2.908111720967793357e+00,3.009463748373442105e+00,3.109708893350074277e+00,3.208758338533818755e+00,3.306532591757068928e+00,3.402961076524053663e+00,3.497982116951078968e+00,3.591541839001097802e+00,3.683594403449325760e+00,3.774101313466479812e+00,3.863031054774026529e+00,3.950358817423782476e+00,4.036065516730755753e+00,4.120138037166003464e+00,4.202568448206847940e+00,4.283353676047116920e+00,4.362495100697392658e+00,4.439998206754825816e+00,4.515872093857718816e+00,4.590129366473576056e+00,4.662785659265960447e+00,4.733858864020721313e+00,4.803369999150550740e+00,4.871341488356809357e+00,4.937798145197760391e+00,5.002766100109501402e+00,5.066272962018644854e+00,5.128347152454617586e+00,5.189018931771431475e+00,5.248318373082893729e+00,5.306276642164924340e+00,5.362925446458797651e+00 +9.310344827586207461e-02,7.541507303495220693e-02,1.087660192104435569e-01,1.479535771119359078e-01,1.928245793162697008e-01,2.432060968590253613e-01,2.989070439739222040e-01,3.597198974359030466e-01,4.254225022872242246e-01,4.957799329468567384e-01,5.705463835940043360e-01,6.494670593107348955e-01,7.322800515246754571e-01,8.187181608302163127e-01,9.085106703500650527e-01,1.001385038616720680e+00,1.097068505574248176e+00,1.195289594661090415e+00,1.295779531421305197e+00,1.398273512373534144e+00,1.502511917440636946e+00,1.608241317349219157e+00,1.715215527223618031e+00,1.823196333938020830e+00,1.931954291899584453e+00,2.041269322536838793e+00,2.150931228199086664e+00,2.260740130593169805e+00,2.370506747340906717e+00,2.480052673135243690e+00,2.589210495681280033e+00,2.697823875549622219e+00,2.805747552601662420e+00,2.912847188398235421e+00,3.018999450870930801e+00,3.124091496102994192e+00,3.228020998359770299e+00,3.330695796551657928e+00,3.432033418684325987e+00,3.531961000772940729e+00,3.630414728396623492e+00,3.727339073432013539e+00,3.822687386382764618e+00,3.916420448366352947e+00,4.008506354164337537e+00,4.098920216578981979e+00,4.187643536967169844e+00,4.274663904809221648e+00,4.359974371054971876e+00,4.443573281708778744e+00,4.525463531648761695e+00,4.605652338061784867e+00,4.684151039790384274e+00,4.760974304846393501e+00,4.836140111194261237e+00,4.909669263931164096e+00,4.981585140373969267e+00,5.051913315155495354e+00,5.120681389912788539e+00,5.187918611943392655e+00,5.253655777033386265e+00,5.317924786274445204e+00,5.380758911613695794e+00,5.442191806090231232e+00,5.502258401545115696e+00,5.560993693481384170e+00 +9.655172413793104702e-02,7.822477653438571210e-02,1.128179043919717572e-01,1.534647562704666013e-01,2.000063324208264659e-01,2.522631234170822356e-01,3.100367748486159147e-01,3.731118758668593438e-01,4.412578219691641879e-01,5.142307542435128331e-01,5.917755108696953759e-01,6.736275901394772614e-01,7.595150836268502736e-01,8.491605679926111927e-01,9.422829529797536185e-01,1.038599196609492070e+00,1.137826000072284627e+00,1.239681355302209464e+00,1.343885999202919734e+00,1.450164755880512635e+00,1.558247751499147515e+00,1.667871561869966435e+00,1.778780144313530931e+00,1.890725750673734273e+00,2.003469693166460175e+00,2.116782988071395977e+00,2.230446902529917175e+00,2.344253397945351480e+00,2.458005481687962845e+00,2.571517463981713991e+00,2.684615131570882607e+00,2.797135746881638241e+00,2.908928241855178509e+00,3.019852969580646196e+00,3.129781663711850292e+00,3.238597244435998501e+00,3.346193550778748804e+00,3.452475064642486213e+00,3.557356649245226432e+00,3.660763007126710988e+00,3.762628490557651251e+00,3.862896528395523887e+00,3.961519275367965776e+00,4.058457094860627556e+00,4.153678141913719202e+00,4.247157876772849505e+00,4.338878579728887352e+00,4.428828897404367915e+00,4.517003401668423734e+00,4.603402086738037191e+00,4.688029991576774691e+00,4.770896717901376149e+00,4.852015929653312298e+00,4.931405634335559895e+00,5.009086143859353690e+00,5.085082493879579779e+00,5.159420686028624026e+00,5.232130251809054222e+00,5.303242558563319164e+00,5.372790958158733865e+00,5.440810416440949204e+00,5.507337094403332856e+00,5.572408758124763217e+00,5.636063753167266377e+00,5.698342429046271640e+00,5.759284145729980153e+00 +1.000000000000000056e-01,8.103629495295731899e-02,1.168723672599169816e-01,1.589793789917945954e-01,2.071924803781984570e-01,2.613255621072024248e-01,3.211729818981615692e-01,3.865114132922040091e-01,4.571017841730468101e-01,5.326912737021972655e-01,6.130153376765612450e-01,6.977997344860646933e-01,7.867625270020286443e-01,8.796160381388204996e-01,9.760687414625874858e-01,1.075827071162866799e+00,1.178597138614394746e+00,1.284086348541917166e+00,1.392004896353726151e+00,1.502067174036957553e+00,1.613992986794687168e+00,1.727508810285258267e+00,1.842348715296505679e+00,1.958255327275094215e+00,2.074980651004585397e+00,2.192286715116021689e+00,2.309946175237553856e+00,2.427742785656122670e+00,2.545471768862413331e+00,2.662940097851065335e+00,2.779966692358707636e+00,2.896382504547347470e+00,3.012030550563016273e+00,3.126765888188424825e+00,3.240455410306544159e+00,3.352977800258047925e+00,3.464223163402511574e+00,3.574092822018279936e+00,3.682498901375595324e+00,3.789364112446011568e+00,3.894621086221398798e+00,3.998212202530226911e+00,4.100088995936571834e+00,4.200211740721381481e+00,4.298548886015021608e+00,4.395076672210189273e+00,4.489778581332876328e+00,4.582644863602338248e+00,4.673672071133065486e+00,4.762862600766573529e+00,4.850224075796199408e+00,4.935769260119830193e+00,5.019515262174220283e+00,5.101483345386371937e+00,5.181698410002262278e+00,5.260189039320525950e+00,5.336986364544324957e+00,5.412124519697782077e+00,5.485640186179216116e+00,5.557572022505996578e+00,5.627960748587394590e+00,5.696849059683829708e+00,5.764280611975756585e+00,5.830301491136387071e+00,5.894958471804483402e+00,5.958299897293082736e+00 +1.000000000000000056e-01,8.103629495295731899e-02,1.168723672599169816e-01,1.589793789917945954e-01,2.071924803781984570e-01,2.613255621072024248e-01,3.211729818981615692e-01,3.865114132922040091e-01,4.571017841730468101e-01,5.326912737021972655e-01,6.130153376765612450e-01,6.977997344860646933e-01,7.867625270020286443e-01,8.796160381388204996e-01,9.760687414625874858e-01,1.075827071162866799e+00,1.178597138614394746e+00,1.284086348541917166e+00,1.392004896353726151e+00,1.502067174036957553e+00,1.613992986794687168e+00,1.727508810285258267e+00,1.842348715296505679e+00,1.958255327275094215e+00,2.074980651004585397e+00,2.192286715116021689e+00,2.309946175237553856e+00,2.427742785656122670e+00,2.545471768862413331e+00,2.662940097851065335e+00,2.779966692358707636e+00,2.896382504547347470e+00,3.012030550563016273e+00,3.126765888188424825e+00,3.240455410306544159e+00,3.352977800258047925e+00,3.464223163402511574e+00,3.574092822018279936e+00,3.682498901375595324e+00,3.789364112446011568e+00,3.894621086221398798e+00,3.998212202530226911e+00,4.100088995936571834e+00,4.200211740721381481e+00,4.298548886015021608e+00,4.395076672210189273e+00,4.489778581332876328e+00,4.582644863602338248e+00,4.673672071133065486e+00,4.762862600766573529e+00,4.850224075796199408e+00,4.935769260119830193e+00,5.019515262174220283e+00,5.101483345386371937e+00,5.181698410002262278e+00,5.260189039320525950e+00,5.336986364544324957e+00,5.412124519697782077e+00,5.485640186179216116e+00,5.557572022505996578e+00,5.627960748587394590e+00,5.696849059683829708e+00,5.764280611975756585e+00,5.830301491136387071e+00,5.894958471804483402e+00,5.958299897293082736e+00 +1.103448275862069089e-01,8.948240348319984327e-02,1.290521664112107281e-01,1.755451692968783284e-01,2.287789009034204291e-01,2.885473287774329432e-01,3.546228105494833027e-01,4.267581373100091668e-01,5.046886713992373430e-01,5.881345460639236800e-01,6.768028904308786009e-01,7.703900552208460262e-01,8.685838038398557837e-01,9.710654592376857241e-01,1.077511965710751918e+00,1.187597880041624032e+00,1.300997243662060487e+00,1.417385360041104603e+00,1.536440439865742746e+00,1.657845161500210773e+00,1.781288029501586268e+00,1.906464690856861877e+00,2.033079137739003173e+00,2.160844610963768009e+00,2.289484871676131128e+00,2.418734364723318375e+00,2.548339574173996258e+00,2.678059232303767967e+00,2.807664871797364015e+00,2.936941257591169308e+00,3.065686501767943550e+00,3.193712665240568516e+00,3.320845000729648611e+00,3.446922950140953290e+00,3.571799382242091259e+00,3.695340789445269003e+00,3.817426957637145790e+00,3.937950677886072892e+00,4.056817397602102027e+00,4.173945049977343835e+00,4.289263393628634624e+00,4.402713687714850721e+00,4.514248207621463393e+00,4.623829786489759286e+00,4.731431205377454319e+00,4.837034894938252449e+00,4.940632023439476050e+00,5.042222650476023027e+00,5.141814637638702834e+00,5.239423516052311491e+00,5.335071976778218428e+00,5.428789523090139291e+00,5.520612134600953347e+00,5.610581936959476934e+00,5.698747149515844157e+00,5.785161712744195661e+00,5.869885552735770951e+00,5.952984393434057608e+00,6.034530347931443828e+00,6.114601741688054481e+00,6.193284457553105860e+00,6.270672361144437268e+00,6.346868850239798299e+00,6.421988625276821239e+00,6.496160298087838569e+00,6.569529887361907683e+00 +1.206896551724137984e-01,9.794724740631007009e-02,1.412585748502478422e-01,1.921465037038949109e-01,2.504106790748896749e-01,3.158249445601705729e-01,3.881394403007102922e-01,4.670828410674163766e-01,5.523646941019004775e-01,6.436778184605258524e-01,7.407007291292373452e-01,8.431000561149372130e-01,9.505329244248874598e-01,1.062649280957489006e+00,1.179094135523449660e+00,1.299509696916570700e+00,1.423537480500655983e+00,1.550820103824656737e+00,1.681003244928165996e+00,1.813737169388217829e+00,1.948678447478347175e+00,2.085491247863059616e+00,2.223848704558330169e+00,2.363434082221688826e+00,2.503941846131117810e+00,2.645078568239732419e+00,2.786563821955366560e+00,2.928130826837008094e+00,3.069527089909639628e+00,3.210514908782539756e+00,3.350871714297334325e+00,3.490390466801293279e+00,3.628879799548468288e+00,3.766164090721257462e+00,3.902083552649240783e+00,4.036494308420801147e+00,4.169267818923547253e+00,4.300291353721586773e+00,4.429467216336935742e+00,4.556712624481506602e+00,4.681959553293282283e+00,4.805154127972865119e+00,4.926256414055116828e+00,5.045240033463826101e+00,5.162091793735545942e+00,5.276811475968515630e+00,5.389411572946476880e+00,5.499917072799216378e+00,5.608365601830608504e+00,5.714807472022921608e+00,5.819306130663228771e+00,5.921938859262279031e+00,6.022797888334522121e+00,6.121991880107300332e+00,6.219649101629454613e+00,6.315919683925049988e+00,6.410982367935253556e+00,6.505051260770692068e+00,6.598387565268424737e+00,6.691317616633327248e+00,6.784261463370903300e+00,6.877781065809537075e+00,6.972667040012627382e+00,7.070109117009304001e+00,7.172076643280405506e+00,7.282333804113313214e+00 +1.310344827586207017e-01,1.064326454426727381e-01,1.534941738051206206e-01,2.087868269269653188e-01,2.720922058449349867e-01,3.431638093351511709e-01,4.217293205346455687e-01,5.074930408557857264e-01,6.001384240477057874e-01,6.993306892779198591e-01,8.047194105072520420e-01,9.159411564197814659e-01,1.032622038548129950e+00,1.154380216639914636e+00,1.280828310499335876e+00,1.411575712525073190e+00,1.546230770781067854e+00,1.684402981949117972e+00,1.825704658217654819e+00,1.969753150352814286e+00,2.116172277184171779e+00,2.264593982283321427e+00,2.414659819646761907e+00,2.566022292843129993e+00,2.718346012447023341e+00,2.871308954501512023e+00,3.024603287945077490e+00,3.177936397433638760e+00,3.331031634453695212e+00,3.483628920106295102e+00,3.635485500601971509e+00,3.786376330848792993e+00,3.936094448576764826e+00,4.084451362537949493e+00,4.231277259983565742e+00,4.376421184910125994e+00,4.519751144448954427e+00,4.661154181696129051e+00,4.800536422021129290e+00,4.937823170542412043e+00,5.072958922903356260e+00,5.205907518678779766e+00,5.336652603084683477e+00,5.465197690566757416e+00,5.591567275628983147e+00,5.715807723948739039e+00,5.837989062478389890e+00,5.958207382314228084e+00,6.076588425339492616e+00,6.193293221381992453e+00,6.308525575104845018e+00,6.422544718960931043e+00,6.535683712598607364e+00,6.648379690482240534e+00,6.761224710679154093e+00,6.875057103116652968e+00,6.991139628193764999e+00,7.111552609349258702e+00,7.240233182667819456e+00,7.386761632549911027e+00,7.600795332533737181e+00,nan,nan,nan,nan,nan +1.413793103448275912e-01,1.149404341654537420e-01,1.657615681725380929e-01,2.254696143822644272e-01,2.938279100528780607e-01,3.705693676931482439e-01,4.553989485396665593e-01,5.479963089233651496e-01,6.480185048330067143e-01,7.551028175696864464e-01,8.688695513552140426e-01,9.889248266808109422e-01,1.114863326021369616e+00,1.246270998891996662e+00,1.382727557351194569e+00,1.523809027314502851e+00,1.669090030898098709e+00,1.818146205437390472e+00,1.970555975347160649e+00,2.125902880565523123e+00,2.283777282139437759e+00,2.443778139872884392e+00,2.605514653534537484e+00,2.768607825628714103e+00,2.932691860143439744e+00,3.097415514688245608e+00,3.262443310200692004e+00,3.427456725457765252e+00,3.592155177936914967e+00,3.756257063691446074e+00,3.919500625630012447e+00,4.081644738688550156e+00,4.242469759985106670e+00,4.401778143630853180e+00,4.559395141663996398e+00,4.715169663630212504e+00,4.868974692167904905e+00,5.020708366793235733e+00,5.170294473770229438e+00,5.317685161386039638e+00,5.462859912683386554e+00,5.605829986011018562e+00,5.746640624547527665e+00,5.885375502695039174e+00,6.022162678649330303e+00,6.157184230571662198e+00,6.290690943023140136e+00,6.423023340443654305e+00,6.554648454985394501e+00,6.686221229746672101e+00,6.818696941026080260e+00,6.953556332759832870e+00,7.093318450666755481e+00,7.242971417994793271e+00,7.415766098442434284e+00,7.735707847415931759e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +1.517241379310345084e-01,1.234724664169143254e-01,1.780633887082282985e-01,2.421983750334180396e-01,3.156222618141845682e-01,3.980471130667787016e-01,4.891548896599149931e-01,5.886002783639316949e-01,6.960136259719377216e-01,8.110039279389081868e-01,9.331618293804485598e-01,1.062062604726373705e+00,1.197269100609752890e+00,1.338334424287553448e+00,1.484804953140448802e+00,1.636222746182779630e+00,1.792128097348302029e+00,1.952061987008054889e+00,2.115568266868210312e+00,2.282195906317906253e+00,2.451500993987302923e+00,2.623048704307099577e+00,2.796415155576424283e+00,2.971189175713822905e+00,3.146974013136560888e+00,3.323388925367361857e+00,3.500070784037460747e+00,3.676675535930846284e+00,3.852879675207530497e+00,4.028381676822999857e+00,4.202903412731867405e+00,4.376191497427918797e+00,4.548018822698075780e+00,4.718186051058125940e+00,4.886523383719422853e+00,5.052892131800447828e+00,5.217187558839966322e+00,5.379341683261181117e+00,5.539326581362583823e+00,5.697160387923681846e+00,5.852913592718779867e+00,6.006720633764864203e+00,6.158794973438651787e+00,6.309454642489125575e+00,6.459161932814255103e+00,6.608594078652386905e+00,6.758768033649030116e+00,6.911305948755011919e+00,7.069031655120149971e+00,7.237703824132757369e+00,7.433475287470198367e+00,7.944199370715065989e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +1.620689655172413979e-01,1.320306183813232670e-01,1.904022942872291568e-01,2.589766542933438775e-01,3.374797763605530410e-01,4.256025918186314150e-01,5.230037502382781645e-01,6.293126544210307927e-01,7.441325569092381853e-01,8.670438191398588401e-01,9.976069975305498216e-01,1.135366075644380857e+00,1.279851512281706016e+00,1.430583242594560600e+00,1.587073569968627362e+00,1.748829970537663980e+00,1.915357687166083789e+00,2.086162378407593110e+00,2.260752474114733346e+00,2.438641579278561178e+00,2.619350699628265833e+00,2.802410438273665427e+00,2.987363115143890635e+00,3.173764845838665583e+00,3.361187569954882992e+00,3.549221089009710006e+00,3.737475073283014204e+00,3.925581120815658132e+00,4.113194832312561111e+00,4.299997951292369613e+00,4.485700764370784910e+00,4.670044519701033181e+00,4.852804291526696900e+00,5.033792272568000215e+00,5.212861772557405793e+00,5.389912252531857462e+00,5.564896170395918773e+00,5.737827874022148222e+00,5.908797171710752139e+00,6.077989071868116433e+00,6.245714535188643168e+00,6.412461931961144224e+00,6.578986106693752056e+00,6.746478815188646116e+00,6.916925913997699737e+00,7.093994244674775906e+00,7.285861991162348339e+00,7.521098112381039869e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +1.724137931034482873e-01,1.406167868569883350e-01,2.027809741648499420e-01,2.758080369807986432e-01,3.594050171009666172e-01,4.532414075596868375e-01,5.569522157677544438e-01,6.701411860159787182e-01,7.923841501492167039e-01,9.232323521187382198e-01,1.062215871032946790e+00,1.208846899639104855e+00,1.362623036357686113e+00,1.523030324250109091e+00,1.689546507040653012e+00,1.861643706989024816e+00,2.038791477469753310e+00,2.220459293662014222e+00,2.406119328869976481e+00,2.595249026913714729e+00,2.787333442885087109e+00,2.981867878328284149e+00,3.178360255325794359e+00,3.376333575601083936e+00,3.575328479363558909e+00,3.774905784781663609e+00,3.974649222779933488e+00,4.174168434750040291e+00,4.373101743485884541e+00,4.571120009768285364e+00,4.767930334188519303e+00,4.963280794133574148e+00,5.156966133330784352e+00,5.348835015567277473e+00,5.538799482033663679e+00,5.726848961538771654e+00,5.913068962863706979e+00,6.097671583392822114e+00,6.281043565029613696e+00,6.463829509193850242e+00,6.647085426152023580e+00,6.832596215284548968e+00,7.023629258359847860e+00,7.227190216088754227e+00,7.464692108389439085e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +1.827586206896552046e-01,1.492328920736058773e-01,2.152021503515513801e-01,2.926961503354312266e-01,3.814025998786096938e-01,4.809692252975436566e-01,5.910070329337693273e-01,7.110937510292242303e-01,8.407773226242157838e-01,9.795794972230357223e-01,1.126999356612830239e+00,1.282516806671277099e+00,1.445595979942464471e+00,1.615688535965189576e+00,1.792236839292584705e+00,1.974677045269591424e+00,2.162442090754386204e+00,2.354964527885194947e+00,2.551679432423796356e+00,2.752027136444240352e+00,2.955456040394450312e+00,3.161425421701468341e+00,3.369408332811103968e+00,3.578894597475910100e+00,3.789393987994029267e+00,4.000439662404273733e+00,4.211591824689471686e+00,4.422442211952998470e+00,4.632618472273824395e+00,4.841790332298073096e+00,5.049676463769025681e+00,5.256053481864768173e+00,5.460767926847929665e+00,5.663752864893381478e+00,5.865052304353972623e+00,6.064858616442834638e+00,6.263574118272687841e+00,6.461919143556560385e+00,6.661139352892694099e+00,6.863452612355252391e+00,7.073193643552690979e+00,7.300715997068039087e+00,7.588969857782243977e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +1.931034482758620940e-01,1.578808798542281067e-01,2.276685799944167532e-01,3.096446671168953668e-01,4.034771964936908484e-01,5.087917769795985423e-01,6.251750492224791289e-01,7.521782657336837374e-01,8.893210888521959623e-01,1.036095284827387442e+00,1.191968436767080863e+00,1.356387601100550677e+00,1.528782843963780724e+00,1.708570768221494784e+00,1.895157645118997980e+00,2.087942918661771952e+00,2.286322002257933139e+00,2.489689721761663144e+00,2.697443138967572374e+00,2.908984585988206639e+00,3.123725091164229806e+00,3.341087346997700713e+00,3.560509327616883990e+00,3.781447974675634427e+00,4.003383449850526965e+00,4.225823567830545358e+00,4.448309334874244847e+00,4.670421503814920605e+00,4.891787902536358423e+00,5.112093948876288430e+00,5.331095482364672122e+00,5.548637014298548387e+00,5.764678100186954701e+00,5.979333751684981380e+00,6.192940515760993136e+00,6.406172458042748374e+00,6.620264304216731510e+00,6.837495526793378353e+00,7.062447366984279107e+00,7.306385391069510682e+00,7.619711062164029158e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.034482758620689835e-01,1.665627231873503811e-01,2.401830578455196874e-01,3.266573106556122097e-01,4.256335386091422701e-01,5.367148640980637930e-01,6.594631273277824501e-01,7.934027324792621849e-01,9.380245527756194690e-01,1.092789856350133260e+00,1.257134187292225702e+00,1.430471175288074326e+00,1.612196179300981802e+00,1.801689964682913425e+00,1.998322061552910034e+00,2.201454214767124995e+00,2.410443636213756236e+00,2.624646401808145679e+00,2.843420528677242043e+00,3.066129818212676827e+00,3.292147028460801206e+00,3.520857964871134449e+00,3.751665658978847073e+00,3.983995316368546646e+00,4.217299275942807846e+00,4.451064535688390222e+00,4.684819851497525001e+00,4.918146234416655105e+00,5.150690048770168339e+00,5.382180977664502208e+00,5.612457623370621818e+00,5.841506159906974638e+00,6.069522224748519434e+00,6.297017588008582578e+00,6.525020374477580987e+00,6.755497910016027063e+00,6.992407238097132272e+00,7.245102370671139269e+00,7.548138726371831808e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.137931034482759007e-01,1.752804240582098161e-01,2.527484188490548567e-01,3.437378489094977119e-01,4.478764217235827183e-01,5.647443622248079498e-01,6.938782954973587991e-01,8.347752800691466968e-01,9.868969152900104458e-01,1.149673440565517346e+00,1.322507777353207903e+00,1.504779470063607905e+00,1.695848522170624317e+00,1.895059097246067248e+00,2.101743135009100261e+00,2.315223862156789103e+00,2.534819287876961980e+00,2.759845778482313605e+00,2.989621658627846568e+00,3.223471072674160887e+00,3.460728165422717328e+00,3.700741742607828400e+00,3.942880616334148325e+00,4.186539794580988350e+00,4.431148279336444951e+00,4.676178365048960117e+00,4.921158017061148193e+00,5.165687238652997948e+00,5.409461120471455331e+00,5.652303549722774711e+00,5.894219755028806240e+00,6.135483707794212371e+00,6.376795853909313472e+00,6.619598970588456588e+00,6.866806426537580776e+00,7.124885930695851854e+00,7.412752254304202815e+00,8.114754683359945986e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.241379310344827902e-01,1.840360153385973141e-01,2.653675403950937484e-01,3.608901159252068114e-01,4.702107092163341773e-01,5.928862298695579680e-01,7.284276287970901098e-01,8.763041105397858521e-01,1.035947484624526016e+00,1.206756380554956820e+00,1.388100474474397661e+00,1.579324565930690927e+00,1.779752535947350944e+00,1.988691173435839898e+00,2.205433958844820630e+00,2.429264660906488071e+00,2.659461137087126392e+00,2.895299125896316106e+00,3.136056235254692570e+00,3.381016383061625330e+00,3.629474758741924045e+00,3.880743503766096225e+00,4.134158566994401873e+00,4.389088178108095484e+00,4.644943677977598995e+00,4.901193596852515988e+00,5.157383021669175172e+00,5.413161422157307001e+00,5.668324079038758789e+00,5.922879136670882616e+00,6.177160596768632495e+00,6.432043605258144225e+00,6.689396299606875651e+00,6.953209934044493501e+00,7.233302814176218121e+00,7.567538831625970630e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.344827586206896797e-01,1.928315627261387721e-01,2.780433456379487467e-01,3.781179965879635230e-01,4.926413365866093574e-01,6.211465064716372719e-01,7.631182880583812222e-01,9.179975368752595344e-01,1.085185673349001734e+00,1.264049119348296335e+00,1.453923650593674566e+00,1.654118599149834834e+00,1.863920944357628784e+00,2.082599264199632039e+00,2.309407610534799815e+00,2.543589381714411957e+00,2.784381261697705945e+00,3.031017374903592465e+00,3.282733803502287717e+00,3.538773680897004503e+00,3.798393194985711485e+00,4.060868772003668248e+00,4.325505855187081750e+00,4.591651200065165028e+00,4.858707822708876911e+00,5.126157047577634351e+00,5.393590032255511701e+00,5.660756066343258119e+00,5.927641162294721155e+00,6.194606216038533120e+00,6.462654041450190512e+00,6.734017325520642139e+00,7.013724770328638058e+00,7.315377215472400607e+00,7.714743610363036908e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.448275862068965691e-01,2.016691650874340713e-01,2.907788057877566112e-01,3.954254426489735019e-01,5.151733154930708825e-01,6.495313263267558090e-01,7.979575696148125674e-01,9.598639825138397530e-01,1.134621015931820187e+00,1.321562226154078257e+00,1.519988790860617556e+00,1.729173810830006763e+00,1.948366533761309638e+00,2.176796420871247584e+00,2.413677153875571246e+00,2.658210703836145772e+00,2.909591579349019241e+00,3.167011320946368169e+00,3.429663649499877121e+00,3.696750793243031907e+00,3.967489996998081470e+00,4.241123807131996770e+00,4.516931509787350585e+00,4.794245789131792002e+00,5.072475986859713792e+00,5.351142236963074339e+00,5.629928211799830606e+00,5.908768742900833537e+00,6.188005353343181802e+00,6.468693495285839035e+00,6.753296963442924294e+00,7.047617283043544845e+00,7.368548372933579671e+00,7.874560014646354134e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.551724137931035141e-01,2.105509648658271671e-01,3.035769428229484479e-01,4.128164674240303311e-01,5.378117386223598695e-01,6.780469094188039669e-01,8.329528521743718716e-01,1.001911987244175961e+00,1.184263156755506863e+00,1.379306382815909338e+00,1.586307485640141124e+00,1.804502519969542362e+00,2.033102176464057553e+00,2.271295773377365101e+00,2.518255648298891369e+00,2.773141257129629889e+00,3.035103888599186117e+00,3.303291576497693338e+00,3.576855147316130079e+00,3.854955367988547099e+00,4.136772194095618360e+00,4.421516782552689762e+00,4.708448331337342196e+00,4.996897625187712855e+00,5.286302276531591460e+00,5.576261955141034399e+00,5.866629620812799040e+00,6.157676664369493125e+00,6.450419719664713725e+00,6.747370651638129324e+00,7.054658036281520772e+00,7.390896396980269678e+00,8.052710015907646124e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.655172413793103758e-01,2.194791335142625421e-01,3.164408328661323933e-01,4.302951566292602670e-01,5.605617838456687929e-01,7.066995887769786933e-01,8.681116377995624633e-01,1.044150213465273813e+00,1.234121884939436198e+00,1.437292404098334142e+00,1.652891457505193840e+00,1.880117229000879631e+00,2.118140792774543257e+00,2.366110473891854138e+00,2.623156086940577669e+00,2.888393555571318938e+00,3.160929821648637450e+00,3.439868561158708538e+00,3.724317151347614541e+00,4.013395394741689159e+00,4.306247398851374086e+00,4.602057790868911091e+00,4.900074648951913581e+00,5.199644578400572037e+00,5.500267696503787107e+00,5.801687896941768230e+00,6.104057931172897078e+00,6.408265233382868686e+00,6.716677427328614058e+00,7.035244267795346396e+00,7.382203446258520430e+00,8.010678211379190117e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.758620689655172376e-01,2.284558912647982887e-01,3.293736086679123209e-01,4.478656711307025251e-01,5.834287187802646990e-01,7.354957970861714101e-01,9.034415468937430083e-01,1.086587452469289561e+00,1.284207111864020590e+00,1.495531236083697646e+00,1.719752545254034537e+00,1.956030424881930907e+00,2.203495447260129581e+00,2.461253698505416754e+00,2.728391506265492428e+00,3.003980048854763218e+00,3.287080885324014989e+00,3.576752525813981176e+00,3.872058592452626069e+00,4.172078899761901383e+00,4.475924576177882308e+00,4.782760117945439760e+00,5.091836359631208175e+00,5.402542527286859908e+00,5.714493083238690652e+00,6.027683058589063059e+00,6.342794840033940673e+00,6.661889197167866428e+00,6.990308820384925070e+00,7.344183275205230288e+00,7.854821722881187185e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.862068965517241548e-01,2.374834968621556130e-01,3.423784634219764200e-01,4.655322404937491942e-01,6.064179056683142166e-01,7.644420679181775924e-01,9.389503041736202427e-01,1.129232631114326590e+00,1.334528893900387869e+00,1.554033968858225867e+00,1.786902723299992335e+00,2.032254764723329998e+00,2.289179174840190178e+00,2.556738661436205984e+00,2.833974858481922432e+00,3.119913074844106848e+00,3.413568423400889174e+00,3.713953503115075883e+00,4.020088527976629855e+00,4.331014366566555474e+00,4.645813985199398921e+00,4.963641454720984392e+00,5.283770190991406324e+00,5.605672156372452086e+00,5.929158980001091983e+00,6.254655772676191994e+00,6.583805928711438327e+00,6.921074296570185247e+00,7.279609997575906100e+00,7.732554086861876286e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.965517241379310720e-01,2.465642601045837934e-01,3.554586536426743715e-01,4.832991886750369059e-01,6.295347944667893936e-01,7.935450669857565531e-01,9.746458020989446913e-01,1.172094815318184935e+00,1.385097433593319494e+00,1.612811823837287939e+00,1.854354092530871911e+00,2.108803076852104663e+00,2.375205101242491956e+00,2.652578596987356097e+00,2.939919094987373249e+00,3.236204838197001443e+00,3.540403597848928996e+00,3.851481551085180310e+00,4.168415548071501497e+00,4.490211077086504687e+00,4.815928338519446683e+00,5.144725606736253454e+00,5.475928149276735546e+00,5.809151731661568618e+00,6.144537967809265311e+00,6.483258616031791988e+00,6.828793478764344727e+00,7.191209190859598976e+00,7.614212249689032319e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.068965517241379892e-01,2.557005349447797893e-01,3.686175020299635174e-01,5.011709168028882777e-01,6.527849926990334506e-01,8.228115729345369944e-01,1.010536045703184893e+00,1.215183228493559975e+00,1.435923087790165864e+00,1.671876194164687801e+00,1.922118881294444526e+00,2.185688187196795251e+00,2.461586559365943394e+00,2.748786789541399322e+00,3.046237088341798849e+00,3.352867505204521592e+00,3.667597426459123788e+00,3.989346346822909339e+00,4.317049162401333184e+00,4.649678870797870012e+00,4.986283529920823909e+00,5.326045147722144435e+00,5.668384043158024355e+00,6.013154485159366125e+00,6.361049853458671244e+00,6.714581545756403536e+00,7.081069436433164555e+00,7.487390498991380205e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.172413793103449065e-01,2.648947293349139254e-01,3.818584018310890449e-01,5.191519189234617970e-01,6.761741365002433835e-01,8.522484979811257855e-01,1.046629190670936183e+00,1.258507237599948869e+00,1.487016372801264863e+00,1.731238617247688572e+00,1.990209515468280621e+00,2.262923114693430993e+00,2.548336828226381634e+00,2.845376442252966598e+00,3.152941687548070249e+00,3.469913044892608767e+00,3.795160757651998118e+00,4.127557607690569341e+00,4.465998401623210157e+00,4.809429770644902291e+00,5.156899953048178276e+00,5.507644455841939291e+00,5.861243310822263908e+00,6.217938618737362866e+00,6.579362452457916177e+00,6.950576767134522882e+00,7.348324705611233298e+00,7.944514614993525292e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.275862068965517682e-01,2.741493022531186208e-01,3.951848197461358403e-01,5.372467839043464366e-01,6.997080339096618529e-01,8.818628864135855672e-01,1.082933543573912250e+00,1.302076380005427358e+00,1.538387976896643750e+00,1.790910797287039946e+00,2.058638510598996607e+00,2.340520980330737633e+00,2.635469303717018263e+00,2.942360923208731549e+00,3.260045660385238353e+00,3.587353328207588898e+00,3.923104295075162007e+00,4.266125193623235390e+00,4.615273434280033449e+00,4.969477267251091845e+00,5.327804267139769401e+00,5.689585421877254134e+00,6.054658065802338562e+00,6.423897116495672854e+00,6.800589006027738748e+00,7.195165995241789680e+00,7.657500336973578570e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.379310344827586299e-01,2.834667700270726565e-01,4.086003008737388864e-01,5.554602050216324027e-01,7.233926176193159474e-01,9.116619084782184856e-01,1.119457569573598432e+00,1.345900368146132120e+00,1.590048756443091627e+00,1.850904609748711849e+00,2.127418542746458918e+00,2.418495037557815142e+00,2.722997452570519616e+00,3.039753508212888367e+00,3.367561724556718428e+00,3.705200112334346763e+00,4.051438591046808035e+00,4.405058736247725371e+00,4.764884844577705003e+00,5.129838140375185596e+00,5.499031855161456761e+00,5.871954220526567347e+00,6.248850942228311389e+00,6.631646908034905863e+00,7.026729451872677501e+00,7.458101412183011369e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.482758620689655471e-01,2.928497087053204551e-01,4.221084732315601440e-01,5.737969584265097955e-01,7.472338700908135456e-01,9.416529654043197528e-01,1.156209899009935871e+00,1.389989062778425044e+00,1.642009758009618903e+00,1.911232095351739879e+00,2.196562487783961792e+00,2.496858635339557431e+00,2.810934814961834505e+00,3.137567503268435587e+00,3.475502510910550846e+00,3.823464908939201656e+00,4.180174101632334605e+00,4.544368124627137462e+00,4.914844610565566541e+00,5.290533136480082277e+00,5.670630351649061041e+00,6.054872773379169182e+00,6.444155036513359747e+00,6.842205483986782966e+00,7.261837865158965677e+00,7.782556135280159104e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.586206896551724643e-01,3.023007578000618811e-01,4.357130398462254472e-01,5.922619639301797134e-01,7.712380302206407467e-01,9.718434513069617031e-01,1.193199335214659262e+00,1.434352553455743084e+00,1.694282199531283117e+00,1.971905512999717835e+00,2.266083325310658481e+00,2.575625253825798655e+00,2.899295000969701608e+00,3.235816207478833917e+00,3.583880527228166635e+00,3.942159304893629201e+00,4.309321199368793209e+00,4.684063692149052827e+00,5.065166221515594813e+00,5.451588672540331082e+00,5.842664499010988166e+00,6.238515863264953332e+00,6.641083898633702631e+00,7.057372085454542976e+00,7.516232421639323924e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.689655172413793816e-01,3.118226150772031580e-01,4.494178104458664835e-01,6.108602333100479065e-01,7.954113854893063440e-01,1.002241080046242683e+00,1.230434868701509865e+00,1.479001099526792373e+00,1.746877520140065698e+00,2.032937261530377349e+00,2.335994301428002906e+00,2.654808599566020444e+00,2.988091687668558372e+00,3.334512911491519294e+00,3.692708360562878322e+00,4.061294402172179296e+00,4.438890094039829037e+00,4.824156148912310371e+00,5.215865601767175619e+00,5.613039054232595859e+00,6.015223738489951621e+00,6.423139416947442726e+00,6.840463352389726914e+00,7.280716743001254265e+00,7.840639101315225012e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.793103448275862988e-01,3.214180578606692373e-01,4.632266758216046498e-01,6.295969135811186890e-01,8.197604044399724454e-01,1.032853658860378943e+00,1.267925652367680511e+00,1.523945143595171858e+00,1.799807350910991088e+00,2.094339962418393153e+00,2.406308664136674214e+00,2.734422388723297015e+00,3.077338615420307288e+00,3.433670891192936114e+00,3.801998231666775752e+00,4.180881535878349098e+00,4.568891218425578771e+00,4.964657044723757018e+00,5.366961939155701522e+00,5.774929533406524484e+00,6.188433854536100398e+00,6.609127612163965715e+00,7.043708115010168136e+00,7.520969011665457060e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.896551724137931050e-01,3.310899276706390504e-01,4.771436341400455139e-01,6.484772432360365046e-01,8.442916993469373743e-01,1.063689187156003468e+00,1.305681081255064546e+00,1.569195374525681919e+00,1.853083521110166831e+00,2.156126434673942160e+00,2.477040002208771963e+00,2.814480343785090710e+00,3.167049582298710586e+00,3.533303386562545167e+00,3.911762425395453935e+00,4.300931684110579134e+00,4.699334872537850316e+00,5.105579034655411519e+00,5.518478836205960469e+00,5.937320747014989131e+00,6.362472956436680427e+00,6.797078565727685984e+00,7.253487666711150972e+00,7.814985731195795537e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +4.000000000000000222e-01,3.408411448211973727e-01,4.911727788701336639e-01,6.675066448350552850e-01,8.690120454259294691e-01,1.094755849700233430e+00,1.343710705337522571e+00,1.614762674806223375e+00,1.906718103820693955e+00,2.218309703219848217e+00,2.548201999644751581e+00,2.894996648222404989e+00,3.257238443601590205e+00,3.633423606604141654e+00,4.022013061686551261e+00,4.421455859414487044e+00,4.830232039323634652e+00,5.246936317217052448e+00,5.670446369879024395e+00,6.100295254422637647e+00,6.537601417763601930e+00,6.987971657012697513e+00,7.475754255272158311e+00,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan diff --git a/system_identification/steering_lookup/cfg/SIM_linear_lookup_table.csv b/system_identification/steering_lookup/cfg/SIM_linear_lookup_table.csv new file mode 100644 index 0000000..d6d05be --- /dev/null +++ b/system_identification/steering_lookup/cfg/SIM_linear_lookup_table.csv @@ -0,0 +1,61 @@ +0.000000000000000000e+00,5.000000000000000000e-01,6.015625000000000000e-01,7.031250000000000000e-01,8.046875000000000000e-01,9.062500000000000000e-01,1.007812500000000000e+00,1.109375000000000000e+00,1.210937500000000000e+00,1.312500000000000000e+00,1.414062500000000000e+00,1.515625000000000000e+00,1.617187500000000000e+00,1.718750000000000000e+00,1.820312500000000000e+00,1.921875000000000000e+00,2.023437500000000000e+00,2.125000000000000000e+00,2.226562500000000000e+00,2.328125000000000000e+00,2.429687500000000000e+00,2.531250000000000000e+00,2.632812500000000000e+00,2.734375000000000000e+00,2.835937500000000000e+00,2.937500000000000000e+00,3.039062500000000000e+00,3.140625000000000000e+00,3.242187500000000000e+00,3.343750000000000000e+00,3.445312500000000000e+00,3.546875000000000000e+00,3.648437500000000000e+00,3.750000000000000000e+00,3.851562500000000000e+00,3.953125000000000000e+00,4.054687500000000000e+00,4.156250000000000000e+00,4.257812500000000000e+00,4.359375000000000000e+00,4.460937500000000000e+00,4.562500000000000000e+00,4.664062500000000000e+00,4.765625000000000000e+00,4.867187500000000000e+00,4.968750000000000000e+00,5.070312500000000000e+00,5.171875000000000000e+00,5.273437500000000000e+00,5.375000000000000000e+00,5.476562500000000000e+00,5.578125000000000000e+00,5.679687500000000000e+00,5.781250000000000000e+00,5.882812500000000000e+00,5.984375000000000000e+00,6.085937500000000000e+00,6.187500000000000000e+00,6.289062500000000000e+00,6.390625000000000000e+00,6.492187500000000000e+00,6.593750000000000000e+00,6.695312500000000000e+00,6.796875000000000000e+00,6.898437500000000000e+00,7.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +3.448275862068965903e-03,2.599755870138942705e-03,3.756088352467532466e-03,5.120026436070201394e-03,6.688774770064065227e-03,8.459141433811117120e-03,1.042755407434381269e-02,1.259007700515826778e-02,1.494243167620298678e-02,1.748001588087966240e-02,2.019792691634440460e-02,2.309098315303278678e-02,2.615374732617370065e-02,2.938055397260571494e-02,3.276552524712118830e-02,3.630261737770438396e-02,3.998561195074702701e-02,4.380817043085356161e-02,4.776383208354063881e-02,5.184608664354897756e-02,5.604832907523006613e-02,6.036394201436778156e-02,6.478626688240292364e-02,6.930868641242889094e-02,7.392458546934289887e-02,7.862741963016291191e-02,8.341064498572343944e-02,8.826789423954449487e-02,9.319282567660096273e-02,9.817922938754096440e-02,1.032210209132608109e-01,1.083122460504095524e-01,1.134470978811550762e-01,1.186199158582060820e-01,1.238252440733515064e-01,1.290577285695523879e-01,1.343122267408954074e-01,1.395838165254306706e-01,1.448676698835355270e-01,1.501592350352312366e-01,1.554540963292174172e-01,1.607480452139214422e-01,1.660370487053225153e-01,1.713172839629620303e-01,1.765851085491646766e-01,1.818370671772964187e-01,1.870698883457315997e-01,1.922804832645802209e-01,1.974659412437756445e-01,2.026235285283368437e-01,2.077506737767561562e-01,2.128449863620944515e-01,2.179042272945812264e-01,2.229263167900206455e-01,2.279093292462950893e-01,2.328514884746322455e-01,2.377511521392990101e-01,2.426068272125352920e-01,2.474171382090054883e-01,2.521808504309424603e-01,2.568968603672394657e-01,2.615641014687470900e-01,2.661817435992183678e-01,2.707489809918761092e-01,2.752651280973140158e-01,2.797295892245590943e-01 +6.896551724137931806e-03,5.199567969104952961e-03,7.512254505128173991e-03,1.024015359241778160e-02,1.337767342930936895e-02,1.691842902218250108e-02,2.085527437743121826e-02,2.518033804688901006e-02,2.988506126015149159e-02,3.496024107201384928e-02,4.039607174512056809e-02,4.618218132881091870e-02,5.230770885880380028e-02,5.876131799972091757e-02,6.553126385846888557e-02,7.260543743972333597e-02,7.997142504105518579e-02,8.761653852511915030e-02,9.552789861976458685e-02,1.036924359116102312e-01,1.120969686133824195e-01,1.207282492090788611e-01,1.295730134848426807e-01,1.386179849311240386e-01,1.478499612846879419e-01,1.572558193856093689e-01,1.668225728266380659e-01,1.765373990525634096e-01,1.863876474544962913e-01,1.963609085108307117e-01,2.064450206444346791e-01,2.166280920012505773e-01,2.268984527935373752e-01,2.372448782096306663e-01,2.476563671058631400e-01,2.581222965168034067e-01,2.686323725557426823e-01,2.791766730789748130e-01,2.897456491890751384e-01,3.003301192266232267e-01,3.109212810440001307e-01,3.215107130770775146e-01,3.320903737194994543e-01,3.426525975445998129e-01,3.531901000921082723e-01,3.636959678087544612e-01,3.741636566724280133e-01,3.845869850425153724e-01,3.949601295266231826e-01,4.052776128162971503e-01,4.155343007554889723e-01,4.257254046810743375e-01,4.358464262211720897e-01,4.458932208400608332e-01,4.558619264450706754e-01,4.657489815746384543e-01,4.755511094601593824e-01,4.852653180649461606e-01,4.948888066550956033e-01,5.044191545055184411e-01,5.138541169025889754e-01,5.231916312238786837e-01,5.324298942448350003e-01,5.415674060441879600e-01,5.506027440323282285e-01,5.595347186125232408e-01 +1.034482758620689814e-02,7.799492549451317661e-03,1.126857629092098412e-02,1.536048217220048993e-02,2.006681978195656857e-02,2.537800886608246320e-02,3.128332782705120496e-02,3.777096682299186520e-02,4.482808605980692640e-02,5.244087967697410452e-02,6.059465179343582336e-02,6.927380944329085410e-02,7.846209712112424406e-02,8.814249723018581506e-02,9.829740683988842653e-02,1.089086699029005595e-01,1.199576365460089250e-01,1.314253355838607695e-01,1.432924104855962943e-01,1.555392911518030941e-01,1.681462159923531041e-01,1.810933304635266583e-01,1.943607297035922499e-01,2.079285370942011990e-01,2.217769196329516246e-01,2.358862493252135151e-01,2.502370498578056490e-01,2.648100992266406162e-01,2.795864364857962303e-01,2.945474620229833751e-01,3.096749337256310408e-01,3.249510346199023791e-01,3.403583316796247593e-01,3.558798733159712069e-01,3.714992667829101758e-01,3.872005379830173455e-01,4.029682713201989674e-01,4.187875909078563885e-01,4.346441715519890336e-01,4.505242464838528083e-01,4.664146153398908146e-01,4.823026446768550746e-01,4.981762699987000165e-01,5.140239938098923878e-01,5.298348814240355642e-01,5.455985603115772742e-01,5.613052116113516066e-01,5.769455551259501380e-01,5.925108477709104537e-01,6.079928631829818464e-01,6.233838901216696149e-01,6.386767260978896132e-01,6.538646415281909041e-01,6.689413805071210417e-01,6.839011417802599579e-01,6.987385908065230078e-01,7.134487654298019566e-01,7.280271598945002864e-01,7.424696495695415344e-01,7.567724509836019076e-01,7.709322563668975503e-01,7.849460007244207782e-01,7.988109761198614045e-01,8.125248059811004397e-01,8.260854241687911603e-01,8.394910139783634540e-01 +1.379310344827586361e-02,1.039958579658164899e-02,1.502513151411195326e-02,2.048111299319119519e-02,2.675633778623669190e-02,3.383802720450922868e-02,4.171188106976180671e-02,5.036214808882753802e-02,5.977170664224101815e-02,6.992214249186472219e-02,8.079384169340378397e-02,9.236608583999510180e-02,1.046171295846590049e-01,1.175243129245685109e-01,1.310641664265160267e-01,1.452124875215993205e-01,1.599444711338393332e-01,1.752347536133328776e-01,1.910576070317855368e-01,2.073869264162958581e-01,2.241963575880859261e-01,2.414595300809268263e-01,2.591498924354970201e-01,2.772409201395008016e-01,2.957062589400668573e-01,3.145197278759143678e-01,3.336554427986140325e-01,3.530876793404118530e-01,3.727912292004674777e-01,3.927414098848490687e-01,4.129137738209570641e-01,4.332847611138682109e-01,4.538309552303111949e-01,4.745299655117362070e-01,4.953598212079519114e-01,5.162993636225918781e-01,5.373278096196754117e-01,5.584256233151139170e-01,5.795735524000878991e-01,6.007532778594311118e-01,6.219472120785450864e-01,6.431385005583433179e-01,6.643110593907417538e-01,6.854495555834030363e-01,7.065394073122612806e-01,7.275667710378554975e-01,7.485185420061378769e-01,7.693823340890507678e-01,7.901464733152185893e-01,8.107999801843673859e-01,8.313325706094469858e-01,8.517345759287153761e-01,8.719970545706837717e-01,8.921115934064343111e-01,9.120704926788969491e-01,9.318665590306466351e-01,9.514931983249615977e-01,9.709443504644068579e-01,9.902144914794105413e-01,1.009298620435103988e+00,1.028192197599853808e+00,1.046891154244215416e+00,1.065391883598289846e+00,1.083691157909886460e+00,1.101786183067026803e+00,1.119674572551037750e+00 +1.724137931034483082e-02,1.299990402255247861e-02,1.878199802287495654e-02,2.560214673984926095e-02,3.344635128521075002e-02,4.229863004349176253e-02,5.214109961018632833e-02,6.295406521604086925e-02,7.471611750569817634e-02,8.740423786015873164e-02,1.009939069557781594e-01,1.154592223124741579e-01,1.307730133678873530e-01,1.469069689962765324e-01,1.638317444581299243e-01,1.815171236129819177e-01,1.999320945425450968e-01,2.190450157990168345e-01,2.388237074870563359e-01,2.592355879153036557e-01,2.802478068848145432e-01,3.018273077579498587e-01,3.239409895074194523e-01,3.465557866059377767e-01,3.696387700469707105e-01,3.931572644762494351e-01,4.170788890684732353e-01,4.413715844553477430e-01,4.660040042288805529e-01,4.909450838144623352e-01,5.161645442352807978e-01,5.416327357616406157e-01,5.673206739700251688e-01,5.932001810848399614e-01,6.192439640747626761e-01,6.454254565756648576e-01,6.717190025431669653e-01,6.980998393566884008e-01,7.245441156765125568e-01,7.510289074905240891e-01,7.775322101040529343e-01,8.040329876867483572e-01,8.305111193862405594e-01,8.569474360785097611e-01,8.833236966946714785e-01,9.096225835135769433e-01,9.358277012849066656e-01,9.619235510650324672e-01,9.878955027882742046e-01,1.013729799970696233e+00,1.039413571956492977e+00,1.064934741484459213e+00,1.090282004340761723e+00,1.115444910359689512e+00,1.140413730863733432e+00,1.165179442854348046e+00,1.189733790548009873e+00,1.214069146126207865e+00,1.238178586845656959e+00,1.262055795040044170e+00,1.285695066432274158e+00,1.309091282696172032e+00,1.332239868155038254e+00,1.355136781612461094e+00,1.377778463887022520e+00,1.400161945921263307e+00 +2.068965517241379629e-02,1.560050348706261934e-02,2.253925368656472389e-02,3.072368422360327242e-02,4.013698433290555784e-02,5.075996378766250289e-02,6.257115136300175906e-02,7.554690220687713953e-02,8.966151909919541085e-02,1.048873723837375760e-01,1.211950390050694909e-01,1.385534441551767026e-01,1.569299669727899083e-01,1.762906681031043976e-01,1.966003504374506383e-01,2.178227558996022051e-01,2.399207382505819108e-01,2.628563313082581399e-01,2.865909404530542770e-01,3.110855536461101800e-01,3.363007599337209386e-01,3.621969600201521144e-01,3.887345277266167076e-01,4.158737597855829415e-01,4.435752679008392874e-01,4.717998592778190892e-01,5.005086838507057934e-01,5.296635509006111242e-01,5.592266872259549215e-01,5.891610118560836051e-01,6.194300684719730166e-01,6.499985897597442275e-01,6.808316356192322116e-01,7.118955697804225657e-01,7.431575805048764582e-01,7.745858728841159557e-01,8.061496843593867201e-01,8.378193649035563517e-01,8.695662223509103006e-01,9.013628458004371291e-01,9.331828195361617784e-01,9.650008945229497925e-01,9.967929181775839753e-01,1.028535883131512341e+00,1.060207889815888427e+00,1.091788130906471421e+00,1.123256903782417160e+00,1.154595573607718251e+00,1.185786575455930913e+00,1.216813372085869149e+00,1.247660427762226076e+00,1.278313217462269336e+00,1.308758166365687980e+00,1.338982642776504139e+00,1.368974931953746754e+00,1.398724151399277194e+00,1.428220323677795722e+00,1.457454278816295190e+00,1.486417613866290788e+00,1.515102706011343114e+00,1.543502650903021634e+00,1.571611242527284791e+00,1.599422939200300320e+00,1.626932849141429216e+00,1.654136634238867920e+00,1.681030664054892210e+00 +2.413793103448276176e-02,1.820144048494473296e-02,2.629697641608047531e-02,3.584582628330898468e-02,4.682836080816653312e-02,5.922217461235919356e-02,7.300220145799232729e-02,8.814084409782019236e-02,1.046081089296752725e-01,1.223717538008733952e-01,1.413974597694095114e-01,1.616489417732671907e-01,1.830882128241031193e-01,2.056756255964862501e-01,2.293701821647600170e-01,2.541296184914835776e-01,2.799105915372200326e-01,3.066688786585207160e-01,3.343595355390242552e-01,3.629370569600721685e-01,3.923555702143433077e-01,4.225689151365965568e-01,4.535309085417452146e-01,4.851954137419771662e-01,5.175164732730840322e-01,5.504484672057807781e-01,5.839462311724101795e-01,6.179651499159924954e-01,6.524613284174108907e-01,6.873915610010985500e-01,7.227135434384117652e-01,7.583858959491276419e-01,7.943682134879355150e-01,8.306211948404027545e-01,8.671066289191805554e-01,9.037874488031470976e-01,9.406278611831151437e-01,9.775932496895470836e-01,1.014650276556146258e+00,1.051766879729646886e+00,1.088912290697832352e+00,1.126057055159675580e+00,1.163172986368520956e+00,1.200233232346459733e+00,1.237212216087883343e+00,1.274085645926534394e+00,1.310830503851946771e+00,1.347425006395365887e+00,1.383848604615062206e+00,1.420081951745478355e+00,1.456106884512240907e+00,1.491906363720430617e+00,1.527464509798559744e+00,1.562766515586934357e+00,1.597798592544799501e+00,1.632548040363513975e+00,1.667003117566137504e+00,1.701153018427922659e+00,1.734987872819756971e+00,1.768498722553692337e+00,1.801677381257013932e+00,1.834516613725225342e+00,1.867009830023431238e+00,1.899151281935330005e+00,1.930935776438539975e+00,1.962359022891846161e+00 +2.758620689655172722e-02,2.080277134226797900e-02,3.005524423995841604e-02,4.096867378547574406e-02,5.352060482012485632e-02,6.768540893007475578e-02,8.343441844398857832e-02,1.007360741544047200e-01,1.195560833816045332e-01,1.398575883166501554e-01,1.616013606350251430e-01,1.847459510475605582e-01,2.092479373554638478e-01,2.350620397447003018e-01,2.621414658040542855e-01,2.904378868673770930e-01,3.199018615548251954e-01,3.504829015860544406e-01,3.821297127751240308e-01,4.147903845681113477e-01,4.484125129663561471e-01,4.829435362992592351e-01,5.183307128690892718e-01,5.545214170966816791e-01,5.914632495141859403e-01,6.291041998901539811e-01,6.673927485706607765e-01,7.062780397556345235e-01,7.457099761053932463e-01,7.856393314726114463e-01,8.260178463887852818e-01,8.667983273941637368e-01,9.079347087974085628e-01,9.493821405050226758e-01,9.910970341539926398e-01,1.033037139626833856e+00,1.075161526662104183e+00,1.117430760666838996e+00,1.159806724584210968e+00,1.202252840975037040e+00,1.244733971297285136e+00,1.287216401937846255e+00,1.329667964350634612e+00,1.372057940531902220e+00,1.414357076355631015e+00,1.456537571301269152e+00,1.498573073496974217e+00,1.540438639285063305e+00,1.582110713218269238e+00,1.623567121896336340e+00,1.664787018097786175e+00,1.705750879292584621e+00,1.746440430915229935e+00,1.786838657505799732e+00,1.826929727260901304e+00,1.866699028477784683e+00,1.906132994712388173e+00,1.945219241391904941e+00,1.983946314129771960e+00,2.022303912972962525e+00,2.060282638868850658e+00,2.097873938537013316e+00,2.135070339420276131e+00,2.171865066499321539e+00,2.208252192323085339e+00,2.244226599730816840e+00 +3.103448275862069269e-02,2.340455242181482473e-02,3.381413456301869680e-02,4.609232764809545468e-02,6.021384036580454402e-02,7.614981283240858378e-02,9.386796700615593347e-02,1.133327766760022642e-01,1.345056428855302966e-01,1.573450937095166868e-01,1.818069717764049797e-01,2.078447055815753897e-01,2.354093797127742860e-01,2.644501612032037485e-01,2.949143774293624398e-01,3.267477662075047307e-01,3.598947454844445559e-01,3.942985899295412544e-01,4.299017045300730921e-01,4.666457543681296061e-01,5.044719469159794079e-01,5.433212118924571898e-01,5.831343781820602645e-01,6.238523707958221198e-01,6.654163853965523456e-01,7.077680378012431994e-01,7.508495290938250744e-01,7.946037937081754654e-01,8.389745973057666228e-01,8.839067186263814824e-01,9.293460005941662772e-01,9.752394622780777844e-01,1.021535415260894863e+00,1.068183507965545953e+00,1.115134812896601213e+00,1.162341869361494640e+00,1.209758743207972609e+00,1.257341084352884719e+00,1.305046104119000461e+00,1.352832666260123551e+00,1.400661243392783417e+00,1.448493968803237886e+00,1.496294619076540044e+00,1.544028618748396919e+00,1.591663026889767574e+00,1.639166525713526390e+00,1.686509403288033893e+00,1.733663532646447347e+00,1.780602334018166921e+00,1.827300779192891245e+00,1.873735315749690322e+00,1.919883866743857359e+00,1.965725779953112484e+00,2.011241774226910195e+00,2.056413934762621576e+00,2.101225673197796073e+00,2.145661611737345265e+00,2.189707644616474713e+00,2.233350871056825060e+00,2.276579425991919869e+00,2.319382618799214146e+00,2.361750815631920908e+00,2.403675308548682832e+00,2.445148407855850969e+00,2.486163343134376369e+00,2.526714287988419017e+00 +3.448275862068966163e-02,2.600684011457038425e-02,3.757372638775076379e-02,5.121688890820529083e-02,6.690819166618995617e-02,8.461553308409333618e-02,1.043030161263497207e-01,1.259311362668589507e-01,1.494569845426807764e-01,1.748344718778788998e-01,2.020145194698723667e-01,2.309453678404303212e-01,2.615727482254403546e-01,2.938401633347519359e-01,3.276891359833014050e-01,3.630594756490022057e-01,3.998894527090287587e-01,4.381161772746939853e-01,4.776757350861601248e-01,5.185034546750055817e-01,5.605341492283028026e-01,6.037023239019555509e-01,6.479424015532637693e-01,6.931889032189241240e-01,7.393766649064519303e-01,7.864409980679909484e-01,8.343178631469266859e-01,8.829440288270254955e-01,9.322572075436011962e-01,9.821962026577799598e-01,1.032701002987627126e+00,1.083712921860112699e+00,1.135174660964120674e+00,1.187030417583372355e+00,1.239225952593766555e+00,1.291708647977081625e+00,1.344427568107909421e+00,1.397333492932524512e+00,1.450378969739327450e+00,1.503518318113195251e+00,1.556707663399502062e+00,1.609904934603542115e+00,1.663069883160456230e+00,1.716164065545593642e+00,1.769150843251215077e+00,1.821995365325184135e+00,1.874664547597183262e+00,1.927127051528507273e+00,1.979353254705478626e+00,2.031315234273898707e+00,2.082986702035035442e+00,2.134342979884829017e+00,2.185361001420119020e+00,2.236019185709413382e+00,2.286297490613365735e+00,2.336177309603606478e+00,2.385641379127756423e+00,2.434673895239398256e+00,2.483260252006012525e+00,2.531387233311213958e+00,2.579042778374966094e+00,2.626215875060576632e+00,2.672896828673599678e+00,2.719076890091136622e+00,2.764748451609398749e+00,2.809904640313357849e+00 +3.793103448275862710e-02,2.860969085950620591e-02,4.133409694091262632e-02,5.634245843819696287e-02,7.360378355113490756e-02,9.308271565555871485e-02,1.147397305600896117e-01,1.385313371459078458e-01,1.644103063946141807e-01,1.923259169043438355e-01,2.222241984277708582e-01,2.540481969344441926e-01,2.877382570115099569e-01,3.232322571842913272e-01,3.604659481255762521e-01,3.993731742781908567e-01,4.398861766384696836e-01,4.819358368871207166e-01,5.254520228246818414e-01,5.703637347746181030e-01,6.165994367274881816e-01,6.640872617450133131e-01,7.127552598080563184e-01,7.625316268001123277e-01,8.133448801885011514e-01,8.651240976359572121e-01,9.177990424428116301e-01,9.713003832914092195e-01,1.025559826409418340e+00,1.080510262684679645e+00,1.136085897559578894e+00,1.192222354644749016e+00,1.248856798475444840e+00,1.305928011514627229e+00,1.363376497637025064e+00,1.421144509615037910e+00,1.479176135583197826e+00,1.537417337012353613e+00,1.595815988188904244e+00,1.654321905203720799e+00,1.712886858947210156e+00,1.771464593950018873e+00,1.830010827506231896e+00,1.888483248653540336e+00,1.946841509582961649e+00,2.005047208488163868e+00,2.063063865800265795e+00,2.120856917159278598e+00,2.178393661509827162e+00,2.235643227782386777e+00,2.292576582606789426e+00,2.349166413628396732e+00,2.405387145393818926e+00,2.461214916200192171e+00,2.516627447420017205e+00,2.571604071319713469e+00,2.626125655905487299e+00,2.680174514828816079e+00,2.733734511317049698e+00,2.786790780877546947e+00,2.839329839812729794e+00,2.891339469027668141e+00,2.942808743536061478e+00,2.993727905465370931e+00,3.044088140853606905e+00,3.093882053621914263e+00 +4.137931034482759257e-02,3.121316113936789885e-02,4.509532496876153540e-02,6.146913752283998666e-02,8.030073845028444512e-02,1.015515080835808076e-01,1.251782787048211498e-01,1.511335637545270227e-01,1.793658077906528925e-01,2.098196594947613347e-01,2.424362248401693565e-01,2.771533965463630622e-01,3.139061090103985596e-01,3.526266605374974161e-01,3.932450197448201790e-01,4.356891044803977708e-01,4.798851192965510881e-01,5.257578079631320955e-01,5.732308215128266715e-01,6.222268685557376111e-01,6.726680791713141039e-01,7.244763950479248260e-01,7.775734428410706611e-01,8.318811674714680082e-01,8.873218491858956281e-01,9.438183626384838432e-01,1.001294360192338972e+00,1.059674482267638496e+00,1.118884474119240524e+00,1.178851395065823038e+00,1.239503676974429647e+00,1.300771385584997830e+00,1.362586186115141151e+00,1.424881466372941663e+00,1.487592525716304737e+00,1.550656533586704189e+00,1.614012641657710301e+00,1.677602021413430178e+00,1.741367906989183867e+00,1.805255617375128407e+00,1.869212594649072079e+00,1.933188397244476775e+00,1.997134714353399954e+00,2.061005361025106453e+00,2.124756266678662353e+00,2.188345468321124976e+00,2.251733066517999760e+00,2.314881237853806617e+00,2.377754168298606530e+00,2.440318030205196553e+00,2.502540964293828107e+00,2.564392998161240111e+00,2.625846021732376023e+00,2.686873773587000525e+00,2.747451737450558262e+00,2.807557141781574561e+00,2.867168864393108141e+00,2.926267413127086492e+00,2.984834833855573244e+00,3.042854780118413149e+00,3.100312091059123976e+00,3.157193491080368730e+00,3.213486493036710634e+00,3.269180362731355149e+00,3.324265353573898629e+00,3.378733000177752022e+00 +4.482758620689655804e-02,3.381730749540715064e-02,4.885748833862384177e-02,6.659702729724656378e-02,8.699918261332315050e-02,1.100220564967530484e-01,1.356188244412799837e-01,1.637380006400104004e-01,1.943236953791663280e-01,2.273158939847948201e-01,2.626508206411633517e-01,3.002611822964700861e-01,3.400765314851689758e-01,3.820235842327417419e-01,4.260265471721449426e-01,4.720074553087736935e-01,5.198864905062708930e-01,5.695823067494014680e-01,6.210124094064103373e-01,6.740930969992702249e-01,7.287405047164302596e-01,7.848701169267872091e-01,8.423974384649629554e-01,9.012381423035411565e-01,9.613083581041196313e-01,1.022524810935993900e+00,1.084805126469285952e+00,1.148067954440923799e+00,1.212233182794268282e+00,1.277222080298850759e+00,1.342957444837007186e+00,1.409363741419172866e+00,1.476367212276368468e+00,1.543895983456341492e+00,1.611880148676144708e+00,1.680251850509212108e+00,1.748945351773193879e+00,1.817897045342012241e+00,1.887045575355262628e+00,1.956331779237016288e+00,2.025698781574359675e+00,2.095091971379051010e+00,2.164459009738924689e+00,2.233749833886914171e+00,2.302916641581041368e+00,2.371913881797302004e+00,2.440698228461443353e+00,2.509228558646278362e+00,2.577465910109164149e+00,2.645373464188228052e+00,2.712916485421368318e+00,2.780062291905985195e+00,2.846780197369221277e+00,2.913041464411269654e+00,2.978819336542173790e+00,3.044088798119264805e+00,3.108826678456990678e+00,3.173011617046380906e+00,3.236623862533030138e+00,3.299645351273278404e+00,3.362059525503491741e+00,3.423851363162638606e+00,3.485007450365438242e+00,3.545515607198656216e+00,3.605365060289800638e+00,3.664546334683735473e+00 +4.827586206896552351e-02,3.642218650392268359e-02,5.262066520613273291e-02,7.172622901431435771e-02,9.369923993838250031e-02,1.184945075973474760e-01,1.460615422066451896e-01,1.763448312013834174e-01,2.092841499065319355e-01,2.448148371388012001e-01,2.828681933382855562e-01,3.233717779781721258e-01,3.662497333681069001e-01,4.114232338378063236e-01,4.588107396434555341e-01,5.083284243794329305e-01,5.598904987374959674e-01,6.134095049863251825e-01,6.687967846178870523e-01,7.259626909892545887e-01,7.848168996660246366e-01,8.452688103911049078e-01,9.072277380284240467e-01,9.706031972546264042e-01,1.035305210934766240e+00,1.101244471604799546e+00,1.168332629405164580e+00,1.236482443743033510e+00,1.305607990991260348e+00,1.375624848083579765e+00,1.446450216913624631e+00,1.518003097211304997e+00,1.590204310523779752e+00,1.662976798736586881e+00,1.736245523458011419e+00,1.809937621822191645e+00,1.883982561167993453e+00,1.958311963392957322e+00,2.032859908832338469e+00,2.107562815603326811e+00,2.182359465593074255e+00,2.257191118935863994e+00,2.332001406085194350e+00,2.406736366815543260e+00,2.481344470597346863e+00,2.555776561805507274e+00,2.629985857771004909e+00,2.703927905718245484e+00,2.777560564809336441e+00,2.850843973450896573e+00,2.923740484173427134e+00,2.996214638027482557e+00,3.068233119754077087e+00,3.139764710235269707e+00,3.210780226285684602e+00,3.281252439734848814e+00,3.351156076542696649e+00,3.420467746886746596e+00,3.489165862325286138e+00,3.557230585958492508e+00,3.624643784916819822e+00,3.691388925608347193e+00,3.757451146744285264e+00,3.822817078234395538e+00,3.887474730753837981e+00,3.951413573993178829e+00 +5.172413793103448898e-02,3.902785483092686969e-02,5.638493411715955056e-02,7.685684410889331852e-02,1.004010350130625923e-01,1.269690083175482875e-01,1.565065922046944835e-01,1.889542442561234215e-01,2.242473728973974345e-01,2.623166870409667228e-01,3.030885584236158725e-01,3.464853711395418090e-01,3.924259291700049057e-01,4.408258198452077448e-01,4.915978153581097021e-01,5.446522302127971837e-01,5.998973187985625621e-01,6.572396391264871962e-01,7.165844121344238093e-01,7.778358941921177383e-01,8.408976232182915345e-01,9.056728523811746756e-01,9.720647909397771569e-01,1.039976927397264550e+00,1.109313204478848736e+00,1.179978375405630553e+00,1.251878183374879105e+00,1.324919582374435301e+00,1.399010946033406144e+00,1.474062218100822719e+00,1.549985080707489304e+00,1.626693115178563742e+00,1.704101916739330980e+00,1.782129185427345330e+00,1.860694851040148645e+00,1.939721152427062112e+00,2.019132680469880370e+00,2.098856468391984809e+00,2.178822013245798050e+00,2.258961326673883274e+00,2.339208892659911054e+00,2.419501885712174172e+00,2.499779837218305989e+00,2.579984949813108219e+00,2.660061930053315926e+00,2.739958007688235941e+00,2.819622912680177507e+00,2.899008837134896766e+00,2.978070426776842528e+00,3.056764710220645220e+00,3.135051099158491006e+00,3.212891300761461455e+00,3.290249296309075699e+00,3.367091290247152369e+00,3.443385675863389839e+00,3.519102874152019833e+00,3.594215456432258815e+00,3.668697944059188032e+00,3.742526798046372782e+00,3.815680362830287109e+00,3.888138736448204291e+00,3.959883976348460788e+00,4.030899578563226449e+00,4.101170854485521211e+00,4.170684613889897641e+00,4.239429161896001830e+00 +5.517241379310345445e-02,4.163436922426463210e-02,6.015037362677176647e-02,8.198897594785031773e-02,1.071046924994534105e-01,1.354457058523515223e-01,1.669541456026590043e-01,2.015664194717936841e-01,2.392135711484928706e-01,2.798216623924926760e-01,3.233121160890719548e-01,3.696021962868682453e-01,4.186053329007761725e-01,4.702315601203997941e-01,5.243879616631390572e-01,5.809790604010657278e-01,6.399071757258779636e-01,7.010729104703198322e-01,7.643754451589525045e-01,8.297129673425143181e-01,8.969829729976245281e-01,9.660826390680326003e-01,1.036909164970048369e+00,1.109359992879508594e+00,1.183333163421897538e+00,1.258727545438924400e+00,1.335443096116626593e+00,1.413381022777084883e+00,1.492444101006097146e+00,1.572536701077421828e+00,1.653565128085578317e+00,1.735437593211889284e+00,1.818064500152358320e+00,1.901358449466656220e+00,1.985234394184260065e+00,2.069609693542578732e+00,2.154404200226561539e+00,2.239540329044790834e+00,2.324943070108996146e+00,2.410540054935234711e+00,2.496261547550854054e+00,2.582040494710366119e+00,2.667812514507120536e+00,2.753515891701796559e+00,2.839091576051611554e+00,2.924483160742093357e+00,3.009636864891326535e+00,3.094501496510495997e+00,3.179028426335420043e+00,3.263171574061790370e+00,3.346887303085471110e+00,3.430134463315142046e+00,3.512874269754298062e+00,3.595070236575423905e+00,3.676688268352904299e+00,3.757696413278163838e+00,3.838064905282006833e+00,3.917766200256567188e+00,3.996774624404868970e+00,4.075066674030407121e+00,4.152620669330539194e+00,4.229416902083123375e+00,4.305437399936340448e+00,4.380665927759943123e+00,4.455088033549335691e+00,4.528690764655881829e+00 +5.862068965517241992e-02,4.424178635911733826e-02,6.391706218612772106e-02,8.712272028505650689e-02,1.138103371770085304e-01,1.439247470068335533e-01,1.774043673780276442e-01,2.141815370078056502e-01,2.541829454350680861e-01,2.973299671255318910e-01,3.435391293544382552e-01,3.927224917907004009e-01,4.447881584772777064e-01,4.996406559766599087e-01,5.571813856292104905e-01,6.173091057747767119e-01,6.799202691977344060e-01,7.449095309025556277e-01,8.121701325627536106e-01,8.815942106215378660e-01,9.530732534003127920e-01,1.026498538522638837e+00,1.101761282194123615e+00,1.178752997082461507e+00,1.257365884912121645e+00,1.337493032584895269e+00,1.419028672841279981e+00,1.501868435367633925e+00,1.585909498308566645e+00,1.671050881835418389e+00,1.757193453549344975e+00,1.844240269264255216e+00,1.932096572307477222e+00,2.020669952383617129e+00,2.109870454448767418e+00,2.199610630873346295e+00,2.289805686782857563e+00,2.380373429833168686e+00,2.471234408553610873e+00,2.562311908118103609e+00,2.653531976211982446e+00,2.744823445218520064e+00,2.836117938390875448e+00,2.927349852570321431e+00,3.018456373168638684e+00,3.109377441461691483e+00,3.200055738914269643e+00,3.290436656710761021e+00,3.380468273171976179e+00,3.470101297977805643e+00,3.559289048600255967e+00,3.647987417280139866e+00,3.736154736609068383e+00,3.823751876803130667e+00,3.910742088948777617e+00,3.997090954699255683e+00,4.082766372969365953e+00,4.167738440892978957e+00,4.251979502704480218e+00,4.335463953648962310e+00,4.418168308352275808e+00,4.500070864952824934e+00,4.581152171296849041e+00,4.661394448045470540e+00,4.740781701935514292e+00,4.819299730231082712e+00 +6.206896551724138539e-02,4.685016320418277508e-02,6.768507811062404733e-02,9.225818467984163440e-02,1.205180942216079742e-01,1.524062794618524785e-01,1.878574242837481312e-01,2.267998044653363743e-01,2.691556960382093244e-01,3.148418167591598427e-01,3.637697521045545335e-01,4.158464427407967401e-01,4.709746199258127985e-01,5.290533204416242308e-01,5.899783139751795247e-01,6.536425857270345974e-01,7.199367991588353499e-01,7.887497417995006366e-01,8.599686011904015270e-01,9.334797968378001354e-01,1.009168806010786179e+00,1.086921013077338571e+00,1.166621629423852502e+00,1.248156579270177868e+00,1.331412174357151645e+00,1.416275858536851118e+00,1.502636260603752882e+00,1.590383448266754041e+00,1.679409246793972743e+00,1.769607273583627904e+00,1.860873220449863918e+00,1.953104931246741449e+00,2.046202672148849100e+00,2.140069097653319208e+00,2.234609399867386159e+00,2.329731446162575548e+00,2.425345791836580833e+00,2.521365758908963528e+00,2.617707493382762873e+00,2.714289973875937623e+00,2.811035059078170306e+00,2.907867493293912364e+00,3.004714915646776063e+00,3.101507832716279278e+00,3.198179692748960523e+00,3.294666768908490084e+00,3.390908131968897621e+00,3.486845783511484775e+00,3.582424421963384731e+00,3.677591520336568109e+00,3.772297284247969618e+00,3.866494538431204830e+00,3.960138755165337088e+00,4.053187982694382185e+00,4.145602789247888609e+00,4.237346206928468639e+00,4.328383629907815333e+00,4.418682828932718465e+00,4.508213929790224839e+00,4.596949105573049366e+00,4.684862952177670792e+00,4.771932045693135116e+00,4.858134784785920424e+00,4.943451992832898156e+00,5.027866046016186807e+00,5.111361373329622815e+00 +6.551724137931035086e-02,4.945955666268961326e-02,7.145450050201862524e-02,9.739546890732744822e-02,1.272280884609934826e-01,1.608904505478248592e-01,1.983134855491492099e-01,2.394213837353902086e-01,2.841320144875618681e-01,3.323574057319734765e-01,3.840042296955015755e-01,4.389742659638565248e-01,4.971649271754299826e-01,5.584697698657659082e-01,6.227789279503891384e-01,6.899797033393992862e-01,7.599569887055868112e-01,8.325936601375872881e-01,9.077712194974056903e-01,9.853700534399258970e-01,1.065269924790124056e+00,1.147350298209385944e+00,1.231490764660477577e+00,1.317571354813475537e+00,1.405472846599231440e+00,1.495077072149938013e+00,1.586267159704392471e+00,1.678927796954804208e+00,1.772945424661404035e+00,1.868208482669516224e+00,1.964607523503476560e+00,2.062035385261271614e+00,2.160387372768840741e+00,2.259561318405451935e+00,2.359457667753034116e+00,2.459979648922046458e+00,2.561033284843064362e+00,2.662527458506661393e+00,2.764373965281079482e+00,2.866487537408765274e+00,2.968785881382414615e+00,3.071189681608585520e+00,3.173622611926549819e+00,3.276011307511686788e+00,3.378285450627136033e+00,3.480377620863095434e+00,3.582223354288393669e+00,3.683761112482315969e+00,3.784932221727993706e+00,3.885680847973169705e+00,3.985954045725220052e+00,4.085701516829204571e+00,4.184875774671919402e+00,4.283431962935141613e+00,4.381327874724581406e+00,4.478523832915749736e+00,4.574982711154451209e+00,4.670669832858800774e+00,4.765552846018594302e+00,4.859601932555264625e+00,4.952789370618801534e+00,5.045089791192663320e+00,5.136479686776463716e+00,5.226938072627394405e+00,5.316445738497525220e+00,5.404985455907529435e+00 +6.896551724137932327e-02,5.207002368098235384e-02,7.522540806044815398e-02,1.025346750632721571e-01,1.339404452926700739e-01,1.693774074044358813e-01,2.087727228658534662e-01,2.520464640206253604e-01,2.991120999866491159e-01,3.498769590098977922e-01,4.042427732183043743e-01,4.621061926878694548e-01,5.233593065105216491e-01,5.878901921212569270e-01,6.555834398586093403e-01,7.263206510598845256e-01,7.999809752142343910e-01,8.764415687194520022e-01,9.555781718345974785e-01,1.037265249741529116e+00,1.121376902210397875e+00,1.207786902348918501e+00,1.296369113820676100e+00,1.386997980996247826e+00,1.479548726353098642e+00,1.573897713470267412e+00,1.669922707432774933e+00,1.767503054080962199e+00,1.866520080523185632e+00,1.966857077624714289e+00,2.068399596166445864e+00,2.171035524338509770e+00,2.274655327587093989e+00,2.379152122044948747e+00,2.484421747289540239e+00,2.590362866041150625e+00,2.696877042265357627e+00,2.803868792738572147e+00,2.911245629845835570e+00,3.018918095344303776e+00,3.126799784428894835e+00,3.234807359183028641e+00,3.342860532667462081e+00,3.450882149042405089e+00,3.558798046731202369e+00,3.666537159361388021e+00,3.774031383691220487e+00,3.881215679519306683e+00,3.988027946346737629e+00,4.094409027292207348e+00,4.200302670725513110e+00,4.305655456738978870e+00,4.410416816547885865e+00,4.514538924857387947e+00,4.617976672279885619e+00,4.720687636144583088e+00,4.822631945528057962e+00,4.923772502572848708e+00,5.024074338541991480e+00,5.123505317621198429e+00,5.222035466420134497e+00,5.319637231920133047e+00,5.416285250595647582e+00,5.511956433661771904e+00,5.606629830901021627e+00,5.700286546027284906e+00 +7.241379310344828180e-02,5.468162161953425693e-02,7.899787976566433056e-02,1.076759051282962926e-01,1.406552900995404476e-01,1.778672989260813297e-01,2.192353001769125620e-01,2.646752430555833202e-01,3.140961529982801981e-01,3.674006724895039766e-01,4.244855942682066452e-01,4.852424277845129308e-01,5.495579591375507889e-01,6.173148292198902265e-01,6.883920580098957798e-01,7.626656319462069566e-01,8.400090330324030408e-01,9.202936894450837180e-01,1.003389622933303693e+00,1.089165608320365575e+00,1.177490095631843925e+00,1.268231176699399221e+00,1.361257193745876837e+00,1.456437021301198342e+00,1.553640549467636411e+00,1.652738778667752095e+00,1.753604214400711125e+00,1.856111031927222710e+00,1.960135417435100225e+00,2.065555740525240935e+00,2.172252583268307724e+00,2.280109143242833536e+00,2.389011139811274997e+00,2.498847062029835531e+00,2.609508214325529263e+00,2.720888811259616791e+00,2.832886055429153505e+00,2.945400174729636777e+00,3.058334474568584760e+00,3.171595364331468936e+00,3.285092382994752480e+00,3.398738188326956067e+00,3.512448629150164425e+00,3.626142692812982737e+00,3.739742415609945692e+00,3.853173068303812787e+00,3.966362936842658726e+00,4.079243396514685926e+00,4.191748892360322998e+00,4.303816864195370684e+00,4.415387743593015557e+00,4.526404887315425007e+00,4.636814532852552517e+00,4.746565828037498491e+00,4.855610689651064682e+00,4.963903756721098404e+00,5.071402447009094594e+00,5.178066759387007778e+00,5.283859458699053491e+00,5.388745551791396693e+00,5.492692927873306097e+00,5.595671644061732231e+00,5.697654210480140868e+00,5.798615467981126592e+00,5.898532505534323178e+00,5.997384608999224653e+00 +7.586206896551725420e-02,5.729440743613779113e-02,8.277199464998610812e-02,1.128192613661371940e-01,1.473727482071988670e-01,1.863602712678905093e-01,2.297013860544009911e-01,2.773078934610653801e-01,3.290843767104599249e-01,3.849287624622266257e-01,4.447329041489950230e-01,5.083831918080343737e-01,5.757611077324568116e-01,6.467438297703822503e-01,7.212049830536134687e-01,7.990148558978507065e-01,8.800413203882440083e-01,9.641501949509836411e-01,1.051205791683837543e+00,1.141071352934735827e+00,1.233609765485142784e+00,1.328683506418246729e+00,1.426155518305444847e+00,1.525889266433904767e+00,1.627749282086653926e+00,1.731601446469205552e+00,1.837313068873695832e+00,1.944753316276333077e+00,2.053793492027598866e+00,2.164306989564164674e+00,2.276169722503168735e+00,2.389260186444289058e+00,2.503459474895217252e+00,2.618651753280450745e+00,2.734723710864966684e+00,2.851565296243602887e+00,2.969069440216925759e+00,3.087132176766054226e+00,3.205652681705894125e+00,3.324533304131897626e+00,3.443679576090364236e+00,3.563000262721391920e+00,3.682407286874923358e+00,3.801815788003952257e+00,3.921144150158035746e+00,4.040313843744528732e+00,4.159249573584999915e+00,4.277879130546731190e+00,4.396133434755078895e+00,4.513946486847312478e+00,4.631255286333518129e+00,4.747999955432451458e+00,4.864123494023663064e+00,4.979571757889695860e+00,5.094293661105000481e+00,5.208240897718122042e+00,5.321367840117822823e+00,5.433631756536446034e+00,5.544992473845367975e+00,5.655412661988182599e+00,5.764857466568154010e+00,5.873294564559722097e+00,5.980694102395292866e+00,6.087028730847965363e+00,6.192273427872595271e+00,6.296405499895222135e+00 +7.931034482758621273e-02,5.990843854328673640e-02,8.654783194517468026e-02,1.179648461418244254e-01,1.540929455985430019e-01,1.948564760020424780e-01,2.401711491258327336e-01,2.899446061423265331e-01,3.440769689452992663e-01,4.024614599878707510e-01,4.649849316204585081e-01,5.315287010698949155e-01,6.019689615970882368e-01,6.761775282577522361e-01,7.540224299828380827e-01,8.353685060158808628e-01,9.200780625065370089e-01,1.008011308270547968e+00,1.099027002732434255e+00,1.192982909766239441e+00,1.289736267435712458e+00,1.389144255866838540e+00,1.491064505030060605e+00,1.595355277566405938e+00,1.701875671675102009e+00,1.810486678867694987e+00,1.921050589429474709e+00,2.033431701218937349e+00,2.147496409450754928e+00,2.263113511236255704e+00,2.380154253548874888e+00,2.498492601688880654e+00,2.618005196119721933e+00,2.738571865381470793e+00,2.860074966845101319e+00,2.982400236493681689e+00,3.105436447015191614e+00,3.229075503488149756e+00,3.353212620563573942e+00,3.477746119531268665e+00,3.602577603470527912e+00,3.727611938185735330e+00,3.852757233603140374e+00,3.977924852246452314e+00,4.103029383013601539e+00,4.227988683724563934e+00,4.352723737238291868e+00,4.477158779550771683e+00,4.601221157733261791e+00,4.724841334643166135e+00,4.847953001280618679e+00,4.970492704525609540e+00,5.092400122742359869e+00,5.213618018881913230e+00,5.334091956261788781e+00,5.453770512845563800e+00,5.572605052554061800e+00,5.690549744954307876e+00,5.807561768245898648e+00,5.923600807245640532e+00,6.038629309585117788e+00,6.152612366909899322e+00,6.265517665152260385e+00,6.377315418710337802e+00,6.487978339733566635e+00,6.597481571637743514e+00 +8.275862068965518514e-02,6.252377227054807529e-02,9.032547096275973797e-02,1.231127620052113458e-01,1.608160080378351897e-01,2.033560576511295737e-01,2.506447600975844070e-01,3.025855670541173215e-01,3.590741240097862219e-01,4.199989028397532187e-01,4.852418772280928105e-01,5.546791711020480076e-01,6.281817326717074046e-01,7.056160223209826388e-01,7.868445854529804162e-01,8.717268129119766229e-01,9.601194548714310217e-01,1.051877238707525253e+00,1.146853427528487401e+00,1.244900354894331818e+00,1.345869871213465574e+00,1.449613896872253838e+00,1.555984736484269160e+00,1.664835511907670762e+00,1.776020547511646397e+00,1.889395564314671816e+00,2.004818164600962849e+00,2.122147828670273295e+00,2.241246356441842114e+00,2.361977969289863921e+00,2.484209444422066149e+00,2.607810317698886049e+00,2.732653149585065222e+00,2.858613143537697354e+00,2.985568788776414184e+00,3.113401656656929362e+00,3.241996404650135499e+00,3.371241134846594267e+00,3.501026943586756257e+00,3.631248317645893842e+00,3.761803005124179311e+00,3.892592054670163115e+00,4.023519794661678972e+00,4.154493833417362225e+00,4.285425056781223319e+00,4.416227608775507463e+00,4.546818844510743141e+00,4.677119347156499352e+00,4.807052908661848534e+00,4.936546449788822954e+00,5.065530050794095018e+00,5.193936889264703538e+00,5.321703195745411286e+00,5.448768328154712570e+00,5.575074549737557561e+00,5.700567127666717582e+00,5.825194235255261255e+00,5.948907092582780720e+00,6.071659600257301115e+00,6.193408556302058443e+00,6.314113526520856112e+00,6.433736817049776846e+00,6.552243430069268904e+00,6.669600940783872112e+00,6.785779678743718790e+00,6.900752361665674073e+00 +8.620689655172414367e-02,6.514046621480425181e-02,9.410499119153117875e-02,1.282631116522035541e-01,1.675420615463259488e-01,2.118591612014474601e-01,2.611223859588225338e-01,3.152309630437756249e-01,3.740760461270134507e-01,4.375413729713978350e-01,5.055039608183489186e-01,5.778348182329080540e-01,6.543996476620341785e-01,7.350595387590679319e-01,8.196716801554579934e-01,9.080899475741858184e-01,1.000165705930212923e+00,1.095748195189898189e+00,1.194685302747013678e+00,1.296824023703438966e+00,1.402010922271495597e+00,1.510092754651759961e+00,1.620916722447709013e+00,1.734330874257733690e+00,1.850184711586980280e+00,1.968329157741791402e+00,2.088617085842155774e+00,2.210903446582678011e+00,2.335045489243825045e+00,2.460903053772613092e+00,2.588338609796098311e+00,2.717217465671988741e+00,2.847408006483961529e+00,2.978781395653524289e+00,3.111212093033978832e+00,3.244577642381067939e+00,3.378758976375908496e+00,3.513640138989379658e+00,3.649108479762284585e+00,3.785054667571198017e+00,3.921372697254430495e+00,4.057959866401010807e+00,4.194716785371255696e+00,4.331547358594739272e+00,4.468358786492790280e+00,4.605061527803001376e+00,4.741569299207741395e+00,4.877799042753705905e+00,5.013670922628910454e+00,5.149108268244249942e+00,5.284037570498147041e+00,5.418388444357683298e+00,5.552093654933388578e+00,5.685089028662233979e+00,5.817313365195502683e+00,5.948708532758215206e+00,6.079219466236161828e+00,6.208793939897037539e+00,6.337382736542885198e+00,6.464939456500227166e+00,6.591420604644222081e+00,6.716785477591829867e+00,6.840996212733132076e+00,6.964017595149315731e+00,7.085817219100993825e+00,7.206365246204722297e+00 +8.965517241379311608e-02,6.775857798070569760e-02,9.788647224146930503e-02,1.334159979719128641e-01,1.742712326656611355e-01,2.203659437634294116e-01,2.716041989441706495e-01,3.278809787532695474e-01,3.890829385469856128e-01,4.550890674525019941e-01,5.257713967043252667e-01,6.009958603306029268e-01,6.806229109130157440e-01,7.645083270021961752e-01,8.525039041274464768e-01,9.444581761090270478e-01,1.040217008351413730e+00,1.139624388483950090e+00,1.242522850270954882e+00,1.348754151527026046e+00,1.458159723675520825e+00,1.570581207382852895e+00,1.685860883319008963e+00,1.803841913189883517e+00,1.924369056054589411e+00,2.047288533944848332e+00,2.172448790045347966e+00,2.299700299047563679e+00,2.428895980406273303e+00,2.559891469467272529e+00,2.692545065900426415e+00,2.826718049389968179e+00,2.962274729198347778e+00,3.099082506267439197e+00,3.237011835597014997e+00,3.375936593467309788e+00,3.515733806351168944e+00,3.656283827821148247e+00,3.797470324072250936e+00,3.939180261356214352e+00,4.081303970771224421e+00,4.223735089472982374e+00,4.366370578787595491e+00,4.509110695955866888e+00,4.651858989627410956e+00,4.794522280218550314e+00,4.937010631942651884e+00,5.079237345597032771e+00,5.221118925913564190e+00,5.362575056507585813e+00,5.503528625718870693e+00,5.643905601655681004e+00,5.783635095052601649e+00,5.922649339270051883e+00,6.060883627437752885e+00,6.198276273937882941e+00,6.334768580831828366e+00,6.470305008284776171e+00,6.604832865294041788e+00,6.738302433627678667e+00,6.870666916990796125e+00,7.001882421707673387e+00,7.131907922886491669e+00,7.260705237084638775e+00,7.388238970691721086e+00,7.514476483622726022e+00 +9.310344827586207461e-02,7.037816530397902892e-02,1.016699938737497672e-01,1.385715240225280642e-01,1.810036473624603015e-01,2.288765498635909612e-01,2.820903574274566949e-01,3.405358010023431525e-01,4.040950017239181569e-01,4.726421580348642570e-01,5.460444032934272940e-01,6.241625099678439481e-01,7.068517356300410004e-01,7.939625622396955240e-01,8.853414198538390734e-01,9.808315804478389133e-01,1.080273606388910901e+00,1.183506025978306564e+00,1.290366305308066286e+00,1.400691034926204281e+00,1.514316622231701270e+00,1.631079612535548895e+00,1.750817750306448373e+00,1.873369225968273044e+00,1.998574315053603057e+00,2.126274794948210367e+00,2.256314639789944287e+00,2.388540134348076105e+00,2.522800028447828247e+00,2.658945923057155269e+00,2.796832175237698781e+00,2.936316154658674016e+00,3.077258362824101035e+00,3.219522428194737884e+00,3.362975212852698181e+00,3.507486838692320141e+00,3.652930752416145843e+00,3.799183723259139889e+00,3.946125837892632937e+00,4.093640515281321335e+00,4.241614520754877660e+00,4.389937932502506968e+00,4.538504139683489313e+00,4.687209831309553820e+00,4.835954955685677348e+00,4.984642716926703798e+00,5.133179558516437702e+00,5.281475124416366462e+00,5.429442249727587821e+00,5.576996958597220555e+00,5.724058362427905777e+00,5.870548882068966634e+00,6.016393816357793689e+00,6.161521668558271436e+00,6.305864015225563612e+00,6.449355558675563316e+00,6.591933929887298760e+00,6.733539877708195398e+00,6.874117111255768187e+00,7.013612374375975733e+00,7.151975364507184629e+00,7.289158797868228845e+00,7.425118139685579877e+00,7.559812014976501793e+00,7.693201858437936025e+00,7.825251875072222418e+00 +9.655172413793104702e-02,7.299928773628884537e-02,1.054556360314854585e-01,1.437297930534080503e-01,1.877394330943105150e-01,2.373911295507892261e-01,2.925810311869430080e-01,3.531956265644335957e-01,4.191124243510507275e-01,4.902008990093684182e-01,5.663231896810043686e-01,6.473349879056297107e-01,7.330863426859099974e-01,8.234224740880407012e-01,9.181845129257595328e-01,1.017210458426283770e+00,1.120335589874756677e+00,1.227393324646332440e+00,1.338215955673855984e+00,1.452634922834647568e+00,1.570481882370492910e+00,1.691588537884856303e+00,1.815787806099570467e+00,1.942913570651020772e+00,2.072801374171300282e+00,2.205288973212778725e+00,2.340215993143226925e+00,2.477424693998069305e+00,2.616759835697194614e+00,2.758069194855449435e+00,2.901203334443078319e+00,3.046015939466495848e+00,3.192363885160401704e+00,3.340107258876806373e+00,3.489109375123191192e+00,3.639236909820556143e+00,3.790359856434056152e+00,3.942351550645311065e+00,4.095088664565457393e+00,4.248451196393804530e+00,4.402322472299544209e+00,4.556589122685232418e+00,4.711141089191577258e+00,4.865871526708512640e+00,5.020676875407500184e+00,5.175456775411151789e+00,5.330114060782751295e+00,5.484554737898071686e+00,5.638687978583778460e+00,5.792426080289288848e+00,5.945684447351808899e+00,6.098381604428480429e+00,6.250439175250567914e+00,6.401781755203329816e+00,6.552337169146622564e+00,6.702036193227286276e+00,6.850812650321586261e+00,6.998603426021499985e+00,7.145348462437371317e+00,7.290990687280811677e+00,7.435476003727781169e+00,7.578753423827769176e+00,7.720774905795121157e+00,7.861495398579797289e+00,8.000872796650428498e+00,8.138868027648754833e+00 +1.000000000000000056e-01,7.562199826876282727e-02,1.092434787948197705e-01,1.488909084833837659e-01,1.944787161198029968e-01,2.459098251892037346e-01,3.030764146756849131e-01,3.658606161219473685e-01,4.341354210567170968e-01,5.077654785523765257e-01,5.866079766358345271e-01,6.705135091402547598e-01,7.593269503352613192e-01,8.528882654237831540e-01,9.510333951453047163e-01,1.053595025802239737e+00,1.160403256693577134e+00,1.271286493816979002e+00,1.386071871148965462e+00,1.504586067979027941e+00,1.626655794579756176e+00,1.752108231000253813e+00,1.880771578818000167e+00,2.012475481794635535e+00,2.147051122526939526e+00,2.284332176682161375e+00,2.424154240819715422e+00,2.566355721118156907e+00,2.710777639377834891e+00,2.857264035807073554e+00,3.005661960367065344e+00,3.155821595452950490e+00,3.307596392283114639e+00,3.460843048219569340e+00,3.615421626743852368e+00,3.771195484865407899e+00,3.928031345484864545e+00,4.085799304683061628e+00,4.244372747375351196e+00,4.403628441157587226e+00,4.563446412224845261e+00,4.723709956164408474e+00,4.884305693637984724e+00,5.045123349364237342e+00,5.206055917984781622e+00,5.366999544373714848e+00,5.527853494432672932e+00,5.688520159186504443e+00,5.848905047280450020e+00,6.008916700310089176e+00,6.168466760333642718e+00,6.327469852648071935e+00,6.485843743009501061e+00,6.643509129468737839e+00,6.800389801171072612e+00,6.956412544809571052e+00,7.111507163043796709e+00,7.265606500867018092e+00,7.418646440474273795e+00,7.570565886790236121e+00,7.721306772861625589e+00,7.870814026949934039e+00,8.019035768607233550e+00,8.165922979922966007e+00,8.311429818892461796e+00,8.455513432283050079e+00 +1.000000000000000056e-01,7.562199826876282727e-02,1.092434787948197705e-01,1.488909084833837659e-01,1.944787161198029968e-01,2.459098251892037346e-01,3.030764146756849131e-01,3.658606161219473685e-01,4.341354210567170968e-01,5.077654785523765257e-01,5.866079766358345271e-01,6.705135091402547598e-01,7.593269503352613192e-01,8.528882654237831540e-01,9.510333951453047163e-01,1.053595025802239737e+00,1.160403256693577134e+00,1.271286493816979002e+00,1.386071871148965462e+00,1.504586067979027941e+00,1.626655794579756176e+00,1.752108231000253813e+00,1.880771578818000167e+00,2.012475481794635535e+00,2.147051122526939526e+00,2.284332176682161375e+00,2.424154240819715422e+00,2.566355721118156907e+00,2.710777639377834891e+00,2.857264035807073554e+00,3.005661960367065344e+00,3.155821595452950490e+00,3.307596392283114639e+00,3.460843048219569340e+00,3.615421626743852368e+00,3.771195484865407899e+00,3.928031345484864545e+00,4.085799304683061628e+00,4.244372747375351196e+00,4.403628441157587226e+00,4.563446412224845261e+00,4.723709956164408474e+00,4.884305693637984724e+00,5.045123349364237342e+00,5.206055917984781622e+00,5.366999544373714848e+00,5.527853494432672932e+00,5.688520159186504443e+00,5.848905047280450020e+00,6.008916700310089176e+00,6.168466760333642718e+00,6.327469852648071935e+00,6.485843743009501061e+00,6.643509129468737839e+00,6.800389801171072612e+00,6.956412544809571052e+00,7.111507163043796709e+00,7.265606500867018092e+00,7.418646440474273795e+00,7.570565886790236121e+00,7.721306772861625589e+00,7.870814026949934039e+00,8.019035768607233550e+00,8.165922979922966007e+00,8.311429818892461796e+00,8.455513432283050079e+00 +1.103448275862069089e-01,8.350026545564288860e-02,1.206210142953587361e-01,1.643923709069077532e-01,2.147188103428410433e-01,2.714921768009633807e-01,3.345923951273683805e-01,4.038885608088121359e-01,4.792398306799222629e-01,5.604963793165187447e-01,6.475004870093571396e-01,7.400875063899650108e-01,8.380868625392395854e-01,9.413230395793574790e-01,1.049616489735931246e+00,1.162784565042799256e+00,1.280642334982532216e+00,1.403003294514246768e+00,1.529680217520363650e+00,1.660485791535846634e+00,1.795232915808895990e+00,1.933735949659276976e+00,2.075810216564820010e+00,2.221273279449693661e+00,2.369944774745817107e+00,2.521646881643581750e+00,2.676204562729043168e+00,2.833445767796920478e+00,2.993201552255211784e+00,3.155306253048029141e+00,3.319597554569875264e+00,3.485916544280066809e+00,3.654107738925491233e+00,3.824019112149121824e+00,3.995502081478629286e+00,4.168411461091046100e+00,4.342605467353982007e+00,4.517945641888425179e+00,4.694296805704782471e+00,4.871527005958779633e+00,5.049507487843466258e+00,5.228112529896797867e+00,5.407219514234011370e+00,5.586708788534083148e+00,5.766463662902426179e+00,5.946370302471797764e+00,6.126317757230234307e+00,6.306197811972023892e+00,6.485905082592769766e+00,6.665336926915415461e+00,6.844393437830906812e+00,7.022977435326470896e+00,7.200994477112796943e+00,7.378352815907450513e+00,7.554963500646330488e+00,7.730740306662777783e+00,7.905599814470786413e+00,8.079461417909671539e+00,8.252247370315146213e+00,8.423882816213167146e+00,8.594295833207832302e+00,8.763417497158158653e+00,8.931181882177368081e+00,9.097526170888784236e+00,9.262390623792390087e+00,9.425718728044099493e+00 +1.206896551724137984e-01,9.139495674775227618e-02,1.320212558627658350e-01,1.799231956655118758e-01,2.349949834102204593e-01,2.971170123961205389e-01,3.661567382665971704e-01,4.419699029957629977e-01,5.244016017643373662e-01,6.132874480104095749e-01,7.084547573917641117e-01,8.097236549304021036e-01,9.169084704029015764e-01,1.029818360290810419e+00,1.148258741396898985e+00,1.272032293300642936e+00,1.400939666694522856e+00,1.534780484556890423e+00,1.673354082401440568e+00,1.816460226849821114e+00,1.963899728195187988e+00,2.115475044125360249e+00,2.270990510817196828e+00,2.430253249217436018e+00,2.593072948892698459e+00,2.759262511652011529e+00,2.928638074279325654e+00,3.101019315401924548e+00,3.276229456818480212e+00,3.454095375679492985e+00,3.634447659449113743e+00,3.817120609354042848e+00,4.001952186081417118e+00,4.188783986062045273e+00,4.377461175097800528e+00,4.567832385842486076e+00,4.759749636148058016e+00,4.953068252296364271e+00,5.147646658668405095e+00,5.343346322006513383e+00,5.540031814878060956e+00,5.737570349208849230e+00,5.935831948131072622e+00,6.134689225405974611e+00,6.334017284525283564e+00,6.533693682200449437e+00,6.733598305479167045e+00,6.933613363247077999e+00,7.133623191783899031e+00,7.333514399193563627e+00,7.533175649713951927e+00,7.732497770689025884e+00,7.931373673413215641e+00,8.129698401915174344e+00,8.327369118530420167e+00,8.524285133498095135e+00,8.720347970551655337e+00,8.915461415093361097e+00,9.109531535100899191e+00,9.302466810691765176e+00,9.494178212900511227e+00,9.684579254783233893e+00,9.873586090408087657e+00,1.006111766984825096e+01,1.024709578951038758e+01,1.043144522145036746e+01 +1.310344827586207017e-01,9.930766160567634782e-02,1.434463963014488697e-01,1.954862119176468960e-01,2.553107067735633784e-01,3.227884293332497490e-01,3.977740663612963079e-01,4.801097119713345629e-01,5.696261872425945061e-01,6.661443882153685880e-01,7.694766283146112773e-01,8.794279822836964522e-01,9.957975764716212597e-01,1.118379851570329597e+00,1.246965686752481206e+00,1.381343624041763807e+00,1.521300763599490624e+00,1.666623753454173462e+00,1.817099668497498932e+00,1.972516671062756188e+00,2.132664772029059908e+00,2.297336255969465224e+00,2.466326296230343829e+00,2.639433240590855601e+00,2.816459048747884886e+00,2.997209421602765822e+00,3.181493990767783941e+00,3.369126520041632489e+00,3.559924909463899390e+00,3.753711190019921595e+00,3.950311568486352787e+00,4.149556326556354868e+00,4.351279717269658676e+00,4.555319870932915016e+00,4.761518645800882688e+00,4.969721477040004665e+00,5.179777189396402193e+00,5.391537853171149308e+00,5.604858590813330821e+00,5.819597362932405815e+00,6.035614559123890110e+00,6.252773526102232360e+00,6.470939528330956314e+00,6.689980044388827096e+00,6.909764552995871334e+00,7.130164208519076396e+00,7.351051811312016682e+00,7.572301850896226760e+00,7.793790038604478276e+00,8.015393424953789037e+00,8.236990266338445110e+00,8.458459960080272566e+00,8.679683011350380895e+00,8.900540945112743074e+00,9.120916362987376402e+00,9.340692923761654498e+00,9.559755371476159169e+00,9.777989587814124306e+00,9.995282656526407905e+00,1.021152295441183178e+01,1.042660025528546264e+01,1.064040584840554082e+01,1.085283267175545951e+01,1.106377547903686676e+01,1.127313098554923698e+01,1.148079808250500022e+01 +1.413793103448275912e-01,1.072399832247533241e-01,1.548986463071504449e-01,2.110842698023965014e-01,2.756694429242952937e-01,3.485105212704207589e-01,4.294490240901814304e-01,5.183130976214322949e-01,6.149190596819894550e-01,7.190729199621854750e-01,8.305719598039437157e-01,9.492062117183570624e-01,1.074759999059939242e+00,1.207013247761979269e+00,1.345742884556308416e+00,1.490724089093436788e+00,1.641731076581278259e+00,1.798538807270520401e+00,1.960923197188634504e+00,2.128662260913452009e+00,2.301536712487372238e+00,2.479330549327821487e+00,2.661831512967739677e+00,2.848831535127563708e+00,3.040126914987541173e+00,3.235518623987929221e+00,3.434812419568133546e+00,3.637818851460547176e+00,3.844353409530169685e+00,4.054236336852048872e+00,4.267292612226658122e+00,4.483351815227698545e+00,4.702247928814706768e+00,4.923819185355107209e+00,5.147907822394450328e+00,5.374359833534835040e+00,5.603024759124128451e+00,5.833755346403832753e+00,6.066407364031859650e+00,6.300839181030722713e+00,6.536911578697890413e+00,6.774487646550935160e+00,7.013432112335010515e+00,7.253611317390883606e+00,7.494892874410049366e+00,7.737145442493841507e+00,7.980238478401832758e+00,8.224041929206670432e+00,8.468426050307792607e+00,8.713261245602081928e+00,8.958417762203476187e+00,9.203765630958656629e+00,9.449174452595043405e+00,9.694513288500107961e+00,9.939650559768796967e+00,1.018445395517570340e+01,1.042879039636436644e+01,1.067252601164474868e+01,1.091552614255540199e+01,1.115765538881555408e+01,1.139877765239992335e+01,1.163875626612238356e+01,1.187745411985209110e+01,1.211473383218291744e+01,1.235045789088568569e+01,1.258448894708063293e+01 +1.517241379310345084e-01,1.151935395351129376e-01,1.663802354471421441e-01,2.267202421244248756e-01,2.960747176592121721e-01,3.742874123928118246e-01,4.611862863731920892e-01,5.565852087148210892e-01,6.602857144524242328e-01,7.720787848740026105e-01,8.917466056451063272e-01,1.019064292414177952e+00,1.153801561497187045e+00,1.295724271888653023e+00,1.444595923610424881e+00,1.600178947435886734e+00,1.762236109038325615e+00,1.930531356989217739e+00,2.104830907774466908e+00,2.284904150900191500e+00,2.470524256934635066e+00,2.661468840089209920e+00,2.857520426994348384e+00,3.058466586103028462e+00,3.264100732327480436e+00,3.474221769567896079e+00,3.688634445106463655e+00,3.907149322134950697e+00,4.129582732641542187e+00,4.355756685325720134e+00,4.585498655440349403e+00,4.818641492464093901e+00,5.055023074410412320e+00,5.294486105170014056e+00,5.536877754961653686e+00,5.782049348666292943e+00,6.029856119250727176e+00,6.280156713046075367e+00,6.532812860415895706e+00,6.787689009285610808e+00,7.044651899965848507e+00,7.303570202924460020e+00,7.564314044308895646e+00,7.826754665887234452e+00,8.090764000624460550e+00,8.356214221511185869e+00,8.622977366703116431e+00,8.890924927114083332e+00,9.159927454302795979e+00,9.429854160063200652e+00,9.700572560294576263e+00,9.971948060563617489e+00,1.024384366164039228e+01,1.051611955977846335e+01,1.078863291373519928e+01,1.106123747086217257e+01,1.133378339097532539e+01,1.160611693884224138e+01,1.187808035042420052e+01,1.214951166689417050e+01,1.242024462151935538e+01,1.269010859879218245e+01,1.295892861425365794e+01,1.322652543255422053e+01,1.349271568185855763e+01,1.375731157726594667e+01 +1.620689655172413979e-01,1.231699645860715037e-01,1.778934140999455793e-01,2.423970221626911836e-01,3.165300693872230564e-01,4.001232569409378104e-01,4.929905572655444712e-01,5.949311981205263056e-01,7.057316675205109746e-01,8.251677407081956517e-01,9.530064755870668591e-01,1.089008127972099782e+00,1.232928105525749940e+00,1.384518612296785189e+00,1.543530338086881670e+00,1.709713988733406742e+00,1.882821420256002520e+00,2.062607125154515497e+00,2.248829053543425438e+00,2.441249560593047985e+00,2.639636186492495984e+00,2.843762192083237661e+00,3.053407164850252542e+00,3.268357177807300840e+00,3.488405203137441291e+00,3.713351258917668485e+00,3.943002382604552380e+00,4.177172671411560678e+00,4.415683147026993716e+00,4.658361662930781577e+00,4.905042672510949053e+00,5.155566939617357569e+00,5.409781278193953824e+00,5.667538192694615340e+00,5.928695514820649493e+00,6.193116026776423588e+00,6.460666999024957668e+00,6.731219767176161106e+00,7.004649260200050520e+00,7.280833512418598552e+00,7.559653154416520415e+00,7.840990861266793566e+00,8.124730888535493634e+00,8.410758447723516440e+00,8.698959129442844329e+00,8.989218350679877290e+00,9.281420706903588780e+00,9.575449377801152906e+00,9.871185443338461596e+00,1.016850728948074689e+01,1.046728986223301305e+01,1.076740402826940191e+01,1.106871586377322281e+01,1.137108594810211848e+01,1.167436867670402734e+01,1.197841152564169498e+01,1.228305440059030573e+01,1.258812893637156449e+01,1.289345783814464141e+01,1.319885429700890001e+01,1.350412143010568400e+01,1.380905182048334723e+01,1.411342685420661880e+01,1.441701684227852809e+01,1.471958030144331175e+01,1.502086440520714561e+01 +1.724137931034482873e-01,1.311709098429240106e-01,1.894404550619663563e-01,2.581175465782321599e-01,3.370390868544334562e-01,4.260222373004582952e-01,5.248665520926447670e-01,6.333562608747503875e-01,7.512624736220016031e-01,8.783455759706737531e-01,1.014357453428478939e+00,1.159043591243774429e+00,1.312145463810312496e+00,1.473401996328124852e+00,1.642551765281196063e+00,1.819334487630538177e+00,2.003492443893146291e+00,2.194771847323797154e+00,2.392923908056821869e+00,2.597705765670672573e+00,2.808881221246727566e+00,3.026221836335113213e+00,3.249506435121493730e+00,3.478522383429283771e+00,3.713065544765488113e+00,3.952940335232051350e+00,4.197959723000745491e+00,4.447945468819786363e+00,4.702727660388466013e+00,4.962144784890822891e+00,5.226043401298476887e+00,5.494277836730040221e+00,5.766709905601141273e+00,6.043208519393473033e+00,6.323649272373521590e+00,6.607914039182875676e+00,6.895890487054322726e+00,7.187471586392536693e+00,7.482555085183071775e+00,7.781042981279769677e+00,8.082840930263806456e+00,8.387857633930899226e+00,8.696004201698880109e+00,9.007193483163481673e+00,9.321339323767150020e+00,9.638355818827442079e+00,9.958156498276773405e+00,1.028065346189096374e+01,1.060575646671889594e+01,1.093337190554473715e+01,1.126340184622503848e+01,1.159574283072309342e+01,1.193028473968133696e+01,1.226690951486139625e+01,1.260548987544835065e+01,1.294588789754170222e+01,1.328795355828441416e+01,1.363152326462318698e+01,1.397641830959837073e+01,1.432244318332186062e+01,1.466938429265601584e+01,1.501700810429431066e+01,1.536505982745159393e+01,1.571326194367389917e+01,1.606131299807595525e+01,1.640888653576759992e+01 +1.827586206896552046e-01,1.391980455057512667e-01,2.010236552813129407e-01,2.738847558039420038e-01,3.576053619047431242e-01,4.519885724318761788e-01,5.568190683268001706e-01,6.718656152816829819e-01,7.968836919286341747e-01,9.316180876261120902e-01,1.075805448408493126e+00,1.229176727482468978e+00,1.391459502967594908e+00,1.562380122191580289e+00,1.741665722745509015e+00,1.929045975731300322e+00,2.124254670583049620e+00,2.327031276511751123e+00,2.537121782457350871e+00,2.754280079627015709e+00,2.978268596496773224e+00,3.208859097173643704e+00,3.445832894255902001e+00,3.688981703457440364e+00,3.938107509306854492e+00,4.193023059531924446e+00,4.453551386844306847e+00,4.719526411216842909e+00,4.990792409445035993e+00,5.267204028944153293e+00,5.548626014099307113e+00,5.834932986020179513e+00,6.126009111042216126e+00,6.421747793417226902e+00,6.722051290657849343e+00,7.026830340995239510e+00,7.336003748903503485e+00,7.649497926546565019e+00,7.967246449238827743e+00,8.289189548161450816e+00,8.615273581198795938e+00,8.945450469017595552e+00,9.279677093899842077e+00,9.617914634904177973e+00,9.960127859420294882e+00,1.030628434192439080e+01,1.065635360808382792e+01,1.101030616710730392e+01,1.136811252111047921e+01,1.172974190274685746e+01,1.209516106584627693e+01,1.246433277220410751e+01,1.283721419137856934e+01,1.321375504606426254e+01,1.359389565823780188e+01,1.397756455752380234e+01,1.436467602279091871e+01,1.475512722629157381e+01,1.514879510943466379e+01,1.554553293344682352e+01,1.594516653390544825e+01,1.634749027516971864e+01,1.675226278933519097e+01,1.715920252902127530e+01,1.756798329228051259e+01,1.797822987953129115e+01 +1.931034482758620940e-01,1.472530618645762901e-01,2.126453373382748979e-01,2.897016406840745018e-01,3.782325225181984441e-01,4.780265139683866349e-01,5.888528786790917513e-01,7.104645214799936159e-01,8.426009276439364593e-01,9.849911090787495382e-01,1.137356430755674275e+00,1.299413381326387951e+00,1.470876075507091540e+00,1.651458838724541689e+00,1.840877835104471449e+00,2.038853944051351341e+00,2.245113727109347312e+00,2.459391159367025459e+00,2.681428997173668005e+00,2.910979836964213252e+00,3.147807046319957891e+00,3.391685344453058804e+00,3.642401553360500532e+00,3.899754963518052620e+00,4.163557644017235937e+00,4.433634556404991045e+00,4.709823788837226743e+00,4.991976493875810661e+00,5.279956938603398875e+00,5.573642382454507604e+00,5.872922967301871466e+00,6.177701574524689043e+00,6.487893671054111522e+00,6.803427110617673357e+00,7.124241962497698921e+00,7.450290309283144730e+00,7.781536055526301787e+00,8.117954735820527290e+00,8.459533317175024436e+00,8.806270015251007166e+00,9.158174094601390536e+00,9.515265677707308356e+00,9.877575534016257208e+00,1.024514486413404413e+01,1.061802505827421683e+01,1.099627742837225419e+01,1.137997286616166370e+01,1.176919150431117167e+01,1.216402223000662275e+01,1.256456209704871441e+01,1.297091561876779231e+01,1.338319376921566750e+01,1.380151283605054857e+01,1.422599272521411251e+01,1.465675485775152076e+01,1.509391937258310001e+01,1.553760146051113011e+01,1.598790660756067794e+01,1.644492450639811310e+01,1.690872142657725874e+01,1.737933077432040818e+01,1.785674174826541361e+01,1.834088607275815264e+01,1.883162297371091398e+01,1.932872284548087549e+01,1.983185029898727691e+01 +2.034482758620689835e-01,1.553376706864510182e-01,2.243078516646086484e-01,3.055712057184560293e-01,3.989242555329989837e-01,5.041403640386185048e-01,6.209728242226508765e-01,7.491582597121904108e-01,8.884198120093171891e-01,1.038470482862072330e+00,1.199016353517765809e+00,1.369759528322148423e+00,1.550401058386744690e+00,1.740643534765900835e+00,1.940193668794706783e+00,2.148763944119779001e+00,2.366075048672321657e+00,2.591857274202469696e+00,2.825851907738626156e+00,3.067812533856654422e+00,3.317505656730579844e+00,3.574712252086092779e+00,3.839227575243792767e+00,4.110862410786033649e+00,4.389442966369885291e+00,4.674811028801499901e+00,4.966824989552417691e+00,5.265359208274145608e+00,5.570304571904195257e+00,5.881568458347064876e+00,6.199074848823876493e+00,6.522764494748945374e+00,6.852594999604427528e+00,7.188540993545341706e+00,7.530594370018398820e+00,7.878764524488368615e+00,8.233078713312066199e+00,8.593582467338805486e+00,8.960340108644313517e+00,9.333435372975777966e+00,9.712972159778649583e+00,1.009907542030773620e+01,1.049189220861737937e+01,1.089159291193600509e+01,1.129837268696575414e+01,1.171245313249103148e+01,1.213408417613952572e+01,1.256354629242321863e+01,1.300115289783257921e+01,1.344725303356939250e+01,1.390223416570091608e+01,1.436652501220987332e+01,1.484059809535064822e+01,1.532497166956395596e+01,1.582021042362561225e+01,1.632692417883874825e+01,1.684576351841394271e+01,1.737741105126222863e+01,1.792256687849217300e+01,1.848192668550212048e+01,1.905615111846307741e+01,1.964582557853246669e+01,2.025141048211198935e+01,2.087318338661135186e+01,2.151117607981361601e+01,2.216511157412027444e+01 +2.137931034482759007e-01,1.634536066445748947e-01,2.360135765269817387e-01,3.214965108260552373e-01,4.196842701299191014e-01,5.303344189400162056e-01,6.531837854188303760e-01,7.879521642615675558e-01,9.343460110035461952e-01,1.092062144696919201e+00,1.260791192365384950e+00,1.440221114992410012e+00,1.630040339614611034e+00,1.829940368311879784e+00,2.039618781016454552e+00,2.258781388882911134e+00,2.487144195119910250e+00,2.724435419084596521e+00,2.970396889040944899e+00,3.224785354051248998e+00,3.487373684033275634e+00,3.757951546060419368e+00,4.036326689278108226e+00,4.322324927043015741e+00,4.615791232822103574e+00,4.916589752118691869e+00,5.224604848368109344e+00,5.539740836424775772e+00,5.861922827311642159e+00,6.191097078527880271e+00,6.527231422180471476e+00,6.870315931124394204e+00,7.220363600863184850e+00,7.577411087228622222e+00,7.941519797379195111e+00,8.312777002946290850e+00,8.691297265515395054e+00,9.077224146582416608e+00,9.470732223573472552e+00,9.872029519209322146e+00,1.028136044684657335e+01,1.069900921872257449e+01,1.112530409691129663e+01,1.156062234410524070e+01,1.200539626811967864e+01,1.246012036614518692e+01,1.292535990333181495e+01,1.340176105395915584e+01,1.389006277731661321e+01,1.439111053336123547e+01,1.490587160133464195e+01,1.543545170620152085e+01,1.598111196111383947e+01,1.654428434902612821e+01,1.712658324443036761e+01,1.772980895393625644e+01,1.835593802947704134e+01,1.900709379284975498e+01,1.968548973065112406e+01,2.039333892518924429e+01,2.113272492920770063e+01,2.190543443409529800e+01,2.271275960440356911e+01,2.355528732592802399e+01,2.443270180175278128e+01,2.534363295515215597e+01 +2.241379310344827902e-01,1.716026287356700875e-01,2.477649271775379525e-01,3.374806496667731581e-01,4.405163178284791092e-01,5.566130815331059578e-01,6.854906821739537026e-01,8.268515937048080966e-01,9.803852189462840538e-01,1.145771909464869731e+00,1.322686953016023015e+00,1.510804225106522125e+00,1.709799815335688589e+00,1.919354842825736984e+00,2.139158882820821894e+00,2.368911820033340110e+00,2.608326705987524807e+00,2.857131404429377852e+00,3.115070437672430526e+00,3.381906073220461550e+00,3.657420290410990482e+00,3.941415148367349186e+00,4.233714510387084573e+00,4.534163614119879782e+00,4.842631046732710054e+00,5.159009347183531879e+00,5.483215263326992606e+00,5.815190724179230664e+00,6.154903906260125623e+00,6.502350071617302163e+00,6.857552761816518405e+00,7.220565187607033586e+00,7.591471854737775971e+00,7.970390484633629313e+00,8.357474403223450921e+00,8.752915339603134726e+00,9.156946853376398465e+00,9.569848457937297326e+00,9.991950637544407599e+00,1.042364095235492627e+01,1.086537151023213532e+01,1.131766810618624675e+01,1.178114153490742844e+01,1.225650151763595552e+01,1.274457392673992651e+01,1.324632215366179544e+01,1.376287338561871820e+01,1.429555078364259124e+01,1.484591236787981394e+01,1.541579705882750595e+01,1.600737754004740054e+01,1.662321813182870045e+01,1.726633335347204579e+01,1.794023923925872310e+01,1.864898424278895206e+01,1.939714041263755462e+01,2.018972939783306586e+01,2.103205405050300669e+01,2.192940895955099734e+01,2.288665662596230987e+01,2.390768354167311216e+01,2.499479044744470357e+01,2.614811456739973750e+01,2.736520857361767867e+01,2.864089572556451557e+01,2.996746981728534465e+01 +2.344827586206896797e-01,1.797865218624962735e-01,2.595643428797609342e-01,3.535267229849508031e-01,4.614241945262714806e-01,5.829807634210102396e-01,7.178984654464916071e-01,8.658619636279890619e-01,1.026543169782877962e+00,1.199605789533923828e+00,1.384709668965766527e+00,1.581514844556782373e+00,1.789685394848349764e+00,2.008892898594396570e+00,2.238819485546501564e+00,2.479160757677806082e+00,2.729628140150379689e+00,2.989950955715747760e+00,3.259878738474905280e+00,3.539182129132022681e+00,3.827654953359842072e+00,4.125115659043139260e+00,4.431406992653512233e+00,4.746399929813532204e+00,5.069991961789164669e+00,5.402109786851448270e+00,5.742710283278486649e+00,6.091781600641768435e+00,6.449345141466218401e+00,6.815457056762485699e+00,7.190210602146262175e+00,7.573738776471601319e+00,7.966217401908889606e+00,8.367868984271758848e+00,8.778967354837888593e+00,9.199843329947340109e+00,9.630891676342843155e+00,1.007257968737678233e+01,1.052545782056204793e+01,1.099017297627288769e+01,1.146748518058511301e+01,1.195828862376855461e+01,1.246363852746932466e+01,1.298478530885136806e+01,1.352321840095771144e+01,1.408072229625009442e+01,1.465944789501896928e+01,1.526200255582051390e+01,1.589156145088095862e+01,1.655200180464295201e+01,1.724805715831951147e+01,1.798548174784513520e+01,1.877120264530592664e+01,1.961341833822703506e+01,2.052157826079112368e+01,2.150615319385751434e+01,2.257809452595419941e+01,2.374790246137335004e+01,2.502430302556694386e+01,2.641267833695814815e+01,2.791356693481642992e+01,2.952166489057925958e+01,nan,nan,nan,nan +2.448275862068965691e-01,1.880070979901118655e-01,2.714143052630696440e-01,3.696379323578348197e-01,4.824117407771299493e-01,6.094419249527454063e-01,7.504121509749481778e-01,9.049887044644739920e-01,1.072825639232723560e+00,1.253569755409741360e+00,1.446865392113398263e+00,1.652358947658547184e+00,1.869703003068398761e+00,2.098560119204595065e+00,2.338606269612011346e+00,2.589533712772056351e+00,2.851054043784639003e+00,3.122900187484302315e+00,3.404828521218172366e+00,3.696621155795639435e+00,3.998087200449346845e+00,4.309064431984458210e+00,4.629420948596473906e+00,4.959056513798900667e+00,5.297904323736951859e+00,5.645932555183010848e+00,6.003146275672165189e+00,6.369589912216601313e+00,6.745349608805847552e+00,7.130556346829668435e+00,7.525389837470346066e+00,7.930082873820566647e+00,8.344927031715402066e+00,8.770279363517667903e+00,9.206570852363077151e+00,9.654316821442764152e+00,1.011413002981171871e+01,1.058673715736067145e+01,1.107299980410700257e+01,1.157394145454538581e+01,1.209078235347557317e+01,1.262498521004154206e+01,1.317831520837171233e+01,1.375291948803262088e+01,1.435143271512449203e+01,1.497711661309167930e+01,1.563404368485586637e+01,1.632733482030241134e+01,1.706345826372383812e+01,1.785058917716482796e+01,1.869900811062203516e+01,1.962147880418811852e+01,2.063348297188159108e+01,2.175310322123069895e+01,2.300026233586973134e+01,2.439501135151672884e+01,2.595472117561151393e+01,2.769045034546441286e+01,nan,nan,nan,nan,nan,nan,nan,nan +2.551724137931035141e-01,1.962661990807873236e-01,2.833173307564966770e-01,3.858174701128707640e-01,5.034828457613654829e-01,6.360010750294415871e-01,7.830367935690001335e-01,9.442373550572259466e-01,1.119238451971477533e+00,1.307669790810447985e+00,1.509160203528044697e+00,1.723342613366351417e+00,1.949858574688906110e+00,2.188362377471168241e+00,2.438524764788140065e+00,2.700036240598907789e+00,2.972610006851294617e+00,3.255984595278778482e+00,3.549926199063524024e+00,3.854230926182796058e+00,4.168726520225858323e+00,4.493274694446360407e+00,4.827772876192522489e+00,5.172156086206723735e+00,5.526399537001645434e+00,5.890520586232951494e+00,6.264582261961639809e+00,6.648696144968064381e+00,7.043026711794699857e+00,7.447796115910709780e+00,7.863290259686935180e+00,8.289866236673052668e+00,8.727961450607283567e+00,9.178105100752906864e+00,9.640932612158199078e+00,1.011720392963400883e+01,1.060782698709858884e+01,1.111388809755634099e+01,1.163669183486554815e+01,1.217781377015029420e+01,1.273917136166148367e+01,1.332311985596423654e+01,1.393258355906711898e+01,1.457123600048860013e+01,1.524374868806368610e+01,1.595613106149380656e+01,1.671619190998539750e+01,1.753414574572502005e+01,1.842337489796578254e+01,1.940130600406103767e+01,2.049025070790416336e+01,2.171786585047544449e+01,2.311661206830910231e+01,2.472135104740459965e+01,2.656433220197494549e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.655172413793103758e-01,2.045656962148945657e-01,2.952759704795985263e-01,4.020685956544672868e-01,5.246414469887310528e-01,6.626627920712767628e-01,8.157774992663806568e-01,9.836133728461545767e-01,1.165787432772775301e+00,1.361911945386838241e+00,1.571600212377885830e+00,1.794471928306421660e+00,2.030158054523602207e+00,2.278305443898841265e+00,2.538580681822007357e+00,2.810673836101145628e+00,3.094301554990977365e+00,3.389210280223311056e+00,3.695178455742916146e+00,4.012019074046190958e+00,4.339582674658797323e+00,4.677759083013796726e+00,5.026480076357571214e+00,5.385722181334781311e+00,5.755509871955884371e+00,6.135918847438916579e+00,6.527080065501734474e+00,6.929185340089925482e+00,7.342492988639294893e+00,7.767335479971204215e+00,8.204128705601187121e+00,8.653383637034142595e+00,9.115721004161258634e+00,9.591889840370390274e+00,1.008279158869121339e+01,1.058951112388350779e+01,1.111335773056897480e+01,1.165591988787882372e+01,1.221913920696134070e+01,1.280541210665562168e+01,1.341773142534817786e+01,1.405988605365571686e+01,1.473674503193413798e+01,1.545466454775830556e+01,1.622206989466335969e+01,1.705027936148304946e+01,1.795464299951286335e+01,1.895603940209074167e+01,2.008266420589366064e+01,2.137175736118236102e+01,2.287035746552804838e+01,2.463336498640339300e+01,2.671665238466073333e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.758620689655172376e-01,2.129074918220392743e-01,3.072928266631354544e-01,4.183946108044581669e-01,5.458915408391096236e-01,6.894316744104489469e-01,8.486394287886874777e-01,1.023122416817600300e+00,1.212478505469350099e+00,1.416302295933882238e+00,1.634191551605112203e+00,1.865752929118165149e+00,2.110607433874437167e+00,2.368395118989603532e+00,2.638779635510283050e+00,2.921452054619888550e+00,3.216134454724159486e+00,3.522583085878711273e+00,3.840591613062724452e+00,4.169993454841702807e+00,4.510665534466550497e+00,4.862530461157781758e+00,5.225560140630613581e+00,5.599779073828473841e+00,5.985269257309954405e+00,6.382174010015362775e+00,6.790704637154536982e+00,7.211147489111911391e+00,7.643872858136276704e+00,8.089346012793386720e+00,8.548141313433392341e+00,9.020959898260066723e+00,9.508652532595116114e+00,1.001224920521213413e+01,1.053299807357767470e+01,1.107241743702788739e+01,1.163236622067540793e+01,1.221514102695520698e+01,1.282361236070155996e+01,1.346141934786670369e+01,1.413325198335007649e+01,1.484526694620330822e+01,1.560570548253878798e+01,1.642581603832317327e+01,1.732122322703366279e+01,1.831391522468411281e+01,1.943499193064194586e+01,2.072809118845513865e+01,2.225272866313127551e+01,2.408531085771833347e+01,2.631343182600418373e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.862068965517241548e-01,2.212935295609734787e-01,3.193705357595431615e-01,4.347988848562620579e-01,5.672371757954759453e-01,7.163124382562651160e-01,8.816277979322284519e-01,1.062770120161326659e+00,1.259317588299174506e+00,1.470846957018221435e+00,1.696940391781909252e+00,1.937191805897386931e+00,2.191212657415170018e+00,2.458637207771843691e+00,2.739127211483093127e+00,3.032376443478026928e+00,3.338114107938400466e+00,3.656108937765124800e+00,3.986172236607105734e+00,4.328162026907043547e+00,4.681985098783336241e+00,5.047602102753300457e+00,5.425030999488028804e+00,5.814351790914847662e+00,6.215712390864105430e+00,6.629334972212778787e+00,7.055524335020914251e+00,7.494678159066474166e+00,7.947299538477077263e+00,8.414013299461267081e+00,8.895586456166062916e+00,9.392954756909588809e+00,9.907258058116839905e+00,1.043988562514310736e+01,1.099253957671132831e+01,1.156732009379413739e+01,1.216684580409545013e+01,1.279442513063178666e+01,1.345430724235867181e+01,1.415205493008100213e+01,1.489511183880012801e+01,1.569367649618752480e+01,1.656206234012822520e+01,1.752081469399317726e+01,1.859994730693115628e+01,1.984367015223530473e+01,2.131658637060556671e+01,2.310986208797570995e+01,2.534229269854001743e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +2.965517241379310720e-01,2.297257776809134566e-01,3.315117757725504211e-01,4.512848148276644156e-01,5.886824411281071923e-01,7.433097852079788570e-01,9.147478810661516802e-01,1.102562165015226858e+00,1.306310691749095421e+00,1.525552078847784099e+00,1.759852926596527478e+00,2.008794644303491861e+00,2.271979772496411698e+00,2.549037520561279635e+00,2.839629217123663896e+00,3.143452558161739407e+00,3.460246228945841995e+00,3.789793770366986170e+00,4.131927446987118557e+00,4.486532770979331453e+00,4.853551514228045427e+00,5.232987494793924554e+00,5.624911443023089319e+00,6.029465939893379200e+00,6.446875549214539980e+00,6.877452824063001735e+00,7.321611273458171532e+00,7.779878890212784448e+00,8.252916147646361722e+00,8.741538851726284420e+00,9.246748196510731432e+00,9.769769249086849072e+00,1.031210521058511809e+01,1.087560728925141795e+01,1.146257490210117957e+01,1.207589635481496870e+01,1.271925305086678826e+01,1.339742339296543960e+01,1.411674597854801227e+01,1.488584282002172188e+01,1.571677290949933159e+01,1.662690022590569328e+01,1.764194040416471054e+01,1.880087801617125720e+01,2.016358234940587835e+01,2.182140779372813100e+01,2.390819836360675055e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.068965517241379892e-01,2.382062493104447898e-01,3.437193029840842073e-01,4.678558721427871214e-01,6.102315300802628739e-01,7.704285250068969582e-01,9.480050130129340502e-01,1.142504296692849586e+00,1.353463857609358056e+00,1.580423864956703506e+00,1.822935360117860837e+00,2.080567595980235218e+00,2.352914679992265334e+00,2.639601906947928178e+00,2.940291137928878751e+00,3.254685966630761929e+00,3.582536431813637456e+00,3.923643565060220606e+00,4.277863781197980053e+00,4.645113724406334299e+00,5.025375090202268247e+00,5.418700463188229399e+00,5.825219919614878172e+00,6.245148359132564941e+00,6.678796403770256518e+00,7.126581045374333456e+00,7.589041556735485194e+00,8.066858096518487287e+00,8.560876890736691891e+00,9.072142301280083032e+00,9.601939506093906118e+00,1.015185209354661033e+01,1.072384054878126669e+01,1.132035245182342642e+01,1.194447967134370892e+01,1.260018920057769876e+01,1.329267196488757286e+01,1.402888430442941470e+01,1.481841310585110350e+01,1.567490016589451862e+01,1.661843347874522436e+01,1.767962739202494404e+01,1.890657362215424442e+01,2.037630430798395054e+01,2.221189689198701700e+01,2.460150532237206278e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.172413793103449065e-01,2.467369958099743521e-01,3.559958641865477169e-01,4.845155757594774570e-01,6.318886554559225432e-01,7.976735263247131114e-01,9.814045924819605471e-01,1.182602336236999063e+00,1.400783126412346702e+00,1.635468540635117263e+00,1.886193988878958283e+00,2.152516830645659240e+00,2.434023534110915321e+00,2.730336187440870699e+00,3.041118722529716489e+00,3.366082240185740648e+00,3.704990381866815063e+00,4.057664324061017069e+00,4.423987841767361040e+00,4.803913074998079402e+00,5.197466278052799815e+00,5.604755062048577763e+00,6.025976352358464183e+00,6.461426387254184611e+00,6.911514180365383453e+00,7.376775997286603825e+00,7.857895924783153241e+00,8.355731690920739752e+00,8.871348512824924981e+00,9.406063966655771935e+00,9.961508635869204653e+00,1.053970938583283612e+01,1.114320654253904586e+01,1.177522172003380696e+01,1.243990796799007725e+01,1.314272884847340883e+01,1.389105771597677119e+01,1.469515382827245276e+01,1.556980738234931394e+01,1.653719787300860844e+01,1.763197576686678048e+01,1.891038564396545496e+01,2.046631343375159062e+01,2.245718269545881896e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.275862068965517682e-01,2.553201092588059384e-01,3.683443322425548616e-01,5.012675153455585786e-01,6.536581148245169670e-01,8.250497191237710082e-01,1.014952083343665823e+00,1.222862153719293632e+00,1.448274701332101344e+00,1.690692398225315918e+00,1.949635123686482174e+00,2.224648646476718561e+00,2.515312320150201231e+00,2.821246221967110390e+00,3.142117614791536617e+00,3.477646960474697124e+00,3.827613678388457341e+00,4.191862004808224462e+00,4.570306523985335545e+00,4.962939079114657481e+00,5.369835722599165528e+00,5.791165560152342628e+00,6.227200460932699855e+00,6.678328526661522879e+00,7.145069905508791841e+00,7.628096726037799868e+00,8.128260032342490504e+00,8.646623974743686603e+00,9.184511886712266815e+00,9.743567980978065535e+00,1.032584338925921585e+01,1.093391584179424214e+01,1.157106260087884131e+01,1.224152017724336439e+01,1.295087799898121439e+01,1.370670936163021736e+01,1.451960932911931401e+01,1.540498715155102794e+01,1.638625428524508365e+01,1.750071371026721678e+01,1.881065445860183516e+01,2.042414723834390955e+01,2.253154051114296408e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.379310344827586299e-01,2.639577256797240312e-01,3.807675676507868978e-01,5.181153383201873019e-01,6.755442847973361920e-01,8.525621088804840042e-01,1.048653018137699844e+00,1.263289678485539858e+00,1.495944746734082509e+00,1.746101711842500182e+00,2.013264987254926197e+00,2.296969174698349381e+00,2.596787110036892443e+00,2.912337868862433066e+00,3.243293513630842728e+00,3.589385718487453580e+00,3.950412107885628465e+00,4.326242693675289352e+00,4.716826704031501727e+00,5.122200099048239252e+00,5.542494314843297687e+00,5.977946773088399723e+00,6.428913106828712642e+00,6.895884491368696523e+00,7.379506354672200175e+00,7.880605630455149502e+00,8.400225027242589348e+00,8.939668623689700055e+00,9.500563722525010135e+00,1.008494595750633671e+01,1.069537897835289009e+01,1.133512750932288426e+01,1.200841424549066083e+01,1.272081562364432195e+01,1.347989377863231475e+01,1.429624992727024413e+01,1.518535895107311440e+01,1.617091228236992961e+01,1.729117164541693086e+01,1.861145781478574790e+01,2.024899873588531207e+01,2.242038650820231638e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.482758620689655471e-01,2.726520263960734991e-01,3.932685432528284508e-01,5.350627612919781617e-01,6.975515939304185453e-01,8.802157731857475076e-01,1.082512998087075795e+00,1.303890902144198671e+00,1.543799521820797604e+00,1.801702936316416981e+00,2.077090113950305295e+00,2.369484701346374234e+00,2.678453981748188717e+00,3.003617001658849706e+00,3.344652116102716732e+00,3.701304111153101761e+00,4.073391249276233417e+00,4.460812412000287885e+00,4.863555310878797222e+00,5.281704596604431146e+00,5.715452879231860628e+00,6.165113676759268024e+00,6.631135817376901720e+00,7.114125072232664770e+00,7.614868411421633176e+00,8.134368554266171003e+00,8.673888089236429622e+00,9.235009831841146877e+00,9.819719243326318292e+00,1.043052111183919273e+01,1.107060661727481055e+01,1.174410201517411778e+01,1.245644944804312360e+01,1.321501790128802156e+01,1.403012102200499811e+01,1.491680357601043738e+01,1.589813880023703874e+01,1.701163370108651307e+01,1.832225796294774156e+01,1.994974921985157579e+01,2.212510668917273193e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.586206896551724643e-01,2.814052430928087878e-01,4.058502556381428095e-01,5.521135686945261023e-01,7.196845592278439119e-01,9.080158658981954956e-01,1.116537702609719629e+00,1.344671900756182037e+00,1.591845325820155033e+00,1.857502423738920605e+00,2.141116758533870623e+00,2.442201510356266869e+00,2.760319052736555978e+00,3.095089516370030491e+00,3.446199116227302461e+00,3.813407760050688378e+00,4.196556859272808637e+00,4.595577465520517713e+00,5.010499323165451990e+00,5.441461142001974061e+00,5.888723075649554772e+00,6.352681928407186263e+00,6.833890505095489232e+00,7.333082077831617696e+00,7.851203045506048639e+00,8.389455170384422900e+00,8.949353207702623436e+00,9.532803558161717206e+00,1.014221450756775766e+01,1.078065440932874530e+01,1.145208514164890978e+01,1.216171948254331525e+01,1.291658925100042943e+01,1.372649195003071121e+01,1.460565123670847321e+01,1.557579792032474231e+01,1.667223323385124090e+01,1.795646330110061228e+01,1.954380357151471159e+01,2.166462694919300702e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.689655172413793816e-01,2.902196506169200663e-01,4.185157662901470843e-01,5.692716209434355301e-01,7.419477759214692103e-01,9.359676213674406053e-01,1.150732884713417059e+00,1.385638801514253116e+00,1.640088560729205058e+00,1.913506644450643890e+00,2.205351405983089652e+00,2.515125925772860871e+00,2.842388389418328387e+00,3.186761290346935116e+00,3.547940233689345302e+00,3.925702272150632055e+00,4.319914616717204225e+00,4.730543768220027978e+00,5.157665781659327209e+00,5.601478436239820446e+00,6.062315943169077848e+00,6.540667174703426845e+00,7.037199566502758685e+00,7.552788821759587989e+00,8.088559606236080057e+00,8.645939343673703092e+00,9.226731726022878277e+00,9.833219202900810529e+00,1.046830934541159586e+01,1.113574960137611036e+01,1.184045324895280338e+01,1.258901390209884674e+01,1.339055645638314296e+01,1.425822057216437244e+01,1.521190705880995253e+01,1.628370161703783836e+01,1.752933010686782112e+01,1.905391395319722747e+01,2.107238132979247069e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.793103448275862988e-01,2.990975875697133302e-01,4.312682244897741990e-01,5.865408515406888013e-01,7.643459159847251216e-01,9.640763538768148955e-01,1.185104377436687617e+00,1.426797785473239877e+00,1.688535586394588117e+00,1.969722148242598392e+00,2.269800532677056726e+00,2.588264218382335002e+00,2.924668160225393443e+00,3.278638256604795131e+00,3.649881163524065997e+00,4.038193288927025115e+00,4.443470284458331143e+00,4.865717569641828000e+00,5.305061795124442092e+00,5.761765300610523610e+00,6.236243310467240342e+00,6.729086019379951544e+00,7.241086845912406034e+00,7.773279991338677419e+00,8.326989998474436661e+00,8.903899578929300063e+00,9.506143425844086892e+00,1.013644122973743045e+01,1.079829146624102165e+01,1.149626269664732447e+01,1.223644881766057857e+01,1.302721318973756759e+01,1.388047190749992588e+01,1.481404676793763109e+01,1.585628788500281416e+01,1.705585695039899363e+01,1.850405505017590357e+01,2.038922005253578718e+01,2.313204095447499498e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +3.896551724137931050e-01,3.080414357324399721e-01,4.441108436981339169e-01,6.039252748718715313e-01,7.868837411504752133e-01,9.923474747780250960e-01,1.219658094079308253e+00,1.468155198819582674e+00,1.737192954515931476e+00,2.026155473733206591e+00,2.334470658226369011e+00,2.661622904999641825e+00,3.007164515098721402e+00,3.370726328784167780e+00,3.752027656807657596e+00,4.150886415342513125e+00,4.567229678229169032e+00,5.001105068452740277e+00,5.452694543070270683e+00,5.922330669114368895e+00,6.410517086596406067e+00,6.917954840961230367e+00,7.445576512379343370e+00,7.994591785969831221e+00,8.566548909801394274e+00,9.163419460938195371e+00,9.787717292874503983e+00,1.044267142595438358e+01,1.113248064047017749e+01,1.186271095929885888e+01,1.264093078491034738e+01,1.347779380200476496e+01,1.438899234381507597e+01,1.539904384595114628e+01,1.654923606499708555e+01,1.791577916334315290e+01,1.965488682671378484e+01,2.212161115651910848e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan +4.000000000000000222e-01,3.170536366523479810e-01,4.570468896553844806e-01,6.214289892790439973e-01,8.095660947954730347e-01,1.020786467247498885e+00,1.254400029601863364e+00,1.509717335835418117e+00,1.786067232340199373e+00,2.082813243830625272e+00,2.399368327840806447e+00,2.735208234705851282e+00,3.089883656685682656e+00,3.463031442152606942e+00,3.854385445074428151e+00,4.263787386780728994e+00,4.691198483118466100e+00,5.136712505492415204e+00,5.600571262493916791e+00,6.083183594411823769e+00,6.585149474188729535e+00,7.107291011462026020e+00,7.650693824170565094e+00,8.216762051649952880e+00,8.807294074704586251e+00,9.424587983419529635e+00,1.007159278364956734e+01,1.075213044429311182e+01,1.147123429111852921e+01,1.223568574338379911e+01,1.305490921674048366e+01,1.394255604537570292e+01,1.491951280561413107e+01,1.602010087600129395e+01,1.730607113950794229e+01,1.890139717160278110e+01,2.108678385069227446e+01,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan,nan diff --git a/system_identification/steering_lookup/package.xml b/system_identification/steering_lookup/package.xml new file mode 100644 index 0000000..28ed067 --- /dev/null +++ b/system_identification/steering_lookup/package.xml @@ -0,0 +1,16 @@ + + + steering_lookup + 1.0.0 + The steering_lookup library + + Jonathan Becker + + MIT + + catkin + + + + + diff --git a/system_identification/steering_lookup/setup.py b/system_identification/steering_lookup/setup.py new file mode 100644 index 0000000..bbf35f4 --- /dev/null +++ b/system_identification/steering_lookup/setup.py @@ -0,0 +1,12 @@ +## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +# fetch values from package.xml +setup_args = generate_distutils_setup( + packages=['steering_lookup'], + package_dir={'': 'src'}, +) + +setup(**setup_args) \ No newline at end of file diff --git a/system_identification/steering_lookup/src/steering_lookup/__init__.py b/system_identification/steering_lookup/src/steering_lookup/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/system_identification/steering_lookup/src/steering_lookup/lookup_steer_angle.py b/system_identification/steering_lookup/src/steering_lookup/lookup_steer_angle.py new file mode 100644 index 0000000..6acafdc --- /dev/null +++ b/system_identification/steering_lookup/src/steering_lookup/lookup_steer_angle.py @@ -0,0 +1,74 @@ +import numpy as np +import rospkg + +def find_nearest(array, value): + # array = np.asarray(array) + idx = (np.abs(array - value)).argmin() + return array[idx], idx + +def find_closest_neighbors(array, value): + # index of first nan + is_nan_array = np.argwhere(np.isnan(array)) + if len(is_nan_array) > 0: + first_nan = is_nan_array[0][0] + array = array[0:first_nan] + closest, closest_idx = find_nearest(array, value) + if closest_idx == 0: + return array[0], 0, array[0], 0 + elif closest_idx == (len(array) - 1): + return array[closest_idx], closest_idx, array[closest_idx], closest_idx + else: + second_closest, second_idx = \ + find_nearest(array[[max(closest_idx-1, 0), + min(closest_idx+1, len(array)-1)]], value) + second_idx = -1 + closest_idx + 2 * second_idx + return closest, closest_idx, second_closest, second_idx + + +class LookupSteerAngle: + """ + LookupSteerAngle: + """ + def __init__(self, model_name, logger): + rospack = rospkg.RosPack() + path = rospack.get_path('steering_lookup') + file_path = path + '/cfg/' + model_name + '_lookup_table.csv' + try: + self.lu = np.loadtxt(file_path, delimiter=",") + except IOError: + raise IOError("Lookup table not found at " + file_path + ". Please check the file path.") + self.logger = logger + + def lookup_steer_angle(self, accel, vel): + """ + lookup_steer_angle: + """ + if accel > 0.0: + sign_accel = 1.0 + else: + sign_accel = -1.0 + # lookup only for positive accelerations + accel = abs(accel) + lu_vs = self.lu[0, 1:] + lu_steers = self.lu[1:, 0] + + #if (vel > lu_vs[-1]): + # self.logger(5, "Velocity exceeds lookup table, generating steering angle for v :" + str(lu_vs[-1])) + + # find closest velocities to vel + c_v, c_v_idx = find_nearest(lu_vs, vel) + + # find two closest accelerations to accel + c_a, c_a_idx, s_a, s_a_idx = find_closest_neighbors(self.lu[1:, c_v_idx + 1], accel) + if c_a_idx == s_a_idx: + steer_angle = lu_steers[c_a_idx] + else : + # interpolate between two closest accelerations to find steering angle + steer_angle = np.interp(accel, [c_a, s_a], [lu_steers[c_a_idx], lu_steers[s_a_idx]]) + return steer_angle * sign_accel + +# test case +if __name__ == "__main__": + detective = LookupSteerAngle("NUC1_pacejka", print) + steer_angle = detective.lookup_steer_angle(9, 7) + print(steer_angle) \ No newline at end of file